From dba22476d67387ec04b7c8201cd564937c158fc0 Mon Sep 17 00:00:00 2001 From: Matthew Mauriello Date: Wed, 22 Oct 2014 13:17:05 -0400 Subject: [PATCH 1/5] add "Package SpaceWar" and created JUnit tests. --- Bullet.java | 41 -- Enemy.java | 252 ----------- Explosion.java | 26 -- Generals.java | 18 - Player.java | 157 ------- PowerUp.java | 53 --- SpacePanel.java | 406 ------------------ SpaceWar.java | 23 - SpaceWarLevel2.png | Bin 20782 -> 0 bytes SpaceWarLevel4.png | Bin 32759 -> 0 bytes Text.java | 34 -- img/badass/badass1.png | Bin 3971 -> 0 bytes img/badass/badass1Large.png | Bin 5938 -> 0 bytes img/badass/badass1Medium.png | Bin 2434 -> 0 bytes img/badass/badass1Mini.png | Bin 1686 -> 0 bytes img/badass/badass2.png | Bin 5655 -> 0 bytes img/badass/badass2Large.png | Bin 9264 -> 0 bytes img/badass/badass2Medium.png | Bin 5312 -> 0 bytes img/badass/badass2Mini.png | Bin 3129 -> 0 bytes img/badass/badass3.png | Bin 4671 -> 0 bytes img/badass/badass3Large.png | Bin 7477 -> 0 bytes img/badass/badass3Medium.png | Bin 3980 -> 0 bytes img/badass/badass3Mini.png | Bin 2174 -> 0 bytes img/badass/transparency/badass1-transp.png | Bin 3779 -> 0 bytes .../transparency/badass1Large-transp.png | Bin 5077 -> 0 bytes .../transparency/badass1Medium-transp.png | Bin 2196 -> 0 bytes .../transparency/badass1Mini-transp.png | Bin 1477 -> 0 bytes img/badass/transparency/badass2-transp.png | Bin 5558 -> 0 bytes .../transparency/badass2Large-transp.png | Bin 8024 -> 0 bytes .../transparency/badass2Medium-transp.png | Bin 4668 -> 0 bytes .../transparency/badass2Mini-transp.png | Bin 2804 -> 0 bytes img/badass/transparency/badass3-transp.png | Bin 4625 -> 0 bytes .../transparency/badass3Large-transp.png | Bin 6800 -> 0 bytes .../transparency/badass3Medium-transp.png | Bin 3689 -> 0 bytes .../transparency/badass3Mini-transp.png | Bin 2069 -> 0 bytes img/hero-down.png | Bin 3483 -> 0 bytes img/hero-left.png | Bin 3508 -> 0 bytes img/hero-right.png | Bin 3498 -> 0 bytes img/hero-up.png | Bin 3555 -> 0 bytes img/hero/hero-down-transp.png | Bin 3353 -> 0 bytes img/hero/hero-down.png | Bin 3483 -> 0 bytes img/hero/hero-left-transp.png | Bin 3381 -> 0 bytes img/hero/hero-left.png | Bin 3508 -> 0 bytes img/hero/hero-right-transp.png | Bin 3396 -> 0 bytes img/hero/hero-right.png | Bin 3498 -> 0 bytes img/hero/hero-up-transp.png | Bin 3431 -> 0 bytes img/hero/hero-up.png | Bin 3555 -> 0 bytes img/stage/stage.jpg | Bin 49079 -> 0 bytes 48 files changed, 1010 deletions(-) delete mode 100644 Bullet.java delete mode 100644 Enemy.java delete mode 100644 Explosion.java delete mode 100644 Generals.java delete mode 100644 Player.java delete mode 100644 PowerUp.java delete mode 100644 SpacePanel.java delete mode 100644 SpaceWar.java delete mode 100644 SpaceWarLevel2.png delete mode 100644 SpaceWarLevel4.png delete mode 100644 Text.java delete mode 100644 img/badass/badass1.png delete mode 100644 img/badass/badass1Large.png delete mode 100644 img/badass/badass1Medium.png delete mode 100644 img/badass/badass1Mini.png delete mode 100644 img/badass/badass2.png delete mode 100644 img/badass/badass2Large.png delete mode 100644 img/badass/badass2Medium.png delete mode 100644 img/badass/badass2Mini.png delete mode 100644 img/badass/badass3.png delete mode 100644 img/badass/badass3Large.png delete mode 100644 img/badass/badass3Medium.png delete mode 100644 img/badass/badass3Mini.png delete mode 100644 img/badass/transparency/badass1-transp.png delete mode 100644 img/badass/transparency/badass1Large-transp.png delete mode 100644 img/badass/transparency/badass1Medium-transp.png delete mode 100644 img/badass/transparency/badass1Mini-transp.png delete mode 100644 img/badass/transparency/badass2-transp.png delete mode 100644 img/badass/transparency/badass2Large-transp.png delete mode 100644 img/badass/transparency/badass2Medium-transp.png delete mode 100644 img/badass/transparency/badass2Mini-transp.png delete mode 100644 img/badass/transparency/badass3-transp.png delete mode 100644 img/badass/transparency/badass3Large-transp.png delete mode 100644 img/badass/transparency/badass3Medium-transp.png delete mode 100644 img/badass/transparency/badass3Mini-transp.png delete mode 100644 img/hero-down.png delete mode 100644 img/hero-left.png delete mode 100644 img/hero-right.png delete mode 100644 img/hero-up.png delete mode 100644 img/hero/hero-down-transp.png delete mode 100644 img/hero/hero-down.png delete mode 100644 img/hero/hero-left-transp.png delete mode 100644 img/hero/hero-left.png delete mode 100644 img/hero/hero-right-transp.png delete mode 100644 img/hero/hero-right.png delete mode 100644 img/hero/hero-up-transp.png delete mode 100644 img/hero/hero-up.png delete mode 100644 img/stage/stage.jpg diff --git a/Bullet.java b/Bullet.java deleted file mode 100644 index fd86729..0000000 --- a/Bullet.java +++ /dev/null @@ -1,41 +0,0 @@ -import java.awt.*; - -public class Bullet { - private double x, y, rad, speed, dx, dy; - private int r; - private Color color; - - public Bullet (double angle, int x, int y) { - this.x = x; - this.y = y; - r = 5; - - rad = Math.toRadians(angle); - speed = 10; - dx = Math.cos(rad) * speed; - dy = Math.sin(rad) * speed; - - color = Color.YELLOW; - } - - // Render methods - public boolean update () { - x += dx; - y += dy; - - // Validating if let frame - if (x < -r || x > SpacePanel.width + r || y > SpacePanel.height + r) - return true; - return false; - } - public void draw (Graphics2D g) { - g.setColor(color); - g.fillOval((int) (x - r) - 10, (int) (y - r) - 15, 2 * r, 2 * r); - } - - // Setters - // Getters - public double getX () {return x;} - public double getY () {return y;} - public double getR () {return r;} -} \ No newline at end of file diff --git a/Enemy.java b/Enemy.java deleted file mode 100644 index 18cf77e..0000000 --- a/Enemy.java +++ /dev/null @@ -1,252 +0,0 @@ -import java.awt.*; -import java.awt.image.*; -import java.net.URL; -import javax.imageio.*; -import java.awt.image.*; -import java.net.URL; -import javax.imageio.*; - -public class Enemy extends Generals { - private boolean ready, dead, hit; - private Color color; - private BufferedImage enemyT1, enemyT1Large, enemyT1Mini, enemyT1Medium; - private BufferedImage enemyT2, enemyT2Large, enemyT2Mini, enemyT2Medium; - private BufferedImage enemyT3, enemyT3Large, enemyT3Mini, enemyT3Medium; - private BufferedImage enemyT1Trans, enemyT1LargeTrans, enemyT1MiniTrans, enemyT1MediumTrans; - private BufferedImage enemyT2Trans, enemyT2LargeTrans, enemyT2MiniTrans, enemyT2MediumTrans; - private BufferedImage enemyT3Trans, enemyT3LargeTrans, enemyT3MiniTrans, enemyT3MediumTrans; - private BufferedImage image; - private double x, y, dx, dy, rad, speed; - private int r, health, type, rank; - private long hitTimer; - - public Enemy (int type, int rank) { - this.type = type; - this.rank = rank; - - if (enemyT1Mini == null) enemyT1Mini = loadImg ("/img/badass/badass1Mini.png"); - if (enemyT1Medium == null) enemyT1Medium = loadImg ("/img/badass/badass1Medium.png"); - if (enemyT1 == null) enemyT1 = loadImg ("/img/badass/badass1.png"); - if (enemyT1Large == null) enemyT1Large = loadImg ("/img/badass/badass1Large.png"); - // ------------------------------transparency badass 1 - if (enemyT1Trans == null) enemyT1Trans = loadImg ("/img/badass/transparency/badass1-transp.png"); - if (enemyT1LargeTrans == null) enemyT1LargeTrans = loadImg ("/img/badass/transparency/badass1Large-transp.png"); - if (enemyT1MiniTrans == null) enemyT1MiniTrans = loadImg ("/img/badass/transparency/badass1Mini-transp.png"); - if (enemyT1MediumTrans == null) enemyT1MediumTrans = loadImg ("/img/badass/transparency/badass1Medium-transp.png"); - - if (enemyT2Mini == null) enemyT2Mini = loadImg ("/img/badass/badass2Mini.png"); - if (enemyT2Medium == null) enemyT2Medium = loadImg ("/img/badass/badass2Medium.png"); - if (enemyT2 == null) enemyT2 = loadImg ("/img/badass/badass2.png"); - if (enemyT2Large == null) enemyT2Large = loadImg ("/img/badass/badass2Large.png"); - // ------------------------------transparency badass 2 - if (enemyT2Trans == null) enemyT2Trans = loadImg ("/img/badass/transparency/badass2-transp.png"); - if (enemyT2LargeTrans == null) enemyT2LargeTrans = loadImg ("/img/badass/transparency/badass2Large-transp.png"); - if (enemyT2MiniTrans == null) enemyT2MiniTrans = loadImg ("/img/badass/transparency/badass2Mini-transp.png"); - if (enemyT2MediumTrans == null) enemyT2MediumTrans = loadImg ("/img/badass/transparency/badass2Medium-transp.png"); - - if (enemyT3Mini == null) enemyT3Mini = loadImg ("/img/badass/badass3Mini.png"); - if (enemyT3Medium == null) enemyT3Medium = loadImg ("/img/badass/badass3Medium.png"); - if (enemyT3 == null) enemyT3 = loadImg ("/img/badass/badass3.png"); - if (enemyT3Large == null) enemyT3Large = loadImg ("/img/badass/badass3Large.png"); - // ------------------------------transparency badass 3 - if (enemyT3Trans == null) enemyT3Trans = loadImg ("/img/badass/transparency/badass3-transp.png"); - if (enemyT3LargeTrans == null) enemyT3LargeTrans = loadImg ("/img/badass/transparency/badass3Large-transp.png"); - if (enemyT3MiniTrans == null) enemyT3MiniTrans = loadImg ("/img/badass/transparency/badass3Mini-transp.png"); - if (enemyT3MediumTrans == null) enemyT3MediumTrans = loadImg ("/img/badass/transparency/badass3Medium-transp.png"); - - if (type == 1) { - if (rank == 1) { - speed = 3; - r = 15; - health = 1; - - image = enemyT1Mini; - } - if (rank == 2) { - speed = 3; - r = 25; - health = 2; - - image = enemyT1Medium; - } - if (rank == 3) { - speed = 1.5; - r = 30; - health = 3; - - image = enemyT1; - } - if (rank == 4) { - speed = 1.5; - r = 40; - health = 5; - - image = enemyT1Large; - } - } - // Stronger, faster default - if (type == 2) { - if (rank == 1) { - speed = 3; - r = 15; - health = 2; - image = enemyT2Mini; - } - if (rank == 2) { - speed = 3; - r = 25; - health = 3; - image = enemyT2Medium; - } - if (rank == 3) { - speed = 2.5; - r = 30; - health = 3; - image = enemyT2; - } - if (rank == 4) { - speed = 2.5; - r = 40; - health = 4; - image = enemyT2Large; - } - } - // Slow, but hard to kill - if (type == 3) { - if (rank == 1) { - speed = 1.5; - r = 15; - health = 5; - image = enemyT3Mini; - } - if (rank == 2) { - speed = 1.5; - r = 25; - health = 6; - image = enemyT3Medium; - } - if (rank == 3) { - speed = 1.5; - r = 30; - health = 7; - image = enemyT3; - } - if (rank == 4) { - speed = 1.5; - r = 40; - health = 8; - image = enemyT3Large; - } - } - - x = Math.random() * SpacePanel.width / 2 + SpacePanel.width / 4; - y = -r; - - double angle = Math.random() * 140 + 20; - rad = Math.toRadians(angle); - - dx = Math.cos(rad) * speed; - dy = Math.sin(rad) * speed; - - ready = false; - dead = false; - hit = false; - hitTimer = 0; - } - - // Setters - // Getters - public double getX () {return x;} - public double getY () {return y;} - public int getR () {return r;} - public boolean isDead () {return dead;} - public int getType () {return type;} - public int getRank () {return rank;} - - // General methods - public void explode () { - if (rank > 1) { - int amount = 0; - if (type == 1) amount = 2; - if (type == 2) amount = 3; - if (type == 3) amount = 4; - - for (int i = 0; i < amount; i++) { - Enemy e = new Enemy(getType(), getRank() - 1); - e.x = this.x; - e.y = this.y; - double angle = 0; - - if (!ready) angle = Math.random() * 140 + 20; - else angle = Math.random() * 360; - - e.rad = Math.toRadians(angle); - SpacePanel.enemies.add(e); - } - } - } - public void hit () { - health--; - if (health <= 0) dead = true; - hit = true; - hitTimer = System.nanoTime(); - } - - // Render methods - public void update () { - x += dx; - y += dy; - - if (!ready) - if (x > r && x < SpacePanel.width - r && y > r && y < SpacePanel.height - r) - ready = true; - - // Bounce - if (x < r && dx < 0) dx = -dx; - if (y < r && dy < 0) dy = -dy; - if (x > SpacePanel.width - r && dx > 0) dx = -dx; - if (y > SpacePanel.height - r && dy > 0) dy = -dy; - - if (hit) { - long elapsed = (System.nanoTime() - hitTimer) / 1000000; - if (elapsed > 50) { - hit = false; - hitTimer = 0; - } - } - } - public void draw (Graphics2D g) { - if (hit) { - if (image == enemyT1) image = enemyT1Trans; - if (image == enemyT1Large) image = enemyT1LargeTrans; - if (image == enemyT1Mini) image = enemyT1MiniTrans; - if (image == enemyT1Medium) image = enemyT1MediumTrans; - - if (image == enemyT2) image = enemyT2Trans; - - /*g.setColor(Color.WHITE); - g.fillOval((int) (x - r), (int) (y - r), 2 * r, 2 * r); - - g.setStroke(new BasicStroke(3)); - g.setColor(Color.WHITE.darker()); - g.drawOval((int) (x - r), (int) (y - r), 2 * r, 2 * r); - g.setStroke(new BasicStroke(1));*/ - } else { - if (image == enemyT1Trans) image = enemyT1; - if (image == enemyT1LargeTrans) image = enemyT1Large; - if (image == enemyT1MiniTrans) image = enemyT1Mini; - if (image == enemyT1MediumTrans) image = enemyT1Medium; - - if (image == enemyT2Trans) image = enemyT2; - - /*g.setColor(c1); - g.fillOval((int) (x - r), (int) (y - r), 2 * r, 2 * r); - - g.setStroke(new BasicStroke(3)); - g.setColor(c1.darker()); - g.drawOval((int) (x - r), (int) (y - r), 2 * r, 2 * r); - g.setStroke(new BasicStroke(1));*/ - } - g.drawImage(image, (int) (x - r), (int) (y - r), null); - } -} \ No newline at end of file diff --git a/Explosion.java b/Explosion.java deleted file mode 100644 index 509acca..0000000 --- a/Explosion.java +++ /dev/null @@ -1,26 +0,0 @@ -import java.awt.*; - -public class Explosion { - private double x, y; - private int r, maxRadius; - - public Explosion (double x, double y, int r, int max) { - this.x = x; - this.y = y; - this.r = r; - this.maxRadius = max; - } - - public boolean update () { - r++; - if (r >= maxRadius) - return true; - return false; - } - public void draw (Graphics2D g) { - g.setColor(new Color(255, 255, 255, 128)); - g.setStroke(new BasicStroke(3)); - g.drawOval((int) (x - r), (int) (y - r), 2 * r, 2 * r); - g.setStroke(new BasicStroke(1)); - } -} \ No newline at end of file diff --git a/Generals.java b/Generals.java deleted file mode 100644 index 411c712..0000000 --- a/Generals.java +++ /dev/null @@ -1,18 +0,0 @@ -import java.awt.image.*; -import java.net.URL; -import javax.imageio.*; - -public class Generals { - // Loading image - public BufferedImage loadImg (String urlName) { - try { - URL url = getClass().getResource(urlName); - BufferedImage img = ImageIO.read(url); - System.out.println(getClass().getResource(urlName)); - return img; - } catch (Exception e) { - System.out.println("Error " + e.getMessage()); - return null; - } - } -} \ No newline at end of file diff --git a/Player.java b/Player.java deleted file mode 100644 index ef0fc5a..0000000 --- a/Player.java +++ /dev/null @@ -1,157 +0,0 @@ -import java.awt.*; -import java.awt.image.*; -import java.net.URL; -import javax.imageio.*; - -public class Player extends Generals { - private boolean left, right, up, down, firing, recovering; - private BufferedImage imageUp, imageUpTrans /*,imageLeft, imageRigth, imageDown*/, image; - private Color color1, color2; - private int requiredPower[] = {1, 2, 3, 4, 5, 6, 7, 8}; - private int x, y, r, dx, dy, speed, lives, score, powerLevel, power; - private long firingTimer, firingDelay, recoveryTimer; - - public Player () { - x = SpacePanel.width / 2; - y = SpacePanel.height - 100; - r = 25; - - dx = 0; - dy = 0; - speed = 5; - lives = 3; - - color1 = Color.WHITE; - color2 = Color.RED; - - firing = false; - firingTimer = System.nanoTime(); - firingDelay = 200; - - recovering = false; - recoveryTimer = System.nanoTime(); - - score = 0; - - if (imageUp == null) imageUp = loadImg ("/img/hero/hero-up.png"); - if (imageUpTrans == null) imageUpTrans = loadImg ("/img/hero/hero-up-transp.png"); - //if (imageDown == null) imageDown = loadImg ("/img/hero/hero-down.png"); - //if (imageRigth == null) imageRigth = loadImg ("/img/hero/hero-right.png"); - //if (imageLeft == null) imageLeft = loadImg ("/img/hero/hero-left.png"); - image = imageUp; - } - - // Render methods - public void update () { - if (left) dx = -speed; - if (right) dx = speed; - if (up) dy = -speed; - if (down) dy = speed; - - x += dx; - y += dy; - - // setting the frame border - if (x < r) x = r; - if (y < r) y = r; - if (x > SpacePanel.width - r) x = SpacePanel.width - r; - if (y > SpacePanel.height - r) y = SpacePanel.height - r; - - dx = 0; - dy = 0; - - if (firing) { - long elapsed = (System.nanoTime() - firingTimer) / 1000000; - if (elapsed > firingDelay) { - firingTimer = System.nanoTime(); - if (powerLevel < 2) - SpacePanel.bullets.add(new Bullet(270, (x + 10), y)); - else - if (powerLevel < 3) { - SpacePanel.bullets.add(new Bullet(270, (x + 10) + 5, y)); - SpacePanel.bullets.add(new Bullet(270, (x + 10) - 5, y)); - } else - if (powerLevel < 4) { - SpacePanel.bullets.add(new Bullet(265, (x + 10) - 5, y)); - SpacePanel.bullets.add(new Bullet(270, (x + 10), y)); - SpacePanel.bullets.add(new Bullet(277, (x + 10) + 5, y)); - } else { - SpacePanel.bullets.add(new Bullet(264, (x + 10) - 3, y)); - SpacePanel.bullets.add(new Bullet(267, (x + 10) - 3, y)); - SpacePanel.bullets.add(new Bullet(270, (x + 10), y)); - SpacePanel.bullets.add(new Bullet(273, (x + 10) + 3, y)); - SpacePanel.bullets.add(new Bullet(276, (x + 10) + 3, y)); - } - } - } - - // Time, i am invencible (2 s) - if (recovering) { - long elapsed = (System.nanoTime() - recoveryTimer) / 1000000; - if (elapsed > 2000) { - recovering = false; - recoveryTimer = 0; - } - } - } - public void draw (Graphics2D g) { - if (recovering) { - image = imageUpTrans; - g.drawImage(image, x - r, y - r, null); - /*g.setColor(color2); - g.fillOval(x - r, y - r, 2 * r, 2 * r); - - g.setStroke(new BasicStroke(3)); - g.setColor(color2.darker()); - g.drawOval(x - r, y - r, 2 * r, 2 * r); - g.setStroke(new BasicStroke(1));*/ - } else { - // This is the player - image = imageUp; - g.drawImage(image, x - r, y - r, null); - /*g.setColor(color1); - g.fillOval(x - r, y - r, 2 * r, 2 * r); - - g.setStroke(new BasicStroke(3)); - g.setColor(color1.darker()); - g.drawOval(x - r, y - r, 2 * r, 2 * r); - g.setStroke(new BasicStroke(1));*/ - } - } - - // Setters - public void setLife (int life) {lives = life;} - public void setLeft (boolean direction) {left = direction;} - public void setRigth (boolean direction) {right = direction;} - public void setUp (boolean direction) {up = direction;} - public void setDown (boolean direction) {down = direction;} - public void setFiring (boolean fire) {firing = fire;} - public void setScore (int sc) {score += sc;} - // Getters - public boolean isDead () {return lives <= 0;} - public boolean isRecovering () {return recovering;} - public int getLives () {return lives;} - public int getPower () {return power;} - public int getPowerLevel () {return powerLevel;} - public int getR () {return r;} - public int getRequiredPower () {return requiredPower[powerLevel];} - public int getScore () {return score;} - public int getX () {return x;} - public int getY () {return y;} - - // General methods - public void loseLife () { - lives--; - recovering = true; - recoveryTimer = System.nanoTime(); - } - public void increasePower (int pwr) { - if (power < 6) { - power += pwr; - if (power >= requiredPower[powerLevel]) { - power -= requiredPower[powerLevel]; - powerLevel++; - } - } - } -} \ No newline at end of file diff --git a/PowerUp.java b/PowerUp.java deleted file mode 100644 index a887fb7..0000000 --- a/PowerUp.java +++ /dev/null @@ -1,53 +0,0 @@ -import java.awt.*; - -public class PowerUp { - private Color color; - private double x, y; - private int r, type; - - // 1 = +1 life - // 2 = +1 power - // 3 = +2 power - public PowerUp (int type, double x, double y) { - this.type = type; - this.x = x; - this.y = y; - - if (type == 1) { - color = Color.RED; - r = 3; - } - if (type == 2) { - color = Color.GREEN; - r = 4; - } - if (type == 3) { - color = Color.YELLOW; - r = 6; - } - } - - // Getters - public double getX () {return x;} - public double getY () {return y;} - public double getR () {return r;} - public int getType () {return type;} - // Setters - - // Render methods - public boolean update () { - y += 2; - if (y > SpacePanel.height + r) - return true; - return false; - } - public void draw (Graphics2D g) { - g.setColor(color); - g.fillRect((int) (x - r), (int) (y - r), 2 * r, 2 * r); - - g.setStroke(new BasicStroke(3)); - g.setColor(color.darker()); - g.drawRect((int) (x - r), (int) (y - r), 2 * r, 2 * r); - g.setStroke(new BasicStroke(1)); - } -} \ No newline at end of file diff --git a/SpacePanel.java b/SpacePanel.java deleted file mode 100644 index 83008f5..0000000 --- a/SpacePanel.java +++ /dev/null @@ -1,406 +0,0 @@ -import java.awt.*; -import java.awt.event.*; -import java.awt.image.*; -import java.net.URL; -import java.util.*; -import javax.swing.*; -import javax.imageio.*; - -public class SpacePanel extends JPanel implements Runnable, KeyListener { - public final static int width = 800; - public final static int height = 600; - - private boolean running, waveStart; - private BufferedImage image, lifeImg; - private double averageFps; - private Graphics2D g; - private int fps = 30, waveDelay = 2000, limitLevel = 12; - private int waveNumber; - private long waveStartTimer, waveStartTimerDiff; - private Thread thread; - - public static Player player; - public static ArrayList bullets; - public static ArrayList enemies; - public static ArrayList powerUps; - public static ArrayList explosions; - public static ArrayList texts; - - public SpacePanel () { - super(); - setPreferredSize(new Dimension(width, height)); - setFocusable(true); - requestFocus(); - } - public void addNotify () { - super.addNotify(); - - // Thread to start our game - if (thread == null) { - thread = new Thread(this); - thread.start(); - } - - addKeyListener(this); - } - - // Loading image - public BufferedImage loadImg (String urlName) { - try { - URL url = getClass().getResource(urlName); - BufferedImage img = ImageIO.read(url); - System.out.println(getClass().getResource(urlName)); - return img; - } catch (Exception e) { - System.out.println("Error " + e.getMessage()); - return null; - } - } - - // Runnable methods - public void run () { - running = true; - - if (lifeImg == null) lifeImg = loadImg ("/img/hero/hero-up-transp.png"); - image = new BufferedImage(width, height, BufferedImage.TYPE_INT_RGB); - g = (Graphics2D) image.getGraphics(); - g.setRenderingHint(RenderingHints.KEY_ANTIALIASING, RenderingHints.VALUE_ANTIALIAS_ON); - g.setRenderingHint(RenderingHints.KEY_TEXT_ANTIALIASING, RenderingHints.VALUE_TEXT_ANTIALIAS_ON); - - player = new Player(); - bullets = new ArrayList(); - enemies = new ArrayList(); - powerUps = new ArrayList(); - explosions = new ArrayList(); - texts = new ArrayList(); - - waveStartTimer = 0; - waveStartTimerDiff = 0; - waveStart = true; - waveNumber = 0; - - long startTime ; - long URDTimeMillis; - long waitTime = 0; - long totalTime = 0; - long targetTime = 1000 / fps; - - int frameCount = 0; - int maxFrameCount = 30; - - // - while (running) { - startTime = System.nanoTime(); - - gameUpdate(); - gameRender(); - gameDraw(); - - URDTimeMillis = (System.nanoTime() - startTime) / 1000000; - waitTime = targetTime - URDTimeMillis; - try { - Thread.sleep(waitTime); - } catch (Exception ex) { - totalTime += System.nanoTime() - startTime; - frameCount++; - if (frameCount == maxFrameCount) { - averageFps = 1000 / ((totalTime / frameCount) / 1000000); - frameCount = 0; - totalTime = 0; - } - } - } - - // Game over message - g.setColor(new Color(0, 100, 255)); - g.fillRect(0, 0, width, height); - g.setColor(Color.WHITE); - g.setFont(new Font("Century Gothic", Font.PLAIN, 20)); - String s = "Game over"; - int length = (int) g.getFontMetrics().getStringBounds(s, g).getWidth(); - g.drawString(s, (width - length) / 2, height / 2); - String score = "Total score: " + player.getScore(); - g.drawString(score, (width - length) / 2, height / 2 + 50); - gameDraw(); - } - - private void createNewEnemies () { - enemies.clear(); - Enemy e; - - if (waveNumber >= 1 && waveNumber <= 4) { - for (int i = 0; i < waveNumber; i++) - enemies.add(new Enemy(1, 1)); - for (int i = 0; i < 3; i++) - enemies.add(new Enemy(1, waveNumber)); - } - if (waveNumber >= 5 && waveNumber <= 8) { - for (int i = 0; i < 5; i++) - enemies.add(new Enemy(2, 1)); - for (int i = 0; i < 3; i++) - enemies.add(new Enemy(2, (waveNumber - 4))); - } - if (waveNumber >= 9 && waveNumber <= 12) { - for (int i = 0; i < 7; i++) - enemies.add(new Enemy(3, 1)); - for (int i = 0; i < 2; i++) - enemies.add(new Enemy(3, (waveNumber - 8))); - } else - if (waveNumber > limitLevel) - running = false; - } - - // ----------------------Methods game, update, render, draw - private void gameUpdate() { - if (waveStartTimer == 0 && enemies.size() == 0) { - waveNumber++; - waveStart = false; - waveStartTimer = System.nanoTime(); - } else { - waveStartTimerDiff = (System.nanoTime() - waveStartTimer) / 1000000; - if (waveStartTimerDiff > waveDelay) { - waveStart = true; - waveStartTimer = 0; - waveStartTimerDiff = 0; - } - } - - // The badass enemies - if (waveStart && enemies.size() == 0) - createNewEnemies(); - - player.update(); - - // ----------------Removing elements - // removing bullets - for (int i = 0; i < bullets.size(); i++) { - boolean remove = bullets.get(i).update(); - if (remove) { - bullets.remove(i); - i--; - } - } - // explosions update - for (int i = 0; i < explosions.size(); i++) { - boolean remove = explosions.get(i).update(); - if (remove) { - explosions.remove(i); - i--; - } - } - // Powerup update - for (int i = 0; i < powerUps.size(); i++) { - boolean remove = powerUps.get(i).update(); - if (remove) { - powerUps.remove(i); - i--; - } - } - // Text update - for (int i = 0; i < texts.size(); i++) { - boolean remove = texts.get(i).update(); - if (remove) { - texts.remove(i); - i--; - } - } - // Enemy update - for (int i = 0; i < enemies.size(); i++) - enemies.get(i).update(); - - for (int i = 0; i < bullets.size(); i++) { - Bullet b = bullets.get(i); - double bx = b.getX(); - double by = b.getY(); - double br = b.getR(); - for (int j = 0; j < enemies.size(); j++) { - Enemy e = enemies.get(j); - double ex = e.getX(); - double ey = e.getY(); - double er = e.getR(); - - double dx = bx - ex; - double dy = by - ey; - - double dist = Math.sqrt(dx * dx + dy * dy); - - // Killing faggots enemies - if (dist < br + er) { - e.hit(); - bullets.remove(i); - i--; - break; - } - } - } - - // Player dead - if (player.isDead()) { - running = false; - } - - // Print dead enemies - for (int i = 0; i < enemies.size(); i++) { - if (enemies.get(i).isDead()) { - Enemy e = enemies.get(i); - - // Chance for powerup - double rand = Math.random(); - if (rand < 0.010) - powerUps.add(new PowerUp(1, e.getX(), e.getY())); - else - if (rand < 0.100) - powerUps.add(new PowerUp(2, e.getX(), e.getY())); - else - if (rand < 0.130) - powerUps.add(new PowerUp(3, e.getX(), e.getY())); - - player.setScore(e.getType() + e.getRank()); - enemies.remove(i); - i--; - - e.explode(); - explosions.add(new Explosion(e.getX(), e.getY(), e.getR(), e.getR() + 30)); - } - } - - // Colision - if (!player.isRecovering()) { - int px = player.getX(); - int py = player.getY(); - int pr = player.getR(); - for (int i = 0; i < enemies.size(); i++) { - Enemy e = enemies.get(i); - double ex = e.getX(); - double ey = e.getY(); - double er = e.getR(); - - double dx = px - ex; - double dy = py - ey; - double dist = Math.sqrt(dx * dx + dy * dy); - - if (dist < pr + er) - player.loseLife(); - } - } - - // Player powerup collision - int px = player.getX(); - int py = player.getY(); - int pr = player.getR(); - for (int i = 0; i < powerUps.size(); i++) { - PowerUp p = powerUps.get(i); - double x = p.getX(); - double y = p.getY(); - double r = p.getR(); - double dx = px - x; - double dy = py - y; - double dist = Math.sqrt(dx * dx + dy * dy); - - if (dist < pr + r) { - int type = p.getType(); - if (type == 1) { - player.setLife(player.getLives() + 1); - texts.add(new Text(player.getX(), player.getY(), 2000, "Life +1")); - } - if (type == 2) { - player.increasePower(1); - texts.add(new Text(player.getX(), player.getY(), 2000, "Power +1")); - } - if (type == 3) { - player.increasePower(2); - texts.add(new Text(player.getX(), player.getY(), 2000, "Power +2")); - } - - powerUps.remove(i); - i--; - } - } - } - private void gameRender() { - // Drawing da background of our game - g.setColor(new Color(0, 100, 240)); - g.fillRect(0, 0, width, height); - - // Our hero - player.draw(g); - - // ------------------Drawing the elements - // Drawing da bullets - for (int i = 0; i < bullets.size(); i++) - bullets.get(i).draw(g); - // Drawing da anemies - for (int i = 0; i < enemies.size(); i++) - enemies.get(i).draw(g); - // Draw powers - for (int i = 0; i < powerUps.size(); i++) - powerUps.get(i).draw(g); - // Explosions - for (int i = 0; i < explosions.size(); i++) - explosions.get(i).draw(g); - // Draw text - for (int i = 0; i < texts.size(); i++) - texts.get(i).draw(g); - - // Wave number - if (waveStartTimer != 0 && waveNumber <= limitLevel) { - g.setFont(new Font("Century Gothic", Font.PLAIN, 20)); - String s = "-Level " + waveNumber + ", good luck"; - int length = (int) g.getFontMetrics().getStringBounds(s, g).getWidth(); - //int alpha = (int) (255 * Math.sin(Math.PI * waveStartTimerDiff / waveDelay)); - //if (alpha > 255) alpha = 255; - g.setColor(new Color(255, 255, 255, 128)); - g.drawString(s, width / 2 - length, height / 2); - } - - // Drawing player power - g.setColor(Color.YELLOW); - g.fillRect(20, 60, player.getPower() * 8, 8); - g.setColor(Color.YELLOW.darker()); - g.setStroke(new BasicStroke(3)); - for (int i = 0; i < player.getRequiredPower(); i++) - g.drawRect(20 + 8 * i, 60, 8, 8); - g.setStroke(new BasicStroke(1)); - - // Player lives - for (int i = 0; i < player.getLives(); i++) - g.drawImage(lifeImg, 25 + (35 * i), 20, 30, 30, null); - - // Player score - g.setColor(Color.WHITE); - g.setFont(new Font("Century Gothic", Font.PLAIN, 16)); - g.drawString("Score: " + player.getScore(), width - 100, 30); - // Showing level number - g.setColor(Color.WHITE); - g.setFont(new Font("Century Gothic", Font.PLAIN, 14)); - g.drawString("Level: " + waveNumber, width - 170, 30); - } - private void gameDraw() { - Graphics g2 = this.getGraphics(); - g2.drawImage(image, 0, 0, null); - g2.dispose(); - } - - // KeyListener methods - public void keyPressed (KeyEvent e) { - int keyCode = e.getKeyCode(); - - if (keyCode == 27) System.exit(0); - if (keyCode == KeyEvent.VK_LEFT) player.setLeft(true); - if (keyCode == KeyEvent.VK_RIGHT) player.setRigth(true); - if (keyCode == KeyEvent.VK_UP) player.setUp(true); - if (keyCode == KeyEvent.VK_DOWN) player.setDown(true); - if (keyCode == KeyEvent.VK_Z || keyCode == 32) player.setFiring(true); - } - public void keyReleased (KeyEvent e) { - int keyCode = e.getKeyCode(); - - if (keyCode == 27) System.exit(0); - if (keyCode == KeyEvent.VK_LEFT) player.setLeft(false); - if (keyCode == KeyEvent.VK_RIGHT) player.setRigth(false); - if (keyCode == KeyEvent.VK_UP) player.setUp(false); - if (keyCode == KeyEvent.VK_DOWN) player.setDown(false); - if (keyCode == KeyEvent.VK_Z || keyCode == 32) player.setFiring(false); - } - public void keyTyped (KeyEvent e) {} -} \ No newline at end of file diff --git a/SpaceWar.java b/SpaceWar.java deleted file mode 100644 index 13b240f..0000000 --- a/SpaceWar.java +++ /dev/null @@ -1,23 +0,0 @@ -/* - Author: Khriz EnrĂ­quez @khrizenriquez - - Image sprites: http://sm.ingenieriamultimedia.org/lib/exe/fetch.php?media=alumnos:grupo_13:naves.png -*/ -import javax.swing.JFrame; - -public class SpaceWar { - public static void main(String[] args) { - JFrame container = new JFrame("SpaceWar"); - - container.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); - container.setContentPane(new SpacePanel()); - - // Hides the border in our game - container.setUndecorated(true); - - container.setResizable(false); - container.setLocationRelativeTo(null); - container.pack(); - container.setVisible(true); - } -} \ No newline at end of file diff --git a/SpaceWarLevel2.png b/SpaceWarLevel2.png deleted file mode 100644 index 46d5ff5669a97f98e4d4e71d737fc6316cce3428..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 20782 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 diff --git a/SpaceWarLevel4.png b/SpaceWarLevel4.png deleted file mode 100644 index 782e71a5f9b74254c6bc7393fa1a548354e399e2..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 32759 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 time) - return true; - return false; - } - public void draw (Graphics2D g) { - g.setFont(new Font("Century Gothic", Font.PLAIN, 12)); - long elapsed = (System.nanoTime() - start) / 1000000; - //int alpha = (int) (255 * Math.sin(Math.PI * elapsed / time)); - //if (alpha > 255) alpha = 255; - g.setColor(new Color(255, 255, 255, 128)); - int length = (int) g.getFontMetrics().getStringBounds(s, g).getWidth(); - g.drawString(s, (int) (x - (length / 2)), (int) y); - } -} \ No newline at end of file diff --git a/img/badass/badass1.png b/img/badass/badass1.png deleted file mode 100644 index fc9eb511f747225fe639a81d2e9b3c6bf53bd8cd..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 3971 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 diff --git a/img/badass/badass1Large.png b/img/badass/badass1Large.png deleted file mode 100644 index 677b2a1bf043ed326818fa35e823aab9ea697e18..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 5938 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 Uv>p;%7XSbN07*qoM6N<$f+c84zW@LL diff --git a/img/badass/badass1Medium.png b/img/badass/badass1Medium.png deleted file mode 100644 index 69c248b004ed22a8d9e5f569a8bdbe49f4e4feb4..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 2434 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 Ao&W#< diff --git a/img/badass/badass1Mini.png b/img/badass/badass1Mini.png deleted file mode 100644 index c7a69843afd94cbbde24a7babb03ce68eaa228d5..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 1686 zcmV;H25I?;P)X1^@s6CN-WK00001b5ch_0Itp) z=>Px#24YJ`L;(K){{a7>y{D4^000SaNLh0L01Jr#01Jr$H_6Mb00007bV*G`2i^)5 z0TdDyLZsOM00tIGL_t(Y$JJJAaFpd0e$M+{_S^5GKQbQn;WLOA^CJ=IC zlg(bf>*){Lnb?^IC>>`!zuq~w=bU-pbKVE|G>QA_sPk)|5UBSrP;V<_`?pX4zxtiKeQke=m0eD^uXL>RFW5MHef}38%ijFm z6@@YYgs<(kk8i4q{%l;=?q6|7wR>>kV9{Tj;8Rq90Z9T`EcnH_aR9(k(v_F;^8Z4rBr!)@z@qwl-bHA_pozCLw4oBYOJwlUi z+SyV({dg`?WK|sdd)|I475~WuBNoq?rsBEGIkx@ziao%<00B7YspS*HMkE%|luj12 ze*ALq)pZ{<;s>c=qt9~6G)e0v;YmUeC(V(FY>ce-Q-1BDU$$YOM`{igbq~pRO6z&q z-tu}&&Sr^KpB4~P0zuxKGJ87$1tKLWa#$h17fuYnfHnkq8D6*zJh@1aCL{@pEDC-; zzM9tE-dOuJd^EVLV#?D{EH#&=jO(#w2w$PkCzp60gAAJ^6LWhv+|-_v0bp}Y;`Gw` zqJspwTL@xBl|wR&>(4bsiLxFhTt^5;bKl4$sajjg@5z$TNRmiZBuElPP#hJRc3P(B zoQoD}rH6MEjVr1gg5$Wzn~-DM^kA_IfckBVw*i3k*xoN;|CR)9SQ6VM`*?{gNg+j+ zVP43iBiqVxy1@@0WR6a!;Jzbi{S_+|9+uRSf~Zju(iQ3($o2>7_ZN1hl&>^XN#<>=m%WlcQG8vx7ApJbH^qrn)PtW^*u++s|PVIBG^X(W(Tly4qOIE$Z(lh zHWaW25CgL0V{1g?NjD5Y(KF{&J^Q?4@r~=I?%%qqb@s=X(0>m4eS4>3W6g<+g~V_4 zM(ji~i z#&FufP{u~`f(7&Zg=gaTbv`=QCKLb7u(t950Kg_9&-J?5v=(JYvhRD2dv|k-edHg1 zE~KGzDm5SQdyZv)$IV%5B*(4Oh+kq!=$Bfd;*vj+#{eTUZ}RvCCu?Vin)tXwLud?^QJh9pRT{r4@Kjc8zY*0K*N89k%K zoQtnnr0Mjb;WtN;PX3vA--@!DqCKwTSy$b$UsI47GGm=>DG~~AlmxBu%ji9Gc%~D7 zXCWu!*Ikf>`52a}kGRr+T@PKv>TV1?o=%#L0Pqff`IDo#Z@76?{7 g04V=f{uRgn6Ze;_(xQiNF#rGn07*qoM6N<$g4E+Ei~s-t diff --git a/img/badass/badass2.png b/img/badass/badass2.png deleted file mode 100644 index 8eacc09549ac4ac6527ca92418e19dbbc58772bd..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 5655 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 mL_U0JH2U?iiNs%A|NjFp{LRKw5_1Ls0000l8 diff --git a/img/badass/badass3Mini.png b/img/badass/badass3Mini.png deleted file mode 100644 index 23d192de0bec9c44aa66d9683b54e024122c3674..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 2174 zcmV-^2!Z#BP)Px#24YJ`L;(K){{a7>y{D4^000SaNLh0L01Qq501Qq6e|L-{00007bV*G`2i^)5 z0v`hDN7F9=00;g_L_t(o!_Aj_a8=b6#(#UCbI-lW$-PN#UWPnK3=sq*0SwhrrqPOG zb)-`9QE@=4sI@I)mGMz&2gll0YqeEd+M<T6NDMVa>D$CnOJ)1@ug9KAT+@xZNZE>{q%|FoYA`M7Y_(j zsa4OWT}AnhIvjJUkS@+r&77+0I3ZnP?r=;Vra5Kb9rxe!`|1nob#7T3vZ!% zwFD?oKq{RTKX`aadJC0$HF@ff&y(@ z9ZaU4i6}jQR&@Ik+3UK+*-GbSna1CWZgvu?7xW59L4G_GoaS4Wh}Lu$7o7~`0p0GC z;1{5rIfmWt`*RNX(pF;y4p=aNFWM2w=?Mhp-st-`{myfXd_>+$4YH(ZgFn_#Npo>g z!T!e&bZ_qwnKdj{S>-r6>pb_Kv8W~DxdTD1j5sQ*5$uTghZ2ro(|$ga{RI82;C(j` z2qjH3l+4HwF$@NCa`B-Q=vMjElF#JT8UDYP56I63Aa}Cw5Bk0zb40v=(wVzcsWHvI zZw&9a0>pxzAV!Dz%l%!+OvO52*60b%zR-eIiDB{%1h+twq1k`GaT70L_#`6g_Xx^v38M<<)}uY z2T$$t+=Ch*Cj20*SU+k4fV#GzNWC5X9yJB?s0d%k`_9E&nU@oJUHmK5KR74RzATLqKqVp(Dqj9O#f^=6;~{-x-q-J%^3)R@!S#Flr*8IKV}{kI zzGin*A8KWvyPvgvyN*1>6!5K0@D_mn=mM_?;OC>O_?1YM&GwgNjW>w~_hdHt(>TMn z*^r1y;M{YF-nvY04`obkswlrcCB6#A<7g2Qi6kFXRxaKeu+?J*1%w~HcAp^d! zCsNNErm)tTz&5FoI=kS=gJdJ{^vHl7X#*jpaNu?e=8rV?AvZ2xvOP7BY>`9BcIITc zvfpu(sWnD2fz#iQrL`!n#8!%6Uq5C%PD%4#{6IiV5dp;XJkSaOl}L6-e{vtOWQ$A< z2bAZ>WE8md`ktAOBnf%u{ey^5Z#b8s~qy6#89sy+K` ze8)XWxZWrp~Y6AJOtPJ^tL z{i^WQEp-0&MX9l4*a4I0+S=5wAAXqriVE4?+>C-=3)Xt@IB)~-TGuh$&8Nb-rfIKt z-8W+}0T2aTT~NReOG|OJW@WsZvP@3}#iy~`k*ji=2`j~Qd-kxluMdB?zbR-nq1J)k zbWFrC(dKzZ3PM?>Wr**ix;h8KB1wGT)tcx;tIsOV2#DpmV7r(i-k|Gt6@nSb$%#6) zt(DRYwzVqfI9$%LZIuWv$aSqP3=GC7d30sd>?KPU=6dmcO@$>dt_fC7pVHMO@se`c z*>*@z2)2GWZm4tSZ~FR5raiXm<*gUZkLKDL+^bYtHcY4EbOGf!zPPcN>dOk37J`%6 zJJc6(Vh8622}I zf+FqvI%B=Pm9H#aI<9N#G+t_Mp1*L>74PpaIZ+DQ+E5x)(?Q<6>>FRW@A3sZliAt0 z*%2yMt~@B`o#&kAtjE7SZ(@#%54QdvOra*-9+y!XMEM?dQ< z%qx5Bgz|=(iC4+QN!Q9fPpp83BX44)}h09BB$p+iIac&+pK zyg|y!bS|vVfQ`#-JHY1=ry0iOvjTzTpJmQ}0~MicsuJK?l>h($07*qoM6N<$f{Io! AJ^%m! diff --git a/img/badass/transparency/badass1-transp.png b/img/badass/transparency/badass1-transp.png deleted file mode 100644 index 2a8a40db0751e903d2d0e86f3d077c91b931b782..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 3779 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 diff --git a/img/badass/transparency/badass1Large-transp.png b/img/badass/transparency/badass1Large-transp.png deleted file mode 100644 index 37b48148a431d94d89481f083d6d0c44ab0f9cdc..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 5077 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 diff --git a/img/badass/transparency/badass2-transp.png b/img/badass/transparency/badass2-transp.png deleted file mode 100644 index 1671f909157919bf8339d57886634faf5066b7f8..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 5558 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 Ef;d0fr2qf` diff --git a/img/badass/transparency/badass2Large-transp.png b/img/badass/transparency/badass2Large-transp.png deleted file mode 100644 index e285ee89ef4a6a72496af92e0d3500602af6f210..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 8024 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 Hu0mjfJOc5k diff --git a/img/badass/transparency/badass3Large-transp.png b/img/badass/transparency/badass3Large-transp.png deleted file mode 100644 index dab124f0b9707e0bf1a707b80ef5e0062f3e37af..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 6800 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 Hu0mjfM-2oq diff --git a/img/badass/transparency/badass3Mini-transp.png b/img/badass/transparency/badass3Mini-transp.png deleted file mode 100644 index a11e9ca92c514d5d312f881cc573b9c5ac3b2319..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 2069 zcmV+w2Px#24YJ`L;(K){{a7>y{D4^000SaNLh0L01Qq501Qq6e|L-{00007bV*G`2i^)5 z0v`_G@t*_$00)&xL_t(o!?l-taMaZm$3OS}9=n^(Zg!VE$cuzWASx2^!9Xn*6%Zdo zTdUSu9jUceYg@*49CegB&a|EBIF8d+E3Ig?V>?o&IxUash>!Xj6h#n1Kp=%A8v=Rn zZg%&#`}_Uw?H>}Ph)yE${Q0}*e((33bI?s4SBoO|Bvd%FGNntvJJuV#rMla zQ>vl?!V!@+2i|%owQ|8#{s-xHV=u$AdZc-y4%+_`PVwkCqP7p2k!hR1ze04MaVB?s zv}-n9J+F^-{~(CCZB_qD>7~DL1{#{|=UI2jZZF{#Q|4{S9eGFN117+#qFb}qvR3q# z1m6r4ihH6$7LbB|r2~gNFH$CCsMIvtYh2eGJ)j6B`Cy=0**02A`m3wTHIxX*jrzEz zVINj%#!;oyEw(jcLlLEgt95YDvS!_-)K{MLy|6;_QE`No?OSw%A$;?;s)~{4j`klN z)Orel2R!S#!Tb|{#aGT>R3Sujnr5DK9U zgOOMq1yLa9Z)P$TR6f5@bv=~POEVChtyEDd<+@sHOGxWLu^8!4N}QNg8}b2+jQrh^ zKHotfIyvnfO7o^t5gn;1-ywsE-2_WpN-6>=2tH9^R3exs1#1UIOGauSEnMCp-PH zqKch~pV3lrHI0#Pvd_Ja?@fvY-qLE0c$FE>2F}v;gafW8rPdg}4@zUXMZ!?fvnX}` z$uw^h@haOs!vK5cl)Ffj-^~2@GIkbk(L{N(`2+RTG=(qQCSuPG{ zSW%kfY`dSVKE#W|oh;Vjn%xJd+p{kGY3RKTZ%vN|0+GR3S@qtlmJ25urSX-Qscvf% z?+nWYlfL!Ks^|aOW4?YUJ$b9|$$55)Z-o0<6zrngJHp1)-cu3W_%8HtA{n65f-NU{ zT^dcWHT*T!`)9GiJA-%Cxm+9$v&G3_U49vfdsm4MgQ3aojZ@AqY9#{sJW^{Mr@;QH zQ_tIO*)@rK?z82xC4A^OWR&J$bP?;B!$!B69lC`J!WAczO9H!(>+6XtF1%vHIzRzr zy*ytH`(z583>OZwtkmO(>tafYQE+h6X>2JGQVh=Lvu4xDFL5d9cuyD0R-4SioF-u4($8X z3-uY=xer(?;4h=(I3cVzv?fwlhhHorgg^jZSs6#0ns8!K+ON10)AP{B{Lfjs6!nR0 z9=BuI>wvYVBKLny@)RU+A|IQ6{k9_yWI}2rHcx6!<*R09wE3Z^v8o^ObE7`u? zB#{s^T3g?aj*MhPUti;3th9OX-#w`RCbeq^G1_;E&F?-CEBSB_3x9m)`koals`k%4 zr?IlFE%x!CGLDRl)p4m1_Dfp-=pn5SB=;TI_2jIkkFg9nh7u_ETpAY<=G0F_%jOGU+Sa_F5sq>IyzCfa-x6^ z)Ys?BU?2dg8$zLpzh4t!^9|$dg_gBwA~F95li@SYeqMCn00000NkvXXu0mjf7iZoi diff --git a/img/hero-down.png b/img/hero-down.png deleted file mode 100644 index 749672267bdf2092e891c3f80602248e558e249f..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 3483 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 diff --git a/img/hero/hero-down.png b/img/hero/hero-down.png deleted file mode 100644 index 749672267bdf2092e891c3f80602248e558e249f..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 3483 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 JPDHLkV1l)6e~thE diff --git a/img/hero/hero-up.png b/img/hero/hero-up.png deleted file mode 100644 index a72cef0a2c626f18155487a82c0639a76b434398..0000000000000000000000000000000000000000 GIT binary patch literal 0 HcmV?d00001 literal 3555 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 From 988e129bd5ef5894ea3aa3343347f264d90c42dd Mon Sep 17 00:00:00 2001 From: Matthew Mauriello Date: Wed, 22 Oct 2014 13:18:48 -0400 Subject: [PATCH 2/5] Adding class re-organizations --- .classpath | 8 + .project | 17 + .settings/org.eclipse.jdt.core.prefs | 11 + bin/SpaceWar/Bullet.class | Bin 0 -> 1467 bytes bin/SpaceWar/Enemy.class | Bin 0 -> 6335 bytes bin/SpaceWar/Explosion.class | Bin 0 -> 1058 bytes bin/SpaceWar/Generals.class | Bin 0 -> 1258 bytes bin/SpaceWar/Player.class | Bin 0 -> 4706 bytes bin/SpaceWar/PowerUp.class | Bin 0 -> 1627 bytes bin/SpaceWar/SpacePanel.class | Bin 0 -> 11523 bytes bin/SpaceWar/SpaceWar.class | Bin 0 -> 870 bytes bin/SpaceWar/Text.class | Bin 0 -> 1494 bytes bin/SpaceWarLevel2.png | Bin 0 -> 20782 bytes bin/SpaceWarLevel4.png | Bin 0 -> 32759 bytes bin/img/badass/badass1.png | Bin 0 -> 3971 bytes bin/img/badass/badass1Large.png | Bin 0 -> 5938 bytes bin/img/badass/badass1Medium.png | Bin 0 -> 2434 bytes bin/img/badass/badass1Mini.png | Bin 0 -> 1686 bytes bin/img/badass/badass2.png | Bin 0 -> 5655 bytes bin/img/badass/badass2Large.png | Bin 0 -> 9264 bytes bin/img/badass/badass2Medium.png | Bin 0 -> 5312 bytes bin/img/badass/badass2Mini.png | Bin 0 -> 3129 bytes bin/img/badass/badass3.png | Bin 0 -> 4671 bytes bin/img/badass/badass3Large.png | Bin 0 -> 7477 bytes bin/img/badass/badass3Medium.png | Bin 0 -> 3980 bytes bin/img/badass/badass3Mini.png | Bin 0 -> 2174 bytes .../badass/transparency/badass1-transp.png | Bin 0 -> 3779 bytes .../transparency/badass1Large-transp.png | Bin 0 -> 5077 bytes .../transparency/badass1Medium-transp.png | Bin 0 -> 2196 bytes .../transparency/badass1Mini-transp.png | Bin 0 -> 1477 bytes .../badass/transparency/badass2-transp.png | Bin 0 -> 5558 bytes .../transparency/badass2Large-transp.png | Bin 0 -> 8024 bytes .../transparency/badass2Medium-transp.png | Bin 0 -> 4668 bytes .../transparency/badass2Mini-transp.png | Bin 0 -> 2804 bytes .../badass/transparency/badass3-transp.png | Bin 0 -> 4625 bytes .../transparency/badass3Large-transp.png | Bin 0 -> 6800 bytes .../transparency/badass3Medium-transp.png | Bin 0 -> 3689 bytes .../transparency/badass3Mini-transp.png | Bin 0 -> 2069 bytes bin/img/hero-down.png | Bin 0 -> 3483 bytes bin/img/hero-left.png | Bin 0 -> 3508 bytes bin/img/hero-right.png | Bin 0 -> 3498 bytes bin/img/hero-up.png | Bin 0 -> 3555 bytes bin/img/hero/hero-down-transp.png | Bin 0 -> 3353 bytes bin/img/hero/hero-down.png | Bin 0 -> 3483 bytes bin/img/hero/hero-left-transp.png | Bin 0 -> 3381 bytes bin/img/hero/hero-left.png | Bin 0 -> 3508 bytes bin/img/hero/hero-right-transp.png | Bin 0 -> 3396 bytes bin/img/hero/hero-right.png | Bin 0 -> 3498 bytes bin/img/hero/hero-up-transp.png | Bin 0 -> 3431 bytes bin/img/hero/hero-up.png | Bin 0 -> 3555 bytes bin/img/stage/stage.jpg | Bin 0 -> 49079 bytes bin/randoop/RandoopTest.class | Bin 0 -> 1720 bytes bin/randoop/RandoopTest0.class | Bin 0 -> 344456 bytes bin/randoop/RandoopTest1.class | Bin 0 -> 406483 bytes bin/randoop/RandoopTest10.class | Bin 0 -> 17543 bytes bin/randoop/RandoopTest2.class | Bin 0 -> 400895 bytes bin/randoop/RandoopTest3.class | Bin 0 -> 413314 bytes bin/randoop/RandoopTest4.class | Bin 0 -> 428902 bytes bin/randoop/RandoopTest5.class | Bin 0 -> 422989 bytes bin/randoop/RandoopTest6.class | Bin 0 -> 414749 bytes bin/randoop/RandoopTest7.class | Bin 0 -> 450727 bytes bin/randoop/RandoopTest8.class | Bin 0 -> 434339 bytes bin/randoop/RandoopTest9.class | Bin 0 -> 427398 bytes .../RandoopTest_failure_1.class | Bin 0 -> 1195 bytes .../RandoopTest_failure_2.class | Bin 0 -> 1571 bytes src/SpaceWar/Bullet.java | 44 + src/SpaceWar/Enemy.java | 254 + src/SpaceWar/Explosion.java | 28 + src/SpaceWar/Generals.java | 20 + src/SpaceWar/Player.java | 159 + src/SpaceWar/PowerUp.java | 55 + src/SpaceWar/SpacePanel.java | 408 + src/SpaceWar/SpaceWar.java | 25 + src/SpaceWar/Text.java | 36 + src/SpaceWarLevel2.png | Bin 0 -> 20782 bytes src/SpaceWarLevel4.png | Bin 0 -> 32759 bytes src/img/badass/badass1.png | Bin 0 -> 3971 bytes src/img/badass/badass1Large.png | Bin 0 -> 5938 bytes src/img/badass/badass1Medium.png | Bin 0 -> 2434 bytes src/img/badass/badass1Mini.png | Bin 0 -> 1686 bytes src/img/badass/badass2.png | Bin 0 -> 5655 bytes src/img/badass/badass2Large.png | Bin 0 -> 9264 bytes src/img/badass/badass2Medium.png | Bin 0 -> 5312 bytes src/img/badass/badass2Mini.png | Bin 0 -> 3129 bytes src/img/badass/badass3.png | Bin 0 -> 4671 bytes src/img/badass/badass3Large.png | Bin 0 -> 7477 bytes src/img/badass/badass3Medium.png | Bin 0 -> 3980 bytes src/img/badass/badass3Mini.png | Bin 0 -> 2174 bytes .../badass/transparency/badass1-transp.png | Bin 0 -> 3779 bytes .../transparency/badass1Large-transp.png | Bin 0 -> 5077 bytes .../transparency/badass1Medium-transp.png | Bin 0 -> 2196 bytes .../transparency/badass1Mini-transp.png | Bin 0 -> 1477 bytes .../badass/transparency/badass2-transp.png | Bin 0 -> 5558 bytes .../transparency/badass2Large-transp.png | Bin 0 -> 8024 bytes .../transparency/badass2Medium-transp.png | Bin 0 -> 4668 bytes .../transparency/badass2Mini-transp.png | Bin 0 -> 2804 bytes .../badass/transparency/badass3-transp.png | Bin 0 -> 4625 bytes .../transparency/badass3Large-transp.png | Bin 0 -> 6800 bytes .../transparency/badass3Medium-transp.png | Bin 0 -> 3689 bytes .../transparency/badass3Mini-transp.png | Bin 0 -> 2069 bytes src/img/hero-down.png | Bin 0 -> 3483 bytes src/img/hero-left.png | Bin 0 -> 3508 bytes src/img/hero-right.png | Bin 0 -> 3498 bytes src/img/hero-up.png | Bin 0 -> 3555 bytes src/img/hero/hero-down-transp.png | Bin 0 -> 3353 bytes src/img/hero/hero-down.png | Bin 0 -> 3483 bytes src/img/hero/hero-left-transp.png | Bin 0 -> 3381 bytes src/img/hero/hero-left.png | Bin 0 -> 3508 bytes src/img/hero/hero-right-transp.png | Bin 0 -> 3396 bytes src/img/hero/hero-right.png | Bin 0 -> 3498 bytes src/img/hero/hero-up-transp.png | Bin 0 -> 3431 bytes src/img/hero/hero-up.png | Bin 0 -> 3555 bytes src/img/stage/stage.jpg | Bin 0 -> 49079 bytes test/randoop/RandoopTest.java | 37 + test/randoop/RandoopTest0.java | 28727 ++++++++++++ test/randoop/RandoopTest1.java | 34414 ++++++++++++++ test/randoop/RandoopTest10.java | 862 + test/randoop/RandoopTest2.java | 33467 ++++++++++++++ test/randoop/RandoopTest3.java | 34829 ++++++++++++++ test/randoop/RandoopTest4.java | 36210 +++++++++++++++ test/randoop/RandoopTest5.java | 35903 +++++++++++++++ test/randoop/RandoopTest6.java | 34911 ++++++++++++++ test/randoop/RandoopTest7.java | 38374 ++++++++++++++++ test/randoop/RandoopTest8.java | 36930 +++++++++++++++ test/randoop/RandoopTest9.java | 36094 +++++++++++++++ .../RandoopTest_failure_1.java | 24 + .../RandoopTest_failure_2.java | 29 + 127 files changed, 351876 insertions(+) create mode 100644 .classpath create mode 100644 .project create mode 100644 .settings/org.eclipse.jdt.core.prefs create mode 100644 bin/SpaceWar/Bullet.class create mode 100644 bin/SpaceWar/Enemy.class create mode 100644 bin/SpaceWar/Explosion.class create mode 100644 bin/SpaceWar/Generals.class create mode 100644 bin/SpaceWar/Player.class create mode 100644 bin/SpaceWar/PowerUp.class create mode 100644 bin/SpaceWar/SpacePanel.class create mode 100644 bin/SpaceWar/SpaceWar.class create mode 100644 bin/SpaceWar/Text.class create mode 100644 bin/SpaceWarLevel2.png create mode 100644 bin/SpaceWarLevel4.png create mode 100644 bin/img/badass/badass1.png create mode 100644 bin/img/badass/badass1Large.png create mode 100644 bin/img/badass/badass1Medium.png create mode 100644 bin/img/badass/badass1Mini.png create mode 100644 bin/img/badass/badass2.png create mode 100644 bin/img/badass/badass2Large.png create mode 100644 bin/img/badass/badass2Medium.png create mode 100644 bin/img/badass/badass2Mini.png create mode 100644 bin/img/badass/badass3.png create mode 100644 bin/img/badass/badass3Large.png create mode 100644 bin/img/badass/badass3Medium.png create mode 100644 bin/img/badass/badass3Mini.png create mode 100644 bin/img/badass/transparency/badass1-transp.png create mode 100644 bin/img/badass/transparency/badass1Large-transp.png create mode 100644 bin/img/badass/transparency/badass1Medium-transp.png create mode 100644 bin/img/badass/transparency/badass1Mini-transp.png create mode 100644 bin/img/badass/transparency/badass2-transp.png create mode 100644 bin/img/badass/transparency/badass2Large-transp.png create mode 100644 bin/img/badass/transparency/badass2Medium-transp.png create mode 100644 bin/img/badass/transparency/badass2Mini-transp.png create mode 100644 bin/img/badass/transparency/badass3-transp.png create mode 100644 bin/img/badass/transparency/badass3Large-transp.png create mode 100644 bin/img/badass/transparency/badass3Medium-transp.png create mode 100644 bin/img/badass/transparency/badass3Mini-transp.png create mode 100644 bin/img/hero-down.png create mode 100644 bin/img/hero-left.png create mode 100644 bin/img/hero-right.png create mode 100644 bin/img/hero-up.png create mode 100644 bin/img/hero/hero-down-transp.png create mode 100644 bin/img/hero/hero-down.png create mode 100644 bin/img/hero/hero-left-transp.png create mode 100644 bin/img/hero/hero-left.png create mode 100644 bin/img/hero/hero-right-transp.png create mode 100644 bin/img/hero/hero-right.png create mode 100644 bin/img/hero/hero-up-transp.png create mode 100644 bin/img/hero/hero-up.png create mode 100644 bin/img/stage/stage.jpg create mode 100644 bin/randoop/RandoopTest.class create mode 100644 bin/randoop/RandoopTest0.class create mode 100644 bin/randoop/RandoopTest1.class create mode 100644 bin/randoop/RandoopTest10.class create mode 100644 bin/randoop/RandoopTest2.class create mode 100644 bin/randoop/RandoopTest3.class create mode 100644 bin/randoop/RandoopTest4.class create mode 100644 bin/randoop/RandoopTest5.class create mode 100644 bin/randoop/RandoopTest6.class create mode 100644 bin/randoop/RandoopTest7.class create mode 100644 bin/randoop/RandoopTest8.class create mode 100644 bin/randoop/RandoopTest9.class create mode 100644 bin/randoopFailures/RandoopTest_failure_1.class create mode 100644 bin/randoopFailures/RandoopTest_failure_2.class create mode 100644 src/SpaceWar/Bullet.java create mode 100644 src/SpaceWar/Enemy.java create mode 100644 src/SpaceWar/Explosion.java create mode 100644 src/SpaceWar/Generals.java create mode 100644 src/SpaceWar/Player.java create mode 100644 src/SpaceWar/PowerUp.java create mode 100644 src/SpaceWar/SpacePanel.java create mode 100644 src/SpaceWar/SpaceWar.java create mode 100644 src/SpaceWar/Text.java create mode 100644 src/SpaceWarLevel2.png create mode 100644 src/SpaceWarLevel4.png create mode 100644 src/img/badass/badass1.png create mode 100644 src/img/badass/badass1Large.png create mode 100644 src/img/badass/badass1Medium.png create mode 100644 src/img/badass/badass1Mini.png create mode 100644 src/img/badass/badass2.png create mode 100644 src/img/badass/badass2Large.png create mode 100644 src/img/badass/badass2Medium.png create mode 100644 src/img/badass/badass2Mini.png create mode 100644 src/img/badass/badass3.png create mode 100644 src/img/badass/badass3Large.png create mode 100644 src/img/badass/badass3Medium.png create mode 100644 src/img/badass/badass3Mini.png create mode 100644 src/img/badass/transparency/badass1-transp.png create mode 100644 src/img/badass/transparency/badass1Large-transp.png create mode 100644 src/img/badass/transparency/badass1Medium-transp.png create mode 100644 src/img/badass/transparency/badass1Mini-transp.png create mode 100644 src/img/badass/transparency/badass2-transp.png create mode 100644 src/img/badass/transparency/badass2Large-transp.png create mode 100644 src/img/badass/transparency/badass2Medium-transp.png create mode 100644 src/img/badass/transparency/badass2Mini-transp.png create mode 100644 src/img/badass/transparency/badass3-transp.png create mode 100644 src/img/badass/transparency/badass3Large-transp.png create mode 100644 src/img/badass/transparency/badass3Medium-transp.png create mode 100644 src/img/badass/transparency/badass3Mini-transp.png create mode 100644 src/img/hero-down.png create mode 100644 src/img/hero-left.png create mode 100644 src/img/hero-right.png create mode 100644 src/img/hero-up.png create mode 100644 src/img/hero/hero-down-transp.png create mode 100644 src/img/hero/hero-down.png create mode 100644 src/img/hero/hero-left-transp.png create mode 100644 src/img/hero/hero-left.png create mode 100644 src/img/hero/hero-right-transp.png create mode 100644 src/img/hero/hero-right.png create mode 100644 src/img/hero/hero-up-transp.png create mode 100644 src/img/hero/hero-up.png create mode 100644 src/img/stage/stage.jpg create mode 100644 test/randoop/RandoopTest.java create mode 100644 test/randoop/RandoopTest0.java create mode 100644 test/randoop/RandoopTest1.java create mode 100644 test/randoop/RandoopTest10.java create mode 100644 test/randoop/RandoopTest2.java create mode 100644 test/randoop/RandoopTest3.java create mode 100644 test/randoop/RandoopTest4.java create mode 100644 test/randoop/RandoopTest5.java create mode 100644 test/randoop/RandoopTest6.java create mode 100644 test/randoop/RandoopTest7.java create mode 100644 test/randoop/RandoopTest8.java create mode 100644 test/randoop/RandoopTest9.java create mode 100644 test/randoopFailures/RandoopTest_failure_1.java create mode 100644 test/randoopFailures/RandoopTest_failure_2.java diff --git a/.classpath b/.classpath new file mode 100644 index 0000000..3f7ed4a --- /dev/null +++ b/.classpath @@ -0,0 +1,8 @@ + + + + + + + + diff --git a/.project b/.project new file mode 100644 index 0000000..1ab1320 --- /dev/null +++ b/.project @@ -0,0 +1,17 @@ + + + SpaceWar + + + + + + org.eclipse.jdt.core.javabuilder + + + + + + org.eclipse.jdt.core.javanature + + diff --git a/.settings/org.eclipse.jdt.core.prefs b/.settings/org.eclipse.jdt.core.prefs new file mode 100644 index 0000000..7341ab1 --- /dev/null +++ b/.settings/org.eclipse.jdt.core.prefs @@ -0,0 +1,11 @@ +eclipse.preferences.version=1 +org.eclipse.jdt.core.compiler.codegen.inlineJsrBytecode=enabled +org.eclipse.jdt.core.compiler.codegen.targetPlatform=1.7 +org.eclipse.jdt.core.compiler.codegen.unusedLocal=preserve +org.eclipse.jdt.core.compiler.compliance=1.7 +org.eclipse.jdt.core.compiler.debug.lineNumber=generate +org.eclipse.jdt.core.compiler.debug.localVariable=generate +org.eclipse.jdt.core.compiler.debug.sourceFile=generate +org.eclipse.jdt.core.compiler.problem.assertIdentifier=error +org.eclipse.jdt.core.compiler.problem.enumIdentifier=error +org.eclipse.jdt.core.compiler.source=1.7 diff --git a/bin/SpaceWar/Bullet.class b/bin/SpaceWar/Bullet.class new file mode 100644 index 0000000000000000000000000000000000000000..674d75900b7016f7219febba30f0fefcca4b1dd0 GIT binary patch literal 1467 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 literal 0 HcmV?d00001 diff --git a/bin/SpaceWar/Generals.class b/bin/SpaceWar/Generals.class new file mode 100644 index 0000000000000000000000000000000000000000..de6285180990f697ed97b21ce7502ca97c88f686 GIT binary patch literal 1258 zcmah|>rN9v7(K&n+p^q2yg)&`aVe|q*t(|?93k2GhY}XDR2{eySWCdDQyj>MTGomJ1(I(K9vR$=VF6=1(wcK%(KyS*+ zNhd3PTc2yjmf(Y366i~vBTfn!jwg3F3VDIq@zjZgOyJvYJ~>e}$QIeOL%4CA}$HE(|=o)yt1ET zAY*?Q-l7AA!aGSoM9+AB`b_JGv!i&p_3Sn2li`_YB;v>j~?! zdXQ7a!1i1d_pu-lV*%2tRAONT`Ws4E1JXo`CX!epw=5Qw%fwEf7GGyP*GVHejx^B3Kh7dogC~o-;NCiUgvi(MI>uFB zgAdxdn$-u~J9uI!=;ErKkI}*pSe&e&d#Zx|bmAD7H@{)DZm8hq^kJHYA4t6GojJno zL;ETAV;G|vFYT2rL|ma#&l lC@1zARvBU^U$0@Em?NCI=h&d_1$`LTdxKm8FL`Q0>JR=lD+B-l literal 0 HcmV?d00001 diff --git a/bin/SpaceWar/Player.class b/bin/SpaceWar/Player.class new file mode 100644 index 0000000000000000000000000000000000000000..87ca71aa758908d5c3ff33e52aff7d1e5fbdee50 GIT binary patch literal 4706 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 uim5L&Yni5oa+Bi#aaqP%;TEq|V zJ-j#)mG}TY3Ne$!RG_}>cz0&bIXh?l>-UeJ0JiZggOtERYang)P6k%;k%1;qIF={U za;4X^_B+SQjs#|(JDwB05J=bRZ2_&}ca@Gbat3BFE0AwGo_am(cT{jFJFXHaHho*V zZ5cScpB`$_CnpqGY$kkviFXLJFC9;yT>H>G7to3V$LsCX+ZiknC?~#H;VGS2uXY33 zS6M6yWD`6c1(aA*S)f$A2!|`G1}K z**>wVE|b2WRNOI8;|had4^-%U28$Z0khZxtr^-`6a~eZjS;fn$7!8bP6IkF(P~TzD9+I?hk4}bgqyz+ zWQyYU845?m;)sNqvoR{>8CH%)xEkY{sl~Wqremy|B1YYevB^jG&Z*W3l1cP2a30Gj oViil|QwepHv55-JsydcZp3u=>^pJXV%0I$m5+m@0_9;C51G4+PqW}N^ literal 0 HcmV?d00001 diff --git a/bin/SpaceWar/Text.class b/bin/SpaceWar/Text.class new file mode 100644 index 0000000000000000000000000000000000000000..7f2865ca3f4899cca7a6a483d9d67dc29bcd9595 GIT binary patch literal 1494 zcmZuwTXz~&6#fpE4&dZQZV;O`iI)P=qHV30#M%-}B$8H3B&KS!CNPqzFvA)K+r0Va ziz`n)`wRNgwS>6rTKxh2O)mA@0|9Dfm^u5LefGD%{hfWD|NZAP09SEeLqK7y)HEvQ zp5bP9%}1Vwkiz5x<3}S~H|$#W&fx>I;wh*{eDi#d6+)iXFllZpgj=5Bio2x{FAl>> zo@?2)HHCBQmTh@A6cVX?e*5Je=`!&)oT?c^5K}tF5LXDM(&Z==W^{ycPOLc{TF*-8 zh#)F!3p!qb9>aND(6IOd>(X({GaEWCVo4!l8@99SQzr1Xgs$j_A*wJ@v~2TsyK!i` zyT)OiMa7Fw#i*AJ*OGaEG2|UtEO4Uuf>csnyID0nh7tH)n4$s`xtj`_SvQ(3vnuL( zM&*Ycqj?5Zb&ZFjMo$Xkp_koqjpmV6XGr)fc`{NS9-HA0KM?Kw)}-H_WBuBd`LkWqOi?m5)%86`#z< z%sdF*aO#d5!#X~Z%u;5mz+W#@PR9n=AQ1xk8<}*d}t*)0_c zoJggIvIvL1XDxCC@pRlOs>AM#RaS;wB7QB01#$BmbzrZD?5 z4JKnp)lIu52&%xSlGAo8=B6c`8I|jKSvX*sEgWR8g%OYoLMtHG!ykD${E_|bkGvur zgNzu%IKLB|{la;K<4WcflbK5$OlQ&^%x31o9n5EvS_jF@A9%HcsK-XMfgoO^*ea+&8h!6)gnn4=m*=(8B3f0Y>(-r_3R z{Dnk_v$t`%pYtg>2=9Z{r^xQd-wjUcr?}e1^-&JD=v?2Q!aryKpH6Y3i(9K*d`fmn zj)gAnoLmpB%9QW)Y$#m+xpqQx_N0rihEgv0M|B>PSmd)r*_N?MVeYdmkul>Jb}*3f c0AFLDWEYY1O9^my68G>8_bGhKhycF(7u26EGynhq literal 0 HcmV?d00001 diff --git a/bin/SpaceWarLevel2.png b/bin/SpaceWarLevel2.png new file mode 100644 index 0000000000000000000000000000000000000000..46d5ff5669a97f98e4d4e71d737fc6316cce3428 GIT binary patch literal 20782 zcmeFZ2UJs0+a?+d78DQ_kS1L^D7|-q(0eZ;y-N$7Sm;s%1nDgV>C&5kf^_MpSL}GhX@Td1p<5ud=Lmk09KUK0)cMO zgFx3^@7w~egk4x006%Ve$bfb30Dl7RScL=sC-;15;Hm9uP=WgsVwCyjUWrWMVxb*P~~@}%et z^P;4(`X%X?DP~^y>M$qkJnT=SeEh_(j<>35>Xv0W=d zYDmYMz%xTJB&4Jc3u)zjY;0^=Vo#H|8dJ*d0ym^YlQS|(b93oaf?Bg4TnDav<9#P3 z1!sJJ2lxz9Pf6kW^-5iAKRDCpPlQVHHQ?H>$Bq->ii{73ja{4bmAM+^goTA+h|thm z{h8v%$tLa*?j9cMMV|t@tb%d&wp%P&<;xWHE-NZ3IvRvxwe?NClBl|d0bM?hmPZ}W zx;nN6-(}W~THKQ?Jh=fF*x`>0*Qic?a&kk2t#!?&v>fa?jN==HD5% zt(IF`Heao#wlA zprL1cjt+2(Cykp$#e5#CD&u2g-Oul5KxXV4k4BV}l=9W=l*Z5ZTFVa(+`(ExRB*=T zziszmh=peVt*?gzj>j*qfjF6|rwb{-Ov!=Ti&Xl#Qs1}>%4C|n13%j$RkW9XD)ZOd zw2(Tfeg5l_yw#_lmG`?U1sW*91n}MrUKKXvPcELOAks>AM5;c1RNJekn%d{4y z*#^C)gb!nRkTggEVoqY7#FL`hVmE%Uv|GW?rk8J;OjRe#tExJ?v9-l*YkZTu`>5bP zh+4f$UXH3ulaE68`4b(M$6C*yByKepm6uEYPNR#V7S(I^Khbk>*~Jpa&&`>jcIS;P zyJEz1EU$x%Vp^B)d&TR#SQ2g)bFHa$SF3_+WjVd|n&dS{S=E?Z=5KOBPdIek>|=he`>8_r zIZI=XhVsoD_1bTw)%;DGtfv3N;$tL9!jdyTyOk8VJJu<#HR*BA8aGv@%FoJFBv@<& zZ#)@HwxGhyojWXuukmwEk&M_kH?mDu?NAN#aaa4|p|2oA8v_iyq09ofCi8@8b#0u5D0z1KWDR!usa zueyg?P*!)a&-!?jza?L|)v`#DBTq!}?6R%Zap~9yRs1=zn1_HvV7akVb8z0?yx*`L z^}!sQcI%w7rl3*}e5`m4G|2BL-5E*3&Is=4=%C$@9H?N5@&2BYl0V>-mCBTerz}oFCw` zkQZv3@+ez?<9&=EuM1W$H;9btA$9b3jbqq*5(C_=ng1v$_p+)K*A^+MvWuAHTfWF= z9B)Bo2c1p4J7oT2KW!5~uujjpSY>D|u%pE@rCpE=Nzmo!pZ{ViN=bou@8M~r;hvx% zdLpf)rf)V6*%7Mv9srWMXQ%goT-Y6z9yXX)Rho#Clh`vb?* zz8y`n6e=h@PM=|OSen9XGI^2JtWuRX)uSF#PgOe-fFWgH&*+6k#AN1KukNljapFRkr= zeHp;l5k&pH@jVg30ad5bEwb0m-RfOjF(J5LGSYR=d}8rW0Xui2aRqjA{VXTXOYayz z@b7QWW^xK-8MeNNZIr@i<4MMi>)ts7 ze2hIwhCZQhKHy_fGtmfDFA9B5f)$JO{Ir&lXaG5iImmRS_s#Z0U`s+elOp(L64Ye53)PINwQli&X zH~uuJ%&M8qd#w0Cv7mxsM)RrgGOM6&f%8fhMUv!d1Cit{5G`-27Y#88MA#MS3X(cB zgpIA~zf38+0UBD3a`1D4VHYteWq6<=xJs{$9IjN6y7fQ~_yO{Xp}i_cJZ=J`L7+?q zT$Kp=OC^na=y@HW&{c(_xwiH}UL%i`gyohls`%B7zCu?aDDWJ0BKQYQ58ZWc% zT4S=+=7SzJo&7rI`;ZQXQL|&}$FQJ=Vim`YK`7Ti{sRm=>Wq zsA3v>n1RvJDAmiXpV~(~Vw`98G0zA^tE10#S}L!HKE=2j)Woh*3mEYsTk}t#u)Nc~ zgBp}zL!-TCHeOk^v)#BfqZOjYHo7n}=^9gA0g1pUPZV6W)42jCTfz&sPv**(RfUI5 z=Q(2Y-p-1!L^1&#jACYqI_d$Zc2OXodWd1?i$!SeGqH)!(^-g>dM(+u@sq4r>WK~4 zyB`H-&sIMV?yh@t^Pm*K)Ady|^K3 zTUvOv!Z*{j%91TSpP_-zkV7Y1d`Fq#x4ihh_I|`|T9z#srb%$zoO|9@UZ+=}`^YO6 zjm@)nQD{_tSD4xfzic}}+UA{YtbIs@>c{M6JQ*QixY*Qp_whc>EPn5I8jV2yRAWhX zDze`ik;qUQ<27dlKwoWSUjLTYD6b~x{7kj-*sh=cqK^o2&unVUH^|Ry z^NZ$(@+_L6szdEA6c+y1eDWr0-8f7=S;VjyA|!&@4G$9LyEDF;H~#T zVYlAH&Grsg78PoIsyMrnVD=j+XfUR$&rRHYsVCZrUw_M_q{V;HJe<>h5gHtd&=}3~ z*U~D0)08=)YJi2LBM#3DjLr_{Fp_DZ%O~LDg@~u4@PeZ;!S+p?VDtBA z^-AHA-(@^s0R!ek#Wk-1epG*fdOumqxjdImiJj4*BgKfUVDQmTRl~-EczLjv+K`6o z(G&yEw6yF#!}3QfBYbqUY-VvRHQE4eA=~uyr|34?G7w(StNc;RZxsnQPxjy_r4Ki# za9|}#$}oO5`6X4Jk`W9ByYYKnn1U_9()Rk=Ym0B3(UjioNv3R*b}2cC37vaD7*(!P zVLif#1hI^9abiLXm<&gay<0bgm%k*bS*MTcR*?D2Gl_GlaLPtURh)jStI=Dd zX9vDrnf?3Q7l|zrmG(vBlY=K)4JU*u+9H`JS>crOr(PIgc$puE-;elE_?zmNsC-}K zCLumG)I5Epj$7zhrwRxIUhU!SvpBzLaEx&c8;1rYiZErZM4WDRzg-jbaw3tIV+9|8 zc@U|Isq$1NAqu4$$H@{}6Un5k&n+4fs}xij9+g#lEv^SMjWaRTg^=>qAaO`GniAK3 zbk>iuF!ioAM-CsUo&wRM`QSqd#u@HXvr=CcoDeHyLw2L3HexV*6Mnt^aOThaBF9@Z*g!War$_5YMi~Kb(-vrFe9q;eKGma2(r1*b>Y6MLzy9ce1ncMs?~$ z#O=`o(}Q@b6NZLzb0*zJEx*0X$NX-EjK;kZJ#y2j4nQsyx~s7Hm141QG=1DY@HdnK z^|4s?tj{}D%vHR_~DCkQPj{|Exx~OaCAy`64 z^r>HF&|Dn0c!`{RC7lE^H>%4uB#Gp?&iMLf7EJ-)YAar1hA?W&Qo$J5CY)IF+fZ)VDnG$%2=4Xjz)sZKq@U*31JlxdDq6)X-5m?Jjask2LztW>8i$iB zxpL`g7c9=7KR?0RgDFoGzmynENA0XwP?>#x2N&>K^FWsgEjnrtW{ zJ5nxwsMF*med3K zkSz*_RD3Tg2wye!9}DYlqJ=rAt+f`G?9AR<5gNcMaMZej)<*LlIoAWJ9h80Jz{NqY zMEGRz6HVg9u3;K@{$scojGBt z+oT_|mUH*6LN;jVnlG8$K`O8ND|_?X(80_BcT@d+AG?8ORJ5X9YHn?u49d?0%$<;k54eS8_1AKG)5* zdz|R&NlHu!JdB1&t52aODX`xOD%zpx6!+CG#RAMpvo$3e)R~VnpjrDn@}s9_~$qZzsX?KgkqT9a>v$ z#C45Kr6~1?4DCxs*2^gMjriBB(HsPcI-DSttp z=YqTp^yg#G4pAp4{j9MU3)2!tGYc(O_?Qu0CBWh2Kh)ni?o(2<2vlTu#PILe%#e!W zK>2p!1Mz>>IGKD@?-!YhN9s|Fd2Lmh-3Fc+lDKL*K;Ql=J(k+WYt*2T&p?|e@Nl-} z>#P3k-&?QAKiX9>o~{podmy1F4F9wHvHyWq?tc&c?`@X9F)ZC4oJbdCW;wP>d94n& zAINybXR#iol8gtEk_Q^`Z#TS6_rD+){PH>pKNZADmH~e&ZmimGmI`iSw|4tIegE01 z7fhXguR`@X?j~3xV^7aa^~HX6-vMQ}(}jb+u?qNJB<6+21@6{wyTuk=17&;BUR|yn z%q6wI0XT=ue`@2?U*8iXbd47Pszhd>^%v?05?>O?r{4PH{50L`qrx}Aqu*|=%zfb- zAFazbE7+k3D*mUJ=Q86Ib4%X%2Jw$rNkAfe0DF^d>SiiSFx%c+h^-PKa~3T-vAXTZ zU+>xCFgaPw;y>ut%={{Uyy}!@=Ga9^DNCgTH1qv3W%e>*IBPP z#V;!L9fc$%Xmd}-wG5&7lM0l)CRU(H+z+%Z89(dH6nvedNb+1@=-Th=Rw@>Fp;1fy z^T^u2jZfR%MA5n#+{oOY8RMqF3TLW}YXB=$UK z>d|T&(3|Ck)gIVbyJL)eFQoswTY5ZHfWretp zqIsYfW0?E4LCKvdYmvFD2H5H&iJh*zKwgI@()8+29XVb!(-c=L$kpz!7_E)=m8*{Q zj$85u`ewfVH`$%P0dbVy_u_H%c9kNm`pwcCaiJ|zRbvT>_N1Di9-Wv>zhk^;p>vW9 z(LbuF?Fv=&X3pCLc0ta3VB@3A>J!|lD=}#&d5bU5Vvko=Nv>_vf0a;Icf}6ftLX>b z_tD+nh~MZtph^Rxo;?s>?N)Xh|5#uSQqQeYZa@1OOZ{Bk^7hZs8>6n1vF2#sTg8r| z5+?2$5=H{jm~)Qdq+|)UuFtv)8^Vp*T^l@!1s&X;qti=8V}IQ=$O3Z8N6M;28cmz( zZ0y@Rd5;#t1dAJMm66;GdB@Jz<7PctRN8ffn9H`map?wV<;wlkoE*&OvstIYAV%-` zohJ;>1SYD2CT@xJ2r-n!+FBQ`ePhcXt#xl?OjJu%YJ`N%+yt#3by@(i`X6Tjx`D_% z6d6q;cK+po`KHY&U2n{xO2IlbdJs^8V#4){I9R1erx0(M4F-q z@*i{j)D5&W@*4hJ>r||ZW@ZoxxHG*r@7t;cUZZ?`U$2kve#f!P^`S4qIaOS0>*-sR zsHt<+G!SF^1hL>XMfg}@d3h5lrZBBYp0e^0t0`ZhR-s(iEFj)LL{fb!x$>FLDod2h zKb>~ueyB+Y#m5?lp34FYS@W@?q(!~O1*rB;W%WQ)wG0h(S)cJQ6L|~8_+&DRpm(7P zd;CVFadcoB$VA)%)|TPm_39BwIhp`@@bO`4h4-Vkal~-T6A`;dZ}s_Se~vQQo(KV- zDe@of6E@!k4QT>?mQ6BS_iWi}_Ll~P?ep2Dg_8UwvavT{91a=rHBTu}^Og2GX0Ar} zOZ4^`Aq+4Z2Wio;3Z7A>IyRiAGU1{;b&O=3&R%X42?W0Wo^CPD(15K~k~3?u;O+3| z@A-8s(_a*@W25+M>O;HY+mK6pVBjyStEr9a-RgmI;UvX*NKEZ@0bAWI#I_?zY@+?E z1rz6s?DB~zQ<8F%QW55oqO%|+xe0dY{70V1Pi&rixOd21z2h7eHS76(<6dlo+VXe9 zIv)eg*<{7rx`tl)kWIoJllh}LWTfL!xp}iOBp|`e&?DKw;f%`8)r6x!L{fIVmf-45 zz%sH){;f`EylnIbDiZ+NwmE*h!eu#LS#y5f9z8l`Baj%G@6?fFG&3*CqD^QULX(+l z!8koMd^*AhmCoUufh6{8NrNMoh8T&K7|F;SKiPUwm)Y`DdggAo>tW(`5LMUwbgKLv z_4)p^2kvu(PS;-vIA4FTgE(xdG|M=9Hin+_)73|57Jb((!FqO3swYS3AeC>$Nk@f) zq$rbN}zK* zQJ`a>v9N8abFP9Z^GM00d=vWGbhX!6UjJJh1C+K58;H$G-Pn4(NTKCc{=>F2C+12` z78N2Okh7eK^JlA1Iar2Er+f7oa3wvq93iz=1k2a^E%Z&1z8$uS0Ec>v9hCO z7?BTqA2(Me$O2ta8|SAoP<)Cn|M*L;5~A{iW-y6vv|2a4&NR?pvY2>{OTV4`nzI3w zZXou}G>IoOh>zyd9k7f%Vgw$w{d7~rrInPy*I~!_ z6K)L_rUo9}tO4C#6noua+5tL%M>XrZbnE+f0FPYJYUIX@m@A>~?Pu2)(`RP zeHftL55ATDRG;33t(>p$d$Q~JQY(~$Aq($qZS0lWh}Bo^&STst_>K%ykaSra-L7c< z)!fPPCn;Q6tr{-9I%XDmGT1mc2MyxaAI-*tbit#Kh6y#S^Rjx7XpSs(xOMm5N#U1Q z&1^;I8|?GuBLg}qMO6un>u0SjNos6Q`AO7m`f90HR{2<{j@dKZt_pA}iW1@|;=#67-|6BN38%XNgIh8yL#%mB=Pyd`yqFKbd zkdH?zyWDnC3lt%Ncgc~Q?Y6y@fF5M0r)zkY9pt`;o&8SH)`7LkqC@DM(b)weBrCmB zmW3=SADGMs*VnFPJL9^dq0p%qbDFQ0mOY74nAT1LCd%t)zi0wc zgNx~9lhAox?#s_resH+G^7E`?e6J^?e(ey zq7AmLV|HuN%7mDUcZ+N-E+4UVbjFxlj~!0qZmq1WtY@y!u&_%O`jbueeHl?=Rv{l* z@M4I`#Plt>o0=mf@j=d4{du)CyMCbNJyI3eR-?PA?C?ySMCPn9_xy=4r(d&9YsQo; zd_!A}MFHuQQkK)$YlP=7FYKx^O#5jLHvzwl*_EQ3c$JUE;wa$`vuo{U{dgM2l`T)CSf z45P`{vNNu{hETXxeM_Q6O@bFOdft+MKrmTY?U@n~Q95(vQpnZlR=nU}Yp{0lCQYEc z!3e2an8-Ok;jI_6OHYo>*iZ)OZ(Qwf7e*zTP2gA_pB|?a3AgJ}&@V=4n`ihBTV;65 z>b#t%BDiRC*@?ib4%irHV=?2LB(&4-&_M0EDzA2>wA=*k;5Pr?Lb{(*k*vAu34PM) zp2>eFZXQ=!b`Yk;#^IRA{X}OvTfTG=R{qqKjGcRnlPLj@Cy}|8M4K&RgB>)q@DC~O zw`&;gUl-PeCNAFHI4aYA+`EC0<5PAw?Mb>1Rmut7+05{+(~1apV7FvD4*a~mU8Q6C zuj5Ucq-z|X##feWSZAoClEnG!zRlu`!XWq74opnsqm-T7q|RffTO#K2lJ zgpQ`@muxH!Iww!7Y68&uk0T%nj16V1T`yMZEq019WxaJ5jFzYy>rbxSGsDe9cDByc z`^V(#3K=FXLwpLjNtgKRG@q}tg&ag6MjS^d751k-$a&VJq&g%2bRqsBsQV_a0-^rd zbgw1HfDaLB2SzGi8+wP+@A|9bvCOg%8WXn0YapHo=sV!j8xv0B^HLSEYuO(xacP%2 zYU@Cp@$Jtg^DEl$|MtTjIJy4IM@nKGE`Cj?daT{-$mG!8?&0Zg@Oc01eg;s018xHX z@b*UTzsZ2T6~LWU5&HRGV!(bOa3xb%idayurfj!_x5;rmj>DQ^0QC3kIm0=J1CHvV zA^>IrNL$>ombdL3b3$KV&VWE~_<#oOo5lZ$0Q=`)UcIQ%L9^!b&*hTOF%Y0dTxgF3 zgzm3s-MtR-G$2xGHC3)79A4hnKIT?22WoPFK)Xi=tY`!`OJ3@~5MVnGaQW%KtfBuP zDgEC|LH>VYR;gm%pubKy+XEyhE5L=W&IwCD3LWV7Gz7gRl>8&lwm%Luxn}ly(Bfh@p@1 z-2@pu0iwas?|wf{pyCAFC??lra3h?8pwEO zuBQ{BbBtYT;IT@rjXbO^cHOh(|1-DZAjFVO@G-AwkcO)%7v*(sZ2l5hxfErRk}*%E z|L3h=)0G^p2Oo<)dsa>y_iq>LYQE6q898tNFi56v`Bf?>ak*C~P(+_~vV3m9wRi2X zhc6KSCI(G%A=UxS25iB>^m)oHGIK){jy%ysmb3-kbomenQKXvR^U)|>Z zq9i3NmMV+lbtqKlhg` z=I>8dww}eDi?+DhfFbRSNO$Y)3Z2J1iD{IH7K)*)JH{E<@33;)qeCIme<0_*Q&&0B z!exb(QYUt|Hpfa>0*}k z7u^iCYNSK$)aZD%P#e`W$=DpT7Mzzn;rbs1x0BS z$*}|7wr|A#vC~!kg}P~A^gW)pxtGq}dac(&C?pWlzP`eZw&>fv zz3Q6_9VniX>XEzJq1E2=;d!=~2lXbC$s4hMKI3Xm;Hcocq~ey(c=w+5c$qeo<=8nZ z(hTmDChwl7lQx?bEvjwP^&PP?Co*W)s!VE_T9>{T4s{Y`5_M)L1^1Y5YO`6e+flf0 zCpIP@X>h#W$jn)){xdIwSrfLk@04Xaz%%K2^Y|m)(W&-eH$)}{dnYF1YBT)TWAy(M zt!SVL5Zi&>MAqu!*Kt9YM_K$1%O5EYlM0mz-c$HkBvp=sAtM?=Y86yn@h19Z!+gI?1YmC=SHnf&m% z_qXyN)uvY$TZyn{IrdiHaHo=;g~07LqtbL*tmTm071RHARw``+sMLWR#lUWm=U9GO zcHKfj^QBHYnVuQs*QM*;!s~4zqV||e+toQZ@HH?5i`GLgYu0HPM@Ov_`$0Y=X9~v9 zUbdMlufZqvG?KJps~$qfAWwmKXMz4+t98?b2LI>}sp{KKP3Nv>I@9m1U&8Y~dgU;F zL@;VG>VMtC%-Oa`{1l#BQC(fxPG>s2y!K%wlh@y7^=0v8&|!bqrml6ZB+meMOC1b) z)bvQ~sQ*RK`PO-a!YjYB_M?EXh6Vx4{X0#yi*4MQ4bNTLMTXZDE~kiz!7#=`yL?8= zMXOh;VqJEnauau}Q%x!4OuV-ER+M8ZZ7hEUUT(5zGUe+MA$IOpN-aSlr z;McvZalfCzgwi5BRGJTLpZf`hAs^Wgns%rPUL?ks{OF5q$r_2&-NvHt?A0Hp zIb}gCGyyEtbaNj{SsY(EumZwWqp9j*u{1Mi+3Vp@ri@iMGo!@FW_ntW#Gg_+;d zNdww>aY=mdg7t7z|I4mmlh|qZrFCsf1WRu?{i|gO*ukV?W0Hk=r*A}9;B}l*7X=Ta z-5`5klN%7^T&lYd|vs`x@>xsR9Am_>kN!t~I?8$p%Qkt74hgJ25 zwxbhGqVD5xWuJnc9=ybh_KR*f%Ws!RVzRt?Vc*Z+g`8sh-mM)S7p+@ldr82fV6u{L z9j=rp0XMaN|Hp13 z=$f`x!+e*OPlis9WaI#CY|^n+Df;pPurE=!|XRhLBRD!H8`?m^MJuEIR@8@X4nVLX{f zeY0mk?0uxc9KIirheiJ5a-I3fnACAR;$A!*J+Q9AH#moqJ^0~RM_@$*ZhSxvcm_ew zWF7X}e8~~~JYXqjkknHEro#a&96>kTxTA($|6ZPcj5&uM;RXG@FvZJ^XCzrGy}Zu= zhQY@$l4sWkcYSZ;X0M3YQ2z>{T=ZG5k`G6GOa&$!iF2NZFdNs+3vZ9cA!K|V;W!6s z!%Yf?;oDwWi!J?MB>Uetaq;edR6_*Qrh<|`aailD6C44c_Y^%MKIhRlVUY!A1a9DX(vR7>`{UjGA+6VBcT3PeFG)q9JVdE9?LtnIP=jbbbm za>dv_0mG^hyO+acK9E7tdSLb#RTb!;n%UD%*(`n;M$@q?S8>{^6$QXMV38HdNYZOu z^*_(2|Kri%e}$3D)F^Kd=)q^)?*#zE{yjV@wM$$B!)|UBADU#OkUIm9E0=OHSrY7MWgLUr>={Wptyp35_u23(oWu6oR- z(#-Nte(-VHyCJ3UUen&KS4TTc6H)vr4wF#;@~E$nmzv4ZzNpgXgwF`N$urX=Qfva15Pl!Lal@#Ur^=lO57jGUCdWU+)z^di0rm|LebX@Z; zTui1B_%iAnlPD)gDbi4%To|7ZE=sl!b^q#_UI0!X^e`Z%&u8dkiC?MTTOFZGM=)|; z$zb7AbGH=BqM-DY){9gIG4D@pXZ<%I@D4L8SQ(eA3+?8InwW~YEiL2_s!tiB7fuXY z`eJU4RlOe6hQZ?irDzRrPUqfTzqTIN)%9mM4vRo#KAxKAIO1cnXT`Y!iL)zv7Q=Op zpF|t6!AENmWB#+b@d?d47hq$UC-ECkr3^ey^VRM>T4 zFXGS(ll3P?Hxqkg5vfpUeL^gXTIx_L;xy|+xKm6daF ziiwJj)+{Xj6`i)5S93h`zFZ47kb$%L!#nmrf5eF9><7sxzVkv;&QdaOPt#?6k{Ilv zgT=+dtf-pO&N_Ujv>252c!bfuNTiaSTZGdRn?chLGA8g1DQ3f*h*M?Y&1$0wIwmV-xlY_23a?x(s8yz`~_?navtZN4&51(xViG>H;2 zydjh7?v&}rH$mUv#ht{tm~*&8@w;Jh*}#X&P8t&&vB6t<5n&V>j<^>byO+dhKU4`i zCyNc28`=m_RIl7+Nrs}*#$4vS=Du};*-UexSh6=A3n7y>jnBu0gIcErthjtwHrgz3 zm4n^rj+hwftOQZ%<2!Ml^~>Hgh(_N%R_KM?@G0ZP*6nPgL1+u*ujpsK-;Zkb@U=_7 zn}soQ(&3y(T6E?W-NUy+@ATJtm@~W!O@zM}5s3#vvKp|o!;%5P7Yn8Lk85a!e@~wN zxIkw%Fp_lQ0`^c0A6eid=|rifRxQ5|{4~(uk<&IR*qhLg`3idhxAds4Q4AHeN8Edo z>G1w5Bd0dbi#{aUJP&N+)Y7CiXF#axq}g69wSv^BX)%*(0o;+ajqWrh;wmkm*SuMe zDo+K`IetO2a7I%Q4vx196L2b9Mm(62N**?bXc>7NbieGTuk;Jqb=>MfD$t7h-ty-g zq4%9tJ23t#GPLt%PUXbqZQ&|dk{R3=f2H8K8S=5FdyC2R-C75&7(98`Koo+eCzZ(t zyX9YadFs~|K+JSYWnTT6Q~sCfK5M_Se5h-+1t#3uW`7>;1CbBQA2o+>Z%} z?>HP$AoTE23$JNG2=r2b|8I@i%Dwt|S?1LteF^EU{OEh!5H^Im%d<2C&{vP-S+5sZ|qg>U&u( zCl-4&u85}ywxKkex%K;%gkT2oD?E)YXKR@zrS-%+8Np{&lLzoRtBiVaEaecJZ1|l+ z_8tWTw&tayT8+@{J6|uvRQegfeJOP|V3=o1%s|^K+I!;OnO z8!Ac1yKbZ|Ge1=$1To`OR6z1+RXeFjBTf``&L7F%O?lMCxml{ zHOmva)7dru;=)*1*GtL!4-X0qIXQ%;QtE?8&OTH#>!q)}n+eWHh9#}}XU!AEV@azX zFj?Dq{<7u%W<|Z=OCZNwKE?%Z#|1{uvW4_e1@rfMDo^R|`i3)7`OA@hc|cFxZ<DlCd4X0XDq*~nEO22%29cJf&~$IGg%Etb&Wyi)3y!$<9MG5u znX6iR`)qbnoH~U%sWb6C^>(AL2flJ1T}i>a(%J1{5=TPk$Kt*--y^Y&;VTCsGZnahUTOe*tnu}zAOhz2yu;p1h!zzZ6m+-xqQj~)} zX8dz{YQQn%WBtg`k_c2)MOnXr+&A~HkBIOJe(;E}l-}8_M<(FgpY9%%!t3k4QH(=9 zzbZ_>K=4c|4>-8>VDM1&ei-A1(~j8n+gb z5`bY}JM?V)`~q8~&c|5zpz}9Ruy!h!0u>9wHo8-gCtCWZ$<<;)^gybbUbp%?_WMG! zp@1Ca<47D#@!(TR#OZkXCSs%5wE~)gIhPy~)r$yeptE%tzSEQWj8FRsYA+5JItaMm zhSS#<_jWoCc?MpR*uju@Yi6RI7EDBUGU=iYe>}=tj$Pduloak-s@0kj#;YrntjkJ9 zT;sv%oYLP`_yn|3e4SG!+-Ile;pph#Lm9tb@uqoo7!nho>_JW}{GB}k$Qah&aTBT3 zXn%4h`t_lx3(GGa$m+cqcw5u+z%pP-XjOEv!DW~oLmYqjoHzXN-xQCWA?H&QcXxxF zJsMyjq&E8A66gil!!{)x8#Nrr$50hscaF(opa+vl;4%a6c+Y_^DbU|_FV3|D3VNLH zFssu-_d6Vgux{Uyu2C7o;J2@yOS18eO0UDN%kPGeaoKtvm4C{}5I;78=}gt_(WL+N zz|O!u_y4xq!5A|NAp+T6LT8SF%X#c5zmOV7SKB@~L)WpLK=JlmgWE9n%NylnM$=PV z%pcIH63r&sTuetgQpI?YV!2R_z_>pG5D(B>pV5 zWM$0%=ofTlj69f{u2`bBGW=?HIm(&M0w#Nwte1pS+HE&uy~VbKD$q0LF1wnds~EOD z<;Hn0Va#Hm0m`)T`d2vMp0;eFiy`;Plu0q7uOX1AjSYM{D&+7JTL%XMw59*y2?0=k zQUdWCETXMn`ko*7HW)UQ79Fkt@A!&dwJ92ByG_UuWHj-Xxkx|3yfv1Q!o87f}$=5)t}W7aZ5arHaobbWW|81Px+9){ePQ6i;P zyqPKVuEz%+;z;aGpUMb6#&3A#HsM?pxlpwiru8k9aJ|ET43Z{mxuM@X~l zQyYj&%#-jXsfP-Qz(060CiHO+a-ZY|vqaLVh3AH2P{cv?7zZBL;JE529PO3yfrq+w z-1XPao;-M`mvuuPg$-0ZpuZ_| z$1~hVyeU-=9v2$^;gFp?=Vb=*d-VlawaP!_z^68oFj&FfNY+BOr}{)f&C$GNu{1a6 z!~N?_UZQIy8>7kvu)Me1Z;2#++DS~wS1~GmxB#X8>7Bi>q6o2;DAH8ElV`2?`grgb z_8^(z;urcMgIgF6bx_k0!>;1fY?(*7AUY6w0@+3+YW}OKRDBdF6UL)!RQ-7frQeFM zZo8xa(h6Z?;vG8r2gJGI(fdIQEvwcr#7X#K#|xJCqJ}L98%J*VX6-6C>@<8tcFi71{U?S*IUSf zP5ut?toPgyzN$)&S3`d z%YAhQ02O%xB&lQT@^^2~CRa*MD^^Da82erb#G4EhNB4Vz?Vh_&SPbRMeW0LL@?_or zKlbELwOC(i*JE3|&vln3T;K|wrPrpBDG4q|-6ai6-7?y_dePS1-?b6AxWubl>+;;If1Z4B z_p=HM>;C!iVgH2_Sz8vZ@;^CgOU}=Dbzr^^o-Cyr6gPi&n>&APNBP?SPYd7gw=3pd ze?H!Mveeqob5>vEpDz^q?|I+-hqkll*}ePgaHKr`|M8z1yr$|ayrZ^(Tfqw)dpi!q zzxlB|#?a1DMAxR{`}6jD$Nybpd)33E!ecdMX8M%pYWEKo8*eYT`Ql#<=R^*^Yu7*D zd7^u7l4|Bna8syZN{gji<(mhxcWnO(ybhCL{Uq4s{=I&};+sDX^oe$41U&A&rY2`! zU|pV5)x>e4cvV{6C;R_7d*1SSeL5#U0^6ftx38EQ_VZfs{`eao>vlb7{!??10{*(Lpf7MB;cD-wtR{`f$7(8A5T-G@yGywqR0OtMx literal 0 HcmV?d00001 diff --git a/bin/SpaceWarLevel4.png b/bin/SpaceWarLevel4.png new file mode 100644 index 0000000000000000000000000000000000000000..782e71a5f9b74254c6bc7393fa1a548354e399e2 GIT binary patch literal 32759 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 literal 0 HcmV?d00001 diff --git a/bin/img/badass/badass1Large.png b/bin/img/badass/badass1Large.png new file mode 100644 index 0000000000000000000000000000000000000000..677b2a1bf043ed326818fa35e823aab9ea697e18 GIT binary patch literal 5938 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 Uv>p;%7XSbN07*qoM6N<$f+c84zW@LL literal 0 HcmV?d00001 diff --git a/bin/img/badass/badass1Medium.png b/bin/img/badass/badass1Medium.png new file mode 100644 index 0000000000000000000000000000000000000000..69c248b004ed22a8d9e5f569a8bdbe49f4e4feb4 GIT binary patch literal 2434 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 Ao&W#< literal 0 HcmV?d00001 diff --git a/bin/img/badass/badass1Mini.png b/bin/img/badass/badass1Mini.png new file mode 100644 index 0000000000000000000000000000000000000000..c7a69843afd94cbbde24a7babb03ce68eaa228d5 GIT binary patch literal 1686 zcmV;H25I?;P)X1^@s6CN-WK00001b5ch_0Itp) z=>Px#24YJ`L;(K){{a7>y{D4^000SaNLh0L01Jr#01Jr$H_6Mb00007bV*G`2i^)5 z0TdDyLZsOM00tIGL_t(Y$JJJAaFpd0e$M+{_S^5GKQbQn;WLOA^CJ=IC zlg(bf>*){Lnb?^IC>>`!zuq~w=bU-pbKVE|G>QA_sPk)|5UBSrP;V<_`?pX4zxtiKeQke=m0eD^uXL>RFW5MHef}38%ijFm z6@@YYgs<(kk8i4q{%l;=?q6|7wR>>kV9{Tj;8Rq90Z9T`EcnH_aR9(k(v_F;^8Z4rBr!)@z@qwl-bHA_pozCLw4oBYOJwlUi z+SyV({dg`?WK|sdd)|I475~WuBNoq?rsBEGIkx@ziao%<00B7YspS*HMkE%|luj12 ze*ALq)pZ{<;s>c=qt9~6G)e0v;YmUeC(V(FY>ce-Q-1BDU$$YOM`{igbq~pRO6z&q z-tu}&&Sr^KpB4~P0zuxKGJ87$1tKLWa#$h17fuYnfHnkq8D6*zJh@1aCL{@pEDC-; zzM9tE-dOuJd^EVLV#?D{EH#&=jO(#w2w$PkCzp60gAAJ^6LWhv+|-_v0bp}Y;`Gw` zqJspwTL@xBl|wR&>(4bsiLxFhTt^5;bKl4$sajjg@5z$TNRmiZBuElPP#hJRc3P(B zoQoD}rH6MEjVr1gg5$Wzn~-DM^kA_IfckBVw*i3k*xoN;|CR)9SQ6VM`*?{gNg+j+ zVP43iBiqVxy1@@0WR6a!;Jzbi{S_+|9+uRSf~Zju(iQ3($o2>7_ZN1hl&>^XN#<>=m%WlcQG8vx7ApJbH^qrn)PtW^*u++s|PVIBG^X(W(Tly4qOIE$Z(lh zHWaW25CgL0V{1g?NjD5Y(KF{&J^Q?4@r~=I?%%qqb@s=X(0>m4eS4>3W6g<+g~V_4 zM(ji~i z#&FufP{u~`f(7&Zg=gaTbv`=QCKLb7u(t950Kg_9&-J?5v=(JYvhRD2dv|k-edHg1 zE~KGzDm5SQdyZv)$IV%5B*(4Oh+kq!=$Bfd;*vj+#{eTUZ}RvCCu?Vin)tXwLud?^QJh9pRT{r4@Kjc8zY*0K*N89k%K zoQtnnr0Mjb;WtN;PX3vA--@!DqCKwTSy$b$UsI47GGm=>DG~~AlmxBu%ji9Gc%~D7 zXCWu!*Ikf>`52a}kGRr+T@PKv>TV1?o=%#L0Pqff`IDo#Z@76?{7 g04V=f{uRgn6Ze;_(xQiNF#rGn07*qoM6N<$g4E+Ei~s-t literal 0 HcmV?d00001 diff --git a/bin/img/badass/badass2.png b/bin/img/badass/badass2.png new file mode 100644 index 0000000000000000000000000000000000000000..8eacc09549ac4ac6527ca92418e19dbbc58772bd GIT binary patch literal 5655 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 mL_U0JH2U?iiNs%A|NjFp{LRKw5_1Ls0000l8 literal 0 HcmV?d00001 diff --git a/bin/img/badass/badass3Mini.png b/bin/img/badass/badass3Mini.png new file mode 100644 index 0000000000000000000000000000000000000000..23d192de0bec9c44aa66d9683b54e024122c3674 GIT binary patch literal 2174 zcmV-^2!Z#BP)Px#24YJ`L;(K){{a7>y{D4^000SaNLh0L01Qq501Qq6e|L-{00007bV*G`2i^)5 z0v`hDN7F9=00;g_L_t(o!_Aj_a8=b6#(#UCbI-lW$-PN#UWPnK3=sq*0SwhrrqPOG zb)-`9QE@=4sI@I)mGMz&2gll0YqeEd+M<T6NDMVa>D$CnOJ)1@ug9KAT+@xZNZE>{q%|FoYA`M7Y_(j zsa4OWT}AnhIvjJUkS@+r&77+0I3ZnP?r=;Vra5Kb9rxe!`|1nob#7T3vZ!% zwFD?oKq{RTKX`aadJC0$HF@ff&y(@ z9ZaU4i6}jQR&@Ik+3UK+*-GbSna1CWZgvu?7xW59L4G_GoaS4Wh}Lu$7o7~`0p0GC z;1{5rIfmWt`*RNX(pF;y4p=aNFWM2w=?Mhp-st-`{myfXd_>+$4YH(ZgFn_#Npo>g z!T!e&bZ_qwnKdj{S>-r6>pb_Kv8W~DxdTD1j5sQ*5$uTghZ2ro(|$ga{RI82;C(j` z2qjH3l+4HwF$@NCa`B-Q=vMjElF#JT8UDYP56I63Aa}Cw5Bk0zb40v=(wVzcsWHvI zZw&9a0>pxzAV!Dz%l%!+OvO52*60b%zR-eIiDB{%1h+twq1k`GaT70L_#`6g_Xx^v38M<<)}uY z2T$$t+=Ch*Cj20*SU+k4fV#GzNWC5X9yJB?s0d%k`_9E&nU@oJUHmK5KR74RzATLqKqVp(Dqj9O#f^=6;~{-x-q-J%^3)R@!S#Flr*8IKV}{kI zzGin*A8KWvyPvgvyN*1>6!5K0@D_mn=mM_?;OC>O_?1YM&GwgNjW>w~_hdHt(>TMn z*^r1y;M{YF-nvY04`obkswlrcCB6#A<7g2Qi6kFXRxaKeu+?J*1%w~HcAp^d! zCsNNErm)tTz&5FoI=kS=gJdJ{^vHl7X#*jpaNu?e=8rV?AvZ2xvOP7BY>`9BcIITc zvfpu(sWnD2fz#iQrL`!n#8!%6Uq5C%PD%4#{6IiV5dp;XJkSaOl}L6-e{vtOWQ$A< z2bAZ>WE8md`ktAOBnf%u{ey^5Z#b8s~qy6#89sy+K` ze8)XWxZWrp~Y6AJOtPJ^tL z{i^WQEp-0&MX9l4*a4I0+S=5wAAXqriVE4?+>C-=3)Xt@IB)~-TGuh$&8Nb-rfIKt z-8W+}0T2aTT~NReOG|OJW@WsZvP@3}#iy~`k*ji=2`j~Qd-kxluMdB?zbR-nq1J)k zbWFrC(dKzZ3PM?>Wr**ix;h8KB1wGT)tcx;tIsOV2#DpmV7r(i-k|Gt6@nSb$%#6) zt(DRYwzVqfI9$%LZIuWv$aSqP3=GC7d30sd>?KPU=6dmcO@$>dt_fC7pVHMO@se`c z*>*@z2)2GWZm4tSZ~FR5raiXm<*gUZkLKDL+^bYtHcY4EbOGf!zPPcN>dOk37J`%6 zJJc6(Vh8622}I zf+FqvI%B=Pm9H#aI<9N#G+t_Mp1*L>74PpaIZ+DQ+E5x)(?Q<6>>FRW@A3sZliAt0 z*%2yMt~@B`o#&kAtjE7SZ(@#%54QdvOra*-9+y!XMEM?dQ< z%qx5Bgz|=(iC4+QN!Q9fPpp83BX44)}h09BB$p+iIac&+pK zyg|y!bS|vVfQ`#-JHY1=ry0iOvjTzTpJmQ}0~MicsuJK?l>h($07*qoM6N<$f{Io! AJ^%m! literal 0 HcmV?d00001 diff --git a/bin/img/badass/transparency/badass1-transp.png b/bin/img/badass/transparency/badass1-transp.png new file mode 100644 index 0000000000000000000000000000000000000000..2a8a40db0751e903d2d0e86f3d077c91b931b782 GIT binary patch literal 3779 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 literal 0 HcmV?d00001 diff --git a/bin/img/badass/transparency/badass1Large-transp.png b/bin/img/badass/transparency/badass1Large-transp.png new file mode 100644 index 0000000000000000000000000000000000000000..37b48148a431d94d89481f083d6d0c44ab0f9cdc GIT binary patch literal 5077 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 literal 0 HcmV?d00001 diff --git a/bin/img/badass/transparency/badass2-transp.png b/bin/img/badass/transparency/badass2-transp.png new file mode 100644 index 0000000000000000000000000000000000000000..1671f909157919bf8339d57886634faf5066b7f8 GIT binary patch literal 5558 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 Ef;d0fr2qf` literal 0 HcmV?d00001 diff --git a/bin/img/badass/transparency/badass2Large-transp.png b/bin/img/badass/transparency/badass2Large-transp.png new file mode 100644 index 0000000000000000000000000000000000000000..e285ee89ef4a6a72496af92e0d3500602af6f210 GIT binary patch literal 8024 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 Hu0mjfJOc5k literal 0 HcmV?d00001 diff --git a/bin/img/badass/transparency/badass3Large-transp.png b/bin/img/badass/transparency/badass3Large-transp.png new file mode 100644 index 0000000000000000000000000000000000000000..dab124f0b9707e0bf1a707b80ef5e0062f3e37af GIT binary patch literal 6800 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 Hu0mjfM-2oq literal 0 HcmV?d00001 diff --git a/bin/img/badass/transparency/badass3Mini-transp.png b/bin/img/badass/transparency/badass3Mini-transp.png new file mode 100644 index 0000000000000000000000000000000000000000..a11e9ca92c514d5d312f881cc573b9c5ac3b2319 GIT binary patch literal 2069 zcmV+w2Px#24YJ`L;(K){{a7>y{D4^000SaNLh0L01Qq501Qq6e|L-{00007bV*G`2i^)5 z0v`_G@t*_$00)&xL_t(o!?l-taMaZm$3OS}9=n^(Zg!VE$cuzWASx2^!9Xn*6%Zdo zTdUSu9jUceYg@*49CegB&a|EBIF8d+E3Ig?V>?o&IxUash>!Xj6h#n1Kp=%A8v=Rn zZg%&#`}_Uw?H>}Ph)yE${Q0}*e((33bI?s4SBoO|Bvd%FGNntvJJuV#rMla zQ>vl?!V!@+2i|%owQ|8#{s-xHV=u$AdZc-y4%+_`PVwkCqP7p2k!hR1ze04MaVB?s zv}-n9J+F^-{~(CCZB_qD>7~DL1{#{|=UI2jZZF{#Q|4{S9eGFN117+#qFb}qvR3q# z1m6r4ihH6$7LbB|r2~gNFH$CCsMIvtYh2eGJ)j6B`Cy=0**02A`m3wTHIxX*jrzEz zVINj%#!;oyEw(jcLlLEgt95YDvS!_-)K{MLy|6;_QE`No?OSw%A$;?;s)~{4j`klN z)Orel2R!S#!Tb|{#aGT>R3Sujnr5DK9U zgOOMq1yLa9Z)P$TR6f5@bv=~POEVChtyEDd<+@sHOGxWLu^8!4N}QNg8}b2+jQrh^ zKHotfIyvnfO7o^t5gn;1-ywsE-2_WpN-6>=2tH9^R3exs1#1UIOGauSEnMCp-PH zqKch~pV3lrHI0#Pvd_Ja?@fvY-qLE0c$FE>2F}v;gafW8rPdg}4@zUXMZ!?fvnX}` z$uw^h@haOs!vK5cl)Ffj-^~2@GIkbk(L{N(`2+RTG=(qQCSuPG{ zSW%kfY`dSVKE#W|oh;Vjn%xJd+p{kGY3RKTZ%vN|0+GR3S@qtlmJ25urSX-Qscvf% z?+nWYlfL!Ks^|aOW4?YUJ$b9|$$55)Z-o0<6zrngJHp1)-cu3W_%8HtA{n65f-NU{ zT^dcWHT*T!`)9GiJA-%Cxm+9$v&G3_U49vfdsm4MgQ3aojZ@AqY9#{sJW^{Mr@;QH zQ_tIO*)@rK?z82xC4A^OWR&J$bP?;B!$!B69lC`J!WAczO9H!(>+6XtF1%vHIzRzr zy*ytH`(z583>OZwtkmO(>tafYQE+h6X>2JGQVh=Lvu4xDFL5d9cuyD0R-4SioF-u4($8X z3-uY=xer(?;4h=(I3cVzv?fwlhhHorgg^jZSs6#0ns8!K+ON10)AP{B{Lfjs6!nR0 z9=BuI>wvYVBKLny@)RU+A|IQ6{k9_yWI}2rHcx6!<*R09wE3Z^v8o^ObE7`u? zB#{s^T3g?aj*MhPUti;3th9OX-#w`RCbeq^G1_;E&F?-CEBSB_3x9m)`koals`k%4 zr?IlFE%x!CGLDRl)p4m1_Dfp-=pn5SB=;TI_2jIkkFg9nh7u_ETpAY<=G0F_%jOGU+Sa_F5sq>IyzCfa-x6^ z)Ys?BU?2dg8$zLpzh4t!^9|$dg_gBwA~F95li@SYeqMCn00000NkvXXu0mjf7iZoi literal 0 HcmV?d00001 diff --git a/bin/img/hero-down.png b/bin/img/hero-down.png new file mode 100644 index 0000000000000000000000000000000000000000..749672267bdf2092e891c3f80602248e558e249f GIT binary patch literal 3483 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 literal 0 HcmV?d00001 diff --git a/bin/img/hero/hero-down.png b/bin/img/hero/hero-down.png new file mode 100644 index 0000000000000000000000000000000000000000..749672267bdf2092e891c3f80602248e558e249f GIT binary patch literal 3483 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 JPDHLkV1l)6e~thE literal 0 HcmV?d00001 diff --git a/bin/img/hero/hero-up.png b/bin/img/hero/hero-up.png new file mode 100644 index 0000000000000000000000000000000000000000..a72cef0a2c626f18155487a82c0639a76b434398 GIT binary patch literal 3555 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 literal 0 HcmV?d00001 diff --git a/bin/randoop/RandoopTest.class b/bin/randoop/RandoopTest.class new file mode 100644 index 0000000000000000000000000000000000000000..061c4447d419b8f6e304056aa0fe9a24f20f43ac GIT binary patch literal 1720 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℘su$6FFQcQ)m!p?N3#xbE3G1zVW^0t6Lz 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�(4mf#99@ytd?m_!?OaTky-`Q`C34BK)T~ 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 literal 0 HcmV?d00001 diff --git a/bin/randoop/RandoopTest1.class b/bin/randoop/RandoopTest1.class new file mode 100644 index 0000000000000000000000000000000000000000..6027e09737e20fa34795ca18dafc07621fa1a04a GIT binary patch literal 406483 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

WAPg+2>E3WEySdB=I5b?XB#X-uSAd5?{U zRM4yF3Q(+%O;yq?>Ul*DS#VkU@z3o6dW#7h(Sf3ca{W-%XkphqU&Oq75(BRs88yJt*zFF!zGY zt>FB`?Gv~q^c$!VurT~A2Ola6T=gsv8cx*j7NKV){I#Y~6ctszn=;L*wW*@ochR+6 z_{!QsDl)!1#6+bPsiMYrQOFdYODj@Et?!OBQE5f0nBu#rZ3@q&6$$OJE~=Y?RNNmM zasmyq?nDz6lq{lx;P9pJT-pm%LQ-H}VXCxef2F4b`*Amg2{rpG!G7poVXA5bRCjvd z?#7nDXcU9gdVYum^-STBS|pVa$s7|EJAHRv;O@bdYO*yOKZdF=0ZCy)pztNMq$(jP z6lsO2P+=TO&)`MA70-(H1$UW&KCNYj76f-66P1=(8Zz70M5SexhRpUiQ7P*>FmMlY z4-S#VS?U4*Tmc+ceqq<^r0_KFB)IkbNcwTU3$XveIMpbaL00OfrT@KK;c-P@_;x)P zC0nPay-w`VvW3z&nmDbMJ`JS@!cb6S_~*VtdrU*YQB@YE(h8o2g14Hew9iRHled_t z7|U_D1@3mnayVjyKeQ380@}U9G*bH^?B%)G&nURoDy`F1&}lS+6{b>g>v;6lxTwLp zKFMe39En*~1v5Z}Q+Q%+2H10QPcu;g7z=N>3L^Z0iAsyG3L^ZWiAswQ`!epiCMt&R z-17tX0{23w7PGxzp9zNNw|(in6kao0Ff`y2(?zrfR6zrHXQfb9$Vy~qzmG)rO5Z(1ADlIzT{4VN~!gDDP_Vd8~MO=5S;@=gq zXFWkklA^UhsJEHMYoS&{s2wJ%>UgibK~D8fLe_?9wFmxXe+$T7}$B!k2%?itTb1P&9kb3uN!)QSD_DSxu_=Ph2EPQfa z?68C z$Pv{@VJdB$8Hf*cNnt82z6`|ok%>x+4^X-Lsfh~b{vhb_?~IT&|J@Ptf9w%j&1C4H zskX`}9sFzHe#RZ@+;h%|DnAyrq*g0^&Hc?e@YWhv!{zui}NKM1d&1ht$?+MdL zt?@N!-$RL3Q2%P!r+F@b6Axuq{v#-w4^#76o}(vU6mkZwAUJug} zs*_$XueawF$E{0Y!~e#X)^=>udwsY&W_kYpKAtjfZP#H5kiS=Enww*vR~~r%n0?%o zQ~0NZqgB@U-T>1~+61vR;0-oW=>Uh_0B@LyN(VSV{@w@!75}79xUSj?-y3bBs<3Ac zpfhjpl;Nr@zke%HeTH4@nR+T1yYRWhv31J!Xt4G z_xRmtZ>IYHoGZfKfH%!_&)VPDLLt#_R+ux|-vbf%W|^q8veiP_=9;LqvH@cDurpTp zidxwKGJAU&sDLt~KlM(wmc@a$gd;kdkfMi0W03<|_Li9@&|w&mvbT?kN-G{fWp7^- zl@7yGph)|hsH!~gKy1Ur;SN8VzrEd^;YZy@-T@wdFuSLRJ+gj4n-}DHvG`e;m2fyY z_?d@mr!obSMj=*^qf@k`0S0@fDvTS}LQ4T0?3t>tDO%D~AZb$-HbqMsz^>P7T30OT z%E^%Qmcmpx7p<#uGQ_#vL=}s(ax%oZ!$cK}vvM-TX{gI^PG1q?G}L94ljC4fIT^f% z8!NzxOH9T|uI#m>Af%tAkY)Qt|x*8O*O3QEiq z@NQ+)&CBxcQbQKU+-Kbx$Da1uV{K2}td|cpxzjXRY@(F_RK0slRI!Ox0#Nk~br{aE z_B;@H5Ar^7k4`^a>3a`<-=1(yg$|kj2lj+RRRePDJ!W8n3`wo|RC~-Ea-yyhc!dd0u=TP zm02bK>Q_VsDST#{OG^Qdz<4l;!dK+YUJI5NO$Y&eX(H7E0IKPIZKBG!Gmg4_?yNgT zU8*Oo@qNQqS7n;&ldA9ukb-9@LkkkszYA&p0NK$B7sKTd@wEk>j%-< zsd#)WzpE?!izM+$&qqO}eupz^>gse_FSyqC4JB1&S}R3*itiVjxS*8+sH$ILpwg&n zB~VqruZc=41t3yCWumHd9~ghZInz$u6~QMICa_X}u!&r22e4A#P)$|xPeDd=Rr|i7 znyTcVdy1$szHg|eDyy_*RzV-en%1Q)6JV!rD6%T6YTXBh^$N!9`&gs)09!=IIaKm9rrl@<%&Pk*|JO4};nPk)AqN=u^}(wJ?c($WCP z>CZD!X=zkL8uLw5S{lGM{e>nfEe&9sK4752{L&^-4c;#^QEA=-yY%-lQ1Oq7h7!tv z_xqZtaBjcvi|FZG5&VB9q6263QFs+(GoQou-p6rK)_s@mfBJD%hUnA}jq9IFDg5)_ z|1CcuuJr(RgF>?~OSIhpRQ9tbDs4CD)b=-;sH&6xA%2tRABtw^+(Ru3Tbl6~pC0o! z@xwa{@}V+5gJ=_JD{O7EX=ZI}0HXai6P30#0MY(d6P30#bX@y~o2ay{0Veg2G*D@n zv=T6>ztcpe{ag(c@Hi8d_H%$l{S!@8T3$7f*C{3{Ew38L>vR*9_H#ff{WDEen)fx} z{n;ie&3hn_{&^-U&3hn_{)Hwg&3hn_zF||ZQX`O+Kp_1e8Rn|hysriCuP{+*-UD*< z4V!wEwVL;};Qh6xxis$q$obcss5I{Z$oYm%y-NP6u+TaH$oao8&80HHTLNFzk~Um5 z>^K?*Vcc#SriB57&cD+{rG){6&cDY%HAM#V7ic&6aY2w!YRj{^xR(UMWQNwrN}}sx%-r|GmOgI2X;82E^unXrhWm zl?KG-e{7HG|;YuZKBdr0NRy6 zC08hhr}@t)h5V{W`w5h1g{ia@0CXh`#aWvF!d5g_wVx<9&82w{pes>gqSCxaOJJg} ziAwVx2v#CxqSCwvf|W3|DyA#&nCH%y*MD)qCPeJ;Hh}OX48>VmBRpv!JPAW_hI4u@ z2*FUCrTLEpL|23m48>WR{~BUM1tA!Uvo!xLvxo{pfV~zJXl1p1|1r9`BMnR^fpLXN zwIqP)B*5^(R9X_ibP|TDEnTT40Zb=hsM^w%Q)G+dT}9o5*OCkDWi zm}{ce(g47d*waL%rGc)$#9k&UEe!xXiNz)=Ee&+6CH6K^X_El9lUQM*(t<$8T4I%n zN(%xVYYCKT1;wRtlr(UZgrVlaxmX6kQ4(tmb7>qU4ICx0&P1ho4;&@2-bAH&5BMZu z*nvv(-^vJe9PmlPumhFW@JSl2W(mU%6wc|n!24Fyx-vjYo!d1j1hCaass#WHC2_ck zN-Jy?1YoEU(i$;I12IV$Y6P5%*9F8RVW<(({8V_zG$1AkLyeH;p9GJnAOJ&+kgnDO z0Ai9b)Cg(*lO@qy5P+dZNb_GJil`ufvkm;>zf%-Zf%oT`s5I|^m?SPVQEA=-F-aI| zgmkr5ejp|ZLyeHuh)EiVNy1Pg;2d`_jE`>tSVH0&!{Rbp0O;pRTxX)v0zm1VxWPoF z1%T2!ag&Kk3jqCGiJMJSS^y}c6StYDv;a^>Cpt`2S^y}c6L*=Yv;a^>C+;;+=`uQv zGCFa;iApO!%IL&HCMwN)l+lStO;noqD5Dckn5Z=GQAQ`8Hc@Hbql``%%7`?dd;a^n zPO5T%+kaDw`2TbRTpFN2;w2MjYVh3EF4x~Y=*vrEvjIAgc+EtvRSM`p;!P8kRw}8_T z1`Y%u*~dhsohuN4WSNOd^BxF5vY&}c^ByfV$pI!Reyqkp2CfvU3Ppc%NMTZ((^L?^ za1&K5fGQOI$&n_iSO8Th`jcZ!RIvc6Q1mCqnW$m`RH4*QPBc-)0;oc%pTr^y<-<6q z?-2sP#D%G10aT&XPvT2qs#pM3DD{(uQV8ebE27j-LJ$S#(xrYCO8w*v6P4yYO8ul^ z1FK4x`c)|Plk-e-Y2KsMPZ~C`s&uJeg`Sq=LepHD_bBy~OH5Rn_bBy~@KuF5p?Qx| zKe>;IO7kA2esW(EmF7Jv{N(-yDqZ1Mp~6odWTMi%N9#ti-b7XD&e(L`86W)Rq<*p3 z(Zi86ltERx)UQGhN77IR;hdfeLNJs;Rh3!@sPdDBGN`Ij3jtMrvek4OS_r7}lUqzw zz#yB4l$~g_ z>D8mcPo8R`(n3ImpFG1vrGl@ zr7Qd@JWQ4}R6#hW=K}8yRZtcGiN7#nqPS1qX1YhsdldJ{4ilB;J&OC}T?Q&$+*hHv zPa3KqoQv0m;y!7pf~uMOVxrQ#N70}Bn~6&E9z}oha}$;3J&OM1mj)_b^jD$iPkwEp(!58}pET^bRPi5~ z3H2UDe~~cFrFoB{zsNRGY2KsgFY-)O{1Y2RiJ&N1R22R24f3o(;jg2_4^QX+g=+On zVbK~heo;@;yjof)tc!Y^sI;_DPZyP%sI;_DPZyP&sI;_DPZ#w!Q0aQQ3iWi+AQP3A z7V7Dup(ZLVE!5LRyO^l7v`|kMjWSVbX`!Aj+SNp*Ed{&nMdM9Wn)j%lizb<|TSsGf_any57IQ9T#!W}?!(NA+AZ(?q3t zkLtN-j)_Y19@TTv9wsWydsNRwh*^d2QS%^6(!YAsUHy{-0yrM#)?7 zK~jKM{*fC3Sr2uDhvR21qal;<&S#ymcTlgcLmV|E2nnb+^#LJzurOFsDL&iyR>oJh zj>6|MoIK`MN?uIGw^DhZLDsKmNCypDbq|eReFyEja9jtCojcCzpo#cYxf@7YaEO89MargTJ~ zw(~C`&%Taq>rQGPg#S|ZowTjYxtKf)NAab--0Mu0^6#V_Wr@6TsU*gf2c5~vdhpnu zT@LojpSXADlc_$KI90;4m*$bN1T7`>`)CqA7eQJ*X#n-2p;Qe0=uKlG#mP8Y4GB(# z%;r#E+Kb9*1@)u-DMf3kKQ&@R3k{_0G>CT6U^5KFY-r#`G@P!aUFZfHLAPMW zJ7^T$iyw=6kjBt6v@5-YE4)Dy=u=$fPn4#=QHH*yDWVrm6Q#7f7)Gr~Up7~#?WVkDhHr$UFwtML^sie7*_(GTuT>YL@8YYxh$fRl5gn+D)UHq_ydu6xm11d=tp?J zTpi=1qoqfOdIVUGW{A=mqUQ`zJVTVIe?{tR*$lSeE4mvcZq&jJ6K%*D<(1!Oly}nA z8GBp@U0>(m^`<(vfZCVYc^a2;SP@;kw{|cP+GpS|RN%R1a-iPe&-Z?-?#TmOCws{#rS&5p%M*~+ot%NjniE@k8O{&C~sCLZdbC&t^dgPyK)<6&OP<6(ZvQ^W9O4If#T z@_1NGl}II+D#>rpWs3Oi#kwHnrGgH6rLM>L@VzG%^m?WjUVob@o&eF5J6*g7@vJw4ePoQ zmi0^6*4?nH2XOQe`Z2vsSJCVA6L_DW(pU5|;nL4V5#1t+>6fC6?hwQ2ZZQe|ibLUz zp?qU4!}-v=>>_$V%XY%MjDa_Jhu(!IRKSP5hhsKY{w40^SZLY7u;2IT18CVsdII;c z6I$B>KX@9>vKP5Ztv!L&UP>S0SQ2YI5BK82yIhTXJcoV8kDU2Z-NMOpX+C@dQ>!djjh$K7IzTk#aidbI^X3 zaq;@^jEC26GyXWcIMpF!T>@V-2;UvT%@lQUF6DM-4OG6R47%E0=JAW4uaF6-unMMS zML3sJyY&cS1jd!n!%(|N;Cvp1+C2ux^EhQ7sHyZM&7`N`N}h%reukFQv$UFijllOD z1o=EQ!)YG{r~U&d(mC{7DA_v@-1~GrMDue5fZON~bSFX^tI!c4(_$5(%eAArIC4~z zq1?AXH7s2Fc#J(3jGhTsce3CVZV@$!Bn0hZ73-m>E>vhW9OwJ^ga8GTI0K5Fz`FJp z0Td;P)$IkrGL}3jM3#ccwJ9YKJ%oUZL(~A22MvJuA$t-C!QB!!u^U##F=D3@ zd~YOfC8AhMUi4XghbTqnCd#Jcr5}`gDk+7D{nEK80~( z7b+_K7Li274bcZo4J`^gFkoq*UcuGj1-QBwrsXH~x8!kk7tPf|`S53p!OoG$hxyeR zS0Z*T=BP0X-^Z~biHUVy7i(e1&Kc;AoSCFxCfjnnoTofoPbw9?X(0aA$S_etqmYG- zgRiR)eW?a{&rH#e_7ExjF3~_bKnwv-hf`LJq(j6QY7yh8T})8CT^8Pu=I!c8)rTQ- z40Ew@w1AF-TC=yDL&u9sFrfxs{uX?4z}bl+4bHmY_85^ARZu%t;h|)K%d^RkRao@! zL^b{iPt>sbg2hw1v)EaIIftUcS(?Y2P1{=5cT8uP(vmW2k2xf$sVyN zm5hrQK))LiqH%a}U5}WoXR0TY^-A?r(H>vc@R4IU$)%FICiwzFB_$k z84tbeq@deWju_QLGS3y17j<#^ai+1YyjSNl<$XGTFGKm$-l_a4@7tN8ykF<TNgRT{O(oJGMb%+J@E7U&^ zi-q)rSVYf?#q^R`LT{jw`9SPVe-g{+3jy>&tbi@-1Gm0Xl!#TLzt~p{6RX8o{DJBU zvA?Jj2Z-6?K(Rm^B$kSUL9qs(>P1$p6-{EDXcGC0;z~JHTq9?Q>*QQ5RAp*DnFTCy7h(sT5ovB`yP98F)WL{0MY?!TlcMavUp% z3|#SJ9P1}m(O2RM+))Zu>mS6G7~5YoVeMCmt7(8}qqoF0I5tomL9d9Ph-+z(IE@|? z*WuG(tnF^`Q-u2=%0nJPy-L3o*U`{8>-)qL*L!f2^m|YIjFUidV^}GQpGT!5ALObs zDj-orVuhZ#8UNkN|B#V}i9tUV#ZXZqqTwHW?Jv9gTKjWIV=#PeS)Q-Gy@0RH!8>cl zNm~}f^|7nH1OMF}d7&-|V`auc+PE@yQ90;Gc_JV@*sf-vCsPO92gmC01+FJK0sa&& zr)WZlxVJ8t&}WA7j`;RKJXMcW4|ZxjQ$5sF_)?ka#m6#r#p+lcf0>@?9S=}&&)8bP zJ+bEo?lZ5hl;NKRnKFJ`T-P_%gFh_8iMj0ZaTfgYxZ-{t;+48VCE|@c#c!`8r*2S};NCSAE<>5!4P7b& zy40SE6X6{xB*HsV>^{3gNlaJ__g2Ea$sF}AEMFN;g{#h6q%&)bhbY5!RU z|Jj~`|3uj@#GY_XtHnDoWE2r%ED`|{x4~FCpx}4Fao&lv<1RSPyD2U1LE3RIK$>5{ zdEQ6!#r<%e4*>jmkoFZ1QN4JWHi}1();&sF#A9@%cpOQ^6LhM0lFo+7Unri26McrR z7SGa+;@5PWc#iH8&(j0q1$tb(2q*dyy)0gadHn{)_6nTntN1OF*XV2Ux{z>Z3Gt@r zDSj);#9LyJcw3AV?}%~YT^RFwqDH(gri%}7Hy^_pe1d!W6z=se;t=sSxW>=LPVpt& z;Md|j@gH$9jO%h~i>qN;Kb1*wr|cnqC5y#FvP3*5`-*pDN_+@c`I#Id{warxujNQd za*TB3IGL0aWiMGFOJ!O)%88+I#g0;Z6+22ez%aF%EnY;5%T>gD@eJw&t|FLYr@@6d z;Mp%lfU_t>#Z7RY40COP^LYQ1caHnA2}55rs!AncrvS$cuDi{X||Kq30Fm?^mE?F}B+iVrcO4>(;Reuohy z;Po&#)KihZe+~Ef5gc?G_+BDDh70Zst`qorCLHA;{E_I3P}}qqBk8Z=VjN2$)P5*F z#mxN?WZxFQ$EN`ZtFOUrp9wu$O0M_=MhsF;aV_i<*M&;uVc@-s#C2nyGyLva8Rq{PS5E&x zddY_WMV(V3zK#sv>0wK&>nIDt(1#stz1eQU#4f7Gt{r-}tjE&6JGe-1MOiSzcF)^$f_A#aHf| z>dTiXPxV!oz?aYJ`r#O=z7)TW%k+;)2c!lt>A=(gMT#$LQUl_!ni}AC$ic|L``XC5 zo$Vj}vwBcrizwAQs9K#R_?S70<}q#q07;@wU82 zd?4==f0qx6FXbcR8~M1D@+sLzJ}b-Rb8OHe3?BVrgBJgeg2xCIJQ&5?Rs1DFF)QJa zLlkogf^~>u9)z4ZgrFJ_MvCMp1dmPPXMmt~!iL+CrJe%EoH5C@Mj^jEnnRzE;YqEF>mtZE=CtY;8-$49}VQ3a2^X>goTBU@HDs_^6lju|R{ zj*if!98Tm!q}E8MheVk+gB0OMIXU!w*h&D(iWq`_BW4I>)`OHQtnBUzQKUFHN_2Ui zD@=EFg~%ZD6KbFX;}{%(KdELP*LlO?o;qwea88O{2eEs~)=&qI%3AEH;^fXckKqbA z4fDv|yTlz;tn0lT29okNbk|TqGQ?~nhAjiM^e%YXNY!)}BA^S{d?E_n zYoW{>v4$&<>98Egq{PfZm$M;VE`|`a=5&`7y@o5;$lmdqkenu_=&?NVO zcoy&nKu>ZhBEMYDa7cb+&tY_xoHEO=!P@_TwcpZkZ19h^1dX>OO}6lpT$W9BmP5N) zKFzX6bpKR1^=OH)@*35y5E)E?-$tw zZ*&s zqh@P3ZMCq^WsRUyt&wyl{$SpD)~))Sd21%U zWzC`ATk{m-PYBts<@%g9fu|x97>CV`aL>CI8w$L+VAJl{N8-%|2gdMYm_@jya1qSn z1em}Yq~Y(w7<_Cb91q0hTKMy3nAB-V{F6x5*G9Wi=V8O)T#OBr#!RLJ(!A3MK!fsh z@r&|@j3Y!lOnsEUgYSb0t?RB*_ByO@03y|^c`DWLohr3vT(U#1kMf`xG3WwXI=s&` zw$@EKDm%iL&+5Dhyk+{ia&nDOtc`VkoJ{35PMJJDs@g{G0XmyNVwcMU|4Y~b+-Yx& z>& zn%@o}p+j!3>)%D`y8;8{ZkJSwJ-5>RuKT&)gA8y^w?pN0<)xjcR2f}oBtYeI+fqPM zbK4Eb`e(p=7QlQK!F(3Oe3rm`meN>jZSbZZ67XCJt+m9&qwiuSkmrM1>- zn9qJNpZ%%bI)IL{4x|&TgXlEtU^>@YLzh_fbfvYHZm`zTEmi}}C`*-Nz159Wm zy=XPk>((Lku5~E=&T67RTbt-}tC_yGT7;}68l)kh^%$IIK(n8Dnb+dTIx|NMr6o={_n=lZMD2f3O38PqzxB}+N_55@I zj3>fyZJ;2hqO#u!6W&K0hxF@M7~)#7h0Z{t;~^1S2cYv@nAcH&eHjc*&-k#*+z{w`(tRR@q>JnMM@1ibq^jp%#3tIsa0$IJ z>I=ZTqmh#R8Hv+T7+Zo3xcBAJ7+VVI{zfHOWmwOz5Sigb6y+*&V-lShzZ_{1Ydoa2W>0#?* z#H>#hTfR5HLj#cOASaqU~RY&Vsb(oG-jXGAXi(*wf9jFYV zh<4CQwGkf1s!0lx*!~@{iV<*D97L;KmA;(cU0>)e=nMaSnmzOM<$`Yd5@mbxBF^tF z!^WY!B4Z=N+r~L`nVkop=2DBXuu`)A1Tp;;V)_he-rtbs{T*rEKd93Bf-=^>kmh|u zdsyEp)>eh<(5xLFv34{zv)_|flBDt29zRZAg%wv)U$t#*D?3Z6Tz6uO&Uo@_PyR&R zI^r|u09|@F0R>t(N_27FO<&jTrt?$2H7HHuVnjULxe)2x`81BpkL&9gl(`X|Ah3vE z@XM`Ttf3H6q4o<^-$#y%`{7Q}eo3V^woYu1hS@%ivJ*7cPSQlXh|+dIwRR7hY4@Z( z?OwFlE~e#nZ`$APL-lqEt+z|@2T{xE2)jQWZ4aU|?V)t8y$fArk5pU_>yL{y*N@T) zy**OsS~RMihyvI`7stND&4o7F4)%r`bMm!6@U{1WQM#b2Md8f-9PImsk%LsKK39J* z2B}*6Vx5F+ZtpG|x(d^yAfUQD*>q^x$U9dTC+$1r-RRJe_o72Xa&`F7Ks#@HHOIWc zSPa>_f_dX)98`0e4XF?F3M< zZ?GQ)h(ejtW8GIS9>7dcdHQAE${*J&k6R#OQ@Ub$mu!!drU^j2;&iHWx)&c+O>_5P zL*8NB4e1|VpXAB{uO0H4xWe^xILXl+q=;u zdv~g~XHcCzlXkOb(H{0}DBB!bVb7%l?RnH-?*T>IlMb`z(>8kn9c3?~Q|+a6vAvwG zw^!27?bURfy}#o5`jAgr=`PZy{)33;laL}D2USBgh}YwxYBrFuO-lV7>{72+>gU2Y zu2Lz4M-8+Tiuf+%aul{(0{J}B1(qBdhMDH#Ug5W&cWUikvM$apVMzSLc==-{-W z1w_O1e zo{7tkM#20}-sNA_mygv7{g`3f2Y^}j&#$YVrRChyDt{X*k72VB?&+PFBv&Q$~DlAf_OIf zlx!;>+T}XCaE>q{4}K^g*@a>hD75W}lMpt@-U!<{6dtGv_Oppb+RX@gEi~EQOd0zy zc%fFBZMV?^yPcNWTWFQN6<%l?!rgY-WFJoL_7Swh-a*INN5Tsog^+hNU1sm3tL6d$8r{W>|dhw)v zgLvNlnRwN{QM_&6BtEon7N6L+;V*P_h_CFs#DDC2Wl#HlSzHSEuXaiBVTufeA`iFgg7O1J+Y^j569_&ybtNYyYOgZ5yjsFs*UFnv+*+(n$g-bE{L7cT7Dv14%t z=#lTr2H@}9F?<|$Kh6}_!i%0O7orrr0EOLUayClAohae+`?wC!nw^ z6;I1uaorR)&L5Iv@u|N^qxIw?%sfEUp^N2Xj2(y`nDeordoDU!_Qp=fIB;VyO4bwQ zzd<(yeMv`SllNE}Do#cp6L-xF6E^^nyau0!i(AA*@e^=z7xAR%E5E^=k3cU{FJPm` zqW9`m;mdCkN=B(zc084%pnR8GT{w;@2p8x-;yVApwZCdrEx}6o6Ce({fSDvUQaD z?ylMr%k8jyPMNJB^MN^$(n(36#BBw8{c2d;n45V$&5IWKsPNzB}RPYY-4m_Leyp@KUAx_M}P_@YXXtSXA6_r^WrAR)3W;JQ(gr?O$6uyrx+M?s1jr9~g5jxQY65)u44DAlzCz$1hT^5e z8eBIrHG~f>!wY&OMy2{A_*=s`1+YfcjRuZ;cb9Te^+j|AK2@p6z~?p%`WJZ4F3%*o zwwLOi?Hy$$c{O}_S?BoNZEKr*qRIz!Ceody+sX##U$RR!P(Hl#uvC~GaDp+CZ-i5U z)aXw6Kr@O=a>l@X$H9EZ!+a;ed?(UGXA)I8lc~_P84d(tP)eEO5Kfd1+1Mc+6Jh2<;~fwNeYI7>u-XQ>$G>@CJP%fuvSxtQv# z5Hp>9!~$of*xOkpRyq5MgPheO>+B~Eb@msn&H-YFbD%iRIY^xD94yXp)`*Lodhugt zt+>`%CvJ8c#2rpn+~=$pk2)K~v(85Gf^(>N*J&2Na}E=qJMH3M&NlI_bA+^=qh!K4 zMy8zO$I=$tP%ITy)R=Tdo`bGba(xl*3tTq7@bu9Me0 zH^{r3o8*1Y&GKRAHu;3pA)j^bk}o>A9#0Q(C+jce5c(L9M3yNLS>(7kX1j`c@mKTdoCx&i1k-hvp>F5FY5snSRDrZ__aBR5vv8Y0iZvt`uS}_4x0muED#V*)8y8vT^kO4eSV{(wP-pJ2w+pB2L;h*>H5#UtO{=VtbvRv7wa+F1>NI!>a1y2J<(R%WOD}PLCpYjrjM&Wjq9z@i1J*BXAjy zBH}*=m+?4U#uK!g^CZo3o}xXSXW=rQr*+Otw9$Emwm7e;h#&TiZH-NU_KQt`_K8ej z6d;FpaKHR$%>qPxek8Mwra|$!N0H0=feL)UOp&;Rh$DL#(`yRw@Dz;YN88WK<6&)K z9&&^Mzq+*^k7Lf(F#=#sR|vpGD!H18Zio_VPKSj@%eyj`d1)6X^I$ZtI@Kc#+f-|W ziZeM5uY?hi^ILHE9dP(vaQHoN_^C_)xeoqHF zf1)Pmue90uJMDD-Nhdg8A;x~|7IA(WI%nCbSm+X5 z2B*SB$DXuM6j^(Kdy8ov_HeGm`4!loI|YX90Vt}WGmwAzN-iT5I=P$@S}vZoC*#KG zkFbi_0(vvdXDuiop9);n!zx?y|{tI0iY9J-$C znUUCi03(-lXQX`(1cY63IV_KnOS>^L#!L0q10Jme7v*p9-*WJAnd0U?ar)IA;#$L4 z6@KJEVL2!?_BCyhBdp%H|u~*F~1$0 z=?z>AhZ{1yA8xI!E0DV~nASI5WA~?z)}+dHnyhfU6|WuE z(J8;g!hxN4S|@e~m^f1l*faFtObtzv+qg+`M_F;+mCLZP-d@&6=6e(V;fAh>Wm(_6 zK?R>&QdpB#ebJL<4wwP(;QL_!CNBPNW;)QIt-~u zV4VV^JwjZEWQ-x2W5pH3KM#=v6mu>B7lvrg7iS=ukV4b`YmVy>V;J8 zHqnd(?QEoKcZ&^3DP4wW#2U394~Rw}HH7B|L?f1Brf-p|y&?8M(#EOUdtwHXHcr(( z5mS(~xk%MM6O$EeQ%+xsT@`H8Po#t|E(Ac55);t0dV-u4?Y$qQ8Xk9x_ul^>_TB?b zs%rTjt=iqw>GbJ%nxSC`Lm0vkM;u_tIYcEc)6>&4cz^fa-}}G!z3=&9r|Edk-W67@T9vE`qQO#!L5>-6 zg_uV(dmJI@CjvR%u^{;{A|(fdDJKRDVNa{J41ObA0&XXQBAB#=rA-<*f=-+V;xp4s z+Kr`58uG(V@B?=IW19t?f$suw5qWk?Nx9L#DYr*RL%Cxy8p=b`3p56Imf5cO&2PgtUkwj;J3QPPZ1c77ZtJL}>kfFgJE@E7 zF6!-CPv^Qe&>+{{G}LtuyxhGs*0qr)yY8dwUH8)h*8{Y~wTV`^Hq#o{gS5f5g&uG{ zMB7|j=~35qdcn1m-gZ4sAGmhYC$6XIsA~_l^TYaue74 z+IuE+6wb7_9D0dux{Hx{_-Q0NHF#U^kgsQet; zP})~6LyLX_6&*{@Cs9$L)tUlhfV;K{TUWB972v%s!@HZbftKNYgn|43p1&OL7o=_Y zgaiXw0?{_oQAZEjItpmzNu&ZL`{e*7YGx>qr*ig6PhCoT?=Ig zIMUXKZ#y_11M=3!{waW*62Mo59U##FdD57Z{ntw9aR8oF3U4YdRvj%MqM0Z+_*bmUrM1WJsZ=3YKc~hOtBTsNzJqeS_Vo-5he6hvdhwbDuGeO zrSYQ7LRDrQ5sRl8vEnA^?8+s9s8VICT#0I`Nw@=uYNDW1Qw5!xDCpG0cx|~`M=t8( zB4xTzd>9VX^)XD>r!ZZgAwmIM@A?9!>i{)!9fbKhgb3v@b#NV_?yfJXpX)1_uCHl0 z_R?jpqjZ()TbQn6G{f~BB9rfFk?RMTuH!IWKhk>FPjtWQ1Z{QwOgmk_(37rTVZMH& z*ImEU`>sFeQ`et#*maV=b^S#@x&Ee;u2bwlhJz_s9C9m;!KvlAom|tM#SPppZsK-x zE4PO`y1jgs+sA#~24CRz^Dwu`qul|%${plM?hsFRhk33$!b>3naI4$mJKZt9-(8Nk zy0dwQyFBl9$N4#T1%Aa{k@vZC_+xh^KIE>}+s+qf~YUM6c?cJ?ZZ+BZY#N9!SaCcVY+}+eQ?j9h&^;Qerebs9BxoV?(fZFW7 zKy7nhsGfCSr1rT-sQ2BMs{QU!>I?Vf>WF)+I_e&;esEu-es)h*f4Hwzr`*@+2avXXy|i9Nd44iPz!`$JV;4%h_q!7 zS8KFs_Rv*InnNT)nyls_Li!vL(h4OlAp&Nt0YO+Aw82hPXbHi4fSss%)0c>vz)n={ z5d-ONL)BdOB8I>;EI8%({vfJMP2#RYgzeO#B^bCz|D_p!M4YFl#A~MRd3V zVAlQUA-xx`sDZ*(Z^!*O8Z~)0cW^v_@0`caaZB}=ngc{?A2&c@YZHVqKIWQ^&5j4r zv~!4a99wX!uFlcX9|@@IE6Pvg=*jLADOBkYE?NFcL~+T7GK9p00GE8OB&4`4RWXg1 ztp%yl?Rd!T*oJ=+|RN?pzOKYeH-27UQPG8Z>KHpHMGOMmY#C2qrL7s=r#A9 z^q%`J`oz7Sj<`3__wKvt7xz7M(tR)d!$$VG@8huhelG8RfUCGSaUJ(&ZsdLtxzZN+ zhi%-${Rp4!ew5F3@8a{_Px27=Gd#lm9FKFqz}LB7=2`C7c)t5hUg>_D*SO!~&F&A; zEU}+=x_hH`a{)*prALWDY@AxP8asJJHg8y>=s+9W=6?FflER>Yv9;NMd zkHn6$?KS_M3a@`phS&MXV-w(1W0cktB8V;dQ)IOFz+QLacWE9nP!U0V0|onKu-AQ1 zUYDjn4+vv>*nlnd(qP_A2S8Ks(Qw|WWjPGUm^=u(J{|UYJnYzwuy~M01GF!q906p$ zHzr93xA2@K>EJG&1Pd?S;rH=4gyFMcuaUGN^SuZ5`YG5|=|Hz2b#acWjrNlmI`(^N zt6vU67#+3M&qilCic(^)>3h!CO!PR46g6P=XQKGv;A}pu?RA*Fst!Ia2aSLVt$r@p z>nil8w)&O14szr#VTY@Llm3koX`-symX4+Q=SI&nx`@C^E6@hG-a2kxtt8F zReehAokmCPorZO6OI+=@cN)EC?=_dx37fx;CB8zB;+|5?&pU4fy(4cPU9wc;uH$ zFEjw)E~*KSe1FmA!BjVKv{M;-YE(Q zPr~uO?X%&LqmGX($9~K4DF9ph;nJGC1wfIJUKYYPhjutV2QgBlutda*+S{+vDd#S9 zRY8@irSKuq{~9aqe}xY}fG#UsEwgh^uqLJ1DxRQ8j@6upvG&{j$DD_F6+2Hxve`M2 zhIW@URMN`o$RHCrsC>yPA_!9>Uy{os8Qxx~@S5MC6<;*MRNT&(2`Fjl!xR9WzV!md zTMz9g0&UxHHuS^rfQGX(^2!(*`X@*TFtLQFmUMni)fzCd^6AOrf5Cf*C(_Au%uA=0 zHA+MX=n#XBL@U^Wwy*{5U<=yA7Ic6u=m=ZTiJE#kQ!7sw>f-52Jw4s1zo$D5_M8P< z&;z!hCyn#;qDh|KG~IJH&GGc1#h$)&yQd%B?Ky`wdCsM6p8oWh=RDYh0rY}rAnd{U z^s(mxI^Y>ZUwQ`9G0%ncn`a1}@(g9C=OQ*e!`Si+=Zc;Yoa?!m>v}HX#-2;Lsb?g& z_FTrDJfrw5&uH%J8N(NNF6UvMD|oc$O1{c7mM440@eI#ZJkK+pZ}d#y<({i~m1h!f z^i1VVp6ht4XD09P%;sI5dHl5J27cbNh~M=r<&Qke`7_T7KIB=YqMqATb{O#YkE^ks-D;ZWX|>3+N8RMvtJZm5QX4$4 zs{1^zYb!S)VHIp!hpa6L+JUN&v~|d$#Aiaz55&ZzoSzzx;+NEOTdB+GVTT}IU69kw zgO_zvPc;}`btSA&e{~Mx3&{cptDcB21ScP*+QR+`PCgFV-HjS2pQH*vG+2ypG#w;@ z#ju2kDxjJp{cSfEbuWtj%?9|sN!h|lZm`Q6xuWgHHvP5-0%j_ zab$srWL^Y1{yA{+Q~ZFc>o|%m(Bw7Hrg3R1;|kra7KfbIj3lL@F;7lX8d^iFAwg;A z#1|(i4ShjmNKhIs;ND3}!!QsT5|oCkxEZu*79b0p3?-bku@zw=J`oS00~~>YI|2;B_($SO-b&G zWc^hW6ouSFktWAvG~93Amy(|6tq^rN>DD{obHd#iJ{H;-$1>u?iqJ#Ox8 z$gRBv+`)S$_wzR60p1oo*xQ;%d)w;O{BmO5*sB?J#l&i^!CkSM6VfmpP?-4~+rNN| zP?(W!w&t+m32B(2?8j;rt*^`2kwp5&LVhwofxH3D@d3zx{q5F62TNuuZ9rC5`!g;?PHO1%abz@19UQtd*R3<;{1qD_Sux?FJ#jYm7n zpQfYXC7&`u8~AMM>Fq=Py?tr0w;v7n zoVj+B+DV_(FQXJA}4-hte+ZMf8k! z7&h{7Y~&I2q4#3?+AjSG@Q$Qky_eBR?E?G~cKN-S zOuor`2XFPR=N;aAc$ashHUK9RYdK{A?y%h%0+>XQ*NkT)d6mw>)(`?j5()#*4T`Y> z4rM`$^%58WNoWW25EuYSXh#7g_u~-{Xb~bsF2aJ>aclm9MObhy7m~>C80gY&M27(I zfVavu=_aSH%yM}c0O74Zz+u4unzzax1auPQ?P5kiCqdqebOICzF#vDSF_;I@hWd~W zBA{CVllCRO3;iuGg1jG~>Lezu9Q_JGgM%<+*{D9R2h?*9pd)d-{iLCQb17~ITZ!Px zjCDr5qkKHGlS$T)(sM6|^k5QphN991ugeLMZ7O$UTWve4l`j&8-K!)cabI!+@< z?Kn`XkJ{eYrCD6Z6Vq^hmuWc3jqO8064b7~Xk%~&AwB?MJ7KNJ--=1I7n(mW4HIjqkUNUkB1vZSb*{Ylm1)dhjC5wEV_2bWO6t}ccde}Hy+ zP5X&?=qkVyYe|1$cl*KGDB|M5I`P{2)wokoSXUnFFBb!wNs$+GHtNOm;`Mf5&PM%s z^*F5idqwz7i5m@ZF!Uph@)OsMlf8?jVwlsQXp(u$WFRf|@Smdg(B4Z+&@=17Vj(AH z$4jF2S`0h0eNhAWx_wcA`>7hZ*C~4(72v7a83tdsDrDCx`M%k8O5Ts5Fgzg}(zxj} zl;U!b;u`U2Ah#OIMI*UrjEhtd#*d@Hh`gI%$G5rewOa^?xBs| z=MaQFPdmJOX}9+U+T(qZUiQ93Z+Ty)_r0&sr`}iTEAMM`-1|EH=6wUU`%N~yZ^3r& zU&Z?l*YLi}^}X*QD0?6F`vY$0{gAtQKjL1PL4U4yKVRtmgfGUV`7z$l_-gOx zd@bh5U++D@^SuXoF{Z}f;yui3y+`B>dRJRd==CRI2J>IGjj z^{TIhddt^Zz2|GEKK6A~pZmI~AAH@_&%U0HEZ^CVn6ICsg0H`$u5X~Dp>L3*iEoIb zxo?=GweMm_2j56XSKlb{L;Op^Fxq~|QQ!7MD5uVV)mGHp5kisTDEv@+hZ_N?1ft#0 z2JVAD$fCaLSAYoOhX$%2;E}`+U7`-c$9Q3gFIW4uNAl7{wGYt23izQp>N#5KtPDSN zGdeP*`0S_E>Oq90Qo`5>BA^tX1GGaehtH8fbho+@AcFKwz6{_)d`=kMl9NEYlM=?K zYBV&{rG)X7x=3Aza*9RA)d2V$7yQs~stPrq3-?(APq0ThO7A<9Lwnd8?NQobZNQSnrMePlI zC%#K9ei*+;dM;~2|8WW5jmPTn3w%9_)Gi1$zs=X6NIesiB0l0P(T8~$w8?{f3HmS( zQ+<>{2CGxJ)c~T%=QuXwRzpZ4pXJzsTaA!ffEAg90%+QBJ5mg#Ms zx$=lcxD(I^3eh37U^=UpdRz;S31%Vzf0Do`uSKk%3jC8dB;L>jJ1OamK?5O@>~=__T|1n$ z3nLjeS}L;taYd(0no?5C_ zsj=@GD)ddHmcB{U$v2sL_@>agzNs|GcP$O~O`}o1>u9WRI!*S?pc%fIG}m`ME%MEx zn|!lrm2VE+<(o_Q`R36>zWKD%w~+Sw7SqeVW%P#cX4>z&mA>`eM#p_?=x^U0?C`DU zsP7&w@4Js{`!?~JzAaqj+s18tk8ls)P8~(dC?PBa+j?5 z?m}@XF@^3vB-A3m6{3fbP%no~4I|lJp{-m*@59bQ0Y)+&O-919&-8|~u|vIySR;#H z>5Ms5T1sphq|QJSv0ch)b-EB1SrEkQ(zZ)ktxl(x<>-z|(=chwLG&t|kK_54vq6}D zLVOF&Y-ginJXMAkM5;zo95JBj1?LP6xt8xqtgolAzMiI92NPV zr?$Sm)Yk?$?K!uJl1_q|V(d>_#?-+sLg65!x<_Bw!Sq74oX zPI|GrXt7Cl|Kl4ZyZ-?XCc6LIA{%{}Pr<%+re-t;-YH$2^jsSpOfYglK7BwK*iO)C z^ie;fw2`8{@Rv>;^)$IEXOonXO0}6g3tJ&kcQyxmMkY8pTjr$g$@Hf3;{BP2td4x2 zfZ7(ce_fE&biPuN!NsRq0=+ZieR%VCSXjg*#iPeqC`p_h}L;?wkzoZA>N! zH)2S{$Re3K(W}IKA4vdCGkh=ZE}?k>vMo}e#J~xe1T;2n8V`iU6YN!tr?>#)DI^PP zt8=lAIPhJH{O}R23QbwenK(%?yQdUaG&R>DW~QCF;~#G zvD*KjCcZzZneQZ4`d?V-e^W2tDLTg>Iv-P~hZ~AU84en2IO%F5i>4SZnqjzUp5dXT z1{8w~AFVeG+GP0YVZ)@y4U7aZg0$BN(W^$7_8AtvXJpe6qXHc@D$x%zu^IE2voLMh zhgr(mM!sGlixcNDwL)x->RjaQiTJNAWd0@Ub6{`Cr~|S)KQvx0)xHJHaA!i+zP$ZAipg>| z{twNfk>JaLHrJ~t$9|g4^p023zYDbQp~C$h9@A76$5<8FlXyet zxd03xcwiRg+V2ZFqSRBXiR40ckwy>^BK?Aa_Vdc7hJ&fzGhRcZ3#i=>15F%P$8muM zwc2=_+FH9vUy6ilozsP3db5{;0z|Aha~xL8FQJ>DqI&S==_?q;+`Y`kvP{K-7{vG| zlu6%{fi4p>x!|evf1;KrD9Qbvn&N(^3Ble)BQbioAz4NN5 zQlZg|S{lu%lTk!Hj26__Xh|0st!S9hnl3Zi&{alTnryVA=|+2+YjmJRMn_t1bb>wV zOm`Yx=zgOsZ8f^V9(AW@jI-!PqX)fV^n@+yMV}bG>7a2oeQoriAC12ByU~wM8RxLm zIF|#M(j7H0LCYAx)eTJ0GS25S3{22625~zB6SRyAxsQPfTEKeV>n-7 zjNpj|CTJO#@InL4TgFIUWn9L08KZcUF`6GX#_$uy<@}6s1;1=u$!{5B`8{JCe_~w4 z2aWOkwK0KzFs|mGjcfR%F;O{;Ny=+XRzc%hRoR%Xsu|a-TE-kz&zP@T8VglBW3lRE zEK~iBo7Dxzt!k)on;L7ZQCAyxs42#JHQl&J%{J~+HyfMO24jo5&)B9OGagY-8jq?y z#xC`?@ud2|ct(9v)c(u2+7D+J(P@WFHm>tTpi;p)osYtKZjkuO5K1MSM2g+ zH48DWOz4`cuF*6?*mZR!vUVX~-KK^CGrkAj;(pZ^k*(zATh&>*^e=iwEs&uvz_)!- zHGz(T#)nmXx&_ufN}oXgU=?mzkgkmaDVAorA2FC`1>U6`{jMA+E{U!|1wH^OxR3y< zVS@K+Y^w@V7W0IkQl~KjA9K zl!XfZ1N)tW5gXRxlTg>X5G{PQRgjK3hv0bC(f$g*Tj$Yr)8cnM$5^Udnin7ee6oj6 zJee+i!Fl1IJR^}^Yo*~tAk5aAk> zED_d~7y<9B4d*Q~-`mn$;IMz~0#i`%f2tfWIB?3VWdhyWQu{Ry3`%!{vNZbAaNx{Y zisDOUiXw1eTnvPmH?H=97ajzG4Dc@?Z#XyH$j(n(m)Dea2zR3qJ5#v(-&g$2gn@Nu zP^JSYb0}h_f_I`qmf~?0Ph%;m;Ej4~3mEPXVYv6haDM{B{V5FhXE5BKQ$ynmYGxdu zHpW31?n5x#hpC@&ga#U4(oo|o8fkn@R~X;W1mh@8GrpzS#xc6V_zr>O_q4+Jfz}wu z=^o=p+HCwp+l&*m%lMg|HGYBd{uRdiH+skTojx}HpaaIA2qsU`3F9w1Y5dK~IK>{n z;%t8wSM+;0-*0due}K>Qhq=gaaT|X&cl1}_ZvIL<&|j4=^jGIA{CRwxzYfpx*W=~> zhP={Wz-#ZcYg9PvF)Xx-_8WeI^21 z0Vij30|d4LPOjk?rgSxd5xfU~6LB@L1fbEq9DhZT3?Z`^tuVNzKj?Cq6v+;vnl44M zkLi5`z)qA&cH(-HqzI_e)!Klrbq zpZ$~R5C667_D^TOUluHZ@~2Ony@lwwy@lx8W#>CrnV!tC zSWm&E=S(?6+gs}848Y|fS*!_E7!-cExv`~}sq;l_`5a_=RnwN~xU!dNGQYt>83_?u zBsUQGs5NjW)xoTuEJ>o$hF1)gM~26(p2zjbf;o&zZSX3{JDuG_w*s=oom=6SOi%tYX@`rFL#Yro%r6J9j>IE=Z#O z8>o(dAvN&dNKO2UsFi;)b@VTx?*66J+rNy?@!v$}`=EG=YanKj`}xo1^;HQ?thT$`nPan|3lo&zm;40x51%4%)JmX4fa3A z7x|yyOZ-pqHU4LLs{eVO?|%^v^%XeO*Wpm#;w}Dn_$mMU{G9(Ie#`#}zvus)kN6Mr zQU4MC)Bm;d_`g-A|9chj|EQ|?Pl(0f3W+^rTMXs2Ee2xXgwt)nKVopjas-u4_*=Nz zMQ{%o&Z(_P7IozP+KRZqN7<1?gl2<`y9}<(Lkr>X1Q++B=l@3SLVWy(SGiTPnOK%Ah!aBBr+Y}a3LB_ z7s2WN!Fgyxf=mbaE2!|{6)}t$jp!_+9P$m9&MmUJI%det#%Gl0x@czl3b$nB<@dZ2 znM?%)2m6t4EJO$`HfxyHHtmSUxI~Lm$+(>p^M1vC;eQ?L<64LHEMf*p%3HSG$e9o- zOYh=LAX(RzVc#~xzG2oc|D0yurj>2q#K^#|r3zotpivBB*|yHsXt(bdi*#rsg|hun z09vqpUTynaaX0q;vjWF}Qgb}PWO3}q=M1;sAv4IAr^%Q`fH@e`C^Hm8xI*7bx|*ig z+Y}$Bv-*6_rmPBm1NYEhe{?M>Wc@GvH=M9Val>$(eNpIM182j4(D{t_eH4! z1B>t-J7dhRRN}yb$(-n0b_uTRNj+taVASzIQe8+aj*RQc6s*p)Ub=OoSg^We^S=mJ z7mx9kG3aR!jt^R5rWW1lQ3F;A>8;I;l?Ryj2+w*tje~gqHd;x&NiJi(9EKt zri(5?VRp3Xp|Pfyt}y}Rng-1`{j}IL=_WHktIZ(YWrk>@8Kx~JdIQZU?KUlX&O|4m zS&rT@(fwzZr$c6(zA-D%akC=*X6CRmE3wzC%u%xn=a^Nwx|z%QW;HG_t8+862DdY7 z@!4iwKF6%j1IyXEqSTghHo+3^KE7)UT1dY4dz+A-R#BBndpTy z&*9h2^Z0G^eE!@V%!kdP{Ea!Bzc(-86Xr;5u=JQkCz91n^TYdyaOehT9c#}3_ZaNzv!CU|V9vTSKH4lIF(omG`MRmxBtl@HWSb71K ztOlGQ++5KW>Ib-6g03yx8CilC1`AY8Xblx01l!HcVB$nq=s6gcn;qZa+rGxNb-ob6 z++GMS;4f9<86Xslc*<3&$nm1zqFQH@RP4uIA3;k-Yq?6`qW^*mO zOhAj~2JHWPvG?!i7Um||n<)E)}6%g*3IBu!@U^fh*0 zVr1TaJA+3t-X59vdNPAwfLAV4?XfpkqVRsRb1nAfIuzc&bgsiU+K8~@CeFo<+yZd3 zHk^8hp1?N|0oJf~@2#}X_0z=yM9G{)w;?C8YYe7z&IK0=MbcyrUB4}xdfg*4xuf)= zN7Gss=7W&qjj(o_jztoAPoG?SUf4L^ zAQ{*c#OujJeer-D*yP~>1U6^Ht0n&;^}Z(YoOlzd{<-y)X=v`=1yvkl3yG1G3sbOjv#9n^){cN0p@NRVm=9@`V@^bpQcIX zGYGJrMS!&j0oHT0+=;k0|Z$ga$WNyZfJhYh30;4Z+^nv%ul(u z`56x|Kj$Il7ksgKfXA2zdAxauC!2>6Y#rfw=9dV#zT#WWuX&C64T7zse82fEZ#9qc zo~t_{>b~ypZK78g1aBXzf^(ww`yUYQtbnzx&>IB9Z>4LK$f~7;8CLkhME)zsA++)S`@IJ;j z2~<+s169>?f$Hj|K%RO%P)EHTsHZ*%G*q7i3e-1&Gu8KjX6i(sg~J(W?eGTLIRb%> zj%c8ZqiUeLqfwxzj-o(6NB2N~NAJKu$2oyPj)8$8jtc|B99IM`c3c-2>6jH5 z?U*09!m%hY&T(5{f@59a8gWp{O4w!FK{;k89aIg+wQvi%5z8?V4N$rf%W;L>h~>Bx zPD>!>A&z#asR_h9($P#KWe}yrJlXkpt%oLo`FVq`v(0o=L3K^)Z1WxEfu2d7?IHDp z&V~K76N8tJs62e5r%~x!j^_pF1@&RF592+|6_=negi6{T1ckyNJEk6n(~`L%C)6el zEJvBuI)KO!XuvFvl?V@KBioIsh2W&#L*=--nx>|s2A0ir)iub97a@2oRHL*YN1WTM z3lTD|MDW;6ou~8TiabDdMesNs!Q&9s4*Bs+)Y-+pVlj_<;2>jDVh%^MIv=Y#9I9bx)(@Lzx8&CUn$+WM%` zZQy(HSOewYHDJunq=xt=OVwWppc|=dsHFdmcWJD0F-CL?0_XzOf-iP%!DDBrZhW5e zA=D|G=s;j2RYFy-ugqmG85w8Z`=8Av$EzfSkQXOJ4JD9Hbr)xZ*3KRhSb)}tm^yKZ z8vs60;zMK&927Uw1MRJ)V-C6-sEiXKShKX4V_Rm-A%aec>CQkxF_+7^y_e1AOW8uI zhIgmH6tV)-C?{|o)eKChx`7$gFffbG2+XCXf%!VvOR&wF*?S2%QleZ_7pr*|FDFF} zkw$GrAtS*y1Bo27#GE_J`0^u>B`AFP>Sy0CB&E;U5(o695@TZ098U4~E|hN?xCP&PC64bZ$_*f_53HvA!0ps1u!hbI ztfivBI%*xbgW3nyQ?I~1bbcVwN0vC|7o?7Pn-s$jb0iSdVp2Icev;^>GyKjh!SH*v z^Z|fCP?nr^nv-?_UP~Q-VuoKaYbsORU7Y~3?%WR6wMb8kTFDx4NRh}$qzc&l&qsOx zy_8kt&Pbn9_;Rtz##WrLUQk9K%75W!`0=&+B15JC+D-y!I|-oeB(N2S3~eWYhp{BL zV@WLXNg5V-j>ZLEpsNEf)0Dt#G(GSp%?|9-%Oyc1 zos&A8m)ZFWjlkiYiNo0vD8U&Z0iYd%IKpimh6Ik$h(LmUnix!Qaq3`pOC8LPIGCT~VAe%ZJHg8B z2yTW{oFHci*g`yNVlY7kJu z@dwTe_@sf8)F$v3bqf4VJp!kwAIg6NgG@t%ibe(}(wi=iSl^$8i-FA7(}H$h3v?UfByLy?kir zcO^+O_M@6Gx~oWZf04MRa$}vB*KOvFdvr4Bk;Kynp?f5(hJLIFcaX69@jAcc#@Ny( zSfjW~jj^|z%;N$59Y#}q}O%P(W>g}J}J&?>gW zR>pcQE2q@rhS}bdSyc?pkrSjjGO=LGY!i=#!M1c`upJh5d%7*yfz|~(VsUq(Ey2$8NU#eQc30XH>_#sIyVIM&v*`U` z5BfCNlMV&@(6_<9^kc9e{Tdv|uHYc{1&45j;4rQdyqFsXM{<+kXl@?7f?Eg2afjdp z?iZZM1A*c*krBsWR}=sG0IXid2>wudy`cu~xjL{;5YHlj#ZLU7^iITNmMpD- zG$m~(epvQSl%)@In;CrYw^<-=>fI<% z0VL~jRfzsCd8|n8v??rB_=-pD0zVM4&JZ}oRd;l5Z zy+!5o<@)8KI68NC@N4$>&>CsGv^qCl0f}x9x8oHgBCwxPOy7pIe_<7&Ztnv!RsjO1 z;LBmSo4&4w;O*n0>e`jn$Pf7-GCU^3Li~4(n$lfrVj^HCCdR^PaY<$!O-rE0VrgKx zpimQ28WR)aB7UY7Ps^lC$Eu{gd5S+hRku$U&v;8YT)q&I90ljXCZUQFya6_8A>{>c zq`JXHbVhJ7?9viy5nM_gg3G8|@FwaNTn^iGGYtsdLKg*B!0Fx!r@NA_4z8kWF-qY2 z;A&bBL^(VNb(P>+*rs)GzIV{3;GOhv@Gg2RxSpO4ZlD)}chhUZd+43uz4S?NBW%-s zbS!v3od`Zae+D1 z(gG-yiN>i9WCQ>%xMe^B;~*_Zpy7v-+3Q;Q#zZUF3jkN7jqhmy6vE#Nf~kkLT)ayN z)w+A|8fik77T-ho+z6_5D?m9ATX_O%)3>7HX3?Kepgw{WEQZ4WB+!``0fdR6MffY! z=&~`Wbuh2g6}*~gC0>Qc;@pHgYdUiUZozFpXZ{?aa2M#puEuL~pjTZ3aFURn2XiF= zDMEH0!R4Hv;k#6U0(Ov(f;U)|C$J0P%3%c5*V5krR}O>hd_Dc<-0b`uAk2LF5u@7x z!f0DQSu38+DONnQ*~qpHPgFb-kFM6>h24}WI;@ab#U-kSC>bU=4#lm$&M$Pll^|`^ zvPZIk=>WnZFb$ag1Eozr{f$$ch3I`~n(06IFHAos6_l3 zGU!fJWtPwiB%usdA}dstazeS38>&Wmq3TpORD&9ZYEoe+k6MT7P|r|3>Jw^6Lqd(U zgO`ys_@4HnrH=NZr8db$TZsH-E=sOYaKR}^4F3`aNd+CR;`O!zbynAhN(+rSzb<`L z9M2;(D36V@IPIu>bNZu_wDjWp{&&WwBCSb}^Ou+ET(&XctN5WNE}8h7UcvupHdb_`*`U7N}B9&E%i`Po|9ODn|_XiraZFIUVpg znWXIu#cf^eh@sdqp@ibLCT^sh1bsw>SVL!G4K>3WYK}Ejgf-NH8iZO>lTa%v3bm#V zp*GY#)RxW;wWISw?dif$2O1ITNTWlYXk4f>O$>FRsiCekJJgL9hPuPZiTdeOE}Z+bLzHa!*ULwiGg>D5p_dOLIueH6k(mQa5>5;~8*4Go|lLj&oz&>(h) zhOj?0jB`R4b8cuP=Y>Xde&`Br6dK2ELld}DXd?FwP2pjoX?$sD29F8N;&Gw5d`)Np zPYvD3^FvE`Q7D0;{g_yN_FCtw?6nRegv|*XimXozbQ3-w6bn6N6DmX!)?&&gI8+kW z0u}-4k({!LAxX(8n_NAa^-bjLhq( zw4Mfs?xBl9_t7PxO<3+*=(f-{S{K@`&1eE~yTe{uI9WEJFg>}n^6Ba%pwO7EwAnj! z8FHt^SX!;nc=|BZNnOC+WWu72xK-A`QAfLVJDHS-Zl^vqI2YfSaW140+KY3sA%>UurVHQ)-5#jc`saMmV*OaGE@K+Q_?%lj2F8l;ZQz9SfWgIa{G!I3G{oeC)>g zcoOI1DV&d|aXy~G`FNJPg!aIV?WIAXmuP6{Rk}Fz28{~sqbo!2(uB|lv_ABaJ|~H} zmK##%WPa+L%u1b;$+iM5jkgtO>GC9_suf*oE6@V9O)Ai0>z|<~wTTO?uFp<~)LhH- zTF7XeBiTJTML(84Mf4O-x)X2FIqekvRO%EZMmZtv`3!CZ;}>}k5K)(&Fa(eCvt8vV zuJ}>|*cu9bii7wC4&ni-7CK0^LWgh=p_~#rLd`;7;vjxQ?Lx<>Qz*T^Ubcg7P@%fX z1JwwYM3$$*^7OLL`8$@C{On}K;g8Zk%lRgL7N9+)(tg&TrG6Gt%ua&r{{K0zOTrf2bzWIcx?1h6**ur~y-Hw3UZ1o42-A9P0O zPweZH)FSj3LW{qtTj&(^f>}N%%rqdZ=%TQLMuweqML3JD4!h{uu$!(AduTz}OUuGO zx;1Rjy0D+thcO8;j2VdGAUzfi(bM5Dy%3JjYvCxp6SnA+aEuOx%h9oLHk}BUr$57S zR^bZl4OiqqIEQ25N?a*inQMltaDKQdHxB1=({MFz6|T-5!g<^`T!)8+>+z-GhCDG` zz}JS)6o2A(qTJ)L>`*R9~)yr<=6N{6~OF#1^J^eKwE(} zFB6n&izXd`~T6Y2XI_VO0}w0D?EX6 z!dFvn_!`O!Po(_tBx)RbqQZfJ;T$efA~5Y9G*_Y!!u}9cqWYtUr&?5 zvuJu4(x~A%v^YGMZV%6+yTkKg!xqrC@C~qG3t_`^-$5g!8j;YW-myD@^KP6TD`DSh3 zWLD53ZQr2k&oi`rgQ`DIMomDb-%i4Ow4|y(kG56)c@UcXrI+KcKl`d3F<1)>pD{exhnCsh4Cuyk70pN`t9{;*8KLoW}W$9qXt|5~(1 z&4xWn^s-){MPMtXdRa@xf&X*G{lui7{1WQ=gwEX31_(?mr}W=L4>RW5$xQD>9?rcsmev+;<{Zp1MAWg zO8x~llF0TR_Sv!9Je?7$QOLn@JlGNeH=b8H(Ra0ao}?Pg?|hSVWfB(Og;v zf|56pi(Mh6FBju^o|4t+%(*-z zmwItq6-;F{qDVejkp`3#X-K(|MwAz6O!<)lY8*L(iXu&@UF1ya8Y!eck)|{t(u^*Q zG^gQ_A{rBELE|GWX>z0$T_0&p3nFc3X{0UP8fiysBkgHJqyya_=|~Sny3kXR?zAV; z6N~z6dNx_Toix*9Jxo*$xA^V{!}(8X*#6 zV2bD!&AG?|DQP#B+d`P%KC~SULxzD4fLwvJFnP2ZmvB_QNZ)V5Z#+e6nA-x3 zzmfr=7zT>L8Ou-vHo^2bmu>P3(ix2qxay7`2we3-r*>Fw^u>h?1CV-fMQj@gaqmU)i)+Ubdvg_+dG+r>mA62O zz0%uYKc%Xadh0gJm8&-}4hvWNAi7mm=B(GiWab)Rp2#FDWn}o66qs0I3SEhggG{Bo z7!) z`qk7p+7Qz6^7E-bOvS}86(eCPE`zBU1yeB^reX|C#pP5Oxq@0ouB7&nvD7m%j`~Ng zqQQ~zFclMMROD*9GI9+~icF;Gkx4Wsg4irFg_cLA(yGX{bVpv>&6uF-ti)`k-k%#!b$iw_GhzLg`kMR$YC-~>cQ~XEdSw0nc zUO6K#Dl77eibq~ol_PJd{Kz}1MdW?eHu90`8Tmx@jeM@oiyTygB1hDi$k%FIi1rT{VQ6lNR(zpn*%|3uHi5K(;S_`$lELcS{TUa^-?)los?m z_;>V;iTKrh{DYpC8Kj5!YjlzwfZu)rGlC@s4kJc*1u^hUL>(XVle&x$r31VZ+5T+A z%HQ+-@V#1;n(x$Y=`sQ9HrcNB11iuEKA@$$}s0>f1s)+b&p)x!ZQO{(q zs%iH!0V}R6!_|2nN1U7S+YS2l;SWZlQ3Ejp52zKDHLd-=hr@sU&|8zKm2naqP2S$V(SW$>VLiWMEuuz2> z6jic6sB*lryknJkW$g=ar=YN^JeK<5x$#_iMzwgZeg^Io6jqnV3gHRlu_D~TXV#2Y zj@K0Lmxq_b`_+n9w!I(jr@Y^3$2JreVPb=RyV~OY>e=70zRYH*+pIwx+$x~-)L!m) zE@~)O-3uGZRj;DP@!E2uFD~HyaIvST0ND`MAsq7BwluW0l}LmnriY zgM`V1%!sihiZWG8eZ|1$aXU~#Mj<*uS}L>YUyFN{sqrW*rHL9I5$7~fQocrB@kmo?i#dgCU>>ZN_->;@&@PmgzqHA?rJ=#rZ# zU2;?7XUHvd#}&uQfF&ox0saXG_%|HjDawVUb6%7wKdPv4)In!Pozx-hG=m#Oe>=ix-%N3jZurXL}TZJd z&8Fw0<>{4ZoZg96ppT;!=|D7xjz%ldkI~BXTeJ$DidJP;G?)F+Y8;JL=L*ppoExpl zwWE1lKU#~ML~C=aXdUhtt;^k``P?U3kNZdK^N?r*z9ia^$3z?P_-JFE5-s2v(KC2n zvDZi|jn>!K6XhUi4KJvv1_7M-SEiq254M`x+G zqjS{<(FN+0=#AiV5z~#~c?$pKx3eeabOD`mAG8^m)g$=!=f)qc4jyPIk!6vYoNx zQrj6jhS|>8F~D}lj=pfl!s2h?=!ztIJDhPx2MD=vL|6%qW^l_w&KlszM-nYrz$K1K zn$qf}%N^x3rPW7M99|^RGOBE*L%~%GaJ5+dtSPM~tyD+p5T-l?=uUM&yXqjOMtn>+ zIl90ZZ&B|6nD^q_KB=BZVlCvX=hc&du!NlTj@p9$IgwZRSZxGY|2b;^N7YKLDpL-c zl*{1Ap+rfi)NBMD0$jP!HFq7pL7by%EFXrWtiZWyn5qL(ZAGrFE`a+Ma#j=7n{VYN zaK^1vXY7yZaK;@~8^HE6;f(uWn5L-8R7EFU4fM}VhcmuJRYL#VOfZASqeD%=`szFd zy>hqV(`vvip9Hvf50ogE@=uQ1xRrEWq5=QHi=cM7fEuC!WiGnm7NSGW z$2ssK=RUV!dLCA52YRKoHS8heJL+)Oxhz_}$c88p9YuiyOR=~6f zx1*~7dm6B)RR&3TZE{+K9cZNW+9x83)%q_bnP=cYBdZMR@B!NoLnP1?hZ_k!yL7@C z63%Gp$O2JW79u~Q7tt93`w!11x_6M^bN;%Gyw6arVv~ZDM=)#qw2*Wky`h8R< zClz|o1ND<|?-4=RJy6~oJLF4avBf-TMtv)gtt+uPXR?jeT_QuqqOX$` zeT#CU`(UQuhM9f`X8K)f5`7OQ`h98_{eU`0KcusxAJMtdk7-bJKMjw5LYGB9r7NRo zgN`1g>!OEfR`eUXDSC`nM1P=rqCe3C(O>BC=?%D*m*}`Mf>5>@(U^8uVmzDzd!>IyD%!OGNMWVe>rmX5-8~Us+@k%elAqO zB{GCYL&ne6GT?Qa)fCZhj4-PqKRXX93D9QvSzhydVJ%$YXV;c{1%-9w-t?ln5EZYB z-z~bZj#Ke+;L|vL4;T>w9WS zX<=$+3|TA_TSD0`Q)(eInADTPGBp;mYi0z4d5HRAh$bg!jfGepxrG^FQ`E2gN2wPmyIQ%CQ`jYdI;;%A$M=E!SulDY87&&hk=M%SU}Ig9ccBy3jIdxD}u= zR*=S9A)0JK55|hn0xL>OEsJioVzkyOM;okc+H94l?N*$2TNP-pRgqq^a_DWV5`AP< zrZ222^p#bWzPEDe7pofmWmRW~RfGLjO^#Z59Jgw5RjW4Fvg&Xnt1dUS^0~EDkGoj) zxtG;|&#@ZvK&ufCvl{bdRsmmWoxzi=COq9bljmB6yvSc}UoPW-3US+Uhc8CF*nvAU_a)m>G# z&Qdk4UaE=JM>Vs~QLU`=RCnuqb-p!Njk1QSE3M&bx^;PCaYQRBu?b)o0c`^}Th2I$n=xub+@C9wb9Yhx?f{0uO|$lZMP9tB<;4NhHbYU6>ON2W$1Ue_W{pvx*I&eM_ktHO(_#t@D zZ8}K%H=YhUC3*mo01wce1i*vKQ~;KGq>hIEtCn`h+#fN48-9IGnmf)-x#Lu~y$s7i zLp}aqDzkE463Xiihevmq`+@ztc4SpY20Bn4lW9fr%$G_G)G48=ReI=_j4LY6a?y#5 zIt8(`@Ti9U^s2{78GNfx>D};~9aiCewK8qT2EWPN)NIod5R19Yi%m_}O|FKhm-X`?D?perqC6pbGo{<}H%csw0zCNEr2t$5k(y&?fdg3+2QrTeVzsDQtS)to z)u%qOMs#8947xmarapKH0fsA52d{6+;PgxyoIDtp&$PiQfU?Cby^xz>DR0HCgaAVo zUFgkE2r!75NvuQUR`>_eI~bYfrI(_!9bR4mrJVQE4p~vzOHrbCEWR?TxpoRrJax$i zhk@C5P7GS^E`yc@9QNhQbxI1mxJ^lC2Zm$-x<{$MG%5{5qpnMC3<7R%>`<=)w>QLo zWwpdzep)VSmKLckA!TQOyO>Oz*o9Wzn4r=c%Fl+3T?~?Lp}5qb;|BhOR0B^FAU_r= zFIx473*(uaO9E|ds);2wRjE-#37PG*b)%;f|7VjRCzc6YC-M%o)lSueiSG&yz_&4~4&xv`$KDAtQ^iuI;dv9sx}SRcAC)|a-%`q7TqIkY==F71u= zr`KZV(c7^B^igae9gLk%-^4DU?_-1Lx7c8I#4coCYzT*ALpdilobzLsaKqST+$1)J z+r_TrKC!E~f9z@=9-G7?V^euj>^hzno5_n}v-!5zJYE;Ofj7h!@%GqKek`_}pNy^G zJ+W2%V(fN)FSb_p6@y_bOWWR8yvsI9yd!Cp@_CaDi6Um31u)J@EfE>oV<&HdD-lSv z2QNg-ERg6Ro{C6$0k+a`)IV>){_}#tcR7%dMQ{+4`NCw(JcG|mwnHuA?qC>+2*xU~ z^^#*J!NyIFo#Y0P6nj&6MO;DEMvRMgD6J_gkmzfGU!_tR1%)J`DQlsT>IABn!sYu0 zEaMe$bkYv>8Q{;Ah?((f#K!`O=3pGW#K&=MQU~Y`(g;;Z#+vY5s}n&d#%0)Dq3FI* zZzV?ANFz?dxm8J6k_0aV#uwNf{=upM$E&IhOPkV$C2KGYODJvpfDawnQ|-Y4xeQc)Y)dJvj?Egwm_Y2rE1Oxsh;y8YUq5Jnm8Y!*3NCz z!MUBfIv=H8&K=a(xs!%EAEVLET{PbLINjiU0zS-cn(N#{OVB>L()lEjNZ+3nTRre)S-Pio6^E;@zAE4@fhN}Aws_u8Fy1)267xRa%R6gZO z=kHu4`J$_gmg>sX%Db{Om&>JjU4|BN`Lv2I@ant5TAr(-*1}aqyWCYxsmN9o5+Su! zB;XDF2iq(y&_k4?*==E&Wf& zTQVMxw`6ROw`8n~w`ANFZ^>8yHD|T-&xD$@TKXp+#NBZUd)D7!iHki_W8wUmzR< z=p51opGaB(1&wK(3mU?W#jQS6wn)^{A4oKIOO?P%T$3HF7ni7OqCr#?_cQyYlD?R}<>z zYDz;~&1kf%IgNLQ-t?lY zFTLs-KySJR(NWh>`qVW{t+#-WuTYNOSc=G7BBvTEazgKQ zftgP_gO)W%*~QB9bSQd^Qf|ga(&0IcOgKgz{}+ytMa>4}<5xH`=W|Qj_O76!qGALT zM}`08%w z`oXo5HP`K&?pn*GU3YSM*In##ZDg7QR1+o7mz3f7qT6SJ@U1_SoXVS+;n< zySK&Tuef;p7AK?oAx1_w3y^|aAtW;xgka>r{IMJTyCsukMhZ*L#N^07 zbhIcEx`Gq0QiZOUapGUaiGK|z{&lMAdV^}Z4pV*Co7Bwp7G3Uon>xCVP!HET)Yo;C z2Dy&W2-mwb)^(gFx;~)Ut`BLx>l0e(`i$;%eGaAlB|Yr=8mIg_dct*Hoj@y9xZ6H~ z*eAQ{y*hRRYvO$DL|i9T@3}a4k}7Nl_>@3m0FI$ahy;ZgqX&(EJ0$D{eK8=r6jXHv z>fk+a?jArS2-$=?WTy(NDrG#%P8CWUh}w7DD2`#-X#gXvZSGcdn}OMIsE?nRo#~#u z%`q+cpUopk)ppZsd1;`)Z=08n+kJT%xV@NLqB`2~s|#{a@b-?LpgSy?h5-U@0Yx~j zkZZm2O3Usi;~!LVUJ($gUdKX%#v}tWT{P!()!tEX4isIc>t~#U-*65tP}KD=oP*z~ zuImqK?D`X0?=PH#i_`&Tshf_@X zL+kZSdRWh*9lDF2&<%P@_tDFGkY3lr^tN7+-qo!RB+G!uGX-R43Zgg(F?w;@4mtk> z=c6ttn`M?vDmA9NaaP2D4?%kQ6e4p>@4*?6{6IQz5@X>c%WRrS3MnC}>j_8woc%TuGWiDK?PvYV`k6MCgg`e@e7tpjJ+_b1B;E-hGAak~xHE0Ow z>Mv>A>r3YJask6Fr4&mkQ7n?uOWl&2X}|6gy%=iDL;2kp^MJyQHT_TJ@~SmLE>C#` z2;k03Do<=X5_f{=F(jAwMxMuhg&j%TKNoGgIFA_==)SlB#H~Lz=D|dSjY~ao!5;JA z#08*;!)WlZo{=WN2vUa;8S@a?>*$-K9!h~Lb7*D+JTFNqGdT=b2v;XcT0jlSO(IrE z=0W5usVO#Zs4%XvfmVs0NQJ^k0VlkU$tqc>y9z%Or{kMmFoQ2S3@N35f^K23<}dbM=)YU$|J(rZ&yy$;pU>rz9#9yQhLQ!5?4T6!*Z)f-YTy%F`- z(W|BB(KUJ#h&6h(^ky_mZ%zyK7PL%nNvrhB=uW*A-K(QlOTV0U>TPI`-j<%#+tCYp zdwNapKu7hCbVBb$pX#0Itlovb)4S3ydN=x0@6Ks@4=$tkWS4#g`}JNN(R*_>y${#X zujD3rUv8!MT9%+zD}#C zZ_ujg_h_~BOT5sEgY29Nc ztd7=FxlX7`YI(|aN=1uBEjTA7pbENb5oNeQRI2%5xWt6@*K}3mLNZe;ixlP>sHkhS z4747XK#Va7ZjJ>2n8v@wl9>xpBDa#6%MgE`hWSIE8B(l5vQUoh<+l)z2vO-n{IWuI zmIuGeb8x|=+2UE=1yrXD*?kSaEz=3ILDF{@-~p1%JOLL8BQo zcv6BMA6UE|7i9>|{Qs~-Q=w%^(EMFxlmews3!_w~QJz=qb_|j_%@tC+5g)QV?qEYI z$lb-#oZsE z8^_&62%eNW#bK);7jpBms^cEsOtw)H*TGldET|qhFXh}%Pjv3#1td3%>SdCA49s**>QFj(qb!Ssu zx04#XUDU#@)8%eAb#NQh&F!JSZZ8dT`)Ih^PZQh$y1^Z!Y3>lsa+|c+9j05|5xT=2 zrF-2KX{);uZFg6uC)`!&X?ImR=&nYux^w7lcXc}9u0f~VHR+tYF8%1PM;F}n=`VL4 zYwl)T0a{#lw`QNaEt~ERT*=*;bKTvzt-B|8a`)!$?!MgHJ%F!v58_eop?s}-I8Sqr zR08>tb;9BTX;bM&A)2v(gL~Kk2e-Ea4v3}|a14UgDhZpG2C{LGD>z2Mn%@8-jpeY6 z8L)r9$6(l?kwvOQS|@MC7<(CfSqe#w_hF@F80JUbq6*%xEFDBD#LBzB z3V{?_kW6};9#rXkl969*r^q&i833!k7;}w)Cf)`q@5Kj;}--N ziO8n<7oS<_7!4a46IqCD+^|B9t<*OH? z|J#hKN*rO`Vo-+UuqOxODS0US6R48=I;!cONcG*5D9?R8wRTUYj_w<%yL$><>CT6UPKAh0qp|KAX`*{N z<-2d9>24e=_e@&qo<%F&n04vKtV{P?+U%Z3kGSX4W9|jC&%Kada4(|Q+>7Zg_Yykp zzL`FBFQw1iw?I^v(GTvG^e^{qOzu_eaIfQR_XalH_i$DBCa&q;%=O$`xsm%}Zsy+3 zUEDjlr~7ff(!GZVx}V~q?q_(U`#B!#KFHU(UsU31O$nG77uUG+&9?Jh6TDq9h7xdj z#TZJE%ZxFUaAjChi&)iz45m2WgOJO#iB;2L8O(h8mrbln-^A?aQl$4S`*{Zh*Rr4Y zKyWSR`w?U*E$90M+6Hlz@nf%%xYwWH(;kO&z8b{>4BJK+aGF;^Tz^0p^(+W!c1%c1 zz>+l?sReNGr0H*A^Ahv=5LgsRndlT7m~V zE?G$bTLu*nxWuuVLKso4QHGH&f@q7E>KWdLd{#P)UO^Y{zn`o~huETv7xO{N% zurW{NWrWW^&dElmLbpGe+i+X$8sH4tn48$eAz#C5c$7ZDjDR8bD++gV*jH5($37XQ z2_yh;0Uo(KWVo%nZ0lnA%;9@eoOqmq8J+4G`{kRPy zWBj#{+#Lcd1$r?m;jJ-k^VPh{)s4!#Q)lH?fwwauuWE5V#oy9V{5!c1HH@Gr6GehQ zQS4A}mHQ|}LZN#LdoIas8VZY`C$Uf@w`nAG`Z}v5d=3LW8VP+EGifk1<{@az*P$`r zfKziAPR*NeYTklV^ERBCBXDZofm3r7PR%hmHSf}3_i-BSeh*H~`*3PLpqXxPAGuG` zE$$C#wfiI5;Qp94xj&%?-JjA9_bJ-#{*0b+pN6(P18w;^9d&;Jr{*l3c7I7L7aBP0(@$NtP2KS$Qllw28=f23d8pLZ1=6ei{A23q*Q6rW28V=rXr16VJIv+MN z_?S_GPZ}lpGouurGfMN1Mj8IyD66qiUUL}Pn$ys=u;J0_8h)*z5z^Wj5v{XPN$X)$ z)%qCKwE;#gZLCpOn`$)B78{MUWkwV2Hlw+Ak8zpysByWr-)N`3V06@u8eO#0MtAK? z;|lFtqmTBZ(JzIJfhi7SkZ5)!B9vybHM@2$78ym+v>J27Fbg}D`PGivj+pjF%n=)` zZBfY-nQ3r0oFbv`nV_vjWF+)GGquI22MB%70&NcT`6qD1R%;XCoJn8B25pS0LzSin z!HFSk7NGCZ`XC;Xw8}GD2gPPlj$Xs?!`slvikSvlU36Fohs6mk2gwvkt9+$-Rg8q0 z23iHUWYRYKyH*M=8K#nR2LFY2Sk$J#T=6S9HR=K*=H_n|uZ5c{@h5;x2!};2J`Tu) z^i|{nz99)4FW4%cMv_GODte%Sbsetxc?hN|e2HrT9>w>d9rhEXRqo+Ys)r(k=Z2^r z3X}Ju7h@xSFAPS{cB+RWf)?0Dd_S&5F)*?YZ^mmYVj!h2E+|EObsRr^@_0 zmr8jUt5F3>6^Hhx<9e#9Y}IYjFTsCMwPc6V_9HK4xs-!x;o9t9O)zv;+^EbR#w5tN zbjM^#)d1pVfiGa$tjF*}amBi5C30Z#ZYXN;knv9;nTuF4!QxGcTfBl!3Dx>gkY;ef znJcSm4qQzg!P7xUI6 z*Yj@P-&FKtQ+VP;7s?r~)~LL=zUUf+H(VDPBitcsRoC*w9i9b}rZVt?L3H6nxgX^! zOyUtV0qvN7{{W`wzn{+#5v-1VGaje9@v+0!7XQLJrCP_iKbwfqYS^ z6PWS^!!WjJVtf}Bfil*Es8I$U{G;~DRfLg5k*$)Db2OF5T|vzOyZL@@72G*y=2f+S zvzk%O-WBvg!tu|+9bQ`9sECQxFtlal4js$tR?2b+3ThMt12v?lBe4%4xlos!QnN@k zl7@yQRqT>64l1nI%NI7A@y5vfB&36~xVlmJw-xi#Kh+$Zs5wm5LrJeh`5|E-kRpFF zq$yG;Hu9ZS65vA0@T%F+#L9okkir(KurUY9TXehB1p47_(`)F^5(gb7{RX zk2V?eX^XLdb{Gq3kFkiJF&5Jc#u9qXxS8HImePC1E%d3ejLsU%={w_A`psBD7mbzd zFmB^g#wspv+|F)eHJip7u41g^8pa)*YpmmD#+}^SSkE1e4cyJRi~AUN^Hs(@Jkr?6 z6O4O#sb(P-f29<`;3SAfbj?)GPdzs#&$k# zJjx#$yZCeCasJwPg3lZK_-Er;nB?cdRP%yn8ZT>=j90Z>;|;Be@s`%oct>kvysPy# z-q-pYC$%xg$Jzwrls4HoqfIl;YBPPywRK2ho`I>Jp{;=VJ_A#|KwAv+eFiy`<)}H_igzgkLp~LTTwo-dw6O@s z1gp3MhFqExmU7yPxVc7Wl6&!}pL59Zr4&`92b21yw|Gy#alFYzdXR>{>c?q?Lk#X_JU zXTel2N899GFxr*SD0w~bkjr4I@8xS@`j?^waw|qAeTC0l6;q=JLY^>tm=AC#Oo(0u zhKoadIp2%dR)>?3hQC)GNHwuscPJvO52!}Wq=PaeW{x$6iAEL0`lmo_>L!77!YabV zNGarHgq-yoKoRZ|FGx*C`K&2nWG1qdfRA_TynnUl~7{E|22oQE^~ZYveSt zl^xAiX{qcK%n5dY>K4s2*}GHA!TP4789()sH62y!R_$m1v%G@|BRN2oW6w!(%u|mi z;dXb*Od~5xF3j4SvY^;_u)qyFhsHGWL@C=-nS7oqWO}MnB~LZV@#Ih)Pj$-m)S#xG zn$*fui#mB~Q%_GF>g%aXgFW?VxTiji^E9Bzo?N=o(~#zP8qs1;V_NRXqt%`!bhoD| zZT2*y?Vjee%hQ6M_Ozsfp3CTvrxhLcw5E4Fm(%;6HuQ<7EuHnWqw}8j^qZ#x{pIP% zsh&=p>FLb6rwa!>-MNP63a;bn!?~V*+{81GTY3g_chA+_+cSbkct-OW&sd(|8PAhF zV3zhw=9!*+UhcV(pYhD#H$1cXh{u|NY2owUu@x)tiC2dnLkuL-lyi7%ygIZgUL9IX z3!u2bMEa8l~QKQ_4HJ z13wtUYH=-37;I(%v6rgatlQ?5kP8FE`37keSn+T-IJdMg+wgF-*5SviQ6+->rsS1N zN*EW2QH=yCTAV0FHL@J|SqYJ&usfz8ENVcG0)7=hSDd91QXq;-)L90`Ha#_ld@0pvycfsl5l|96hV3x94^m z=vhryd)Cl3p0#wn=MIP6BCt2^b0M(QB0xB zkiwOssSF0cl z>R_j2rt>2LWdP_@t08B)i5h)XULEM0i#gDZ@r95tq0bWz^wNJg&@%8Zc8-%UW&hpz zt`bjT3Y}Cl9fMS7dvbq4GRjKLa4I(BDLANcWMTrjz+7pN@t}V0c>@RWFb?9IIEZiI zAihntJV&UZ=N)S1ISN~F3g+j=gZLf};`=y=AK)OKpzAy*X^Q7Vn&J6~7I@$; zc|M`rJfG4Xp3}6&^9AkkoP!)G4Jp8_KB!z?Ie2$N3rnL;Z|Kodcs31v8c>MUUdWF@$0*g=$@HBNQc(qM8Ne#@3n^m9*td zAw{yR=z(I93mK=jIpIJp|Jwr<_oQ~G6hBT4975^Ppjx{mwHAkz{3kQjRJFT6F)6YM zFW67L4)S@^$n>UDC2t1hcuP1uB_jr8g?*6X3` zynedJ8>0KYVYRQ;T(!;deO(gY*ZH>Xg)*@CxawfYx`oVWNaNMuDw(S`IzCtJN|c1} z!@i1@3#rLn=m&Zo7|OuI8rs3bo1m(-KsEA;@@AKfN<8@iz-rUeOeID`DlUV&$u0<#Vv| z)v@w5sJ6Ez<$7yTQ*Ui*<*i5Ey}5Liw=s?J0zl|(L5sYXsnxcqJr>7T``UP?{V1&V zQt@;!2~CJ1QqW!B6Y?ZD@TS1@3q1rp9cl}eE-X5-#u3GD*06xuBL+4>aDjhlx(B}p zmU&&#W!8dtGXe0QO<3kT;2~7JkFu0s4msaCeyDP>#I=gspt7 zV0pC%;XL3O_4J$I)^!N~RtemtPP+ueKf#12L;RJ56oIWyca}^@z!Yqwf_i(~U>n_(S+yHgi$59;OZN&UT7&|q&b8t(0lE$u@Sy;ove z`_fErKU(1JPq%mn&?@gB+TuF7GHh=p93^c*oH(?{)Nn_j>xmdxJUxRx7~S z_z`$LE^sf$1gumKgR73^9o@q4_}uxmGA*JfbXW>Q5jVtnsxs_&gcjl6TIwRaxW-h8ON1=zL4 z)YrR|26~s%Q142pzg24WEvk!A@zw7XU;VaN{ZAl(?a|M-7-fJI7##y`6(t~mz2Mm2 zg6Vt~)kQ4ZEhH__!&r?}Vx&)G9^_bc4J5Y->$54oK92kQWjh|oc5F?{9KOf#Q0IcL zR~CPcyle6G?!?#HpgyXVaIX~ms1@-y<~p|FR<<+t5w;io2#zDzpa@|12{V8lkH$Yj zOtNEM(SL>>E8Me@1&XkgkIL;%8CM;ElHHD-cI1#@WJu<_gpr{l2mDYsx1?OlMKgz7 z%ab3P71w5Gm$K1m*H(4ap>0UI>X5B2Z)C`WIDbcB#%$rX7UDwO^^u!?NEnon2Lp3m z_UF+Mi~S|c#Joc!nk7>3ge*CzAiUZUHG*fk0Whw?sn|S3l~?FE@)%XlTzZU zh3VgH|8rvEYC)WXHo$y6D=BJ1GvMUpd_y7xuS^uEM~_hk-wU*SsL zL!9G%m1}!n<0jtM`Eu_Y+{t^GyL;c{KHj%@sP}Ci={>@eyzlTd?@^xZJ;t|q-{n=_ z<9w(0J-*NTK0o9=$=kgj^RwPle9(J_U-6#h_q<>6hu&}bl=nP;=lzKZxyw;)47A!TsHv*jhjQ%ETG87y}L@kx>GPkqd|gH~@jipY0@)?_pOMhMpPE8c=2rw+V zsfOUXOQxHuUJTt7d|o)eaC`R^U9z;sFyWP99QP*J=cnUKR-D_5pilb0;GsP9caH9P z<)-c8WohS!v(wj%Yh33Orxnh(FkT4 zSz^+%jVxu-@I&2Pr(DZLMqIAt$q&tPi>XT6rq(T{)`OZfOs!Y$WJE-kJcygxe=bJ5 zr5rsl*R;Q7Vc?b&q=(4OFu|M2gOL~-Ay!vCtcb6KI-lyDuT)F~t$5^$_5EXwo-ky^ z!nKl%#<7Mq`E{{~&I$<@OV2KB?400anQVaKD&MIm{#r3brYWuoTuCF__@b#d! zzMjqY&2y=kbg4~_O+NfUj2X{xUu&GGf8#XfX}`UcW!-&M51H;5ka4W@0r zA+*Ogl%DflO)vR|(VM>E^sa9No%D^Q&wQikoNqLJ@4JS6^^IZjA&Br@%bC7$toz1u zz&C*_`mW>ZzKPtxH;J42uIE<1$=tzr19$aJ;oiP{9^{+KqkPkNyzfSy?3>Qhd^hn- z-wa;jo5{EPX7M`TY~JXb$B+6J@-E*J-s`)CU-8|_Z}@KGBfiyq+;<0`^sVQweRuO8 zzI!$H-LIwjwrHh%4{2`SHm!`O8|ixyX7m+p zy6-h@sqe6Mhwp7|tM90`&39aT%=dw|$9Gbh)y0;sh?~_7cCY|^Rje+dEsNzwa$$^i z!F));*Y4VG3qx#mZC|0GYa6CVTHesLjao$pO21dC;I0IaTit1K$~l&p~KQ_EsdBOGSmoH(D$Ev_rSKwjTTB|3nSThWR@@!Fqk}8ucd@v{_6Aa4!VhqY9 z0%EO^M8LE1is3}C6*E#JqpfU7*Sri{u@;>_G(_eI4KqrpOiKxsX|aD92;(@C$6*a5 zqF3xE(Zge5e@jczrVNHE!oai?^OD-q{++VY(NnEaIisvHFZiJ@tQ79zXsJtdPKyC5 zm|}|T~YT4iSpz8C`pRHm|!U1i6T#&hDESFJ$VR@z0DO?0eKwq zeF9be8C3OYsOmFR(f2u3^L;_}eP^k$?@OrabJX7V6?OA{O?`de&|u%UG}8ASP4InB zQ+(&?Cf^TG)j!fg-%oUl?`K-&`vt1{SE%aWXov3tJ?Z-wRQ2!lvhNQ%?E90B`u?I1 zeHZDppXi*Q>AYW~U;HU_(Vxm`eg~KKr*W1)ojv{x4*5%PWq(Po<1fW|{?dGzzYKTs zm*t-R3f$kH#Y6nrJi_ncYy5s5=f|Khe}w1yEAb+KRldbvoj3Sv@xA`Kywl%+cl#Uh zOa3POn!h=}<-d%N`7h@W{OEu6cjRCFUHA`wcddlKr&6z(GT>V)X{%TM)>f}j9ab); zF~3cVv{r~5TVP~bJrn~_Qs4tE$t2E(f6AQ6bYcOoJB(SjgDdv#C#8g3&yu`WdiXxKB<%Ipw{*!s%b9HL-cbF zzo(;r>X1^0ZtjFJ>vyFFpeQu(OeQRXszRn+dz=0=0f!h z5G9XDuwkjgcxeqNl+*|mc{=8`AgaJWbVuMHMxQ{(S;@T@i|R7I4y!8_k!1>wDp6t#g$V*Xr;6i|Wh!glJx=?ppoR9%8Pvq}I+5Udy^Yp-`E-kanjAr7 z*wq)dk06?^ZC;jZV-~&=fO$4;@K6NK7H#kqNV!T?OFo%3L9iWQMOI&pY+^-~Zf%lC zAROBe5C~fw!d8&-N-_J;7w26{Ad3?A;ZS@Z3gWu|63sb4GEyV??-QN-XJF-LW98>y z<>yjG|2(SZpHDUY3#g%gAvNA3kyw3;==>_IxkYr|Jx+AqQF&TIbl$WG(K+5z1m{vj=dTrAZ`7Yt z)yMfPVZC3EulFT_LKr^)Ci*o(EDZoIf=!DUqyU+m)WcFV8+slPi8R3{|D1!{lqgWj z+HS|;EdF3GpWH%@yyTLylo6B5$|_BsTvkrb7#4tNMVh3}w46V-(s49}U?KeXU{5z; zPw&H?-VbToOga7ssFr^VHSlkxCVr&k{10JIAEsXZN9Zd5HX82VPGkH?$@!6z^Y5hD z{wHVwqQ9m7J+#9A4Bg{@j_&gxq+R}(Xs`bez2bkJ-t)gnANm11@E=tRexoD=k#>sB zx~G@p(sv*xeL1u@=3h6U?Fj$pV5^#-ZFCo)fx?P(59Cm4%AHUn7Ec@VJ8>^v5E(Qa zx6%b6tVlA=UMMAIqfl}y9+gt6w!V_mX;j+wC@sXFWN+|am=wy$QTkXU7KC+Bq0paj z1m7xph``#FfzL+NKH(6(9X~`W^Z!n^;~2ndlKDph<~W8FIF2_jMERYd7UPi~1w2w0(%3`2@T28FbtkwUX7Wza3l2ibw}qwSsDR^*kj>wNT8kpsAvt03*!) zi^A!S`gWoX9_@um2)l6=1avR%&Tb{6w{iov6x49(@V~fkxG-F3r_8;d|A^V_BP2kidJ< zomd|yO4i1wD%UNn)DjG^c3---8ONX@Syk(kMb`;7LbMf8IANVWjIWd9<9_9URQz#| z08VWfsMah(s z!;<0#hFYYJNJ~w(`kj$}Dt4$-zEy?sh&*|VQyc7}Hben176iap5U7A7mPM5U*;Fmy zq?!R2)eGpU5kT@F(2KVPuH?r8{drH|Dt`L)0`{8r#vJ{Fk3 zX9AP>T;K-&E-;mU3QX5HFhkS?ymcilwwi!9Z_|-{8Z$hN`4AwbQUz|s7HU70I zcfc8a3^9ldj=mC+hs9+yir2GH?`41oVOcElxQQ3WB9A3JO(FD4(F&e~Ry&zhc^8iW znd1ZaL|ee?`voF}vb3FhVO;b|L>^CbTO@G=$$yYrfDu93sZU@;^Xk+RNbHo6x6X_gjy8DUCBAp|%D*t4Ms;js-mHt9ZBg2epqIqvVjIA4x);AEVEJ5Va6jbkb z;1wP;kMBq7CJl;ERLu}7hZv*>`C^7qN){4lSSc5T8wDUf6^NWoPc5k)sBlG$XPhif zl%_Rf4}k~FXRgY!z}%cIs>k?Mthb<2wkPPZFO&6HOy2(|YS$w7AUtt=C47UJ>Q?ga zE3w5B3MQB@MJE|Rk}WVFGPi)DfrV5xu!!mg7DLvSP>aCLba`MY2T&m6@|JB-`!ti?pA0 zexpbp#_D}=jABirApNuH0&lSEeZV%@bb;+-^}cHXF1i_KLFfXTDp(!{pHnWE2A0&q zkW^RHfY;j?lGx4{+U@j|*|Omlx6RkZ?C^Z-unf~ojBUP2-eEWp$d{#PyHnO;_>9Ac zu;p<9iNpraOi)vsG+^zdD3gKfxp^g$yUmIY$WX9e16$M!uzjZnI89@vBJ+e;k-PeNTjO}zs9v3&<3 znC1lDriFob)K-nOzHWT05aU2t8M6r_#`y$ZLlqhv^Kt6}va=I@NGde~sj_5~9n_pU z&;oRzror27O$#CX=@>ZG3~*jiHQlKpqE5k0ir7|G8`O>ooZIG^#)GE1Yu@qf?A%vZZQVLnef`wNu zU*I?v{sS!h2`v0csu=hXcIqRl9r&1X1D{aSz-QDl@HrO$OX?B$n)(F3qhSGyTGa|7 zhsPJVeSCpi#}>F6@P8}U0M9Ww{y$kwyB*$Ewn$$snp_|V@eiIpvKY4)174` zYZ|9nD%jiQf=dX1Ry6=x)xZVp>%XwCzf-NiAMii^giibm{s(APgG60}Ojiaq8Wc>S z;lWfI8+6ch!8FPbrqj$|1}zGfpyk1mv?hqg^l6?;Jh>j zm5Bf^!DC1V5Limqu>&yji(pY<`+!3x2YBeA9%qZSK{Ac2o z(z{m*ubTnSKy~pUD``=wtfBEh)vtl=-vB7BT(c1L4HbfZgN>lKn#V+}Rdi~1n&E;~ z!+>eUKZK|-tv?q%pggx2#rsQ<1NvW7yqF92Ust?pbX&n0QHnR1OWDE3V zpB4rO{;w%s*=JF_;7JCF&7~A?g6jCK=+4kD*cr6lQ||=TaiRE~iK|`dev?ox4@#sN zV(rx3j^7J3Z*lPe<;toAhhUwDVV#F#okvi`;7F<#97VN)qp5!I8p;cfp%%e$)H-+_ zwF_R4b+$085*p(J#$~2)T*uar>)4!_j?IG)Dap}PwK9eZrkju>Zjz9|Rtti2`d87_ zNSlH`RT-h|(S+5wSj=h^gtBp1etbP(iV(@AA^VV7QlO_P>+Klv(t6bX4WXMxtqXM1 zs@8=c>gJY~Yq=JDCFno?6>>33S-#9Vxm~P z0Eig2t(ve5WQHLTZCAvq<>f(7+yIxTrVo4ZdAz&%r95Ab%;WhyXLlNkIk3s`KF`7< zmIaDfH#cN|PJtrgYljU}eQo?O#4zI{4$R#cae$kg+z9Sqt)globINf6GNSFjq7lHC zN1Q$;N8Y!m+&q|99EhW+TUN*|DBkdtDr|UE3zyXN@(Vh*go9`LrK@>PXM#)=J0!Uf z5s%^oh(jFn1>%^WJR?~#5bNQjj~0O?bVdseUoRl!i7P!;%sWBAnS+2c2LWde&ZJ7g zS(Fo;O?85EC^tBlng-`ltKfX<5?nxif(z-Y;366pTuftvOK3vyW||sYO0$Bu(1PGH zx+S=rRt0aRb-@)dj4SEE;BB-cxQd<(-cHX3SJTVEHFP+*mW~GRpcBD$bSii!oei#s zk=#JP1@EGZ!Miylcn_BgZe&;RUiJq!aWr@zR}J3JwS$|vaqt0d5!}LUf?K&m@Imew ze2Du6ALhZqM|fm#8&3#s=PAKQ`KI6wo)g^3OM{Q`ir_9@8+@Ga4nDz~gS&ZKa1ZYe z?&YV0Px8Uw(|jbjpWh80;1j_Y`E2kN{yF%X<_I3vN(SH7Ji(({FnC;x20zfM20zql z20zj21wYeT2S3-^2fx(11i#k$2fx$C1b@&b1b^0U3jU_e3I47v4F07p4Y9T&l&WnE zA#WEdsXY-YqdgVM)DDHRw8J5n_D;wxst}!`O3&CzP1|cLHBC6zRoAKZV9YbGgNC9Q zCn+WnTeY87noMVtBtRd8-2%=>_F2n^`4>lE44{|G@f?CEZ6Hj&be+!9dc)L9*Xb=< zd&Rd?npSC-A$*hWs*M`v-6I`P7Hm8@fJRE!=?*Q5bigUNmM?2%RKc=59oEtSsTAg& z6MO-GSqP0!@ec_2QGNtv@fqMZ1l{o);FwkMcU>r59zzjRk^trSMc_A!AEnFXKzB6e^=Qdo19V3lzLn3VIRKjM2{L3EOcdaLAVZeHL_xIf zk573Je=P*O#|Sjy&jM(23XmRO;n^^+1qHxnJR3nKVSO1zt&w9P%vc!KXh4BAN-J?`YZTL_|8w+?wt6lg ziLZA-3HGV*a7qj5Q9)SV3a3#M8tb9??RPDlQMIpvEl%<#FhvG9 zThonfxjTe`mg=sob+MGi@@AleKSw=**yCx~Ee~kvVJOl{+3yBkeCtzz_U2YV4uRyZ zo9h=6oD>-_ClhpnibyW4bY95t2%U3UnLM+gN@gY{W>xn{azLY!v68;Ym#}}j6vXn2 zGTJBFh$OU#vM-8<(wUV2hD`>}7cnggD=%4E!2?crs!l*;5UjCsMhK5kl0%ko4d#Hw zN^(F8bR`P;C_5A+UnoRo$fQc4Fx3o2sD3C)d7+BbI#h`|hALC{P!+l|RFwvWs?qRJ z4vh^}r-`8&lpm@|vqRus57nj>p*plSRF^h}>d}@^ecBdkK#zxVXGQYRUGLc!m1+Pb0kxwAj6WHD&J_@xz z2ie`VjOlz(eo*Wf{3)C)Ws&E_>^VGJjvnVNQ1K<8*!KbEb{hbJ;A!Et3O`?gj_?xn zRWF5NKf$vVfG-;=ewqUCIl)Cg0%~6r`=3y?pW*#BO;29WEbQcB=1$iMIOR0i^Lm`P$ zq1b_jSN{ABYR=qzGVRQ;g;0qpWHlB9)8v(Uj+Ib_)gY#*Rp_b^@QNEni0QQ&=_xxf zeJEaMMFb0_Y$@wF-5IoV*`nGxwJ){}5F-8{K|7Z#MmyUR%6W7#buQ)ari#`{ld@JK ztpWV1_s`)Eix{+>xc*ecU=)7plp?Zm@cZ8ZQz_>-1>oCtb{xmm|IZYDuU!5 zB3A(H156qZMgl^YCB-w~y2T&Yb8w$B0^WZ4JU4E$a}DI=&gXjUJWtUYmE>wL=p(;S z$7FJCN+ov+O}tYMckv*)BK%v4iZlsO9mmy8ck1#<+@cnZgcl@%>0)g|V2y1GrHFx> zAq?CMVc=$H3snqZ;ARK|H$x9WDLzasLyu6q&^GEC+D^SfkJ5n94k*Q)P>PSy@5a!R^g!q-D8+sBSmxF1UKIeIVjJbf5C z0L6F^O7R8yDfA-!9(sv6^fIT1Ug0vKLr{#bvmSbry`dwV6FSDVL+^2e&OrZ9TEk#--UziOlY!dd8Sz)ss4L$Be^m${ z27pLO%2&Whz+029{1V6_O+ZON(pA%WFjN>?MQJYgMY>8x`z--nZUuZqnIU``l2oG1 zHo{OzX{j92U^P@*P$pn?CfZYlbm{=RDMmWQ<&;{>f?CVagflW5#1!Aahg}0N^(U|g zui=$YX1`;Gu;7w)Xp48C*3Q67ErU{(C{Y7YyO#mUvq5r$R4Yz}M39`2D;47w$~6lh zr#fyP!JC6@RD8m?69|=qf0oJtMos~<()6PGCgn1$aTfH=s04lEE~0O2G{nYcF&`(1 zdm`>$IV4G2tx=kqbym}Mh*XLKWhta`GvHp;klRB!*6nW1TZoq5@|-|(u`xI9P!%QR zkN?5K>d5|s@xr?Ra^cUFmb*is@t3ox^Q+?2QTD)Hq|nn)WCF6o~cuF(@pJ6gSwg?>ScQA zDiiGcrk}=|0h(wADc=my4AZ2AW|)?l5xU)s(p_dny5Fos51EzeQL_r|HLKEovl_i< z=FnlYIvq1>&`Gl&V0f*zP#4%q@{IlWwP4+$iRaG=Luwkx&&zx zA+yrbiH6)$RIvCZd{1egK9nF>-XekpVM)NR*vTmb7JFdwz(x?O5~duLT9gQuaB-k> z3oJw^6>8V!Wh8|PQtedX}zjLvs){H3w5Ga|pFJhvN8NO;?!1sGm8U2AiX3 zyg7y@nd5MLucHUd>uI++g$|n2=oNFiI$i^I#wHvPryZW;U;$sdnS*xkUtySp-Lplc4A%x%^HBpkoRZcfchz0__NEWWBOn!rYw zbFujIu=w+__zST33$gf%sIj@2E;pA@2lHm?W-g;a<_fynTt%bI)oO9Ay!Yt%;&zTN zZoAmxHiq=pLpmb`1zQ7)wg8JOi)Q7$+t_(;O;Qos&9YeVWkW?5$#D%{XeMPE%)ecv zq`WtB(hggt7obqZyS1+>2jM&s#oh#k|Cpe9M&SV#?h1TN}t6K#o0zp`3L55I1G^I6cFg_zhKuV!~j01Bqyu zGTpk%lDl*x(@ISQgn&NHdL~Ug>R=AOS;}#xI+91%tGGQ?(gzOcjAXp6$|)p|p(!Ry zonMrxHbHSDw;m>V%I-w_=_#yylBsLst@zWE`D){G0V{)9U}!tcHa9>n?t)z04Y|07 za?FiX$Gn$v%}r2B_fZ@3e(G#)rk>^lG{D>f+1N_gm=8iBJw(&YhiR7i2<+)L*i%eW zHy@=t%^h^Fxs$e+Y5K!_ zhEvRExwN^Tv&`q%FrVjud4MaM2f3#C0@pWRXp*)Ic;xkXfXCqGXXQQ=nJ10`$ShRm`asV~W}zm!XTHGu`M4RdX=icG&zGZhQ1E2|z7ZkHdbs&2vw-Hm zITTWQa*}f7Z;Iy=;6fAvwhm%*B+Tt-=cX_~P)RQ@n8 zty6Xwh|RE<%&?Cth5b}59H3g^AT8)@BIvLKT zQ{jemHk?PlhMRFZ4w4?mq^&R}ZG}56@8{Zha(d_)y&ch3?l7(3l|0MoU-Y8G%q z6;E5PJ_PJ{>Z+uyQc)>GFrNwyM)XvIlvOTX$_h(TQV{*`4+X}NFPB&99}asApeDsz z9P>-fz*R}Hg3~z?ULJ*q;&cwj=^TO6Ig+Y|M^T;dXq?PzsA+f%wF-}=_Tg)BI>%A3 z@ObJUofMi8LWRnP!IbX?gfYS{0r_cZ6rtUEz83P$|46euYRoI+ma(twWHlSE*8_+AZ0X4C-J0U+Qz=vK&yRa2Vp;8lCklG0w(3L9FDU`)6glJGLajeZy>BhT6 zHKuk3NItfwFgL{3W#wpQDc9Z>f9uJL(hu9v1c&tTFOK z;Xmm5@I{)6W@FJ&R`b=g_&Q$|U+2E@b?y{j=Qi2v5#U&!!uC{Al^lwo1uT+5zDNl&BPFR)q!d+) zl%{%-GSo0qmYPP&QL9KMb&8ay9+3*vJCa2sB07zWxas;ZNEKQg z$)P(VHPnt+?ak}sJ2ET2BR9r&q$zsm?c`9uSaPTnVCAP$Uct%lfito=^#V@*IQ$o$ zXN%l5s&;9pjgkgEIm;A;ltbxh4P>KGD^(sqZZR9xJSGTJ6E>>h-)@vx0nCz3&56+> zi6K}Hcpr%O043l_&@WAkIr^%xT=YwRA&6Olo>82VkvdrY`dIx2Sp8hAenZNMG@?3@ z#*`Pyqn42-)FIN8x8sxcP07Gv@stkb2#nNJc;Y)H2Ru(Y6{rEWz2>;YoMObtbG7+)P{lqH} zkDn5V!wS|~>6%CntaUG}b#Dqs`cUP_l~g^_mug4)QEsF^HHi$M%OV4*ZR9GP_CYx9 zLuqhiIE{^rqU$1KXhvilEsIP@So7uaH3#Dzo5ax6qheY0>R?i^iFEraQ<@6hF75h4 zq}u~#^%Nf2sDBwk*|wl{9Da@Ha;sAxP7Rb!i=wNZCgrNCNZP%caF$!fSG}O`GTzN% zhlPb%_3f)FZMRQ&^(8dKXeD)vgy&cGZxrn!|9{J=X;iQWu2)C}&yxKyL9rRn=iLhI zDp)n^7M&|;|90VFl7>&*iGbW)$i*nhn9u|JBbR#O!f*}rHU*eo1zp{T(N_SdHWe6a zS4_V$B|{v=AWFbhN65`x0IBL2ag}l}hF?{%9#qbe`^`A)S_|luo_STIYW{aKs}$96 za(n&%HX&!MW{x=J9|uMX)JTzz3DhWGF>xAzsOAf;SbhO8RR&f~H>%)TTw>9sI1mie z*F$2bKw|Tu9j8*2$TVoi8>vxbIyH~nMC~FosB2^&S{Gx-)L(i-)kEpKWg_ze$gI?T+kkl z{GsiLT-2V3YT8p#hqgbOp}i0-r5%cv5zWRMERAAoHf_6YO#nun4M!ghW7?*8j&U8V zi4^=B0gNj22q^e#^PuAd0@@WhzeRWji1xLi3ZM$2eXTz-i$aPpL+gTip>TQ5*V-bp zC|sT^wZ^CyN{;bPk5vE+C=aT! z-_fNiT%PapPslOOL5}e={sLuwaCrijdP19lYXVC>g3O|Dd1mrcnsh7b$QM3>-zIKAJ2NY0cJs+#cRFX9L$~8K*%<{0R5^m5V9vvsvaqRm)&e0&$Q=7! z6+XkT+iA|bQ6I9fP=G_l*al#EfJ`U~R6vr&GD@wA8YQhHTmeb3yqRE>S{GxK5{s!o z7{Tt-{+LR(lP$sl;HV*;Woc3z!CXNpqz*yPWh$Z&dM&R6e*84AByLXveAFff-Z4~j z;2-lXPDet%FCLmtF9bTx(q&N}wTt?xOEf^eqd^)F4bkwZNn@g68Xt|&q-d0GidLqj(Q33lT7$MmYty!9 zJ$fvfOZ%gZ>4j)hIuva|hocsGzmnL$o`yU$nhRIuiWDSQunuy3|C4D5&_OpyH2$ia!b}{%9x4 ziFT$sQBd(myHc}gH)o4T}z->!O3`hUkz4M{r7fQ~Jj@rFY!vZf%%w}3&NiY{o1>@yNbJSSm6 zJO9&y3f52@?^qL8F~wWEpbE)r3qTO=I)YdhcU>WJav!H=Ex?CMa4S8aX#SMDK62Bq zQCUC6?Ug}D`vxs zHuV&#kOF!=-B}{>C=?ID7N@3c;R2_#T!OAhuAmA_#&jb~ZiKZj?!M3gH2YF?IL_86 zoUPF~Ti4)hjltO(i?ekt?okMp_r0PMe}P(ZkUhP!uz1Z*&$t6P-;5qI2kt=v+D)okt%O1;ZhjQcij8V3Vc{tH6b{)lIAqUKIJ%!IN1vnW(dTiR*FZgU|PXuq^RYwD4L>*$xID%!B@PZ=vPcdE`~hNJZ#b9qdG= z9qic+k@n9;sjDq`2!cOAoMXYCj($ggpL^m$EcgR6c9yV*y3zJ%JtOI7LwZe8dw?6q z(O2DEN?FC~J&B4XBT4I^Ph_%+?2`LL6q{&4w|lXjhs9z!oS>1OEHjAno$iFcteAWX z6xX-NJ5%%xoT;~Prrw6)Is(P@4iwi>oT+0_T<=109j8{&_o!3!eHg|MsBiQH4UV3q z5z!Cn+UQ3xjvvFb`Gn?1KcywnQ?w%b8Lf?;rn{qOXiM~S+8)KwujpBNHu@#JoOASA z^eZ|N{hCfjzk%ZVmcEI82gUV0{TV&asnH*}Wb{Wa7yXH|qrY+_`Y)~={gbO#B(762 zg_~DQ`#-#W2bfdU*7jN_Qz!!rFvAd#;K<{l zjv73{QHw8j6!PVcx?Jk0&odp3c#)$CuXi-(Ee;oNb9i~D!_N;nLj0IR&E&JddLhB4 zZtzyi$ZfEU+)B&HEw+r@JZk~uOc*(-pqn=F~v~?!v`i% zu=V5vYayd}dtkZ51lFd07A-zc_6#k+PeS~+i7G|*sW8cp!Xmef8 zqDQpZ=rq`s-VapVJ5{J&l37G(rz|6)5lJ+JnJ(VcQE7*nN-(+*Vj)o`goQ+s&{Tb5 zbmRu7+YVb4#!&#x=O)>XA(?H*>ASI}CM&4J-jWZI;UlVxw&mu(pT??47$o!+ zwu4C+X7hU#P5$1J>gMwr_8Ni+%eU81_6AQz%PZ&GYe@D2=yJ8JIB6K@@lRn{j9Mc5 zn4p*exB#&i-cZ|;S}A5B75bpU)QqFZYH+N=K1pQ=it;NOkJDn99pE`|fakygo&!f~ z@;KU1*wL2GbhM*3j`q~m(Sdq7I#Pc}CmQPLOd}j!XuP8%CW7$8#v!+fr# zpY1IDY!%nfFnbVCtL`&5i+7*9a-q`2Z0d#08&TxmImm2&RF#NanoQpy^bq}=4*zG2 z%FY1?hg2e};QQVJ#zD4DE~6Kb1I>nhuBH8WCN+u8^a!-_AoOzwe(Q3)hEZ9%6IwYJ z`uRRA#ZAz=nsgF%^P6nlp`Q|PbX9bZhfNGKqKZsOyP1z0dS>e(3I%O4@^E~F8y=QH zm41cW1{{FzNm8YAGpmxUS4E(q_Fic%Owoq=7&TL@M_XEgp#X{DbIpIPSok$xRnX17 zvQ7zJHi76&9|4FISGVVhrq!_LL32v*1bESWd|$pGIx%8UO*Sh@W>HI?$>&-@acyG= zVFyD0O655tfZMDj8;b~u!Y^DV33d=q~6 z02PDC16W}Pu)+>tg&n{OJFX+2V?Ko(zzREVpbm}&)ZK9-^>HkuA&x~f(y^GvIhN4H zj-@osv5d+bV0Lq$GUixG%N?s|jpHWTyQ$L81xpww0lieRz!Wwz*)x8>%$C5{<-wka*k5 zbTRy?5U|RU<<`*kgV5n?S%=>h9bU-I;dkfa9jyU2P&B+cZ9*mR5VXDq_TJgly5)T6 z_m5cl>B76+4?D3E2}mt^1wU6tim=Q8%-XW~u7EzKH#K+8IQZBv=q2EumH@kWoSugM zZ-bBh52hW2)vm76{~=2Mzb3nhY?57+#$tA>DwhFqxDielgXQCe1P^{#?7?r;Q(1)O zic}jG;lgx_fZ}Bq{y5?@k}Sf6%oahMnJ#T+vknJ0^?$j7xmJff1m|P^jn2xpWdQl& zJIwzNwl60%a6Y>KZ>SKjZibUh+TilE2b+#~<{LljyM1M#r2vbkbRw zesJc|FU}hDr?VDUbz;kuvo1Gs)>GQD#JD<3TWqGb(4TQ_X$e_0_bh*+QfwKkcn|s@ zRro>hT2j}Ob+=DJZjC+5<*KeHdzN=udzNpv_AGCVd%PPEbsoZZ%AVz=_`mE~7XKAh z^}nT5JxPA0vK)uZnmd(6K$Es9=S)nO&8$<9P4GTz(InZNlvy?{qz|TNA)kFpvP|!j zj&04b?$i8YM1L0hnT*m*5n@&BwivE9CV|_2e(h6l)gNN-nLT99Ejj zOrVm_RC874e5A}6=X`oZ5bDcgKDrc0|Ib*cN*@Ct^ zi|HQcne?EuB|YkFMb9`(=w)YX=x`hQ$k~=YceaBbx2IFi4)m+DBeSy;=Q=xcb!Qi@ z?d;0+oZYyYvpaj8Jvi(S+)yvmerQFe{m^Q~?MFb%23B9jc4NTR+z$_z1uQUjx5H0@ z+MG|qrU(LfBEO)@ak=oK_rNB$q-&*8A1?u7uY^R^)EXEb+_{-Nd6jX=DbCD z41>D6dHlwk5vNgi=S)d|16naITflRlC%u8otT&J--<@WG&}ld7YMS)t0F~kaCCP<7 zBge=!3@=RbsJvQJ5ef*_gvS+EMn3|pJJ8Sr<#tuYCy-|{2^dkj;Hiv;ongSVq{3)n zl_WbQQG01&UeYU;<$x}L@X@&u=eGrxV=FAjt>kdtMqcObupHZ{rSlHz?A%U0oI9wG z^G+J<+({#xyJ)=gE}HDTo2EMNp{t$u(tPKAwAi_uRyyyewa#+d;CvX?<5Ak?+($c| zPtv{4XJA2|r>C4R(d*7vVLjfU&zuG^tFh4jbjt^%&)$Qua~Tn(Yy!S1z6p3RG-3%# z*xB&w*TZwmL=H;w@Z3^!no3iEk`oODT^FiAQdnP1gOxT`fp+%O+*z`GU@bUCWF7~7 zcIDS|Q3$`&Txc&LXnaK^dU`u0AB7g6wo^sLo~U;#3fG*e>C%*SC5#A~qx@--G)>DO zO(+Iie%(Ou_LSxx{3Iks>nW8I(;Zu&q#Q-a3-Wg~{~F*!&Xs8Y;t@XbH1%NfN0?O{ z6m2m;Xyvr&#hgg7a@xg6LZ!e{0*{R}wYDnuB2BGYPIn;{Rjn+`kr&zv#qrj$7fKW@ zPfnE-$-^&j-G%W2vK=n~Ggwc)NNbNL$YSf`#|l$k29I5V992OGGw&ELtswDfg<@eu zO)U)-g4=zX!R>B#t;&k(q?C`0G*!M3KDpw0DaA^c(4;@n$RsD&bDdz%b%H(D`4N2Z z$MC_QK$AYD66Zl`=R8E6oS)Iz&d;g8^9vg8JWQjVN9aQ5mvpJ~C|%{m&Q#|yy3To= zmN-w)P0p`rz4IHo-FcFBIlrad&QtWT^E-ON`8_@B{DEF^{zz{-f1(ea|A99BOvjzS z(09&X>1XF}^q2E@&T;;MSo%*ca{k2)UGRl2X5E#=B@pCxt}1-Cs~Y!n4-k|@)1}rgUx-6+9-t>&GfL= zZdwIhvCWBlR#!^$OXaFU7RR5);qB;y!=W0!7S*t(=D^4FbZf+uU^->2e@>D$nvvNW z#WUcHttm8<0K!JyHW#pK089m7k~+#?aX{B_P`To&;H8qf!hI0VkgFRNxXz*muAbDy zbv8L&y-0WUrm(9I6}$RU8&^N-M0OT-XA*15rrz0JV4~1e(Jl>(DE@tzB+F{i|1Q*wXS^|sE9pX2D z{74^H<4natG*cr7XIT^YxG#eYuSKq{M;!Bk_-1B?E2xPp$ia^omvjZQ{`m^5-9|uB zW~UfPIqI~Exr7A?tE9MQT^Hk+r{I_`!!ciuW1fm*o<>2}71Y9YCAD@JEtN&LlA{ zv&3|iC8pmFS3Zd~#GxZ($J#Sh|&%b_BB zsHN*6YVUfOy1E{rUaq~cM32%i*JCu=^*Bv*?W4l^6dN$TMGmb$r4(b=x=sITjL8tVFiM!0^2F8)Lp zx&8xF`!ikX`h{k>ex-S?-)N!hcUs~4gVwnIq)o2BXq%g8mz(K+w?>b;ZS<5oi(YnT z(;My_I^fQwL+(oSrMohH=7cL)B!-IIOK4G=;M0B7PhtZ7FO`VeALQYdIKW zmxgT)+{i+JwFNv;iB=%w74Sr5G=*+J=}Lm_Z9EsrvcS{t=V{=d+XnmbC{IGrE~}HC z;&Fh7e@4~m0HEH7@l$G`b=6Iqjh~WF-=K6Qn9rj?j{ur!P5r?oJ`xc}Mb-6Rr`wa-J?c9q#w7C(X)#HKm zmTiXw+dP6^%K8+aHQ=!*vmMWBgd(6=y74LiA4-j^0Nj9WRIqqJ@BS^bv6KXMfIzLfg8r_d1hWpth!=uS7#o$gY)+BH_%<~h4hGfvGSBgT))?pblPM}I_}g+E1f6{eF{mkAq-sv z5QBKiVkDJP4$Y<^$OJyK5&nIm4AtW?7hW+3MWerPO(GXwNh1_?$XSc8_%#z1|<{XFE5*So*BU->&IdJf0R*st!3Jn zeX0+zaxa4{BxTTEO}x67slt;WUOOkVdIin!NOOZP3**1e9pxz|%~_XZl^ z-blmTn`o4KGmUp|p-JxBXomX^y3u_nEp^{TtK9d}TKE05(fy#hv(Z`{ zUs?pStTHoWL$Y;YJbUOy!$@Xk1f$;{#!HYYSRxDqAv>kVQwe>BDOlO=5~CZmPS7X0 zK2LlKHok5t8Bc;5c1{cIZI%cI7l_-FqF`#yaZCL6)+F8Diod-*l^ zdW@+I+!8PvxFrsx-O}ljwlcY{(li1)MU$PBkSKlx_rtihM{#YB;o2U@we2I_{RDJw zKecc_Nv+*aLFb;P?(S!BbSJn}lCWExXk8lpIQS_`gJp1*41yn+m z+7*k#WAQ6Z||#zA3bEkkZC#NMmyH$Ca~IlA#1^hJGlUc2lTaR7M4r3!p4exw10GUe#a|FbzP0 z%T3IJi~*cNDHadE015iYtGF;FDE#}Dr#01+#=o8j1Qjn( zMx=isYNpc!>0ef1qlXpJ(Yw?Fj^PUk>X#7IqY%`u$m2dn0rzo=xlh2hd`(^4-%wBY zN$TtVmIk^{(YfyLXpH-NIEEi+n)^pMg`eme_kU=C`)3I1FSO46D{XcEMmycV({A@4 z^sxI+dcyq|J&V!bS3OMcc{KXOW1}xTS#;c!P2YKP=oe2elcy5rcq((ACy(oUYVaAJ zTHM@I$T3e{Zsox=o2L(E-&>Woq6R7Gx;)xVAEQFK0PpBwO!}=tHL^NAf$6`SfMBfw z{KG>k2+If9|2`Fj)kG!pHf;{Rt`;hp8xVvEg69`njS6LDgkE{r!zNwBLS<9?h)YCE zuZ|fiRp_a#V2{%Q-P-wHSlz%CY~IClS;llE8sfGe?&;rXL01T}F*|QPNRtvW}uc|It{;XxfU30iyY;)h((p z!Y+AlrGGVBol>t=v;iKlr+UDi>H&MI=Uj4ohU3^qP)pBw)Xp=Kx_d_9_(szp&lnux zSQ_IQPvbok=rYeFn(MiQ=6f!qg`TNOg^ZYPk#)3FOcjD_p98lq+Ze~ieNC8#t3W}v zF%DE-2Ov0rNaMq`sM<=PkV|7oN3Hf+oUH@}ID9nohMGk%RbdwaC8N5oRxlb7!IliS zaU2&}6+h+4q}$k<;WiS(97&}Nw6?wgLQgx_Rja zy;O~Osi}#Kqh0A`u!Q(uf;I$sN^yrXaEE2M!*LxO##nrihAZyE6-f0!942h zxrWa2Tuc2u*U>P~d>ZSyo-Xp-K$mzH&=sB=X_g1Ojy%g~nP(;4*L)7?u2?9ba_@&;wOqt4Ah%OG{tBeJyex-iaf>c-~m9xo&rkJR^VZ4+= zf}GF@F>Xs20Zqpnky7Z#Ng{B2W)ZMLjEp2qNkl=i;Z}HTenE@~&u$jHaQi4pd0SSN zhu4e(l`N6Ovr{E`x*&#sOqT^knOv4WL35g7Pf{MIfV`^claP)XQcv(~hji?ObnJq3 z+(jPG-H?oXDCW7BN<8;LGImop&;8WX^8oepJV=8*<7Knb z$MYz(eIF#_Nm}c9hBkVhr&~QQ(Y>Bm=|RsM^o-|ideieB9QFbF$n%jpW}_bZu_Y;} zsN&w4n$V-BQ>A;L{RTPI4vVzt);MWVKR8)w6k-b$?7@wA1U)w(?Lx&Z3B%>8Jt+0i zNdO6mq)Z2W_aR6b=Ia0wSOzC()I%c*-Z#^#hguHKnEF6+cmgg?3_9jJ(0VfpqIaZ= z5Wf!*lB{rlk_c`82NC)|j#6Qpx}QdrN>i(b7C~E50y0r1gggf!CZ9u0zJQnSwa&nXy>@8}xO_q4$C11<6V zhc+%~Vuwq()gn z6L6tIme>J(3faD#1CKBaS}lxw0|9%lf>$chxzq!`L7+W`zZdY%ki_Mg(J1s?8GAT; zG%#>;_hq=b&iHM)(A4Bf{M{LEPVBaU5jTr)2uM?i??);2CfbK;z?!tld@C)p=n#|C zOT}5<7PyU;xQ$l0jS_NtTa(w@hN4~!D0wlUgpX!y}aksAn!OD;T=!sdoQ4gUQm5`C(v~7MbPkxG~YXk7JDbt3h%|V)_VzU^%bizA}PI>3hpWbV@x_3U;_AcPY-bL*2F69>9 z6UH*J1KSX1j9J zcy7>(>%(eD%s2w_Y);x|Av#c#_DHYellB;G5!WD*z?X3t(PE6inUnUfT9fwAs7^@@ zjJrJ!7*P&78~4&4S_x}alOCfxu|RAo(reL`&N4oVDg5}Nj=w|BqVy&DlRi%mje0m; zqcoWZN+p(gV@E_J6?=#J$K6> z{i&UVgeS5>3bp#Ltil9m!Y5q`OGDl}Ah~x!a(6;P(cW^J;N3%)cpsuGy$@5F_Ys=w-3$NpIQ-InTH}41wtJtWySy*b zZtp9!$NM@x>V1p$d*7v3z3(gO`)6_)oot~1$=K{WAj97}?7zDp%7P(A%Z%TPHR7WxN1Oa(8 zT|h9rWt3G$CdDC-We|{LEHiA~H}F@dgmpn299Ye>KqItFxJ~a%Eg7gRG;v>Qy@&TB z+}EeLuY1dwF za5Ra;-sCUFn^AM(e4%Mc;t6jhk=DpvLi!q z2(s=;UNgT`;dZ?skEs^-dgec*;}K-mx|*7@wpWu-vKAh=4A5OXixd~gv)LtuI*_;8 zQS+x%TrVmMtxu^v*T7KO&9A}6Py?}EPd0P{5jJUe@-E)>eJNDk<=+6#W$!}Dhlf-zlnwwkx{7& zvh7&*QC8F}<%=8@pWB_1F#zi{P3Q;93X#!Iv%`#**+Do}TIfsqeRiBhB4h=4U?Pn5 zPf-3}p!~l=`G144{vF2p4}=+iB7yjeI_g9{bf$B3jfUzr8mVW2=q#Hi>p3)4&!y>l zC7P#KrUiNxTBcW}oAo@}s8^%g^y+k%jxC*fK0T(_q-S+tboJWwmR>*y^g=qM*P)|& z5uMcQ(oedb{?O~OO|Q>+dIPSlH)Olsh#Tu?uuE^uA-xHosW;_zdNb~>H|IXOg9qwP z9;Ul^tnTKEbPr#ud-*C|=h?cC=j(o6tOt0N9^`d8Rx;~h-l<3U0X@o(=`ns z#r%eTCcm$@>w~q4`Y>&VK0>=uAEhnT$7-we@!DE_g0@kgq}{4tqTR1wrah!j z(;m}HwHNgn+5vr*c1)k6oz$<<{?g~$YUm4W1^ObJU0-Tzq_40w({Hl5^))uXzRp&n zZ?v`7H;b|5R}K4T8e3a))7aY1FvBZbp~;d92$?~HUSi8pt}dH;Xg?#o62{hZw3Bdk zl2H%Ujw*mjC7P_gjX+CwB23j@L7+7k4sM?Ics#sXpzT3;br8|ZT^c5{@paYc0c{b2 zD&aMJR-1v|h5$!i(WU})BEXRY+69=xlKEI&4Zs(mtC4&^Kt~hk&u=TNQ&?pw$n5~ zWn?0%I~IA%;>HHthrdHNM0gFy@+YVT%DU}~_&rQc$-3>Uz(jZpUTe&=c|WhiU(|$e zP4d`UQV! zbqGBf1G}J@Nl@)Ho+Z`2RRuiWrnwib8c@}#t__Gx{@s_`=9u}O5w9YxMhy%fEeMSD zibn+~Po;Zdz;d$jD$$KeUij&M^un;~$=uU9&!U#9Nr-~H3_P?dB+boWw@*VrU7^{Y z2xhuL)=0mN3iLaufxexZ=sU=%-$}Z@lfwEgu*BU(9rU}YmwpfR*LTwx{XrTJBRNsu zOPA`8(@cFo?ATK(urYYQZ!~ocL7!RFL|O%DkPgx)Q`b=9Fd3=)sYbdKKzc&gB$(`v zN|ls14c_mjs=y6O!Nh&zrsIVUR3(j);2ehYqrRJF^KPX0yf#tB$f0bJ4uTgvbb?U0WL1*i4 z({TMg+|B_i)jy{B`ayV?&*52)(1ZF>brwc5syu#6P0@2bl(mtVT(DL1vNqwC{3ttL zgU_-s`+W`Upxj6+R2F4|B^M!SDT>gWaN1qzGId{70DG83*W)!~Ylp6qLEu&7zOv@q z04=g1N=MRX^aSzI;5EcY1g>vpxVUejGSZQHF6rXlvM#Pde-J2Am*F`U%|RN$A_R(6>|M(7z+E{yoL?AE>4NBX!n)Lj3R_>ZAWmgY{o%g#IgZ?l;5_ z*nFV>L09X4;%5J%<*0bv?6c82Uk+{ZRi@i~d9=eOIr(1J}m%*1AbBB|xxx=w&DHwBy0|87l<_202KcEd1~H6pT@O zGpJ9ruT(saw$*5RC9^y#HH1CDT5B>cl#GrsX$YjkHlZZX{9%b?NBuD5Eu-z#k`{ac zGXwqr#XXgh7MPTF_L}NDK{a&>iBApTrTY;{QEhDbQWK1LRte8+k0IGo|At+oCCH7k zfdEgfteYa8)*MMA#}OV))l>VYc)zGtO6V=~hlK@MNh*@i4#h&}!)(6~b7MZt_WLl~ z@55|AXy0N!%=Y^*+wa3{zYnwhKFs#}Fx&6LY`+h){XWe0`!L(@3(+;cFfH;$Xr(Vo zYke`==)-KkubA%gok``smbA~;ieB)Q(Cfa|^ntGp9rU%OBffTY+=tnIA7=Y~9hrTd zxQeec*Y9+zV00G_23r1v$&0~CwKOp%{_g+_#9tv9^&iA7x)J7MBiY( z)HjT0`$q6m-zZ+?8_R2b<9UZ~0zd4V#4q?R;a7c^@kc%b9AHpwTCG5~T7hh}0vWA9 zHfHwG3XJ1xHk&;kFjAZNnyD)C%mv@aIch$?5{h*_)qH+sDn~RZn{}(uK5nFmXRb=G zb2UVYD-of7z*(9XuT?{I_Xi?HiBNyVT)u47tAUonN0{?RgvzzSFmep9)#Q2rLCZXS zEq38&Z$OM!8^3iCm;n|dLY3l9U&Sfcn@p-r=|v}I>{XaH31OIeIUcDQ;hC!Wpz(y* z%HW*FCpDFgct71nfNm!XR)T0$lCSvSA8Z5->n6)p%C!q%&!-lrE_F>w7gb1=kkWv- zCLf>$K0ph6fEM^>LP}>rO0T9CzS-2;HxCjDD1q+=8tJ=Hd0nIEGs?2Roh|#@E*={N zfT|IYp$&MO=E|=cMW4Fysj}>N^kWRDz=y(Qewcn7+FBe&4VcWLq~rJ~^KppbK!4sW zV)QYMk}8?*J>6ngX+n&a4`A&@^=zNto|P4+zr)j0fCx$}AG~*%o%|bmmC^PpmeH&N zBuFC^hp=O)S4lM;b(^f&#nn@S+ke1;q!O7V#ylzznIx`p1&*0~OK^?Lag8f*jVsCN zTSZ>qO%(C1#x>qdoqTKPY~NbykCMPp-#R+ax1PrOHqZp$M!MX$iKhFI@c6dSb-t~% z#CI#*-_;%Xt+eUZ#?x5Yi?ews32VC(k7@K?O9p7#`?0b-oA%HmP+e?4>9_K9I zey;3$n(O$URid)SxIRl%ezQd7r?{v@(8o8x#H~T?Xw+moVTtzrP+klc)62>&_<|cWr)jlNI#d@y2Dj3L72A`s$2yQdmdc6ka+B-@w`Iw!5}Lum_kTd)nbBK)}?d`w|&#nk{G}tg>ulep`a|C;p=$g6Ob`Bw}Kz zn)ziFSJ;D20A;p(c_>B!vO3hL1W)kOYk}^k7JfXw9ZYq#b@9SSQDV0J4sBRcT#zEs z;%+OT_fjzl3f!W=X$sJuQN#gHNEZaMDj_+Nl!+Wr9@6&kS2Q^VI|SeR8QtUi9KQDpdenEAp7I@`7kyvS8@{9Tp6@IA$ajoB^L-89 z`z`(G`<^x5Ph89Q3m5r*=LWvNxQSomus@rN{gt@0zbX&#SLdPrntYzWfXDia_(Fd@ zp5||$)W`6r*4{O?_O4-M#>A^yd)F9y*Wj;&1E;0sPs4G4dJZ>N&39CMxFK3<0=65E z$@d#sS{l=Ua}+MuDp+OyE0jspXCWQK4E_SB54MS*;v*bd>(E-0I!|?=S>ICA_%#6S zc^0iVX{f<|q6%~^l>I3vpYX@kqBqcTk%6PyfPk%p&z6dh_){QV(PVo+;ZM~>ePVi1 zc~l{>PP`Onjzgja7Ycl;F+p!20}iF@B6^NCyh=1B$$5O1Sr_BZ1MO=xQ)J(Le*pkO z2{0UhhBESJ+t`xS0)^ErR>nLrw2=@)RgmyErUHL6YT$29P5cgW`kkcvT@>=Wso3wK zHhwR4^6S*YAD|(AASV4W%uSw2#SeA64Wl8(SML|arYhe6~ zfyB6`Y#wx98XB8w+SvpgSOGs>N3*y<#7a30X z1)Q#AwGSkn?%~X*D??E@!9a?I1JSM6u{L7Tkn+msl>Oylp28|sD|>W&-gfg3uDeEy!)!hbeyrx$hf z_onXtKGfIWmj?O!;fBtkG5&!x#Xp2*`p>1g{_|+Qe>AP~pHEx-7tl8UMRdP^lDah` zReiv^wKdkQt&HEA6Y6G6K>1K65+r060Qj?UlL9zzLs!8&$}mk|4ADsOHWy3?qfoq+ zLABvnMHmIuMP+m(2PpM6QIxWP7G#Zazoy`C(qV%>l`B7nsi-=t*klmle3^d1wgz}3 zHQ~yVc@K_exZw0wq#|cUtLSeW8df;VeLKXV$wTG624oyO##PjcHFzDYQmbmOB24ml zf;DT%`Kn;!yy?eMDOw>!SJ?CNt6;54b{l)1m80g#s0XHk(U(K(2npj`$V0Pb>>^(( zADL-Zk5!~>%)xVuW;NBZDPo&Md%Un}lI*2&t}3o$HJnkHpV4#Ojk+TFFNHv&y5gS- zft*GT{}tr*Ur9lKDaHI(QHg&#b@tDop8hiG=bs6)F^fj}uZGE(O_%uR&=vl<5X^Zr z&yR+-|5{q=zmC@U=hG(t^>n-c2HNSzW?cV`^tgW^J>y?QFZ&nMTmB_&DdgP46mkrE z&Vlfv35)^I`%wqC0kY(UZ#oFs>dZ|b&?4kLk$(x;BL{4#7}*60=~xx|4yXq47bN$ zmI;%5_)Z8QE$%4lAPK(-#x@1-9gzUIS|!S zBg9G)8-+uY(N1t)Q{S8)@Y@AlVz`}$AVYg0LyuBZ|6}CxKMtd|k0Smj;CA*yhMuGj z{%5J1ANv*j&(k^nS7F@Vpke;E=>q?IG|B&gx?2N=Hrc#e?6oxN;4V0uL+D~?E0=Hw-!8_np1JctCXD%RdbMvb}`%6q#5x~!KwcC-AV|eTb@#jbbf68#IGaxRN z@rNx=I@bTB9V<#pg4j2G4L~oLtF?vkk}TW-wE!yLqm?h;Amf;DFn>2w8(+` zI1x-s`G1D4{svwBlNJHuAXR>&vMpP|43de*$I5?-llgWM{0Qsp>=^iwe*lYY?bJ zO#_w56{teKKvfC{@~Ajajamotse7O{4Ga{jlQXu246;tHm9-@#fK!s$pD>c;`|w%v zmXJVvONh~bk@4b`KiPH!e{fy+!_A35IhU+IIZ?)s<4@vlN^rvPghG{)fJgk#5=2ev{tlCx7=U?;u*8m2SC!4+$^;gSZR<+j zH%$t7=(2#9N&`C03Ha#xfS;BH0(5gANE-tox+4&#y8{t=AP}X812K9$(1M;06w^zA zGwJO>OZp_xijD?K=wzTZ{S;_Je+1fcR-heM3AE?@0HUuzXLba-u{UrQmjrro`#@jr z66nuo1qN}Sz)&6;7|!PhM)HKf7``enj%Nif4F;DgSzd-%98uol>@WhMZfA7GQqJayz8a8hHe&c7OmGjnlPp2(=u%iELa_`1OIc$?1XG8qPE%FbK}-x^ zq@`qhy0=Lkqz&iRlu%7-5Y~bv` zM$QXt;#z^tY!7VVW`V8j3*5@lz-_Q_w{yq9Htrd?gU<exz)Vc+J)&>WD(}oBB z)J6wc8z0QlCI)l0(xB`sA|8!_3Fx zX2Y?==?Lt2A=`PBb}ejY9k5If;x)jB6|oOUCAHlF1P@&`UAqqGsuG~8euuTK#~t}h z?1lXc=&GLBB`ck>2G~*IQk}AfJd*3FPFW)!&$U71BU@u9bDnJnYJZLK`?GVv2isw!b_rF6rtW>ux*HaID)tDM2GCzm;r&>6PR`XHFq zb|VOS1hv8%C0P~V6p3I&A+3Yes34e64T3ePNw5|Mz5E7*wo1)I>IU^C_9ji%dRQ#_GGnSi7gaPpF5w*vP5dfRb?wLKs-pMg8cXu8>m z3vfVH)BpG^8QBG3pHC$H@p&2k`2T)PYdWC6Yg))6JXC(VmsHo$lE^v-=L_Bq^E=a- zHX^`GgK47}!D_xN!z!@n!zBrhhB}$wmEbxyqh~M~Pk_(L2eI)(xoCqt4}^90rGQc6 z9{{7q13X?m!Ck|p)mKop)D;E)CfLo`@34a1vW$csg(kGPv_hXFBiV5h#25<*rWMvt zavp^ZlAa_)QZXL~T@XnxL{f)H`p6mdQy>_CNCv4S7^2R>F!c;ZAc|2M5{%KvU<(=- zET&1pGwHHmOPUdEMRS8CbYrkJEf2P#HNm#DDcFu~54NYB!4C95up{jacB1{k&h&h+ z3%wTXO78}{(V<{>Iu`6fr-EnEufd+o!LvCp*o$iidvm>DA8r!t%bs9A4h9EsyWn8% z92~|2f+Kina1@^x9Lr;a*jF5s7gi};P;QvM{kf{zDRDXXux48Tg8%*U^rYQ-;EvGe0r?EH`wI}3Kf zs9kNfV&|Kz*m;Q+JI{^B&NC2!%l@7!G#A8cvcCtr!g)BxN2J5D2K}5bQ1_~a%2jVn zxSkCK-idzB5yc4d0QxyX?v@Wu;xK&2T)f-oxjAsQf~kFt8!B=)?DRo=Z0rg@28uTE z7=?6-ep4Q!4yr82wb_Wzi-3FhK%0|26`0z3giS{*nA#@vlG;X44>A5zz|`iz>IdmD zMe}BC85pZ5*c@bS8L&E~X0#3KZB1Nbk6zq>uQQ5hu=Cl|Wa*wU(+SHAvy7-4#Wa-E zV4qdyom)HIN@j^*<#!RpkCDll*FWD!2v;xef}s9tybu3b~Q=;3f(NH&e^t7HS{dN?n7u z!av+b1A@2Hu;4Zt9lV1k2Dj7Y!5uU`cqh#X?xY)nchk+m`)FP80Vv`gx;OX;Js5n9 z9tl1{`+`r=%fV;qjo=GV#+TIL8dLo5nTkMrO+`R8$OOFZiuadVqS$IqPhlk&1X5T{ z7h2O(*Fq7D>8Vl_aSc|}i!D}DtmcMz$rS%cK)$boBFvEiZ-gAi6n{_^rmnW8_?7&a zGG+wMt0sSQa|Q!j(mBs=!uNLH6H-?7s!se;e`9JBW|og+qFeii7V{o8Sl3F?fKw z2S23V!H=ka@M9Vp{Dj5?Kcxx5gK$WP=&B%Arv*Q!`N1z}QSdO`6g)!fgJ06t;8EHU z{EF@l9)lhnr^kaQ=(*t6^lI=MdOLWMJ_vqGp9D|QSHbV#l)k5*fcFyQH{zV)OP^)vH*HDn;U^0Lz*M=xd;wsG4$#tt`r~ISP%Pa3~lTHHI*bHHRwUK z293p!kJG2ht<=&>e_(QDDRPBUXnyz<+Q7@CB;soZBE>rL}Q5Bf!Dv+a#54m_eog z`{Allf`w=4BRgHRn)rV~aUL29H39LGSThaa1sGY`zo~zwFL_Zx;c0MQYQbB`Lj@rp zH3<2sNhm=$l5XC}aDhWlXb0|tZLowCXEZVq)DMxbXll`N<*z_ zR;Ufl4Yj4~L+xmBs6DL=b)v1Iu5?GJ2ki-+O^=59(EiXl^lWG#y%ZWkuZPa1k3;9t zXQ9z_GBj36w!(JNx29yHuxDl@ubH6}J!ytc;DV7pHp-6JWgZWmXqy>20U{DFJA%J9 zUUtO48S}QK@DxVbaTZNQ=(HG;4NfEAy=48%Vr*bvhAgfcLZtH`_p+c#046OJwrfE} zY*$)wP&N~uFp*st%Qa;0jC9#Uq0nIY+L0uCjZZIo5S0Y4RNRJ}K1Hf^LKpHTno)v1 zd>8E~#2LVy;Cm#(_RZL*+Ko=4>cNqAO;yQBx za~KFwI1F=lA)YNl9m42adDO)Yw*V{gF!Ka1(kcVMiWuQ!)AXAJ=F}L%e9jgFqICoZVfq1M#ex$g2@@PN67?I8~e{1q2N zDToagLKzU7LhBb}B>fOdC4;hD9j5`m=|FdUm`v9GKE90Kw(~`4x!iRtkCP! zH}nP#4ZTUDLT}N8(A!X!cc3iq((KTCG(Yq{Eed@Avv>eX^C7JdeFW3^G3^R{Lgk@P z>50%mdLeWOzVtJCH}pCD=@;}x=rA1*9ibmWUowS`a^=uhoF6*IbwbCvLFfcKLSJ(* z^bI1;liW7+Eq4ul&jUk0A?o}EQRnYGHuM)?8rFDbIGY!REAjGhRbCyg&fCH@xjbCJ zd&5QiM7SP56K=>ah8y#Na5Mfi?Bp-PZl%1&O5?+(@?ue<**bhWuDm)wVvafT195mq z3GamRu10j)fp3Qim!Z18C^#6==};CvH;GP1@%(sndMRJY%XpHbbov9G!q^9*Q+&loY8Y5rhwrFi;5uNNxyR;4E?R^rdNVlYx1nh&=3|%|>}Z`> zX)HXbGLUJMn3Fq)Qr|Gfa{&&*LSywDNJ-U0G-fy9c#J6zR5sv^^mHqu37AFt4ULkl zj4y+gNzO|RijRy7jm?}B=4OIW$xDcu!QzO)k_;5%T`Fl*rUa8-Ngx1}Vl9o%vV(eF zfdEw7u&OT1N?l;i>KChRhW{hfTq>!I6{D1s;>aFl}K7{$UZsBO5Ix`fZ9-eC}phFj6_a0!hIx28$qHgs9IEnOLIM`hvm zG&kIVZU}dz<>5}WF5H=J4|kzm;jXkh+>IUzpGA*`d(l_nzVu7DKm8dV#J2EIt{ooE zb;BdMVR*Ds8C59ZMwZHGrplmqZ4}~TKu#NIx3)l>NUW2ERaFO6tdk8Iv=>nnSqYUH z4xIE2Pz9kod<2RjDl-ZGagj>sq=SA0uT{aOLiMTk48r5)2rmpskOu*%K?fWJ^va+EZUH_@feB?(JFuZ&hlW`WuCcqacLsLa zsX~udMkuO1gwiJBjeK?5=tUvWz<)+Y(IWlWbAHB82H4Y9J?Yqstz)kMD2gk2+%KDX zgy=NV2yhPycv_~E5R2d%K=YDj0Zf;k=(i|~fYA`}l%mUm??kgDPF`3Y)hE2vA1{p4 zU?Xhn%x_l_#om&92_o9y1B{IX6sVEPxCkIZI$L-S`S?wY+NXV@Fb8*GG# zrM-OAzQGH&p@0-LQY1F!mnVp7)UO2R%&C&*!a3t8aTpIy6PfI?y9{KqOOVNKyGtRH zT|g#-5vQr$1!yw91A&moUS#(O`xZhWkk+II{Hf`injTO*TZOqvI+1D`Gxm=Pfl`(NWIO$BpHTLH679H}zi4TSDq`%e<)|xWKT4QNGK%?hF^RI*E-vGnE0EYiY zX#PS9hZoVA;lN`B`Wxu}@J1N@O|&n(nVt=Ap;y9N>Fw~XbRc{ieG_fTNv|S;XAo$>whdS@?0jIlPZIhM(X&!u$E|@RR&t_$kC} zPa|e~hF=Ij%ddx@;}62mBW8PvzX`v}e}>=CY~i=HO5yjk!tepj5&l?f5k9Dugg@8X zhmUAo!e41;g->XG!Y8!>;qSDe;UBdL;h(jO!)ODA|J3G1Si3%wr7eo&YRe;4w2hH! z+O3g%?afGS?Y&4H?aPQ=I}vH1or;{H{S;|xvqc=XN)flMTEwe@mU|70Wja6YJJb1T zU&rIcu=a7hnt7)79-Nu*f_Bng1{hU%LHlS=AjOk-aiI1H#*k#5;XLg=M2_P8#%XuL zAxbs#Vr`3Zh*fBsc8hX|RcWra7-Rdw^?QRhA2pvGyrUIpeSLwLuR7|HV^PDDc=3L1 zIBJ*&5ijo3`XZVX5bd*C54st>hFbKtR>G^$Yp6|MYBEHO-9_{bNM0nupt>2KIYByeq0P%p$iom6{-5+Xa8i6q-gArP1_J?Au;qCrQbfZE^3VuY;iD7hiJ-U54 zLQMnY!QqVi3>Agm|Arw{k#`s7X-V;sW$jSZ01zV*pn^!48bl)0BoZZOBu09q1%)HU zR2(^z+C*AX*GMbs6)B-Xk=8UK(uU5Dw55rWb~Gi@o~B1S(40s|S`_I*>muE0Q=})| z7U@m*Mf%bH$N+jaGML_q45RlWBk1GEC^{Y)lL%>1J~P4QRui1eCb&-fMDw5D-$b7m&t*#kgr8Hru9)lcJ-Sp@G#&;Z?iL;*?V6J0-(^fSP2ZDx3Wq z*27?wdors0gB17!0TzNKg9RR_pR%+m0;zN;L`dATClxm=0CW=Bs~SOzjK{@Kz{OvL zi=RlI$Rr9xCQ~eOF_lCvq4tqWsas?U^^9Cb{UVps;K)=O9+^gCBBi+a88j_23zt8K zu8tsdjm)QIkp*;9L?$-PNrKhZ<<2loHc0s6Go+})n)Nx*HpApdeQtzB&)y9eDJFX` zCOr&#_AwYyTf(>E)Fp*(uJVu})+B)i0)ThuiQ6|fI*9fVA@gT*k^+F}@LVKEG0moAutj9C|BlZe|OxD@6f z#TtY%q@p{>?VNrXwxcMDO966y(qVM54kM8f#7hH+z7_baw;9bQfDY1PP{n{Z(OaZqju}IB~)|Ey!RH`(!icq11m^6bYC4|&cp$d^x>xHRoE)`Z}s_J3NWI-X8 zVkQ+P4p1?~2y|l+(2YevHx}7Jj>w(ljqIdgWEZuJ+y%wG8;W}m^^V*Ni+vxBjO?Zh zBlpuKkq4+W@*otpoUV=Rp#_nLXi4N@S`~Q&R(mgPk30&i{TMwId7K`P?4ze5Ptfy` z{q$<&NqR5x6nzqTnhr;vp%am3>Bq=(^k?LG&WXIhd6AbnKk^zEMBe1)k#{&8d7q0T zA9Cx+C)^=&i2Fsp;6afud3@v;UlIA5=S9Bd>m%RuqR3CYJn{>#j{MH+B7Z8;H)@0H zO~b)3FNjbW(Mnmo(BTEBNosjm1jpl4)Q3H{YOFvIA>Gi!7XOfg9(G^&2WjOD;_mPd zhavkT5vxeqzcSXtw?IrNg^o)AGp&kvs4A7RL&b!77~W~5V!~?Jr27MU*qZoWLeS)x)(zS*i#CFa|bqL9!9M9Ck7Q( z|vNs7U%vDj0I9mj(KCOx0eJ|5?6B z`70Cx0Cz%*+v-epOV@uyp4m7Bq8F3&zk3G#M}OOLS^xbZ1DIIZjh2&@Z%0rBaz0x} zjAA3?+LxhqrGlZ3s-oG{Aeuu>qPgUWR-!<(GR2}*sBN?=b&2Lt z&uBI38?8EM-I_c@ChhB*4N`fyiPSccNy4#dsuz;JcZ@mfWMiybNpjfPmcG;-*%*X!}q#IF+ zxq_m5d(Yw{{X#5QJ(T>;oEBcw;g6RH&yxo2g#`~gs-TwMMQNtfR<^X13G zUo@CO4p*Mr3-ve*%8OTgRwf;Ddl%=VTvc*HUzn8~kz^-7$w_*WxVlbAr6?N2)kSc1 zQCwY&oY5BKjTYnj&ZKCxCAEsSqV~}e>Kbi}tLs3cqn+vEXg8V>#T;VvY;_&REa?r_ zbxgLd~horAfJ@LLc@%}jR0XXr2IPpQGM+Z|VI)sX&L#a)4797usF1h)Qp~4}de*!`S4a1E8Y-;>01#oj6tOeV!S6!^#+qDqc>IgXPN!KzY!?nZ#Rf1A6gH5vt9d|^iLw8d((#qF4h4!A0} zq7`+@Xn+5raFU?41Wpn>4Oot;K9<|wE~%Dc$}-kZt(H<*YTZLS{lG74j;&0^)HK#A7wY<7TMj8mQ!27{FU#0M}8+=z56A2I?K% zNCTpqXlQgZjf!re3DK=k&0Fb;=xsDJdOLjBHo7r-2gGDMt&Z-X_0e6lGkOp0jqau= zq7TwD(TC{8=w3Py1s*TDpT3AbOF3l1v&}bTw8U1V-(jzJ!6GM6s zYAsc`?f`pNK`t&UdS6yF3$p3pSxkzY4Y86GP#Cl-(WMy16b7xzpjp_UVChvLn5z+c z3FP8NeANn7gfh)RNeG{QdY{aU=l5=xJ)7-g0&cyE|#bbR3;6= z?Mf2Mb1kvV9WksRcVt2KcC;%!dvZtjN?cNPm>G(`f=hZGm-D7NtUAVziXWB})^A?! z`S>W>6CaHkm;N5IE8)b>z(82Dr1vo1dJhSU^?w_SnW@w16bF3@0T|;U57UvA1j$iN z_;hmXNJl7j99$YV*_e$O)0xIUK4MRm;>Y(r%CQT6v8g3`SGHZ-bhisioFth z1Nln8{mTj)Wr~!zDMqg-`Yz<}0~m<|FcKdk$o&XW(#HsLKS7ZDDT3UC2yzc0$o&kF z(&q?rzd(?C7(V0(g4{0=@) z=c3=ytI_Z2o#+qrN%TiL9Q}!oMgK#mqCeBm(O>AV=&zg={f(}VqShR=I7U9A$~g+Cv6^DIiWOalf(5jS9(7B^r4{?QD~`6LXOv4{7F8JP2@W?;?_#{={E zyg@;nE74-4bpmHbV9pCj_Up>5Ij81};bS~Nmo#~+Bs>iG)rgMJB z?`XiI=xM$Mbj3hKh21t| zgi;x4mBGdd4vhiIs0m|15g#`C!gTwX)dhY8TS@tuB>OnwAM9fiiZbisOsm0EQ~*S5 zq*%79k~M^0aSw|uWr-kQz(X*hU4-9MRBqdXIl&yUjdoD{+sm^% zB_`ABrNk{_#8R?>BpZ^tWK1poOI=E0g)ya;Witi`rTbg@&!ZPo&ni`2V0)2RGSsum z)K(H;g&`FMT*M|;Sb^eVeW)OI4mF7NrzWuhsz8Xr54CdWq7<*`vTJvN%=#KzG4*jQQ|JD*m^#?gk@c)Bfi0o@tH&_iqj z{Xh2J1InrDYa8GDWEu=*fEi{2Lm3##%+N`0lAE4E5R@V!MWqQSijAV9BGLpwP(i9F z3W8umu>p#`VFNohR76F^ieg9oo_%g^CXuNs5wUj5hmh<_pReXVK4PW9~%QIc;_;S|bjR7a6P~expweluATg}>k+M;vSd;wKVxerzRlK7D6_@W2I#JiXUutN zJZds|Q9Mqqgsze48sOf6uIY*WoegFy{3bjjtczoGX|oQU4L(P~`k)nxkJoT^v_e7G zEJ0xrz;&es8Gr;S`f2T>%=gBHst>DOySD5&ZZXk&T; z49GHtLs%C-=8xeN<)e9HAAbUkQvk^Rn^ut%bi;epOcX;45jj7j${cs0$eB%#V$Q~2 zNJNW=G*Wl{DQafx8k~cUFzg#$7?ir-S739pVvqQ2LC|YBz$dg23dCy8M(!J-BBBxG z!7yRM3QNvP*DVN6GqlszE=jjcO6V2%Ac`AxvFerw9PGm-$(;VTq>tijf&@@PO3eUy0X#n_QcVc>RBdF-abFY2Bp@9% zW@&&~-*!pUS#8G%r|mdr1C4ZSPy^|R*6{?=v91PCOWQZzslK$ouew&DZ4x}=G0sK_ z;{exqJGkmKF@6*KBLFxhzBOOYvA}*MeN5LFXVYY2{32(O_{~mdQHn#2;a&1Vb7wPs z8aOx%Ke|YWQGUcsEcnr90s^Iv8sQGa_zkS1OgSp4&ghT}Ue}ita(zX8Twl`w*Ee*c>svb6^&O3I9j4P=-_tp+A84BE2+eT)NSC{Q zf;sw`mb-qT>s`OX9Q{UjxPFH@I!fDIf6z|XpD;;((Q|I1SKUnSxfOltcF>pZ3_9Y@ zq~G0HEbM?;?i|i@*Wm(pU2f^lIqo7};CAvg?qfOr$@jWj@q_Nx{Fu8f?{T;1 zcimRp5@QcJ5xv?e3#YcRv+&_g4emgVbpE ziRwJ}P&LhsS_X`oZg*D+LSdC46jnpx%EPOIFk_Ms3;~fL=~iS8R2OZ~1i#Y(22J=# zPgc!Q84>X6IVuM^xdK-sEO*v8nnH|$YJveyGhy1!#CfiVS#+X;^&4--bIo9?e{kH6 z=bFQDKdAmduwb>jpD8_!{6M1JU0c0)1qjYFMt^8WI~5KI83j1#?!UXsijY7vtRZ3PBE zsX#2D6`_<5+j^{K7Q%j3LrPIb252-lDYcN^#?r%RAdM^r-12(bXUEiznQ+c?Bqbqf z4A9&)k~_Ek)#**oe@8x*gW-R?NIrZveDh5B=IVSo_t$G}M5(oEm6kcIt&&^-u;nx% z>qtUernWiPLI!2|+6kQolI;+Y`&7zzkEUYx7%Fj(r84(v)WtoHT<-A{bWfmO?$fEC z`wSZBo=8L7XVS^;vuLb)5}oBfo2I$Xp&9OTX^#6mTI4>Tu60kQ)$S>@-aVCWbx)(a z-51af_l5MByNaH1UqmmtFQ(Vsm(V-z>9pT{DShUiLEpG9qaWNe>8N`aJKVFmj(ZOD z*<3DkU(PMu^SIPKpDWx~a1Zwa_PG~w#J!jYy03vgyOxK$SMWslYQD&QJ)l)U9`{z>=Dv@2y0`J;?g#l9_rv^x`%&%0SheLB6E61M2^Sme z1=x*>x*(jl2ZgLkBmk~XBmk~RBml<7699`iqN~C=&@w(<6|RG@zZ}l7)Ru1r?U7XL z0HViuxl8d}Jy0y6Ga7%bKD~tCU3#H~GWHkLhcAbVy&r@bm%;7M!;Ing`4iOvXM2=h zM$#Nz(U<}CT%2r4XgLIwkMId$x<$5BN}H8Mw$uZ?t*e!cvWw6ng!rrDwdIqfe8q-c zTTUUVtB%X@2wrs(n_c2)K3Hi*uUH{Fd}^o`cybq}>k_pEo}A?QyC&(9s@io)!jrR| z9cY#9724HFo~dCg3N)O+)2U_3xAs>M!(+NevZqt6LQ*`P+JWh4X%kN;3wQ8zGW3yM z8xX=J8ElZ^-UwDiBd=0J>eT&Rt7}tZ0zvhDU4udkxu3*-eFppWS?t$c)ZYCZmAjv( zp6(aO<9?As?w6>KdpDin-b2IPFJrI1LKEGu(z))}XsY{ly4d{&_UoIp(7hM?^)0&I z{Wjg~eh2&YUF_HQXq$Tq_!o_2pgFStLXJ?{PVhWlgs*nJTD^$YsS{T24=w_MNt zJr}!wrUkwL@hE!gX25RS3v z@|Wy?7U}@Iw7t$oS!#=JK*>SPU=ysgB-E~_<$CYbrJG^DW$)x-0KhB|l?g5v1KV^e z%&G`@b%FMUq>6yFOr_gK9fepz3~OlhOI%!w5Le>dA;k1Sk`P}~ix8)xqfoi!3s9}y zY@l+RS!~;ue@((_nL>0M)P+F-ha#GxG9}TDj5{KRuw`ZH+c2dX9(5`(B7y&_(xmj7 z05v6DT`hCE;^h95@(re9Ls5z0pms(El^dDV)yN_=+mLDGP{^o5eT=#^z{sT`Mm;*k zs86RE4QQg#kj^vm=whQ0%`zI(0;36GZU?O}3h6qd8Lc&doG@C`Lk5r&29Og5kP}8H z+GBL3*NqBQ4R1 z5NUdvs}mvF=(xEQ$Q~I)aUPuq&rAkUTnxJJYk;8^gy<-A3`*0}0vZa>aV6wy1)u;+ zp+PPA>ZwbgAjq>)6P9mQBQ4>`(>!tzJFO@!U+dCz(aL%SCyQ1bl}s!#qZZNn-y)W< zWl~R;PUZGJ{7Nucg*DlZi} zo61Y}x#*a5CrUa^k=R7lCSUHJ2Lq?RYhXQ@n>T)kqX3T`U`Ue}>`$i$u04!m31$tH zd?c7PAy%D7@MhuFk5{jl5RT{^@-u9+JMjskx9805& zzBJzGN0W@>XtHrURT=%EXa>*~#z0zP45C%W3AD}_Oq-1pX^Sz0?l(@NoyJfonql;! zF`QmAM$mi4$#lRtg+4bV^pi1){xC+f!x+Q$jIrFrIE|Yb{0uTSJkJ+8|skpmipGveEWb)YdvHuT9qJG zQ3+BN^(0KQ0BT$+L8<}|FHWkW5~M0BL8_t>q$(;ws-kRCm09Y1xWO_(?+OLv5KKC_ zoRJt1cG3E@P7TsdHMpErU+q+5rnd^9mR1Lj@lNH|wX{a`wCaS6v(N>-2EMjcNFX$! z_f&zdrRCEB)d23bG}!#azX4#08P8w^{Q(s;ag6K1xfZ9oh@0^HaH{tsK<~$!bd9VT z7)Ni?HL~Vl9KBYz)f9tqbP;M~m!mQ^g)c)A0F^Oh+ArYi@hz=*4xfu^*=%Z!R+j3_e=TOj^oYIpQdzm1wYelzX79MrJ(kM!;}09(6!l zPYd1%cc&xTY6|%loL?CxKsU;`E92LAgUu3hrZ(7Ub5x7(o~X{@i**Vi&DF1d+G<7D z)jW(DMIG<+>?|aubOIgDzLiW*^w}T+NIXUyAW)7J4tuo(b`I^d+%U<7npL}<`(Ml{ z*ebp{7SJj_fd;A-)DZ7o&v?&FrCR#`j1EWwf$2GV21Yp;D8L#YK@A?DGUH>YL5y-R zK83+LNWF~DpawsufyNi`w+_+C#+NkK_=?UlzNTr$H#EcemgXDZ(N)G_T4sDtYm6Ug zy>WzYHBizvexhy0&-94#8@*)wL9cj--t;)=Q%@HC=&3`$dFs($o`#&^Y0Pyz1>C?> zsQoW%j$T7sEzl1M|LYq&UWWG-kC!o>!A7#aX2;9uW53g@9t;pC9e_RR+K8^jkubOM=9}ChMA5}-KkkdJ} z$mwm6Q(#WHC`nG|)-I!Py!A!-r;NjI#JR_MPS6ZW55#v~}Hsx>T4 zsrOa~3D8+Yp5~PAX-UPNR#f6?P3=7;RN-ku-92r|<0+-6ryce4w5Jn19q43FM;hxX zqcc3^G}%)@7kWC;OiyQ;@99E|JzZ&;ryH&Dbf@*69<8OWWX-|6?#&2PS0ZSb2`eKr zfa*fTuZ2iUP%7*~%b>lbt?V+0bPt@-dQAHkk!}DW_*n>J_d^$o`1&=Y)a{fPuW?F- z#Ztl|#}c$ABPukE+v-2FC>7?V3vkvjoIWxJ>bWEVo?p8FC)Ey9Cf0zqAI)ZnIMcfM zF_bw~O#denu*e`cmQ*T|vFLrvPT;G0tYmxujyLZk2mmIEzzqNty(p z+zS!_eV%CfKP~^LXaG1TLG$-R^UFfq1i4arbw&w*4Xx%=|VRvrDmga8X&cAskUsh6DYQ-!u%A6 zzo|I)8q`r+7?C<|ps-cS$6L$CrD;DNIV6QQI)X?j9CZAg3WYNY3TG@7&S_9M^a(PZC({lzzJQJz6=S&*tIg5sRCef*$vuT3o96H-`E=~2EN0)ler@5ZVw9qq! zmUyPpD$g`p>$!k7dM>0pJXLhB=OTL0b1^;YxrCnaOs74bOJOBv(0iWCXuoGB9rDbA z;+YL=IS1BqE@yf!=RD6mc6#P>8_yNo$+LiadKPlPb0t@L7I9zCVjkeRiidcv=8>Lj zc)Vu`pW|7|7kaMc8J=Z4*R!0j^sL~eo|U}Xvx;x>tma!i*YVw+HN3-fJwN8TfuHfL zYmdI@|NQn(W!DF7&*k=6m+3m7WjPCeHzNhv!qZ)$_S} z!1JYg(({el<@rvODPLyk6I+?8J8fmEHpi7|dv&v2_E$H=%l@X4jJYV&h+07Nvoi6x zH@K0mKxQSI2C9p-g3ZBH+$mbY)}aY%95ODVOwYy$ge##WbLmobybclS(Oh+m4iW03 zPs)p|jAYDLsqX0Ym5ljDRf^oZWX$hXO)>6MGUgAehN$aZg}`7BTz|>CHv#q5_4BEg&{~WItVLZVKj3QWuz#zbj^(X>B=6IeS zMbMl_@+4jLE9UX|PrBz@fNyFrW1cYrgBg4r>VLBl7+i^-vyCtctb14$*#chU|Sp7j=FvPcYYDR;h#uk z;3Z{t`WFQL3D{q{z3BmVW0)NS=0$9fi35}n3!P1*T8R{G5qSKY2nn(icbM7TtTVbw z@u*p6fddKt?pV9FAGYA(+eBbRJWSf zKUIYn0Gu~XV8~Soa9&k`Gg%RX*WV&((OIDaO*`JQ<~LXC>AGm%A7Svee}SI< zmC8K7QCH9J(9=hur~iPS{*(H8{-ObxlQql>x=^p8GrSHu*PB7pyqPrJn?-ZH7-Qni zp=I7WwANdfHhObui?<%#@2yV{c^l9Z-iGw7H;-QSHln@W#(;+W_X5Oas zv$v4hTf}v}PHyCF#!hc@ZsjfJ_TCoU+1rv`-V(0#mhy?-4m{jj&Lh2@`801gp5pDv zbG!y$;q~!iZ-AG2!@SZP<4xXU_zv%}ywiIeKkgmC&v;MZ7raCGW$!TF=RKJ}@{Z(# z-ZA{8cN~A`JzbG^qSl`lxuCV2k0ggUqjPvB z^rs|N79(9DS?vbEK#Zj2ncbj2w_pr_R4emPN9>Pkr4ao;fx4lP`U}xNYKeGNi2f^d zIwc?AzLo$a3lH-lE<|GGawJxM=DL6(3)39{UI6tqg#N5cKLbgT1^wBGzQZuBK0rRS z0u9+gXt?Iwp56nSNfsc-oxzVH4tWaz1$RRW&yGWmE%N{JYRIwW6N|=*D>!kH^G-H6QZ2+@90DC^hZp4lrPL`mqvmFd4Lb2#2o0+oGy z((hW8`n%!^w|^((u#>B=;`U}bG2RlSeh65{$jvxs25uj#=oD|#?}R~%8;mSlXV;7& zcGd>4(_aVPuQ5XYHBLtF0wR*_%!z*?Xax8o%oEF&7Q4Rz-r0Xm4`fk{C zEEyrz#|d(}yz#+2J+5^a9!9|s(r;8Jq97p#N~0V`k+K;YI8urf6h9(o~{ za~mYxuY#2@xG7L}VkI#A5tx?Muo8XQp*gRb<9m<5HpmdL(e$;p4e+vIiw=R4p(X6v zZjHuk1-fW(G{vxa=9_YcbV z5f%HGN_>ji`5aX4%b>2lOmg|M$n<4X#Fs#4K*z=PjiC5$W@G9D)F2+&!EH5t}6Ybwm2~q;>cLvCBP^?AO}A zznAcs~a^7~!b3C=2h)JqBc5Lh0!(!SofMyqqYzic5 zrev1Umw5#;$`W}XV#?f>eRCT7yY}J#^XQ=I@h;}1XrNkjG~v4s^b9`GGx$Ky-~&B_ z&rKCR1ES+0ug^zT7X9~?tL)Ey&iy$ybz5vLj7(LzIW2q zhHAq18m^}9MA3*M3Fb-4@ z{AwEIhTza@fPt!sKC9PGk81ag#oCR>+D*XPosP9T0~=r>Ho%$G({~p6e3P(#XJh@& zq2qk#)5$(C-TJ_E>${lF_gzXC_%JI85^Zh$3lr;da$;Rhim!{0g5cV|8oxbE9=!$` z7~|fZdm?j`NykwIw!W;3Z2guRT@y{vYv}w$oP7EeSB9z z`Cd)KeAm!O-x4~_x0KHGt)R)il~m4(k$OPTH@P4D}0-1jqf(P$#;idA!|6s zy2J`41~tQ~&dQLU_s%pGJ4a&Bo*3OR7yCs}R3or1A7h0E(I9vig3=oXB-8=e*lhd? z4_&P~VJ&3U(AHE^G#y z^Uh}{OL6(I|{v+rM(gdQr&_$M+uA1DueuTU%BtJK!_8g=x&PMv&jzop4Tt~>woQ#_we?8!}35A{2FqQ{t`jg7C)eeWl=B?Y7 z{yUM)&46wudMW95ZcqHq8l7?pSV5u}*bdnKH6F79y}l|SwBvbg^V)7>Ts7scXySNx z8xMmRPB-hOWb`DOtI>J;FCbq@!l;?6eEV^QKZY=V0%80V!gvtE_!)%pb7+MxsF&{$ z_49p+EBzG>_k9ih{0&X;eG47^9c=4iy2STA&G!8OSM4WS>H8I0;V5nP{YBeNMGu>q z^n{s1&ziZ2OzZ2FI^VjU2?5@k5a2r!0(>I`*cz%LGx%hvN)Q;{_%LGFU8~-If*z_O zQ^SVSG-waOTTY-eU|Ge+UV&|}ls77tL;{5y1@1Dl%eu? zgjZTfz$jQx!^J@$SieGM=yE}N_X38`hRbzLP zcHFacs7E-xcMBPj$65q`zY&HkiPB9&4wxA(qOFG4DMPtp@G|?=fbIdk0&1_54%~HDD zY)6aD_O!(8Kr79Tbc5N6)|;Jav)P62G+ngS^w9mL3E2xm_9D1Ym2}YTO<$UQ>38#Z zCUYQXnuEEnc@h_z!@1P7%KCRgDzU(}Y$C5|XHqjDn-XG_)9;9kg%_|J`1XWeDuWFA zmgXW3%!InNxM@&{LL@CdVK#;$yb5`hOzJ800;EzhsT1iD$g2$enFdK0UT9=e>2^fW zpTdK`9OeAQc!W$UIxOnpQ3Hf6*Wf>yXmK;6gni_$km08dMMvG{sQJz z$#}X9pa`-b!#03#^`X6)(q{wpFoen|Q04?B zPPw|7Ri83CTQNUb8e9z&V2boNqtHJSeXIp2;NzTI2vp!2FO6MnA39Ww#NJIB9Wqj~*&Ob$(iE>uZ6`YIY*4S5?g|Bl*1PsR-XB z0)F5W5(NBDCZ`#kB~7yNgeKr`gYVF_{6wt5r@;b{iORi+%Dsuoy@|@bIi4!a3D7O4 zlh-_hLgqxOG|!~I=2_I=oJ2#-vuUJx4vjOX0sOrxdd z1+>b%kghkYpkFScP3FaPw|NO|GpED0T}n@xGw22LGJ3_FNpG36=mT>$eP+&~Z_K%L z#Jn83W*&6Se6C|&!FlEaZfY*%7Uq@EH;cI3T+H3gtJpNJ=BRlM_cNF9KyxV%H?QT< z<}#jOF6Xn%6?~q#k}oh<@ulW!o@ZXii_JB>++52W%yoR9xq)|>oA^2NHr{RC$*-Ar z^IPV+ijK{YgYt5)VKs?>a4xy-%FXTGCC z<~~(veyEN$52*g;r)s46xms*~sg|1GsFkKwsXxn72ey7x({25zE{xl5uNtlGwDj1H z&~`e5`lFbmB1rq+AefGc&@5inp+$O~Q#?FX%^ocs~2IABkz5&A1O zK|d~5xgd==0R6ZMm6mG}QvmkFKWQjb1G*bb^%igHHvR}XM474d6mpW%z1E0c;N8d^ zUJmp97C+7_@qJA|eei$=DR4YBE6Ef*^ADx~s;t6> zPr?7$j{hI}-?R#yP8)<&CSBPlU`xVL7>0W4Nna!{*j z>Z~sh2IB@GFx)(47IqfKuV>97Js|D{Fy=I#x{Y_kBm328hF|`w(cD(~skIxiAT0&# zWni!iDmgHEFdQ?bY7?*fm&g;Rh~6)j>VI3Q^ho)uv^p(N`afz5Y8{6BFKKuR3X*)l zl#0Km=;iY{N8}$YK?I1hQ4-6kT7?Hp$6^U&*s&-WtcV8*$waG=K>-fC)5! z`73n)Z}2OBr=I3f@|b^+-~1E0|1aw6CmP^q8sb+p-0z^V{tTMv&!ltxS#*Ivn=bX| z&>VjqTIjD!OZ~aD%3qIe^4F&geoW!;WB!Iej~?_lqR0J>X_vnV?e^!>8~y@%-`|uz z@fXt9{vtZ!chc|vW~}_pxsJb>8~9srfxjiU@VDZ2{?=UKFX8U~Htg}Y<%qwO`}o^& ze}8)(;_twx_&f4ge;H5ogMZpz!58~G@oaxLzS7^Fm-u_|3cr^(`u%*rKg19Eqx`(T z7w_@+;n)5B_-%iGe&0Wc5BN{y@BKshXa5L3>OWQ0@sCzc|7ohFe}by;PgLFfla$+k zt}^|TRoFjG_3~G#zWz(p2>%Q<%0Eku^UqZi{qxm1{)K9af3ceB*My%u&D#G7-9J8| z`$xxhf29gS&r61!3O9i6ZwTFgF#rT*ycD{BHafM};S+5cSB%%=QK_~9 zRT`Uh*?+PEmd3w6UQ1ew`x`Zv!z9UX*2pC5=0VZ)7I~2s2|)K-Jr)QLI@t;4UFoI( zrL$}-EJ`{_rr^1RDUi7aMfuq;G~AwXCB~{{T-6u(o)?nyJqfoBW)>tweh`oPS5O=O zO6uUhjy(SBb()|x#0Y;QE^ck`-j6bFL{KTfJ1e0h;ZHqsTeAK%6S=+a%k+oIYH4jaa!;7-M?eL}$ zwSuoAji^=g`1)_c^}3mg{Try%zmdxPw@?rNCi3|=Q`mni_43~aHFrA=^xpv$cPEYV zZ=v!2yXZXsJv7yiF_-@Bw7~xmZTCN{ud_8kZil_C5nfs$Zz)Q$@v<-i&v;pw=G$dq z2)k7l9z`c((|?LiVA+AGT@ICS)GFWg|0xL~B zHfgN|fiJT-$y}7xNG%p+);O#dL=BknKaLCg6t(g{ zjSKq>b@V?=o&CG0yZ<=|<%?A5-$N((U!^hr*Y$<7$g0N1FI+2>Iqk`NG8!=pxq{9p zNX|vZ(Sba6Io*dxnR-84<1^x9RhX^kfTTybo}Gq#E&ZA(H@-v~#NST3Ca)*1NsTn5 zgpx^~mK1kUwyOrJ{MV9^G7`SNSr;O%$HOC*74nnpH_;`6nZ4P2Q#_A<-F7OWXH_Db zR8_qcml4pO{6VkYdJclmR70ISK_Cd;I%3@iJf)dOqy&@29{x%J}!W;EBIlo4PB(jD3xI1!p9h z&T0vtZ?}Xat7C5{sP-gGu8`HeD)NNn4mQ|Z>B5u=$e% zgP@T%FxviO>0D@5mpB}4z^CE}-^Q5y3|Q4*+@NyP1i&Z2WJ^G?(FENQ75c#bzUs-1 zw#TpO&6>)XmH{<7Ipn-SVy4d<37;{N^%>_Z(uta)8eBtY?ntzKTK7%96Nymd6XY$LdAi6DhU)&`#@7F4-`_D zKoRu}I4KxtM!f^gsehoDP7Ji55rLL8I?#&F478>xffBkn(1vCP+S2?$DP0w4N6P~3 zX-%L5Z3uLv+XH2EU!a^G3RKYJfljn5(3$oGy3pGJumlFW(ZN7>`Z~~qjs$wrZvhuO z0vN{E7{N~mPUSZOqxqe{Y5YN80)H8p$iD|BsocQ1 zDlafu6$GZKW`QczDsYMF8knJ6fmzBIn5+5*=Boh#p&BQ)D9i@hdPnuN^$tkNEWOiH z6{CoC9IQcaRYyD98Ps1X?QCb#nE<_t>B*ug{65@ifoNUKd(lBQ8){%aMqnSrYjwcC z`6QrMmrH2`BlZNCl}j7=P7S@Phm`#-fL;l8(0xc*h_l@Q{F^JZvn?+60yHd0hx8r< zVuGe=L~nByob8oxu@8cXOvYF@0krCPBuj+CtS)#z#ZfQdX6%Mzy$mjP3C7{9hQ1Ss zRy!8xZxI~pmgs?&^vW>$MK?V(Lu&{q(@-F84z}a0jJxnREDEzTv`ajLitWTm#_=^W z9@^cNXLLOiNM0*Hq8VDM`xXu*Twow7Qd*9Y5U~(f@1|?ej9Hcj<#&@b=zFzl&?HM- z?#<{d>H|4&%(cbse{4!fuLjwAtC~$iE2Laer1im321VMynX46PuA~tfqNfW*nSA$4u?MATbQE6-yqV4pQSm{Qn=BLmZ>l$OP{$88u z;a564;Y7}Qx+pW$NEx)&9f3x-m01==q0AOTnOy^Awgk#-DU}7TrLKWxuGu5W+<}_v_7yA z%Ip@pC$Ncj1UA#7fm`XBz->@wx6_+}JLtW@owPr&g$@PoqHhCt(@%k|^he+x&IsJg zxq?DLy{%ET0f~o`(ir;!^@ILy^74=Lg>8S%J5C zUf?~xGVlSE*+)=jpYU~o&-li`A-*H#4m z$P!DPY!c|f7vo(*BW!V@361c{2uOs=;VSMAB_|yR%fY1i2^3lbWQ4(wh6uYM)L1v< z45VZ09xlT>4&ZEYg)kd+Jrvb5TmU5}^RxEA@e(DMkKV0Jt>i%EK%i}aR}Lx%0&N32 z1`0WY_Ub-^BAn&R=rgzziYgy?&{d!oZpO{QxOR~LqUPFJ8>92KO{>*Yk|wgk^wbpY ze8K@I$jn~`@PL%%Qntb}`st0P1(mw_yT!OE3jB z2LfMi)*?|`UkY-!ICJ$~C%Ij3w#Ie1%`CCcrH%cdEt+X@nM&>BcFuO zW8|4}&UV_DY~yTeHzl;SE_Mg|lO3HM<&$O3j{1{07$eV&b9R(Z+V3jIWNy4m26ST- zVJEqJ&Ft*#=!C`DYj$zAwH|cEX*v3v-Q?~xvwJ7FqR#F$^mUKFOJF2{%?j!y`IuHs zv7Y#c4Qe{2sYONIETCJ({%br!!s;%~5z|CbSJxG*tUdvm=B=9rtajg092T~(c_P9T zR8?43^T|S_>sKV@tqVFO|0uZ%&MtD(Rc^Y;AMTDvun?-dim1wjh1dgx8wE2dKbS+s zK}Row%Q-h#!Ht8RxH#CE+XlOE=U`Vhg55Y6?9Q=Z5AGZ6$%BF} z9u{=-sGz|Uf*w9Q=;diaA72tQd2Z0pi-Q4P77X$Y!4Piq5ERkPqA)i!v7 zDi01;-Gf7w862h}!Qtwd;3(BMI981aj#s0CXQ*+(v(&`kIqHJo`RbD3R5derp}Hn` zvAQXEsoEHvscs9-QQLy^)U&|_YHx6ndM|jj+83#xk4EofzbdF=~^q3=Jr^g(AJ3Z#;VW-C&74h`g7)J(dnPj3*SAU}7xezY-+3FYM z#P>sgPf_1%`-XW$>T@0T*QI&tL)bSVEn0>^ehI8qJ-R_Xr)eNiiBL~y8i)q;fV!Kc zqpl%6tZs!9FBQ+{)%7IKc_VrY6UAjdWMle3%|}O_kQRN0dZ%USzEKy#br;g2pVc|& zpAgcbKh^1|f(mI-t{S18_#$qs2J0%QlZ(}{aOYRT(iuuz_nC0XgJ4X)4!@(A`>N*Z zDBSrLJV@p97iu1|-lJ3&uYr|p#nbpZUJEPP8dcLn$cf*JtoL00NW1uLkcodAea$nG z^Gq%Etch^>Yi%=gS^y-nG!UX7aEkLKppaWae0pkI5tP!{JX~9Q4Rb$T{ z$LIihKt7g8;nY506GY7Rhyei8fYd=i0zV+Zg!DT_v`c{JEDVo`R0?bvV&H&?5a%Yj z1Rtfk1W57x|A*m0zQ@Av2vtp9QTl{|)Ij0C0c|O0kfhS9lZ~2UCint0_HJnGJya5W znc4?mp^D(E)GhcLd4sQ0DEJ0d2H%9%-b?+1Z_&`;+cYxx4vh=GOJ@b&qshU2R26)m zE(?A@^MfBkYwxF}!H;NF@Bpn1eoQw9KcPEo{ zA}ye?7W9CPwV=CftOfjI={69GnKd@n0)BKHYk_ZzV=eHlajXRpY8KXFExHyYePHn- z8JbvTeKjvq?QU&GUEQ!?RhZzqBH;cwT}ZR;!xH^=lTZ(C7V60*As2THxw&h|V1LNN(U6z>g?xNM z$mC%mKaUCpctR-1lR_b$5(@M5P=x1%qP!>+<7-2eygJm2Zwej5n?k*LYp4%z4;{;o zhWhd|p?Id+00` z4V|NUht5~Wg{G?Ep$pZ-(8cPa(4}fdXr{UtT3Do%_2KhLCgT8nFPoI|dyQ=q zQpztAq?G&M)mfyJZzf17Z$#g#OpQ2!S0zX(uS}3q&V_$xky2g=q=Q9Dc@B^c7AfWF zNE8dAZ4r=fHYw%M1Sw_T1Sw@KK}zXOkW!W>NGY2qNGS`zWwQzX-9E0DaTib$W!fLR zN>fq3M&)+WH{m}em%!qgiQAv!1Y2+asRPFIGWqH99W((=&rbY190?YdaaU~BA6g)L>fE*Hl)m7i>w zXcRrWmg~|7O_S0*DMMWQV=D=!;3PT*Tj^6>KMlZ%5$8dwp&fKP#}K<2Osb&*ezbt@ zhh+T{PVpD%iv)aq29^nZSV@a?D6vR2AO_t5F_6wB^;mIIilEwsY>9KD(95`nuTiVe z>r@(ggF1%Zq)wr?$s2lCUk?k*;)`F8R+zzNLj?*DFfM}6UX5jGg_b0si6C8HrJp#+ zo-$<3IJtEDb>hU+Z~)Tl4Ssk{Aqj$u4BOAC#sH+`;J^|g$)ltK?O}lNGi4s(k6?pG zB26>JPsd0U9Q6QYMy8Y*bUO;qwZFc)N^84OsKjC%N(H8&pcc^xu%P?R#sJKiMw1jl zZh_=Zjn>lChNjedr)HbiwE>N0FF^Wfnx>SjwZf?rPx0D7t;=~AfuuO}0haS4Y>5Nd z5+7qrd_onWPpMnzAQ_?0C>;8ndWXKCfuTb*JoF`v4t+%vLSNI_p>Jqv=v%rZ^c~F( z9i|1L@3A$&2NpU)H->(sTS7n4U7?@pfzU7XNa$C3D)bvYANqsd4ioJQJLrpW7X2Eo z!*#;-xIwrfHwic9qHqDX2p4giaC7bvZpof-2?xTZ91UYeP`FHs7vdKY346O?>)2f@ zcG<8Sw?dzZkWm`!)R}h-pXWRsJ!DdE*cRD>SwPYMtYe03Y|rm>%#eeL#UE>ipE`62 zy{UUpgsyTAFqj*Vqga4~pp+cz;g!dA^iZFqdrR0?8_+F)Nl0d*A!3m=uw0Uje}t}8 z9r36UJq3$+DZ7xPcpiU$g|=a`5ssnyfDS!I`EfmOf!Ab<>uMe-jfH|t9|Hc2e;yrV zSj}75_dv2)d}80$vV(G=U!;rcn53=$UF|z4F1*-3y@e*BpLB8|CyXXgC2*q?ZE@F) zEa>1x(+b9>t`F&-Qla z0z{VQ%4>}VKzZVLd-&(GdibaE>fxUVn+0Bhp+JqCSpqmvAOuR;O=<0cQe(5yw*@)L z7DCur3+g66gMBnTLCsnvV}Yg@z>@zS^Vlm)wb?7|WtE29^ zbP?k8tMLh`b3Kb4vme)P3nKj$$UfDlZFpuCa%>H-M;6d^Du#XYGyp_0y(f=e1b}FT z65cG?Bfazlk{79Q!WXgtpW4R(qI8z{H_{d@)4V2SBTJpF=8Ij#E`bXJj3=n6U}U~e z-y#_oVNGTJ?Y^Wf@bWy^WlCx_FW&)~hk>5h~_Q^mC>d zr37onOhqt%nU?|YkJ5Mck7#|%{2c(P zZM@e61jz2etYunmmEh#8eV9s?T5}iHHm6JP#aemytht2wvU6n|uEyUN6ee$4;a*CN z#dU!T=NP*`lXZPNd*ziJ{7`~Fu4KJdp;l-<1?FFzE1haU^?YGy^Q7mj8rics!vQcE&Y> z57sZvH-U)f3hdtuIu_kKq7O3Z1VloDgoj1t%b_nsGmPcw+O~oR1Xz0M`K$wbdAzP* z*QHf_3~J8pp&8b3KwHmxAc1yk>j}-k?E%LXi~0yG`DggPhTtS>s3SnZy60%XP9r#z zzsIxwp9AB*91&X+bg4?-e-nT>4tj?_RviGusY|Z`6E9fzru3}N@Pm<*9zraL8D6NC z--n!d9n`l2l%?iK)?e!!tE%0tdSEVeiyjsjS2fxP|BqZpu;I`ne|wTX`nh&}RLwYT?|bd)?liN+Q4Q#6tYH~)#N!Q2XqBXvOl1Y% z3B25GYK)QEV4uc$tb?h7Y_*QEGd5F(L)=Y7Rnu!!LThZ|Y9o0v$}ANA5?kyWY_V^# z#lFK9J4~Iz-;+E10|mlIC>s8e`ha0!C$%)o_?XFqH zk@{#khRwlBH`O-BDpUNLzQ)Kc3r7f1S<)K+mRRHLQ%B@yAI*21nV-=GuFm%CF~?V5 z)du)A6e*-5&dwI! zEZJMD{^>(e!J|lP{Pea|94V!eNIPmDX-^fA4%9W$k=&6o@<+-k9I2pVBAw{CNM{-p z=|V#z-DyI^MQ27lbaBL_%OXKq6p7H1NF}X}!2iZ&vV!;<6T&nnAxtyk!c?IdT|}7N z;A*)C8ZCqTG)~7CnegHzuosNaaT3_)`_(IzQ}4g9Qb?*~+A5;D5j`auPWMj^1E-uN9Fjj);1+Gz zxd^ebyh5d(;(OP&y8nuJp}IA@dZDKX;40D=3w=Bmx<3|r02X>67J3jC`UEWWU@Y{B z)GIOsi+mCdi43KYkzq7GGMvtejG)Pplj)+!DKsl`D$R?Gq$?w1=(@-_EcWTNC2}U+ z8#$YvjGRZWMW)bOkqc;Fq)H2cMTqr&LI|En2*JY%A-EUX!xDm96GCt^gy2(XlwL4L zQlb(exEA6dga{+?$pd&U2YTe2f!&<#N};lmc%$d0!@g^m?QTB5ZN(HUFG?-fFV_dxDc>N-R4})fvyoT3q#Y zxa#Y1)o-SDkquNH*+|_Yw~!Ip1ZBCI`bKVrqP&fUMQ+DFx&v4JE;=J}4^4{PkA1YA zW<*dFh&)19L>^00mJ1TAaCTx9&cG_{Cm{|Q1$%1|hYZJ#v4}$kgE&Men8VZ;Yb5(* z5P3lfzYMD|4D@9ZR9ecio$jX^Z7WL&?KIJcMX-)x9-qrbz=GtbF9_{`j?Tb>#F7@I zAh96ac*J(jN3$LmAlb>yL&=%W7U)<=@^z{OSSLOsPvKHNi%Yo+m-0ENq!+12WDi9n z(zYU;UHY#kE=zm5j7x~A1pm##B~W1gFNQ-RGr7egSgcIWY;MfRf!5c*r?8gagSIk! zmZ)9Q?(HULXWpLXDZGJGev3*YdMX)No`OyJQi_wCleq=A)t*95 zarzl#M{venAXNoPXV4;X2DNz#hb4#fD{@G293nJ|<7#mdV2ZL~MO1&=9;KU|I2n*3 zlc*8CngZsYi5wE{WL^(o+&7pF?2p&PQQFTo5*+1DAwWUTdUZG0zvrQED1)bSg+^tI zS!92!6M--C#m$^f9aZCCj1z`Yoo>HDV=BwN;HB4Z0I0HuW~Z;_R7sy`(!*%&Y$<_x ziJo#|;sC$4jkCGTDY*hwXeU66JQu&DE!eX3)ROAlbE&gb&ZwQURQ{lS8tpMR5x>5J zv((uk>DQ+tDtj2^f~hpj3XQTfae%+w37-SNHCMiSi`g0cmja@EPF5|PV)m_+n?wbY zYD@Fvrl-gI^4=QVaMNogVv(%%^nbyuKfSP7O#@U|T=Ups*H0OfQqWpXqeRjJ34WEr zb~Qh!$1J9TCkx8ugRqNLPEo~9`TYqc!FTDg5AS2g0VWpt2uk7rl*GqW5&49=M?Qs> zI|wWH8LZsr@LMo+EOLlWiD2khg8Bfrq&kzZ+7b-qIKC9&E;6M9`}vb=Yi1%JT%&nM@I8_T(l9N z6>ZE@qfPjdXg<%57Vv^-Q(hV^$RYlaRx<&me5)G+i zqEXc^+Di?L_EAHk{nUtPe|2VbkUBSdqPi?PRLzZ!Pz$1`s;i=-)wR*n)XmWe>fY!? zwLLmX?TVhOUW!guuSTb-z0oT5Ui1?6Wpsx6E;`FW(YcPy=zK@r=t4)s=we5H)N1tK zV<|RUX{%ptTc(acX=@TxbqI9-b)W*ft4|OyN)&0T_u%QR6puo^8F&19tC!(XNcC=r zdIFBWCc#2E-2(SdR9oWU{`1r(7TPNr$8sGC3!C8D&&6cNk630~U8xoU26;1*AIp%8 zkXC-owo=m($qMB0Hg&e9k#0m=)dVC-_QMZ)T%CkaPR0rBQUj1A0a-Z6|D#B*$~b}d zlnJj?#tD25>KP$}DWsoNE0oFary}}GHAR_xCXydnsv(jjvr!Un%|D`pNg$6M_#4m# z%m(Dq1)7=5@qI0jM0;HWB3ptE;3WVeWgN>;eoT`Dv_?UE2S@@grxHGk?*OoI6B_-e zqR_n-kJ|E5q=y9jSPJTx87Pj=2IO%wpX(^YbM5&qK7-fc7j?kw#$mi3&voQyco5%= z_m%N$T#1gTEGozB#sF`|->5(fLRZHf_~uT0gi8Q8y`MU3OSV+^OZ`k3+aif!yDbWj z1;3cg8>4Q~uh*!R>vGGs`1A7Sq)%9dm|EU0?ub+S<*3KNJ8xsN&ENqJ;i;Gt1VFiU{uR@}45Lstc<5>o&*ha2Vmlpl5ZJ0m@>4^y?yC z!#DvDdr7-~lkAQ{*D@A{8R$cNNP3>#wW#$tx2Nd4EKzk5n5XA{65(4?pQ4k$O zS5R?uC6z>1QTym>s)$}k-J@&B6TO~-(Hp2wbS?Fd-blluH_^!GIyx=7o=%V6OjDv8 z=+fv$nibtl*FZOqFZTg^gg;dx{WqRAEY~@57UFu$LP`Mlk`;dY3+Ym;oH;p zR;F9+txOy2t&FV@-^$oVbFtwv$OAXk8dDd<_Px&`92b3P1|G{~kp5JKG|+0S-7xUD z9>8mL5VDHW3G&cZ=E$~>xGH%O(F>N0A@QNb(pRpyypPIP7+b+s6|3p zvr`bPXvT3ss}PM&5{b46kw`eN8B2l^i~A6+Efdbx=0-+wo-@gHg(rI?>98QyUb z{0@pfht+x!tMw9AYd2PF4_51Ctk!E3j=o6)qHoivs8!y#m;gp6u5x9<%MIZwiEgGW&ZkD?A9{g~QCKcVvIr{szr z#5MSgdPP5{W20Zt@zJknQ1n|G5W z)6&L;b!)owskmBQ?N1rYSkNfx@8}4mT59j5PRJ;fQGTow6~{VLNvsRCk9DPrSU2hx z>rUQS4~oWm(y=iY4T!lRwFactL#M^ObY{#)Q(`7v9P>kB1GF#(g5Ow(R>s1#HWq=@ zM(M6tj2?(pLUMc2ld)qUy}jw>SRdLK>qlS4`qR&`L7W{sk?X~Va--M?ZW%k3yTnFw zD0UiG#wPHwv5DM2Hi-wv&gIdu$vi$bRZIQjmay1T&wXvF=U#EC_i|@Qvq*iEOJVF} z5X!OK0@)ZL`9BHeK`HTP(W&r(uY}(vROLre*q6li6bvwy_MJM&ZGHu!*4bL>KL$uf z%Ki&!9}0c~`CLgagXT&|4A;_gabP_fe^K09so^qP0g@5O=ks9Xkw%_Ic>hWi80)~l z71Lo6zrIFI?98a`mBlwu!pDQng>BJkQq*B!SP}?EjR45$k-nq&4E*$L{E^j3JE~`5 zN7*J9mF^6XduJL!sd0$meI9~a5I4T^Q2eosWk_5-2;p>U6T6f;#AZ;Z*kusHndFYmB7bZ)1aS`aiOq!|&Zm=Os948P zsg7MkSH!NRRk7t-Ff3~I)wW>3m$9-{9iYf8n4TL-O;8{Xq)JCZ35p$$!Vi*CStfj> z6CgH=uvoG{ZFN~JYEi3e+iqER@cdvA5;opl%jN$G7hjyS&#@z`oC*Y#Mg8=y1RQd#Uq>K?m^Jh62Y zh^?ns>}KeU4Ops;G$eKlmTMD@iEXBHVz<)d*lko5yPaml5Ie@U(hafuXnkxOZHhfe zcf=m1t+B`Gk=T>a7theH*e<=SmJ|G3Vp$X8ML|z(#k1WJ8A|q5h?zhMkP$?B{P=~6p{L+qI7q0SgByeua%5~J4^r;Ce zr{gHSDYwGm(-sZ_VQoflEz)X4Df5V#qdAr9bl#Tr zty#B8*7tE1n$#-zKd-$N1Zg1VJ;b;+r_-5PM{w36!+Q8c>_x2j9<2DwSn*e|;;&NI z*lXm9y-sHA4T{9jUKQJm6@LpW{x(*8A6EQ*Iz9FQO^SU&m&87!D`SUXA-<;NvG3@* z*bj7L>?hg~`$ey?RrlVQSm6b>Mu*2@t#BDlN19nyxGP0g9)our0Mx^(dt1X=hEQEQrml{wb)54ReEO^-QvAm9 zBHZ<-uWd#V&d3SZ<>92Y4b-}};?LHETBWRZZD{drY8rxHA%?G0kqM~MJ+|Xg(_;Y~ z(SD)2J70S+^(CQ;n{m$i5;9}rXf6s}PYR(?uGO91(EemPz-o-ZtHwF=kHX z`Q{6g>T5t*naOqQ)N@Sr?QY9sw|?XDxLH~WixuEvN^q3SxoO%wxIo$E$NHOR`gwEYx=peg#N5- z!`YQ>Ij^#miz+*ChstvHRCeZGmEE{+WltVZY4C}aJ|0tvMxM$rUr-t2ODd1yD=UxX zHI>Kl=E?zlXXOcePvsEaRymA!R*ukn?x-cV_MYQ)_MSsih_&bZAhfjF6Qh7WNsSQ$ zU-$y;SpnnE=fShm7=L8BER6ptJQmHzbFojx@+r`-5<8sF)_`WA0I7tJC0^7l4#39} z@Z>_&%7o_#Lz}r1d@P{@eTWruejme&dWwDpFiM7wzChmtU@TSAFX(mM5Yrd{=a*Q> zo|^#l{0uUE7$--6(xadV{S*)>WF`QN`jnc&+q+Yh;ZY$MVGMLR9u;W=f2tn;)_|Nz z`yU_EJqT)nxMBJq>U8kM^q3mlCABHY8wr^YXb0e8fLKOW4F9Y{=!;OgzTlCtM^eb1 znWQhm|3P2a3_h^!pkY==P=^Bi9{Dnm_ej2ME%IfUII_+0r1^K1?JC`JTfM)k4Z5bJ ztQ<-Cm17|CVifdZR2Q!Z32z4O{VK@(`brq297+u zEt@{=NiS*7HI5d1E(69iFnY8)k&Rm;jI_W^gL4)bayaNDIcH`2NC3g=ade(b`n^VU zi{$_ew)DvAs1m9_R?@b>F>Z%!)V5U1YjP*B=-o;#I{NW-$as^uMeknvqL+dm02N-+ zS0$4WhC(b^?2{N1pkOcLqu3V>8Rgs$ycEF;37jQLU+)3vHAChrps52uzJeuXx@3I9 z18|n$<{tE1p#Epsl%P&c zZ?-2m&9SvNVDA zvOf21COruiwg$@V4kT7qDP^_}Zm29}pbL-|qLi@=%IpcS;x`ftq0IK;w^!qQ>qzi! z3L>*B9to~OKBaYHQD8JfALSsBr`?PLaqR6SkA2b>To_=mB91vA%~ATXkNPI95c{iID;4VL5^tv3+3p95p3G7CHMFlef zDqnRPq8IZ;qGBuA+(+qj?}36W<838bg$7Fkp<&i4$|b5&jQkN3LQKp`C2JKthOcCN z5(?KkBN8Cu{Xvvg$y%)_sVkfx+}VLUm(TLllLR?cShD}oEX73L$GH5CY~V>baC5$cn{$TA_C4I3A0X*JLekGd(tqNbwsU-? z?PqRkI}exV7w%^Jl{MRM9JXEHKDOU^knIm1VY|rVY?pYlop^!W!i(%FyvAOJ*V)r~ zgZ&ELWUs`J+Ov48y(;guSLZkEwfK-dhY#DYh_68IKb&Zn8N296L_WYg-KV?tW8!G(7uu|Tq93@PWL;*26Ns=E!_^}zH zItoFk-d8*x=yQFNWN7!)y5@fS*Yw4Zq~*5P7HKY zjI^;~DnBmO7chT-jKf<3FPdU%Omme~Viq|QwJP@Gp*Y*^{#zx6UKVzu=hG+iSZ7P? znN*Px(kg>xZe^G?S*d|!U_nlx2MjN5QJ8Z2IKPY`_?VF@^Tg$>W!3NEiEN$3ojF;k zWZcy%Um9|#w%Du+D9efn!754=OeOp}*w!jbw9ReMS@>jRjE*B;92&CJkNeJFSIY^TkOmEHv0-*Z@+^#+Sl@CyN=)dNk5*ZqF8FW9*d%i zqBYAQVKN)tfyb*n1+r6ot%|LZL7+HL#a1aalDopWSPo}*Ja>R|u>;~T6$M?Hm&QmP zZmjasAeiF1a5&`1v6Y;q@>J=x0U{?66B%eaA!MUv9JK?P>~HY9SI{10vR6W7R6wTs z2%6Po^X4HsjHZ>%$VPvJ%=BHzk5tCb4yX(@M(SWFgXD(ANF9=6cFGV42tdjBCEk~< zoN<%~(d2oKsv4?5NxteQDKeBmF_;0Emh?EK7&O zWYrL<5>%G@6qKkGS<9$5qioa){ypyU0ppXe72pZvJHuK=`V8PpDKB5>4{yFqk!1i{ zJ#jY(B-bhO<>6>u!}Fm9rEs^(yh;`0J7xp42gOs>nyvmUo(#5T8v&slTC-E4`hEs` ztNw;eJVnTW2DtVG)j*Xkxm~LnA662}H(0VH4zpHQ7Yu|SG@xWmga)i7@6LiMF%#^F zspnB(F4U26@nWAW(=VyT{fxNb2;h-5h9g*J7n=r_R$0Cvr-3CFwc?_Z44JAisbPyX zuPUPJtV;1Qk5WyE9I;td;=XQn)#BeY#u%H3u(QHnQ=Eje<>T1Uz2m2%Bw?7J{_89fEKMtjaK@RpOXpDU; zO|);LnRaws*q@}u_NQpMeFv?!KTYfGMRdP?Cp~W8MNiqEq22b~P-=VVb^Bf@wP)!Q z`*U>6zK>4YpQp3-7w9+pe)`k?B3tY)afbb6u4I3Ot@c;Bw*3G%u)oGl?XN@09po5Z@UCRxdZI|?bj!`q9y3`M^JEEcKA(rulqJ07d@|}? ztwx$ja?PgG{g_1~xn?uyaekfduv`J9`4qp1Sa1cD=5F2#r71giU*M;akdh_5*Fmy9 z8xdnA&{}VTBE1Zy`3bK_`9ZR_9OKm}^+{GfOrK%d^;?C`Vm^)J?8~O#K&~!1`>L`P zpt7~deptCFnD=fH-2qYS!tE6ZtvWh7TPhG*4Iajo0W(_;h}sxjStBU)T0D`HEssDQ z*H%h+JXMB2HihcwN?7vPVGcHuA}VKvL1B8nN{tuLhsK~o$Fd~)GJ;EFPy~{hGR#Du zaZ$9+2we<{NO)%zRYpr!)4Gp_>TEvoRmTg-a_+VFkd3rY;Ykt2_cZ<0FdWuqALhHipu8kAh$Cf%{fj zMyr)ov|2e9t>RTPT8&MoG@@0^gB%4GZe-2_{{oRMm9)e$?6X>ntphZ=u?`qAY1J3P z_-+_grbnx4{um}%T5HN^wX(dk1AMKXC97u%{-u#tDl9?XQKq;GE!HQgRCiW-oW_-i zgnv1eQbw%VRf>PE98#c?^M#3EXsMdx6ml1II+CM4WjY#B4M$_japY2CM;o)q&Zqp(9x25I$BXbM{645XhUNhZE1=lpXNB)(T$GwbgQESt#TC5-Hwj5 z(b0(>b#$ifjxMyzaTV=zbfs4u-RNyccRK8_(Ps`jed%z}w+<(rbGYbthnp@tJe=&% zxPrsWSq>l9a`?HvBf!lZL2l~^aVJNZ9gYb596dPV=*hhuSMvZzFCOaX&7&QCc#@+p z&vx|VMUMV_n_~d4ae$1;F_0g04C2QegZW9v5PrrnoDVog@*9pZe8@45k2xmrS;u7l z(=kn095X}($83@1m53TroxZ?9A2oz z3$NnC2wY{e^xgb60#{jI-N*-&XIc)Qx(muv(vR%o?Q~a4GQQD1eiUBl3Mk{Z`EIC8 zi5EW1tHd09N(K6o7pYu-Mf#TK@>fvgmFOH#L#|)qg@5PkVHz+Hn`^NbYIH6_-TG`7 zaxOs?AQ#*4I$TFK@U~5%wwFN}JNQb3;4;+paZM;$i5H%PKv|-7t79neCzeO?s0QBi zhPZ@pRZ}V6k*apE6_cwBJZ|wASD-MQnv#N0*HpnK#5Q4wfe{a98>IsPrJ!rgs5n$o z z(E~Sl2iQ^I#(tfkJ`#(3vARRF#w-*6vbH=_#!ik6klqI%y$?cqH$i$gQ%lD~)XwoR zb#gpH4#%V9b38^7$K%w;v4sXY(8=Z4O5+{dAidjZhT}<^=Xi=1If`ht;~CoI*bB+s zM_V2HX@^6H(T>m;%Q)dM(ndi-&d8GK;g&c@27=%QoN!s|av)7BoeU&%Xf&J**;hRf zB?(zUP6c2#0Nj8);q$01Fz?Id3CA@xR*>1*#jDEt-s`>g{0JfX(M!rbO73mS4E(`{ zu%@5J?QPG$-P`|$HI3VPX_m{xMp@|P4Is8*O^a{`3MqLa9)TH!(f$kx-DH%Kk;eE6 z2@t#zKmtUX<`V@KjSr0_Zk4S^4SBFEBoD(4S~XErE-|DiW<1qzWJw61HA@XC%8Cvt z$~Hdz9}Rg13b2Op3pHT_agDW%=OxEFpG7MZ20LHKuWPLxE$P&=)|4+ra0491mDZ~0 zEy9qZEZm9F$PBAz$@1>Xg8EnoWOW)O$jLu8vnC{cmN{{2R#y4A>Uh=_BCh;nCT$8! zO%Ep;+hPnOiIah1Q=qfr=dxwjDsHe7XF@9m_bhZGO_7tH3$0g5dtP7OG$>}jCjoCt z4nVaXfNDDc)pooI4S)_7$J?;q@4$W^g8hCM_WM29@AqN9KY;x{4Ey~d?Dt2|03XAC ze*)?Ml$JR@gZ=&-_WKLi?<4fE<0$O+G1%|p^rGWSdfjn?-gSIMpE|y#2;5v>Uxq;&>w{ZN#9USMltK(;OI?l7-@eB8K z{L1|tzwr>q1s>!0ohLf};F*q#Jl}DN7d!ss<&Mj|+DUw$lXuVl(PAv8%B4?g4srN?R>+nkhOYPv{odT>9k$sBCuM6Z?sF)Q-M`^ zdQnt`eqIWj|GKD%AZi(G{=1?K`h1q-+kPqtet@LSJkA%8=$6(03w&HO1{ggP>7}=X zWWvbeOnz0|gr8R77UfjM(VZmlBQpA`Cq?J&qvqTR8(V6VK zkpD1J1#h`m=WP*a=Qd+Gyu42TZ57S|G^&qHlE13Zqq>6uoEi{}a4-<$#pmC2gVd{} zK@#V%-;&CDK%7D9UAjS%${AtZ;Dpi960;yIMak>`c{W~!ITHK`!xHa@Bp9P&d{c<= z`l#AFh@Z+St7N$>O;bn(dMK%*)7FBoc(9;+DVq3SCell^e#WJ`kgGRRU1>mK;PE8f z7FlkvmaQybP=oJflW6JjQCzFhW@=3298Q_ekyOJuigKKzseyA0v*<48 zY`V`mhc-KJpe@e1w8J@%_BiL$e&+%@=v+vjIB%veoJ;Anb2R~e z+3viD!_E!d%lQEJcW#ne1m$jZE(|S#{IyYb?-MaQ zl;C)s?T2fI``y?7UECD^b9yx5LB3g^oPFawxZ3VGfLuipbh$7_B;B?xL z$YKo&>lt(q1+y>lNjk-OM+M-0Ax3d-k)k89JZN2#xsQ3N7=@53ZUMMQx@0>4AjIM- zg(T@;QWWSqIC%mW-Y`xS2AHA%mYedKNxLyUwsP9QQaEm$k6>3H$8J8MR!{F-m-BEX z^FsrqQxZ9D(gv6O4oLYYK_H7mh=!Qop%}Or@_;N$N+z=4=#vAGg(oE({MZq08au%$ zL*q|y)5`L>Jix^yBv$EB?N-hwacxiI#1`Si?!-0jq9)E~sI7A^PU=3K$o+JKQ}@R8 zcB{XG2Q>io%n|IjWI5^qw5L2ZQcqS>zIC47Zl!M_svTXqz1py0r7l)7ew%1m+=dM= zWwA={wkon5$H2_0$+Ghhg@oi`1<6LIRk5{DQ0mx%6yN}o6Hbj2PK^^zjq^>a?|cg) z45!BV4s~!IqVCRj$?g1re9n(3#VMm9kSxG&2ag3CkHyO&%rJ3xJUkB^N7sAAYwk zB9Fy!i#4*8#Y$+_GHam!7%*Z@l9?*hNDw~)U6qae99;R%P}(@6{r?4+)vSI1F|`vF zR&TB9Z}g2v`*k;ERHQFrz5dpI_bhWF+V$sXsL$uxNrN~^4ZS?b?{Mjio|bdH_FHq{dc8}M*Bu8a-YWJ(VPU){)d>8 z1lmxO$e`46a3a>$ED9GUR$gKmJOw<-sve&flsUYtT5+#rC$Jf)DNx%n!f!oq=N)W} z@QVP!PtFq%tZyJ#Cm~p;plQCPJm+a@?);A0JI~Nn&hN?L`~iaXBlU2erM}LeXt47f z?BdTf$$1`j@fVus{1tZbH@e+X|5)p@zA2CsJ2}tZVxtjCGu2%eot1W-&YR@NK9r=u_3;*uw#+O}ok>qlTOqV9CE)+&w zA<@j$L$r4F5;j*~;dTuWe%BxoaSauNT-S=>u2Ev5Ypj^>8ZQ>PCP;-uaa^%${7Whw9;g(q7UsZ*>JR*?8st6;?F>fMPkXYas z_!Yzo5(|8Yi{Npug8lr6w<1%x4AHoI_Wpf~B;Kl1MJZ^zJM#@n4-^Z6!>jF*O(jZZM5AOA)s`aR1icbh#lx(od7a!qk>xwdIh()oh)rjk`JBSBe}NExEE zJj-lODpYwxv-7spx#Kfs7TYz2GF^pK!!@09Tr;S#YbG^!&7wB0*;L?~LtR}rkjFKb z0n57)T1Ycpz-+h{(<0Z+bgOGAt#d7>$6PCDo9hmG+O?K; zyY8lau6yVu*9Lmc^#Hx)+Dz}c9#%$MpE>?_y||6(F(54T9+pk;YV;nKyK%;4mr_^c z#*H49rI04+3lF9#kQW(IkEC&&jBGsk5piE}7DV4Z?W`oAe{LE9%C1N{(9EP067Xa{;R&NrA;>LL0cHo6Q( zPg|1gY(EIEKtd(Z#fI8kV%v7&LHUaYl45*|^7O#W$z+r?Z!t%03_MD5J&rT86=!A} z&dhdd;ChmBT~ARn*A8m!dYU@Aim01wC%Ig^$nScFu6FIF{;oYV+_jg+xSpj6uIFj4 z3o{g4uh4qeYqZhz25ok|O;5SrrCqKM=vmiCwBMx@4d|V0FB*Cl;9w&UeScKXc0^

VLV{Ul9{DHz=YBPlx%#15KVoFGcpGLv#w_+0DhQ` zs!Dvn_K0GgY&Z9V_o0VMAr{g==zc7xX#ji z*H5(Ab&i&~e!(fZfKzgjw!1D+-cs$TAj^uAkXgw?gm2j+=+ z#yl}Qq9>*qPLa%cp*BYw0hBn3P{4**`YF7YjQQrpTFl{COzpRRQ`pzGWXX|lT! z-QaFai`==i%$-N8+)Ze`yD2^3Zbpy0o6~l83)+V7y zy1UV5ZaW=wyXXhEMim82-UjTdaco(b$M#Y*f_2kj z9KGc@wgGfk+=9cEM7;n{Tn+`6jH1AP9KG9cT(6~P;0nr;@?@CL6L1vMpce0hv6Rha z%aHJq7@e|66fK2&_#}?)dfOvcoY(KIFrBWK~|wy$f=QNcf+{0|1>p{u14{F5#DjbVl? z1-Sq=RTxsC9tM8EB(3lS}5YkRY@u9Uxv+Fqfm?J1JMtVVHPJgaeBrP2zz!I(lr%fnD8v_Vj4L!r=y zL7@$&2JUOAnR^5j+DIyJkAgxQO`3ZQh1_GQxBEI8=pIMI-Q#Jj`+Az_oy|&nw62jfXFzkJB58x_~}TuOBLj`Z&EFs*+fdUJ{zh4pc&|uoDnP`Z>s3hv+ z^qN5ZOJL?NqAGF%a$NEyR2OA?Og5(rq0mEB0k`}^p@(E9;3d=#^>KR70y;V$b-{tW z4LBlM7rd4q5ym*Z^=ypOTZKBKK2Gme)EQ-6a4E(l8{_n5TO_tf)&;LO$LWniJ|P8l z!EHPcbw&)c1y5kel8bAT>!edZ2MUsg&bMqXwQb)XYCIJy|r*Q-v0LvgvkDRa)z@(gsg8 zddO3qws>mL4o^+me6vfJv!;RlFoSQ(=VO|bjj0@EuKc4 z?rF@GJ-J-XlgBxpCfvx=l$(2+aYs*c?&fL1nx`d)J*~L6r!^1swBc(#ZF#IGpC@_R z@hne!Uf}7#OFad=($kUe^mO9;Je_&7rwecMT*W&*UHLgrH-6dEo!|7>_&txEKlWg} zk;lp3cwBtOqwz(LU$7@6DtdZ|DxO}Vx~H$G;~608dj^TNo}r?<=UNf*j1s*)W5oc^ zcrn^DQOxj65lcLUV!3CgxYsjBJm8rp9`@WQp7tyfFMF1V4?MSuPdvAYBc7GwglDxl z<+)RQ?^!4Q@Z4)j^K7(acpkJ=@;qe8_B^62ZXNEH!P$`HZ9~^riFafw2-?^3;C33Avc>A@*dMdt}!j- zGSfmXGA-l`(?U)%E#xTELiRH)q}Q~N4%0$jWm?D%x`pI#&`=?fIC*@A^DK{H)tV@) zxh85goBo%rro`<0dzN!vNz2I*gvF@{RO4qd%rD(?noSmR?qQ{_l_pnC*(S3bC@mgA zZbQvML^A=LuVBUh*9}kR-ElV|g3G%#! zWjRE(J@3+$p7*Gc=P;D_N9t0+W`YZD8@<%pa7m4!vT_bs3ci-iOQfTYe+m88(V?WbFu4&{3$MV{n#^Lj`>ac{>4T=_@!( zUqc0b183c;4FO)XXyv1q95TborSaX6P%@UaF%|CvveNL z(l2n9eucC28=R#JaF%|Dv-Ag?rHgQuF2Py)6VB3Qx}*_XH0E?oaAnQH)wCqe(UQ55 zmcq@oRPLyyaW}0DYg$9uXK59AfmVr^YL$7VmdST& zS$v;Xg*R*2yiKdhJ2fjmr&Z&Zwd(w)R)gQuYVyZgEk2^<@b}u4d`@d9ELyHe)0&D5 zt%azhwHDc0zG$d*5N)(h!meEW(_<`!c$ub8C;#5^r5Zr6H>)mm?Hx7JTQ zq+KI+YJdU)dT~^nB)-z7if^^);sTQ^Z}GmN zzQx;y`WE|5=V-6#9Bnb3qs^vsbeHKItu&pZg{E^f!*q@&n9k8?(>dyEI!7VXIr5m! zQ76+mYHK=2O-$#gmgyX2na)vp!#U#L4d;l@8O{-(Fq|X)+;omMo6gaFrgOB?bdHvq z&e08~b2Qa-j>enL(Y2;?G|+U8!lrYina)vH(>ZEoI!E$eUIAAR92{%PM_P zG3kjUZ!~>yyMiBo@ZU@yq+-l7`c9L4|Hu)7VU`5c35Gf46&Uzj09AgDvvarnwVi{j zqX>=u@5#hV8aNeemy@x!qKED!38DM8FOTkiJQ#q+mvTi(lhO2#yJ_J3C|0&6I)gd%`HeO zRF!wHS*yyfty;(})I!^q@!pdCE`zPL4VazrCY2`GgDE~a@>?T!4qm35Sf^`kybh># zJ+#Bb25ZM=`N$^R2C^BZS$;$O_1f}bH904H5FXKpf=0MY8C=jf!Nf@n+y9uPy`H3$iF9fl}w_O!mO-#_qU4tnQTr??2}2%sH;9zYc2WCge3Z3&*#Z%5dU2o z%I{(tJkzgaW$UyXC{x226Kw(IXg5*=4Z}mUh1618METlc>ZILF4s8kfv|H$EZ7B`V zZlz(`G8&^TrwQ6^G()?c=4mTvkp^xuZ56H5?x4H0)pWnMh91$@(l+f*D$?$vecIjh zinfjpYU}A;?H>AA0{}|9kG|42(0AHKImXy?TZ+Hc}U?GLd^`%^sN zW$~~#No?_^if6rL#eQ#wc-31$eCVw#PI#+`Q(mk1-djVQ^VU+fZnLh7Ok4MnY3tsL z+PXaP8f={+-xn{!*4+d@y_47l3n#%G4zU%LOhvvg9!9ZUk?)H;0RU0t`(g#a9EyBj z+yXF%1pLepvtZ#Afu@*(Fh{1!mx+;z*B}G1`2LD3syy8aWbY@$q+PvyCaaVm#r^K?M(jv`gQj{EZc2;A%OBWUK`gx`>=r z>i_+=M^jmn>ZbA5rA%*qs^M)wIo^iU*xQJjc^gw3Z!UHA=8@gogfwqc3VNGSPj7ST z=WRhlye(;rw-rtCwx&7WHnhmwmX>+*X_dDf-R*5p8@(OqVQ&F#_jaUR-cIzQw==!& z?LvpV-RP*-PA9xBI_1^qg4fSwydf^{1xUgRkc1Z?3GV>T^$z0p-l5#tdo6eOj#LQ& zoy5{+C=_mJC={-1IL~PQi1y^6hbG#G&nZwSswa;wL!n5l&lvhxDT-7)f7a;9Lk~@~ zCyyR6dh!4$iT30{9##VRik>`L3H6|Q@&KujWGCp!!{3kg025Mi zs_kOKK?YmP#m`FoOAa`*L!uQLI73!d&=+8E8lVOI(&B)aDx{ zown$NG=SuWlQV1+DdGNUGGJDsS5(p=l3r59;)VV!%r2ZFeWF5>U{Yt%F4j976FWuz z<{b;M8xOI&9%46v8h9r{>?T3%CR2fT3fa6ZJA;OMXVO^jESl(@ zO@&^}srKGLi@kFpdh=+dcRt#O$5u$e!J>gwQPkR^9Ztr4<-^~!eCG?K>7W&Y; zl)muZ3K3jJr@hPRXYXzFhxc}7?+Q-!uH+2wYOdkElXJZ5xTW`A&i8KQj@}2ktM?&x zcpv4fy<7NN?=~LeeTrv#u^ZlJ_$KdOUgF)y%f0(~mG@=d;MGSH=;Uu3O_5z_itId7 zWG5T(E*Ko6#Q+{?#Jk+vh<8zPj>7ZUX2iRkZ^XNt3mdirKEOQAG2&gW7L9i|BB3c8 zZ!<6-?1B>V^7J&gsU_KlB+>o?#U!0X`$LGf1kQg*ufyJ_z}|d;pUYu-mFYAU!OCxj z4}g3JDBm`tjTXGid;(rW6#)6}0NDoGXq7z;D;`LQ;uF;}1K1o5}5eA~F zECpY$Bf~D@0ZPV@{gtK2{z(|cDv`FoHv&tsLp%u;P zriF>hLShtWDY}8|O2svXRTAyT6oO*b_hO2K7gHp>m?GiD6bbJkC@dxp+=zo*~5Kd{C7BNPE>X1zag z9q&1A=>3_SdCzlO?=RfRdx5>)iyZV`=AIarJ=~YfqkU;S-dB!i`^xitUqxQz%j7k_ zY+mQ9#v6P!d7G~eKkcil?D!Y@i8YnN-KJ7lZ7PMEO*_88wBs`jI}ZMts2xXVj?SlZ z6KwMe1%6!0d9cvk0e)P`SHihp3Z-x#XOo;eRE{=t1=w+k+1<*i%FWM!Sd;3PDNnD^ zkE&nh3VM@HseYLXbQq4l?5M9upTqf=E`24ofCf$W%T(q%v<413Ff`l@s_0vMgDj;0 zLek#jJ5@0hKrwp{)*E5dz2Zld8YuQt_|E)z)b>{~{9?%e>XP!GENePBNcl{Ulm9iP z%Rf>KV0?vu$_dRDOvNd({3>Z+!I6*QL+C6>9%x8QN#;jP)G>Z&%mj-uJr1^(F|r|& zym6)rHEfI$j*~&k6-5{W7geud-SPJ1(N+FDL>z8tty8p%7jl=el^@# z(*LsYP-dXeYzTGcS6zrx(Q%mcP=4(^Yt=09AMTf!lcFS1P$xl=)Qn44DF35aGe#mY zq#7_(D&1pNdWEua>LyXiWLHQ~Epm{uaz+xTDJ!KDBcsi-#(lx8YH@j-lI@5xRa2N% zJMI@`4`QrWgbM&vCSL=}^fjg$zFf-j&XG%)qJ(D7x(k^<{`d5Jkr;f$NBp46kmUy>l?reeS`Q8-%x0= zYk8Az6hG-3%lm!f`BmRU{?IptKl2sxY2Qr#!#78i^UV_#d^d_L-y%`pw?yRnZWYaa zw~02sm7<$(wFvm`6#aec#9-gO;#%KEG0FF!DD+8!MWe@Xx}g=(PZ+K2ir!JJ*g!i{nV&*TBU#4YKy6q~8L2>@A~7Mq zAI4n5Df$xWh)UoDn~y~Q8n{Y-@=T;WFqN2-c`{NSOW-P{^L1h#G;bB8L5A^KJj&)= zbQYfE9P}8rWEbciQ;;s{!UahFFGae!BbZ(jb%%U7KsiBmv;c-F#7KitZMcU#XNgN{o$yud% zgUVvu%c)6V6H}DDdM6=#GBg>&In(nN=rBay0{`@$AUQiWAvcdgeMx47yG%t5W`s=3 z=*;BJWiS%46lMh9qmZjDkf*K6g8l<$gmopq10ToHk%P8&#TkqB=65Jj2hT%JLy}Nl zKyQDP)JgIKFUO!Yr0cK3PdewP;`XwfwuUzEGMJLbSLH$3{)$;!X5V$$=r zC5jJ_&q|HcFC|;lwiBcCVKiOG(S~OX;=*t#-&0teA}F1mP&&J?NY7B7Z#T8{?V$qS zUh3+57K-ON^7{5s*!Mj3_Psy@d@s{5-zzlQ_bQF|y$Qwh4$b$yM~i%iX{qmHy3_X= zZSozVCw<4EbWW&6*N1TJG6WQT6bAHSZB#(>a2$~^7|e^9MHW`9|n>l;BtMZS~R!_(Nq@34nwu!rAc4}YLGz8|Tx z?=0DUKau7;M?v4u)XR4s`}Yfs#|4_`yGT=gmuaS7&|H5q-Q-WBCH}H%zXs@6Z0^^1 zbH7GM_p1#$Y8IlO#zLLZIw*6^Nn|G{a?MAfP}Jsf`!oQ%aEscnq3AEV6>^lO z_NJcVkmy5Y3@1+wL6Ry%v_N+BJE=0TAsb6>NLmj5RBPaT7sPGI{iSb+8MjHal0qjL z8={B_i&4V1%2x#a`I4YtWlIp4&DB{5Wp)G=q_TO+^HW2>F_|pg_^eXgGHXVB@+Rh- zMZb{on|t*ECRXTBY9^nw%5N&~ddZut|cbNCHj;l!dK+FW~p3PB3qss8JEaPn^j%v zdo0!& z@>{o%H!bB&E8LhdIAdT7k-t1;`YTcmeeB80dbGxWC9U(;&fkVB`P;J9pU-vu z?YObOJvaAv;Cz1pclLK=o4*rl{>~isci}$%tN0p!S03T-#^e0md9vTeGyQg+?|1NG zzmu2yUA)@w=JkFLKj7E+QNNd;^80wV-_Otc1N@3V$Zz;V{GLC|pZO#FrN0NC^!Mbm z{;T;ne=q*i-&-X6`-rmszM`VPpQ!5ZFLL|?M6UlD(aJwibnp)mZvSxM^N$pL{bR&v z|2Q$;KS50PPZrbt)5IMA46(pJTP*g^6>I$q#6$jtVyFLRvDd#;yx?Ch4*6Gz!~Q$O z*Z#HQwEu4LqyHXp-oHWo?tj2i*1y?uh5r#trvGt^)xXtJ%m1XMp8sh}YyU1wd;cDb z+y9)UkN*YBHU5_@0#fF?x7R#lFQSh;v@Lq(!<^^4j~ySJ?t03IVg*O zAXNvpQFiB4q7TJmYSu($lpNO}@hC^uoEOXB$Ai<4E{a9)za^(%IZ-I);k9h8Bqm^t z%~5#Rb;V$nv#@ew(N`?M`>Jui@F}mmI(HThlpJq@hpmbBd^Uq0J@VoWEOY=2v5c5%xe3U=pjqvvC zBZ_z%<;uAzNbcqX{2)F>_U>#&8L|xulAnQ>2+x3;q>xcjR3Z(QSN1$V|zW zlL_AcNA5;B-T6qv9oS_v^W>C|XN_wp?tQ@2!vce3UV*>y43vmjGAjl@L^4!aOR=;6 z0C59GjafP?Z8{$PtBlP*x2{>h)=bH&8W$$1DIGB*RvzRA^e;kJFOBk{fFl1lRF#p#y&i@Tf^Pi+S{!_HT|1I6@ zKTWIr-_d&i8QSFkp0@gbpd$Z|w9kK*Uh)4#Z}`vAA^*=XV(00o{}=kk|116I|BWvA zFEIIk=M?`RoZ-L7nf^;$-TxsnR^COxL+WZhXm44 zxG%?rf$}^nP?6^aGI?1bo9_u!b@*ykc~$DNFq^+pho9FQKy5pJ*ZM9 z8T1Ofkus5r|0t+WrJ}w9W#)!Z)Kc+ZK!W5XUaN@Mp*;SIOgLvSi;GZUl{pUt@9Xd= z6A8EX75XuYyV08p{aA$q^t?)iWb+W(0?cCy6#pnBy*D5gZB^>;8b!=Lkg6H#FFGSs z*LEgoLlG_|C_oAQP#BQ5QithC4zRGBSrDW~ptK$;skD%Nx8SP~#Sg%E_-~b#K4}r@ zX}=^E6dUrB6XZ}L-->YzW+lhvFHL!%e0c%_-6%6)ry2nVTj z2G3wB#z3_+cm}b4s=5aYpd(!#EoHfSV!2ZB_m{*4hmV=drRTBHU6GWJ?uw+>@c->d z?BhXFQ3`@QuBEsb^X2SYJWh%4zNlHj8kb1UN{X*y64ni-fzHwUJxrPcdb zmY7RB4(uyA#HeMAf-feUJ95F+a}3LfsbCl?r2Ar5p_65yT3QDJ^+kB3_p#JdNs{(@ zAB#%e>8qTsxO}nDcz~n1rQ})zPo~JfxJKMsKVhzQX*sdz{5(F?#jq$wVnnhtcCuoA z3ZS1!rd2fFm1tn`wyAQS*1ua?0oP$Ug`*X}fgMufX%FBJr)|TH8ny+($WKeK{V1TQ z>`nSdRR^7M1(qw3@<+|O4a~;&BN-c*hwYyaX{OLx<0UsrUsVN?7(fbFmOBF8dyOq11o85U=?i)+(DZIt7%JM4ebc5 zrM-bW>4m^ubRcjyy&brRz6flfs3_Q;1fvsFI@FZ6WJk8YuJJr!r zlt5g=I9d=lLu&tsy7{d!BwHUi*9m%C5&=m{ppS91WZq{e?MBjEYWvYB^QA-orh;H< zgF+Fe;XP}W-Y-~E5)AjvPlVK zrk0i82|Wuf3cq^9Cu!K{Hyay!=M{zpMHb7Ss+1~ z$|PM(#wE&$koC(9Jcmu*hfRJSoBRScc|SJ!MQrj*)IRVsbq*XLU*I5x0&l8?&(*(} zvG8c!G8Vo?bm2QAUXjdg7PTl>Abs|y^uwi{8LO_isFW*y6>rDlQZVj{cm7*fj1In{ z)G7(r9J^kmSaH3FaJ}#2dOyJR9>(>4i0l0b*ZVQ9_Y++2r_gC%;6TeQCDNPIg66fh zHm|i=^jhV%>&&0i>ea#xZf1x7)nDzgG4V-(X3TW6n{)O#W*nA9Ys$ z#yEm6GyuNP0Qf=!r=ZQh#g(7Nm48R=0%x$xKawYKj(P`vp#gyl5aU183h2ghjJW~< zQ-gc30=fq88r9(K5P5G0!zH3=bO*(VI0_0WcYu%gJTgr;HiLThJ zxD|W$AFNoMc}yxwUZt$#-z;3Bbxex0oUy~x1-=^vE>mVuP>rC4a)L=zKZrhzUKvT*|O%47*2-p`F@6 zm<&IowwjXNF1D2M7Em{T`%125@@^=+dI|V}=gqZ@nZN%lg0Vb=>OU7*Y8A*5LH&Po zW+Y@T01kdVR#uxGd7mU`dGOgt$f-oYHgFgc!P(}uMImSnp zI{Z35?;V?#l92Z<-d7??B+eouT~(42p9fV1NQp-qf5aG|Vy!8^r}3)FO78)2aZO2F zoQeh%^t0q(>NZ+MlDk{W==UhYsOPbQTHPkF<51bN6s91KM-AkCg$kooDvCgjvj1Dg zq(oGsVlU1@rgw_W^cE`gK;qc!f7$1Or0=Z6X()=mSdBnINssU1hma*QIE({eG^bz< z2vltdR2>LZ4g{($1gajj30_I!Jd3qun%tx_T`6y{rK_VVBQuS#yf%| z_?h5nelB<&zZkrp4+JOio5894d2l)(56VelcTV7Ql}E&nTQ!BKeIZqWkxB}F%f zdVQ2`4oweHx;arJN;fw`RD#7biy1)VZgSOBV&<0NNeu;kZpn972y_y=S( zCAQ#pRQTm=-E_K#KSg*fIT<$dyDB^`Ph0pPvYe8&sEGF~ltBf0miH)>fgC6Kgt!60 zt{f-%5JKh@U<)MjK%xvXfzY}QS-vvJd|tq$Gucj21zyv1WH}{kQ8meAjMu7ij$|^% zYgXV194e1ljSGM?ka^7Nz#X(qI)YEB0sf+DNn7w6HNjt08NsuhW+Jf#a?)9Co<*0C zy*x^FcnSTW+5~fy7c*Urm|RVD^?+JN(8Y-H(D|So0O{aKw-3G!{@1Ix67+4nqQ4q_ zDnG@tL@)0)iQ^8cYlPdngSfw>M#scq-9a1@XB}TOHM-$X0R5G;AB_D7ArUWhK={}R z1t}Rms(=zfr6s)!sQrslF4l;19pVv9F&n7({DY4{WS@Y@Zl$`xZPYNhotnU9YY}{k z+6F;%5PX_C2Qk_*xD%qgn|cPHrNO~{%Kqt&;}FySIimKjA*$yx1QcNLudUF(y5m>@ zv;}`sM+MSQpbYrRFPB^jfLin^aBsvd#Vh7g#Ee@4U%%{!EV3L${0tvUW;Ut2p|WE! zoPk>f+F?{d8ivAIcBR5N9k8b8jGOg9b%*FKbp`OSDHbeu@^))VdQsYe1UK~G=-^8j z4yUjW!56XWuVB?*g`zw_4T7&xUhs8l89Yesf^Sf_;G3ic-=c8vZR!_%hlT_X(b(X- zR2Y1ZZV0|li-I4}t-+6IUGP)7FZcyL7(7PXgD2>P;5YP2@LM_<{7&tVJ|ON5bBDH> z?(SnzcQ+5@s?lC9S{Lo*Y6o$bah9Z6U4Z?QF;$pmp>!f+sv$HMwe(fkw;KQ*JCV8? z3Pd{1jg(Wkz(hR61P3U|w1d(;)N@bR^*2h{^*#72KK(LcfGhpFG=ey=j+gU zuXu*ZKwsxH&Gkf7P2WV$t! zMk_+)Xica*tqWD8heMh4bf`+)o)(#VYQk`_YxA%}a_HYe?4Km+X@^^V=wEkGZZC$q z1mFzB$`Zwb8N)PGWlB>)Ju*NIu}P!Bz)#$apXqxFTnn;b!^}N3bYL_ah7_U>p~9BF zUCNfWh9IY6OUK6v@;jw(X|(8JHa5%BJp|eE3E0>%*A~0j3;D!53lf=JOgS|Dskn$( zWxYbxC^J-(YJ_T0PN+6D2-TsyP!6>W)unc!dekj+B{@R%$s1}!{X%&(Fw~5Og<8_6 zP#bKAN<&83TgID99x=tpZ;Fx46r;|j7_|c$Z#kCSi^^JAA({21pwv|GlWrz^i%KED z_JBkXGJ>Uix0I#q5e=T=X>#8C+oc?w7v~Nq$jIQPK;t)+xdnBTho=!N?|MlsoRql4 zrOHI?yek|~r~r%H8H?Nni+mLpxhv&{x>55`cPz4vI*07kJ>(!~$VpnrMZu7pdWJmI zH>A;^kQWOcph=-HEeQ3b#i3s6oa=$=&E}$)q|9jttt7KR5(nhPnU}=#gHVV}7x!b) z^`%b6`R!|Fan<=1o8&s<>|&`uD7n-$9)}-AXKEaGY7d)BEg^qtA7!R}0{u~0^eqMS z7wU(#xP}^q2C3`NL4S>-*U^Yd8He;)$#21ST$Yrbc!c=p=C_C$!DxgBtaAV^f$+l} z;Hik$MoDX!@(Qe>QgkCAL4X`ZLy*E!V9hDTF&D87Ry;_dVYsLf*x-@a;89dRG#VQ` z1{*w<+Jvs7g3vhX8X8Zo5TmshMqq*JzA(8BiAI+ zveKi?g@QT;K%NCoL>F2JLz9FV0_~ACmIld>nzA%Qx+K+6JV*gUl2jE0{M=7~m)YFm zBPG`sxoVl`AgUL)!$-}vO+L~W)2=EEPuZD#%okgR^7u*=x(Um$nCga>#O-ap=-$@F z-X2Rnfm?a@EX0{OVG?wf04n9(xF!kfiwAUmY5x7#-u}NBEG|2II+q6jQ(u$fht@*q?}X6b1);wiXJQ=<39Y9w zp?hdb=w6x=x{q!QZJ=91571qq&2&%b5xPJ0I6WEKN;^Z_)k5o_z`p}=N~mA7hZIpu zw1*T#*+viP6r3QvhcpoFJ-G!1pRX-0?2p{82I?%$i-7`*^>$d?@F2L2c@LFo25LH*g4e@c2VeQY{@Qc$uroJ-O$H- zVD$FF=sgR4{2YwlJ{Y~{Vf0>rsJ=vlL$A{C(Caih^d^lDy+e~j@6q(o2Wsgf`h}T# z_!?7W`ZNSY5cmI#;+MfR`%G10T+>|S#;lFscI=Rh~#1#x3-zzg=jfO{D}Lwq$T1w?>wBfS{1wYAMPcT@(6-hK5eUUpWO6`Yp`}VX9B)J6aezLrX&6(`})%bZ_Wq zdLZ;GJr(+$c7-m{vti7D3JbNpIz0NIxxHJ>?R_-5y{!=G->A%NN8}KsW0{1&ZV6;e zmR-Dfmz1#-ieTEIl(AIYM-U>E!S*c#EO$9%tPE%!IssE9U3|IuO;xaf881dTTSE5n z?_|`g`Y3J@>r*!@>@u%s8Vb;D(;VYnPM4X0D0TI}hM1hQAn86>o2GE~Z^R>sRUS{<@hAn=*irNp9;MM$D3vY5qq3L; zK7bbCQM%fbhO+sUI_UzLw8*0VlcJbW{2wIq$CA4N4iAegGSj)Z-8gIRMlqu%fV==2nknUCoyDHRJcphSNzC=cJ(QgB6rDpfwvKY-g7D!6Tl0jIO9X3SzSkaI{v$XXvA zFg^$%JiV70bHw`V;Qpkp_*)k+nMHQsBpgqpQc%(blOQ!U_9=GmrXi}N@F<+Su{d|v z;oOa*#^Lcech}?GO`y) z9yNWl2Tk8>o#~t1Vftp{qrTZ9SP*^Y_8mZstl|~0AR7<`$lSDUL2{M9wk~Etiur4* z7gt#j-Dmry?el<@=g84}MK4w1Nl3Ascw`Eo-X_+!2Z{?S5R7~S1 z7>}%!xKvSAYK7r(HOZ=J35KWG5S`c->!xEZw)k$Cj&(2{>tQ=%%9}W;&QHYV~0{0OP@}37oo6awm{6PeL_-cwXF2{BG_< zG1Kv1lvC{H)&HQ#X_B6#V@MKWYB@kj`i*$fDqjv!0-6W&lki#ro}fFWf;C+#0*r;N zh$1HDD`kTlC0))Btc*L$JyD?RCYjM6`Hz(V;;>nz)(f*UiU;ypFjG@vLzg5CTwzwF zxbqm}KZzZ-wvUuIAl({%1NQ4p*sr&sPu_+;d54||AEKwj@6w*|d$42g(`(@m z=;R3P<-FWf_*Um@dTFO%$nMHr0)Sy92Hv=ObFSMWb4{+4u)aFZgyB zOA*jt;OJ*VK=;K7=%vyHRLX+vGj++>D9*{tZJ*Rs{tT(cSoYB{jWHW52^Cc@+`9#7 za=IousLC`g5`**0HjPeEEIz`1*dFQ5;fRBKMcmv!;)PrX zcw8jRb0R%?S)@0wjP&ERk!$$D$Y9POa;_XkXQzc(uH?bw(~ z*%|bcQnr%-6(5OAlH?s5#DgK#Qr<^^urD3=sb~O>K=NeZ-)1&5(VtPMSYr~1?zXoJh8Xak&6d=cV@W7?n$m97nn zEPX)LKN(YK=tQX~vEP++!?mgMOhEVaQfYnt-9(~5cBWv%F2pI|}e zdlHbfX~o^{7<;>t?Q&8ZNOD^sn#${US6I{V04%Q+%ZV z`31xUvkEH9RC=-nsHk&ANi7njevf5B-^!LrJ1tY17FniMw#<~bDMQucNw_Vt+|X1# zpS#PlFgv-pjn?NWN*qvjnc_c5q%~9X6l0O6Dzv5;ciTrnZqO)G0ER9Fb|{ixg6i$aESInL)!MGih{W7LAY0rpb{x zG$V2Y&5O*XC6RfwDl#A9z5wEWBg7qP*T_PM`yz<@Vu<_AbSSa};*R01k)`x)2DR?ZUI0p#Lxn7$rAWlW zG@iWN8=1)|ko7?fS`vIN0Z^D~3Nf4r#T9VlvMXdKT~}>>rGPd55ldh>I`mb%w+iZB z1}c1p*5FlHdXGMWGOvVMe@yQxWln-wIE+3Lsn$Q!3w)k8L#?Ia-l5Vimnp?iT+>vg zsD*sEuC)@9VlWM|^4)C}&kz(AzFVOM6GTyk6>D)RlJKYgicnZn@d_(-B*JU|JA)J= zQ#1NtTU2t9nh}?>k(!BZm{S&?=$=z9N~Qj12^xiylj@P5S|-wy$^?y4ldu|KA{o@+ zC8)sxsKKjHgM(0mL)19;HENN2m~wKDP}kho;q~62{<&|GBlj)Ra*xvB++#E{_c)Eo zeVg)g-=PO`K|hiE9?i}@0q^%d)ZqhKllviU$o-g}$~^^j01aL4S*XG}I-YxhPUK#s zk8*#Y&vJjJv$>b)>)fk!IrkdBHDZ+hGQ=CgXjI5PH=5B>2-pMTsRrMyRva`Zm!tO@v+T7*CM?RJWXR6 zaVEqT71@|qA+i`#%-14BHtyCU3;8ixkI;;d9B&DZYLVQR6OXJu`aF=@?+c!VxB?K9 z1LGr!$s-#dWgJ*ax`R;be^H8sED)iWmaYGIaJ4QcpH4_NbV+h|5=hoKP+j3gGL9bq zid^2sp*_)XfVb#l#NmujgrTd-V^x$3OG$Nwg=J+)e}#o5=&z;#wVDdJD%douWa`gV zqZCLMi=v~^RCJS!H^bFTRHeMsgb3fEIv=AwPIMDwDimsbG|zxeE^ZK570)oBdLW~5 zr>T|X&jHOqzN8tL7@`>n=Tup>Mp{rqwZu}oC5~!X;;D|M1Z7$hsEH+!T3Sj{TT3bG zW+_c~STHrrf~jE^z_l$&G{jP#Mq85U9!m<{Z%L&YmI^e_f~jE^ObxS`=@CmM+H9#z zJ1pt6+fs%0TdL9_OEr4af~jGa8uW>!CY`p_qOUEr={rjX{c5R0*DZCKE%msBr9PLn zG~iTACZ}5(a)zZ5H?lP4c9!Pc$&$_eEp6ClX~%9$NA_E~@F>e|JjQZ6PqW;?OD%nQ zrDXtbwOIKHi-UJr-2A-7$1hp}{FY@9zhfE7r!9B#Im;;i)^ZpBXc^0wE%)&6mV9X? zxV5evhLzyY4J*MP2dzXVza1>fwdB{7>qCnhzYHrO>*(G1d9|tqsSQ7c$oCAKpaX*y zn!_EIAPudGiEvd3Gz3)HB|(;*NTYc^Y>{+=_wY>BOj(L%@V%<#rZkYJcfp3p*2q;n zP({OKX*2MvOR%pT*s1!#UYy6T-Ob$*7oUd{+|TV17oUd{JjB`bHC$;5o#47)wvs*Z zpKx`!RrJK;on)++B|+z}GFHaB6%hmf1#2Xcp(W@NB4jj*a#^~F2ze%uq3QHFpTinD zoiosCc^livZ5EWX(bBBtEos%kB`nvh5FJaroumuSK+HNBVm`U3MZC{Q1Z!8@+p*I znMw^T)1ctfskvnawXw{kE|v$Wr)3uPwakWs&w+x^rNNeYG}1Dk?zSwTe9J;c` zsVD76r-xiXI_N1Vl$`dh(KbYy(;yflA&QcnD1q`xj*6A=Yp?>V<)s`_KUpm=OJO@- zDO731lXt-tuY{64f*v zr{Z+b9K#|)LQ55qP)ONr5EGT`0pLjT=tRVg5!s%s>{z5tLe4D=#Z>|dZ;VDtI7m1* ziMW-{4L*5FPGTc-qV#Pgk$u^pQwk6@(@kV(MJR3r4PVCjWXksuQ&Q5 z(=t)UjuVT$)CKIm2Wpo8#1hp4FqeRY<@)WL$N(egS(^bP7` zd6Vpxx5#HXN`oxNXoLk(qXki;WVs9AL;li*9_I95TJmw~^pGy=OJYA{0?WoNUMVB$9#OB+2OQP_fh50XAr zD}Y==DC;Y^EK^i2c_4nT#Mn%Zkjt{g$mOkjo*-ASqhQlQfQTRvU`MP#P|Fc#Ws6gc zfsTu4&?!{7QBhM^CKT||asx7PlhUn3HLOe-Rv_4{n2>3Wq1M(|YHy9BuGVHyZ_;p7neZ7JaplYZdsiN?#qW&RH=Oq|(nF}04$n!HnHiM#jgJ+ry#!=tcaXW1 zN)MGPlpaDp*zl*w^r&JC&^#q1IufZLX;Wn42Mn}HnTX&)KwBPOa6)#n;Q+(^T1CYn zI$smADMhlksbwQqrO4alhlA$S6m5sYdoR zxUNOQB`DQg-;ipsg$AXXs~A$vX@*pDQc$V~p~@&{te2n>bOV-3rfu#ALHs#5XNeL$ z5Bnui2=nMO#F{c2yOcguwVBei2Tam3)+|FOkfW9Lm9l6h2PYHkn5@2llL^@EB>ILX zi~4v~9tocb$hXQ~CYiSBrD`s}8flwoZBpJhGKC|#NOh7@W$a+-^rS5hZcI%Tg(E2ppWz}J_E%b8;T}f-`O7;td1Fcn@D#L*+ICBY+ zk>XrgC2`tQtg$3gQkoc~J4vWi^pYV2jfXEHsvU93Du*r^@Ds5q2~|=`G?w_g@M$U- zwH5GG>kCxN`l1p59U@;l__J#fVAKlHCV!X?qfV$+^aq%J$8Sfk4M+5eB~%anfI_eV z6{t!D3EwkWnUIu|F(~Z$!Gu*1Gs5sL;c}#kQL#cQ2J!>^58BZmk=06I#S2XD{TJAQ zY^=8uRE(P-S$K;yNSn(TUJpe}Bt&KHvKQ(RcgD^(1Yvend}NKc;7`pU__Gr*zPIir%z- z2Iq%?0oE_z{7%ya>lrw|vvk?|CH-OjicQvYT+(`hD_Jjc59<%y+xjzmt(W;u>s20Y zy~dNRH+Y8iCeN`6USW&nEw&Q8!&Z{_*vjyJTN1x&OW`B7G(KuGE5X-CDunv;kkdDu zqS2q%8cym#Rm6HhLSL40TUBsO zKtSI@6&xkQRb7PZvcdOBu8t&%Z1CO7$tsBgNCMiFADbc!Qmv3ZC>GH5 zjx^Z-abYO{3@{b}zykx-jn^d$1G-W{3=~mUs~8&v+Nu~|82^<}c(Y`o&9F68M&DM2 zQf$?!rmY6mwbi6Xwp!HOR-4+`GN_}i4&7#}PZnE48fa@m<7`!Av~}Ib?JEEgb*GW%<{O5(V#AtfM9t`bU0TC6%3D>QS@%aFM%&= z4Eue1#NDV9x*J8Uv+7&=e>IH&3ygeM%zfE^Lrf8nsF6YDa%x$j9t|g<#+^23jd7>S zNg(4NFqb#tFBAYUPXiAx8Xw0b8=06(HK(YLVhgnNMb1yH8L_M@ zGTAHxM@g*{@iWbJ<-zO8gV&d@j2}? znbK`tsD`a8)vOxtbL)YhF^+j>w3+wIiV){}bLdQl(S9b~ulCZDYj4YKv65w?Cb z#@3(mZ3AesEth85EVRI8g>kXbDx00w*&MXl=AnPB+c?g%jpq@zd-yKfy*$B|&r@s@_(9u!yufxpFSkwP zHMU8-(e?muw@v0VHkA+9rt#~x>HM~B27hRq$)DODO}e9<Vrp;u-PFZ)-PFVOr!?Xy(KM2_ z(umwm4UI^^RM&{yP34S4o=K+RR3cB@G!l8@7bB4;zB3Ye;tL~@Cq6O~dEzZ2ktYrs zi9E62NaP8ONz@a0;)!4)Z?o8fBJg}f0#AxZRC%Tx?G`Ikc_xWI22rtuD3zzv;!ea4 z(+~;7i_VI&IEBlI97S22%9TYUMOj<{G{)70B=|_FM#ypOB8e_U=r&_9HlBKMBX&X>8#aw0q^I>5ZhGe z<@`Kv!BJ{}LGy9b4(zLmS*siPaeSi|@8Z>%rYcE}5AYli70(69@#{P-raI2D4!_O! z$5umZQy151SZsMjH1#kbN{jI!qN$JR=(d=rv9AH&;NCGBUSZ9R*{!?qs-be5tEmd& zotxC?ACsP;6n(LkB@~|YL}~D2q0mSUWz~nBY?n+Urx~lXQ0^2UE`W>47)rNe zN|zm@cTT$_yOF3~3k=0I4XqFtetAO*2BNSTzHr@=W6-sOE%<)h%k(N`c zAr#Uyq#*{}Hb!+U=y-9W>JJr15qaO|-jdn%zTl>|R=G_t9#*M(gZ;+G-Eb zllDB?Wgkcd_9675eK@^kA4%`nN7HHh7&>PkPv6?}=|}thblE;h-DpKF3WUB<$~A_X z*9MkK5;+T0N{&jDEpBuckojk^F9vI*eZWvi(4a;uk#PZn^vQ@a*5KWt zWm9{q#m5Asa_MT7RaD@hQL%tU5buf*xaQFUhul|WsyLhp<3oQZe;})s$bdLQhKdSU zK$`VI=6JP60`5SZ%SkXktt75N>%S@7TmlRirJHN0#b92ZRCVON66LO3>=-Ph_OCS# z7aA&vI!!wXx9W==Sd#3eNddq=31TcC)`2cCUeX0_0UTI=l9LT9NL4zK6CH^E*W#{< z#%U!BNBhwr{V=#e%@0*ve4!2-or_N`FU(+s4}+XgTxbhrnF?i@0cAntVt){pYZlzj zY-((uL(T1TskMC`b+*rk1zP~uvyd$IMQ}ZfX|R0>lx8W7u`i>0?aQG!7&~EKL38aZ zX_sbTW^DsSa2L{6a2;9#)dfmRB-nMU`kL?@jtbG%GV}F!>uy3Yc?T^uQ z`xX}Vt(;)r#^vmfbDDiSSGDip4Es)QVc*5A?YsGQdja>c?`5BTKM%CO!ei|RdAj{D z&$hq83+zXEsr_wUX@8H`+CSip_K$dr{Zrmy|D2z;pH@n#PZ{22C?zsoM)qrQ(E7IK z37`Ox^md*3F2uZ2DQ^cexY7ndB4(rfho?YiCm}WMSZm9q~QD8#8kBAq~fnGLmV6jdbra(K!x!Z`)jP}wkJ5QW?mq?-%cf%SUN4u0?V(i{MF1dD)waJq1}EsNR( zQ65)G#&&N<*oEw3?Ltt&qIiNX(;xP@u_hklvj^>n#a^TSm|1jg04B7HkYm6+a>Rs3>%^VKa#sZZ?_OGBdUqfpy zKx@8%i}@CT+C^$%|BiC(-%}_14{$L*LSud+hy7;?*e}sA`!6)gewoJEf2I5FS7@sJ zD$TcFqlfJ`XovkKJ?#+moFkU@I!e&Xj*@i90d%(`iH1{__df(B3K6Z4b&mG<9OGgj7;OH44OW%ZK z=~zgXUJuGrV{{wnuMC-p2x4wp7`^I0Py4l8n8)0W=@LfGm!8hg547z06j-S2Mk3>=zub6LWk@aK!L|g@Nz2R z-SOdDRR_lU)G6H4WTa|K7VxFw>WOL@fvTbGfJDhKBPYo?2J+WB9RbENZ_G|Mb{EZ42aLB0 zb1oZu6K0SChMP@c@%j z$6N`+_)Il2V5W=VtfV%i7zS<-cvjAhu<}^i}`IGEsQReHv?rw<&yBRW2Obrb;!Gi2VH2s*#E8>V-d+RI^~!K^FE!vam=6}95d;v z<3akzf$71f~Si%DwOWEOA#+qX} z4{*C@7T}YLi#3k-#CpdEVzc8T zvCHwPINNu{OG97=J znmXCk(ivmw;*2--b0(Vn&eEn)&T^(P&ScXxX9d$Nr`a^$nQmI`RH#V4svBOzO`0As z+@xuO;U-NZjlL+;5Th^3WLG&du-KUTsT>)=*rqPr9M&FSY!lFvND~8$ZE9@vMVV>_ z`=X|r%m~9|$HQz>d4(UmgqquVX1OAB%-kLU#U7f&ckZ$j<+1D3xCon^ABF7dHJV9#Lba(m-Un z5X%e6g`JEUf%Op*nlb0EAByW!WP)7Wj)7B>3tJOyky4LCf_#W*ft318B*@2#x+C!>_N!Tao5okK@%wsvM;Y zLcbip%%?CjF#!qk;~2H|C|=1afJaoqy&ivpRQeX2TYaRXUyOMQ$7_Jji|2S7j*^L^ zK4sb=6Xg6W7`SB;z7b#N^(qP9Sk&QhDv{nqH0F_*{kIZR09){ogf2K1b*0AhiW+MQXOYKYU~7l*x7(` zoSD?s*^qiU8&Q8}V{$l~kmhVkgPqN2q%(`gIGa_A7I9qEL#6P+H#c$i;kM4c+}YWWdpP^E#W{ez&RibkwD6ryE8pd`@dT%x zr#l@y+v(&*P8Y9mx_O<`$4@!~{ETxDzv>*yN1S)^QRgUr*LfFz=p4)Eo%irB&Iv*| zCyIFIWKqgFO_-fCMSbUN(Z)GXbZ{;dU7bsW#kpKKohyaUxke0hu9fQt?xL%!;cr9_ z!{3N5hQARl4Syq=82(07H~ft-8~#R=GW-pupa%U7|8Dpj%p2EP)23pAYS7>CXNJGw zV}`%sLx#WM{f58crwxC@j~o65Q&=U_4Ezl*HT(^DE`t7sry2eRGhu`NhKCyd1``*8 z{)YPp{Y?)}7c)_Et%SDuc>WeguFQjwZ@LH@pAMV;Axf-^;BQvY+wc#IP>@}RL5Z7S z#j7dXeYfJJSWeadk8C%qYG|Bg#m1W^#!mz1Z#@Q7ydiFUX6lqCM=>37^|;aHeqLD zVOv_Q6VZj;K09)GE1d!0S;i6>2(9iY6X2;=cB*{pn^OU^+3_M*BDLDdheJ7OjU>wI zNKVB}`TSOnS<;vAajX&Vg4dCUtQ>XYqcfNaJ|CTkx@Ff{vF+8WbdZ`9u?UKWEGfin zYHGyNM>726tEz$=<({urbh^8UTGoaALwN`iISU}1dm)@JLOAz9IQK(1UxHx148eSb z+By$FIA4Wu9;Cj`Lu7Tn1|dC6dCns=-1$0O8|$oM$=1`6XvMzv5=jbKJ^#fx9~|vfcRudz?S>Natm~+j*7m zabDy5oi})j^Cr)934X{G%WGUEc)hD6KjA9F`&>zUz?H(sU1@y6Rf#`xRpHNE)%mQe z7Ju!k!&hDPlRT&y*&(+y19nUBJRpera$EJR@JKMg}~`8tgN3Gg$I( zW5>bvx58hR7QeEx>3-Ee-H6h|HoY*vnCvV22mDIxc=Qe!z?Ddt3SPr*^)70+O89Y+ zTOj-PbcEgN^S5>@G)_Vq2qq~N|7=X}ED$04 zQn&-nFjIOJfty0u4387I_ zt46qkw13LdAwf4Wtxn-%r6Nr?ULsKQQ|m{b2z=m*$YVDuylrkQFGdsj-KNs@G?Pn_ zEcwtJ4`F}vDT)!~YDg)rCY0`KN;O=~sE#X(GF{E7nX3h5yIN8^S2o?|YDK+Wt;yzU zLta-74RW=m5w3Q0x2rwnyE@P$S4Vo#)rl6kI@2;&7h3D;N{_m_(RSBu^sK8p?RE8_ zS6sK#5m!$-?&?MFyY8S*UA^h7s}FtS>Pweg{pfdBe+FeFmvH5BlFPysT~@B@vT=sX z&JA4-Zs~GzJC}>Qy4>8`miJ9)or1RrvZoOJCFr(8S58P_iHvun5b z(^X(9?b>T9@7ixlbG>4!?K)^`;W}*U=6b`_({KqOt+y_ zD$Anzrq=MUvYq8YtUe^RtrRUV)l%5D(zMo;q6+_I=uuN?g>5TK&x$`$?w7nkR|J`I> zu$x^UH->&8{L}MxHH~y#D1jH5%tP4GuV~m2QwNeM+YG;s2s`>0A9e)YGZskyI*YiZ z8!xU+UU@+vEF*vJgA#STs2CSs)sV`-?)S_#vfVp%8#24XAS?P1j znac)G(DM`9-khX<2Jl#y5YUvBY^qnVv`Plf7pz!ns|21*FR6Y-yoaGPIoT;V zCrPtdsYu(REbSNDjaUT1tB@g*y(4-Z70pnURzAvSCF4t}DOe20$84h*P`!>*fw}~Eb$IuKn2D-W9Xt_I{*0@X1dUpan?#B3WcS$O6m!enPrRhy~8G6@^W;-|9 z?A%H8wYxlh=T4?e?iBjNoyzR4z=`fOPIg!1N^Ub(cUR)N?#kTQ4SV9Q!tLBuxvRSx z_i|U~0qz>?ao6S%?z%kM-GIlr8}STxQ(o?F&a2(oyw2T*ce>m0OYV+*+}(vwxNqY# z?%VmiyO&Bk=uL@V8&({Zv|!qS4+pJyV}2pTll(05T?=8w+q0Y!Ad$!2_)%DKi98;` zlVF`CR&oKm72K)>);1Oew@Sd|(5A4V5|Ho;*HyWwk|0a0fNuNcu;QO^X=P1I(;1Fa z*0cb#cUXut&)}03?kYU}00( zL-ToKOtnHyi37q-iIJ`Pdd)zBu@sd~sEDBBv0^acL5%`}NkO^^kNB6Q7A>+9Przdk zt_R~U0j=YD zkG+lv*VO#Nuv~Y6?<03#N^uXMbayV*a9b$DZKVco8#Q*@skz%hZQM@k=yuU#MHE`ZFzz%3k61M~TG#^)>4fTMWNP47> z)EROj$6wzD$fImPH)eUsQG>1ZSzdCcIR29t8myN1hw=)nv#sd$1;M7?xF3lqw}-B8 z7?SaKbJAd0pAC|I=#$aH7fa>u+@o=^#^7R&#l;$ji!~k>>mF+2zL#3K^C`zY0T*i` zb#+gs9`0$>+dV^FARU5oD|ERea%q5ZA;z$?8x?BK3iMuzaLDZ`B|9@za zP$T3-*$5d?)tU~dB)MlpCFemU=R+kIP#yO|*seuT$Hh>`B~Zns)XTk$`n#8t!~GCx z?iDoHy^=<{SJ4>vYRY%7p{eeNX|{VUEpb0WtK92oqkBDVb8moO-bl~6H_<-#qx714 zGaYq5Mkm}`=#+aaed*pt-?$&AAKcsNs(T0h>3)Ju?kBmFdnbJJQ}E4Ca}D<{uIGM+ zo4B9lw(i~B+5H^+^7HV^1?+I|Va@#l4{`71k?t3Hta~3%bnoZs?w5GJ`(<9{eg!`I z0B>-=%3IwBd6)YT?{UAzFS`%(VfPXE>(}{x_Z$3)`%OOWKE^+~-{H&d6T;;FP?T_g zEK0jiiSq6*M4J1osOvr_TDUKWZtjbsr~3!d*Zs5bxG#&5?yF*=`P*9P=cJ_dF@$q$f?B@>CLMJXOSbPjzw8Q%n5h$&ls^WCh9& z8TMa%V8jXH9V1Q<2SXLI{hh#(?^{|Hsc zE{7^)=Ry^-&kaNdZ#57Zz)%Dc8NgKp5gEW*1Q8iL*+69QJ!)kKLTt#L`J6&A|oq=$fy-UWK`kDaMdItBMn%Kn+lPU6!R1)BpRqS*%C4X zeEuP2hI6<74=lgX4i;~kD*bn{WxA+Um#3(oGxb4)P##h?Gs4e#Z|&z)y)I(SVicyL z7A*hRmME8Qe@EmJFeikTSqXBPl>n9{V3iXj&l1R83QQm5l-?&^aGA;_?h!A7P}7`H zF7bt!HFAJpLP30Qw7Dc;)VLf6Q%-(4kew7|>Z9vP#kMjkU~@DROSly)%=-dzVv|8f z&;Cf_7jtP4-{{OQMY+ie6`#W4&{I<9J@qNY(~#0Vji`pFG1c)jp$49&)Wp+_T6wal zy{9?d=4nBFJuS)R$tI7d6%F*Xrs1A8G}@Cx<2`NZ0Z%)c>1j{%JRNAUrz5TLbfWd1 z&a}nTg`V_urQM!x^or*;ddt(D-t+XJQ=Z%DOV1s2$Ira5&mbP`8Omckck;cSQ9Q#lT7_W+x*QpH3hg7tdS+12PPO7b$|hluF!xY42>@%( zMqNjBQnKXJQ=OCyY#7!R@id;xfhk)KL4N>MahZ2Y07D|Fyc0-P&*+U;h@oCJL$T84EeNhpKt*rCOeR%JfWt zjNC^pJd>!kX9{)q$fg^DU5Zg>s`utqqk6b{hp~>xL=|oZu8BZaFnrv97;13Ac8<3u-i7UFsfaf44(=A^j(w)}ret`y=k43Rrc zR6}T@8sAP*OIQ>%PI>0QqRfRwnMWC(`LHMpAT0|aDT}D1XECH@3H9+Tg+*CLnrAr; z^E?D=vV!tGD`~Q46|Bi>n(J9Zi#!k0L!Py?!Se_`?pa6Ac-GSko(=S}XCoc*Y@#TCeIvve*VYOrrcRp8zEs^=~$!L0;gX5J(NB9q_b*K#f(m53?m8BQx za}_IGxqq}76*tf*Tp6<@5E#tI2vl!awwSpCzdy@m(Vgx;1Pl6DNs{whX`o1Ov~ zTvXFzZsJm5R)DA;q3J`4(e!Zl>m^XXp*RZeC$xnkwPHGsamxVr43;!*V1Y8dAEDv! z(nx+LniHa8iSP1j#1>?;k9HsDaM$nRXkG&nf;jYa8&3>_{?A#_Oxs9ci(m0&Hi z0)UP>MkTuIP7wy}%K>4KM6ZA-s4uXTX|n6C6521)&~_&u)}a)f0Gy*~i}7dEF)aXR zRK=XGemFJ)=JZfhgNXur@Bu_MRq?&51>$#!j>Myi7K-V=*XeTgxdL%AajW|FWPLO` zK8fyRP{VB0e7gS;T~84EA~UuM^8&cbL6Rf)>>N_1o>jDZ`+Ja5k#7@e?*1Nl5Z(ooM&beHF6y4Q1wCV76L z8J^1sVSc5ho-4H4bCouEeuL5Z9Y*IGjLsi0I@js2=LQ|~{7EN0f6?cjn{>fT^s|@g zH?N=@UK5+VF`Vd)ffYRq2CNleg0is+^v4KgcAGBZbr1doW=r-t_5p0XIojb%fMw$? zWwsK?htib<(IkT5{F&eq?_S;!T;k0@GFJ|aEe)8=Vzt;S14g?!FlCaJW)n|QrmP%2 z&J&a=OG0w`E>+|!k4ZbjRgo_lL6=9=!%H|7+1_eD6SHTi*AqsklNJ}@sg0vD>8G=L!cBZ0jZ zfuBBRV3=aQbBD$Z$i9AVi69N;4cX;tDtwdpbO}F?+)!`BM8ZA>dw$is`bf=872bsk zSj|)bG_0su6kTxxBn!p)2(vi6c(WL)TgjGAiH|F0$bhmHu@bML=JRC(Die!+IjH3z zca?y3PJw8L+*JUm83C9iEGecjBPhYx0u0Y8oheKhoCOohA4Dy9WVPpShYY9*_lkQm z)DEnIll%~Gdsw$2q3{J>FQs_>lsY8?|k~yyNFJEm(n?}J`z`_n~(!9l;fv24ZT6cts^%Z!^P@7oh|UJr^egE zK?h4Hv<=D^Wynf6{;3$+ zaTcz)6pr8r!_#Kyja*8!P~Dxg4Y~;|BV-L$`DE2Xfx@el%J1Wm*n#WCz*ejxux=Pp zjA-2fEtjGdSrQ#tyl6?W2|AvCF9{8~GG=|FfEZr^#gS7|&f>g~vt&~oSWy7+$%~S+ z|2l^%1K+T0g;S5XqBS5}n8E9P7_zk%vh@hn@vehxt%q!Fpd9Z;>gwGD*?N@vdpDEA z`xsJO?=d>>eOuaQ*hX~+LNXRA(^05Qhv3c_6!ol;exuEh zHo2_rg((uj^c$A4!GEi_6OHs6-4z-Xbti1IB-CC=E;X&hPC8GUOJgG7Y!+7a?5 z2T{lclH@Tsfgn%f`A*6ZPmIqgfiHcQ4Z2TptWcR;21ghH6&3Ckt&(3tVZ5YVnq85z zRIX*0!xJnW20`igK5R|F&_G!RZxfOkmgURx%U*c^?pX3y`NJL?-$g^dzx(C zGvx7}r9AJKG|c-I-R(UGX+952`8Cb;UZ5r3Z)m0WTUzJ62y6KrJ>mTx()Nn@T4 zf4x8FZz2GYVH>LjV@aV%f%YLJh?h$dZ~$>fGsc{QRvRz70QCXNx9x>kfkIdmP*Dy4 zhrtdJdEJQNzES#F6k~e{l-XtE+6hyC@dPYNqP`W6C*VMn@vGvOV#O7M-)b&M7?+cp z%-4eirKvJm64}#HtoKl9SUo6_TyoLLlIV%O(csSzJCHsx?HOWD=SB!c|3p9yick8K zvWa}?;PRn^%ZCmwUtOx_t49re^(o8OfZF;psf({6-R^5deSGNP@-?A=uPF`lHKS3! zEE?-;P7nB6&@5j|TI|cFHNIA~(bt-```XYhUk(-c+R{E>J9^dEp5F3xp!a+o=~G`P z`pVatF8aFA&%Unoo39)F<-3hzecic~uLr04Zs&AgZ?5a>!;O4>Im>6|Y@Y+F>V~TN z*x?JX*Efjsd_#Gt54l+1D4ylJi&y%_@><_LywNv-xA^W?PE5y|Y&D!1&ocrgeh`6- z%#hUM$#7y4F_;Ci>t}$BmvhWU2Axfa>s^%kevmdIOPgzi{98yS>a^O(e zuaGE7n7{qB!u6F0f_^ElhT11%?$|tD6Tbpjle!d#nopPjTV_Kl8`HTF)TrQM2Dk&cSl&TI_iCl=D*@d=`FRJap*yvc3#Sz+mPe|JhtO-Ot<{&=A;m1x@v> zrbWJomDuRelf{PEfG0@oz8izxE|QFn_nPpnGZsIkLwg|i}sxc$R-$&S<>`PSnuZNgo86h>z= z)$u(>4SZXuxo<1A@@=DbzQyO-3<`Y{Y7shM!@KGkp2<3aboB;7OI1^08T4d z0MTEFgXs}a`CAo46f>poFs|tvRL%D$)%LvwLw=MR`HoRD-*HI(yO8?#sh{sdb)EF0 zNdMq+jH>|XdNK=7F2~698AzEO6>Ztl6vqN1k2DPgZ zBp6(P=0ufC0K@AgluYq-ExWWCJSvL&uM8+(u`Ad3l2HvYw!?J~b&w$B6i?THCrt_- zBo%cK?8?QCAb}t@F=x1fagA!uP6!cIP2-P;iPqIA)WXumcq_wrQ3u>K=#8&yY}W&!IxItdb3OGPYy{+< zLFRh0D1-)=Iz~AO-@60`_FA%U<_dm71I2XHpdkK=yggNOGNYCvdiEtkgbS@j6n3zX zors3uMiU~coJ?rW<3E;))clXs6a#*%N<_s{uiu)TCfxd-T0P=C6a~AvrVPuXPFbb%e-JqMkKRM3#7ecU`oU9R7)R=2%g6nA} zZmh*{OD&e$X>r^|i|3wN3AShn?9~!^kXDjMX{C6aR+=YiWq5{Gmgj2ac#)RGtF-dG zQA_4+S_<#dQhAS7fnUC@gS1X!xYkun(7KB`T2HZ1>n)aP{lqFQ zS3IKG#FLs+JfnHUtC}W`XnEqOHdwr?4HF+~BgB{5f5ZjtZt=Y~PTbJ$HL-S|DM_1T zs-R6VRn}DLm|xUwnc+>4c@38K#r2>!X)ch9j=2L?va9$+WzsMzPrQ#zn#@o46UX6A zWPuI8f#uM{cp5BTP@rXy!hj8ZG1hhoG+sQ8?3xT8CyGs~$X^nx!-o+1N$#}8Vj(in zk`!hQR*`b!GDXj>fHwMDqpY;Uy_dJ3a%5v?PV;iQGFVgV1nd0c(0a6xXYvt^WX8O5&(G+WPm# zoHq3U1Zf=D($^!@uE}8A2Y^~OoXp@gF*|YO+PsP%Nkz0mbCP z4bTJL8mT6TtBg`Otpwadyy^DHu-ZsG$tYSh4Q4bEM(e#Gi0kxVx~2-Ot0^eAo{XAW z)N97Q4q2&>3ghJnuQ}~+y{0~m+_2tZEP=A#Fxgo;q97Yn$z!lDN0J>*K}JgUZp=nD zT{?_J1Q?5vM2Bl#mW}KtHj0@TC68$Q9kmADhYVC1_`7iXY0)}k7Mvv(#@PT0$nhmP z*ubB!fbUh1?WbjA`)L}UkY=qYw{S$2Xf^&&(T>xA*&Lk|P<$-=Fs1|~EA1pH3z7nr z!$|=%_9H1!#W*GgmV}Z5Rb^73n(b^-XMC0{vS}>0GavtK$htfvWmeWjskXI9!9el5i4_y31T9x#1`f6P?FpkHJl{MH%jKXv@f@EvJC?5DnK>&}eNXjn`JuL=BxA+8UatJxoirwX{lmgf?pHXq&d4p3*kZ z9&IDNtZky#v`6WvwwX?7kI}~(Fjd-C`dZsYKWLBBuiAFHrtM(To&d7xNiL`DaXGqhcBh|j;t_vIvB_UXZ1pFJC;Ta5pFd3;^;Z(7{8hvme|2%* zUrYSr*KxRy=%&eVg5sl)6Fd=gf|=rtU=F3V*oShHLYau?ut1h5lip&RN{+^nMQlWJ zbS9i&KrE*(;V4Sba4|nv2pEk5=sY-uM7YB#3I|sb?r;K}WgMK~G%*%g7Fnd7C+<|v zvJ5R11C_HZ3$`?i>clJua^&7{mS^y5_W+wKb28=WWiaVT%xy9q74_gOr4u|MYQR~} zgcCe1QdB2q1^Pk6sZLBe3;rgMCkx>O6EK`Z7H-X44*WTi^Pm#YFo)q7B~wjH@Rogp zzn0EcU~?aVQ?0^2uro-cZB<}zAB3A*4kwroM<(4|bzpSwQEsjVvN|5Pv?*|c8}RKd zIC3q1hP$ZF$=dt^w^f~!8GM)3t*64ej7 zIpyH+VAS1^4U$}B@Kg~=p|Eq)YbFtI-7;UK*1F(@#t>yVGyJP-_&GQ{l#G!#l4vbT~SXj4DXrhcGJ{Xm=gfj0FwrRIL1P5oKa&flE6_*>BJ{+2Yr-5`%`~iBzpGRB$18Jv!5bf~~rUU*Vbi_ZD-tiBk5BwwOEB}A!g8y#% z-an3R`0r)*-^X$ONnFxDh0FP;b9MiN+|)mZTl(j7j(-t%^e^S!{)c#gU!Q`jSGIBu z0p)B%K)IP=#<_0LjAwH?jJG5#?uZ6R9W#LBJhGb-GhiW1g@PH1M-KFNF3ECYL>^sI zE1d*nNH5YHU~&?H9ylAUY)wF+L9c90qxWzeS=pL{WVocRDT9^DOA3Ee78TkLBi>c>9@9E8 zVse-(l(wKnvhhF4T$yAGTpEg6>m#&iUbGekCH;SIyo!#9_ndeWx6ZOjBaS2aRej3WiG2CR8*5MA%4fxH88}K4QgUC znyIl1nkbpkQ}6^@6N&M~aEq53;*qXkbW6SL3No1!9hJ&*a(<-JMd(hk$(!hMax~hv za8WrwjPFgY5OL_R8COLtKPDUdG1=I^o@)CyP<{VK%JOfbHvUJUjhm^P|1s+6-$MQT zTgmC)1~dLR4fSuQQT`n?*8c?E>wl8&_wS?`{-6F#i{v??20v{O5R@{{qkQU*!4zA9#uXXI|(3 zMY)!5bZHD}?)0GM*5>=6xoWr!-(w7y;Ze{!8GyCnA<$+SfCab%bW>6|4F%#(l3m1O zpiCBYQx>ttazmBpPJnh*Mm|DjA?9%kLM%DQ;$e<~9?nGo_B?$HJ(QZeA4ikfg)%^b ze1gK3%t9PPj$7sh%3;r81V9P+wPz4`J)kuAB0Yy7N^0)!v{g(2H+%}+qz!1rPM}oO z(-$E3fH@W_n8{V(-qMt&>$OqClFED$m?Bl)Qn5<$hWM~^9r?2({ClZgfd2oAon|N6UE(A_Xjg6>^rN%{UM9qK=D}W{i#D5hE za19FZ2VBy1%JAPn9P=l&@c%`v{Wqy=fT(YP$r=#k447zOAclqpVrf($j>ZP!>D~aC z!vcVJ1KDj?w6!HI(2fQN+S7%f^j`a1eS~)hI=@I zYOAoMgfcC)$OI06A(UXqT4WM0cDOPfkhB%W+>}Rywqke0O<5UzQ~p(3p|~z#Nnk7D z|0O%&mROwt?q9%$J7=dF0S9FSoYWxTq80%+wGMb-C%mu|KG+Ejcg_zx5rCb@gPj-% zJ28kR1ct&++(~l-qiAK|F4`OzOV0+zt2?OMh~1$(xGH2LmW6D@kdTe=hipWTkd5dZ zv=I|vBbG+l2;h&5`*tfEAyMB^(VQ3!bt(&Wx)O2c))aH+!X@-VYog3j1ts1vf+?fD z)7UOLtLzen6rqFbT6Q8ZKYGQnq=F|QxB_+w^Je7Je!xf-CMfo~oHAidP?`UBi4#32 zPh|pA!BsQ9FtikaJVubc9w2rD@uMK7feDa-iI9OwkbwuNPGB-+2BuKcz*Nc(Ory4e z>CoUAbVpz&76q2j>cCQ3A6N!iSPfag z0IE%q*iF9%o>%g+TE8(NdHEzHFCRc&hi{a9O63h{?@8j&FpQus(n3ZtMiF-zd7VzYIk7Rk#JgGGAGk<8eFxEu0S zoAh$#h!jVah!`PiqD>CYg#vqVxA)_2zXV_QGJM%9@MQ;Zw_nBGK8U-0h&lycquT|kX!oYz@o)tOvL;{K|IkARDh6h0vh+f7{11JE_ zDmnEMY*ty&PdwS>gR3>hz^X<95H_NZ@}yKw_NbrJ1Di zon({e(43l?sDoglC+Z*t37fKO8~vVz;#W0bEt;MdNet5`X zp`Op^c{9aMR1Z-U=NDnL50Tl+BK|~G#Ft}b^3_hlqd<;QTC zpTJ>$3iUY!_4y3p&gTdTzksnk4Pyxea{vhDz?U$VU(tU8=V*N3JWULIO)~=*XhGl` zS{C@0)&?%p#=v*9J@7s43IM?z_>m3S(!F2Kx1+$?aDTjddV$Ybu2CwM@fi9LBSJTNbo z@63ziv3c=4DX#?2$V=b_d5OFjmE))Ll6iMt1wN2x=EHgE{9#@- zKA%^UFXmS7p+jzT&DNsZWDw1;buWR6zR1g2ijxI-@%OuVeE4;PhHHC~n# z%3}2^SG5yG39No)56etYSS-M+(pZE3hJfTe4CXSV(ie$$;hffjym*O8w#{$nPZ65P z+WIbjA5KC}XWR?wGKs@Zri1({UBJ63^d`TEy1X2?a*@}d$}U&6mw5@Gp0fAr51xy4 zu&k{o@_k||FGpD+iN|8~yAWlCN_;0O@3O2=g9oDbOA_GsKz03L?5l!3HDXR zsuF)E>Y}VL7T;cvcdMg%PXCL&_kfP7?AnI+z9)^)0wjciPy!)9LN5UV(vd2PA_xL9 zy`Kq)1dURZVnb1>B8ng=AQqG;qN1oMR_t976??(6LG%_EqK- z-3%eUGnO7u3||`nQvDAAaa)$@gd>EelLk^z25tadaVvjGnPpNc>b5Az9kkYlwCR20 z5y=A688^xEH`f&Yya@9Nhl{o(2>&g$2!GgUD7F}63AvhSZ*((`OInD-2axtgp(%>% zMes|fS=6lJ_(1C+H80uZN{BGk7U)VSanLYEhnun;KFV|WDc=#GLPwCgIYLz82-84E zgoZi{8s~`88ICfV;+Rb{9COI!IG_BExfF3+Kyw`PX|bb%RyY>WM#o~>>@cal%xr=H z`^^Hc<<{oFHZU!tLb?RLkocC}&@_^YxBdZKN5 zn#|_zuv)g(oEMaHn^w!Dgn8Lk`@F~i$L6J49hQK?1}6=&hPub4EOo_>BnJqW93WhB zfN;qH!X*a?mmDBma)5Bjv62QmZlDQ{HFTC^U4mgUDLz2`;sewxHb6+_U@(M2y*IUi z8-4_l0zop`wG-IKG)&@2FELIq2zS&R1oq-9#2;UfFbLaEJ_uN$QvMAWKunV}1agat z=`9LXN#O-|;YA;&@aKrRjGs zh!3SRK9n9bY7(fg)TQ6>Bzn3V_e|A$OZb!{N2bb2?f{^r2-L85m6& z@&auO4z~Pmhz~Ox3G&+X3=HiMZlyPQ~Nc5)rc3a`k&YK=yyHbW+wl^X@L`C~mnrCYg~}YS(uEEG<(cYI7=IzFNA9G}v! zj$>?de8!oM&$*%F3vTN8n%g_R<4%qrxU1u59^m+u$2orIGaP^M3@5YGnZk3N>0Iv2 zzz&bW@l5r%W3EPoO%49vo$~BY|96n1$vA9VJ=~7i*X#4&YP_*27FzN zxEl6DjJTSY>+J+8OBAVyT?683F4uMqh^yJBWBDMi=2@_2G;uXgg*79@)fe(uIJQz% zwupyolp!iBk@J)68gPV+Ub0XWAg+cxC)mP}XV;%Y!F7Qp7n<)*X?cFhuMrbWPHZFAHk zyJ>R>Q^y8vPnc!GCVK~t!rb6KmYt!CS5U^jK}1BHZ5bv7{vj@G+7oxx6dLMO2q>vu z{VYLf++DlSh`C%4*#CD*({0z3)UPdlZ3_Ja&pkPf{m(_|)tYoxZ7f}!?(9g}POuv} zJ5#>13w3gKrLN9y)Z5vePI3025zd}8*4c|DI(ySO&OS8LSwbFXUkW+<(QIdby2x2d zi=5z2bq=JfoP+5`=P;kGK5kZ97Y$^_aDnYROVeSt!XUV} z=IR1XuxS+`HJG`c8ttasCUthlSC(tKIOoszgkESb%>~TOF0sll(xrUcPiM4JI#&4-A9(A&? zu`Y`0ZK-xEaI7gUx&k~?8_fmUlGL$IICZ7XfJ zBJ9-Ad{H2ADBD(XExxM70MaqglZ(@wI*C4B-6WK1J;}$`PuP?ai>gs&k^>~|++@o4 zY7r_Sd#|W9EL8(n+d@7GaIM)3S$Zs1*xN|#3$dy4cx14^12; zMwCU5@k_AM(jeoW=O<#sYOnJ{z+*^k>KopSn3Ke&eg`e2iMUX_LKWe!O@ZE8q9nPR zixB-Ku-7Cu)q>~hIFy~+azw|WnsYavg;;PDGJ1oK0II}H(g==nuZ)?Ff!$Hgk9c}%TU0^qA%U5xVt&j(S&}jUx>6{Qp!*k;rY6a&8fKu50mOGX{3O`1 zt~QkIYDaml0?K!_r%tXy>gwu1{aqbtkgF4oa23&5R~MS<>P|CUy(s7^p{T2$){TSA z>yPWkN!CiH(_<^SE8wW6F*bra!^je2Y%F3YM={%}+IEKvjiWW@l8LI()ldf4K#cBSjP4MO?of>GFzV(SPQ6_tsMIx*hPY0pF|JWG z!8MvDxyH~m*LVuJPNxf9XVL=K*>suf9J<_fF0F9Qr0ZQewvDPjee3a2FOQG=+5(xe>k-7Lih#8VjimLBK_1N*V$wVe{dK&02t;FPGwanA=xCDgXs)3*$uXUcVieC~GcGo2Ku6>BF z0u($@Y#Sh?u!3W;iUgIN1EV|L zhMp>jb0k=d8rz!0)4pV$is{^1USzQRZZH8n! zV;4ykbqXAhOYxuRgn?868}tZ{o{rSC@C2mOWOC4Q?6VA-LDQfyL?^iEEba7U>e=n0 zQLfXduH`q2w9^`$F~=7t?8PT*pW|v`EGD*Km`MnT>~J0d<-ZOq$SIrCGV2)v8UWQTMKun5Y{tQL8XftFh_UK%}k3rdx+i zw;p2cMjGbYK%-qZ(L~oRG|ROa6Sb9QyY8TQuANlj+NCGOjFVp+pOjhgjdpHayiJJv znxkW0PANp*QmCd>8cn@1?4r(OE49&EsS0%;k4=E_&60HoYmToPjy)vdhK~})_vzZl z_heym%P9U=jsi;QOg=mi;31QXIzCL1yl$jR=7kXN3?#8DQnU39ItU5+G+pO+_W_PgGuCtdH+ zA=iiWqU$KV>-vt%P?#bnM)gq5rDeMoS1SZdj>ZuZ4N?AyR-V!e8Ld14E`P$LEkpa`Y^>Ptz>AdjgT;%KBvSs5BHGp3 zWoqJp^Zp1Dl}(+hMnIFqaXc)>9e$-u*Zcl=>VbF*Yy<^{QI6XbIJ2E*)kDs%k-3HB#l?D~tAx{!Q! z6RmbL-RxGh)or7l?i9M;ol5)MX>`DyPKVqXbl6>o-g4Kc58Mst6L&-U!kt6Ex|`7- z?iS4MR@}gy&#l}A+|J#BySt0HkGl&Gb9d)a?p{2_UBW(he-66`@@)5Dp64E_H;&1S zRBmk?KG)hfa4cgk4v)vikql!Ga35JAX*0tkA?cn_VrEFX7+XR2Qsfr#kaTuDB#qQM zHb^F+WChNS^isT-e#gdM#dP0}G zH==#uNa~19+?Wp2?cj&L1}@H9bPGb-*TBX3fYMOzehos>vJp}20>kwciy5g#&>6ba z;z?35uYtFt2|N%>X+H^8DIRk+JqFWJc)sQ~P5leov@N1Vk0xx>7iw%%9b18z-gHWA zizL~+ahi_mTEN;*aT2st;FVN*7kNA+72S9g7;j?m$PD8k!n3KQu62Gbl=0S|bYJ13 zehuvn5)>3tS!f|#RqhRzGgN&a650{{!}4f-fi3~x2g) zNp`K3y`}zEJn{whmRX>Fk#t-YAgZOnpjzYPmXb|tDl{`~isd4vm*gjgB$GXgG>4ceqWy@+pfFXo-@OL@2ZGT!T6!jHR`^9$}P`F-~a{>HtMe{kQx z|8cKTDemi z3B}2S3VkDStO4!kzjcjtLwb?FhlG_5wy(34{75bJ2~;6Vs;@Cz4CzsO1blSO(3fbT z?Q-zZwPuV6j^%(JWDNpK=wOS0(X|LHEkO(i}t~ zAq1B45m<8Y3{{LP%|ng!5SGrgEm1$+AAqLC2rTVH$N5_Ue`?KpIhAk2UAE!J=}+E@ zSNU4nUqrd6g1#SteaLU>ApeV0k4g4g4&jdyD6%cm;UeudOY%|vH8#&qnPvJ|5d8QT z=fwV<#_Re)9D`yo{jQg5Y6W^8S|JsBXhMQkcqOhCYN!3W8*WzmJ=G|`vg^FIHbJ~p z8R3PPX>uRJE`6R_yI-IJ_lwlg{StL?AEqAeSLqb@8+4lcEv@g(B*}!>%4?0VgV_b8 zfQq!MDuiG8H3+{7VuW9&=6j>&J@W0iLqW%EOSs23;94)?yo55{u&bQ8=CL_ zmKM0bqf6aC&~@&gX^s0=+Ti}3Ho5_-2-q4~ z;-;5@(7@X@r;q-?&&m>=nJ|6t#HX)XE)#lpzvME(?U;flqPEJkfl>fhY0D_Bp3$rZ zPSv$<`RjHdNrr zr%s->)YH?B`g;m!u%|tZ@D$P*PX{{P(-EWDiO%yBk;l`80-o-4p{Exu^OVpH9y3yG z7VoTzkMR81LM;G8u~mK*LVW88MyDq^AvAQADVC}UIXsX0Kp{!Y(gWdQ<~+m*FVN}a zSyjb5ac5YEuOK~50s3LhnMm1(wb=@0bwwQ(yRojn9t^NanAQ%NL)&iK9ol6^9-%^t(xF<@jVM)ii|C&h4>Y{$x_9psw@TMmk zvf!x%;4e8=iZ=-I2&-%tAT# z1fx?oRmo|Qpx|;6wO>wRbxVBpvqC+CA=v%1;$eK1q-;_rDDQ|;8iJYM7 z1o;jWJ^cl9QyA(%nXDGsM!}$L1ODS<&;u>FGsu>Ozb+3-^>xtnTtzLlq3F>$#!l2K z7E{+oqLnd;*^IHbsXgS6+8D%x=F>5$;BXP5L|_*s@w}M^p()ai))Z;#FvKVDyWBoO zq)Vz1dS@vIC)FsP5bn2@@Cfs|)TNylswl78;^*Kmx@; zo}ktVnVp8v?H870>DS49BmX5MS$VbmOl@+cJl2;fK?vla)@N=`R-zCPghhP6W8Mm} z-|xYGzYqKUe(d)>up262H#~qn{~-1A?1jdAh(>z$(Rk0pbe884n(BF!W_k8g(DNA0 z@jOoRJqKv9=Lx#f^CYeGJVk3f2k9oy)3n+1EZysQf%bR~(^H;T=~>Sk*za%CYo7P$ zZO?~v%yX1}@q9|Zdp>9Ke8u%W-*RKmac=GTi3>cxX#2!$0@*&k59`GDVM=Tt76UhC zhST~1S05wELZC}3S3r`5pqF$I5O$SUuwFGu7CnV5tdL{{5%#(gE4~iR!RO6V#`)M+ zpv8h?w-|eEWlC%8!z%%mTxoj-SF{ql>l1ui1MJ0Xk(UyL=S@Hr2%aDdT*#Nlhci`v~>IR za;^K4LD9O(y^2z=YUvq3#F6JWEWJOm^!~!q`grY0%ZvW=UQp$DQ)##t zDO+zko$1Y>sopwto;Q;`-nta_)}!;i^{K*}MOS*8&^6wsbc5GU>%4h%hqpED^0uYj z-uCo>w}W0zX0q`?YdK-+EU#g0Y&rFZ$XtdiBv>By*fIO zhLrMo5Zn@-4P%i>{51n~<|Bcp+=k^;ffiaT@ybj#7HLy?c0AdLP^kPfgQQ4T?8ZNl zdU<-*Kd(9KDi7BKwL~u`%=#C}vmP^){_jxdfYuUJI`5U#?F@9-C#CgjGp}`t#Yq@z z?5Luys20wXyg>s0(>!Pq@)lFJw=3m&yHSC+J9YB*pq}2ISO&eY40_WDZyzj!5<1=6 zm(KBmG|bzdyxvkQg8?+hJCNpiPoaywgXmK4V7kIPj8=F@(njxS+Uy-iw|ghho!*JG z*E@+G^-iJZywm8gce){=z=ZROfcYNiZQ{!>5MVK zz+R6r!CO43l-m`$W~tqnNb(AV>Ew+WmZqij9%KR$Mu*xG!{zH(Uv$% z3xAC@vt1Sp_*hIy@m0+=gB2@ck0_9^X1-2dGY|oZmA{x}4 zCv?ZfpOCF?JS4l$x7l^Rue3$1B2}IH)H}awYwLai-dUJS7v|DU`CbpT_j<9lebmkC zr{3NG4e|ytpCKCS4bxss$S%jC<0ATI$5{>cTJB@U3wo|Ph{ z%JuCHfZaGC1;!0bDy+uVSJrfmX2GAqnN8$O>r=W?rl_A(%HaA?A|nc-nZ1b}3*il9 z5E_^-n&XP~kru_~b6)kukR}dEI(B!m_fyS;(QRtYPH?bNDw4e(>9JCt?Dga}P4a?r z6O5gth`n9#pLQWvjW0}2LoA5AXk_6<5vcc4EX>QWFqdFqF2%xJhK0GDO1+n3aiWoh z_ez@Jy^7BAUX8`M0>b7R3V5%jGVe+%_g+T}yw}rm?+vulyNcF(SJNi%8rtq%OZRx! zQKff1?epG9k9jxHLGMlUvUelBZ7w)0vCYMmvCUNqUAC0}#^xFYnrah_IRWjEB&r55CNG0lTmfAeKpBlRUCN*` zE`!h$7pEMBwGurC7?YjQl%GQAE$6AROyx>GBbKRLkD^=&el$R@mmx5;j=;3q&V6BS ziHma&cZazpF3vlc#kKS?to@JC3C47BzNBAF7YEz^P5u;T_N!q$xhMDD&AU;7cRJm!Wm52`GwMiw)MeWq3`98D7OGP>H3*5ox?k-HOH5 zm-@k?7smGyR7}fYft!FLbi+Ubx-_BiR&4>3=OGzX<RRd`uv#{+j zlqlH2Q2t(XC~cYe&L)r{Llf5IAGHsq_O`{BfTQ&@IU+>VIYm0%y2H=jw}EOXdnkd%p@ZQ!S8~xN1U~RuPd8_OB22udf>xM|Udp z^`K&3PwMXLMJ2x8G}zaNPW8e5^}+u2^`rBA{mJ8l{p%Y*=lcfIMZQyLv2PGv?i)>a14mI;}po!mX2NSVP)_xS90qL+vFkLG7iai=Kg7w-#!m zu@>z^H4gMqY7&cCC6N)KD}uOZVt;EdEtd2#E7>5m!PAT#@>k6rLIGT!g48ZZ*dc$% zcS!1oQ?qUFrJ%9y1F0X4uUZ5RFj(X($0E3h+W9Wl1Krg8p4dRQBc_j1Kf$ADCeygh z=q@H+% za2SRa;|S2`(sJ@4{6D@lIW6)pgPIjOERX=#saplt;q$7&b?WM{s&0o?KgkJbkSM6L zs{gS{)aGO-gh7)XiR9KrCguko#N3=bl?a>1ja4mrZce9S(W9}j4~>O=Xe{hQV`1M$ zEc%H2ok)xJ9+ zw0F@>zPli_@1{F__t0+Ny|mZ2n;!GsM~8g((_!Bp2<}Qc;(LHT^F2u4`1aBdzK7^{ z-#%8phatot;YPkkxtVW2xAr~8g}%qRi|+vU_B{dN{Und_J;f7!2YIURX`bPGhF!kr zc#iKyp67d+m-$}ft9)_p$J;AIXQyA=K-DbM7drmnE=rF~0_Cq06BpmhyAjpQr~V zfWS1wh!lL?4_uCfZ@2PJojhrX(y!Ze@&t{3;0LURY5+Mle3G@?6H4L`FOT^cZ}Npe z=v)OsbcD;)CE{a%5-5N)3VaL{Tb&JWLkhkWPk^@}1z(MLFuqZG95my8@GOqN#~6jq z2U0-R0v^zRKtUw992bhoZbIn7Or!Xz3Gg;k<7t#?VPnxkU#APSCYC;dMlvh=^~bbC zGz%G^xO9vNVddXxvUV`c*fJjR548=Dn&~yArWyz#E2#T~s7PkU{|%{GGn0Z03X-sO zg+=IGFgk*rULFvGsGp>I{-t=So-?Vz;VAl3u*bT(-(R1y{aKXfZ$$b2##HEULdE`U z>gLa(e*UI3*q=)y{mp2+AGW!_IZgGqpjrMr3i?~p9Dggi(2t^Me;Zor&!?;X1+>B6 zfo|~^(cS(obicnl?e+JfNBt%Agug!>_79}j{pi^0A4VVgM`$f?0`3J9hAbBR&bT*D z;*Fb}jeD$}LU&j@g>JQW3Q%TNqGN@%Q*fr0=$IEzbQrNj$A#qMdbUy6DT`{g^S5fY{2cTg#eCq=Xif zYjG1b)drYpN)YL_%G4K|@H-mMo-#oqPJ$xukC^*tq+-pP)G!$TXw2j|%;b2?1COirdT{^@j@f2JP&HaH)6viRutwB!`fTZ^!7l{PzaH6o}N z+2U~kAmZ@bxas;eZ`yVaZd#nA^Q%n2%m%gGG#vN1zsbk{frSg~!m>5mm!?~a905hs zAOKi-Q#GKn&Pi5vY>XQO)xpZv_h?TEfkr@)8;U_7_3SVRGR&tGeGnYoVh=QgJpgO) zd}K4@)<7lLI2sjWp3tYTaTV`s4X-LuPp2m7X)9=0QH?++InSAl0j_G9p3^Ad+ht`O zqn{vQEq>NY%q01pSQ#Fy3@=uOk2?AN)YTuLzWyK$@`q@IAH3TB2%YIS=v;r4oc=Nj z_-A8(&%ypapBDP((h~m#w8B4+R{6{6M*n=;;=hn~_%EV+{T1|}|6WepDJu zq|uq2kI*>wHJ!`Nw9}P=m|Z6Jz0lmuK_*g~NC=gO@&eTv5>1TuF}iBtX!UgH$<>!^tv{t$ zz+_U3gGBKH`z@>HeoH$Qx7r@&{(*%3)~J^KmMCPZAd%I1=f$WMwz2IxQ@TnD^{~dl zHkLN;|LNU_t=*y|%i5`$HnftbNUgx8l0?rS3HlV@@l`?nL>E9i2Kx})&p`+uJ6>Y^ z*zt|brwsjM{bo%<3UrN=PcEgUJx_Zhc+<0_l^ly>En3@K z%O~2{TkB8YP0x~iIaUHv3OQDaHwe_Uv*+2{Nu;I#SJ19feGY+yr-8-#F_v?vh$o<` zw~_xQi(hyBO-fd2Y2Lc1s!+}BS@xTx<3fN>)Jz$AlwapT{h)tVD!Dw|691uw( zPEd1^_}C4NKM7nGR|6fA3XTfDPJE=HEgKRaa7vIMQIhzO1WCCvTR7CAMQWH%a%9qS z1$uTZb~mUFFzBSHV6$oiM@5{MdsQRN8rA^i1(^`GB6eTnZ&5%XV)uQZxYpo|Mkx4t z6Kob&LG1p-FKUj8CU8%lMp^_IFmA~AA@LyzlBRs8W~OM$?Rle;YU*6>j6#DY_~vFj zk!OR2LY$X#ILKe%+~z!w$ESRV`)$DsQFQPX{+fr>&p>dcE=Ezo4cyHpX_i)eE9cv! zT%k4J0Z!Fh@z*xI2hcBFRKO2&TFPBO;?`x-djHdyC(`aa50*wruPGbXS(4@dbIyZ18IRa;qFEE+r1*TF(U^*=doJT7H zPP#GR)^@T9X5L_J2~4q-#*vme;-w6LFJYnXrS#rJ-4DT{H&OSc@Gk_H;6sJDgmBGn zB_^18h6QGh)t1O~YiJZEN$1Bho7S9|lrGqQKoW66yP3?~f1DUy${W{4{~Gz16y=jD ziIdghiibN}Ck}t_AR+U2JjzHaAaNKL65THsf(RGhf5fu8ps$CRLMY zxFm(C%jP9hn0QX=7j! zZ3`@>U4ct!ci=MG7g$0E0!!(cz%qI%u$*2CTu$!>uArlVE9tAiRrFKfYWgFvf>Q$5 zaQ(n_oEKQdZ31h#d*DXy6WGY5flWL(u!Tniw(*$2cAgNplV=9*W>;W0pC8!6mjxc= z%LDs(UEopP75fG~b)BX}J)#kpib@$Tdetp`A zkmmJB4>q7}$ljRc!n@!gnB~IzP}d@e<3@CVe%3)V=^ppFHvF5=yYwDHWr8z4itNoQ zgb{M+D{v>R#;c}q#-6}EeM-6bj(rH9NfJHy`~UJeHqfd0KP*48F6Ow zT7*arqN z@VfR4q&vck@C?lE2v6x0hIB`GSW9E+j<82dW2x&{g}XDmBU}Y905(0kBP@XzV0K5C ztE}z_5!n7_cLX<56J~dW82~+*-4Xi6yCdYqyCdYpyCc-Ix+Bo<@$Lvm+3Jq)4(xn% zN6?b|!dOp)f+|a%{zrQvh%pbb4r3mV)mtKDwyY`W)1HK&2hc(tPcY+K)e!VLs0#9j zbry8fVw6b2sZ=MF5G)Eh`gV~{RX=N%wG7zuwZvtuP)YS*tTf3v4)RevodD~3y%<4T z7NW5@bS4fYF@45~U>XTc7)-Jtx9<=gY+TH4z4LU}s1w1dQpo+#~TZ(;9PX**Vo$CQO7oe&`^Pp;2P2J&dQx~@_9--{K& z8m`dQHC3H-gnB}ERV}ZTP$CC}5_6?@PI*rAgiy6csM;m1oYN}daB`R^w{7*Xk&YAD z+shpmCjF&@7}*`=3p*uzVU=#V6fPPC9h4n(Q(n+RZG&Fw5Ck$i=%+rx0G$#H(y74^ zofZt!S-}WR3mP;l7$tA8jKaa$bU|z zyomM%E9lAK#q?b85;`1QKyL;Y(g#5RE`y8d>)@sIL+~>CHMoR1xRf)3%eX;sIp+i~ z=e*z*+%9+}cMVmC!5K@vPwW&?`4UudLz=gR6OAa1AdB zuH_ZMb-XILo^K4^$XkLNct`LizBjm$9}M2i`-8Xe!Qdu-A$Tjl7TnD52Dk9X!EO9m za6A7ec&ADa-mU5dcdJIhJ*rjkLDe<5PYnt_s)h$2SEGYZs?&l`t22Yoswu%2)b!wC zzx%4*sdW5B{xn(Kb^M#dXo^F#bc9DWbcr!?69(DTqhOJMuALzGIYrkZnKbop7Q zb=6#qv9l!AJs))uc)_V^A9;Xr-AkzDWvSA40Ya5w3w#K=ho_ABl~6 zLO)p#{OQ#g2CB12)+R~741iL!kd3lKs0IZsX4_B(bqLj=&Y?`|5voglLk(zTs1Z#J zWz)=1QyoG&8G(8SV0}%hmLB+C6F1nGI>N@XTHl!j>Yb|?2lQYeJ!Hm)+SM{5Z^3v= zLD25Z1Z`gsACYQIAw9qok~3+D-ai_u|a5#L1;;>L#?PF)S5bm z+F%g!se7m`^$vkJAXJEf=!AhN)`MUI-mIqat*KX>HKc275c-oHc|4(Akla}o0MCC> zXWhbgh-AdD0t#!n-^cKIx!+S0?zcnyeytT?Qs}4LAdL_QCh{7!Y{Wk$fSs!Du`Pa! zLfvqWJu%U}C_mJj3PXLUDAbQiLIZGbD0al}n)h|8CDQQTV#jX}^IGU63aJh9h}G|_ zWsEXjHzdyNRP(-4o5E@nB;TNf`zngxS2ZvrDp&p?h5j!ZSz!tEtCr&v)1;0h+BNhI zwL54csM{QZ9MZB?YFcu$#AtI#3=k=@dexc;BHL~OERoTwhu0|CvA!u82dE>7Km(eT z^FUA6lJiTlN~>r5BxHD8I1kXD5a?-C{hWZI2O@+D7rkj%27%LlYwm0bU$(S90+lN?=4<_pwB@HveWezP5{f%QBT>v;s$^GK}cQ?Z^$QMb@&tmiQ_Ff^8ihQ`sj z(0Do{bQ(T^KrxE)7khD?(?}%Ftw5ADTj&Lg&!7&{WzP znnw48&ZWxGbb2H-gARsf(&5l~^iF6NeH?Pommw#8A9B$zAvgUQ@^DJX%k@J(&JOvx zWhlUfp&)k&g}7HJ%%!0S4-FYSIuzy8LuEWUG@ECH=CC_-K1V`x`TWoYd|_xlUmmL9 zRiOoZTWB$F4=v%lLd*Hl(3Si|XazqLTFGyPZs5;DYxtYcdj2hRlgbR;qMC;`tJa~d zsvvZS>J-|kx`ysjy+Ze@exdu-DWOW)(`-^946^pLY8!W%TVhX3%)b!GJ(Hlfn`#L8 zB?KlVDg&mABu%EksXPjJO&X8}0ClTjFjMC6^DsojWxkM~f*~R<^A)@Y>^nEWWnRg5 z0l+O(pzEQu#W}5qnxLC?5VAfUgvuArtOlSnI9D4O4dM1q(gsErn5%|rW1>WMbu+-3-%erM|l z(77EPW1ri$<5+W^fsW)KB3adfBlI%gj8}PlAw89{D`i{^!{^l)zG!s}U%HLc)o?Rx znb_w~tb;0pKo}BYuycU@QpOV;ToVET-H(6pbmPe@Xo1c(r6s6TQ!pz;ofD*Gm$C3O=YL{<9UC4Zy*GlhQ09+_QoU7XOB|5(0(ZO$EY}TK+AX&kKQ@99$Mp= z$#|83NAFhiqA-N1m|CKB2^ZBpeo<8-{N(5i$S6QEP>7DI%NTd^ae-v0k4n)14i0Mu z9#1Q+^Dlq_=)ImGTBJHXp-g8cVkQ(ihygeR;qWYk!*kR=^gNW^3sB}SQoqnkbV}$j z4G+CcV?wXc>7iHY?9gj;Zs>J#gx(@g=v@ej56B38MCXS-p+%w3Xldw6x<2#`tqpyr z2hnSeg|(?r8Ehre%CV^=4s{A3I=!&8Y&4wC27G55CUp#*j;N9lET4|o!UdFuisIoq z#xE_JPl?(74pdHE4J+1UGVi3TrF<5XxmciPF@ui8?8b7_Kv7*uoY}LMsoRK)sDr87 zlrVL@lBX`Fzy5pG=c1v~I%l~xqh#mG^!=sjoht!!%jlevTA6w;7@e+@YJ-z&nj{u7 za|(aN6#jxK{10rhU#U~*1oaI423zcR8XWqAMuh&v^!6R92XJBRM1P+ZTW6m1d_#}i|y5DCQ_H(!;<%L^Oez-Li zhTBk4IG=ij+tPq=I~p1;ppoJBG&WpFlfoV7+;B&7ggcQZTtuO87rH3iofd|H4-c2n z72*E0COklIGc#YkHa%pTIs#)lk~)V+V?4*vsPF`g;~9F4Oo#03_!#w%k5O++zYD7&?%jql=!A7#-63mh zI%Hal#gvulkPWDL|HyBe?JI6fxc`B*-hWJo-cCVU=E2+zX6y0Jh# zSfE}AlrUWoj?&Wb9J(@m0bLuOPpiTev_5=^9(+@X+!!DH1@XbZFgEy|z%5~QvZM1H{FfWzKe1DIp>1(xif znp2i~6$D8e_+ANA>6wFToieGX>(^LKlb7c9W{mb|V}IX=aY~am3H#P8U(n6+Y0y-aN^1s|lSvj<)j6rHR+i_GZ$=D}b=Ne%C~rcol$cxqo)+eK9nRgM0=X8KvE?Dot7X%G*GfuPc5ge_)zuag!&05)LPP-j0Dj%?Qt<73d490FTp-U-=pv{2({%@9KM`-gs;Fpyb}BH zDjFTWn$8HXpsC?&Xjb@I?7@{3313HZ!`IV-@D13DtLU2WYAEzIv?08fHig&G*6@1T z8NQKrhd0o^@J)0eypf&>-%KxrZ=pBCo9IaRR{AWwnZ6Ehp&!Dx(VyY1oEF~34a2vy zJ$whZ32*04;T_yPypv19ck+PnE*=`bi^qoV=855Zcv|>gc7=CyFnk}Eh41I`@E%?e zuH>cR2l(pngS-DkEt%0#l z)$H(JYF zMyqb9zHANSWvXfg`%|2{St=K?XL0Hx$bMdnZ;?ExO{>zn2nn4)R&x!Ux}^+)SA0i( zl%IS7mrtC!)hOdShI1RzZn%c4VZ~;=Z5S@{8(boZFmab2)8nqJ0Th@^vBH@6#kn2SO}B5=v-!V;2jJ37JPFH zcEL@&6`#uk?y){^#<7-M&XjT&?xPi4&!a#p)`930>1t?4Zws}FAys0Mm4(`?O3<3# zoe4&?tT;$taLB?Bj4|VxpT_y3L+v`92{XdXYnohmcnuLfw5Eu*Ns)szbKaVuRfqk9 zh?bZVg1@#uViGAy$@VOf9#L_CT$-?e74=KE17imH9H#_Brm&7aR*GYYA7z3(Q{qN- zVGKSD9y}=Jza_-%gIo4O=|4#B<6y*xz(zl3c`630X9GE-iM;_l0(YhDWe8;)c@+S- z24Lev%jUHuO>qS1{9IGs7vmkM_?pSb&Q212$r->LNWi%#WhpC<$EYeyZkqZcy-r%h zuemwneJ#wyUry5mVW}Z+In5G|R9R`dU2_Day%CW1MnKvd0cmdpq`eW4_D1SazX(Ws zBMoSHq#=!oWYKAnMl?Cnm}W$pkSmf+!AK6xjx?q6NG>giG^1q^J6#=VPS-_R(3(gd z-4tm_TO+OL&PZ$89ce>*Bl+}Lq%A!iX-6+c3h3=fdpZ&+q^}|!=!Zy0`ZdytDN@9# zkuIDa>COd_Ufd~C!u=!tc~E2^504Dy(UD<%T4W@j85zw}BIDQ>nZV%)z`~J9JTEeZ zD*$be3^zO%G5P zUX>lmt)mb+H(~SMVEYnRv=s>i0a>H{ADsY{LWIsN+|jyVC5QRJDCHfnX$z?GwfJDZ}=ejqNiB z+vj}h5t&PUBNx!n$UGVwDW{2%`7|wZAvq!!kuOq#ZF4cri(En%M;6f1$YNR*Swia~ z%V}feO4<=wK@UY%(*DQ|^kifW9g3{ScG;kp@I~g3T1yzVw-vX!%hH>48ytLbmU@7b z!ffx-7t2F3TGAJ3DV$7M!V|Gfh0`J(z6L4=prNpY!3--6mxU?rEczrx^yX5Wa}4^m zu3kW0wKZQs^WQ~|DR-i9N)m$1_-X?**J7H;z{)eTZ^+m1R z5Xd4RCWoTkWG7V&PCda@^QC((MsC4;ZN_|U!F=6@`Pz#4+D5%1x6{DL9W*4eokm7> z(74Dh%-20MGjbn9-5x#mrlabPkNxQQ*bk45{YYr#qlh%xXdLw6<+f3{PtnqLUAQ?k z?x-Tbnr<5{!-N4ETXTTuVVszP6Ne`Z(75;jA%d#1GGh_chfe|KdPHSG8y>sQ) zwS(lLQ&#V+HkCX^J~qCzzCBGETO9-}Doyfo4doZ=$%CsjD@mrvlBVzw)HU)7^^UwsrIFV# ziLYZ4-@xL1lg^C1MdwD|rdg49AaLHLXyiSbA9X2(SgWk5ISGdTaj<*y~y|UMdU~NHu4Mo7&!s`{0H>&-`v!YXWY7{fop(s6~b#Ep*C)}^|Inp_07h-2eASQR=wV3bq zsgmYFe+qf^BRFTh8U{Ukh+Mon)dxK*8*~WO0ioA^YGj$w0HO=Wnn`7lZd)WWP6w{H zi!MYKCDkw67eqXOLzrv+jGAjcJ&Il24Q2ja6ZY}M+Sk0;wh89&KBz&IH>!B4bxo*W z&l25@vqZXa;_OnBgG#gHO4iiuAgKCOTmMDLLWiT!XYRydx<{u2*Otl4-;X=B}h zyc8wau(q4n>q_esKgwjHJ*GL|+OFGzda)4<&P^oeO@yn5Rzn$d5T9g#obL4xh3n{i^7>fFJ zw(CHYJfa8(hkBND!4nck;Ks3cMIC9eeoPV{y22_M9#~rw$J~0=V;3>n?F4X0t=Vi% zXsKO=oNTdvY72{0M+QpvI=O~aw=vJnuYLtNC?B0G<)h_Qut0mESXUhqYVf?ke_qyT@$4qR}$g{MmA*|xs+!#qkO|og+_DgYP6uImrqPz%Mmq`_1vJ}ePvu4-RTv#;iP4d+GCI*Jqlh*b#kASzOgoJ(wA<)P z4;tNQztNoz8a?QFqbI#;^rCl+-gLz1L&uB~`p)P}zZ(7MZ=*kF7^U3M7{EEkKyGfF z!mW)#+};?>-HjpK*BHu!jA1;=7|s)n5j@El$uo>o*=>yCkTII)8e_P^7|V-|aeTQk zp071dT_d<`o`F$elYG)|1s{fr5KgAI>ugG1LI*^6Jx)vopHd{(Rj+%#n5I1zhz23OAFW< zTUx+Y-_ioe%A4@Q-s(4)s*?K{uD*gk&@DXGC(s81FPx&@gg%hm$4qq?`aqhkhtw0X z(xP(pK&*x5615|y1+G$CbXLC}ZBREL#B&9-z-DzdLOfSN3+z-vlP;YIccY-yEG^ov zqJXdqYrsL}R~_*ijp<^O0LKyx014qTT4yx0QapU;2;kPy!VJ^~gY3GvL}msK&2 zwE~dvSzrUC+4@`n62HW;He3Nf;*I!RK7(;cV*}dqwS0?BuCyK4d#>lNaHRzR8ZJTC zt`2|~-piMy?1DZm)1TC?r0S}jNUce= zmnlb0JzDiq)y4c!)e+MVm6L(fr`BdbOU`G_Q4W-STMK~z_B&*Ha0LGfG?yvN>9cB4 z!|%hW=m9l6BS8&MsznVaR#!pyT2$0&_f+x=mXNPru4x^OTcRld-&g6NnyH1JChc+w zScWpR4g#EOp>PcWt_2;0U#$<73~e|8CMVuCl80=-@lz_(8X-;v{*|A=94Wy1f&^kV z>pHUS*<$1-W(h+nZb8XcraU3QP@9;jOK&tFD!;qiyYN<+7odg<2tQ^Atca|PNL)|lorXmM)HtdQf#;96vtF}XSt#lP|4YNVe?p* z&=oovm(UGQa1Xj__n>Q)dw`>-%AXdNb_W?mcl=nfJboSndz9CJ2BeGftdpeT5Ji|< zod&90Tl_f<6ZK?uiq4aO`4dm5O;J}v^Vh1iHQz&S`=m>R+Ma8Nxl^to{GzVQ?NHa{ zImL;;h}$mD(F(g8?$h4An$~`UE`ZjCuVTPgG2p8hhpD~sG8GxGP&eaMXztf&fblww zFy5eX#+x+Jc#EbPZo;}1U9_>&#RUmQ06=JTV(7e$#b ziz>b{iZntrh1W+@c~dlvZ;!&6k7n=#(K`G{G?Sl<*5&7-_4wszeSRz2fIo~jXj7FJ%~kE9%~Z#zU3HB%SN)?c)Szgd8X0Y=#z$MJ zGo$%xaT9HHBylreeF~3G5;sfLTRL3> zZXoqCD)pBL8c#h5gx)szcDJia=wx9ezDwN=4ZZ?e{UPXl!P_;Y#})J;qNiE(j9Lxa zRbkXStXAl_YGZmEnpg09P3Wkq&}p4)`U3PB0{73MA5;jX!=lwsC^vMz6b-ah1I!pI z7ptC{yu!}CRVU4@*PI8awwhb71&>g6XnN7=<5XiH{zR*v&tF1=OVPkZfb`!8?cbU& z<9Bo-s10Aquj)ilKCkB|f$m#~qJd5P2+9nOK&#)wyL57>fFFR)m*h};eiEM)U0w)w z!Rw*Rmq4q(g?^g1VO%;wgO{h=g>mTw4PFKfz5-hP1nh}Ba7M98<#SMGunteTwWi-BWEg59p=FZg1#8b(GWp^XC#ihV z+FwI!%Rl)*!e^?z`!6-W^<#0p4;2s9Z)*HRy$_{7xu()joq*Mr58OZ^7JW)BO1}z# zg!nV4gg!*%ct>p<(OL(k3OYdiZb661Q*lWhJRx0FJt7`~tp+-V#-69=sJbE!Chq*CMJ*dHo0?vYp9;d&RlsaMs^C#h+hEc8lO;iTjy1Q0rYu52F$WIx3CES3h)E+P>lX_ zU}7yTX(>;q2r57*-doGNp`~r0OQC1c174nzsY4{zu5bKnt0I1=0%s>@|8vl#VQvmON+-ll1p!bldb8Z#rkZvuq0>Ny zeo+;(OYR-bTjRWZlMRFx6xzKt#mNDjh>6%POn7o zpbw(k>9gn#`Zl_geu~~nzejhmiXtf-y_>V5_i)qbz1%vwn+v1&ap&m$+#|Y&2Sh7* zNb~_76@8E=MECO9(T8|?bRWB-4|6aIzaaV;FN!|FOQHw)is&I|wdeWf=u5mM`U>9> zeVunj--1?qmtTl}z^_C<;y0t8@O#nE_>1V5{B86b{ww;uvPFMX8PQ)<{pbnRIQoZb z8~s~#C{wDWEL9CC%TPng>Z*}t^|kf@Bckj`OM5`7TIJ8}V?JTAY7t9cl&CCtf|B+h z3{ev!?FOvaB<((nf7Iy3baa3CT64-}kOMg{0j1UcfM46dt2=r(X?!=_6Q;-vWsR zr0mq1QkI^?{J@Q;M2_oe{~%>glFCtilA>W%X`3RGU$ef)lkdug6+rz_wZ`GK=$9BEI#IlKGQLWGwW(O|N-xX#;R? zg;=k5CAf_<{^8!>o=66BvS^X7@M4!vWgb0Qi!)0CYbSA^U>VR~pvw8F*|k*q44`>w z2^_>s2rZRTO6lgZ0kpMjAl+GZ3hgNyL=Tq@rl-n=(DP+O>GiVz z#oc>=M^$xg!)xtSAV3HS5PIk#^b$g(N$(w`2!eoAVfvXqbdVxdKtT``v4J2MP*D^c zh@#j*QS2!CAU+mQ)c@Z5oHH|-47~pD^S$5oUf(57&9uGu>i4==SNhn}jXt+@r*ADi z=toOWx?<_YWa-T*mOh+r>C2TZ{kVpuKi9Dg;5^GfZe5S={`)#m9eJf}*@-p2)N;6xo&~qNZh;sB2j%T3c4b zYONE4EgQrL%iUs(Ws8_<*(Nm04za|tQ>?H&B-U6S6&oyj#Qm0i;vvfcu^T;fGCm6G z8pG5+0+2sg8m1hvGHl@%7#6M&QO6=wt`Y%fn~m`@7vQn>5mQvmluU!gcoj2YEQQc< zC#h(!mbjC1uy8I>pkk)d6c8;{%v6S!iFzt#N~1NRhKiXmmI78(#!SGN2%%yojHLho zZXLc=IvoZ8PL5`+05r+xibg2|)Jdmd;beUDF~5yi2!KcWmVq&WUCW{$`8g4UT|<1t zPwE68NX_j66mB_yZRxxfP&i52R~hg)*#un`P0kBcR8$RPVErm8Ld?Opt48Y@+?#Jx zjn*}JE;obylcar1fS-hUyN}3eT!Dgqz{8*z*%7m~;)bct_vb;$a%PD1B^?`U+<8;@;JW3rJkcT-05)dHAwPX5E z;x^deLNoy_!YzO`kuz9~-O;)BYAOgxdrFobi#PiIO(^BJh;kEogDV{FJ-Y{)0n&GISrwVZ=${)}$2d`{ynU(jUBmo(Gz z6P%t+grH2ev)eLiIjRFmn!vcsT3N+YCqd)^;H3~Fns5A;RpiDFhG&J5U(BPP? zfSLmwj=Cw*MIB3&rm-I29A4PQ|oqp9<`noCC$~ zPJoDkGdK|sBwPi4=u*s9Msp9upoo8gFewGp+5&VlAYAwIj{9g4)yCRjsbx%d$GWx{mPb&M{3d zW}=$dxLa_ZWpLRJ&e1*ubV=x59Hs)!WSsEtai>MtNcbTG*6C3i&B!)M3<<-@2Qnf+hwNE8mbc;yL|AXGynAwL3wlfRZ@q(s|)=K>R#XTXra~WF(JN-f1%)C|{TsXJ2FM8Cl8LY_*#zVWa$F zm9PmnX+(jQ)IbYsPwZ?T>}+4`Y(MO5f9&i4YHl4!1=c~-**chdScg!5>rfhI9Y&+A z!yzXlXqt5-&9>e|F6$`rT1V4d>lj*Y9ZPGh- zvcq7Q!c6LuyWPO|J&3)XMixW6&88U!v*lbGWoWlG1lF3wnlM;WcEK2eQ?taJsT&7y z3%Guclx985wv;?ONNecC8l$4ljx~ICiVRhzmg`dBPYFY25de(cWv2`$U{;X|ClP*8Qz#tS%O-!kP9@V& zSLfnTf=)9G??e;(gZD$jVVoJi(L9-v}kNb z@ADhzgD&Fd@qco>86PoCWF@IcB&l3!*)Q>nOkYTDIb2;u@*7uw=U2!sorr!s0Jk&b z1Nns&o8TIW?@WyPPP{)~mKp!6&g(36&^uzo^jMA$S!vZd)3Q)ubrc)e5e7$TS((wt zBrEDpq+{>dWw^*?{aA?81b!VIMaHTv#sYi*ZKvww|>o? ztlx4s>-XH-dXYz1f8sILU-%a5Wu9gIgFV(i)gk^wKUJpO@_0i})??X;6~ZCTewCr^Xk(CpXc`6zy{!V#vh*a{8Dz<>9KA>fRY+Q%UZcIL0U{kB(1)R+lksgo z!iZei0FeRRxCua;rD$yA^Yk<^`y zRQ%Z6q?0h4iQy5K#Y|-7iJ^T>XDJJo+^NLQ*eOYR{e09;g|4$xDrWe9v{?<(nLbtKK!iGsGyIN4ojh3!UKW9v#AY~5&!tvl_s z^`OUWJ?RNsFM7(>o1VAzp;v8v>7=b6owoI-bG89=!8VY7vJIlkw!uucA)I0x%H?b$ zxQ1;MH?@uBR<`ln)i#lP*(P&;+f*K6o53S(xARz=g(ukTY_Yl6Y4fnx=I4+t#0zcn z`3@U`K-*H@Y+KIv+3w`swl(~OZ9N~cZIF`3I)VH1rsVMhrsM%HpkwU|cqybz?`fM4 zDbst}G$m28r)>rlsNT~y2})Y;X&Z@*qQu%;c~H2gt!ucatuWlv)+XH3RxjMsR?X~b z<4iJo+K}fldfFhKW>4Fda8KJ$;hwf{luDO9ZReoU^`5r(lp>csZ70J$ZO0v~>RE8DqB2@*CCjz#9th;U5Xh|%$ZZhF`yi0pA&@&D zkoQ9%AAmsagg`zBf!qawd$j2a%$Vu7uKp-E7K<Hvw^t0_Pbt@Sj+)s%qc*nB;emXCqwytmwS7gsZC}#}+qX2?_B~Cr zT_mUNC-T~Up(VE8)OPB#=$D4Kb5?jeryARdq!B_+z0YVk0(-sBXdt#&_8Ij?$Su>B z$!hs?)bjVEl<@Ma9w4>YNKNaKza-9LH;3e>VEN}nE%ws*i!D>rSY)G2EE%M++5p!e z+a?@^$uSEnOOtW!uw*!lYV7MIkG1U&tm$7^)4wUlPSn88lxGKpuN~yQ_C&hDo?!4~mOu#{#BwL}6V0=Ll&&o^0Jlib*C?LK_G)wCx zyUHeHCxy{pz?U7A7`La*KTna=@{J2pvs2_rmUmhK{)VeCS;Id^Eu=`ta|w`eDKbr& zo}FUkDdqj=%@4fhWTJdu@T+mb`kguy!7RZb{_}b7Ib0 zY~8>Y3wf)YTD+tmH*paMU*J>ips^%3Szvs3NTwStD>_k8xpMIjQ4<2QvZFOL*h#f8 zJE>;SzssZu0B;TjcvBFAu*9$$2x4ywi79}@w1>nLLSk;9#`X@>%-)e&+dENvduQrm z??OH8H$rN<(nxzZy4l{HCfa+@OnXnV*n5%Fj<#ugA6jJZOUv#3Xsx|JZL|-d`|Ja0 zmwgcJwhyKQ_966)eJH(PA4bRQ!|9ZL1bt{9NuSwoqOa|v=%Rfz{c0aWSM6gt!47r? z`#4UwkLSwvTe!A;0ynfz)wwLAD>yT*I$UVhFV;FI>b{EmGAe_>zD=k0g!5B3%OlYJHc zW?#!!?RSYZ`zBGrzFAbVZxwaz+eK^p1ERpbOZ2cmBKq2Qi$V6iVz_<37;P^S4oq&EOd&YYQ&7hM+Ia8sHv{qN^TNBpY(FtsUUVfymp`ugvw@<8|7==bHj!mtSSgi6NmQr9( z;QiTOhLj$oTK3~q&;AI0<`piu&5$g&otKVLf|o+Ob*~erC4$=Of7{+x&Bp z=9B|y641$)M+=bA){BvP_PVZ_y=DdgunVV|*=xxp5$lj1#8H(gqKBi**ZS}x{Eug^ zMNvwnCPm`s!czYrnXGDCku|-Qs$fmwvD)FW+CRaX!eh0cqgM9Mpz%JZ&h{^;yZuY* zWB&?T?`s-m|Axlf&%?v|mgd;MgT}i+UiO7DY=V5exrJPsGke8uv5o zlTOLnNckT=Glv$2xhO|OB}73MEH@S2$c8xE+0gLSTv6M(F}$5-Im%%APs+!!=4zcV zz`H0J)%L{IGR6Sme^Lzh`|79zpM{!0^xdSmnIGlHIly4#0E3YumFhT3QA0;*YT_tE ztsG!5a)80ekxqRb6=}4i5>0btlhaWx%8zq}*L#dnuxbc$Ta)IZuW|khP}|X?hfY+0 z{g587)G)PFLAa&v$8iQS$7cB zHJN17M>3r<^L{D7Na3WF&Mu{#G~Bs_ZbMvM0e-ZU(Qi-|{tg}*iU*8-gFM_v)ukLh z4Xz^}G~X^l2p?1EDejw@e;%eWtbld{z&gvztK)g<()^o}1o5r%D@&gEd^r$Wd3EUj z4+tNL))&~3jZUJIh>YIO!Rzo;!a8~QctM~)}9nhR#Pf{7+5-s|0 zo@1Q5;=zPsnU8hnDwmG&ynyuaMclcpa#5!^wn;zMxl;^=u`Kgh=-PKke@;^gQ8~fV zr~J4QefpBXFsoLS&sX{SP5WVm2bW|7k)sxbst$yzF6B7tQ3FSP%5yZJmX3zh&e4cE zI&!I}qcII|(UCrKbfV84o#|Ug7rN-UkuE#B(%+75oaE@vX^tLT z(b1E$9lf}=qc=Bn^xm8%`9>-|j>bRMAJ8t29j$66NF@>LTOylPrGx;sYY(D3(@>dQA zf9KHnqQlEq9RZQ%m@BF~7Kj|jV$srZhsbxV5H~nhi7t+{qKD%y(bus_jB#uhw>Y+n zS&r?(?|4AWbLnX{r_Xd=VJaPA3A=kU&EQc?G=oPm)(jrS2qSpxCn_V?Hjnduoi3-SB zZNN8L&zBVgVmXkJeWPk|<>@g#r)qKO^c-3yWUE{SdKpgRM!a7JCO(5L5|3ftCR!#o zAXS@*c7^pw(#odzzcB~rEBsw0PUE>MNn4pKvPaB?TUZ6o;4JgmGg1qU>&=YzxhZ%bG}2HG zCh}B;`8C@P!c7lV&+8$L~+>FiZAo!5s!p+?B9*v)j85Rb^hpW**Sfj?yy zPR|;*O%Xe#_lRLR>d%ZPq@~O;%Y<+Y!@eQBLfnQC-BQvD&?7LSvUMVQsK~uxD-g$s z0>vSr97*eevgp-4D4v0Au(hjA0Rs;X%ml(~#N2%JAt865)Xgc%6>a zXb4s(-SA1%rZ-5`llTnv3%14i1^>qPmk@}NQFiRU@GppG$E0QHiT_W*$rX=DKY$O$ zsM&D4Smc-KX8w8nvKR5oUV=t?85-#oYV3HGnmLY9YsYbF?|2Qr@D1wkc#8%*z=-d7 zPyJfm%^hh<98yrFcXP8S0l1yk5zL+G5$!0s6kHR&u}lI^ zidu^M<1d9_wD8lX$&BkjmB2bBbASoW@?&#=rqKaWoea+<3M;ZMiqXt*8td{g*5xeL zf(S~>Nros92aPm<6qF!m*`fZLE>IV&oL;t-C#ITOul#V*Pf@~c)jcAJz|NAZCQjh( zDj*7O5VdL##$Pq*%V4!s>Qr(BN-qIR7>d_jW4Z;&(k+mrU~mgcna;;Q&rqqpnhtn5 zsC&xif%Ztb1%KzKD`a*;n>YtofkoqYlB7z5Tq@cimnrTnMEnGWR53aoqdbPl#&4yD z5cS`%@xNo^|G>syg+TlX6a5!N{cp;55_NDg^>7O6?@XW(&P2M|nM9ME$u!HELUt!6 zpEyg=TxV%o;>1V?XBw?{mZiH3B?dRfJ2PY()5Rs zQEo}U028nfr=bHt9E+f|lc)!j(PEf`WFP^~z^uv2VOpu9rOUrd$AK)f1c} zxVj{J$>e~ga*D!s2%@uIIO|1;qaj;^OHkbX6Nq~(3@buo8#&f7gH z)ty}_$Jvb`8^rUewLmoBBHY&|qg@y2;s(#yk7dWaj{y=^RK_=OFSr z2h%*~5L)ION^6|MXp?g|ZF7#Goz9W;sPiUz+&K!zc`T0ecslN!NT;2X=@aKv`ocMb z&O2|X%T5dZ>9n(Ox;Vw@;WVe8D>#EuM>)eh%Ji#wlz}rc3GKebQIL@>U?W1gJ>u_!0KL#)-_rS^Y0KhDx!v7Gp9HofW35_UMuN?K}oR8DE z2&Zu|PU8}s#-)_!yn~uMmr;RpIdyiffO1_4<$5O#bFQM%&eb%*xrU}W*V1g~I&wMJ z<3!#C1-pS3JMX5uoLlH_=QeuSxdV!IC+&AWM2DP@(zDJzbkwW1I<$#g-hk7lBbV<8BbVpnwCTuYXBfGBdl&WHiswC>aE^?XMN<|3dGUyp_ZuXQsH|Wz!RLQ?bqR!3ZvFFCnR{sff z6>XmtOSRN%)X4Vr1z>fs9OQ$%9{{YtI{kOEf6k|I7@oypc#i5hk5I1jd1~c+f!aHd z;vl?8-JLH{ALq+7$oUG5a=r@HbPQ_gIL&dsMo#Am@;P6JYI>6vIp4-Xc#rOJehAg{ z5k27i1P9`r+H@U3_eglt?=&{O9=62H{>=+#|J>p1pA`o|!7!=6k^OU0TLfPcLFa?Z zb|)f?RQyFQtpZLaI{W93pZ$|4ItKd1$o}msxu1Y$R8*&o|#&}Wth~abJNZr|JUqxXVQ$C$vVhg^(7MzDXehYd0jv6~J zP;2K!y21G)-RQgodHjurJFlqa)Y0hI8!B@HS_UP&Q0K6%q6*fi@{bNphc-oi0Jx7z}v@ue9Z06 zOl&4FpAEU%#1`^7jF2o!xU*z|)%>KA(?%{KVTYk3SMsZ6S241U)iE{%56OZn`b}!! zi_|DetcVn(yvkFTF~`7c%hn7qNtC*dO}eQXsv_vlDih@`$HKqklIW{Bj}rXtQ?=A< zgTG^Is<8t_R3KPl4%Y=ny`$Azhdt^~?+B~nXQ618(B z(~Yha>fuVIey&n9+*O*!y2{W*R~k)om8ChZa^!NAr;sb17P~6YDpv+=a#f^lu1wnL z%A&_ym1w`KGCl38LNB6oi3z3Hk(XI<6lb5{-e)>V^!a@C?MuG%bIIb6zBhs(R_ zawS(iuHmZB4P6bmnX4hUbv5D+u3YZsYRr9HO?i~71>fvy%@bYue4DF1+g%-afvYnw zb#>*Ht{!}kt2aO5>c>yJ2J#Wt5Pr!8&Pvx!e9|?BKXQ%Z^R5Ye*)>U|x^5F?UDHK| zYnG_&nj@;atWr!_pY2$~)OvzVQ^!|LQ-=;^qh$-+QwE(mDv$e6>jP6TI+RPpa3vEy z7gbVO{T$0j0n(D`uxb1x+$mZ8oWpzIPA!BLa`7&Jw34AxLf}?fg;%73rGF!$1v!Fx z6E8xPAQ}0$p_5zIH)T4^3a$_7SUt^?P=S@;^B4GLAR6ySI_wy*R+1UABE1RT4v9dN z-O_CoW)W;s=zdlssL?H54?WVd`YE`Y>XEJjW{^zPBb|+kX9~ERN+BIq14dM`SXJYO zm;rfSRX^LJzIiv=iE5~t!z7i+>Kr}W5y`2C;nyjQ<7Rb3C8=aSi}#`?p{J~nw$d|P zMz;}A(nwC}{aU^ z+tx7VC^5{lXZ}@$>R;(EO#T3sF5>uB`Kjiglq_>h$S!4?8PqZWT>+iO&nSH)gW_0R z2A#5`IzDE;K7OAHlwy5gQgD@r1{J8jHwr75ugJ*GkV>_pdH-6JOHh5FTryN&mFx`E zKA`$C%|Z*bU#6_IWM`)#nfHgHe#G6XSP>9URl`;C#lq?plYctIAMc{1!s_u{Ua=Mm~-vvCg>keAsT1IPK%W0!)1#Ne&qz7Gh(r(u(I^bGOhh1yvW!GAI-L;P1 zcCDw=uDj@*YXg1b+DQL$ZKB^?chg_4dpO0lnajDhaHi{CuIAdxbzIxHiR(UY?b^;A zT|2m^>wfO-?JQO@7n$HoxlvirMuc|LppRued(pzg(Y*1lN}$-Sv&A;rdS0aec4! zVLe^E!ul}9)Q8}1&;!lZKzZm5!X2O|WO#{|Y$WU#ArYTMxAF@rfRwXtpN7VhITJrL zo@~KMMP6kq1|Nl>4_5%iAp^_Ow3}VD5k6uWr1;0H#C{sMAZ|ipU+Tlt7*O;D^inzC zD!Ks!(hBRCT#mEwdEiIl zYGBBnkN2y@b(j@uq%t?btM7)MtHM3$EYkVOC=ZOFlPaBG6}(5UBAqYw;UqY07ohd4 zD=j!d4L-s^yfC)Iq-xMHv(kx`c^kO1Y|JoG8GTa+LMy_@Oa57+Ily;>xEKHGDCGzC z2EBCqbV(J6SVr&jc|1x5J`-OB>H`#!(=Cp+d!{g1g2*~Z(su5gCvQ*A#{gO6C{uN~ zo@_Qjh>JWqG)ZjxPc+0#Zv#S3*q4-rI5_-}~e&k)03 zAcntE6W4Fl)^!;ocm=M=@6^ln2Muyvr4g<_X^iVHy2bT3P11;_YYF7ml4+rak;z&b z-Kl{xOUs~#wJh4BRhGxtfHFL89%Iy%%$)n3#xZVyjE3A+Inr?ff*IK&*%tW?nL|lJ z640)4D9MOMCm;Zl)Da^9th{kE=2&H9 zbWy|>*%=Z*Yra7=_0uX;R_KS~ z0RwVizC0&8NAh&k!4>2Jw+DjKDW^!d6*+%SQNk45OSl*0{FSro7bR>5J%5INqhX%B z-g&6>^B@6kbSP<564o z)|wU{(uIP)FAE(`j#y^GYn1h6m;oLrEgQu9zA*8=mR(=oZ6Gfi$_o(gN4oOi(B49% zRijL;CRNvJQI1xd8fgGLYjvnVt4p1+OD;tN3_0_;szR+%< z^I8YGsCA^vS|?_$GpA_Co@+O9WvwgM)Vgtftvffd z^ktf-msksZD2pNk#d7GwbI^>_fg+G#&{VRB>ClXlJ~tq4R$&e@%)kz;Lg-Tlq)@$; zBY@nV=&T%pvb0@*$_uY3NBa=kd;_gqo(_o|fJT?Yz#kD+@#so?+c!b=F01|-^u93RN9o(DiT$Wc`0A$e_N(Yisgo5JXAb0|*e=1vg;>)#d

SU$bX6brD;N(1)n1fAJttDcpg>E5bVX0_6piOQQ{GKL6p6EDUQ90p$ytERT zvbuU-ewMuYtguoZ5=C-`4L2*S94GpTRpQqqCy`w1z+Xk_@W_;<{}O)%aJ^6I?yRh6 z6<0(r)cNI-tEzPir60 z3)+WtOgjzjdIs9{BRZ>n4DEWBzSYh_vwlHWwXZo%`<5$c-*YAHB3ILX;@a9T(5{!c zvGxbI)BfTPZsr@^i9E!e!V}%4`8Ic1p6O0!x4R+-+?9B~yNdGTe$tPcsjYabsjc`{ z!;j13QHHiE;C^N$g1eiQ2yO=*B^#`UVdkk(iQu|sC4zxR;s>FvW^!qQiwFql zi4>Lu*9dS>JFBar3_a42AaOj|P6{^)BAAY-i!wwUm62CUN;ACy2RIQQI4DY*Ukyuh z90-uY(aIEh^3`Y%Pz^j3<^M;#eVOtncXi5i*P`m~+EmA#Lk-<^sENBSwRSh4&hA_q z=+0BSt>?@KnY)cFyon2H1P@)G`&JjbEdk+jm2?J|1_pzR&RlZ5-U??$r&8IM$ z#c1%ZM~6j6b)3E!E0c6l= z^IIT(lB=9Z`G|fNfa*|E=#2!p;cuMZo-`Q2zKn?aQ(vSmB^%LA)LC_?>Jd?6Rka&t zMnuung?Gpks^TJ?Nxfy^^^!Z5_&PotoOGgg)Q-IoXUAYU zWKWvxGDB0E`NzO8qk5Nsh}edRSn{`m#}$$BSVgiEDY_6Z4xVaNMkV-5vb60A;l`Mmz5E1ymG zv58UQhNfjYPnxi{(eAFsyg9$cm5duzC@19;3C*VS>RX*?{^Kaf!r>K|E;%o zt>+c0`KvToYZj^IuQK!yTD0V|Y4kW-;m1o{!C{`PiWKFL?i;IUUdtohHyrkG9`yOg z+#R2M2fpnW+z};=<T*W(AQ#RyQmpkY%}_%Y>Z<6?6h zk6RjGrOS}N(@|I@eQDkFzFAVoiLYRlpo@!*BYi7Y#~JGBzXwW4#E_B`CEGM2W!(wL z4nZHLNPTE3!bnvE>BD^0w(&NgS}C#=`+i~BCi-BK2StsV9|l zJQzjl!6;IXK8mzR-(yq$*c?S#58kE8Zk2#c{c42^DB6;&tTf}dZe>4t_E#|-@x}wr&nnThPp^X1Lpgn=(MN3A#v*F65JDEEv6B_f>};leKoXK01Y zCr}Ofu;UWqP$-+pLy|!bX-#n9gQ>TyH0tteWXgMBnUjOSvT%htYL#$>Hu%brtIBea zS{0e7l_fc_o(2o6Uc*rP6b4&4m0=Q0E!H%v05cYA5U#Rm3Tq$-m1rgVwj-lTjE?Q- zxK(!gMC4CV9(gbr(}Tg79t_6xU@)eqD&={qQAe6ISJ(}UEPc{z*V|p6Wd`}}<>dB=w9*hR`9D5- zz36F4$33m+El+Fuzypk7EW;$KVtgJQLXJK~~3e8~Z%dd9G&`uk>IX zqsPV@Jx<=@ar46-AMf!5lugwskHXaj4p$c-O$M--7n(gZ$a)$C3}_wJ2^c!E&FG=& z2Wz-Q$@EZ+Uu+F6kP1G#ApjDrgiQM&lM*0M8t>Iq0R)gkLm5++(16C|%8+vj-g*c^ zC>yWK!OoJhz2%`H{;h0pI<&_3%JyOe74(c8Cz%0+=qX+=8p5W2MX$kzuS8UOiJn6a zO)}P9rh~|#eTAs>Z`!NMZx}3zwrz?11jRa_39|eK&;SNvg``bY+G4B(FQepF&4^iL zbQ-RF=`nz5RNm^B@Lh_Ur0jN(WGk>q777;f=ig+DL>BQ;;Yzq_ zNV^0%H!etQ3i)k@o8aukWf(0Q3jt8Ye~AIem!mS2%qL5kFWpoM^OC|cO(l;+T3*wl zgukJ>PUn}65#zX2DsgM*YC^YSw^a!wWfZf@MoD8t5CIP*@_-}Xvk-!~2!gm6g17{N zxRhFW?w|tCGV0`6PTf2!sE=nQ4e;DaBR#8VoM$yn@~nX%t|hBy9ciBR6!hFhi#;1? zg$LDH&nDXF*-Q_5wo;L2J3ZrhfKGUJK>#12_dL7ljAt)>>e)|UdXP->sN^!-L$w>G zu|uN63^Gp{f>8jhyuk&Abcl2;6R8h9tb#{y3D6c8JDFS_hh(owZ?qJLN^ybVuT6R* zN0{DdR+!%CHiO=1BaKx~X<2nFTPq`m`E2H~)KMxrR7IsrWI9E;ae6*fhmn3*^0*~G zg)iF}QRxp+$L;jBk6Y9s`_C!hVNFWR_lh2*jmauyO&eCySV`<1>{I<>P!fHz3ar(A z`PV^|geR-0QQF~2p5|vM^xZRPl&vJETBfL(mYA%PA@3c}E~h_;DffpGvT!@0Dh6Rj z4OS^R`>U0j^92#ZoG&F}m@)s4$#s_tmhLta`GFhl-t6yke(i z<;K%A>_zFGJV-KokYx5C$?QRr*>jYdd0wP8o|mZ5^D?x|E7aHXDh>7=gSkHrbN?F5 z{Rx`sc^z8j4QQE@G}rScE%CfXt39WnVcw?uJnzsh50cCtB$++$L(_afFL^$MwmD62 zd(O~Do{#8r&&PD$bC!Pad_uo^KBYfB=QzRh8K-$Z=Zc;$xT@z%xZYoJBhS~|-180J z;5pAXdcNhpp6_^w=K@Uq_dMS715fe%i)VT+vd!}&O#LOE@A-+BdtfR(Kl3KfFTBn3 zD?jM@jrV#k^FhxQe$MkdzwG&g-|$@JcRYXcX)p14Zvy||P3AwnrG)UNi4<>nk><@1 z6}(v@$6G}-^J0Rgx2EXk%@Mu5^~4BoLovnMSU9~+h1c6cEc3P&tGxMQy|=yC?(HD< zc{__2yj{gB-X7wFx3_r9+fTgb9VpIthlo$T!^QVrmBNGJR?5fJuHuxbUB&BWC@+p6 zY*0-g;wc4S05%6Rsf{KO%%?P(K*R<(8~Qx!RnWbv2?W8jo($K7%a~_9SKJQW8$vRC ziMS2ASI#cmC`Q5oNru~TpBP|Z6?ciA23GNaXm4N@pAoGv6S@_??MosT4u~w>y^RLo zjR?Kbx+^kN@Slkpm}OM(pM_BUH@F>g^5viWBhmmelutuBFNDXcpo#Ykg8y@HJNokd zM(J({=1%LSyYakA@x4^%DZCWn{X&%PY?xVn558$lT-#K`ZY`eAGg&t5*5>7WD>z_e z>258L1qaMLlF*$Y^uWR&jqa>s;R1XuO>Ic}cN7|%A~H@G(VUcmH# z>6ume0k}_%_%vtoPP`&lSsk#)z!`dz8b_>7RP|1p9ep~ro>fqu5}YF=$Dj&$QGXtJ zSk?DH2cr+S+^VdW4jV$K1@oonAEN7exQ#LZvi~2IG-wGu5MX8^3L6q-&_2GlL4&6J zpQz;_Z5eI4bhA_rf!n9BSz?$pTrUD`QZ6AG8QX--+2s^7IDENx@f5vXn4Tw5 zZIN7V21r1X4ir{2@%~AL6=Sr#M0)?n1wD-5(kZf3%5xuj2u`D>^F5nA1ka%rg1pF2 zdXb;>B0uT9g&KG#P@Z=pHTT|11>Q;2**lqfc&AW*?`<^9JC#Ozr_luObeiU!L9@Lx z$>E(vKJV=`&pVrzdFRj?uZ1>xt+d5!qx-#fdd%yfgI*^+=XKF5UX9-Ly6LpnPhWTg z^sP5Y|MD)RKfOzsz00_QcO_TyuI6gqbzIxKf$Mwk=EmMF+}yj3J9u~SjozKy)B6zj z^FGRhy}M=HgVslNSWE@PZA}HlEy8h611KPgsw&{@a5XL?T#ZXIt8swonSDW*%xWCg z%c#a7-?5B8N8IC}vt~68&ZLA*OGx2cMm263y^5$v#y$7b9yC4)Kf}z55EX zlN)dg*a4c4$VMt4hKneIR-?)$OY2}?(lZ?m!{e9q z8XJV`laj*4E(n*Lw6rctxIVqEa7CI_4EM%p!bDur0Wk`9ZW@LuBghb#k-#M12~pX;#d~pSRSOt-b2*d`xM>aeVT6c zK7(ULY=YJ>X{+Rx<)}89ag-XP zS7+*AJ3ZU_S)AQ?9d96mlM_+9@p*VR5*Lq7pPZSvwA{hOW&QJtQvZcP4#{uI0$}1w zIq(X%W!di}0Fv?%3^u`SzyokQtx+*5EYJo`jw*y=CRXCoVnZNOialR!GEJ3Iv40%h zPErM(F~#00vWo+8pvj8?PTmixj`uV*^q!%n-jA?@A5(kpStyoIu!EmcKkqpj;{Aed z@qP`3@-2nD-_xDmi?rGM6O_j<^py89z2^O0?V#QdcEZ@fI-tG(EO9H;T0^82=d0Ng zO=&B93|S^@jn+^(b1Mmn%e4@8Ssd&P9I$NCPemW~Vp@!6OJSJJT%`cYpup|r)_BZp z^Q(Yn(Vlw2FmZ7LV;%)AWEKEbU2vc3WJdaYE?h$5zAU-NiMjX!5}NWs)E<8o-s4D} zHAl;`mqsv_F>O)Bla9z6 zAYMrWbP~z+U(hCyRwSk?I6nQ7hdT++nr|2x;ViTAa(FXfz3Jw&iU{c$Bp)lt)F)Ue z(b7;>-kFTPD*Wl4fVY$_O1`-;OOA5Jqm|^959!CUGJ_gp50S`MO;07@{jn&;5}C&| z7{OSKVpjQR?IY)27~M`HN=%BiJ!NOfaHdl9^Ahe7m3;gT6cFV7i!yyo)qR3;dTAGtd<{9**NB_@^0&AEcdh%9ZAHLt$pZEC&@pHbR{Gx9JpYo03_kClOEb1_r4@_;!&zRbjiwter z2~*k2KyxNgFX&B~LrJ7jU?{v3$w_Ea7$ccTOh!l29F<5+K}vCiN*bnOP{lx%G%ST8 zR|kWmaR-dM&e8ZdHv$;06eRT>PJ~x3rxu@qhc1f^ejN<4I*(^7aW3saneKiA z1~W=w?CXbNFls6WOz|GG`k=1i4a=O4wBB%mTN`ag&p+J;_iZr4e)Gq0%`9(mpb>B2E?3%(?ejDT}$t=lL(8H4? zd2{|SkRpl_SeLPg5?933zVSHJ6LF|-r8>Sz)X+DX@_bXMh3_^h@J*$zzG*nr(`kTj z1`YGg#KE3TH~XwK!RMeUK8nD z(voFE?J#IhN!F)R%OwzJLea`0Dlue=3G4APISOcQ)H+=#u}+cd4HS}|cg6Z712S_B z3_G+eamr7Xv76LJPUDn z7UA$LrW<`rsJCw^4fNeXBYewnaF)}pz7;gxw~}nWJE0L*K_i0d!MBE1`7n3fw~p@h zt*2eSyJ(MZ13l^6NQZr!=&0{*I_|rN-t=vz4}Dwc6W_h`xo<19;&%GY_W-ovE@;9> zxQcH#*YNG-#=iYr=quvBzNdJQ?=TPd9pTZwqdeaCGSBoKV~g(uJAEhF>pR6E-#h96 z>qCL&ngYRpvT2fD2|VbYEE%Rlk6?ltlTv z5ZHZ#XC&dp2{kAvosQE%V<^y@5HG1MGcfq=A>NR144&C1v_k|SR+-R|o1j7OK#4{A zvIFIe2s~RUHvCX=h@skWTgLnNnrMqZuE@gfm6{E0B~WYOcweV~`Jtq&Vrqr1(?&c2|Js;<)jtHrQa7371gAQ7$d|4zc>MKsMDK)BSss+~a^@kAN$CKWq`iVe#50S@6A z9Kw&F!9IotJ4;P`pHM5`r_{lB4jSw;>goHE`ue`XLHrI{><4JEi&0u@w7Kcj(b)8c zINYCMQ3W-jrbc|(3XbRk(Eyv?6=|Z@3Zo_$)zDf$mRt$!vkn7{4#+N*SP7}M4DAwA z9=assEhv`criNZgK@>(q5q*K)p{eApiEWjNE%+GWm|Q-DVOqF`8zsmpAoKkjYxpbH z@HYtZWy0 z{TZ~p6}R$k)&%-NKEfcjek0Z75f zB%uEAY$`gV+H)Bo*v*b8Id5>ViT?vxo$7-#j&cNi4(syoIQt|Uuw>x8HR{Cv9Cx2! zQ{!=R!C)X}!(_K)fHc!fBWOn2C@%qEaiBFZOH{&Flg7vDbmLHi=PcS`Egm~ZJrgn9 zD*E!Ht;LVF7C+ir{I#ipKZo-Cb*QDkF6H~{Q3rp0>gsPm1N;qXq`wi3_vg{={$^zL zwo?yzD$|GhfyoL_h_%+V9#3NDpEp}TB$@%Z$m89`b zZi1NWIwUFp@%N)a{{A$| zKLA@akY@S^(H#F^a{7mm&p(vr`A5(q|0uf4KbG$CkEd;Z%mejLricBvscrkeK%xRo zr%Rbmp?qBu6@FBj3W(X2lKYw56O!H#)y%z7V)lFNenO1QXgT7yZB0`>35uh)i@cSiW}@hsXq(@tuSVDBDQ% zYksWiIeez@dc{nMnVpoKDFJU7!H@wXc2oj=5h}Y86jzWOJ(Y0<*lZQ^U9(ZKL~meK zTp_s5R>3t=%4v8#3Ys6_B5?$!H{kZ?h1Ee~hFg&y{~Dkc!A~erzs#I#^FYZ-Q>Zgvg%&`?~!wA7PVhtYb7mxv4aHu$rmq!%Lj>;^HKOvdlA`RuqTgV=b! z1mFNFF@EtxsdRAwB0|ScKH|3WB!G-&%cNc z`4`g*{w4I9e<_{v-$7^m%jh%za{9)7XH;-%D;xw{cE|hA31ja zdT!{yi<|g2a4Y{tZs*^`o&0xm5C1*f-@loM`?v5o|Ghlfzm;$IZ)1o5KKA;z^F03! zUh2P}*ZLpeyZt-)KL3Nf%fE|v`yb^Z|6_dEznfq1@8`GtsE7EU;xGM&`DgzTzT!VB zO8H+F<^0D)MgIv=#eY)N@ShS*{qKra{trYu{~6KCe^w0lpA)0~Ux=yxuf;6?x5DcG zUby@h#bWJHOD34ll7J22&lRfd6T zD|~49Zv!pUN!VbFq=Vi=%!KbC9rR&h99(soFc>37B6T5&0;Y;SaMh)QZWkR{X8KE! zSLDNK{|XNJ0#HJ&!mTp2T-1j%CvlByL@kvZ2Gm1TQb@>h=qN0&kdWvj1h?>dcqQqe zOSuTAU8W>n1I>vfSjhka>Qj^@&%r@I!|$uKM<%??H&xmr3)CpP;Hv9=g!l26@H8u< zOYd$ZJC>suS({g@vSc>+fA3Ib$*SlXoGIof-i$uN{ybSMOt=6Z;c+}nbrjZM4BS&4 zg*Ewh?uJrj2z`VOq+71ySJviv+??-$CzZoXk#5s+Gro2CAMD^T zb$BEntJH3)v}Kr4j%-6|IjY?KKSXE+a9AdiyP1mA9hXZAWk?>xEfek3osnq2zQaxmTdEl3v#k+ zt53llgMoged}4G#-Rx@e#?ATl%#W#$c6Pj?L3Vxh3f!3>ADJXSR^GU+upzF{7Sl+z zw|7Bg2$~3>lVY(m5)LkdL@lsW-Qus!suvX)RBllG$w()Bb}rs995)~hH;E{a zLYaZmR6S6Jasp|T8z@W70_CVppgeU9q*M1m1?n5fph1C(G(3<=V**(;F@RaPfy(3v zRG~m1n-&ME(#k+JS{JBJcL!?FeSw;^D^QE}25Qs6Kn^`0s6)pCb?L1@J$gS-pUwsv z(3gRRbRp1)ehTE$l|W;rKpv+AnsE6*Q?3$d#?xqhGpHwm=l)`3>sKG2%G1ln+) zKwBOh$mh|4c03_az*7V5d3KXt9q7%c1AX|@061O({rKC!K)xIp!dC;s1qW^t6#`>KPGFp9 z5SSoZ2PTPbf!oBez;rPxFiVUJ%n`Q+Y+`D_DP{%S!W!_2d4Zr<9GEAT2NsG=fhFRh zz%sEruu?o7SS^kO)`>R*8^pVTyTzA*E#gvOTLK4mBqRrRCX@+0l#m{HL^|-SFg6Jl z!e;H4uvz=jFl)`k7iPPRIEz}BB&6;r-bLIc1+)AaD zz^%x(P)tJ-Rt3++G$b(tW=QgZ?G+Q18A=2Ec8oGZW$C!+%^UFAa`cwCQMI_2r?Ud= zUN8sgbU`#wIrj?mlc*(fkvGqvE20W=?s6Iui3(yaeo-cu7XoJQL1fyi@D=3Y7h0jp7qgS<{P#n zegK~#F*Xwu_uwa6scsQ%MJkepM*asF0JQ%}3_#DO658Ap z#Ezvol+jYG@zS&=XKY`>8?T05uLgNv#7#bVJ}E-55ATJpxZb z6+I0#^bCy+9EKWtmZk)rgDN^g_P|k^A9$IT1dh>)zzJFtctgd*I=}l`Q=G_UiW7QI zbfo+Z=pB^^cnJd-f;6rU185h90knjtC({_x->ISa-KR(R-3@nUrpjLsmk}kmAf+#) z5<8g?MU+`4;ksK8Cd!mn7+VrAn`D|xbM#H5r|SQ`d4zdzDH6U`wX7PlBx3&dn%OmV ztX54)$51P~rt~hZfy^~uQ#ZS=45oq2l|yb)%!f;Q9j)@Ep8;>Ek@7?erPC2A%*E?+ zWqS>{dCC?xmZ;u=g?aK`1$mK~-z2-Hyzy{hQ~7AZ-!VcUp#x{EJQoF4DUJ^wtG{ z1q=K{=L7$yi-Di%a^M&GJMb%~27ZHMa+xayu5gXO?_4kN2j>Q^a*M#9a7_N<&Vj$V zN07Krka=iO@aSLyPY5RR)L;@@g2}7}Q#cSz<;B5LyfRpt*9Xh+y}>koAXt_k36|r1 z!SZ}4n9k1yEAY#~41PUWk>3es@|j>3e;TaBUk5Am#b6cwC0I=)25XAcV2&sotS71l z8;XX(#-d%Yspt@FA^Hbfiy^^$F*4X*j16`W6M~(^lweok4E7M-U~dr$_7f|D1I3o$ z5V1WtTE>=#N>baS(}m z<<%G$Q7FZD{)|32GC3K4t?Gw*d>;<~b&#V3A#cUIs8O%5wf&DZzbb^l|;ZO?l)5j3-C(S_~ z8Bf#)b6sY7l_W4t;BLau!V(O2s?DVtNE>K^`4Pp*?94}DZl&o2ogEUw=(MRSua4t| z`1IQ7yQy7NCRI)aE|VH#^kS=!s);miLO5RA*|qtK!V$QZRWZt-#O8%#no3n99^1xJ zf@MxxIyD72Vwt+4qDaAIlo?z})q{6ZPH+`92(G5Q;2LTXTuTMPb<`=ip1K9^qCUY5 zG$6QXf2yP~8a0_X{dnp*)N{fTrXhrZoS`*w(8-hD%OYnZ$5qyAl z1$WZk;DdB9xQm_*K144CAEpz*N9gU~qjWa-7=0bwO+N(p(67PA>CfO^P7Utk^1&y# zQgA=l3?AV6!6&&{u!!3R5AqGcL)<0!6fD!zJUI9aj|?8>TY}H>ZNcaG_TUkA1fOSL z@CBY9JjzRhFZ0IWG2RtC!H)$`^5Nhqej)fSzY_d_PXy2KTfwvZUho{O(igBwU&A7O z%RdLd=PSXBB02bzs1*D~R101fwS#|%`oX_M;}DC&P@?D?N)dxXrN!`2nz9!CbzwEF z1sXO?YthE=$qPgc70$}cZDm*n)uboVkgt_vCr5%g!f4V%e${BwLsrsg(gQHeXwu^k z%qBf#RaZj;!dmcgqe*WIKSk>RiYQAvct5R2&v`lYn(kDMBIW5IZ$&6986jRm;3rv= zDgZ#X40dB7ti{{B0Cq!CUVjZZo9u?oq#t-1a6%uli-#I1y2 zav`^ZwW!Z6U>VxLS~TN^unal_Tx|rqk^!y{8cw$0vFZqRlh7U_8Q^ZAUzI(m$+v++ z;sSJkE%wow#NGIe+Dcc?Ccsyb5zjI6u)03hgUoP?p~P+^%r%v_QsolKmgGQ}tZbau z6|@XjrIO}7GWyh&aZ5AkMD|r>T+5`DRKwuxNrY+!L^>+gEE`tC81svnd;dNtp6(wO zDJ(fKwxM*&3{|Asp)7eksFMCB#__0)l)gTdHv+CGQ@-SW9cwPCUR=PC$F<34;P|X(}hqGnEt94l5_PkPu*W5JMrE z9mKLNUGE^iY$_+ZU@9jdyA0(-XHDe7+RBwl6XK_QO5PCVX)a2Qaf(=$c2RhvlEBtSJT^Sm)tMs*OB$%?atweao|06Z;9 zi&cuVgvFTRjPWUwE$(1mQhJr5qiiYhTg)~^#{BnsV$^;?7WTZ{Eu zNA*MNsd4BotlhGnN- zSi^Hr?2W0D!SU7xtEe|`^uP>7$!o2neru?eyHOt~ZRFRs>Hr}H4JuP5&a&CCY@qq0 zJEE2?JI=D1P!gaX%0EON#jfoXt^KW63OD2n6;b#C8%# z*9S^V#@ao>uOqoBC68W5ZVeA8RVj-4iaoC@l`<8DUXexcmoQiQ1eltk??kmYJ5d=Q z7JGoJ$KQz<9dHSF&qTyaUjaJ@yxi3|N_ZP;{A}imVZP&%RiwZFrnzg+Y#z7e=UbaB+eZCdl?k{A(dwnT@JqB^K&C!v(kn=AFM zl(tKx$h~5&T;(OwbEL|@!zKC=m*^*4qC;4Vhq1?x(COtrQ^)dOs8{(>ti#{24*$@X zrkVHoBI~V3WW99>uQzebyji)u#D|oOd~$B}b5#@ZO28QUA?jS4pZZ**g7g23dIc`t zAXIvRs>P;6T($0b-T)9MSNky08F4lAvq zNLYFGZ^fKpDnCh?hN2uJK)FU7wK9+#FcRo2_~pe$E$VF~QGcU04Kb2wl#xQ?j5>6= zkxJ8yx^%Tsk4lX+y2(f<)5xHCMkd{1WYHo6Iygp4M&z4)JMzu$jaa`&Dw)KR0*0;=nyP}mk!1~r;HN{subwA;uo14q0i5!^_Y@b~fK_iQFff$X zIFHUW&Zlk$hSC~+sh`o01{?ipgfW1|8W>7zU?{CIh~^lBsm#DoS_4wR#xPo73@&w~5o^H(K*~Zm; zqcMwZV>aJn%;EXQHN4EYme&}iywSLhA2P1z?Zyqf(O`g?<+1?Ko?(seES-7S^`M4uKYP_M?{OIAHN5!mJO&A8P2Z-+63x? zM7x-G1vcYx%`i}5N8D$DK1jLD<}IiY`5Y;i8=0$CbPu$J(HZWOCeAeA0aWjJpRO#I-8m$x4ewj1&D%n) z&vKaB`sOWeAme`#63+9vWADbdmm~U7_@NUpfqL-E`-&jD$KT;5oMX`)TlK^;dVTAW z8WOK=vbnaH=-YxsJ4`2>w$|0{W?Tx^N)YSq;V8S=rbfFNM(mhm%BgymeEa0%ytbJ; zplgR}$gWZuISAGHwPXNJ@@crm{2TnZTUym&aPO?CL_Zu(h+4}PT5Sw3QEhNt`dzWdZ*x|liSRMMsBFiXTWJ0aPEn|~t1QVYMJ1Ro!|yf{0? zyu_wGVw!438I$ISKsj0nivi_d1IoVxlz$H>|AF$2AL(@CC-|L* z;CCLT9>x*C_|G)R_yvCFQ7SQhrOC!`G~M`}W*f)o2ICJhjN|Y*PXNaMq~*p*T5S?- zGMToSiYm+iJ!{6%9y6X^HxuYBGm+jmYthGM5`AITrti#TI%=jcndl@mQ#sYF%UNbU z&N0(C&&=cwW&`eJHsn5LV;*QWgY?5F+OjyJrf=eVOIHluVgvK6m#*5*F14J6(d5xsNC_@U2a^&W0|E2w2o?v5rVrcB?fZ<}e zDMJ2Ljuqn$ULzN;0j0s)B%J|_1nK1`t%uJ2`ur%_N1~F;4Oivn)ZRE*< zKO7zoCM`UX31KKQVw6fe!jH4xxHAr+E14Hira6Ri%%PNP4x@Z?IJGlJP-k-_onu}| z=bEGF0`npoVUDIT<`^1pj-`p_#dM{430-53qq*jInrD{KeDhLTY+gny%?Wg`iIzNb zB0XeIqV48ndd9p0&^U$OFsA|*r_pETbo!S$gMKux1T0=f$IY1>Zz4E0XK{u(8?ZPB zuy_sUo7eIgW+`_xuj6j!^?a^*0}n9Ec$j%3k1}rpG|uJ8W;xF=4W46~TxMEqnl|5T zI=sMid8rxVyUlsL&b*BuFmLBa%sY6yxrq0eOZioE1@ALg@xRU0{HuAdN;KE26myeG zGqf@}FAJ1q^BxktCWAMZZNjh5-O79;H4qLgyj=3BzyB z0vvCLN4O0BWF2}2-rWkkM=I?>8I1U>buldGEnVeYkKX53b(M1(QoBzEwLBI58}TQdz^|lQ7~iR-&_}Vs^kB)Dk-oLFej|kUK!W z1DZ%hG6`8DE9N1W!>z0Z7zH}RGp$pTcj;RSIE#mhGJW9IHld(X{a}`S7BLWq;5%mN z>Ky+u=&SUKSs_omrlzhN{Z#bUM5=VEngjoJv_S0+F$gHdL6uG;xp@Vzu5YrugXx|g zZZqL%YU#iDPtS$rfKh{tu*_1TR+om#=x75u8# zsl$7U^Ff*YQd|&YZerc!DkO|2HJ>P!ASuQ?$Y8VBMx7Y_l2Z($jABX})Q@>pX&d#l z=Nm>@t=L|jSd*hGg<@-Bt8p)_eNjvVt#*rR{L9vy@|`kGpq z-%x>xLOk<3I@A1~x|lyuPxD9WWBvrYbcjZphhdkF&^YsFnr!|8yL6Q1n7`6Z=5OSf zzte5zG1#R)V3&^5TJr>4_CMjWpQOhvqNgpU-Ik(PtpL4a#nDGrJbhs$&^J~h9kFWB zF)NA5s?CX3GN)Q8+`y{CO{`RIY1QR+Ry{u3O5-k8I`^YQpzeO?kc5jJI03yxnTf&scf> zb!|Xd*9Q`<8v`j;c_7V_`Om};d8ie!Uq>VM>rmK!by533gzFXpXyS%|-EkOG`5Hn8 zVOlOwFM=HZ3crt3JHf+z1^YEwZ9#FXgcDb)bqFlHft5=TPDpX9qvpfT9f18>3^qh8 zUJ7hlDadj8M4QyquoBERH31gSf&F?~T?mV}0pY}}s;{~c7A1||QQgDg#7C-AIGp$f ztcpnNXVMX{Dx#&8MaRIZ$Sc?9M6fFPu$v7yRmG_SmU5*A{D(5|xF9Uh_po!f!G5(v zNvosd=78Kb6bJc$q#J79%;>oxtThF-`emo z&emNz`HDDQos9dP3bYkmqWP7hR2Z>>+LD1KsU%9mji{BCsQMu~RFaY?ypJ}Ip6&EW zmCAcEZUmZ~(-ITT4hKp|i+W@VtRQ}eb&Tlaz&heCOye2VO=H|mSSF3J)DA?M#`b?{ z8Y3+tQY9Miqj97&!XHKA|Dk$FR1!p7G$ELz>5l}ADG9Uai8@*mIfTGYnBWQiD^$0T zhl<5QqQDduvVsdSjRbmud#f8o{}n3hR<$LA4#FWsNx1pF2$ibg1V%Q5+i_?Z4umHp z2UBoB29wCU>@J3WJ8})>MU9ZLd!Q&M#+KCFUZG`fY7A0h?T7I8WjaKO%quC2C0lAN zFU^A8m?L(hG%FZoUcv*zB#{8gfhgJ2KdC#Bx6 z&afWf9P2^OvoI&t+Q#jzM*!}R^SRa&0C?1oTF>xU>v^7Ly}&cAm)NjgW!Kuvw_0!V z0_z=KY`xFxtPlAy>tlY>`V7GSIq$Z<;y0~>{GRnKe`Ni@pIJX?U~S>8c^_E$1s_=X z*)Xsc^5e)qikfeG-iG|6NX&HP%?K6*SbOjq@HA3t)ei)*0B|A=0dR%@7PV+J&jSF< zWTFzx%{>!9Qyclni@=jeV6YO^_#(EIf&!{@0I>qBI9n~Yl}Z(0asCDPt4lktvH~IvoZnF$HC`F9q1wYkyhZ{>O+R`AOej9 z0ILGUeG@{CY`oeFx=k{Oci4$G$@u`*LdXy#jUAv7|ei6 zD+QbMKaFC-^$Idc$=2B*gnf|nX&;tKE}bPsk$uEd2O{a&Cdp^k07`e@66XMvjzodd zS$_#iHPqBV`7@j%t>A(1(kpmKaWyTyV3I}z{6tec5GimxnB?j7)zlWR9}CyK1`i#b za+RVik_bh<)Q6v{Y>iMihrs6I=6C3>WQ5@d(kpUk7=EDmG8@>FEwc=ha0Ai^9}U!V zFqovE>69&%76PK1LEt1w16m{9r?xW&k~}s=&>>#XAzIE!PhPJPoc^*Kz0%3esuzVd z4brQ+veoz$5$wwXsWL~;?mfkTB~7bTI;4tv0H=NiPW=j;`VBbsJ8)Nv}d zP5`I=r1PwkG{DB(Set2#t>{uaK$Gn_nqkM&Y&(H&veAZYqXF4YqD6LXy30}+N`$hGW-T+eRAjqDt5 zZa3z9y9u9e=khsr3+`pN=00`-542C?(e@cU&OVbT*hM_s?#zbWl^5FGd5PVN@3PP1 zjdow&ZV%v>>_PmxJ(Sz4+y<81Bv zr9-K_EohH&VAVh1%E`3DOxh3U=_Y)FEc%?&;A%o`1d8#AsAFFW0n}q?P>wy7 za_wo9Z%?Oo_6$19zLL7xSJAolOzLl6O@r-OG{T;ZojV6R_ZpgNUrTfBQtaC6uxqc! zuDt=fwhX)WM(o;~Xp=pc9=6M=!Zv7!ZPTlE2)p(cddI$r4LUtoe1!4vJHMSr5;s&UV3yT}jYudU)+<;!t;T2|qLi#%_ZU7G< zEN(z$dUuFA8Rn;AZPuo>G#UMW9k7cw!4HseASv)3M!{Aum0g6-gc@CF1wLFko+-A8 z-?OPYAkbZEUPC@S`OekXV?uYVN6dv(8>7}^an0*d>=-=kh$oNxX!ZulgvuhUl&Zdb zK_?k22-*u11uLMuT|1bV-XjhrN$utEhZvKYC{n*E{z|Nr>(=J7j+jdk?FOM$Pc*lw z*neczx+4Fmww5~}9+L*|yOJlXPGog}^A0|%2*y&#tzu!d%Ap`5+GOC#AZS(x_7SFd z5KWhkKsE=7_ZrLjF~4VqRp_+i1aDB4O-S*jE+%W4(< z;Xy=I1|%>nqX8Fd0T=547wZ8R8>p4NkqYfi)ZX4qMfUyF)!stA><3`zAEaUSRvK+@ zqZ0cenqogpGwnyH)P9r<`!SklKMu&KpvCrfT4_H4$as?Ox1R!J?0}(vnx3NxzY1gj8jStx+`-<< zUF?6r*uTMj?KgR-{T5$jzs=+AcX*QhF3+&v<2m;GTxRcM%l?3Gu|I_2|A?2_`+2qf zF|W5jRcyF^>eb-Ag7TU?le&ooLn{AX`!xjS}WHnP`5g#sRhm%YO!;s zTI&?44NfP4L6~?A5k3s6+k6;QA>WyRArA*W>e_JN(^X9)7aR|?HPu8o1s!0n2dIm6 zkdsKm)JPrVAn;Lxz%nIB;G_B=o00$+oT)mp)c7P*sXBw^C&U8=4X{MQH`PH71#)6= z2vWf}WoW0PF8C&ho58K9hqUtvgg{ce^DrNU(;@BB&+)%?xRU|5;s8GD0XP%;_)WMP z!YF;pufWv+ql6xpr;%4d;6sP`aRfdN64WQ*0DXz`2*O3UOO@kOG{oehMaZz+fxxFZ zyP9vx;e4KpU`QI^x}d4~AYQo%_ri3g}C~SAn5w zj(ka5v_~%jqqLA4pn2{Vv`a7JdT0_vQv;?f)zW#DR^Xr%I4HDBYg1t9%*je>6BTCZ zM7VH45OaaBdxHK=N^dH8Ao*Lk7{@C~_5LJ24oD-oKv0E2Dfm_|{>s(fji=t?kws{A zMj(bGUM$wNx>*U#gISU0HZ#hsbgS8{R7F!iVcNFt)DUgnOPGU)RDl1?v?9}|N0H0@L; znCjC`=vqF6X18RN(;!KoT#@)JX4fWH#0QHrH5YYK^wrfPF@PPLI;gC$(N)@2^v`u` zaaQdp1gxfje#+EzMD;wXuR{x-J6$Q$=}tLL56X3VQohrR+B?0eqjN5Gb?wo++@CN*icDVCMiLoNe?rJjHT=QU$tk zB@#-bPw76SLZ$KTJ6fXV;ih+LjO0H zQ=lhT@Fh=f{$J*D#(!Icxtwqh0V`{hgIG#92k7oV#h9 za}Qnatfpzs8oJt9OQp`eWH|THJZBv(bk@@{X9KNqHqu6C6Ful`rpKK7X@|3gUT_|u z*PI9GZD%X(cec^z&O>z2d6>R;9-*VoqjbV~j04W&oZ?h)hO?a;I!|z}^CVF6DL&oV z!CjoExu>&}`#aC@Q0G}5vx}!WyLp!L0?_hBwwyhDoAVOi>AcL#omY6Z z^D1v}UgL+H*Ll0Mm!EO|!7n;*@LuOle#d!>KXl&aPn>u73+H`4?0m?-Iv=Y<=QEY! ze6G@*uT*{KplalNs|uYTR43<<>g)WhE^vNT!<=JkymLZb<&r9Q1Ilp|)M7VDt#DJ+ zJ#JmK#Z6Z`+${B)o2}k-8>#o)Ch8+MSAFKTP+z*O)giY){pp?-2)L(fm(xpP#`);3 z4*KX0F~M-;t=s}xACR|S4>!Y3r&Wo&If0Ty%qdOmjqbcZ)bSee3tCc?(jPlEk#||5bQ~jPAT1+6(;y) z@rHwu3?}qfX?M#JkF?DdeP)GM1>h1QV!ESHu z&lGr{$6xX2HlEA5#FUHa5(cidg2iqb4zlE0WAswypOA9obmkt6=_WYS^QxaIxKOV{ zdtB6+o*y~W>N*oJJZLorp(E|tE%g{CDRm8ujPYe9PoRy7c48~fTlclQeQ@6Waoz)P z-UD&o7vQ`HQG0hV&U*-Tb%#<9cLdIT6b*OB&_(Vgbcs7&Uk9%zdtBr?^zwH;bqnwO zLORoDuIV(g5m+M2My(OP-Ym=jO4~r^WTXmWVl$b0WT&KP@T&GWPos#j~r=zY@ zzu4;(c3l2{rZvcb4TLFeE7bDh#I_ZQ1B+_4tqAliPHL;;7`d#mTJ({kqS9&+LRpmv zq4HapBsJyk1bhpV@GVTH7VZ_4?@qzWn@XMCY1G}FPUpHasGoZ!zJ;ss4a}r*?$tEO zoki2#*)+?YL)W?2&|LRAq*!qIved87rE`GG;)%<5e46G#ucu@$_yubC6%Y8b(fT8ytbESos|@2I4al67;sPIK7k9m z0~hpZT+p4kpw9p_pTz}z4(sK4>f-LAp6+hyQbl>00*<3b}97 zZSH%t(EWh!cK6f0?x(cP)iurNjnvmCa^WMx2f(O#?o=V%C6B>78)=D$u`%PQ3ta={ zfCbp1J?Sd^U6`>xG=(HFm`E2uje8y%p%E+=>Jxh8mh z&lmz6*_0TpgT;+0$#^>kWdu=-_~-G4xyVV}8nuK+{^i$s%0zww)-Jnt%8oHTC>v zW!;Fem3N@r&u_#ShFMulpknaet!G z?jb6155vA5p&9PaG{=Qdx_gvd_g9+l{zgmO-)W_LjMlh+(0cbcZE;V~BkrHDu_tL) zi0I`I)83GxeW3sy2*uIAL-F)oD1i=#66r*!7AJ&~xNfL62Sdr+ER@3ep*nml28t>3N_~Y zLQQycs3~s^y|^|kNg@&q?Zd^ZC8%KX zidSbqv2Ou<4opl}^^r`FRKr}P5WWP+rI4%QkxY;_;rV<#9QQ5ZU&3+UBm4oHH0Dd( z$8YEqLK^MjmvssuoeuE*I*LQh72l_$xJ>Yd4$=T<6NbWG8R`*4PQDpWMN`Eh#C`dE zsgBsB`C^QY*n-?27GBCuCGP92%T62d1a8ezcAA4{HsgB%(T&l{n-RAa=g|aRgTDl} z;J2ozK}(2l$|tFrwxP2r3$<9Asab5LLtLIjT0$&FXhkUx4YP}=(voHioea>2Bs!Bv t<6oqy0>uxAxIj1}AAn!HK3yprRmtd6!q1D6k)^{$W)Ps$lE?H2{x>e>&|Clj literal 0 HcmV?d00001 diff --git a/bin/randoop/RandoopTest10.class b/bin/randoop/RandoopTest10.class new file mode 100644 index 0000000000000000000000000000000000000000..737a94ab99dd431a003490297b7dc1c229de1fc9 GIT binary patch literal 17543 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 PFLsa2sS6%esmuQtWy789 literal 0 HcmV?d00001 diff --git a/bin/randoop/RandoopTest2.class b/bin/randoop/RandoopTest2.class new file mode 100644 index 0000000000000000000000000000000000000000..3f27d3468841981e07fd4681d10e8015ffc24e96 GIT binary patch literal 400895 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%0AwQ5M; z?0|t-s8xXnB0#ZKnuZuk=w8?JpGXt$#T7jYYLkN~)1`yj^)p0NlVAi7qP6l6yo0KM zq8;O7*1@>iH~4_U#%I#Ih|>fcpM^}z8h9B%#3ORLgI-JB2M?qwdfZ>f=T<}dXcqhv z>7s9lgwqMUE|=f+y>QFMggBG^v(Me6?O3k=+Dd*UCOyB z*{LrkHUpL@SLGxc?%eW8FO8`M!zT()r0no5loy^%&hQlSg{M*^JdK)!r&EjY3~Cde zMLoiEX>fQxO$;xh+2JL$EWDiV3$IWH+vvG8N89J2f-%Ng30OKOO^MB!o&Z-{%ydLB zyJ#s)!FViScCn#ps2&SuSB!HT!R+F6+hcoCR>@V(pBQYKzj(%8*%er&u$n>%i<&06L0DASK??xa z(jAc|!ze+^f=&c*uT(^AjmD-*>Op0_YOYu;r0~r5HhZfs75@s;f@I#M(IHb8t9!uw z(>NwAYAVfNl$>R3K3g4qRw&eBnz4+c*l5d=n@xgGlMpyd8hWX@Elc(Ln|~9Brm1fZ z2-@Se8i{!0_&}(nYbZGm3ME+B;(8eWR8R26HE;vGF>Lt-80Z@E-2hlC)+Q9dKm*~1 zYr{v`3mWRU1&Ga#1${foOqW$sP&2z#Ng*}{FIuS;^5UGt`Rg(GSgANXUTH{%k0lRH zj?czOw$1->NRu$u#Ot;>u+W=x8YcJxIrfAHF(F0b|5~E(DhTP_R4cre>W9~nBYY3( z;q?>=82FN zh*-21kyP!fNO`Siq>|PzQbijX$<(Gsa{ODelDXq>ayc1c7Q?TPTP)L3q9)gX-u=gjG9dCkGnYs9jn%o1BDe(bn@ijnx zi4RblM{{T7LU+K9Pefk!G@h%AoJC_;^rNujtGNN4K}MuLZ$KegEP5V4#5u~MH{c!c zFP6gqG~}nz{v*A0b`_n?R%oxCC>p94^e|MCzC2OO(lEg54MHyR?)Jjz{ z3$C&xg0T8oHU%{M@WTKPFJFcYDot@z0y-4mous6RngbK*jVgt=;MZtI^0O87jG|WBBTZ6_#@004wnxX*R;+kW z^ze;GX(h3DDwa4=Qi+5~>aH~H@ucD4X)DXvubS8|0Z9%>5TUzD?U(XO;6we6L8f$3 zQhuA%ET5kxyM_2ZRb~DXV1BYKMJku2oPwAMC54BKpwB3RKBLHd%8M)@XJjFHBa0{; zSxk*1=rf8e!@94)n%_k|B5SB`WF1`>S+9=2frlIrJN~VrYwM&&JO&0@BQJ&3p|{}H zi&T{K=QakY^(L%i3jFMP%G)*YkhRrOzs$r#st#bRTk0;8N@R8EC8J?@Lx=#?OIWfs zu_Xf*GNo#68T`zV`|+h8q`Hw!>Wdis%=MyQq;6UK%xg=3xV0NTTw1+9Px$b4u@Aqb zGaZ*NILg>Flw%|#`G5B?H;j@>=A9C^RH=k`9#yG;WQ@!IxnXVz{TZlwmEE6VGbdWb z_|G8onjCO$6z9d~ZoI( zmJiHu!Yq9h$99>o##k290NaYMuKxEumo(|Q906hin9PdiPX+InG(EDdS!UBCONfYb z%&*5QJ*o^-Ns1|XQn>-9!TcVScMPh=d?6zKCs4iljyRHDeyaIu4QmZ46M-dIaP#*Y z!1{-*`SJ|aBICs@gNPU}bpUumzGA*TK9nfHIrLuos}>A$9%;cK>8Xo5WIcGBfHw@( z2p8z}WUvyx$l)rC=$ zfl}Dnl2<3;y{ZLcttVX}84HYgRihbW>jw4j0rl?*^}iD8-wW#B8|vSOY_`6n+xk(^ z)}K1s22gj~Rn*%ykOtcZ(Ma218gCmyGi*a?o^2Q{whf2skD%4ItLYBgNV?ZHiZB`}ddfBy>OYR2w_QW8*v8Ylwh467HjzHIO`^|jlj&RA6uM-a%4D0y>9*;dWt+kI zwwYYRHjC@nW^l%P!ko4%z1MWw!a;&2}C4wk_a+wuL;xwumR$7V}Ko5?)}t zo|oEg;G1kq`8L}!UT3=z9(FlzvaNuZy$K%nW3pIck!H+1 zt&sw`Wzur38oahNV^(XqXwXPA=3X=<_QNn%ply7Kp4Gab8S@l>3;(?Xp8OdUY@WmK z$Ohc)Jrr@U1_s2!Z$yhYC;6pl5$AJ$2KasOP13j67dT(wAONgwQ-z&;lv3{1IwLZW z(Y`gRuwzB5W~G9_RTX+9G;IXO-x`K_0e)L`G-XDp5>E}j43Wkn{6#fUx~U%>?OVz< zqoaMd0f=%8kwyWp14Z&u{Ej-jfm7%N68yTn8>C66Kyh4;572qEZ;nQbI13fF|EYu` zj^!iC6OE#b%JNm82Dp-c$ATP%{GZ2i>&fYSSF}-sMK@^905XTN4eB>B9%N$~+J=(8 zgN4UhsyGJ{e8&UHz9VYj{(IDT=mCsHjw%c-=}lz=ZH9E2OU4cfMPF6MPKedfStvbL z&nOwID?oe)Uj&#Y)MYZYh#rh;Q9ZC#n2dUBHIq^AW)y*> z6zZlMpjlE19gK+=p#Z}&CF&2|c?ViF4)p}#B```q4HUQD$av|;oa#Vv?+XlQN)Tz3 z;~pw`klJz_r0jA`OE}1l$p?vgK~nAKzaBCwf|eqDzulQ7WVSwvR9yhy&|=HubdUP(OPm8e-3-vGzQg zVy{fI?D@3NUWIP7TWOWODy^~Cpoi?WX|ug9?Y1|defGxmti36{U~fUM*jv+kb~}A; zchT2&5B*^GGucC&YLBR((^$S3WB&z!%&bqD?7xK=4mPZ@3v9fTlpF=nmNtXVJ+Ywk z$ym_2DH?Q+rS-6Aiy^C15U@^zw3S8wab?sRF9g(h2FmBF-9F}&C2qvOaRErIpgD~~sk`l@np$`)F zKbIh(oBvTl&An16mQ0a(V3Z-#fQLh681#=)oIHf$Bud4WA}p3e=P~67I*$U&f#?mB zGIFKV`8gY9O=*#3xg(i4B?flM!_ecV_(+Ztzq~SuA|(@#d6@~X#N}%OK!s%Q0Qu?! z`RWY$>H_(?9P-tbTG_ji)83tY_A97^y$4-x?@4{^SJFUxFB)d=O(X4nAYXkUUjt~V zeGsj%52ah|BOqU+Xq|m5-De*UIfDe)r&5u91|7D~QZi&DF3-hm(dL*8J!pD#x(hO- zCiAe0Z6ds53TB0FhBOJl(??6OL2(`)cfdZxB4vv%rjcnK zMt3{)wLcD}coItSl)8k*UW4JWOV}ZH3B%D#*ismn@kd!8)=jnc=+Xf{L=AA^WZpuu zYh$lLo7i3hSSmEZF380~HjOLwc*!e8!e5_)HxEd-QafT-ikfi+KVCddw@IxDG+kk6ZF8 zCg{iC%*4k<0kvd^!s`%)w;&2{Ls{N|vb;-8?8m6N{W!I;pFpJY9);}h(`EJ#sH^=X zY|tsX%6=M3^C69~e?(L5XK0T7V?-)vX_@^Kc#?Cp)_$JW+driT?4Kc8`J8szzo0#K z5WCvHrJwCTaGL#R&a_|REc@@AXa9?Lm6^>jUNFUh0}k%ehRmY2Iq8CH8qPl*>|Q<6knq8KTyy5Y+^#Y(Hn_&RD+uA?qhchsW-M}2DG zXh2OI4XKTz5vCZMQpnMaIyjnB7l(}oIGi-t;a2Brp!I$c3Gs1 z8^Q#;@ckL+evCIDX0%g^c`Yq(!_*k%OFVeCxJp^;|yrYcyji_ZBg+vs; z*E=%JmrD$y#(!a)G9TJjKSG9QPUBF)Q5ct_mq6j3uGhYw;BgqVb=jw4JB9T95bXiIiSJJKEP z$?xa@F+nrj(UGonbfSTd&NRZ&g~mB9r^$}4G}F6c zIeO7nM{jz}(T8?B`qBYMKYHHLpI&nepm!Zt(MiWZI_nrjUpNNSw~it7vtu}Gj**<> z7{hfO*fZ>y2s1Q=-Hz$p(J_nrIj)5Xn$P1L3lhxFHKv$?Zr2dghQQhyUa$rG5N1h* z!w%Os5k@D4I&ghuh*GI5*HnfG^nhFuLM#~L5u5=-B=msuV02_rco`({=h2LkvexaO zjF<^Cl1cXf7bM(O<>(<$O9*$B7_gnHgjE5psqLzSRT0yb_oCD!WvzD=rR8ya+Mhvl z@hX0bVSYNuEE0Wgnje^*7)%GjiabqzNz4!Oti_^Vl=mo1Rg?pZFP33sRRJXQk0b+_ ztTu7rLzEgn!4FH(ym(PT_!hP#t5C^$!rwUXyh;f_JTEulNnFRCpr+8VCD5^@(6MDO z#Wzx8$8u`rSV2z5P2_a|aN$@$4hYUuW)b2>u~RH@g&DPO235p9fA|nuh@_m zG|h1Dtq@HjIfZ^Xfn=BRL<-uzEud9LA$DE4F5WE#uPeERa`frcpYv5}nSt4*3Mfy! z1N|BUofA!yLd7MXsda#UEkse*(641!N@VEQD!6NL>J{MVKY&v|1NVLpeu6>&@-T|L z&!M1^O^>2D`+UkV=vNW#)r1kh5?aVRp@-4{7MFjypyi=~d8V6EIwxQ_p<7Y(uqpuf z5l|kiwmEK$s6pXSMm2`~;PUYxHWKwxNzKzL;j&1uel)?cyXXyIYioD7vS(OwW*cc*hCI^aqgXlaT3C2ro`k zbH|5db9@B9afTv}kExU6EOmE$LVX8d<=Ot@yByApb(I zwmj}+Ze5=3mYdB;!*Gvja;fb!Jg@XExPw=1@atC2H!-CA%|^yw1uLcIH!OXBFz(N8b`t*pi0X^w#NPC=(=ztSL z#?Gb?#1{0Lvo)P|+Ucy*ML#$_bkXUjKb#@foNYPX*@4SBJF(SyIoEV{=eo|G+{oEW ziLH?{$@Zlj*oNxJd(5CkL(p;*8AMa8+c2uXc5rFS-T;hd(^oLGk~4J%k)<)3-2-7t z5&lmHk?IQ&Ug^b+0q|K^Z_taQCxN9AqdE^=wrLP;^y0u*vk$pdIk45NhN10(PjnwG zhoP0x>_=#RG-rAe?>-2_nuT{wq-T*SWn;K{I6@lf#fbq8s7loHX3%03qEy^cn*57Z zMcSkaf=~kFP0)kaOX>mkoTTDc5G_kEnQxTP19a#`16BaN@DJ0`dtc>IE+Qj%wj!4Us9I4jiZr2Gm=5Q^fp9qArq zLwJOuYfG_^Fzzu`6zIGbk~1HYa~&jS0X1+gq(bK+YUNx^4(AdWtLv$q^9JhTTuQy1 z%jhcSjWpc3oW?p=&?M(gG~0PIEpV=+8=R}?X6G$*t8+Eo<-C<1aNb5+oVU~C&NcLu zb1gmNyn_xq*U?+fd+3<+e)_=qAbsZC1S7QtMrs?Ebw0)wolkHr=TltIxtndyy&Q7x z=l0G++}ZgYcXz(P1D!7^2{q`qVvt|(H$){Axs}N!(I#rJT5&TNEQ3p;j%L8A+p#rj zu)3geE`^_TP;zO23@9!M`VD4EaY?|~8C(*xQG}IzD--Cd(}>)J7x-p+Q%QVzv^AcG znGzV_1Nbf}?Np>K@a#qu_&7Em&4wAx#@8O8=Tn=*U>(MUh!F*f>FOZ+iSXNVqdptP z>1;H^GWl>dRvfyYrKf^_8p&27y94YOVn3su{%$F1wG(Pp1!}c8!Gsqr#9SS1YYgWXav0F%3O^+bKTjIzsMfs8)|3Bga z|Ltg6sauHhz!S46FE63C5vRk7>)uHHKy!e?~IiFqUE7xcRGOX%JOI_3NdLBiMcx$`^d-;eaW^A`jMzjC(o53cMY zuI93EZC4uCca>qV^t01dk-e@Q4!N*M)m4Rux~lO=S4|%0D&SeJdOXk7kQcesbQWmm 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

@8K94y7V8P7jl~kYxI_)v1K3() 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 ZGKcXHLz%-fNAP_H6v2xxGe@?{`)?buWTXH9 literal 0 HcmV?d00001 diff --git a/bin/randoop/RandoopTest3.class b/bin/randoop/RandoopTest3.class new file mode 100644 index 0000000000000000000000000000000000000000..51b31cf944c3ec76094ca9e7932fe08e3939657e GIT binary patch literal 413314 zcmdSC34B!5`8WQYbGMnv1p-M3!w#|sStgUof@lOpK{f$F+}c0}h=c@_AmD~OiaVmX zSFO8MtJY|%)}^>x_kF2t-D=g^T3cIf_5Xd&z4v62%&G6^{p;`jwUt@!eeSvEJp1!K z&z(H+^)G%&MCApI9!WvPEp<)x&CTm3E)3omXItCKJ+cM$J8XSZL)*laEp=sqsdociqY^{WJl0|mu)ThZ76!rcW~W5zBKWKVCd&&Ekmflm&(f_lwqXv)r8 zzjk@HWpUl|MqJ-#PV0!oP3jtNw={3yyTqv<_4g<#sIcSgqD`%B z*|k0mpn;fv^ZGVHC3Dp2hUSS2S{j<#7PYlx>()+*(O~duWK%AeCaAl6G_=!@^Oql% zUD1}H;WWadU81>k9?qwcG)j=Wj_V3f*t}EoXbkSM zXkFck?9#fHiR#0Gx~6Pnf<{vzzm)kjo^}<~V^y|o&&GyTO>47FZ3ifM&E)eFeVRnf z#@1}xl7`j>B_n&xfn%5O*>a!KRDm@%w9aT=k8{)3uUwgJ$=0g@4rG!_pQ@-jxWSB; z=5>qfT5u~t1IC0?uG`QyvA(H(V#moTeBBhEcH&^Bhn2Ht1uNOxr+sLapx&6= z+~)PI**Ogme^a&vIyP*~*pTBq*X$AC(8NwOYQp>aG>7KmE*N13+rZu}b?a6)tZ1Dd zXrE%qES}_ipBB)5&|Of@YFf9xZEm)0b#wi~?BVO7v$)|dxx8suJ24NDy5%CD7SsNM zde+s~@0;BeO;h2FYYwri@jhuk&d+t$^8Jozt7wu4`@r=N2@tTfc5@ zwrRbf{^2q=PHf!(X-=H2&#BdAeOgKIB=*|oBiONwiDcE_(_uXG*b#M&4fSpZfWXD)8W(-XyvrJ6>C6I4Tgr}=IT^6$=&`5`nm)G*~67 z>ey>Oy{viGDhQ@}rO%uD3a+b!n6zXaUx>}rvjUib%8-1SBxm*qgEQfIh zMwy2zUG5RBKDe?1wmMqfW8=hco4iMVg8}Afa;P#MeIaO2_v1P9^yr_V*>sN7>dHx z&&aNW%j~M8SLCnBDS!EhINm^?{3=zXTF%%(ODS~3lG-M^&x+Y%?7s&lRBrof; z^O52AMK&GibuO7&!ALkVfofoEPCln6KPBg)D97NeT#WI>STPRH7wcZol0`y}jC>Jn zxyy2AG$7e;g#%Of8t;o;#e^Uw()R$vOFJ=KpHbIL^2KBUo8g>yVRjX#%(xZu6%;DX zYqGc+{wWC5QGn1V)c|Q-_W{e6Ff;s}(1`qbLT7CWtbcOkh%mZxOjwx;!uX!!m^#>ogePb84%Wc^m=+z3n4aVbR4E;C zP|em8Q#`RxuJ!9%d16mbOvA+-DAO^4IwN1jnP&0N_r(I%TkupF?EDQ#$@#=WUn~-f zp?culJXG#o61}jv42*V(FP3sOV?(kB@Wsn~RP+ZyJ#aDVu56Ss7j;riPMCuM4)MjI z5q(F7oe)11%RNyStv%5AO>J4W3X}>(W2SYo1)NcOg7Yf{YJuLUmbxa}qw{2|Cevu} z#bL~wctdNBpKJ8RT7fX$sZh!BIU^$_R_;0|0JXFuIyKLAzBpX81o3uSb4z^|p9kr9 z7?e57)$xhJX#_V;j>B|va;R~W%L6@`9HxaSyzi2uYNjcmtPZ1BzFT=>qbE=uB!eiD zha^<6ikR4(U%@I^6^{4C3F1VE5V{d!0tQ*yjh$IwU@ zx~WV)hK8yJCs)=nL#^H>W&~H2hxJi9RNQo^xam-#(_uYR5xUfh3Qyda>*4ftJ@F$? z+>B7yJ##WlAyn2(O#C#zvSvJSJMN`R(!DmWYi#Ct=hhx`=U&t98g)rR+$P!qC<@d< z-k2FPQ~{1-KljBinAL7jRWO6QkHUE=yW`53K&6w<9apm09`MD3;-MfKEA}tI9D*FE zNJoBFijE{`r!O96H7IIb(bC-5$UIuy99kL=`6%NtFw(~bJrd1pg8HDqy@SS2;{R`) zG`^upK_uf>H`Lc>o5nY)qG2j?cmnP?VP<3VhM;B`4N}y_U;8ylW%|5V;-(1&Nw{oId;Qq6wB*Zh~IZr$b2)QG}TC}>krHv!W z^N`1wMY)kgol+M3qAy+&F9)6|CujQ>Pn3sJjrOW9UK6he$!$PWw+`XI%haPY>XJ8o z@s>atSAa+wo!~@iRwvgTok2K_iQfvE3hjj+Wb21!BS3p-^U9%Zo7QEADuHq+oiMAh zF}td+anF`j>lw(^*f+2n@q1sq!{OgvS=Z3$iT4Bz?_izj!obYau!a7erq@Xr`8-W9 ze+6tttcAh!?KFs9qbEKB(|9&fnwUGjC;s4xKS89q1ktsj5mv>-U-BDal_&lR>x=9J zX0{>Qvi~~w{yzg5V{lA-Cca=F@DJGgm{~Jsz^~)bm%jK){3}R+7Aov^1|R;~7vDsO zm*IdEzLcCOdC=O$5JnKs;RgG3xQy_YSihJNoM*SlzN0!O!mMQ>&pL2iG9kWB;N?rVcJm}f=GGPm*|VqddM}6iav0;eoPKiT;$yp@ zev~6R0=dcu!$kDJV3R?P^5tkb1`5dOMz*b4Rd5Q@j}!|bx1%gvjvA|VVtzt3k8!>% zV~H`0vXAmXJd<60IYCZD){LWju3-NRqzu_Z7faTs)KHUsnUavTk0t3dY|EY0T%QS2 zV_D(LjD!Zn+M0u ziMp=zl&2&0>l9sfojiUr z{P!f}tyPo1rx=sURD2In1}v&b$bIB&Pa?qNZuTjT`*L472OI#}QP&8i%8P?zYeUF+ zK-1-X&Um{qa|+Zp^qR=pa}cY%h7nL!gy~X6lrDvpXay92E6_~%UI{ z)auJN1*K*=|Etf&;E_BP+03mUv82|!pAl?*VWHj z3vZjsqoJX%;iR)+EwJK=(YEa@{x*e~cC;^#VWt7-Yvb>mfd`0x@u%Z`skWb7?D=Nv z>fPF-{8J0o4#)N&7qX}W3Ogc=k_P8N(}ljgNL~!cV+Hp4+p@fK zv$!Eob~igbqe8-^zPyYXmuSi6Y){G``SJ=5I=sKEYpdzlq62rYl2?23$2g}rpj`bd zVClf{k;}?!*vrhy4G-Z-b-U|)c|G4QR^J?L39y5xKu}Wea6$Z@nH0W<$1~CK&@*J< z89L`?dQqN45!EU6icUpBNyp@!2B9z@CGYa(-SX$44z@EpqCE>+Gb0R+_xSQ&UXYEN zMWqP8^yU5X0Zf4dbBGb<1bz)0M44lNjdZ0{%zDU|zv8j`wxMaH6}YI9{*2}gO-ciJ zt`Gb25&0+*FWgO~n0i|yDn}Fs6m5rvXQAR@t^F;th|=i1gLv{WPd*hU!ucp7hF8So zGX{n;KqH^?<@1cV#~MSpoe#bUELpzP8Jx&reuss29OTPh@#U+mxG^wfDc5d%@O59l z!S!)$bzOilMl;LABr2P{{yoFl@@CGVSrt^~Ss9b>7^t~)mhbuUeKu5XKIwq#Uw!$x{9BMv&T7J3kvbGb2_5Tra8S{H;mdz$x71NM z^WDGnQX*V>1e_RS@75sS8qBW84KSFl>6_s$o;4&| zTy@Oa#jv<)zQIV}8fA?Rlu)(Mp%T?q#rn2}#)-jEHS@8)HO?vviq@Ifw*~ui^_34P zx?O#1LewVH0s8apCi&K63&Eb_nOb`e3-k3$b)td043o^-5hlbL#k zZ|%hv#%*c2*w>;gcjQ>;E1O~M(-HD=3b`qZ7AXkXn(bTr@(>K{c4R8y0CRn7o;5!Z z)q-rc1w6?W)jAyNh@niN1h=1WEwmOP=0i0ZOB>X=BF#lt0ykpq?^{c(rC4bsP+jF? z#|{pykIq39qcJ;3aZrcA@=PR5Ibb27VD*)rbuhLnw1B!_8*x7svyfQk=dW*@zcT2s(iod(p>=AET9lIVf2NLBSRS*Q4J$;h7U*C)WX|TTtNqnwZ*qiwNL{vBr|<| zODpfqbc&$CL1MMqd8znBK_tUE(5VxS1uQVx%QcmB2T z{*@AbIsE)R1{&q(@AIu+a(31eGtKeR%!LPh>p{-xdUV?S;4{DSt)0wqY&Umo-&l|M z)}y@WK^V%MkVX@O3w**bG35fE0wT>C7c2wr>34kVUEV}?m#aS2nDxG($D&zu0%g=@7DEdu zjWq^IRLAzx|K&zjdUAETd~*4B4>Ynziq;Zx6uv8v5S;lR4H8n${A1txgg5{CtU$~3 z`nGJSIJ^nS0{qms{>&Wa7T+M`g<%$I#+80$Sm{@$!taP8>UcVu0NmU^3=_Z@!6f14 zzB15ccozTmt*@PeZn)u4Tn)-G7d3Az#NtH#+tJw(xCLp$rbYRkTkEHWzYo zXxsK}hwY5FTEYzk+w<)h>lRwnxK(-{x(ZhEZn>TC?E+TZQt&B%JAU_uitaP?Y(HX2 zWy~%#u!KFh-N(0!cqZ{+CVMvWLl$<4Z}+uJgV4OVC7VSOj+membCoEB&0Eops$#Zb zKc<}BxINIf2eDJ>#pxniJ=KE{=*s7FLwtKEYsWyWx>KOdb@5C%+_!fLJrk$Li@1v* z5Pfyb9%Wc(H6on&IwVX_irElGzN{q8d9*#=w|BMCP}UFPisCQul9dgs*0+RBfWz~p zD4l4Oj!Z%lZDUnYL7AIG&zy-A&W4ijj0~>3^Z4Jq6Aq|3+z6kHeQ-fTyC*oE8RFR} z$p?4KY&sD|BAOhtQ3>T05eGFJ582GHcgxS%*+GMgy}OTR2%y)+ZMmS?{_7&h%-++t zr`gjXXY?0$*EywGoM;~yO)3?$XBs9I`7BJDeO6WI%c?>jRu%fVDinQ6S<~e)d!At| z4tMqf-`~7xmA<`-jk`xD;3m3FCT1UIxDESuyV1ATG784Xx#rlO9DM9%-(F`Qj!3=&x5tAp z@bv1j94%WoNlYv65^xG7%A;m0<>2*S6yXC!fV19YSg>-|NBQ>A_Aw9zWS0AUojnGA zi&?sviz)cFU^qD66AZ&~)@`5U+b7$npbQG2&n3-`P}|0A2!Rgoj8ZnJy`4@p%AKC- z+oy3HEy(HI$+Jh(`NF^=GbztTVbyi7rW0wnmI}m&bMmi+pGHyZt$>3%&p;FLqyqlp z0s{?BUHCuI12q{fQU4P?Q1->XeF?V)a2LY&a(+kvPgT}O z6@Y!SZ{NbI%l?QrQE-9W7~K-i>~_N~l{5R9Z{NwALP=blzd4`v{VqH^V54>$p5y33 zuiWAJbmN@;3%D*DWnA?99lPCbx?%oc01(B-r_mEJD`K(8V{am7d9^X>QfC>|LLuqr4EfP?>dJJ0?gTvG-v_@n%5%BU3m z6W{(5$8#5<96J@!W$?;>FF%BMn`ika)!ww2O*KrsNK2WEq znTnW$j5qJ)?7W-=TG<#3Qud$8#GD=mYQ6Hxm}96OGf^^|sfsy8hH)Y-%~Z#nz6Kg3 z&1ycClVVOXKTRb|-5KCJ13CWN+zcOGG&$yAuPNV>E4fr~hWXBL)bsb)XJctY?zOmH_yA2m_l>y-3&_nkd76xeAG z*V)r|ra7pEl4!td+@vE-&a;1=V_80mU_-{)%Xen-Pz+$?Ba3(g?ZXC7-q}XlR|)N# zW1xw&uM*lf-$28etg|1`7iVGT{(+pm=ni+@aWI-9ly-l^(A7v9oTa{V0B0H8V-RH* z&VjyjP?TNF$*zp>i7IIKq4@{na#2aJ3d)Q}jPmh>8{7gK=pAaQyfl&CRYC7o8EDF* zaiC>}a;hqAPkT)LE`_t!cbdAD0n3=J>wM>MZXRG4tU3pR*+B;lg;Z4qvrI;}hxn0m zI1Dg2 z*Z9u0+z5_-u$%}~4eh+aa2ZbB^gmJO@uM%D>%6M(esdt^-281@9aS0!`CtF!P9$_V zho2gxSH&6E?fghp%&pz@+`BU-G@lb)2K&3qa2aRa&d+^EJ&6S^qM*j|N*W(av#kPF)jjJxA@| zRY=;DfrSRgMx?&OP{LcnN}o2}5?6&(u*>I6R4S2q!FOKdCwtfzO+cqdALIghALG5%JdsfO*L=y)`)dIk?0V>|-zshsoMh3+7Sl;t` zUGOE?@y;(im1w=9N#RnkKbW5s;Vono+{A|_Dz3zxk9_B2=aXPJCVI#dYhu_8Ih0x} zykR&RH2N>5(IDE83JUzWi3%Pzpu#gY&KCwM{!yEd3VMq2DDNsKYdxI|Jw=I>pDJbF zf1JuVT=HGPT}<4O5uw}jn-&2#%r?bbOVG4$Yk2{95z{^MhxeL|6`4R}pgyP2`*~xqW=Mh~uT| zh+4--N_@9(ly%N&I3nB12mASMlD7?c16%EC>pNs(?m*KWGM+ma7_Z_))a0Zutc!|<>}8_TE;bHiKAMi^jskQ{Y=+a;d*&I53<;I_h%huY0Ye4j8+c-eK^20K(+fox|cuZfJYi4 za&*MFhZxAYB_`kydScukny9otDu?7&n5eYm$|1RxCMqqta!3x7%&P_b6ItQBAUU+! z<)_k;D~IHoO;ntRx`+F23+rMDqu%Pb_Y^!EHbTYRHbGD3Eq0;@;BsKu?>0~SUY>r_ z?1QpyFfm3uq;ja_ktQk~{>q_u$C#)%fpa$_*=MjM5FMHZTx@XV6;fVSRgqS9`%0!n$eiApPF1(Xt)XkM+T&`MbWrTnFdN(Z~b(`RB!Wp!F19#FB_}*u`+4GSKsLZGmty5Dq#Y^NyO)J|hDuJa3}XQoufi z`;v)DOCbX(ylSG-Qovq<`-X{1O96Wb?r%&~$~F8Jtrza^xGlN^X$`kF(R~r}08)C_ zGzu3$?)$#`f%^xfx9SIG(4z+GoB^XYtpI{{|LD6PF?BEXW5n9;wCejo-uPXH{5;q4 z#-4@y7Za7vRk3T~er}-Rp2lE>m5}lmCMqrEN=VsMNO50eI2NRADx@m4l(CE8VJj)` z8Y{JwD=T6iYO4HHTFRA~nCF_Pw5Nv7d0$x_^H2olpO@x6Fm%(fL}n>y%H0Z=6zKv=JhjCY2E`__Xe1#zLNbJ&ygN=;IN~-g9dk7kqVqbHj}>4=nf~BKnX0jNeN;0N1hV2ZHogPX3?m z`EGvt#~bfe;9-3a;_ipvV45BHw@zEXhy}em8mgITkX5Lau&EjoyR}VW>%*IBqS7{n z%@42EM5S%23N|&}M5T2Uy9VA&168%QDeMV&vrJTzf!)!8{L&V!7TW?I8Xoi7GXwbn zPpV;E` zHKbrFJF6opq$WWMhO!gqLVl$tK?;Vl6X!G)c+c@N57?ZV!~n6^z!+$(s*rZGSp_fiAt*t@LF$&i3;Z~`nJuW zRJAUsz9Vn{J?^S12b7u&?Yh*oX02Voc)cH)sI+!XhIUrGUgAbV(dT+Dlu;X0sG*sRN|+5BsSoc zlO`(7`xJO@*g{M34~hp|1>WgBXBexT_wcE8c-`WP*v}5 zCMvDez*4<`7^pOsngW*UePyE30sxlkeQl!B0sxj86DBGx06?ZO+eD=W0LV1vnW(e? z0GY-TCMqp}bY(2o!$hSW3h>WZp^2)>tzG=bzGwDavCyp@5%e^|EyVhwwI^1ZzqLpG zQY2`Seyo3hlJK8~>4uV|fT+d>neMBl2?#Pa)Ie3iE-E(MkL|+uaiTv#6B~)13O*7z zIXp}e8)F(lOB#<;#0=$WivRpUI2I&5!8DeZG;qim2F@EEE3~A6L&oqWKb4j=aL5=$ zm7hvW8aQOkQ0=Ao$MeG3L(+z7FIAzf3^-)WQ0=AohxdZ9fIh|y)m}=Yk13#!F+;V7 zb9yZB-caqOGAVS)NLW{RTL=K#g?ZVL(EVN(%tMU~IX8N&|x_0E00U40-ugsRaOFFt*x6rIo)D zykBFY!nw8Ima$h>{MTjdfH`C9Ol#Jf1ei0{YND!eYmb{WB>CEyTO%a~-Wl6yBG)Pf zyfb!`i3;bA`8IZ^I(~%ozokF|dK){=v}SD}KyPCwny9pa0KJW!VxX#;RCe5 zE;e0*bEqyKG6SS&YpwXse=XvBNvcDcz)(z;aFsR`fS55;CCraRhhsstOqDRVB!*N_ zt?Nzv)v5&$Gj@}KN`sgwfS9pcOjKH<0A0pzGf`=c0(2SsnTbkk6rju4T_!5+tpHud zeqo~0aSzaC>^>8f<~^Xx*aIdiMh;>R`LSPx&$)E`RN5kbTr1!>V9nSgrV+GU0Bgn` zH&I1$DF>_>dn!K_&hc!X#;-lbupgTHrzmu4Iwc2U4}W|DKZF%dv>a$??0M7RkvPjI zL7Xp{s3LKePl7mKHBm+4ECf+Kg7JfwQ zHn~eA0N{0T*F;*0pSiC&?fIK-Md7MUtbB4+EM8zDM}>F71$Bi(Zp6>y$2tX@^2yb) zcpuYsT7m%Z;w1(u4d9gnz>D`YQE3SRz>5zsQE3SRz>5zyQQ;iw#r(ZE+@O~KcdWmo z1nK*Wh2_8_<4}OS2Atx}-S|j9J}N#s=;G$Te9BM8v*HE6{u=4s?C2B}uk(+dcbxI! z507QE9IO;4==x%fB@3bpU+EaY=qE?R5Zr#-W<| zskF`l_>AvnpejdhxZ%%#=yCLspGS*D$7g&`6S-Dipmp&XCMw66Ug$IBy{zC(m2KdSW@Woe{sI<%g@Woe}sI0ANx+rf!W2+H;t}^2h1*hp@~Wh z550r&OH5Q+c);x9mz$`x@POIHuQX6;%&r`mUHobjl@=a42IJS6sI>6VF&MwmM5ToX zxGsLPiAoy|;JWxvO;p-&0N2IuFi~mV1Fnm=o2WGJ0oTQUZlcn>2V57w*F;sF@W%5G zy9XWum|fgZEtPA`t{j+M{8xqnHD*^1%r0)In{ZCw5dtvOP35|ouN){>+*CK|X1;Qu zTyd06d2NjU0!z3?2;g}Wl@9}4vPQAK&6}c z%7FsKO=S{4BOk00C{X-e(^xq7{hrsI(@bg)ROM6BW*VX(}1iUv%QX>y-0Q%Xd^PeBbRR<><(Z z|J$@^Z5RNv@TZ&do3#eB$^m92EEAPB41ie)Q(;=2!o&O%Zn|pFEl<0(ZPlM%^5R3d zZD3G!IsJFreRmBoROc!d;1yn0B+(Z=#C=FCAF)}|D&V_eO1D;A4wmET5Q$avwrm>=^ zkp?`KFl=+;oE{6}z`*(9L3&aojx^w@1is{_io}sd7hD3ynx85XM;h={qQ*oO*?Jls zZ;7cUs)+Y#z*C7@6P4yY;HkuP1C@rS(txKDGfh;Q_kgDovrJT)_kgDob4*m4_kgDo z^G#Hm_kgDo3r$p-_W+&}`ya%w9IMhU?c@JPIQD>mi zz)~8(QUZB>Ud`ciE59ukmv=mv^6F$a;7W;R6aTa( z0q#k(n5eWS0q#kxH&JO#0^F0>Xrj`Z1h^+*s7KQ&tx14;5{7y-t^3^4fO`^#dKBj( zegWl4oMf0+xwc}UJPAWRnl9J8M^9G5P>-g|HSdAeB+fM5kukl**?!`j#JTuITOdZd z{EYsPP(MR$xP>P~?8emVtP>tf8o*YDH zs7BM}+6e&cNf@fpv<7?90DBUKY82<9I|A%U7^=}U|D|pfy3+uA5{7CN=QI^WXQ)Qg z8th2}>`B~VU>g7N;P8$RK)ZziI>v$&9yC#D zDFF6K>@-km*e4CxC-JC>N=pH-PvQv^m6ifvpTw_CR9XsveG<=_sI>C}+LL&}M5Uzw z)F$z=iAtLRP@BYSCMwN)pf-s&O;noqKy4Clo2WGJf!ZW~Z=lksO&X|8;yn|U<~>lG z#2-vln)g6$5+9kUH1C1hB>rTg(!2+1llY5?O7kA5P2zJCmF7KAo5U9;DxCZ0w}twu z^nY6eQW_Xk!mz`LbCCxD29>}jW8Nf)|444&X8=DH7!b`P-LRgDupJig1#mytx~|D z3X&!&ZO*`<3I>{}v=D$p6&Py1G@l!0QcwJ?1N@hZF#H#^y$31wKSCc5?_l40l z1<3-w#!nXT`1~c6>A`PH_+?pD&!o#A4$k!Aw;$FNCJSU?eLL0j*VX*8rlxl^Sf6Ac z9;_(YM-7HAsZ4QnvLsp3PR%ua`K>kChu@B^CC)|U;jbRr__C$c z>r9o5-A!ke#B;7oCU8xu-%fVhb11Ae{S+X}qD=q3mR?IW$i!;emo=!h} zElK8FTGBt~_N+FR(zGvWcYH2@iu8m!^rE3u2&L>zrtaN{Lb`7lSD+CQzlAN;P6nnkr^e ztyo0U#R{4!R?{r8p5}-nX};J>3&q*AzxWXyAbvsziQDK<(N1;Z5vmtY;yK%A=`isU ztrf4+I`ILuiqC01n+oouj36|X0XTmyZG({v1@(Ef9cD8Q*PjoIv@o-W=>pmTBbtJr zn7t6k9GZbUU4$!K+E?627vl;KcfXh}p-W+O%f)$g8C?#8YY=D9kLU_Y&_;0#II|5r z-z<)xt8j%+XNU&+F~;aY7m7pZY8>lHSBk}S4UYAq>&0BUmac=yQ+$9(t*Nc=RPc{wu#Lf@d0}{Lt6k{g8YDey9+UVN8b~`X-MbYMxt$ zbOOnc5M_n+7XE|nmbDAJtVno;>B6DyB95>AJiHVlYibw8H4a|;W!%Vrc+rPgGR7H7 zJo=tU!V!$CDo7@jf54ZWeB{w&!fqD>l3p@~KUFojU5vnWVswqqZ)G(-k}-IsWMMrr zup{}<#G0Nw@ai)DQjSC_hS^q*hw1Ig)`(2ytfa#x>E`4K$v6&|7IZORpJ|bvoR#c} zmy+C^q{ED_MO-KP0~FvRnDNIj<4+L%|AeETQaJ=(2~kgjaQB9I=hEl22*$RI{th$# zg4WPKsD=JXN70us_OD>r|AHa^8>;g)6#N?)AJL5nEw>>OJM32=K2O*CZ-_nFQS)VJRd_tmeDg}Hz=%&**~Jp$io`$gBfjuPPHIhPQ@s3 ztmkI2JB}r=s%v3d+Y$F~q+`V%q84%gHrjybz9(k1lj=b^4RQZDS}LYv++HdY??ztH zH!zsOAQE$o6*D|B6WY$IuKq*Vh5C!VJu%A@vsL&-)a}n2F81xN;np0i1jT^JDh=H5~HMttyr?y?}$C|f)=07QR zG^(HUdDI?BpGS?3_DuF<%jlK#lfBx-0m%fv9h{5>Z?-xJ^SfL8fIrq_o~tv3ctvf1 z*U>e7@Y-Bc)HPP-=zFQtMb%x_a*wqvZtXCScBHu^ zcBNvZZUe<+8YWUSR+Q5Okw$`BLAxWi%n+4GB&(3jRwIq9K>|4ispD?c0(II1McNDx zd=gaWOeoEEsLRDrl^=^4Fpa%n8Z!}x_NM#AKJuhJ_6wo%HdZtmF=;!@WnUOy8|Lj|WkpEZZ%}D+0;99JG{D$@ zq|)RT`YTq;=CTQ9cBL|xGwD?r&Ni6KcC2XwUVGsCLolapFqa$Y9>kVgVJ@#A>feMr z6w+I8AD@VgnC&|-yH9anI0fVuKM|Z`aDqFFdK7;{Z&Ptcf*Y8SN@v3$!ZC%jTH%Q! zm3bY-;RHP{h#w{D6(3+@$8@(b`w1{&Fv@wEV`InWw=vdt#F8%cwK$H$1#HTN3ZK-; zve-`I?94mtL`96|ngUox0qi6)pUy_b7M9BNUz{xF$&@6Ec{2PZmFdfGOCpNWWGPehOO`4Md`TgZ#apJPzdBZfFPOoA zWN~spyVzDU5Ec5sc5wk_gtrUJ)EBVelFXp4R?NnRAhwl**jY(!x25qerdfc~UG235 zacoNxM!S`3>a+6J)TJez2P#2%y`{8YmxED0yEQq02O5Z%l0i8RMmqq}pJu`V90><- z3>?6*Z~&WWlsJyc#PO(jPoRuAk#-X&(KK-~?ITX1{lpejv!|kxJq;D?R%#Nb(|XjA z$BHxQWN{XqF3zTH;vBk2oQq_28nG{ zd0jj!-V(pX|KAhuh(C(=#i!y!@wxaIzeVvUb~11q%3`#Wd0#u3--S-5OuQ1Nz>~#u zVG6t(YWxea8V7uP0Pf}nxPX0-a$gKAzyl9&6IUoFa{yM*2Imn6FE2q_%uc2W+`0_T zqX0ZTNjV-LoaOqQoy<0|4ldV)letLM=R4qJu0_Is4enM5F3+PsiYqbO``~;(!gzha z@!bVi^hMzH2xL9m;5Oewg8UO4D*?|7Rb=lAu1mo#trVW-E5Y@CKT%A7Lczc(@BsQi zT#NFgzZiq^c-M2#0=`xE^$alp|YCy^6mG*PPSeKQD4% z-Lf4xFqQ3S7w08Cc5$(!r(7Jqq=0$iEmM+vOpTpe#2_~jn$;*m`6WRD{8m?|-*MOSq|o)PBSr(HZzQ=IGp5cF>GG*<^W z@0I zLNgd4|2s{Ec)y`yDQTdzXqdEVlyqpEbZG+OcDamEwT#m=nV?y+faXh|mdGA-knBnI zvKOt9g><;=O&et&+ANFcWLZpS$PzkV_N7Z?DP1l5(M>W*x5@r=w;VwC%YpQW97NB_ z!SuQuLcfzk>5p<4{Y4I^f8jY|OO6l;Ia2hNqeMSBP7IM{Vx$}|#>teZmK9>EtP*qO z6tPh5E|$wZ#VR>NG|Iij;c~V(Le3SZ$OYnbxk#KNmx#;cGI6s!SlljuAnuaO#l12s z9+a!aBl0k19sdIU3f0zr@+R#kuMPcVHKM~ss&?U6axpxO4XpH7ctTFbmLR!10#@V# z8(jhaw+()B4gA`Va5e^faz3gU7k+ZH*avCn4p`qANDw!``xL+qQ*<>x`FPz$fdM_} zCg6??2J}Sw3A7T|_CnGWLu$4Ie)17iZJd_%hA;aBSS0(&-_iTZm*5$NP%j)UIHGQdD!d!vB3p{gmY|RbH=%lA+h*nkaB(x&AEjZb3RH z{^*I1;TI9^J^`vJ-sMcLPvq@_d=6^%X?Jgeu;F3pL_f;$CV$r6M0~cau)bJ)-t#W; zcXo9DoQ0QvS98h#?`mXkk}@&%3OoRx6JvVr$bsVf*`2?-oxYaD3hS@v*ls9^cmA5_ z^tHpc?hXl%Y=U(hPQzsjSkp?o$~IWVdRWB~w1?b4d&whdkvxW$%i~}PC(?296gpd; zMwiRem6k08Be3L9%ZAf2(t?fQ&oBXMJ0F%NQO>l`1^8s6x^EP%_~cSGt%L<$j%)Xz zAEFFk?0YXd5OMi(=n<#hqgCo%L;P#!p7_kNtPnEpQ7dx)LyY8ovM&2p^eAqEeKgvy zLl!coWg!#GiltvzkIkC9WKT##_J%ZMpK5zdu`KG$_hMO+d!U1RgCTB`XM=m&XoNhE z#>(w9QSJcOE~W+YQpKHdST!c0Bh;?oPN|AeV?yps#12Tn9bR=IImKVoC{HFVt5)=? z1u`Ql`6 z)Ce6_irS#-1c#?G3i{44^o;>(0C^*TCUISotCZgDazIW0Xw(5H9B{9J$pKL$L?Q7+ z%^*HJuV!#WHYAC?&2d#jlS5RP#h0CY6+nqlOt<(;kU6FJ}Af6jKtJNw#!M_N(|oGWx8fmmyr7ZVzaQcPv>Z@LTp!b zUI*H(NmMguF*?7sbYPbYG5fQUgZa$RE@y`GnO*QwGQ!SrR>_e#bdRiBRwQfglDj2G zwaeX$nS5|pxxw+aAP;o9QhO4U*1dy%UfuLyp;}FwH2JDHPrfEDmamH|Se|1IljmC_-fHbCe`ZaR4_W2%Q7a?=ZdI{kL%FHk zPn2B9H=^W1z8n={@~Nl@laEA27`Pa0i0%cR2OFYuAemr8^kB&a7jKBJfGZ6)L=Tf^ zBDnB|=q7or0#FMes}12k#FSx1m&-+%__JJqWCcYSO4DnR z-Xz6vYyjUO_d^j@CZ0kPvJFL83I*vkF{Hj9mN362dD7mGvWQh?#ZQ5r9i2gqf#3rg$x@<0T}5#m;{k32{oOe4ik zQ7#X`nn$T%c@ia2-u;4WIMF$s>An#g!Br6*mx1yJ{LMq|6KvYz8#YNiSqEKS?#X=^ z(CWTb8|>K*S9`X7Rj8`(9;zUDPnBtzoKTh3p$b`%ES9T^WkZk_Nt!wk=Iq&F=Y+QO zpb)fnqhf0h+Qq7+G1hddu=Y}6HYfx$p*HS9MPU*$2Fd36;9O7$`eYUVn+77A5Nft- z^33)l1Xj))7U#^iQO{O3EyEVhU2+|#3@v3va(%npfE^xr6#gAM8!yLY9PFHI9a}6< z%*`4~fIa0DwG%i`v}R!~b7+V)7wefvW!8L}Xf2?$wI9`3i)nXjDb2GEq(#=jYK>_w zgt4a?bn6VE3VAY8G5k;h%H0d(7OXK%L#2!K%Ay)nwSk>+Qc;R^e}mmohqXgCdGb_C zutbqtZ0*hh_bRXeJ2dj$92T6eS`w%DWCj-B+G!M^(J zjM`V9hkT-dH`sM+kujfG!dvId07j~f^n+EC4>kP+Voc8Lw0i;0`U9Bc4`GrkXrNV3!>lZgwN}yu zYZXj#HBGe|Xohtd&9>IiepVwLV6CM?ttQG^&9uf^M~7R7(~(vS9dEVL7ORcUvewi2 z))91xg9Bu6oCt4SZGpvimdDg|^QtJ|NrFE&e-nvZOVO=inwyqS9 zT33rFt?R_A){Wv1*3IG*>!+x=?hs!9;`*2MbLm_6%HG!fvaj`!+{JoWmRpa>D(gwP zm-V!qZ9OLsv|f}yuwIeP*6Z?U>n(Y_^;>z0^^QEeJHQDK9)CIpUV5J&yYy` z4T;1*jB6=uHnHmADDB>O+qsmG}e! zr-+^fQuHYTelh(P^>EN-^?~>|(hD>}&AR7gU_i_J2m z6amnZ+Zcw8YMesOF+xSIJGw_Mdv`=GhI60HiCjO+6S=~s43vN0j^Ac#Jhg*e!&}!= zGqK3Y#}T*S!V}4O6msx=CeT~F&CdAzHV?fPHh<6|N9|LOtLl~Psr)`Rty7so-n(AH zFU!y)7UvHKXZl39QMK^6s^Vmkx&npqPOgq0<=gUyCji{y?P&nFczZrmT84Moj(GYD z{JRAI?gNV3E+53doi)j*t0OOD%iGyoOJX@*xHQq(sVeBU#Lsb{-0iWov{z>`wZYvr zG?eto9k{sj75UIyE;4iW#TArmdsJ*EXrNs{!)%{M+C6BT-IL1gUQ}ZjQmx&a_O|=b zJiCY%+r@N{T|)JCUs_|AQk&h6jg#hxbivG)=O*!ze>?0v;y_B_#S?tu{E9J&~oaBmi`u)(0Z8A5ip?*G|Jux6WT-*>?2`DM^Tl1 zH0^00L;Kjr!i+Z4BKtU)(ebq0K7ktS6KS1&3T?JeqZ92j=sX+EllC^c#y+2Jv@fK) zkY)0|+{%Dok-9>S!Zr{nUeE?oMaN+`mb<3*L~j!V0XFSJ>l6^+&_Q$v)bL{{&T?7; zNZ@j)YXi+!(K`mJeE6OAFpp$_ZS1DKeqtvXLkbZ`*p_e`^7q+ zO?3KN;^#=SUym*$cZhc;7*6)(5bu>V+`fuN+drmV?W-ZyYpB}3mi9nVy_bDG?Q7oz zk={aw*}%T+pV6uIU9`jg1zm05M|axyD-j+H_JSj!2#3>l4eOt+Vg1uItbd}0^^Z{% zD8u?2=t9(@3BdY?L%=Tl$G&KNyBNoMgo4ACG#dTlEI0-51LDU{ac6iRjo<+a{=4pi z0~lZ-zap`Jj^KW;1=p!k<>-kWTlsETA$CLBoXXI?l(wHl zz6+D(M9Mizb1&Bu!3t@>hDf?MH>Z$QqrEwUteP91 zYw!iZvM2hSdoo1QE9r1^=LKc_3P8y!sVPLGhLyy}fq6n{UW>}xwa~Sxvjn{hTU6q! z+MKyP>@3wD*5Qh8q;Yukt}hikNgC+%r(w#tuvM0b86{t&UE28GeyFgCHgya#1Ln`7~w1wW1aoQ z1m^%z?i{GhOTI$pqnwR`g1t^2R2Ii%JxgHw+=HywSHERNjZu%P5*t|Lk%k zn77f1=sCL_0eUAQ|BcoVm$R~mY_VKL|+>2?A;a*H@e2s_Ki8V2k>UC*HR1g1kD9~(J zJ~@X%f$E?@%b`Fkpg{Fdpez(AWH9?d}`))iI-7|8+|sZi!Ho+~lj%}&V5cvclB=~fMk0Gywahx5~LGwvg3%HjNO z|CgNKy~g`L<9SYTISpDx&PibR7O?wNu=_Nydn?#|I@o;%*nKA0eHPe#E^Ku>Epv9j zUN5E<&SkXPxq{X@S1C3J-4IQh%?mY~=V~_BYBtwsHm5b4Cula0L2qIW*v!lwu9&-9 z&<)X*xoEBqI9uDDv+xHt4F#HCnZwyV^K%wO2Oi$Fre|z4^rLIvnu%|-GOW{cYC0ZA z`PM$RDEsLQ<3~qTA6qj6`RuoK4{|TKZQv<|$zBTRz?T#n+VGYEjL*kv*smXlhvW)? zaA0@8fOq$S=`+q!f;VembceplzC2WEvTqonq7(hl%!U)mWIw(~bhLl6KernUNcQ8_ z;scU>`R!obMt#F=Ud{}}_^MaHOAczc7L*0AjQ0%YHoyU8c=os5T3mw;fT&S!NEaQ< z?e#4|JMxxJj{59@$@>VfiaVu+oiUUWBy?N&iGr=_0Xqe}Gp@3=w6rrJn)^CE zovdK?l7YEJWVDN~TIvo)w|`UAQYXgIY?#WmFqIo%DmTJZZlY1nPiVYzGfd?cn98j% zm7mfq=Qdj4+)hiJJLnMSXYfpS(qYJzTb;Y;Nat>Zwx82!&M)X3=N{VO+)GzD_tACE zFX?9Ie)^g70Nvv}NDn#>(PPf9=ox1xz3exhV!D>*Lg|o=e#VIIoi{|*c~h)$ z-V*Dacf@AreQ~<;p*Y9+SX}0ODz0)q6Sq5m6L&fP5cfJ?iKm>e#dEF@zjJNzzUzsP z+=TeE+e7@#Efin6MKa;`mHpkM9O4d?0vO8R6+!5>&#I(TtB9{PwI4p)`-_RwD zlD*~0@T?Y%$G*LVPmJCCTOl^^yy6SEgadGN78;;AEA?oB_&{Z)F%-(Lqg3W%xL&+~ z0LpE6t=Jvrry~mJNO2zmFF!hbnz#kwb{l4N4#49d!+$e&vjc&58$#=KXb-;zblk3d zBCs27!@EZu4eVwI;?QHF8BdOI2Kq9dVf;kyhob8(aiD^?OAw~#D0sUs8khG{@OCMl z9VwR!FmgX+&*K4VZwIK|Ukt+YeA}>7K1}pQnyUt2we+;JND zFwmmAx#m=@edz8BP-Z-M3~+h0N)Z%RU>(xkogyk);6KsE9CvzXes{_~2AiU)@oEV^ zEUV%i;fKnfu7KOHRu)+eVOy=+)my-nOYP2P8tx$r#N^pD*II*_aEq&|`rR>9?3U3$ zcRUSqccoG81S)eU(nNO>Rk)LBikqT6Ts$}AR?=*@isrk!)1mI3wA`IRE$-g5!Nrp< z7>nE3v9?H8(OVM%H%miZEyH7O!DH?fsFGSCSv=;BEf~fY9VI8U#i6dRA~%wgM9}xF zHDMnm5`eXN__`RY;RK*9hp$cliLYWbY7SKA+&@{U9+@me-o?MZ06*+?_~CrHfbzc` z`4`%Tk;=}&&jUnl!vRm{f~O0>)BV8Hh2ZHT@N_XvcK4@BcL_~(52TsyK{UrbnD%p* z(+}M&)w`>y!Cga5ZWFb->l9Cel%P%X^Z?D%MVhCx&@juIHJPRZv1R+O#E%%X;;AkN zGpj_JFa<|v;@?HEhbSd*z-J@~Isx7rIz1ErY25~|*X7}LBksg$?lC#MKD-;R)q{CZ z*jDs6r~=R0z|6Le#J^+k?>I0WaOM3f+dVPE+3qPdF>ZbcHk@;z2DtmJD#Yon=A6g6 z7cz$9wt?9j!0e4Q+}%W@-6LtddlaSIqbcJaLpAQPRO@c0z1`zzu6sN!a!;bA?iM=8 z-Ab$7Gij}R4ix!3DDnk#w0ogqe30@UqZwZpGJZ5Vye(@hNg9vN%=1-ElL9yuFuoQH zzYzV#0L>|*GB6h^KMC%ZcM})kcOKfT)4^2E%63s%+57;)Ld%SG2A-xs5&k9D+@5t- zn3kQ>T?Y733ky;vT96}ybGyj^*^2&Qm7Q=Q;gbjGHDCeE>*6#RC+esmQtTbvOTpG3 zfvs0Shp&VVUq$2GAJYUEsGxfd^!QrZ&Aoy4b$4vF86H?>)ers=9aawN5gVdXk)+1PBbhGjxUl zhAJRUnlx!50@9>+6%i0Y1_ec$bP*8*1Ph>8Km`#iBKBTT6h%esqW^d8lapjJ1K)SQ z`}=?QKF@u`w3%d1_Fil4Ro?Zk5h-7IS>g)=SOZ!E3s~b=(L9c<5e=WMglv3wF`6P7s0Bqv35U0a5 zJoAWJ1IrGMh_69e>JZ1;RH8OGp9N1;6IM@9Hx8}r-_*# z(2UFv>Bh`Y=(fzyX;tQzv^Dc<+L`$+J)HSH?aMq%hceHp&9kZxhZ6$4Eg`_0;{sfT zHpCsSI@m-9oDwJHf(T+cjTBv2dOxf>yi{9^4f8zfT!IHF1OW?Hx zDQi$c0_}XcErE8Uk^Q_-&nI#u(({QUyLc=TPpFqb7bn_4d*H@#A8=NHdpqSZ;w{`k zLh(beE2WF0#5o9|{!461$#(7ZMx^x4&w}kp7Kh0N2$fVdJM%Xv#Gg=zzn~E3p%8z= z!}y2l!NJURF*S2(bg9chon21q?aH8mu1p$=<9@UYMKG6#u5)>5w#!HJU4FXVg+@dd zS`b}9+T;q+HkU!WU1566WzsXQ2)*En((A5b^o|Q;KCTjU(iNj`T_pkXEJf#CS?qL` zW{;~32V7-2>MF-su8N%Ps={?#)j0>FbS`n#;mck1xsR(M4|O%>k*=mZ!_|UsbX~%? zyV~+cpE}UHDN~cRu9m$wys%_*GXwe#148-*H{VCtX*Ig0e-X^rfw!{GzR( zAWpK%gW3E<+{>)TdvGudnNl;+Lelj4I&;i`zrwiK?V?-5xf94zrPl05HdoiK^~eiA<;c1=(+^>Ydk2 zvPb(_q&W8sVBsV_ef{s%tvUbj_f-uIp%_>w3Dwbpx$%&7^g%8|i-6 zEPBv&6FuUZO;5V!&~vW2bkub-op8;g_g%Np7q0pAoofN$8n?nMEreOhXRm7!2VJ*u z#C1EDbS>t}t|eUCbq6v{gdb(Ft$z07A^ zuklZ=;~Ke6D6>`4QkI0-I+-wApTx~p6Mg{&L_syQ<^w8KBmI<*sZ>n{k~R-1zzs@? z=rNxPv*1FH`D%C=Qc9GLePM<1&`iDs#z#On3wZ{>HJLD5cko1*sFg5V>v$N<(Ry6b z{phma1Q#?w4}z|vCEzoF%pe6L<|stZA>FebNfrZ~H&tjSh$F-F1(!yGMnE{0EPv;;Rq+sgwmurXZkVcv>&l*A`I zt@Xh5l~NAxVAXAjfH@J6wiQDqc^bKkx0P$RN@s!e7oa5YsCu9ti%CN*69*QWLdA0e zY6Hc8WMW{$a^pNTP|-rIe(2D3szk`~6f?H(qGrrW$=DX4us_beGJH$(T;I{Ht{-Tn>nB>{`h~W;euum87wvKVL;Kwt9dKvRA-9`e$A~IP z3|()nur2!lhS-TAAxsng!)&@geq=XB)I1q-ybs7nv%NO;<7@W?~sXc(>2c0=}Og94@n4o9Dot(q#SG>iOpQYlrWq=ChPk3wb? zI@Ixa5pq%rdMOFB_fzC#|3&5GP+UX`o^#{#GHlUFGMcKx1JUInVJ`)>pBx^wVxal7 z2)OXHswF^ zj5|OPw?SF%FqLk8ty37cNe3k?&8$iU4kxi$Eb(9B=vQdqAT55G{jw+M!L(; zBzIZ5&Rvdfa+jxD+!bh%yCN-dSEA+a%Cy>DjkdY7=|OjGdfHu&o^$8W3+_hriaU?q zb2m#7nD-L`b08rw`{M#rAIOLm5EBO?>5XxLX^p5C8p3GYDfX9`MU+7UQG)zMuDJ8rZ zo7qix*d{CfH3mzYO&2G0J5ITo4W(UQ3=%gM);pFXaZ)q$oX) ztfWeDG*|{mnA}v)M*=dGAJtQYD&F-`q+LSiGsLVF#HhvXY03v>MP;hWSz@*&$CX%kLu<5PnH3*{o*O8uw<@#3H zt6c~umO@NMfQ_vg#MA@PoUcw}FU0jGg;?;xw#`7{WFu_NdYXuHS@>GF0Kd2uScU+? zfgw1d1&K8#L9nH6CfA3=u@Zw{bQe1C)mRE}(Dj><|o`Ru(qvnEf8*$&ZITOcEG zyo)xjFkI>n^NDV71?LX3(|^QB#}uH5~LWT3N=KfWWQfT0+HNvp+UDmgXTkn7Qj&7N;TaJ zsi8Zcnzbc1_2&2g`wTiq*R zs8`V{;P^MVSJQp&HMGOMmL74h!^yrL#(D$2=-vozx`*C&Z=w&}_d=64)3@&X=&XAy zv}il)?gu&Seu#^^ALYvKeO%wYpBuTK;^FRte69OAzQO%G&vqZ>Tih>mzWX&^=|0YD z-O5X*6PEDVn#Xf&%|kG5c?wl{x?S!BuZdOeY{(;Fzy)yE3?;@D(5+0AW4gld3--4+ zcTnB~DBw5;VZM0D6Sx+_{9W)AZUt*&3vCb#{}P1YQrh$bTbu#US<0Oo=( z3FLz)K7NBD=Qf!3{h++tghvKF2RhQ0j<4V)zYfyZ?fAPUwEiLZ)&SHhUG1tEDZo5p z`yk@iinkiSN1v=Xwc^N1hz`Qzr(BLV5U+0&wM8NjJ+km<|D^Wzk#nl>k(2Q)>=10K zwme0Bzb^8~fya<6FiJvDIuSF#E1E_Dlyp+;PL)gnGr*nAj57e)s#!QDKNRz%!uFDg zjx=ON(Ms(DWW(_!bTtS}EUW?kYRLXu{|)K~FhDql+J7*~|Db#|us+mB-zM&I^UB0Z z;k7&ge9X=(3yy}edmX2RKB8t`Ib3}?VQfIsp+#PKu+8IvJGTO?AOMdQv4ndaXVUGC z`1b!^eloqmCcW)4ogpb{SpLTt8={JDLKqujWyKRfGv(q~c|46)NHvs-xgimda3AUo zvxR`fjex|BfW(b}#EpQ&{V~;Ze?pDipTcZ?MxETB)8+0jsK5IpUG4sou62J!Q{1Ou zuD*u3`iADaPt$GgZ{b&dM{C_@V6MK0U-<*=asNn9xX;qF?w{zW`y3r}{|s~W3l9EY z=_~hd^qu>6`o;YRop=AqPWN9hS?4+8{+mm>|Kai;;%Xk|+8&J?dK}!$gI<1526yme z^5q^E_w~4WkjKNtP6qm}hE(&~8fv>Z=!t*xh(*3r{O z>*{Hz_4IVq`g%HRBR$=;v7R2H$`z$|N*A;c2j`Et-l37MUXuGVtkJAVa(Ges*O zPc+=1m5e7EmTLqTMe?I-L9g}=-T^vz{I;YLfY#?vRAw_k&jMp2nN6^0^3&V~zY(HO zcn=Z?!maQXFeXA>8wRcJ2B1D9(Quwup_LKb3ZM?WRpCFPNIlGf2^Nm$^0>OQxX$9B z>>3Lsh;S=3GPKv*j(!+xF0yxv2V zY{Qxoz5raqC@0MaBS$uUG#fcbi{{8nNXaRxj${IhT-6R4V;4M%Z1CV^&VfdXr?Up!$H0E{nATubFWW2lN} zEYLGa3!?{{e1rYk;Dr;MAAiqCqO- zmVt1x7d(jd5S&5ae{81BhjNUf<|q$5gq^@Og2X)!{)KqwRl&ye4_%X}?%9PsAyEJh z3B>|zZz;8nzZc#{$HTY;EC}C{vWQWQg$hBf19 z1)TV6as_Ps*ME=r6`)JQiax^vZHraVu9gKd%@%ZuUAo zNPRCZoCQk_Gm#Bj{GXDt=Bvba)J*+6As$Hfl_sV1El^>Q2f0tra!Bb4s^nQo)jg}I zK1$b3K<3=ivxeGw)>22$I_l)Aw8JonP|p3QW#=RV5!Y@s_n z_tR?6R=UTtjqdk6Ko5Gh(;m+bdcw1lp7lIPM?Jgfm}fV=?Rkhk@H|YPdmf=Po=54N zXAk{`nCWlNK6ZNcv)l6&m+&0q%AV)AhUaVCoY2hj`goQjk~cx4Z_gn>6y`{!1~%whT* zhm-ICn#gCbM2qM{lB34A5PIe)e0lT@0Dn_V>F4F-gMR))#Vx~ax#N}{cIt7j$w&yJ9u9;1DiBiwkl9M$#wOu3$4 zD9`gNwetJ{c|A|vfg8Ef>!2ZCYrK;MVi{`70=19JLRAoAIk38zp#v!Y3fMyAkO1Yk zKrF3rD6Yb)TOgLw$^tgB!F)*FOSDr~>>iel*jWTQoobjB9>g6ftMzY?(4ci=^k%A+TzWj?cQ9at`nd(Sf|7m-H|xV7TKO2&53(@ z4QV>I$iiDr1R`(-w&)UcRIWmpnu*Q52EnqFl)8Y(WHlJf-PDu%;UIhn>N*67QR!H- zs1>WL+-P6&+5Qd!R&>swb&PMYvrNdOqemJWT&b`+Kz5w?LqvU3Hn?&^9WF$YQXh;tST~JK{cydl3r3tdYx2~B!`H(f@(Rd6KjXXpk0ggB@hfRyXLg=X62IEsS_t`l{=LpRcBos3&mAc? z;d4hOI+ZfX8odBQ_ujb|8IfieLC|Y~@^*s7-Tqsuem)*Eh$6z!-WPx#+zkYElHAq8 zKn8q%CAo3p2F?Rml}u;-PzjVtTE{{e@C?#)xJdmiB3+#?>FWG+!gkde5k*Jdf~b*V zXa6N~Coy;^DSKzpV@BTYkiDKT1ifGgdQ)|89~glvD976uve%DVdHYjG?*QuR9S9k` zk_LMR(FpHVG{!raCVQ`@>%Bv0ws$Bk^bVt?UZ|*dIBoEbfDsr;JH4Z5uXi*(<-L{; zdB@Nz-m!GTJC5G-j;D{k6X=w8B7N_jL_d2c)8F1HoZ+3ye(y9kz0#lUsUk;;!DgJjiv)BC zBj4-2mml$N;pe>D_yz9{e#L76KrP&_mNB={(gct*b4q|@_|Oes#ZVlayC>RhJxT!#g7tk zqIet{$fQ)XSJUR2K;#E&+NiJ{aY&nQG1!qqDR!iBk#@w+_@%&bWbEKMX=k_f@!zUu z{}+jDVu5fgF9LwPSOD4k!?A$mCv!qMn0qAsUw$-n1@=0dODDXuRW1_wss&!c2P4fe z6b+t{TpJ>X{}OLad~{ig9}$hFX33J)<0C|p{V-KvyURaNPa3db08s5jLws$`@ z0NY)2FW|@Cr{F?74Hx17_4gj6tG&;_f;>y(ywA~e?;)DyJxmL{&(mV>5nAqj0dB-m zy4U+6?eM-tk9c3E$Gxx6LGP<{*!vp2>^(+rdS9oHyvOMa?;G@k_XPdweUtw3zQs=O z+pr$*aLD^Um-T+c6}_Kw1Me5y*!vYX_kP2jyx(zu?+<*H_a`3X{e>rDs{0&FK%bBK z<|{D0{9eo^-|BPo9-oh&^Xcle{m7Ergr(S;uoU;kEk$!)K&yctaiBOWyyAii=z>;w zNlIlPg(C_-pymUA6g3ZbQ0 z%hg~hgqCIpA{BW@fF5B3l{cZKImk{GPlS-w{|#0^hLOFAdtt!}qks7okjvzeiQhWN z!m1TvKe~g?;*+EC7(?2QprLVRNr63S5Rr9Bcr*Uyb0UuN|V)JE2tQyC-xOmBey=dvQ z&#H(}Brl^XCB!Po2MPCc@yZ21NKrBtuU_!QXbri7YzfdLV2(-dC{`Oc3G>Pi(-_R7 zH7MeXP?j%B<$cAdimy0j`$|wfUySm6C8?FK6t(kZ(Ph5U)XP_f2KdU-)xL5x(pR3w z`zp{>Uqzbft3)^Z5T*I5&|SW&wAxpVHu|d5HeU_e?aQWpzM6E6EVleecVmUwjSeA73tK`Wms{*O(2AcQ5YC<8r>HTopsyYx$aUj;{qb z!Kn7u2%9_lF5zw%$lk}-hOhLs<)Ik6KHArgC;Qs-^%$-`$Jdc>^>yMqF+zQnuQRXr zb>aIlDE&cSH<;h<{4~a)ANKX&mwY|>IEJ3T>+8)Q`}**g7;XNYuP>kT_2a*M{WXX0 zN-gXgtQGSO)k^t>Yvp{Sv|7F~T7BPmt+j8G*4{T&>+GAMUGBR<>*JfH4e-s;uJz5+ zCioU;vwiv6Exy~eeBT|~65n0gGT#bqv+r*0QQunaao+~*sBe?@s_#DS4c}Jn9p85C zL*IkicfN72b0~P0@8%}!*M~jXlqZfF#g}=;=u^rDKRV4|kk>K(c zk|-~Y*LK3GT!|xNrnZrrqYB`so3*=F(?`D!jW-M8;GMtY8ywi-f%~k!MQx4bwH{r6Gz7T+9fz#R^nhhg^G(5 zkAeNxs?cs=)=SVoT508u#yC?errgnzT#o-jHAHF~RWah`QG8w&=kO_1L!`FR8vVV( zn^p!4(r;)z@YAx~2O~au=f4*azWaKg9Y8?Oh&(|hh)=GGaZJ^mo$!q?&H$WumtiGqtHToLcN~_#1Cody#H7<~andBq zBmc?Np}2#cmd+FEo2SIpj@jM2$m3N|p11V?w{W{V7d~$tr{I7{cK*SX^R`P7=dDc^ zNnKG=adyjB+zkY|0xB_zM#^~+ z+Q>t(fL-vhKQD=d7Z?s^4FiS~N@BHo#h?e<2#tHBV-Rt|59`JpJ6X0{&>|0D#K zl3NcIdRI!O^Z}?rzFsCPewP+w+eCj>KrWFvu;yY5tiBiA;-8hJ?ps*@G4H{`c9u)g z|9K7@(J}B4FC7vyAj>KG2)U#DGX)Ht~1w03D-mk2Kb3mS66IKHE zftm(pKshp@oA4qRN-wV!Nh*@AmId&`NgYixTO~Da1vq}lUzsBQYLw-#PL=#M zsJcI!>icU_6Mrpg>90*~{dK6LzbGv{X0+MgoOb$K&>nwFI^b_bhy88nsJ|V(>+eV(`8(4Ye>eKu--CVr z-W>Ax<*0uEm-G+fvi`wJODw==xrCND<62S)(ibm$(XV#li_Sn_Bou8zU&RYwgAx8s zL!g?8V(>obfoRDD;2JCft0nj}Nh5jSkK{x8r8#3A-3%EPyzyqt480GYh#yI($+QKJ zgyHa7`UZ~zbQpA&+i_M}fY0U%@OjV%d_rjBCt5tNR8lMyZq`5EAp(s<4Cy0Flm`_S zWyh-!WiWek3TDiCRk|qK&^s{u}54|4e$weuc5 zhu-$jh5p=3C;jv2TmLO|)<2(q^Dlrd-O5h?B6j;1a|!>QT+P3XYx!4legA51>0ig) z{2Tcy|GhlSzlBHnxA8dt4xa4a#WVa5^Ns#JJlFpiFY!OY%luC%{X1(3U_$?F%u-dH zJ{H+R9Ucx{6TmePKF}knWVOQ(Ig4kp3x>#9Jd6FgX`E+qI8L8+&@eXv;RA188bqeT zU$zR*GdYH{NeJX_K}V^ief$_e=TV6w;aU7kF)o7ThJIFh8breQG`#t5aY`Km$n!hA z!=RTiv-o@E*S}5R9>Q;9C?_nygGfhX9t=F&-Hsgi^?%b!oMt$saOT|!Y}1eM9p$|0 zsX(FsPzlT96$%JD6D%DDsZY|g$BxGM@gJh!P;M((ga@^i!#c9Cmh*Bf9jalpEaku& zRY=Q`eXuDbRDuZU1OWjZ7Z4Cey=MaS1O8JdhHyh^A}Fh7z`+}r>p@XfTUtckK>$FD z74?kr@{&DE7wGiwgT*5MGZ6Aa5c0!R-v2yR@gJdV{|i*lf0P>eUxc8)MD6`AL(pHL z-u_o1=&$3DI6-6mZ__0Ido#Gi#4wKzlAt_4{`Vb;_xF?_MfF1{-0p?&QXs4XUg;c zLT&uNQYZg!)ZPC(UE%+O2KoP_Yy5xFIRAOry}uz2|Il0{5Ekf6OLUFy(lcnK?xsV! zkB;gAdRI5-BRxW&>&5AmUXp&+vy{kKjcdOoMCQGO$h;Z%o^vq1ArtU%nVRz?{A1~g zZUc{0I?REkM50(a%!U7T15ZU6O88$_K~T0~*RR2+t-&K{T)UOl0Y2`9FK|8VlHIt5 zf-)c~2kky2RU0Z2CN6eBH6l5u7ZxYSm$(!OR#PDrGcGJnI5q#D3swW+`Fow$OO?qv z>;J}3RWC;oy&`4lm8iU4nJVj5sD@sZ>gv_d!Bw5|^cvJk&!&!gP3o@KqJDa98lu;s zQF>h(uh*j)dVRV{Z$R_)9J*a^NXvAv6X}iUUcE6rpf{o2dLHf3o6-Tj8NHx4r`Plr zbV6@Q@9C}Rq<#sV(Oc6`dK>ynZ_5t-QugZY*wEW^Oz*(u^p0Fb@60vyZd_aM!AN-3dgn?$IZlL%G8jElb^p=yal zsOm|Csv4XCD^&d=5vqQe2vwg>gsQs}q3X6osJbZ;s;(&%s#f?P4pnCt*8WT&n5imy zLKdVPCUc6={=~^2C!Moh@_(x)jG_cMfKZ(kt_6(cLQvX3HK^8T>_gWV)avGoG;yKK zp_;f7MVRDBE*0%!@K*iYFmg~RgkT;QUdt0u$ZUA^y7X=>1&1e?(^sNKr0;bu$SZDN zdqK`lVeWM7j+MZ<1{P1DFDhcbCvsKxyGw(q6XlpPvC`@)@T7ijS$VCG-1Nhk&(acK zmq#V2yu{TNKmuAp9#q6-sRxy^t^3M2IS&;%t1~_9PQj`GW2Sn$3sSSE^GQq8ouA(6 zp~8&9GgKt@up^F?8Q7{)Q;65Ir~#eD%cRv>(DbpO(5%k#a^Z=hjf~M+oEW2(jA*Pb z5Pc>L+f6WRvtiigP!)YHW$QOn9eo}()^DMf`h2=nUqGGpTdAkM5QZ(E2J4Gxw0;{+ z(r<@hTTFBGC6uqjT zuca^ab#z)^Pv`Uv^rya&S-*!}`X<)(dpV+S=F<9oTuI-;)%E+izP^>4=-arZ{s6br zxASHC4(_4v>gTnQ0n)|>9NMHnrZzp`(Pjqx+MGa8n;$U5n4()ksl4sEXxG}F zi#FVLcC~>pp~4&57=x-N!!)AhUh4qxjcU2qn!%jff;V@%!e_}=kutPNEgVR{0nj*GQN8~vWXT;&JKQG)ki`o zxSv3DC9e5FKB7Q6VLHMG5p%6XM0J860f1K;={^LDkJKrmfC%49JJIT23}E23sFbvV zgL97WQnVB$=uf^4*%#prjo_O-jCc$Dp@0iKf@_gsSVQBLlKR{m#rmbFlr-V4sF^H7 zrKBBSf=WpyDkVL*q1FqpmBXyf+FEbqW6JXo3|!xiM-{+on+1MR9hH(Pm?y9Zk1B!l z)Tiyhqsly&Gqj!BQL-j%&Qg_)8IrD1L7jbL(Tv`TA=FM4`4xCw5fi9pKmiB+VF!cw z4V0lv0%hsa0BG<7<*8So0u2aMq^kmzXlS4^jSN(w zF@dTyAy9*E3e=)`fx5IXP+vJ37PL9v)(v>yb|5$^t{Y7;E=Dp7GGL}7q+h)H0jNE0 zLQHP~KC={g<8T|=j196pJ(jc+ma+?$vRlfsjY=$Am&CGli2G+vfC*o%y?|wFiL$~*RZ8eg zrQvNAT((a3vZ;XPMM%B9Y{K`S-p}+H7T*IgeJ*9$mZvXUTps_kRJ%|uWY#pDD?=4S z~oGflX@#+b|yO zP8$&2x@an9e>HPRB}DR87F+*>1a)aL4~;wr8krpf;%XrLEb03>1s^BC^$jWexgoKi z7ao{|@kmlLJ>LYmCk_1zxcwy8`!7Z%6@a^xaACMn>RhF$r-0HF7=e@AD@%E1V6SeV z3W1qaHE<)<3e18Xx(RzV8+$bec4!{;4lJNyfqa@6xSi$(;Ex3EqV<90YEOD#A@G&s zds2aJOiVj#T+WwO3r(pPjyRm+2A?xd4d@v+3uz|7z8)1CzrB;D0)FrTudIYws zwX$INJrnZVi0(vggsD8p4(`G?*Kn%Vg8WMBNe<5G$?!y+N-ixJK9X;8&Z2vsL7OU) zXf43*!VBQ6fUhqw{G%xg@K9m_QepV`?rI2>V>g6wjr8Wce~~O3A_bQnMij=+9g4Z_ z0=!_h-jSQ*3R8zJOH78sbLS)W+Y6OMC;_T3I1$o*L!y=+K(PbZ04aO`8vuYn1QmP~ zPWm-A<*uC+MFcPq#a~1rWG}kyz+UHkJg+!*`^nrAY3Fn*BZfM&)029Ne=fZVFU~Vm zp#3u)cYnc}ettUiUTP(2kxPEGM2a9L#qLX}4+YRX9C#RF_Xx!9QHb3hh}~YQ8`wv= zsK>MnJWlNb`*G$yK|KRc(!jt|IP;!{nLR+`0tabE;2F9x@GRVi=V(#j5G@THrZs`* zX;T1hYTyOh88}LN124k-zC_OjUZ$4=uh1KTSLwaLYxHU07@Z2dPTvQP(=UNH=zQP= zX9nKnK;SKo1m5L}fe*M&;A74Se8z19C%I$b6!#09=0SloJT~wn-xxT@w+DXZrGY5&ti4_4-x_ym>hj&nsGxI&g;(nb zarZf2J4NSXf)5L)hlQ)K{Q|0!H{Df53%?@78H6YoU6nSPn_dr;j?flJys!attuXY7tuXYSYDp1Fy4P)mLFLaHS=AFF zZYfNEh`lu|dIYli*0AVth#5BEnHLic?~W%MXF&<9xf+X5eQW_w3+%fz3-PhEx^4lT z-4;|0t%`pmRq@Bw+L2>{5K(Ai5FAPui34~hb>2g6E2t3U*&>9tEQA*60ZL&zbUs&v z(5AxHAViID_{q8FJS@?N6AbH4mFT-5m7U77p-D@a!NGO12F&1@B8J{<)RCMo=7H_d z`D&g&nQ2e4;3{-U=dFvveJ)53o<=&B6gx#;7wiqO>kF~#2eIon8XX)?6N4jYMsOs}4vwPv!7-E{98Zgb zlW0wFDs2qTpxwb6Xisn!JsX@uM}qSpdJE|F;6k;w^Q;w4h*m+iLzTy-t?@i|9>hs# ziJhn^F5-=FWWe-^p}A8a5K=U{0Rkli9HVI@ghz_m6X|LQkJK4wz!BU8LGhBX9X7|v zM36ay)L7Vz{K_WQQ>~hF3Ej*hHVP{OIFyiRDw~MWTF&F}*F|z*`qbPK=ZV5%IcTR}GB&`cZFqPKDllr+4 z`-f3@LP%*8le@|2N5tJUbQ?qgJqbxu!Sx^)$7?s@#&Ikb73GlU$8$@_UBAY$B229E zhYL(>N*8Zc2`zvo5%JDXC-jNxl5Rz;VQ z`KYv6PDv$F4CBGup+t8;iSC3F0reZa3$}Y1)eA0%?Os96f-C9L;40YeyQz0@H4O}| zfdZ|C0f$eI9&}z6tK4?}NMPx8OtU2tEw^{Rr&$qZ|$H;VkrhR17}O^@C4x zZtws%4L-{qf`_?p@CCjy_!5r}zRKf+uk%g86Fe{YHZKdl$M*z3WW zvWy}W1@6qtRQ*?+sd-3)SPbJg0+%9@+-Nve8-N+{(seunN^LQW55|dMF^uW??w7EMo1i7jRLx4LZNr_~ ziJwN{qWuDDg_XD{Ct}hKZtVWs&j5GNgh9_U*mS_k=S5^a}!QNwz{2 zo-2AtfDukP)jm=aMxCGLV#4TN=NE9p@Ds2T%8`d+SSZafNMcDDhIF4RZVOVBI=$pm zV5D;aw#_KQ?Boz%V9gdsLn*H$^;?Y?4Pt^o5EBG~m>>{5Pt}8eQ|;hClmoZ6d5EcP zNTW_62XzZMsaFUMcOkUe!4Vl90+~n1LpO%JbaTi@3qyWd9MWlJ2-*EmkT!?V`w%kd z!BCj?giLxe6rtxrQF<{{jE;w5^l2!IPKL_TH=zpjN2oIW6RO7kP&Q|UYIF5aJh*U8#w^qtHy!#;=6nh(9gh*6-t1hbq$Z8;qG z*G40F5M6Ttf%yieRtu}uLNxM8DB(f9;Q%TTOQDnN=`pkeNU2`34Q|NZkAUK~zEa5;g@{tUYR zz~=c(EHgs}XF0!x{KLuXn5(Brx}t~!2D!a5M{^bQ^3~8PY;|J@zVppZ=D`D zfl#Lfq#6{KKoE-@`|+t`@E(y=k;O(TOL!ZBA>9(Y1V9iA#xCxA7JY!=Xad*{N0Te&j&=j146M;9CtWOOGv9v z7H-fD5{tQ_u{c3jNx7n%b4%5fs>j}%d$l$8pUaA6iCbMdmZjWkJUJB0N~AgQ^d0$y z_raH$1*=h0o=nRtTU33eK+;~3m0$D(R0)V8Q;0?Tz%tcT4ck$Uuo`UuN>M4yK@ii4sD`+ zp?m3IXfquN-AAv4w$NLl`(b~!(ifp^^j+uy*q`kJTSDMhlZZuQK2V!T<9sD5qg?$3?1Nk zp@Y0I^bFq_I>gIENBF+bi~Mlt72X#*#z#VL@QKh{{BG!7{yOvlp9y`;e}_KP9HEn% zJ9J9ZL#MTH=!{l8^rKcObWW=t`c%DePt$7cRDPA1|dXAS=^>K3J#_2?3xF<|;%&klsQTNK%<0pby5tzm~M+ zcRWxbz{5x#_J&6QPn#Ju!*cpZ*v*$9skstq%P4v=Hv_Lwj4N^#{!+Ufo^}l`i?roN za8>5QOP4OD82U6_z$QEdltM@N0*~UgQt}soNLY$~&Y>V1mlSGg#1MzIok-o5;XCOu z=dXB&HQjWq_!_`Gl(PeUE7rHY@#M3ANo=N$2bDUtX}aLI<0P=W_e#opM|u0V!ZwyW z!dgp_D`oz<^Y?Tc3oiso0*g8v&?(6#5y0gpyY@Q&6v{3{(yny>AyqfwM*vWs`bws} zf=2d~?mktqGq4wihq4SWl{b7;#qd*2L#O&ifSMXXy2J=mcOyyzjS_UVQHsVHWoWWd zo@N*o)!}1R>@GI*yb7=}w_vX@d6&ANPeI3_SRaWTIomU+DYf9q7&xB^3_)X+KeQ)r z%7jx;xg^eFM+oV=a@cs4gSNcBzY8yLhLq|`;}C0@a)|v?!~$OcKfq2|X0WG7iCdUF zfz$w#Cm@>gFAG# zdU1!=R-Zh}l*exu1^7$r7W%iiAuO`?fr9Wm2Kb*#`biVrtp$0dgk7Gg{HZ#wGN)(VCt$+R#fzTRLuBO79r$=u@LToiaMm_eMwh z#pp!mjmy|+bY|V?!V#k@mo&O@S))5wH!kP;Mh|Xc^yC&sFK%n}=59tG?rU7ZR~mhJ zxY3Wt8vS{SF@SF{kX$jYZcCf#ph;!X*x*BYYZ1 z0U85AdAtelMPne^?OUSt)`uZ-x1mY)YaCDy^UVr%tfQHACJr8f(ILg9z-|aTaX<*z zEreQHFHHt#qprqXP$d(>f%Dur&QYUtH5@HqvjQltJd!0b^G$31KRpRV++ziQrr(sH*w_?>XjE;Xun#K%Q5vDOU zL2Vlcg>S}K9^uH9`D@~qVhA0QHVM`kW%X(_hSf{6U&(%3@pq+Rb8VoQq{`gM*8`X( zNIk=)s$aZVnzJp|t$2yF7h~d^!$DsVgM*$z>7rrk3K^&x8yHw@Y=l+Az+z()WgGXx zs%^%Re;>6nwonJ-ept4xbcL~v1{n{~2xB`?L+sNR#*_4&@f4jio~A#H1N4t^5LWFO z_8QM})Oe1wj6+<}ILtMS=eeG7gc}<#a7*JTw=-VkF2*Z7&^X3}jW_rj<1HR-yvx@c zAHbS@%u9^Vc!P10HyfvTn{k@=8fW+k<41nUILF6~U-=W`4?by}=WoKq--j)iTFsf` zA8d;SV6BY=c+E~fU{I!&e#qe`kth)0Z&Tg_H&>X$JAg1m7+ht}+}*(NiNzYkOQH9I z&6~ipl_Tu|zt(lik@nJjSR!HW^;15*F(vuB_m`20*@9@#OV~DtRpwDPOQ3)(!{`INT0}9f+b(`xg>#LjRtH_k4*@ zFU~0c!jWDEi`5wHTaTdr72|fWox;dflDohbp9OZnnlm>@&6z`rDB*s^%~M$^ipBp| z32fy(?-hsGwqUB%s-a*8v({GJwJc?v;2R@dVtL5K8NR~yiI-rF1;dy!Rwu(>w0*LC zWB3|Q^ju@!vZEa!vmI?;4C9+JWj16?9O=e_g!?7Wovx=Tnx%-J3Ogl5)}N9|nI2ej z3d4U6!+#FLe-6Wc4#R&A>y#4?P+mAlEy5vc8#bt8I85EbCiM;%qha9~O$cYv)Nomv z8?HbL!j)-dxEieu*HAvSg-l#$3n$oV?c7*mybC49yO2HJC6ACzPOst~n<(JvWL^VGUlr~7RCf#f76t<}dre^vH$2ihalu~`jD9qHX zLKrc*R#jZ831t|=d>r*AH)wlQ_jj0UXtzr_%0LBzv zxq*d@Q-XdDFmhQFEQL{6Vv)8igbd6GCnUBoG7uQS+zTTD3xG_L>ww*YoVCL`bi_Jz z!a7`rb?6K^>xMPxL6?SmQ;+Z!Dc}9yLj~5vH?&3r$#*ZM%HTj>i^>ZsP=#7njve1V zQuy2R75MfN%g#*kC!&dOAI}$Bv8)n=A`|S;+Z__pIx0!Kw6-NpE{aZzE7}dk%a&ZG zPVnO>JOIly2+MR8mT54S>1v3}5ULj*O1a@-)GT}rwGI!b4&f0H8_XULkEN@^6QGil zX<~R9O$%Q~H-v9cOKF9+GZSh!I3Y#@>@$KckDn3sFig)*QMZb#VQUE9-IxiQiOC2# zpwVi8GeQ=+ylPi%of6st5hHUt9l0WDNG@Z!ix;untFYW@&FL8>idgPcSc=W2G*6lg zGD^xqBVme##z0*u-A%S|s(kZ_$veMgKA2Tx>D^W245u$Xr5FTgA`^vd=s`| zF1F!jY{NXN9KMBWgy&P;@B(bZt=NWz*oJ&;!y;_MZP45$)Gxf0t_&}y(cx7zKD>se zgxAxY@IACRjFIx;Eow_H-kffMMn*%X6;BVwT*i5N&`pfc0XC}{^;HDAnHXEqBc5&O zfWet!H?8LMjmSk;|E9Zay9f7 z;si{eo0QJlp*+<@H{IgG0HQSJ_R&)H4?lq2-HF|O5WBmJs)u(&!5*SU;fJxak6>pX z#m?@bu1KQy3h$%-;m2rj_;DH=-VY^vf~JR`q?zFZv?%;6tqC8djo}yQzVJ)*K=@VK z6@Hzb44 z>WYC1f;-EkUZ6dlinGfFK+s4Q5&}03rXk3JN=0)z6j+dD7JGYDwfB<}?Cr|o5&Re! zFD$!=XiI?}GqQ`=cyIhv7?!f}HH+T(xLrI1wM3RrrWxRz`~uIi)iGIU|567Vq#c)P zmO=PEY|V$*nvbwGAH)8A0>%53YKK3g2I0?fTzmnS(9rM?DM!b! z#8P)iEOndsQa7M_SZV>3w*a{OZoULdEf&oJls8Enn{fP)JW+W%n6lc1S14mMwx%MI zbl0S;P@SSzC;?!gc5ojMp<$hHR=}JgBFoG+wW-2)L#^%jFByf(+Dg1uAGkW)CE8{S zSC{H5Py#AG043mEd4ffl4LWxhDm%OsqZ3iZS&5Jnfvti-$n!)+Cyh-SWWZWP{SPnDT%I(dlhsInN9yohs%kAF03TX$hjlfuZ;h;8( z6JSB%;**4*y0~>fy)I5pRZCF%EKb1G^V27(E8LY#Qb!bAIERL2*J+P$g zl$@`o`fC#|0)`#-g!MWH75Nn^@*7m-cUZ4KpdNq1WB&^t`*~^={+l|5|Dm2HQGb(Z zu&L1q(?MfQCrvdoXr`G-b4?d5G~INEiKLW?bd>3%Ehf0BOn|ygfUix2Zzcja)1YH! znBFo?`qYfjmu8gCn#JgMvpADkf<0!8!)8g2nWea_nZ;Gi(p<|d!wt-`oM)EfHfDM5 zWLDswW<~CAV!(`9nMaycc)W=bGG;Zt!K}{n%o@DN%;vky+PulE$6L%C-flMH-DV!| zF`M&YIPx!=ZTLO29e-?gz;*M)%y>>vC!LTSOAEaVRq(B6;X?Qa78wGvmf4pl4}-VTf~1EqpTK_E|nQqguJ zls*KOFoD;Dm55g(M3&^=@0f0OKSEz@HrV^l;`$=sI2y=X!BrOJFh=aVgZFgl)7x`!X6}4NCLX z>~#DDBU%RIIL|xI!B;7ZB;hw&UtB>s)UH0&`Xe$a&v(&rXM4O>L7CXeDj;7-72^T9 z!sTPSPOdbP2~IVBqk3hno>(hl7w|rQ5158zq>cdI0yHRCe>_SruY&WYHce7UxuH3Q zZMU``8);zU%@o_+uxQ(@PB#ULmS8+?p$mF9u+Es@oHWkKNt()hC(zNbe?Uho`v<5r zrZm?QBfS*!Im9&kW#;pZI6Gx%4Jep&ctDNv0_rxH9V(F_Ha3)I+0uO>#lVyv^DB=? zs_Xd$q11~LjL-RE+VT}!S;EplQmYY}w@}2qm9or*RNl;|D&``}HgBW4=IzwjTud#@ zCDg{egF2dbQWtY6^)c_FE6rsz)PxsouAqtLN}6u2qFETZHQ!uKx0!3`PIE0R&N^Ca zuBT1r2HI+3`izOXx48wDW*fa}?x2(AF8T($^S!x;&Vk6_ck>DQ+kBcG<}>Uz53z0@ zfz>&x4t)zTX4={dvUc0QIvdyC#`He?WAU$AfYe>k{7#fcUQ}LH2K7P0N^~}pt^^K8 zbXH*4+my}<40{v&w3X0aaApF-FRAssh65>ZIAVVpB`(L#(hRleE%NyJ#u(vOTfGz0$tmV_$;f6Yp01_Ks1&e~h z@Lm;D<1hvGG&n$laSlKe+3cX4`*{5qcpGjM?=qUB^Cg05vGyk^Ft^H(+a5$z#>fKB zEw01GS>q*{qZO_ScWtxP zZJMg4H`V2*!$Av#r$si`6^6*Ar`-#c6a^q2MeveB2U2AEU4diL>D!fWk}wEd12k7; zz5;`A3kUNFC*|)u1Fe1}S8Eh$qBV;&(>g~msV;Jf zaw}?E8fhCQE!Q?oTD`bo!u#P?2(X}$Rtj`sdC=lkngCb@%Gw?-gheVgl)r}&l3u+r zsP>5q;YP*rW9344Xf|lLtzNwa{E~7Zd|)?v8UPmoy{zLss69%Cely6t1?Vaha_&>) z6e)ahwgP%eTnTf5MYghCf2T@&HY0k03k5Jf1J{ z-eMd;mi$rFM~edp(;V4&0lk#r97VYiwe5>QPguqP&yR@h5xTsk~JM>$nz{!8{2ae1dAHZTtx=)&hrO*siKOW#0bnCuF% z^6k_~D417)b^q^PS7 zc1>T={~eXUYM)IZ$hXf})lUB(L25CVrYan2G`(kZ7e^W&AGnZaDdw%k>7job#dUID z^AXKZ1pQJG^h-tVgt{$-y4?kJTLyJo4s}}rbz2E_TLpEy8|t>221VA;h{#%+5Lrjl zBkO5)WCJaTY^2*G=ue1jqLq<*X7$&D3eCu z(2)5UE-+dzQXVmeE1}b24I)e&GEnt(_^Fp5pHNqcU3VexyctIZkd>&|-G@gyFzqcA zx3!FNCDf*b*YYt6S~3Sqols`UM9*%?Ajh`UtB99wEZok(H8fNzF$l_gPi$B8RchFJPaKLVsU` z{=NkLeHr@u3N?(pN_mmju;0h&vdEisMdWR@A2qD&OYBFp1gAwK?8kc2FjiPbr%DP^ zRw#rO`kU&ja+RHK99a09^HF@RR8AgGQNk+|-@K?o)uHSZWQ!fK7R=HE3xjs48jUk! z87frG5WR_$cnj`L`yGkOwbCGkIZyv;0%N*At7=KgfqdPh#tfXLS{kKfS9$Y~lE`4%SfJDgZQ z(89=1IH`W2ZIR#U!3ajAh`2>L<)yiBH= z(o!6Wc33EiW>6&RrmU!k%16CaIqIVtQ9tEGb!r?9P@8CwIz&U%HEK}bXqW~@O}aW- zjIN2sXjC+d#zo7hrMK$W;}c8YGqLntvGh{q>OfU#4IEwv7Q8%ckYv4i2dbAqVj#kI=*P!OnY-$^=Nu8p#s9Ur)^@`S^{?WQv{(3Yz zTA!vw8_9J)E$kQPRB>5gb4S{BWtd!xp1i#OcSD(H)9xI+t4yx|U%#uh=sXy}REaMv->aMyq?(eVK*2Me>2@uIwJGvnI58Dngxs31wJ{i;ei zjtAejp!t>q(LCoI_{7)3E&QmK{zha1dh9m@hBhR7kNDeSghexCprRZGm@G{M?q~y(`C_X>GJ3psLWWX%s3hu9ZwUZ6KF9#277@||@?&vhy7@ZEanL!UmucJqz*VF#!4N#q#^g{GTIu@NpC!#me zJJH$nQS@f|EIOaQj4q^KqPNkX(IxDQF6B^kIY*oAZP9HljD=2Ad;esag@Art`d0aC z=-Q=|%3niw3^JY8DBT(KssiwN=oSR|&2gN0k+Es)jpL3MY+hm&b%_v81sKvi{w z{Hu^W*oZ{Ie#}a+pnT7O!K5Yp#1J}NXVF&JYt)5k8o+n0P=EM{Mj~af4T%ELiFPW| z_>dyD*C*3?RFt0Z_YlTgoS0Xs!9C!&v>ZVAk2ok1v!eqAYCoy4+T;6MfTf`++LYwX zPxyd}$_$M5do!k@B^D3F?~`X~=%r9Bh0qM-im6YNqNd!z=pzudy%4p15Vgl3YL7$I z_QOIyK@Fl$Qj_Qbx-|MM^^6{-A<-jhYpsKDsJ*pl8nG$PT4QU4;;aUykBd2RAZ)7v z>ngZ%SwsuW1Uo5RCQn(hbBJe2VreEVgEK?o~EHGbO98g1XJ=YfE=RLuIXV|zjitma zOBuR(Zh~B(94gQF9_8(or~o=>Jg*q5pgsWeL#yUh!fQxv|9|AY2bfb;*EYP?&SZvO zC*>q3$w^^=8G0FD1f(bkDj*`ggNUG@6cG>vsg5!rC`b`OQB+i{fCceE5D`U0tcV3r zQHmYAe)rnR$z(F4&+~ro`(D@gU%wZooJl)puf6KM?p4c(BvRWsh9xiSDaX%ZMyMY% zLXq0`;!gd7l(K$SP43F$?7>t}C(X+!8(EfK|IseT{{-hqI?uE&gS$}LDF#vj-(6T{ zf;pXm3SUDWC2Mm&AyBq9vbe0%}(+$#&;R*il=G_H}TR+{Zj0Dw16L zu#fj+AHRWpe1LLXZ&IG?AT@TqMft8n)Y|nn_VGJ(k?UQ$%=I3e-1ljO>jQXMhv^#E zhcwl7gl4%uqWP|mX_4y_n2b+hGLF(cu4A;xb)24XeTEq1bK36uf_A!2(Ce-*VJ^O+ z!>*Hb+;xghx=z!#t}`$fU&CB{!^-t7S9X2JZrAr5aQ(nh*NRZuzRE<(|v`bqI-;^n)@ozji7VZ%F5P_>POq`sc#aV zXP){TX$r}YH&&n6=tT84%#(nG&sVSMOgZRR)NZ?hUOf#1sOeYKqjm$m64R#XSJa)_ zL#;@&)NP34H2sR2t6@{1Us2a1doKC$d(?QK+6BSBNsWRjl%~)p)DYy+g}VB6bsoBO zgv;)bY6IMQCd}SpWcR-YQZk#4tNJL)OMd($271bTc{eLiW^Vvgz{76-O_Ni5K~wz$ zx^#rPx)r~tF2kqz&>s2*it>^l?*gWhe)y}2F`m!qqI>{jJfCuW3!@zb4u7NCjCX(% zlh^7zy2aCYg+u6E!aRqIoK5j55iaBfj_+|S$}4!9>H||9WBBr_FWy^=AK)u9I^#TY zcnfm+gYehd7~|Q}IW^-8WMRby-HO=!FMfmSCR2uj^OSVEO(%fNe7tZkJ3#^hHr#Ton9JI*@WvW|n8;| z72WK!4ifhL3P=tNh6+0ae|-+#BkbgH;6=Q+i}OwVzFL3}T$3U%bIO(%@n_1~M7HNsDy8^$l9Pv_mAnw!&Mz4h1f1Xs z)U@$y%IYW9Zd7Fv!~d}XA~q5dpE}z9^&Yg$!Ef^#9{q)Q(gds+xXUl_>0<@*q)mQu z5N9zNhK)P`BA}DzzM!rcB7$e#095qIgPw9T5jVgth5>89ERkmlB6)J(6W5_uK@as)&<2_D5Kr=l#oI_+T9gP z`H19x=H5uRlKTbh=YL^8@5Fw735sLS5Z^sfYVj>f_!=gWa#u zNcZd5&->|G_Zu|DeSl`T-=x{@gS5c?7Aw88x@J?MUqo^ZcU&$vIJ z9qz;Qvin1N-F<}Ka(_f0xId<2?oa3|_owu|`zZbFKE~`m&gI;naTWLH>~ep>ruzg( z++T8C_gCD+eUe+bPjLtLY3|}a!#&(zb07CNJlOp$k8pp-W8B}vIs1X9x_{&w-Di28 z`xn05{X4I8|HTh_6hG>5@{^u&yvsr=D_o8Y-Wsi3)j|t9qW6s2ix!{Go(^1ujmJ)r{6^@J~$I&XN3}`9QSA&6c zoTT;DSP=BA*7|A+W_sVP&~HF9_j{1V?StZIJ;Ph!a*3n$GCu^ELM9xo*ZE$+6l6xo2fQ3G1(^|Yj2G!?A>g@# zTmLXnSnz{+Jm#e@g`-uDN2?zA6fYnN1JHgg>>DQcLi^wfI9hdqgqNm4KN_RkYM6ov zH>`z*DFonr)y6ei14pX|TX4K*bGr3H>Yyki^sv?ONHH5gP$nnu#wCc~rx6cN1Kt z_ymyJHo^h^QykYnue73f%!8tL!S|k*qUh)Uy`qO+{{KpfV80BELe_K#Fk;o1;>n)7c$#M&-{`rQ=X&nbp3$MWaM_xMue3D{ zk4$KqJnnCYbl8nHqh=R7q(cy5GitW7LprW&hjbjVLpt``Astt;LppZaAszTGr4vTx zyPmQ`I`Cp9LOKwTCqg>#0wzK_)Tk379k80G;c3;R50TH5eGd9@c+wYXmcJw9`j0{( z@wwui!)1mz@Y-)Fy*UAX$|8mDiluDMTa%j;12ZzSokiKI=2kv?QL*e)ftN|12O&ET zQ`GaQUI%yla}w(i1%aSLWf1E#NmSUDl>Pyki*eBqldD51Kj60H4=7F`qEO+$JlIoh zZMW$^s!B*jnfs!s;aq0F?>{O~lm#I*D%}x@`nAMNIe9QJ-)+>W(XIkWJwcd;;>T|L1K<_L(Vm_y84Exk6L$;kzxoWH_>5(^ zgxZHRCHJSf&`yd!n8^KEhA-g~rjND`!yiO!8j-t+a?=fC=HMdcA%SS(0Y+Pgg<`uF zoXT3lv7G}32>qaTp4<<^6?W`~<{m8%9+Q&qj)FQ;oJobC{uhfhC5Rc*QKz~w#szw_ ztc;D6;SgsLxYJT29W*g+?n9{22nqJ52a zcwVQMJ^Sem&l~iP=KvJ#n{>=`kWP5sqOU!N=x5K{%$|2R%kwT*^Ss9%&-)zoe89Cl zhoN*o*>F)YINJ>RE3)wZq#{?eca~d%a!Me(y!aJZ!0)mbe{7>RD+<5`7wWYLuvd>1E!yGD(K zk&qb{Gr(FSsM!iM7p@>+R&YmeQysNwsD$}d1whS;JGx#qO&E#CRTSl}HE>6_DHE>e zTDYS-lnbusI{ex<;OI(r4$V;fCya#9E+6A>k>dk_0$kD0z|#Y+9r~F+1W%6)0j~y1 z=_j;18bpq5BaE9DXxPngIK>@p!1rt7Hy=0WyOj{X`O#po9K0NYi#?wgtDZO(z<9cw z6eg|09qq@{;e<-wZvs3MyoAqlNL!BN{n|Kw%xH$Z z-+kOr^>s8u-tSS)QT@RppTk=@pa$SkZ6Ju1b1IBoJny%FJjna)wex<+H6^lsHe5@b z)Wo5Z?9jDQ$FpA>pH~2gZldbdi;xB^j+c&Qz&>J{x*77zGIgJG3q`;?B&+NiZx zl9Jc+GP&nues$adBdn+TG(j;8)p{9){+LQ@6a8*o6KK$F^MAgI^!ICXV z6uRV*5EvOK{uceu_IrBLN?R@%v<2z)trDpdPfke-nY468uDU5FY2@O!CY?nz42~l5 z0`TI!j7)ED3VZudU2k7%;O$4vy#1+-cL1H|9Y|fhgQ&ZAF!k~dq5j^XG|W4U#(0O* zB<~2C;T=iyy_eG>FGh@dub`FQ(X`HcC2jPMp~t*qX{+}tdeM6|?e&hM1K#oUj`tcm z;=PuRdneFI??n2}JBfbrPG<66$64MfT-AF$d%aURUxu5qY9_pRLS9s_0IPW~3?48duy$g7rcOl>6y_uJK3wee27GCSUl{b19 z@nha1-s)Y<+r3M8r}sAA<6X)Jz03H0@9q4t_YOYhUCv*6SMV9{o&1A$wQ_jZ!Va#7 z9o(Qy??zS6`;cnveMGhOKBl^P!8YXGqDFY1QKP-jtE;^`)CBKN*uvegg|Dbvz58Gb z_p9aJH`Tq~L+VNIyK0;F1GU?GM7`?$M19~rratz5uDFWsWk|K#5S%|H|x|&1=^@?f_=+`ZG22k)yzzQ^QsB3bTZ#*uNn$C zh|G67p!#Y1R+WyZi$HeT4z}^6YKsn#O#IsK&>(vsF#KpmRgHAI1+A#6F48(k)o@ki z)14+R_NwYgyhtl*NL7FxlvdPw7#=IXzzg1}v#@#6irS99MB+tiVqN%?L`|#*zn`dy z4duOPN|jdBD|jc;Ez*iQ4t284xEdjz$(tNv5iOp_8()#QJ$UVDS>8_T3DJ*{9Sxw^F71j1VYCq$7HySXN5H-*kyUEy#Dmv>TOVBry6djF(sgDGsp zt4i_cGLjI|u#PT0C8NtS=0Q5%huKE23U5sL`r>(z#nI*e-^{kAfpDV$@a+F9woOR0 zivuR0yIO!)Dho1DflQ+!S}-?%&1AdjBM&}xM-N+ zrZI+xCK+DL(J^Sg;iE-{pOzUWtuz9(&Ir;*BSeoG7Hu`c^r8`=y+)J{7%_Uss6|JN z96D~)rjte;`p&3JzZkhpMjmGw^|-20pIt@+HjKtx$7sg&j27J3DB$)+8@|M7$Gwe? zJi_S26OArB$G8aC#_qhx=*dfs%Xo#+m)95rc)c;0?>C0(jLC_(XxfUGZ?P3Ga?8u0 z5EL~45uQDFVxp~hF>BhMJ2ApmyvTCLVX*T#Y%5;&*@_oCUvk<|yvW}s6fb&~WuA-l zQG8=7UR?Er;-zDZFzhT;X5FQItx>!igG4Arz0pn<{U z)(Q)O7!+1j^8A+-mb!pYc1}}8&^PN#>l^hRHhgt#_y#E({+^`1DY4p*1#)Ig)~2{ zqIi&%aZ_rBi|)WLcGeKGq66O;iG6nk_T6agyDKTj7(;o+SZZusMJHU<2;bJtm0S$7u%gx-zq6J6Ph+ zMfFLBQVs{t`an1>lFec3exTdqr{Qvte0Xa%NPsX_zdjlEKUCkOz`85s%m zMS1z_etX4I&DA zzP0n=)cMx+YszyOZ=IeuOcHMumh5aODiLbADj}S4RaPlb+a#q<0d{OmkVqP-1 zQUJ8Bu06&_OG`BEhX!|Izw}6v=*>xq*3|M95-k>wL&#=!LAWjtX60wp$#y=OItk{V zm?4c*Sn{taWPC$W<6Ej@d`I<+@2QD#mO2=}z^C|4FGIYyu18`SLI4HMLjsVYCF>-{ z#56%5AUY)un~L|=)kSZH0|5oPz_D+iF5@f@VA(QomKUa+<(A}G+IC7;0I*-jqWGZ+ z&N9Gb=iDY;h3b#=^m?%a-2iJy#$S}}Q)K!a6!B$HZJ(3s`7)`IFN>P{%29!@BDM8Z zp{~AaDJOcNEpOB?A#b%Q23XO9a7LPAMvll+yosl^F0+d`&ut zn)GGkns{(cycG5sRLke1T%VsB`b=u(3(z^fAhq{}sIxCZ7y4>ZA733B=*y!keGTY3 zUn6~;;tkSMlGkZ~y)UUZ_N8Q!n^DKabvg(AM=O!x%)k!K$G#N9)0rA+I74cKbX&VY zT4z1^yf|4NqOQ37yimq<{S?<#8q;>9T-P0CTvxm09BxWN)0fov;3l^%Kxq!4T{4mj zxOg!Z^^FYMvBA^YXwXE$(E)Nr#||{5iR!PArsFm9S((6aJ$9!oibP*CtWOK9PfM&% zE6VW|V13S^Ccf5Kn>N(J*B0w?F7@=aqrSfOG|1P1hWk3wXy17>!FN7Q^>v~feVu8Z z?*h8TcOk9vb)&m|m(XTkFM7(?ho15Erx$z!^*Y9T&~_x(@!sS*u1)CICNT3-2XN3i zG#6W3Dgqsl;m^b>JJAX=NxKc1)RV5(Zg>_=rB1qMvmDx93beCOo^F9WNIOfs2Q62F z=Vll8ph=$E&Tz;3QEZ3>Hq^gLFMK(fgwh;|=)#nR-}z4q&$WTGL^?MkFHr^r(*S#g z5ECuxS+d1i*b| z#TLqhtRf)+DoQ5-N+>y&0ZR+6MvXw?Ke?g_^EV1N}U;O1?%Xs6BN{9&{l+y}-zm zH;Oee-%oyX1+z-%2&i4e2ck@ZwYtz-NwCr zOL>rQ8ISPY&SQLc@I>Eop5|M@vwe5+Lf=Zh&9{p0^Z|V5Tf-ZDck!dXwfwa2ZhpbH zj(7Xk^FH4_e9(6gn6A`uJW{BYiKaD}67kslL5xrtdX1$M=R> z=sTzu`QBDbeebDze23LW-$!bz?^E@>@3{Jx?+f*^?<=*>cUm3xeWOnLzE|J)&N|5V zi^J*r-BH2!m!qm*IkNpuN6cT&QP*G5(aK-N(biwx(b1pnxWMmmTzakl+%TxkcOjv;_yiv!dcIppQqMJ#aifYmr9 z0jQ%ZtcLhgogC+Z=ejcd^Ind8`0SE3AK+*RpIx%%qa6`=++sh*JNy7RN=5kwM-}h@ zNCV{@M;1Kw2l0yv9Rz~7yWyWNQ$Oh{b5+!vztL4@j7(LZY5-DoWZXYMpeh88FRE7& zsLCvaJ?bTdvbUq6d`N9Ul{pg?<-^Eqe~oW*(+PDCB7?O^R-IM1gOO=HdFd~83*eD5 zy(Lr41^iK_w^(Y7?lbWN$~Z#znV8&6^+vrp6It^Pm~0?b<{)=b?RAwo#JyEBopHB# z5P+YX@NHopgQ08>Bk)3<5&)A%O5&^ zz!}x%7x*>Q--BgaV zjOH?Q=|K@NWMh-@$s47mC~F};9G&uxlrgT(1L;zfaFYI;oMyn{fzwQKwBR>8P)~?W z|6wGmCap$~?o1G&I_{Hs+BGxQY;hj69kx=q2sl&K0FQuYR^6zgJu^IMlV8JrL$M=k z!vo>OcES`?+;s)K4|m<*#a59ANqAs-W3aevKEo?O2Hf;(={IW1gMkywT7%Q!fwkeg;`-K+yNPnst)MRMus3s!2p#|)SX{5=1L&%evcJ>aPmQB+p#du^!^RE54J|C)DlA`-1_*SSDIcuIwQ4k=Ck;oD4xvbI z5ti;?qprB0a6}8m5iKfqM2!aWv?2bGR7$)B0VerJKq-xaQo4d-{?SlMS5g!I7;5Do zOXvEpf>OGgy7<{+sB1Ke#6RbLmU}Jo?T*pMLQ#VDc~I zEdR}1#b3xC|1BK!-^wxnBF^&{aU=g?ZsA|T?fkcK7ynZ3?q9}z{kQWF{~bKaznri3 zui)$ack&GXN}lgu#f$u_d6|C=ukzo;>-}qalmBjh!oQB6_pj&O{(JZ}|GoUCe*?eg zzmGrm-_M`>H}Yx!1ANy1AphlmNM-srsjB{mmD|5r`TS3)T>sOmp?{ld=6_DL^1q|A3m{e@orye@89$zprlhf2h{`KUVkqkE$*H&(w4N z6KbFTq*ffUfkjA8g#!&4C+)(Ni*Qs6H8eJ&m=|=UOR`*~ER!mHU%7G9l#YH71a<#5OOLLE}=9W=c%e1g6KoX ziz5L%Y{$RCCB%?F?#o9rZozj1coZLUd<&;J$XE0009*+0@H*b5q%JAI!|iYc1za(o zpMoPO4abZ45r=>}qP&XNIex%Hukkp*EH=YU ze2<62>01YI#m79r`3j6=E}!O$oreKh%;U3sp7TRM73=X|e2#M!9@R%vb)NH8JZhla z9CPk-9zmj14CkE!UsTnpQQUAAJ87Cke49|vsmHaK1}87>(&-1Kx|;uEFeC7c&X2?t z!@mP`u{16tiD&$zw0*{8VJ89(qB$vE-lysIS<(#WBSWO?q`UI$$)`B{9{xWFjuTZk zU*K}bWUz#~AIZSG@xQAyjU}`xcup#$)?%EZ{A9jvQqh5y3)2J4AZ43jGR+8u%_!xV zG0HV-QByOAT9~z|wONNcn04s_GnXzh^Qebek9wO8>2k9PU1>I_>&=!l!#sy>GTUg6 zDxR;MV{bqJQtS@s;R%nbHFee*SqHLv?RgS}S?Va~KwN~}q&JvC@6w}oWtoFIe|M3c zuN9Du^P|L6n|Mj%c*Kw)|Q41D(tJZ!lR(ZZA(#d>}OetqF>I)8tS?a5N$LH(Ij4-1P5BRWu?MEGkVv ztBs-HtMkF8Uc28`stW`uXeD#e0Fj-BNG$~+MV1+3bKwU8kqYMRljw@YTR%rvEbf|M zY%UVK0XD!mR-wjO7EtY!#H9A4=+e7ZpgWR7Fx$i`^%+8Q|%)m0cP)oBbbu=%8 z%wI&^%!{d)*^T;}-D!l`gRU|!p^0Wsy1~4Z=9s5Msoel$nY@8;#~G)HkI^9pvEqd90^ z$+gTeoM(>ZCgxS#%DkG}nd7*#Ii9f zl`|h#mCYx$5sgpEtzz$C{?6XRd>VULQ~UADHnktW2x`A`u!no`v&fuCuBAUeh0KZM zT1J2sF%Fcu3dYZ7wO)<7rx1?b0L)%nn1~8A2Vk6gVN@#8Cg9%Bg;9}7xdTB$B|O`^ zxeNHLJHUt@=d@sIxKk`R{-tSC%U?#suuB98YH)5XsP~^|( zEJ=J)?l3*@Vsz@HT(oX-C!K#NRcq)1X5+XyO4uTeLBL~;6%^Zod;#Xvml@gFm0H%V>tPuHMdg(^9AVZ9n{8rk_9q8(J>9qMCeP_N;znC9zhIyDPn;&wvd4zrDM{JoNbB_55H!?qk zu09G~eT+Mq$N6IOGwx-6&i&0Vc$j$tdiqPg*8Ga6nJ1yAPw@itG#8m?_zv@HzT5nU z?>E2YN6hc|Df4@N&in!T`bXYpp5=q)FZ`+bJAY;ZeH>8yYrv^01j?zZfr=_SP(>Mm z>M9t>R(S!BY8CLQwt;}^7_ii(fvD;m$WfyMb=BlRJvA@TP!$H6sKtTiYE7V}dN^>7 zdOpxr{VUL3y&O1C?F)2P2LfHy+kuPK2Z1=Lz{0qSvF!lR<_TX8({&QrG3dfXc1&%w zvtw$luGC`0t6E`a$JDh6J1`#^Xd9{CEdiKZrP?DW)(&=HJ;IxNkYBGz4f=wjt1Y2>xOfdI|J5U*l0#dKE#y!w4y=(Lq%ndGiAN+QW)qC8Ue%DCi1g zo_bCCg^%)mj;27WSLXc)jlkZ7+39;U9e|q~@g`{cOxS@|80R9~POt;K8m<2lOkK=H z2#5r!-isF?AX))CFpQ@;o8p)WvVdzHk{J*1wLHcllhuP@Y8r-sXeolJ+1wvF^4k$i z74gMt0M0VZcW@`2BadKGd~4?!oLiJ1;RenR@Yfjc<7&=V@TeAY>E)d()m}`o6JK~f z831&?B331CKGG5BQqQLC`ri+NMt=qkSQ7mFCuB`{tJ;@HG{XFVT>vzMh-hGt(nc%5 zAbnlhAkoJ#NKX99UMU9Yn^FcT4zK}$Z6@LtaEht}K-y$tCJRl=a{z*=hwnm>W+eQ| z^kKW2n<;=M`T&~f1AQnG=u5Q&Xrd4Fr$&JR)G{!T+64wtr@&C^8W=&{0;A~Cz-S$r z#CaNf+0slc6VluW*L))6MggRl&DUWy9PkgTz`tn+uSTxCBTiWSUFp;2H}I13c*!d% zr~Q4Y(}tn=U$w)UQ>I)TWQg>t@FF-m{ik-sl{zN1I5-@IIl~mV3YU63F7-7O4qQuh z0~4r0U?MdOOrkb{$#h=eI$Y){)ID%L^$JX-{()&UEHItM1a6>7ff+O-Fq7s4Zlr~Q zS+q1Tht>yx-wfPL4+X$Z8dyww0=Ma^nBnk+8KD9_6DAyHv&)6dx59uqrg@=9e9?032f)`ffu<- z;3cjZc$uxhUTze4joSs@;PV3qxohBU?jCrLdj$^ju)s$=D)1?f4IJld0-tL+KNJ@t zTh0+oB;=fXB;>p$3nzwv{@TMRt%C_cas*s9lVCysGG!AvNeQe5vI{v$4Kn3&ka&^v z3G|l^vC0D$@iRg!K~V#ophGN7A*2&J#HxhS_~FDPhr8&IE>KlL8S7OT-cuT6`n=}; ztwwuccE83aqb(Yr`!LjD4SEmz>`|m=Y682xj5`8t9p}!tPy!)*S_*eYiL9F)>Bul2 z)U+@L!b%{nE9iJ9o=%Hf9$1*4OYcE$hzpR3tvoSh5B~BGdl2zLdJ63@GC9EeBa;LC zoHMR3(XF;*3yn+@eLJTCtRrN#SPC_Re&8!e;b}w=yo{a(qTPeDAuH%lLcx zWlU(B|GP?|L_(SMfLgEV{8O0CGaA+d17SUxP_Uui7Uy3DSv51&HvV)YIWdVs5=3QG zrjV{-nhcQi+)SZ>mkN1*fFmeap0b0LkhQE#v0xRd8>~uAg4L*1usWR^tU>1mYf_hB zHgylWsBh3sgM%I#8}!onph1&^0h%5R((GV}<_Bw0VXzLZ3g*$>!TNeVdd9Cyay{lI z)+2_&5sBIXO|feSG|sLaAjKK49So)pJPErb6LVBD0T?Mj##d}lOeZnN+eu8gWRjj1 z#|#+;&dSW-s)Fauls&Alp9m|&&=l}1pdsR`HNAMXGPBZG3*uayH%=pSLdFg$OGMxR zAj&kV_$XqT!Tq`0@6ov;X9=$ha~ScL90EhrS^1SF>j;`HPNAClYv{SzAi z`DR>P%?^vnbO|aUIu~=))vf_J$9V~|$qnNxDXExjqaP`SjWfG@0Z9&nBw zmN>b%*yT%KY+&@`Q1}!Q|I7->i=7IESF_r{V$STETA{3)omnXr4PSiSf|B|VUWV(| zmqNjQ5ZwL{+(FblIF!y04%gQr4ty8&A}&w}(h&!~$0!0plcvtP$Z6jJeu~tgGNueA zaA*yRbE;DMoH&Npr)ka1s>yRoQmH#9w}I1=3AZ3KTX5i+9{7~^=R;FwX6HN25|rtI z%#^x93CzFCnfj;V3!vTh;3!;xDzAUIbG8OA=%I5PYubtgAP-^of5wHIjJwBSPwkc3I@Y0SUc?Jh@ zzsznx$Rzzg8M}d?$Up|IS3#9DizWSO>58=2Nh|K$DFw&Tbdp7`%BfD6%)%~SzWKP= z6r7Fan~UX}hvl1(HXm2^il9B zIu=C3Wbj$~G5EX|hxjn8vq_!tK~iVDozxlo5;~(Ly^z3>pNoEXp<{J|De!`B zmZv!SBVH6i%h!T-i#-f0&YNtjAB8eLs#ntOor&^PJFcMvZ4C{}43(BYhj0VCU7tR z%g7Wg&>x; znr?q6vk2v?oRS_DOm)0Hvs6G*SfT>u!o0Vvj0Bvec$XXm9+84CVwb#xU9ts0ObNW$PUm4_emPJC0}BJC0>CWV~&9oE@Blk~4vk;~{o%&VB9RoSP(q z^Ch74JBewLd5w?6~_ufgml?6##$uTDM47M04lIfIzIlj@w1=A*Uyuar@{^ zwKH`KT|k$Hx=_DRR~i!PMwf@W)7VfCx+c_{ZVdIq z5)Z@@523B0;j|}oIUNd(rlX9NO>%e^PL+&dG?-5Ncvb|||(8OpBa$=IPzAW`l> z=2bXt`ca{_yIDA!xu_zGRlXd@*CU*YPmgU#6_IM_SDebzAusx1fewj>Q%EWNMx9ce zyWG;UktNN6^^n`mN|BAcGGybw020x|_>>Y8>CDRnn0iji$W!4p$Zc89$kOFPJZS=m zHSY3JDV1XdLY+AaE?<^-d8G!b8+Sne&x2TVN}icQ3`2i{A)kPe>5^MC4ODBv&~*lb&^_|9 zo;Wa4>CC-R9R~nT34&uY{ue3GhKwv!Ju~YYp>3Is^Ylaed#nUpwiK;cK6<`{YOFwB z(55U_G26AMC9Z|066=~@M;OHfB5TQmp18q$-`qIOSYDn0VcV64sc7`8r(D|p0$gQ5 z@jQZmWW;n;#cMSR)>EV8rzF{bi;~S(Md^I&=`C1NJS}norm{dLvKPAG9T#KfLy{v& zL%kN4P5(V*n5#~z1rR8#D>wD?1rnR|W8(Z_A&fN+VXScoV~s--sa9wb^u}bEgX^ee zXbN=nDc=y+%`oeV9Z??SiHZ=t2ELd&>f z=yt9Vx`Vx;dGUQ@o%8>)8bplT6%TeS|o zr`m@Ot4l&3sotSa)qv1(H8k{vx;*rinjAW<=7qjdg`w}&;t+a!Lcgf>q2Ja0p}*7? zOR489r+U#Ur(U-zsv}kvb=0b^zP7T}50=M)HZn)1Wr}G9%0{a#Ti2?Swyss5L)U6_ z4l1>Y!JF!t#Nf@|>Ty~RkIM;K_XoLcMj>?S6~F^XS5X#{SzsH0{w+t-)vbx1g`1G- z`U>$;1zN1G2PQ{)7M7!qD-hC3Ab}sPy|v01gE35dYgOn;)k}j|s{$?4S>tq&L{@Dz zP6wmpz#k?!of=>l%SBI6J0y{hgN^e(WN@;s$FV8d3CQba62x$8*^_uQyNT@@;a!?g zERH6EpBm9gB0NP!H;G+^+lthOw5p`#9m}P=u`0znHZQ|EBJa3Gy)V=EI_78C z`d!Zl8DD^r!_vPXvtc+7k3myX5-yqBvb=6{PIlH-kQi^gV1`h+D(>DbCe_q-37kDm zG=C3lC#ZY0z0hQt)$l%m9~TPJ$X^za$hID6jP92I_jBf8_Ap&e45!yVC78x|{|7AH zW%>UwM9yyehn`aC z8OdMlw}*u+I=3Z=qxF@*lP3AX9E~dx)5i+rNt^sy_8W9RbZ*Pq_VZGW&^T9VgocSn zBXq*V*E4dYH@c@BKU+}W2%`xas3qxz22QB~E^lUw{DyLs-^p);JIC(@jd92C7Bmr@ zs@ejKY^8#xX-;rzH8I}*ENEm`Rw^i|6sAeq#nMSU)5?csVwhZ*%bql#=~$-XPH2}e z#WJS1L8rr)goe7v6DeuzU0|eMpc$!MwNk&bcFC8eH$`jCP8SUC0_jC5)J@U47sb^u zVteS8i-w$OYC#+}^sFJ6qkjht-|?SUq^KbqQZ?_2jFpOL?Nzi*K|pKr5x53s)99I)wHfuK5L8$TVqun>nhdIx>_~2#;J3xYgJcklIm?uQ3I@LYN$0s zjk9K{nbsUN$C|H}SvRXYty|Sy)?#&!wN!1i?oeB;JJl|0wK`<2RqtEt)koF_b<*0X zezP8ORJ0y(RI?s)Sk{w{TGkdvuJw$gh4s9nv$ey~$J*%_Xzg|kvtDtGvi3Q~TKgT> zSZ_LJSce>i*1L|y)(4K;ts{<=*2iMxL7b_zuWjTVGi@X9n3@QvavYOjprtfY&mpxa z$$B?;T#kgKG$yuo3?`ZJl1bei7b5+#7Dm3WqXSZ(((XLOaSnnpX?GsysK?jgSOuEw zsD;|{W*GT-4i`c&;i|h8jnA#|I!sw`Fe=Kzx3y0Fiqz){BwZd+r}bRfYV@4?SkINM zPP^1Qa2f=9wNJf)&KH4R9fmt1l-4phZwpd8@xghU;VNKo9{sHD;f^rg9yB?xhO6)( zpjYM8(nPzn8|}{0?*b#Qro&Z`!Ff4q5?lotoL8WRYG)w8?NvYR3}Bv%>Z-xLnCGH8 z!Wq~MBfnTxR08S>^Kvv*2&gN<_wr9lKwVKxp!r4#s4E6)&|^*kb=Be*`2+1B;F&-mF1gdHf^ar$Jryl!I4jP*;6blNW$| zyB+#id^`(ILnhjt!#q_x4UJSCp5R=WQ3>tN4bk{~81rpH25R)2l~Fm1 zPbWCM5mCFf0|D;=oY86~Yzvcg+fBBP{xx6=_kE|}m2dg54#5>a|Ts1aw< zPPJE{BPmSp2h|aAx;-v|EiUfgz^UPzrFBDM;uM1yL3)s^V=#E1!{B`ZgLi^*tS>3g z`idG_Ct>tX(K*&>7`-zvdSBDU);HAK`j!S+-_Z!`dm3Z?K-XG7(iH0~&9r`^1=i10 zWc@-btY2xZ^&8!1{Z0>Cf6$ZGpY*)-7rhiF+8bs%5LWbd*g+qLGw8Fhlg@-Q>4$I@ z{TVLD&Tx6I6t2KE!xh;KSK?^6GS>}P;RfNV+&o;3+lH%imv9a49j?g(!)_iMHh6s4 zEOtOSlvN z8SbL0gfCM5aCc>ed#YOD%T#W-uWA?`pqhmT=}56be6!g`L>aabQP~M2k_ST*udg=; zW_BXfTn0L^epQ)#J&Z_u{sHOOQ`oefSs3pmjeRkn02FU3Hg|6{@d-ewJPkr)p8%99 z&=}sQ0ZJ7?%D77dlq%6o-l_pgm1zM#ssTz>s0e%#0#K?-Yk37wz-y4XzmJz7@?48w z`!L@OBeD)gD1;1;ufjCl(NOQDO_Jn#h(Pi?!+N@rofL634$OV*bPYT+K7ATEr zx}Afk+Zr~ZNlT1HKp-iHC6rUICW?EAvy!S2p%xzFUtBx3DXkrmc*(#eBwCiD9ov?n z9TOQzC@0hiGP+BRAg&mtMgS)qw@_b_nw|*SFyL?$;2w@n&<@`fl(&JkrK$o&x+>tx zO5MTb#5I)`uB5XW2jPT=QFeGFnc>SR93Dlr!dFmkcr-N%UrG7lF;oy9OYOo}QK#_L zbWwO5^$w4xf#C@>G(4F`hOehMusRnmllN=(9-bDBD3JG*O$PSS(;+Y zEJ_IR>_#pofjA%?GI(y55duzP?(L{>6hplw%r#T+g1g=nGV!6_@&zKj(s zM(30TNfSF_o1}EefNo*Q5E~=ppy=x>BZ5vCFZ&~O5S`nyqESH`D3Em3hW#rCZd>&A zAv!yWS}b~UK96@6N;Vmx+pGjiG~U%ptGskhDbP9RDx5WSoof$21MaS5WXc4zS|&tAfyQ|gYex>O~ZFki|}%49bQ50 z!*^2G@JhNQyo&mSSJR;I8VKH9G&a1JCWY^Y;H{&%Vera^(YYPImsW*0(E9Lw^g#H2 z+8o|UTfz^}_V9zWEBp}c3vZ$~!w=KD;Ya95_%S*aev-ZkZvg=187Tedxkh*gN5VU~ zNq9H62*1Lu!~3{>ct3XvzsVPd4{?w1yF4iTz83BmZj8&r1Qk9UxX5=c;OZB>{acB z3ybb{jq9ugk9f0Ipp|J0l6j}m;3h1(>!C`ev2GV)1R(^fM(;vl3&OKH9RUtc#@*D= zDzbwxOJlBD&4h}~k^)RJQzcHOU_9eZZ2)<4LK{K@!au~nx;pFBvGjg|s(0cj(UU3r z>AW)b(|=Nvc~0ZCMuNH&gP@(9p8@9E33>IaRoKS+;Va?UbbZ{ZZ!_y}aV*cz675(* zGrEwt%gRX9`dyi+PqM0wEKz?$whSRt0;U)~0wMhbLi#C$^e8msF$n2#Y8L*CT82NT zj^Qt;TlfU^3V%s`!(Y+x@JSjKK1ElBPt%0(8M;3FE!`0Qfo=}}M9ag!(!Jq7=!x)O zT8QGPxhHKQLf~STR+lC;Bx-la&(6p1=|w{jz=?*u3OZ1jWu4HY?UCzUi{-qY&H+ST zG^7++YiaDtH8yHaA_{=Z@Sm(7tQP)N)+^Vk^vbF8@fD)J&!nte=Q38#)`Urbd_rr< zuKLg)T_RQK;z%{>9jQ)(A~k44q$Z7tWYe_~7fp${X=cPj z^CMomH3Ek%;-l3OKdp-dX>%k@J0daK6{$^!BDwT_q&|HVX+*~&P3c4=pH4?w>NSYZ zu0E3#kb_A9c|DS+HBT0RQBsT* zgzB|41G-`bw9HJphTB3@fCGa@1570af?H`gXp0}iMi7x|NLkPn%Ts1oLrrL1kw9b$ zV=*qG9aY>IGoO$t{rhOsw5nVA;}e9_qtp3#Hi89Ckud@*I) zqHCadKWAj5?BEhxy?AAt$fl08#>$?Hl|}njq&-%)16H;pHIAG|Eh3$Rsw&^ABaCb=}wk6d8-t8b{H{c&ZbbfbBa;|9lHS3ty7>`B8F%T*ZS$t%Dm^e>1nn51_7zZ}Qz7=hgp zlacI{PEo4a9MZ9Lt}M}l$&jG9OkOMz6UfA+yB?QrIwax-NW=_C#7t@sxsjShW>G<8 zHulO*)HO1PdPL?@pU6BK9GOoeBMWG3WFa)*&Cq~_G(B<)&5qnk^CFAs_Q+CN8M%WV zjND0&Mpo04k+rlf0&ga=fp$jj*UJ*8aeFB#RU4BU@1BIlYk)vOGNXbvT8zCW(8`W9 zOC_dXqhls9{hF?V|D~s2)8){IE3kB9sV~Z@YoYO`Ae4wtzn%^7`FclFXgtw#^>rXI zy_m+WM21cCvJXL_j-coe0YZcamzD^J5CKXsk}4(I~+>V*p`YPV2w41Garp+5>ph2k)4I`Aq$BySX(sk3tKQ4L2!E~gsLq@ zXw+1bWe`DiF~6CJKdD1rH7`KSn!Tp1kfKbPD-)oR9!hAEG8wl~m>f7zB%wsSyImT} zihIdPhY*p6Afk^zL?4BSZl=1C#~`AQLqwmTHjyXkyvS1!(Wjx(x6oygtq{>|ba~_% zi0HF4A@UqV^m&>U*-i^0FVLdM4v6TBFw*~`^^u+QK;$KQJhBTSx|?2zybNQ#hhC4o zLhnZQ(virkFxIcrcaZ~hHu4tz7I}v&M&4(ChTaF*~Q9s7i*ZC+M4s{fb6^_O{?(n59=#$6Z-XVD=97)xQ?7hp8IjB>At|6hc^DAoVf^bE2#EAWdR zK;A|8466XFcQ4owPD!)G z6V&N0g5*>dCfJwaV`<{MXjti8l+h8|TP9HblA>3K|C?R(H(*P9PigOSJjQZl#sSLW zc>8c(tcyT54LR zFS=YQ4o3=R(yeil9rW#FeQRST-J)+aX0q5Cok4g*kzcXZ|G-xN6I=Z+sv9M05M^o> zRa6j#{~HC#d=&KZQ4q^VvuHrH91V?@rz@f$0FG9q>!X$E#%N`l8?8cx(W-Puv>L67 zR;T-;HRzFOP1+L8rstzB+8uS%Yf%rq74_1GQG<>}ee`A2PiLYg{TvO@AJHIZL_=I5 zYH{^wn7z>mhoVu=iN?4|v^KYo=JNT``rI?xi2FpF^1x_5Um0!1irc?Z;k;BGGjy{{y7aW#;lodi3HYl2NJU8m*f3SJ8PHyG++JQwPCpaNabv!ODU zLOtBb(~#cX4E68`Uj!nb0{o&afB~IG3b_hMe3}8+Enw}}xIRGIw?jR=1y$7%pIjZO z+yEjGsT&?+w}uJTjKb03loK66 zdC`&7IC?p?h>oH*(JLU~qv?X^Sn3lU2MNEHMn@;n8SRMKmy4M8l(tX>4=}R`52uA-WX0=?+>J zy^~f%SJRs4T3R1nPme}7(38=P^iuR8dL{Y@y&jdRSwwM9d4F=1pGdCqBgs|1*QQa2 zQ;?uh$8Jr~s8f+H1W9^*Aqqk5u*%)B^F?Q%Bm`|Bg&KNTlU865hkLV8U<`-#j^j|bGx)bv75?veJMN^`?X;$=QnjhT@TLqe<=o|D<^dN1H zzD-X>-=k-uhv|jrN05t8QsiM*QXU>i%EP_3y?_kZk<*f7E+3_EiG4ZZ7xH>=sL%~iiy`w;G93SiHPT5h{{r!&mA5^gR4lK?>*w`GH=Xf_M>Y36_ zij7z$4;cvAhBqiM18 zX?Cm=6~;Q#ZLtgJ&R7?^JJyx%i(N>YVi(co*v0g8tQ$QOyM$he^`h5fedtK6KOKz? zqAy}Y=~Qe4{T>^I(#DmX8M}%r#>R8C*aUXP;yKIs=uWpS;3y&5j@^$*6@MbB;*Ta( z{98#C|5{ST??|fnZAlfsDWT%0LAV7rD3cBEKyV-#gWG5xHiGnT-U%GY6u1kO@tP^L z0UM?YgnlgDk4G}ua2T=(=Rm;4Wo)CJgw0evDc0JFhkpREjx#w(qF|di4S>JnANFcI zw+1&JB7J>nk!DHVX5z!gr-<~_q)3-2BIqo*&WD2t;ZkI*dTST{{#U?>BGK9HOw=cEURVd%a0 zj))WsO_3%=P>NCp84&3pAgG9-ASjC1MNvcrMMO|h5i9CdvA5r|_Q^@kB*A;X`@Zi# z-@Q09$+XPgtFLE0OLyKvA?F+_aL%P>&ReOIb0PI}7SjmlQo7!`Od2VpnJ^)KhkfH^ z^B%ZEZYJo|E*6{@P?K0%*9_pnwfLj0BnZJY%><*lhjY6r_1u)MIJXKoH_LvKtXc7M zOBAZDJy~9t2&JSH+ACALQyO~EX)db(oPdU242BL81TL=hVW+!5av=bXj)kY$`?GG= zbFX479Rc%3=L&MTZ)?SuC%eMrj-I4L$SXbVCDlC-Wkd_z&pfIR{k{`-wi7?^%I^%o}PVEq#cOIrMov+CIFEOql ze*dNSlo(qOnc;xjCe4vtb8{~P5@Bp7$pjK+lZ5_eQ9oJ(9bO41HG+!8jnK$4aAEV| zV7TfxiDp1^FF=RqKsUGAmOzIW(p924zAhVj+!IwlW<6jnjYuuMlPVZmY5}9h000-U z9EYI*teQsWA0jpgjx!202gT($CPf&JSSN zKcbtQpWxCB)-PigdT#vku8tXCC;F=Ira@+)02u+Tazsme2#H?{M&Z z?DZtM%}8?=I#%G2mDAt&q;bac)0}Y*tN{92bd}|dZ%sa9D3jTszjTZ&a~_m5=x~~x zSo+z-F}8qhCnxB#oS@5cf-cJmx-2K?vYepHa)K_)3A!xjMQZK*kvckmqOQ(gp+A4X zNB&KtTtdozBja_)kFQhQf3-COG(fVA0Ief&fc67qpO4BRkE%6g#{CF@Dl(VAAuUKf zq>N?wRmjQ3-UkrN?veYUnT}0LjQA9R_AC!rEqysL?Bm!L+w}Dz7S8D3X zz!78Esed{;c=@ehc0Xhq<Skjh%OB|2w(j^XH zjuY{nP=F^SS0+_;m7&_MvXt*CN2;ql1zg$G$dyAyt_sxFRgt>5a;cZA5)E`!reUrs zbd{?rjdSJEL{~MM=BiF}Ts3H+%R$RsHEE3ta1K{(+U}}D54!5oBd&UM&{dxfx$@~% zR|9&})sW7(ob<8FMW4G=`r75DpIjdL)8!R5mnO1Zx~SsviJC6I$ae*V#}yPoS4cE< zg+*&uM09jTMPFAVG04?eTLZ?V z^%u{(28qM2%f$)TF!70Ngt+LsO8n}&R{Z4}!#aqbkyHy)2gNy42L)&V;Y}0@h~s7q zDPA>WNb#f@LyAYu7!s43u`&VHhQu1IVx?Io5Q}0B);Z!9cp@$JV8)Itc&^b% zrr7^%5m&+!@miJbD9iFNNJV-?bVdKE6=KMPSn12$!5BwDOnE=Pt}>Y8{Ya}ep~HGc zIFVMZ0FwA)6rFhpB@dK5Wo7xf8vQ90S$?iAvXRbxim$67s?Y_&Yv-8}{&8i8vIhp4 z?aOdke(piF;`SvuPW?~jFcg?e*%xkLmY`9Qj{D2Ssb-2U#%%cri z6e$CsV0&&OgFD2s-vV*(?J<0?vCtvOkh`vfBHRE)mdHcmnD9WSWD|>ToOoNw*O-{O~yXvr{kBgHGUa)#WY&Sdy{*QH#4unNjHWzGB_s_McpaT zV{R1nrt6@`Mnri9ihQ5pmL>rxu@#d7Ohwur(c@-Blzfr8j2S1y_c3!mhyS?n`=wo6 zz=lTFg{o5i;iI{Nk_-mx8w(Z}SuXs}f4uNRQsnn%e1I`!cu@{r=HTMFGn19%kgPdG zQY*%i)0HasC$3JeJa_HK)g8dqJ%Ot`h^u=NIs&SC*V7brJwr`g&r(a*bJX5-i2At> zLpP4lb*|TFrt26S#GCSJjCgTT{A$L>ujbm=)kMJrYha|BAYL>W?^*)EXC!;=sco!A z&qv-+(xo&t<3;Yj$cP+RDkJYR8ZfI;k6QT*N6mFrpXI1m|Km{`<65RBrB+eXkR1a_ zQpS-1Eo8U|+Ue+jga3{r(ZceGA20+pA4wlm;((_(2hTSzsDRwEZ2=d2HWlRRnftTW z7FDWZ8xx}xt(1JHTmVgC82z`zcTHSHUU?1__8I%6OOr@}wQK%QgtD3Z^&RbSeGd))1)BXkJ?Hw1j;n%Bsu^@fwbO@c zIXbWA(D!PtP*hlbwVKFQ9m1j37IoEnLRa&p$QeaYpDA+i_a-nMYt5kBs4qZj3~Nw` z-KvwJ`5Dv_*bb9b??dF5EQo#SUDySKRqrVBOM_MK`8cZ{?}*_&nA72}jT+Hhw2GT& z6yvOl(LUa0tA|&#oHj~NUjcS!HOiz6Oy7uS@5O26qN0?A0_z35S{Crul6n|R)M8#( z+7mV`5_h#oD9oy0tIuLD?6z?XA~cBi;A4&6FD%W*RPnb}!k<_P;y=_P{&%Gjf2*4{ zDj!NCz_Pg4WNJbREDHgjILJ;XsX(nW~qfVPi;aA)goG^Hl?*{Guo^+ zr+d{Fv{P+KkEpHaX|*-IsJ5Y_YFm0sZAYioj`V@rMU+>&i(IvrsIT@FE_Hy=)WIUC z4i(MRD@8YTr0A_)Ee5Eg#pS9&du5bXc|t<+)+6{d)ut)bMwVrSN6Au#!4wpU2C&Z( zcZeahbxGX(_8HV>7JZ0d zn0p6n5!_D0PXQGRrZ;#cG!`X6@phpHUje;_#poEcg4&#>c@kq`DXl^|V#*>x{+;-( z^ug%C%KZ^Q+sY@QTjkpxJ3B1MNzh-QIw<@ERHz*kNpI9!2mb} zh!ELjIczqPoqDL+XrL;T6%u9vJS)UK8!lp6LC$~Y3QAJ@W3l3(#q=j6S7QHF5GJW0 zOj1FZq)sMPokF@g6_N|WBy}3KRHsvWbp~})XHsAFCK{~HqT%Xn8m-<8$-RYcROir4 zbuQha&ZFDZ`Lsj@`?R`{wy4E)kGd36yPOWFcS3Sk(+lc4dRg5_uc@0Mxm)S1dM{m2 zw@X8A6bipKB@%N$X0iXMX~^mMxFLTuZpa^s8}hs3hJ1b8kS~oH^3f>g8%Wse=@yvu zJ&?%Th?6pw$R#wA?t%1W<980V6bhqquwZ}Ab<#wK?w{q2FMKv&el{(%X}S5 zQy&B5yDXBnExn}0g7=uQw9c29_EQ>V(A4-jkRQZ7T`?45bIknwC84sCvW>Hc^5&P8 zrfZu}RKfg20>LNCE#NXe#Du1Y9TgGh)N*7yaxyT#yDfLj#0l4n1QiM1B z`x0Dm_%4vU9d>YlCQ0EM8QgHSFqqDzAxzrv+dhb~-9>evgdY{ul`(d`BqdB9xsh$^ zv_M~3`pGMAQ99{8lJSJH)bsCgglQKACiAc*oFNb0o8B<%-cn%0T2=Uoj*lzdc{;sV zPN$b*Y|E=>dChS{A$lM>B6TMW#X~R@yJ0BykXL<}!s=dXtnQ;`>LV}`kHSdc9M#8Y zkoq_cRS&?uJwfBugEUEfl4ht+(H!+@xVL9$x%w=vQ=fy8c%F8sFVG(K5balAq=V{9 z^sIWAUQ%C1H24agQjfq$yoyNhD1D&n z4?SLK6~jZ%P@-_R5)ZBT5S=m`+Cs$zWONn`-g0o3@#tkXty8MVhCeD(N;b^lZur9; ziVbd=0grpcA25ducswOeAlhw(SNpwqLc$>{V>8u035TpAYKj$v;Zgt|8;Zq%K4wuK zb{ozCW9;e3g>SD0yt2~JKw}u!gy4b$MXB}dUXq)jfK3fy3dR5y+gdDZ7 zs<)o)N2NDr+_#8qWe9$69n8jODVO6X*A=@2WpuH; zAn}X|*kUN9Y(89+@03o=J%XS?nsY?hKx!k%##{U|CP4AQ@6^r&{%udS^2!f*Rh)NP zmf2_BpWe!|RfYfmFZ0ez#1j}<0GqBssB2o$1g_fvfu|u6;n!k*Im+Ig0Dwb;IX4G6 z%FA~;qrzt=*+VWE{RjD}5tO9HAt^*0JU<<`IjD_#vHd7ORo!8#?T%2sJ4&h>>z3V@ zQP5pLh3>}G(p^aH-A$;QyNLR_o6=x+GaBx0PNUr|=z4ccy3yT==DSor@Jj} zbho2>-R)_Yy94cYccg>vPV~IHGri*OLdV=)>7=^{op<-9FWmj;SNA~r%RNNc+*gP) z?%^WGJxWw|Un8o!#|Wo;ylCW}Aey)*%HYMwLV1Im5l)-SyYmq+n^`Cz*pLnz6{1dS zW}&~wgO_jO!3(TUEDOa#Z<&RTrZ?lk%h6cyayvASb(FK*?a)yMFKClrI(36?albc9$&w`%JrpE4@sk!?W=*b-F;hszV-Sg;j_k0@Zz7=|M8}wuWO>r-z z+3rPjt9vmOyNhX=dkL*`-%gv{OQA0%(3fSj&%KE=j4>o>z6Fnz!|RBE|qJDX0+iJ!6nt-S@m#(XaK(q8mW z{ssNm1*v}kO=xE1yoYwezvMuI*U~O!0rZ3GFyLnf80|=W_krOSxU>sGsTh$uFDJ6I zkGP(N-)M3Gjt1f1lPdg3UW_@`o)+PMI4=AqWJgv@0Mfw*6I4u?it;S~m$b8_REf?U z)z|PRlKT-{`eV5C$Ekt)0J+^DSalzyko!q$p}7@GtU~nqJ+P`iCND$&gxZSy-O+Nc<0tVQgaB_+J4ad>oW# z`MB_%1_y8UIZ6Rm8F1Qzi9>i_1F-M_pECJ8xI@Z=eI5^Z1klG5fNL*>rvSO5B@X`g zAXKTr@wp+36I($}+|$drr&n=LN6G1ajlAyHDdK*Enz)a_fgPuI?l-Bk`z`9}K0$-r zZ__aMNxI7Y4qfLy1;u<9ig_A}d4`s_-=h`o_i2s$130p?w9Wk??QnlYd)yz>e)oBL z!u>gv^D8LlH}szSJG$V$NZ+}Ch7UzClI&B(T$C{LQmj`MM3 z$9s?w1KII5WQ4J!!w?!88>6nmz}!?Qrk$<>)j3b!mw{@oM?lKh(OYF{l(C~ruqwN` z%(hoxeRd1X>|`VG90!$r7_Vp#e&UyKc2=Mw zd8*MwPj#B=sX;e+YEiMLF0J?E(`Jv8?(w*3hexA_JbpUp3DL`*h!h>8|Mp7UlsstK za@boV)(L}#A(pq$idf##252lEx?slqo6vRRihDnr3eouiS2F}-SvTStjIhxdhz{p1 zH^KgM&)n$0Y0^edjQ8IX((p&DEd-m4<*!Ch=s>CnV7}5u81fd6SVZ87G$Ifyic69z zR16xMu|%TQ$G6F(Mqs6~bJUS>c~ZnN0kv=h6qET)4-PK)=Wq;yc^yO;Aj#)<%^hW{ zWXR^xB|>sX1^FG|@QV~MwI4{7nA*?gk<@;b_h%fz`b$(-@V+!9@B~arf(3Xozv&?v zficBZ1CKInMGh`@V5KH=Y}JH-VrzJ;b6%Vp%Uh%`5yQwDBL^1jnBJgup_rw#S@w54I5c67C;J&pBrfV6j{X`W6r+tZnD^>m@dp00GKryFhb zbf;~e9+3E+wA<5*_IrBMQ=UF_$kUfz^Yo*)J^kqe&j32_8AxAx2GMt(!Sst~2>tE3 zTx5ENit?T-L?zE~k>?pD9G+{0*E2>Gc*cvSo(ZCrXOd{|nJT(?ri+1|o5WDh&0@S~ zu9)b#Rov`ZDCT>L#UjsAvDC9%tnl0^)_7KndpzsJ4$nsMkY}^l=ee6T4{?!{UsLnM zT2u4HozOfk+H0a1rh1FaGG>`s1~yd~y{-=8dc-}fdELde;1$b(=Jgj>V*gwY^ktYB zfXstg@vasc@sf!dLw>bd61}tWIZ99?iBf=g|ZN@XrrhhYX=oDKV1pB%2~#K z`b*{@xhU=bj2whVBoEQQL`z#E8&jT#tMcvLn99HKm03wvzEs2EhjZ{CJ%sg{i6M(|JpI)Jr} zN`Pz*z(+9n+Lp`zVpRb!rC}El$97$nHHtGbXt-`l_wXlcsh4Lj4e;!vk)B6rjOS6B;Mq?%dLE;jJx|b5&r@`V=ULk1c>%8E zCEDkCg&y}Dg>t_L(&IJPN;==V*&9F67zt_Y5Bq zVrc8kqqGE4SSTc>z@eb%>QSy5LB+$aKv>ba0{t z;I`TDhU-R>#pjORHljDfdq1Cg^jQ_~t6b=xY_c5v3+a!ZLp2;Tz%z)xxaN8E^0^{Bz$>T?_Ws)3ovh=i0_uOU8m|cN)|xM+t^>!Q71ndq zl|Kg$A_evNxq_m6yaQ=U1H41<+Yq%9e1t*?o}JBaftO05KC zl9K8bO0zD+=@%tuN{NgvlBs)BS$nx~=}7uPlCu}fY>E@az18a_eNBCQqa&ZcrU6GR z4XuBS(^|b0*U(_ZDL+CTe}Ovw3U&Mq>i9e2ls_oo`IDlazo>}^%77wg2d|)>UWEpD zZ8X%IL8H8xG{&1nlf8DDzY}(?@p&i}|w8sm7>xHNF!pC|m z(-ChKI_|AXr@VP|)?1A}_g1HGy*21ZuY-Q`))eHeCCYkhi(GFVQO#Rd)bZ964ZQV* z?#&kwZv#>2Z75oLouY%+CAxW4(bwx1L%kj`%Ig(ly_%Tp)x}IN>iS;4Sm+Ii5^qqf z@`l7lZ&=*pjffrIsMzBz5YKpd^$t-QdaqET-r-7H?pe7s$A1ieVW{bEV8P&6P4cX0BQ(!(@_bqYla-aieV?%vDdN zr|g=5HcsgzyCzvQN@*&i96L=`bR?+{!xGI>8ptT8EX`MH$tVXmp=6^z&DGa+;LiFI zF-tb>0DU^wT#?L*Z)D9CQLp25iBoeXT+b3zYLBSCpW31-4)ean6<9mFgJmoQ$3dV|*iGyx;*$2R7YY zsr18dt0_8&LD(UKxJdLBT{D*8w}CBKv{9HIvko|RbaY%+pp!CFI29(esD~Xg)ot9j zsV_=IZe|qUn=e+0vbG;Y5j7ASg<`vi&o&f$=o@8_?J|@#*q~3BoWu8#%QWbA+aoft z;>?^~Yb>ft%)jwaw0u6Lna=T;tU9+tR8|!835dKwT~0pl9Tf4dpvK-iskwJGb@r}<4cJK6csJ9H z-mTF4d!#!yV3oI;@{Oq{laOx|=j4>Po zRv9v2mBvb8+46$#HOiWX6F!pWcz-~g%T<(DEyw$6{CLw()cqrT+jKE9x1NCNeumMb ziig9ckqqXS%d$Qv*>;AN4Z^e?zmtR)Lu1KoNvxb=vCzq#`Xv0aB(?C~k6YS_TiS(N zdXQY+he-48rbga9ROo$}+Isg=C+|M$?R|s>c`^Ix-A`k^kI_V|CY$CxKy$oL&_eG) zD)Bx^tGrLq2Jf@9+4}-*^S(s)dtaePy+`Rq?;Ehx$K}l$wUk%mH@n-kT&P%^z;aBu zK?iNr8x$CKL2EN;5KRVjYBw%p1dT;+movJtG(y(E?KF{w$QpPVnnPV>kEkqaFX(&8 zjE=R|CrRHnnzauE&6n(~;}m#C!3fFgst zG8yr%3?80BaRpodWR1lOK5)j;?n7q>D-)8#iA%L0^X$3hESf3V{}LKG1UV*o-^N{^ z!d<_MyFLw#JVUzoJ>2#C)YSU{wf3HcXa10Sc|W55-jCs#&%rZ)0?&M&CU`%mo4sGr zJnuK~%HPo%??t-L`!ntI{wnWvsBt#&dyV(@Q3j3m19{dM_r|n-(}5J_du@t*dorwX zCO}BNaMygVqX3TH41KoK1nBYIg8A!>P?`x!ua57Mlo!X*^i6Cz(VW9SWUI&0TwQbg z0-h(HXVK#0>8~zU3q>T2t*(_@RbEgfa~$*08o6t1%j@f?iOK~LFow9$w-Iw^-kEey zTxc&fYAn?=aUl|c?){UhYDBd)LHQci#%neTXc^Q*%cK@s7PZst)I}>p1GTa=RLiDu zT1A?mRi;^59?jLN%Y!$@jpxM={+hT#jffq5fcoK(nMJA{wLnn7rm_o~vNr;$Xp9@z zk?PUM7&n&Aiuv;8QZi(RIMlb&94hap%fz9Mu^j4&^oPnq&v{8>J(1QUD_PJ3$I1jt z2(L46*s(E}vY%CAOY_o| znvX_lK^m=v<(V1NEo0(m);)e^onmL!6hl&5Y)f!v9S{O=q1G5vtS-kCJ0!*wZ6(r` z;EYbDo{=&T-^LRhe^}1wo%ClE7d&x<0m(i7DPsdqB*VL6o4sYOXIdJ#4--s`vOPof zk(~USt>E}+*wa#ue`s@{n6d5l`=abLw;)GllCzg2meJA>FwS2R*CxT2+GV)5LR?!D zTw4)D9!IS;qefbDYOb|_$hU;Zx1yd}YwD-9p&?pZ8lknLv08hYqIICzT1T3%b)w~3 zXIiawp}RC#d<_(4T6fy3^`hsrzVxCtfR1Q`>9jVK&T3cEC)!B*Lc5xN(nizongItk z#+?3$i@=9*5jYc9o7WLH@?1qDdKuBg7TjfX*+=F6Y&&`!pBuVVHh}-Ej;$|)Qr`<|nktR-ru?e?yj|c-*DD?lk!T^F5 z)CYz#O5qsBL6|l%zM3bo&qsPhRQwM)DwrP8{Pl5U4gfln9l4UAF*hDw0k4zGILOM} zA&7%76J-R0La_?ZpHu_+2ygPa3gt&%QFSck&X^esn~GD7bXt^S+T2_=K$ANF662UQ zEic8Dn1?>VLb={9p&_4A6Cw@pWDW3S4e(?Q`&>2bbJeC&NV^fnZ5kD6(_!3ZP-kr> zj2qy|+AJEW&89Kh&2SF4&~$AM-J;E<1=>7Xs?DdB+O4!+1Gk5^fF95m(jILQJ*q9H zXS8B^SzAJHXt&b|Z7H;+gwAWr=o@W0{h-}Je`qU&O}kT+(^iT~+A87Du+LRnBb?fL z;nD6AK5dI=qHPl`wEIL`ZHMTq?GmH3-D0%1S6rt(DrResi+S2Xu~2(jtkIqm_h^U2 z4(+gbNHcg6zBfeG)Ie19O+bDLG|;H+-xjOwhr}&1vd^Fb!~?PIA!0&odq`*09+*YJ zPQ6guXRRy)YV+4ffcXss(Kqy*(hC}08RO~uFl&m9H^PQB3_RIdRTwx7MgvxYqumF6 zuLdH-)@Y-`SRWNf3_#>NYQ!cWxEwj!{Dlo1pe@!4 z8#)@uABP8#0w+ILP~?)&74d`S1*-WCZikz{!Q*hp4ul_fz&>rf>w-nvc-NyycQoJ+ z`tX~{cmwO}!|U-eYpq|$`>eACs28Vzy5i%o>3n=ivH?si8;iq0ikWw*xO%11HN+IS zcOHkv)hvYrX$8}kCzJPl=E>Jsm+O(dX)(!e>QfpbJV4nzGWBG9)Gfu5kS_BIUl zNouLRg9!8#b<^IZ{@Q6o@MjQ(zDMJ=_i3{B0nO0P(j4tWTBv;lL;W!f^*P$0eL`Ec z^Rz?zlpfMPqsO$*>1pi?I;?$3$F#5L9qj_WuYFCQYTwY;+P8F3`xio*?}Va#FUo2^ zh+OTWsHXiW>S#X+Rr^`^wO>S3`&ATazloOG@1m3Thv=#ODf(-FiJ{uxVw6r|4CV!I z&=oO5w~0A=hFGj;iV{6btkLaalU_#Lqn8ys^>SjbUS2$|XNza_9PzSVLA;??6sPoD zaTZ$$KGiFWuQ8u}QLid~)$=feSWPLbS63?OHIzKPmg3awDjq#w@#{{dx$ail=$g_; z_bUVSkTO({DkJm)AjW1dOzi; zK2SNX4^d9)S14!n;mU{lDCJ-JHOi0r809y8yv?ppuvOP5*=p-kZC-u4Eui0Ii|RMq z3iY|R_WFDd$i*qcDw@v6rkT#i=8A=Xx~*0$T@7Q$rZH08(q@;ACX+hYC>H+pSH45* zn4Qm1_L?lO))#ZcOUi@F9u!d5h~2jD@tPZm zP2&E{C|+MfEaBc@`w@=NDfWt$NQu^v3uWMi656hcm&MH)9q}D*@do;qo$wtVEUUXV zqYE-tFIJBa&zyn3L&KJ@!5Lj~F1kXZ1NLqfkxwZrnrFTTSL|0RiOVv1s5Ky6>^iE2 z4V>jE7%$QS+iMhIWAk%H-4z>6uzb^uwPTJJu2>=Wtu+Gosu0Uw7B_wFpWO66)8`_$Zc(aYE?tn)g*{US|HX>6CyWJ{Z6v9xjQjj_h3bXE!2 zO-W)lRjv<60o)Wjs^F{Q1{(i%-%0)Tl{8deMWgi9G)7-T*XwI(s=khH*4NW*`UWc2G2^V?MH}=@v_;=c+x0E< zkbXBks&Azy^=;_I-a|+9d+E4-ADz;-(+Bzk^tJvVeW&lCpY(n7JBoW{^aCPC$67M| z8Btw-UO4p^g;#%B1oT%$RDWF*>c>TU{erWLYV5UPi>+j!sVz zqUPg3&bK!A`M~L)P4?P!qG&1kObzyY}p23cySmtQ( zu9Si+B;-x9Y3bN3rem|1{t@I2o5gf&7Spj=Og~Re^iLsgpF!R}hrE47z4ULWpZ*;U z)-TdEy0JgPDD7Qq-Zg65=71>EopOc*_DaxqzbwmC`Iw!Uj&Q#lutAI`G)jB5Wx=Yu zS=!@cRE{9oFsoMIra83faAp;7Xxl7@_OJM%iSGyJUWJW36&@2m@qV7OopCmQHo@88 zEifK<3uGwXf*3+M+ax=Adrysw3f5&lHL^-SEK~YnxzZ1_FS!cHIB;wb(Ep?c`d{SM z|0chWDC!f`#HUb8pN-o4vZ%kWEM4WxrpdmFG|yL=?(pT&R-aKzHBcbiVh7%U=3-?~ z1_^RwmfKhv)Tao&d45=`uC@liQy4|Fd#N{teaTXMfP zGf*Jndz<_pi!YY6#s3+V*6-8Y$2j~t?mW!3+{X{``$#mQ5>Q^Fe9hopTnh+S0m1=n z3YTN^F?iSZYC&>afy>pBFhG{6Wd%gq;Jh-H*f=5HU7*P1Lj~4{3ak$mSYLhe`tm8@ zYe0>B4XMb73ak$mSf5JWd|tZT=c6lqL7aSq#`wSh;48!pG^IJd<{Xcq{4f8&xTu@F zd-;IJ8tsDsVdK24VmG4hNc>yjP>Nta*4m4)`bLI&TUj4(~$fMwbEJ$D|f) zXjEC_ZWC`GSU5=wp%qde8cI9zW9k(k4l~9Z23xM+r}S6AnH#VzgU90 zuJQyXcX^#U8%XR8@2Xzhfw#T ze!jjm$cM@T{!nA^VQ~B?o5!t2VeBZI168>mU3g<{S4CKezo@B7j=ffr&Y zV67zln&t$owMC=k4-7Dh|FX`1*etpw{@e(3gnWbX=MKf6djV>su!p_%@1w zZ?kCO+bY`n?iGD~_lrTko#G1LL*hE$!(x)}5i!m8n3&~zLd^9&B^LOe6-#{2OCdgC z$ek&~;s#TQ#kiOdd&E^{8Y(V_0pzY}q3DNx1b0mbizs@f9LQ3j9MkvEHM#{`X$#avw{0P3G6ZBc#eaQk7*$)&?$OE>812W zGzUD7fl}I->@PXmS?P#tW!{)}%=aT8M~GS=~BuTqp7{zyEQr1qG-ZljbC}GKY<+yf*aRZB2m`Qb^ z1usDhUV#=Iffl?9hkFzr;We1Z*I^#tpmx4v)Wvt4divgkM|g{d_)gFW-`h0Scao;~ z-l5sPQ?$VME-m$)rj@=kwBGj~wBUVc!H4vy?;IWQeM(RJzM$8A7w9eDx6p#`>3!ct zDXGRXk`GKtMLuPk+o$3VdQZGx_CUN}c6Y2`(hjm?_RFR~KDl7B0KGAu=q&>&>;f12 z4T69zXi+o1qa0+j5Sc|QNGi*dv3vsTN!F3V=W4?q7?Z0R@VSh(wjsozYDtOL_UDNDcqt&QfuuDH}*u;kiqimm39 zI}gjh7s?8+b@_KGTP=y9e7`_Se}|O*0V(|xvCChi`~IeopQz9;sI_0APJSEp@Mlne zKad}OST8^9mLFV%ey|YwVO{*?X|X?>micpNwZ8)0<*!KF{kimz9~0dE%Jiha3O(lhx9UXrM0LaCq^=;6C{k86fvm_mVVB+vJk}n zfMOr>sg0peWzNj(ito#unb{RjB4_44)I7PRk8SW`dI?BNw!y1;OCO{?2R~siWS^Hx zY)3x56}FW#>h<`T`BGm7vWa`gmFRWgX?P8|xuuWSOB{-C=`*cujIxo7Uq)t)cW5Qc za2E)4m{|*hshz?8NhFR+2$q(!!M80+lbK#=VnGdpg${^yE!hXNmFnP%2PoatfCP1? z)Bq6rSZU?=XVx_KIe}kizpWc@J{6-2z!U{VNM?#Mji~{EOUvFFr;nF=d@#kulFTxl zh(m7%xd!>$Q&oQ_s_pMg`Tj2C^>@V#WH)N$?@mSj9@Ns`lREf&QBQww8sP5((d|p4 z{QYRGzdud%51?uOfi&Aci01nTLwtwQTK|=_(La*z_Fql+`A5@!|2R76zn-4;Pox+9 zQ|O3)8olA4NhkcqUN3_Y>g~9ZJz$C=+^(4gZI5R`cgM4!4Y4e!CoK@%^vt3GD6(+V z(~d&UB+(3_QwBhVaZ)JD0x)+K2FY7N6lc>Q(ZV(eqBtMmNha&dhER5kt$$#{8F z;hWg!fG2~gd5HNFQYJj`6Dp#I3$KL9gbV7K(u0K4Dk;4Sq9oZ(C67wTH864@lQ9{^d6lgK!u4SXZ?H^A z$$o?x6}Mq+}cE{(IoQ?xh0%eUOmtumSf|H~$Xm>wkcT_;=C>|1KKs ze-Jj{A)4;rO>_NwXp#S6D)H~7RsMaj0gpicAEgKV`{^d?bpI(j z=YN(y^S?kB{4dcT{#S(X9~D{tH$-{=n{Z=q!;PJS8#@Cx_5s}3M{r}Gh;IJRL~s9> zVu1gGlujd+_$R^%UHD?DM1jahfX0}%mZFB)(Grzn0a{;_gL%@Ohm`+BM~nFlMV zF}ZMX4TF__VFdx8kJStfX*A_*Db^_MuTR1r*m1r+nagUg(ggL_ovx8{^yXYb- z7p5^n`XKkrm|&>}(#Ofpi=Agale}9N(>ZuCWp&!(-6~vKw_=*WGxGoQ^>qLLS|eZ@ ziJFd@3{j}%s3{#g9z+Ui^K%6lx8moD_(Ai6y5=|315yItP~Uu<@5txJ4IKIM2jsJz zYKZ4xWt@)un3Zuk>hYKL;pcxUQXMrND$jWH+g?R(L=KXzdGU`Yb-;85AJx%rL9YTm>oM5yEk zXPN&8n74~CZ$HAk{R9X2GeVqS5aRqwZT-Jd7ys|n%l`)r^#4i2{D09^{=aElfM{Ys z(6oR;a{@M67|5XIflOKx05URQr|p3<^kASYJrXEK2Lt8lP#~LL4dl?9feLgcP?0_k zvW}t@14>*J;P*Vg0wM5fEZP7YVM|26) z6}KaE-D!Fh(f}j8`@UCMY`tlazyjsmil~ z>B@_No0KDgo0T^LbCnZ;Ta|YM#}}}f|-;n@0I(I3rOl& zWetq9q@D%oOl;-7G9USeT->P4LjECF-UA2_TY0aHGB+}SLC!$BEmZnSGmMQ4N?XY; zkptelB3T1Mh5^nzt^r{qgQA)n8I*dM<&qm2lxpTi2Bi%8fyPFLzvCMjenHj9*vRln zd?UmAa+V7l8N}e5~FQ{@myVTlejWt3C^INn1}f;{%!Te646uP<;3}7h3I7a4$n0Zn?+M)H(X3Z zaOO2q2H<<0Vvo>lKfuMf#M7d-?MHl86|adLOvAMzw*YG{&ggUU$m&8dIZ&;71@u3t z9Iz`f8jkn~4-Il^E>Rg1T%191t;%hFY0{S`o=#+3_!e=2qdXL~;F65Vqj=_pC*vRE z1>~msDN#8VJrA+?sY+@56w2>LjT*r+M!rzv%|HbMtm~Nx)^*vyv{nhEWqcT+Yy^R8 z8=J|7F1MfsFvS(X6juOKT!Cfe31EsVfGMuPDryo~O)Ud!s9oSL>J->Q{Q}!)aNu4` zusp<+d1_(GJlbVOdESHHX3T>`0Qr~{mWxiY8lLk=@7XNEv+GwxBF$qRCZpZlx6` z;0!VoO+=h>EGMu7N4yJ1{2)0450N*p8^^l`$NMmjcQ1~2A9W5qLOlbI(xAY88XkCz zt_eI&;{yk1Qs7CtG4Kp62s}?q0x!ZOzf7wFuhRO!Yw{Wlu7M5lYq%wL4NjVdYgmDB z$cwV=ZBS1eu44@PB?jx!NL&pUH-=MF43B2xTCPDEeuJ$ZqQdbM1SMZ@9Q`DGHG!S+`=U}8o+M`W3D}mKNwn2k>3qRJr2DV zdlq7pHuwlrLSWjG?=xm51s-u+Whtz{B?=XmcB|ynP0n%T*1P0HC$FM4v&k)$`fi1d zqX2kE0w*A1Z$pbuk{Wo2^uQ?!2i~QEz-ek0I796N?@_nF`_w=10SyhDrBQ(oX>8yl zx*_l}%?O->*Z%}!cAl07KBX0b&uCrXbJ`mCf_4PHqP8S6@zwBFIY}EgE^v6Fjuq=RuLV7c~Vpjg7%K4s0!V*7($JC zNnO;AS&T67ECwX68Mskmt2D3yiU~5Z(D?lw$u}22h5|N+McWX!QS=Ftl}!-UvGhKK zmU|&HP($NNba~7T9!8ap>u^iy37Mkg;Ab)4BquOi;VtjQ&#ed>wF&-mI}#YSPc7v( zg99c(dnz`JJqAB}kS)KlDJ2dJGYps`RTJz7@WKIBvRO@i&GecOlkS+<|1U6ii5dlI zx{!=|VO4;QLv=dF?!k{cOJzWPF4xq&N}zT?@Lt(bNe1tD5Gkm_&lMC^mCwa7<)!Hy z%hq7vchoO^df;>b);bQxHeZm_;p7(tIJU#ZnDYAkZYX|@e1u>GqY}W@wqB@z@H-}uRraG=b*#u^{xGk@%Rfxxca!-IgSEZfCUPz2oP#0Uc|OZu zAfen2_{^+O~DY|8w}H~V1ynGM(N35 zBYHk~8NCuLpku+tbTU{-XM;`X(_j%@2sWi3gU#rVU~^#$wh-CDmZC}!*tTG6Q9sy5 zxPxtlKiCciv%P2<>>%0%JBrT1PNGM!vltlcB8COKife=2#0|mjVp_0=m>ujX76f~V zrNQ1}Ww4Lf5bP_q2K$K}!Tw@TaDaF$I8Zzt93&0}2a6-YA>ysz<>GX3s5l$ELVOw= zCN2c86yFDji$8-Sl#Jj=rF?LdQaN~)QX_b^Qa3nS@dw8#&4bq~ZGsb(j=?EPx8O9T zcW|aMEI3;k7o4Nq6r8Ut3NBEV1{W*qgSRW2gUgiN!4=9Q!BxtE;9BLC;0ERO;3nmR z;N8l(;62Lc!R^Y|!3UJ@gAXb{2lv?Q!F{&sL1=97fXy3x(iR9lV~Yl#w-p9ov^5XD zZ0izy)z&lkx~*UExNUIoEp{H_W5Z&a&chZDH*Fkl@=~0z%`4mIpcc0^lyfPs?#3#&f?V9Yr>kC`YBE z$N^gH#aI*PUgc3FQS3Z+fq3Ep)Y{=ZlzSzLyAnOAY(iqS64kF)lskap&O-I;m{JVa zvj)|#v!Fxg-Q;<|cuxVI8-y72qjELUsTCL|`a>Cpp`+a(#K=~90ME_T;#HK6=oK)v zczvY^$yOFpEVmLxvb6>&RwG4K`bt8KHcAbpKVrDLqO(#-*$H=u6kD;$WDAM5_(LXJ z`9OPrsqDs2Zh(%!IV4t$=UyOA*nYrsPLP(rX1j=2;KIW4hm|34jw;fw2b9YJI&h04 zVtM8_sD^uxY%R>_jPLM@(_&8MX?%wUWcL&xyBW`&AqHf=idX7W%8Q=%+O}fgxhsoK z_Bu$^0!m%c%w89-IVfH3T~r6i?y3|@BxK;jn1drJ_iyK*)q1_sa5 z6~RyG+Ta&-WAFma3w{f$`8}-+{z&VBztDZb-)Ud)FM2#A=&4W!Js)CfZvqX3JU&yq z5rCQCgRL>`R*{k11{q>@t~JPF40f)?vCt5d=(NtR;@Pek0%Se6V;FZ5^qjSOAdQdJ zwy(fnwE=bKa&#?WlMspr2KXQ#E6`WO!3Qj3b}U2SpVu#{E z_P)yA7;iZ;HNbB6!qiuxc=0#$nVzw{iYD<_Q3_1T5ga7!|BkR9g6l$S7gAdn72DjD zp>s~0lJn^}UuQUcNeHt7B=rq)TMu!^G^&uzS7;@44kV=a~ZYl|RXk|#JZJ_{d4~6Nm zP$POW)R>+N712wf=JaZ)6&(w;rME*J=ya%)JZNLm{7hVUpNR|a6EWe{Q9Uy%A%z$R zGB92(X`^&f*m^#vT~5oiLYaX1p_8ef~f$H&H)sF_qH+xyl?PL>>JGDYFEWXwX0%Mpq!wc zx9m{M+-2Pw%3WWMmG}IqLI)GY-22!WcAnFksO#MScXlUqi8W|c&V?tNZ0@hKAFk&Hg655Y&nENoWdP3{9h7Lo?~G&}?A~%@Jin z^F>Z*fv6c;Eb4`B7yi&P5eeNP1$V1)&8FZ21Y-hYD#rx35Q+9$g*T?P1~`zDZvbPE za&z*{z?cuDg=JvOJFu_@Fy;uz>=~0i8J)kom4&d0GXZ_s3h-As09y6}BEu93ivT+0 zetR}xiresio{?LPEwfCI3^)+pa`%vdF@&OFc|c$8FuAi8CapJWwXwB=j19y8jKU!d zbyK;ys!}U{rbViRqa|t}6)emq_Ll!B;idZRasg)Mn-Iq?1<5!CwrDXQY{_2|21|m! zL#rSUYatKoAP?&y4;x^xHc}{b7ZrpyQS;DdY8%>0eM0xrfYAMPd1xn$)r0cR42;4* zF`MWp#Tv$@fTFQ3a9g0`*W-*0jDka&36x@EF%}=4QNO@>wN7(hb8%i}a1mQ97NJf2 zyy6^WnFE?5fXN)pq%S9dUz^HoWK|i^0SYo^Bg@!@qV;{u6AF?tdu_`B)yZ{Obtxmu z`Ur!6_KfY6VdJy44w2>AOOux+j#-W`gdWB*KZ0X^6vw{JNm+@DZMeyP8atMmb39zmi zpA-P91+NaMmaTS@q8W32nL_&{}G#H~p;JFHc=PCrAs}Oju zLg2Xyy@#89pPGa|pjM%?xYZ9~Ou=&%`WOmyjz)w&!R?->>q4KxpngWvLSNE?(AQKP z`WLMa{Qz(O6YUE9N)Lzrpr=EB)9Yb{&V)1R!?0Z*vEk)Eic7$Yrm=*XGZIi8IBP@k zn$Z1_05+DbP=DmkUMBoB<6~I@df@AspBhZnbUWtq*jSFBIntDtMPND;rj${H*MSC@ zafjt$O0S3K9~|@YjpVS=b;({Hkt(t@R3nuUG5-$HF}hAh$l5WD0JVYuG4}6civV@H zv;f7#=6??z0kHy`JOpYDwp(QHw|6Pz;Z%FqB*FTRJNuHuUB-yjb4nMP61G9cjN$TB zHC%yehbvNkIG5CLB?^QqQ=@PdDhgMnw&6VL60SzQ!qsVDxCRXiJLsx#O&S-jMH9od zXEn!#*nI5$C#Fw9b+(>$2!Jn{=_=Q zfCO$Vu=O} zx5E{8#1(hK6?euJcOgC8mBQg}R1oe?&B8sXO}IDp4)>$};ej+HJcOoJ ztb%tLR~Mwi2d3Wd|5-0Bnad=;%K=kL7Wqnu*3&3dQFs(Y>l%pGwGge*5Unu~t+5cT zaS*NX5UuN|efWCn7M=jnx`BpydZlf>5i|Cv168a%rA}D-^$PKR) zdEqspL3q7zhwl=N!&^kN@HWvce4iK`-XX?>cZuu6yT#=2UNI;9h!kxDN;uaPZ4n>F z6y`9dE(VyQEqa-vE!xLKyFDyPtP>|LlgR)&al&PG;zV7u6Ni){)`=5k%uXDFO|uhs zQI=Y{6Zd(%6L&V&iQ7ph$sotr3!tGvj`137;!dOml>s1pkiHf(P)t38GAyIy4JcuE zs)AJEcmhf&)lAk1neotAoe)ELU=|7Zlb8Y`#Re(&+N;8e4;qH{;4O2i?rdpF+65DxdCZT&N{7cY;mVI zndUxNlp%){V?MwV7Ro8p@JXD^yEvKCIGHo#3crVwd7pw|R4l`&ScX5Q7UA=-`kzzB z@R#x=8X2!AeiFX;Nw{$mJZ0L5s>&=1Tf-45t+ic-li;j0R)QOp`e&kQk;zf2l4bcb z2dDWnt+Q)#q9R5=+5_|47&qe-Gr@b8FyGR!0@-kg;SDgXa%MD(`;aN)NY*WZ%mxBB zy~LhmL|O>y5pc;LhzE!GnZr!)!RwHvWL7Zky16{re4Nq;28fgUzyNWg4;%w=<~b^I zYq$@dh(X28ZK^`$ z`h|Z-Sn>y58U7Q|=U?z2f78SW%HIx=)FiqIv2^MFCvxbUy;i6bEJw8k*cChBu`Y1R1>u#)kT9y z4dISBL?BXATo$P%nnh}hwh`boBfx1!>WRUT24Zx?CB{cQVn#$4H%Gvl9|?;)BaOti zNMmt-q)0p-X)d0Mv=XmH+KTrh9mL0x&f>F3H*q1-Q+yZcBYukX7r#daDHOR}$&6gV ziiqh_sWGM^iZ4w?6z9!|Se!zJ%`~@-#GA1UyGR^`Puc=~>n;u;`ek%TKhO|OMFs`l zXt4@oFwA>0Q`|1Oq|4G=aT^LxoL{XH6J?R9JZ%!A;YFDDxjY z3m|N&MPH#w$Gd|Y&?lf@+6}^{0G(3$;?>uH7d@`@%V>lKUt4-X*=cKp2H#+MP}!An z9BdzKZbmW|MWBcnZ;Ztq8k=3|;v|7!{83^eEY=@8V9&U$)LIyHx8nbdBE#jW)(j_| zfvkb(U5hmvnqtk&xpM^VN4m$fyfj{g4*9LyJ`&R^NidDX4862V7@&7!fIbt}%l4$7 zZP>3oev9p>pl!Jm7P3WAId%%k_=x2Bl1mS+CxSa!T!@UIs*$UxcI0YuMXn(&axFz7 zqp2`5hMGslQtQY#>JS-EJtNoAfXMZ9Wn==4j@&>KA`@w9WD?DaOs4sfDYQ5;m6k=2 z%15Tr`p8Tu=xll@GKZdy%%|5Q3!spT=~QHi^g;${`n#s^W6_l1k2Q$NYV=y6Da3PO z3?ME<^2WpASoc815Of9*55OiuE*fNEdSjvtw3u9*iPU*ad=_1SwnHmaV%G!G^cBR} zSU~5O3E!$XX}Y->RCZL2RiW+JnL{)T=@^zO9pWdvByQflY>|#DQ=|iqrakWKf6{Jp zWH9rAZ6{A(!$Cz0&?TrOe!y13bS+Ut2>(fGztjRkSv*JxgWN(GSq5QP0b#h4@*^ur zjjSR)vYLXCH4uok)H1S;+DFz?x5x(S8`(&MBX`m8$R-*a*-VonTj=JMVyHbT)jGCJWSQl&wu0kP!z#tDlwj7%>LF|9|c&$FbK$cHuh65A3ScAnT~GK~m8 zp0ErXAO&`g6Us9h3-JMeCLOhPYIGoRyU9jDcEeMIqD1z45|Uw>;$SYJ7IYO->uTtm8QR)?W4QAqX8X9?nMn#T6GLFNCze&>~Z_(_?N%-$~ zX?f&5x+`*)wnjdt?UD2JSmbkhGV&F@68Q$E;yaj%ALOYTHOLcj33)s&A^S`pN%xsP z5>o(16}kvgVfe^aFb5peXMur#37(aVx~Lj$k!E5POb0h!7(qEUCLzdMMKgG#@~9sT zgsgDGhP_cpvU*L9*C4HAc?{8jn~|9nW*&i}KxT!6;Hp%45#Pjoi)Ho*Jo z@-xKbH;Bpa5R*S(K>maQ`HRAlzo~JQsC86Om#9L$qc$26&7cv{Ou9CjMK?t4G%bp4 zZ&7TVjbhhqG>6tlb7@nw3T=y4qdidvJsYh}FGlOpk!Zffi(G2;24kdj1RF+)I*jW# zDprj_kvtg}n+anu7oxx+6c%$JnBowM*Kury2Py*`-R07=l!e*oju48e<5(1QX*TAX zUc>^DmHq^i6zoF`a4e+Y+Egh}K7tffLJZi*Vl_tpqZFiFtj-dGxxGk1Cf>#weG>w~ zpXZbbn{D}B0ip^J$xAw`hd=N24?}+K5I*FQYNh0*GB>x-nWv zv!hMuwrCN=t|_gIHlq#E=5$ZA1?`Nsq`lErbRgQAo{6@hL(%s1R%2K{|)4d zPK4l3qDXWy6-K8(@TWrXZ-n4agRPxTgQ7ENSac?hirz%mMQ72Z=xmx1y_s%_-U7j& zLnToxvx&}w;LoS6(OYSI^fr1Zx_};yE~F=-i|G02VmcbVosLD9(TC9$bUwO@evGcA z-=Z5tx#%WQF?zSC7rjR~quWI!`haL0-6aLzz+4o@1;4f#>5B@q+CCLFIwG=UXopB& zpoA0?{C~k7v*7op&tifer`nhl<7T>V(#Z51cL_VqEL$aVFLV(<3PLp#<;-S=@$w~LJQiykqw;7b$qN~X(Up9N%sCcg z>r!7rGFr#mLk0;48bs~bk{G4vnQ4x7F|se7g|jf**>6gJtnB>|G`SIMqehnj+Ed9v zgf1I;`ha9$${L_k@eV>I=7>mMy=#=%xbVs)=~6I^`0!gv($d{NsLE6H7|!}Fob?Hu z_1o}BCrOXKL*eKtDvG{Kt)i!?L-Y*1(Re{JdKThP7|VE(X8kn0pT}r>gFIc<+-;qYlgrLtrRF6^2ggO%F;F5s)gND4escTgvg69ko7Y?HZFoS>yx_jx!$H>Irmc~zgF__~jyaOKI_jkGrQrzz)BPIVkl0_sljJKuO`mjhp4g4w-V)wNIbBW z?bA~GpaWC1Kh5M9&XPs%Huuo{%u@va)Q10vdZnDA1&LFXWH-$SB7^UVJ6-4O zL2I2oX`{0j-Qny_cRNp~d!2pgVdt6jymJ7(>>Na|JBQN8&f)aE^Bg+iJdbV8F`Vzb zkc*rb=~b}KJadUva6GYJeoesJ!34a033!v%Y6D4W*+W@ylV1hAZG>s*PtV4~{Gs%C zJj|a6A7H)q5vIXMxEcO{2$rpmmuIg*gXC>+dTZcW6X6^SFY{io=I^u(g^wVs&#yg$ zok=$4NxJ2wOGB{HjQo&5G_wHLWG>b$JH9m34;2z))o!FZ_fc^{PWj(0R=Ay#N=A`P zsS3;?x9KdPq>)f*wLP6FiDWIts&mT_QH7AB1M?NNNyLOSNihw;18G$&9SkM~^rdPg zQu(M_)z<48RV$g!Rviy@v_3L}5CJT&D-wSP-38WjFxST1YlX7cimZoqk*uv3MKT?_ zqDq$7Yn3P2STE4hEK_6_woIuR>Zm7IBOHb16@*|hKL=8<`0)KkNf}0DV^B<^%#BuA zY3m;)(i4)F<^N$=j3!vdJP6n4&{ZqC`%%Q=SzI4`AP&dcb0=jC*fb1qGB&ZC*m zD`3Rt!+=ux3Y+?RE_SZwM$R?d%y|QsIoEO*=Q{Q}Z{(=+ChqB6&u2O} z@L=c7Jkq(5FL2(%lbpBm4Cn2<(7BnHIPc;$&h31sb0<@i)#F`8($;eB8NTRdc?n8aUrpO`Pwk7S0bU1kA` zs%HUU~mA;Ok2!}+`)5w_$HFM_IusYW}K z_aMTSGQ(VcP%}HK(PG{fud!|7m4Fnfv2EpY1RpY6-~pb8;Nw;R%cBTjwxj-4o8ID) zXoQoYC?E1*RMBK8%D3DLx*ri;V~Zg|mnOR3*r!|K3Sr~RKu+JNr%E@|`XlwYm>Z(n zwi-3IG7usM;{9Z*G^s&&%)wFm$u6oR7>Ys%)OLKAhCGR$g~Et|Cb}8)m{u5Rq~UIy zFiN1-+c;5og8-Ed^sBC~$)B_=NbBU&%=#OY-~J{#rSMj=Drk&Y)e8IXhA4xSo34BcyGgr; ziLIo04&?j{Tj@(|rLU-&^J{AD{03gjx75XXfZWc56m%Y^mxAQQ3!Cz^(^B9eC z9@qBEWS5+0Ei)9o&CsYd8OmlWhZoZhS`%wnggm-{XJWeN-Ek6bh5ke;yCi0@OE3*0 z2XkhiG9iZ$zV@}5hsyQ^7OPB0+>&yruFE)7DW#}{&jZ6T0S-3g9`aFJsw$bBmOC6Q z>62kz5t@+JJPUu55))Rku(~7*(ORFJH0!9IO2D?pBwFwAch z!Zfs661>$zTY9~UEPN%o>L(M>a2?D<_mnXJRpud!^D0BJ&T6M;WU3sDSS6V**)=XS zi4_h^MO=|K74dy?1G`U9p^K@+rKr?pqgF0EmASI0vn!iCt{jTGa;di~kNUf+(GXX4 zI>%LmM!Ra#cvmgD*j1Y@b>-6nR~;&MVdR6WfNpjb((SGy+U}}H_q&Q|kE=dC<8sgo zt_HN<)sWtCmC&cIM)ZxVG5z3bLPuOp=}%WFXSrEt?!3g+i^fU-2y+tR z7HdQBQVVx^k>$`a22cRuY}6S^9n+!npgC7mbC8$^CdL!Xd0ZpxRdG@ER69!Vnxy?y|0 zm9qD*|GT{(?|Q_}ALf-}lI(xc#7AgtZz!R)jOMm>W#!05@}5;pJOpLAru71ATRUo5 zK!5?L-61K1tKOKTgsZ;r0`ufXLZBu&*;J!VfqY64<|;v;1{cG;_4JHW2-Fli3hG9x zRjaTYjsmo5JnJaX!>TdG22aEqs7{KrC_ZF)abe|8E&{qNP8X&qDo!QZdJe}d1K!aTqX{2is&}cHy zXbRA1D$R0TO!Hiq&|=p#THyjK--Wb=YbM?4f}i7>4Mds)M7k7+bQuuoav;)NddoGB zK6G6{U%KYg_pSx>i|a}{;kt^mTnm9nS95`D5tq0Yb92`cAksD5!Bx&K*HWO;GVbMC z&VyYmc!X;uPjIc~DXz7Ah3h6>=(?G&aox%{xNhh5uFbs7br;|3+RhKUcJkA%`}hsl zgZz$bH-F)Jl)rU7&cC^y;uEgDs+Mb?YUp}VHFdqBTDtbDwyrl-N7viR>3UZXE$&IW zEJRZd3(-`eg=h*4D{M*|0nmYCQor%@apXZ~1JR=Vi_XPmQxDXDB^Q^2qT)A5_{cQ) z!59!Hc$Y^b!TFLxWHq4NOB(O01LgL@A6*MXo5v3U<)qztG0Su+L9`XTMXPYv2CHi= ze9sN=B=6+wkQU#FZ@ZnZL0bG)c#?ZC-cDXo0H)U^NKa$7EA0mpS|&Ib!S@^nd=oi_ zFTsD_j>n3@GC$EAN10$veXistky$7Fi6Pcdm zXexpyIUwOl0st`+R`g8yG7X3);VNU6lTN`4xmNcJfPn#j5uj+gkEy(6ct&e7(b0A$ zP6JZ0JU#^-Z>RztQ)jzKP9_12wo5G#$*e5ta%!qilSE5t9jgwwgpZ_)MxVhI$`-BQ zB?#Tcg?iDbOfW?$)lpj*p|!z2Ww}&;;sNEvBojP7MVbd3btR_NeAfc0HNl;&V#agT zu1&Qx%&49U4>bh3YRUz2L@RW4HQ7rn)Yedeipgcpy3}T3M;-lubQ34K2a=G2rm*&a zln((Z{|2Od0!aCkTDm@?wyw{qlj{p|yS^mD^%ZqqolA^%Gt1I!qf}Kf}TKg|@nWr5&y#^nmLqJ?c6}PrH5tq#OsN z{7L_UU-horMqj$K>3}DZ?+lcl~~*AAN9(^!>Ga~ zu{;cTCEX3#ZSXK;x52}xiSa+Uk?=5*Zi)6V;Cys}us5y-%f&FvVb&hW2zOoUdu940 zd&L>qC;SvmFCw~Gw7n<8!x^>BNsuiHlh-3ASJ`)Q0jKoi_Sn(hwKW$rLt>5kAf?kHX7 zj?sVN({t&4(6>RxM$q#n!kO=3-hT(ZyBl6n%owu)LECI( z5G2bzM5le~kRx9I77Vba##$pc5(I3m0VshCKm$qy618NSX2dS0O8L#1$bqznIk;v} z3UX{bIdX_`MBz#OiL$Lz(%#T2w{~ojSFQIrvOitiIVc?_8BrK!B$TE+N3MPb?sP%+ z8&__?hdgHB4j5529Jz7ItxR&qLtUW`m}_RcbA@yX+EcEylweE^($;llk0%Xgiui_o zMykDRUm*9jxs+;sdU{z4cBkhcQqs$ol`b!;m9kee#@3`jMRFhCjVW^Ez8?Gd2JGXt z*vIRzk8i|2zKJ@z*OSw|0ekso>gL`E5WR)^xo@Q*?o9}}Zlkg8+i9Zv4!XpBC(Uth zhC0(0TIAkJ%iVX;S~td_y0_65_jcOhzK1H@J7|x47d`2I0Q>eKI_!Rgl^bIA?kBm} z{S0jHbFjTH!1lfj+xr@O-EVNv{T9dE?{W|K2RzXIk=}>q=$b)^edtThI*`g315(a|{uCcjoZq3{_kn*(SKd>lMw#}x* zwo#LZp)mB2n%W0q6dWuo$eLfFW(oh{vQ+H}@gI{*q!~Vj+@E5Jd_hgzUs4PASJck^ zHFa_ypn&^3!2A#T)Rx2>vi+Jb_luWtDWaJf&Sk_(3#g{kVgn~dd-JuP!6 z(f&W=!4~DE>^?1WtL=C4AZr4(`)3^FBiM&Wu@8??EB9|y<~~lH-M^FD{Ra;ApLCl0 z1od(MMT0z;AnIWn?NKz|W231aJI(TB(Oge9UFpfAm7W^3##5Va^3nT!I!-O_l`h61}rTf_66c zlPN(f1Zq=)RtVH0K|2e*7n_g}Gj+x~YTESdq|R7+$Y%~XODM@AoZFnaNH`B`N@@aQ zQkMOeDi%pS;$UJ?*Kjrvr8LbR?&z6B(Y)6!mnW)4*-+<8e}dj|V5upkbaMo#R2- z+!NC$!YmPtv49O(7mGdB&2liLSb#$)ZI^9n9b64NM2MP0Ipb^qo0#Z$1Ln3W4iMvy zS$N9%DF?x}|xu$go zs;4^+PcIyv-Z(s`Q!7s&D)XE{ojiTX?KzYDo&nUuGl&LyhSGT+GdXN_pq`&N6x|b? zk0=gBHh`oR1)zOrO3SnZJ4RwGIRFhc>jk1;f~#6QMm!IMCuW4QqlyD_0}hKQ`P`dw zV0I=BOjYo*7y69~gT3f2xEb%_{}069__q-7?KffpN&XRfK2yO-!U4ohvLASIk03{)i#GISnf=sd{Kd61#=jKL}#OIOrWzo6KSYt5?0_;n&g>A7kg&XOwSy;({nl9?YV+>dKTza zX{!9(n>ZD#6RYxCoC+b(2WUDnQ$J#P#b`3z*`IJKdeS&dHaG`I_AG36>7d9)ugw5# zdzrH>CknJ47{Gz%cxV_s&7eGv&{9HAIcGS3yE4yKRvzA6lG>h>vvpt9XDbfyvbp8_ z^!+=3aIbiS`y5$-gochRFJ==;|>~c{ElUekkILF=5>0z>q>g3FFJ^;$&Ez73SxwO zN|B>be+uq&ao3Z_2Ft}TP$O!~jS=qpxI&2Iz!h|q8^B*}fZ~_@(0662ZG@OKes9+G zjw~sN+OI;+8&|fBoOWWVrn{x_$y6zzP+UDNnFP;N51p&*nWnc9%cQCmMRij!L=VL+ zE=qeh)X5g7vmz>mr#h3Z+l-4EroJ0y%#^34wKX}yb2T>25^S1luxZMvjb|x!@GJvt zFQ=eq1)b`-mU?@xqcc4#flsUGY|r(;sMWByYiPRX2H4uQw9vDTmU@uK@!Uk~J?m+c zX9I2Z+>8yhkskEi0-Jj)J?q&-FMDpIw>-Dghn_p=bI+Z0z_Xct@@%2wo~_KDyEw;l zH`nrP;{wliZs56xn|pR}ThC7J?75e{o?RUD+{dSS?&sc~2Y8_8K_2ee&Eq|f@?_8B zJk9eIU**}$OFa8{jps$a)AI`7?b**eJ#X?J&)fX6=RJPi^C5ri`8R*=`HX+|e96Z= z->6*AK~?1WUN!Liq?&ksQSCfORcFs}<@Wp`n;#LT-fGt7R}HPr51NFz`8%jQYXBVS2hk9g24puHkTJvsgDu-2L7j~vT?1|e!i10`nsXrt6Nq^+ zT(~9(6WJg~bO!%iMo~5Z_xNWu5bxZO2h!(gMJ@+9VmN)Mq$FsOBZ`sIhRU!-j*u8R zG5A*|wwf+}RS`3=uLsn}*h@}CL4`c!)w*?T3BQzrgARkNs zWWvs;3Dac{fR==|^RR28RF^%#os}99q%w>uH4awN97>vgE$ZhbD)ic@#A~NgZx*%k zW>Xmk&v)|XlG~d{0dF;md23Q%Z$6#vEuag%^=P`ceu_6V!&-VYEa3tS#L_d>AqivgM6h_GSUfRu zdAs3|oJwJD4?5l38%D2>UNmL^T4?}}?Q3Exgw-<~}J3+fa&9jQs|#}mIjxgshxbW8aMbff((V8J3p6f~gJN;acFTH{1za^@SHvAU6{JN+S%Xz+!IfXr%oW-09+OB99H0i(%fT zU}oaR2zROVG0iFsrI0&&@uJbfQPaBFQbucrFb%I}h5ci9>ohl8B6O`i zn&G?ThyyNU|D@V?I-w_h;>_QT)=W>L>(aXrd&(=-+cP+vB8iges}wg*^L(0!=aV)P zuc$QD^J-rC6^<72`&!CHEBO+wQ=XgHXnZ~m#enL5*l1^AqYcDH8-$HE7#nQ}Hri02 z^e}9)v#GmxIQ8+4ptHOqfz;>FdERqroOcvm>^+ZWd(Wo@-qEzgJBC(x$I=?_1+>9? zA#L`KqkFs;(L>(x^rUwJJ?EWBuX!iY+uq6ap?3;>?wv{pycg4t-b?7HcN&v-I_G$2 zaK3jY7kg)MWAAKk>7B#vyqB`edl?73mvhWJmwS2VabNEhJjgqr&+#tc3%ytJWbaix z-Mf(Ic(3Mp-bH+kcQLQ_F5&fF^e}pt@hDgy+`GG?^QLu_p1ip3f0#8uhFD44fZ~-MtfgU z9pChz;|Ztq8Gr}q=}fcJCtu=gwVoc9~;NUbvA!@_2jC>~() zUA#L-ZHOmX+-fDPnI2TCmc$*Y?rK5Ykva=Q5#obN)g+`Z^`KI90ZImXP^mf>E|eZr zssza~70FR=~7 zV=}7YBKuN2R>~LhC?#|8n(<^FW|O&i%^4*U+hL?!TkvY`n$;DzTJm~sXZsl?Pnq}E z()J5p+gclds|ceNcpaS*ch)qkAkN8xGnP4K_2j;rxOKYP0SPse)e85mnRefhtgX_C zOO!vJ%(OYS>aezT;e+>0@j{;ZPc}zFO(d@nX(HhLzn={z+y;z7F3fI;P6UWg(B3NG z_`jSmO^4@yI2Ej@PF2u{cmu8BUXb>@KLGlE1oZs`=sOJP`e*yIU3J3KFT&|;l zzGF1V`x{)X<22g)JB|1LK~ued(j4yzn(zIK7Ws&l`x|GWPpAaKzV{ z&+v8CeockB5-j-OE|zP@?JfA==2ngtkxV>Ci<(C~N6UFujur#MtTADS6FJ(0i5%@0 z@f__O)I6*)VXvb4VU7uVN&|$56F!I-&KwhF#&9ww>`ok0854Fdw)FvQu{wH-b)z~+ z^xRK%tu2a`aD$V1CQS4r&3>lTKR%h<_l40Uzps!2nBpmiuq#H z)7Op8^qoqBd_8E4uQ!eJok5d){peEPS+v+Un3nkv1^I^SC1ExYirN-H0y<$cttA1) zlDI{IZnBlOKhIhcG&sH_V$=_(QS3}lh+N#Ho=0A85JLAE$lvAa6K6IMo}OqR#3@3F zHAlUeL&qhI!kIFYs?TMf8rzHTnCk((?n^l}`~KOf5pNE>Q)E)JwUkNod}jqiY#U?R zax4$Aa=F%eROjEONWm7^lboZLl&jDVDAXysplFLLH(HcL=+BUjyZNA5<%(p*66@`f za(At?IENcSSVsHh^leVKV#pk`nVNv~5`eti@X>hQIoke+NQ>AvBV z1TY9(7N06D0i2yo0OzE@S$a*lN|g*fh9OxDu2Qp44~5snkA!oGjyZ_2_|C=BJs(SV zG?wldEZwnKx))&SUPvC_I12iZQud9fzP<@G#5a-7@lC?gos4BWg{J$a(q+DjX`$~D zTI!pIr8}M0`DV~9K9D|rAbt8k`t*VH=>zH0cNq}!a(dG@m)`fyqfdQT&^JDiK79-5 zH{X?<<-3{-eM`8$Zz(tOt>9+9mE7OAn$PjA<;lLAc$)8KzRGtiFY(>Z%YB=9mG3UT z&9|Mm_;&Jk-+jExXUe>OY_3Xc+wcw6wm~aSeB1D1YuoUG__pyt6m=Thhb-A3y0#3- zavp zTZhb(Ip5(Hw6)v;7YZ}8Kp8)PDsw(+#z!w=~6Z#ZHbkkNXd-oZv^zKyV|S zXL=!XhpTq*PedmD?UWt<;@|D?s@m+ar-fX;r_#>0vh6~zcoBj$U|~#=!KJuP1eJ*n z+UnBoQL_xuUsk%aA$e;Z`{`{~38^a+u^}?E!W^e#5h+rND>ISTBOml-ebATnL0{Gf zeOce**ac5u7d%OZ?8s&SAF7)lgE_j}1`d*;9z8A3zUZQdz zx=?+u)6Kqr!AE$9w)ozs2YesVQ@&5=Ip62>lJ6_{2;ag-IH*D1lth2qTCJ$bthKq zOgw7Z{kcfFnO(07(e4(si7KD0E>jYHeo_+M9QYjP<09AjM4TmPTOn%+G61HPcsX+o zfsth9l+H+5L$4&(P%@`vwV7i^hDhH2yK--Nqmxa%XeHi(?+2W^!#H(6GS zOQl>R{xN)2K#;0f?bBh0rNF}~9{jUP06@*~FSkRR{M zdyW45f-#U^HHPq;#@YP2F_OPAM)5IYH2-N_ppm7(p6Y2VP-hqm)!D{kb*@pa#u&@hMaFe%vT?ndX564=8#k&g#(F^?6u2}-Sm>jc zSwIi2lvQZE6zC(`Urse0u&zmMYAiBEn$(6`dwlkV>JNAqx8xkv8xG1^U=l``TC*=y zXKVI_DuY`hvo97S+jASdevF+`_2HJR!Z%v0>aZvR*8<7S4!1-`dEUoIbdgTTr9bE* zT^;njeWr_ab?FuUKo{xYmhh|4q2CC%rbtG4c7aQE7_TT{A5TH1Xf^Ufz4%;|;Wi*Y z)Q^WEKeSOsd2)Z`)ow+8Xgr71cDQS$aN1nR4;?~&=n8IQKZh$`f(uLWOznz4TDig} zg2caI5RJH5Iq$(46YB^M3oXyM#6-;mJr*DOex@bK>J3ZM6qe-F6if2K$t{UcPwo{e ziX+9QwDsEC3;ebh^!@Ki0)oqm0X1cKr@62!+u?&%*lxl9Pe89kG-xrWdW;3-mQcDh zuYech-Q?5H{(isqyl2j+}<@+xe6g2rkn+^v`3Ca8fc1d5L z{4GHF+ko=71Lf}k%HK(4#%AhdY$30)l|sf{K>E9>m$8k`Ft*cR;~pAm?4Z%cP8x6A z3#8u#q`!~m8TZp7;{jS`JV+~z3LyPMwBFcFn~aC)ZsQTUA9K(jG4{}t#$)uX@i^)@ zPtbnjNqWb4ias%(2GTzRq~A-&jc1vR=QzjM2c&-<9jGsGL*qqmVZ6j;#>?z9USYrS zDv^w(64{Q0Vxzd&{L*HccvL;3tA zD&%jXy7{%hD01z3PbQH2lmv1&k0ZBN)c`gNa)*G{((q%4lEm*ic!W$fe-C_8g>gIyc)HI2?RUxbG0l`lbb)_9i zo|A#I0<}#9UXfr2wszJb2yUbz>_?dh%fI3r3DNlB6omcwZx9wBif{xDtd(+yH>~A% zMUoqFEhu7WnnrY+m{~01%tahpjDv+_Dw5u8VJpGN>|IsmUer97_Pgr0cM(v!IPJ9SO?MEcdn_xi~TF)#( z3KRibJx5Xet66`@2>p;gbvTL~4ruq`HBfzOATRw2B2BpJ;x54zwo)TZJ!w?IH-P_$ zt5v2=wjD$a*UV^wBRtOC6qkiYDZCu!IK?KZdYOAt1R~<%%C>k#5yH2{627Ha<-Xv}k{^s-KN!7!Fnax? zsihx`UjJBf`Y#}_|3d2KA4fg?7g1mTcpB`VKqLGUX{>(|P4rKuY5plR&p(wG`7g#+ zy@YP?PorD>)3H@&&^`W{RNq#eW&S>A#%b_s^xz{qyKM{}pu9 zKcC6JfOGs;a!vnLT;N~G4g6Pgseci-^)Kem{v~Yquix{`+B-EBK)QVOZros=EIPmG6HVR{2@g-v7J``d?Bp|EsEp z|8>>J|1Z_w|Bf2$e_svvf22nFKT%`-pR4iyFLjJH*xb$*ETJkMhb7e;uq0!RdaCA# zlMFy-U)2bJ5`m>2tcqxptp>nggsP3nDYF4Jh`Mx~lta__7}B>wW?Y1sEC*rr^5|Or zP$zAxq2c!}owThE1$v2uzJ_(V2iAK#Y+_BAtq0M1Ck=d$p;LbctSBbYAQBW?oR8}H z1YHZS16w>sNiDoCQpNpI0f*8PmvV2rRKN>CQj98@#8L#3q5%tx{(SDnr=a>TF;;Ib zwF#}UKBA*S+b{S<4j#+dY6xE2fG5&lYAF2-OFfN_sk8A|3Aookso{X(M(`OvwfDrW z#z>OCmGym2E5ukE=rwyUJg+H!;R{*s!+$8%kULpVV%bg2OzUm72kV4#EwhtYkXOvL z?ift6Az{DGhxMO&;PxN*y?4n!%$i5Q6u06K%r^;;xWqpo_~%tX_Dr0wQb6{3DUkg| z6_8ztrj=^H|Enc)8RUnIm#w=r2`!Y4A;~tKG}opfw5Eh+j+*&+uKkd^wuO}^&AKJ> za{nk80(=%j+OAk|v%ZMiA?xDExAJnx-q{=D(QHp8B@{t#=$=@HrJ9)pl zHN|Lx_iQ36difQ$c1XU}bilkpctEa(riDuX{pKhQ%$Z5H)Z|!I$+nYIu@dvBR>W~R z^{qZzn`g{0SKfu5G5&qRr@UITT zzxo;e)i2b?|0@mh9|2GwrP2OlG~WLkP4yqAIsV^izW)ze?EjOl^Pix#{=ewv0MYFM zrn>@)?hn{#Pry#k1hVLbKsN0U3bWM_&f2(ZN7Tr`lU2YjD;C6vRb_I$!5U9te1&X;(pgx}!aPZlI27F$iA&(1`@RUF!o*8J$ zR|i0%3AExBfi}E8(2lnSI`X}NF8o-)#ZL#kyf5JAmjfaGFc9T$1E=zDfgXG!&|B3C zoS_N={Z#$HS*lTBuxb_NvAOWm(JyK4CE%_-LHjFrPm~ z_;iaTz7S^30wf~w#jhjDr4wKLBI+oT__`mUEL?NQK!Lm@T=RU$qHNUEC&)k{Wh6b) zbusV#Dui4TK7GlTBef->DTjFqUL&F@zwtPvwj_MY22cC}yuO%g^8h5lHUgCE@#%CJ z0i1)|AyFkXCkzyE3z!gYNRrtL6GvL1Nbrf0MVdBlcD;FOCjEnRW>f$aG zQH!J&Qy*7w-5n6AgD2ci1o0$rZ16vcqyH0}sp5jl$XIC#Y`O!SfLJ~9Z-uUBBx?!^ zB}ocgOof5zR1%m$rGc5$Dlm)60<)=eU=Fzhmr@{b8J!lmocaXj(xAXR8WFgHMhE88 z_`m|18n}|?1g@g_frYdva5XItETUC`#dKp}3EdXB25?zUy8=t8BCw1e3oNJS0xRg1 zz_s+Rz;*OdU?qJKSVac{*V7My)qu-2bRuvAX9d=B^}sr=8@Q1jft$E#U_G}EY~W6T zTR0rJjk^WzYnR{{23VHZlzs{woe;tm=p3+W?nse!Tx)BGB1psdGP z^e4X8kAOV~G)uRj&QPD5(r19kuK|0V=ndYAP``nOuJbf>wW5Y6gDwD5oGK<56$dIz zUN|mpCCIX=P=$OC{sFDb78(<_097JqpQes&k1LVpd8yVSzDKn-uG87n(I8&1O&5|bMYR?#W;3~(CKr8;=2E~d z1KYm@HvpTZqOj2tCEu16n0VUCQP;fDx=gOmlZpqLZD}0p57&uiU$*Yh1+niGNe-lT zFs0AI)5*1TGF4Jwqo_uzqgbml9LBo>QXNIKGnQwfCc^y8j>eQXmO-he7GH70${$f& zbq!eZ2D-i6U*Tvie>epfNeI3ajkpwmm_y(TK=7A<;IHVEz}JA^ zZ^#??mO_C8)FW_^`UVaGe!rvPf$wQl;0L-W@FU>&Cz=^JOmhQ2)55?nR37-1RtApH zO@X7dDR7ML4*UlAJx;p=zta5hekj<89}70-r-M!SxnNU%BUsAs23zol z!Pfjuuq_`8w&y>Com9eV|Y7q=5XE3aM!IFEaP+b`uq810wR%?SJ)t2BWwLLgm?FwF?DuNfOM}rg9lffzK+2AGW#o!F}T5z`d zSMW0RUU07VcsH0xV?n=q+=71fa6Aoh3OuHGb`(kY8vwU<@~Ybqq-z}^b$uNA`=U&I z6Z}31POFOn{le*)s>TEQg@HC#L1h8BR*e=S8DQ#{tW>=;;MYKYHG;&2c)XjGFAn{? zR2zi#8vy;gRWl?mgn{-1dOo)zT~UW#Q`NN?YF&C8C1DXmEkL^BC{h?QX#5902!9wo zm2`|h0|QukD)Zq>--pjA2HAfPJl+VPza^3$hw)bo)8*~>bs{+J;yY1dSPhRi#2a+d zql8c6H9G0h2)^%;Wb|fE~@?0Kilj3kGFXX{lU2!y;@patW z_6xpqb6(5cY`;R0r3K#!|9Ys+iBj(l_}6FKUq>szLns6f$F0^7R8(2dg93YsHbaZG z8G4P{B$63%OOsj!PVtg;Iz!u~*6^&Y=Smj=ZcC9ubE1-yW^?RsfJGb6Y^0VY5+=(` zcfeR3$~0E&M1D#-{Vq>2R^KIzRT^muop%*EKM0Su!oCwJ=tr0O5S9xC7f@kvA(aHLrqbXdY86~eZG%gwOYj=<2FocF zTuP?~mr<|awKOESiiQW*(1hSRx-58;Y>9a1;^o$spiv3#)o^SH;a+utY|k|K2{P*S zR8-MK?%`D2z6rO?UeCr__yIkTa?;T233q^5jxm%W&5V%@gGw{}>KVMFG+7j;9Lt{) z$1=&zN^SK_5rMQUVNz74!k(B4a#9;VSnT~U$OJ$rN<<*DWn98=lf;PYS}1mix+CaIchc3v?KTgJsNzPo(w)q`-9KZC&8EK%iyc@Yw&eC z9{d;m6?}*7!S^{Y_z~9%e!>O8&-D5++an4S>*tsSsmN_wov#NhNk%9+$0Zr*)2morQiB~xPimOWrQw)*Cy9kT3=-ZBk69pfI^acWwIa!QBi#&r=^C_< zuA^IUt0pa@C0eGj7T)tpfbbUVk@YkOHPyv{)XgYr&9W`Ux0Pa5R2Qpmv)Us}s6Y<% zQt@!*e@LQ2e$o6#k4h2CriqmR3o{PKdjC0dY1@0_i#o8hzf4)$zf`fbkqkvdi#jG) zasmxD1?q-DbYWz4L24^N%3Zpjf9qJAt;LQgok-SP82^` zQxo@tnkYi>pm#u$5iae3vMeNOrIb`?)R%Dpd7>Yk9)72KXeh~Ilv>Io|4>pDo?20j z{AwwPnx587Cxj$qQ!_-Jlk$woSUb5_k#59Z{R(^aTkO>X*sBMD$A_q0@H_0&?0xaan}By7L#Io*Dy8dB!g-4B!_m41hAS8Bw?5Cm
    gAECw3sDHt7^nqjK}h`BGzboakoa>@Xub;3v+yt`KyX-Qd*sn2Knm%c ztVY*ExA-9b3OPAG9gdU8!rje&&AF%v^>-&CWl1DHi+EQmG$K{ufV(786(4XlI7!mI z^BLQaJ``Ejqx3!U0EggKoxngtNkSGPdj15_^9EFRYS4RN;2ChMiXh;6KW-IsYkC}x z)1kOL<1o#jXl2PWB0N^-X=lW|NctslhvXMY@=0HSW~Pa$L`mEXmVqs%*#yGC7XiW? z$wU|cY8HMnQEFHG(JB!pzF{-xw}C{4$!+c9v0;v|$p*By0>k!F=*?|k0rlKGVXYbM zD{S4|)$sQUd&FJ6fd73G_Cz{KOOq%P!b#O+O0 zGpQuhk4i)RsZD4Abqt+F&d@+ILW3w08ce-HL#S_PC=Ce>qmiMrX>@2fjSG#S$sthe zL+8=uA#_NG#?f`533O{{GTj-vnC=cur=6i$^g!rRdMY%Ro(o-}*Re^S*k`R{xZD1($yvNtmnaQ9l|;uDFcg9zssf3G)6Ov z^6=Y+p@u28OehqR1xh7Pj8Bj!v>A$fvM9;PT0qw?RtlDeIrIFtDwal3{0P38VtkHg zEDfDo0QwFJR=GfulbtH-cUthT2UlStfhoi}RK~W-^fY}bW(GZD$XZmBY=8*6r7oCM zWs~&PlFk876A6%Iaup8$n#3~E%6*}$uuK+VnJlJeA<%h4*I=2HlPk0o%VZgaLd&T~ zXa$zZwKOnv9hS*T8WUPY6GGS1#i7+SE3}5@hHjv%LO0Q}5MsH|23i}sjcyO!N%x1g z(leoL^n7Rsy%O35xD}!ok-1dfOe~d$;!CA9sJ5ouVn;-FCTZ9OcoH32JN1BjA{7&v zA$YZRY(PDunHv0ZXbepO`0d0goeOH3kkIn*Yx{v#7Qs?kMkstkY|dON=D_p$)>26W z7_5^X=3>dwi^X)p|EOZI48XUN-}6(-V)-*;u^{_?nhZCyV-^k8%>SaK7aXBH5y)x- z1=y^LoJpwXW(i-bMv|{pBh5+pdx}V`x86=XKf~dV{uw-la!EAJF5WkFlgar8h%g(7U0p>7&pAIvDy6 zmfKYFTxgz<#L{{zfkOM^*0ckPVbfT|j-8kd6&HR2doV8i1Un~8M+iUBVx4z}@Dqq> zap5N!o(KDzhh=y!e!s99Z-f%Xft(pwTEbpG2>T`@d7%=o{bOXS&0sv8KyXAGxty6; zX(p!&P51S*#ri9ArNP*nqhW7JuC!cAUuki8Iinr2k$u14kI znsjYApH_zp=*Dn8+88#KmM*~2C-^y5C-GJBbKL^5&Gk4#3JI&3usAz$@Vd|>K#L@# zd^m?|aE7xGt%rFg7&6&-#HT9|Ibd^kMH)(AWG1!Y08%jKfgoI=uKmi0)+>?x59 z$QYn=$_OjyekVs*S+B8X9a{JQ1Iwo zR2g3go|G41EM$&t3)vBqXoFhNU02+ta*o2U;BNNGrmfu#P%o9d*Gv z>PmNnowPITqKdGa9t(TunXo}`goE^UI6|L?yU{n{?sP2Ni~bDvVHG};YljDLVR#U? z2oL2pVUsqx-8{3_I)s3^RTIlgV9p=#zBg#hIRea)ERccPl1MybumXLp4I2h4&?nlk zp*5G@)Db&cbK!l@)J*EJ^ek4Xcs`TSU~6im%mV95+I2BM1u?#~>tcQiydr6Z#QYR| zrc}&oL(X}+W>@EHYzpf}TM%6>Y_f{xx;CY&?kOuA<`4@Tqwe5cgNckwEOL<^O-o8a zJi4wfF#Q(10imUSk-%#xQt|;n7%wW3UFnYYbmN!SIE2YIq#h;6>Cw zJRW#90c#Mv#_%MX5S~mIho@j2UP6n)Gk|BaX>Is2+7iY&3ooEu;e}X#i?Q~~>G|-o z6c_0QYfZr_S>E*4#F|>4SW|1_Ybppw$FgHr$L&~unym@QIj~a~V@*k4)mXSoH-pH5 zDPuGgt48eDEUj`{S=@M1(t7C?VlEGm+_aBmE(*9uTGKl>H*-bU#$!duteSZ#D+PeF1 z@yGt(c@OD*n>qngRFDF)Nho~;9CHd^hh=;{mhoyV<2BSOd;^t**HY*3I&z0^q(Jy4 zIxW1O`h+*opzzH!BD|4Chi{?r;ag#rH_@E%Z8Sf8JC^btv^)%D%J62u=@z;zyp^_v z@1py{chm0hHo)n2dOCa$y%OF*Z-sZ#M`5&Wgde0I!@KF%@S}j!$GL9!DJ~B01)S~! zoW97u@GBe&@8`bZH+gvYZJrQ*kEez|E~PY=hFl0l;rQYDh05(IUh5UO~IaHiWcwp-yubs0K3hRGh@#lKQ~& z3*$hHP^2>FN#{}H0m?7BERdiy0f+I=qz7oJncV7`J5be)V{(cHeQu5ayaN-Y&B{ap zaUHw3v*pSyGyx6Aa3rBRqvO|AfMua6vus24<#^bJzij7)@9lo!M?UL?X zrsX^mJTA46rEh2>}aQ)A;=)JT-C++PNCIN17Mf;E_&`a{;ELwoh5t*?v3JM%E z0n)ih-%pIU!A^#&dNX);)o1~pnM{7P(?z8D3AolPMix_?ldN`GB_)vGV7+T)u9WPJ z_;i#@)R7dduKk}^O0tRQ{|>7`aYGXYXm7$+hHe*n_E*Vc=)9Dx=K#&sQH3hZty7p= zP?4LM!JVlLfKKmC`Wy>5wuX6 zG2awf$^0?-jx2~$C-zZtUZaesl_8B4>I-m_?b*1<+U;&+*`LOa#^UZbk*jHr#(H#G z<3xWB9%Z{+%m<0NafMnA)c`!PFW4uID5x{>oVBBQ4XYdt~zPu=MCNGWjN+Oe0Y2;$nAu?Tcjm%QrBA2S3k-2JUWWE|3xk`TD3B= zO5G4yqi&C^Q};*KtKE@}>aoZs^^;%?$`d8#`^O50bueHok^_FGx)k~JmSI=5DUp->ke6`E6`6xPAOlxSKBRGQ12P-8`IRq;u zPB~O_Et{`qS~g!@WZ8W1Q{ozOYM@0qRA(R^BodVOs_r__s)OW`kHb70Hh-_`qG^Z) z^Z{5YQc@|T&s3op)(3MD;@2jV1Ot=I`ilfD}&x zDV_pSJPo9H21v1&JdtO~A9;?Vk$u!7@*)k6yh3M3_S3nMH)%}dZMrD(uJ#^!n!mtW z;mB`W!JbTJlu;FB;w#_`!K+28%JgbInAT=$dqt@YtwX9RTc4{&I#m^hl$PQnTER3kPAKE!XfRX+EhzBX?aoOlpm@k9?}|>x}$}fA{e`Hh~99H*Bfzr(%%gFcGKaown$9nmaq9L?qy(H!m=&1GjakNweV9E(=xUeOxdFItm_ zMr-jo(b_yVn$HuXb$D8|F3*V;@senLUL9@7&qN#Zn^90aqb>NGXlwp1+LjMT+w))1 zPRbtbs`8?4RV(UKjiUk8AsSX)qcP=;o~DA)o+=hSU7Z>2t42iotMj4*)dkTZYC`mE zH8na?&5e#yS4Kyx#nG|al$uRTODv#K6D^=o7si1mf;l$A6tYow72}!e9E6W&f@mou zO=v#AkO@gM8)ma5Or)swOi>QhV^;%HW~#azg259CXLT6MLkLqADm&fLXT%N9;=0+8J~cOAY6l;{GRST%}2&*zvd*=p(ntK5Kcl}oH7dXSB4%B>c#cYjVXFOVoLMkdOY>HF7l{iR2}TldOSN} zO8pqKu^r~HA=VDr;y%cIzq#Kp+$5NMTTA&;kLmGHDVJ3r1iZVlig2!v2N(AGh<1 zc1^wowHY9eAghiQo>@=QU8GYW-UfyLX(INI(b5G;Jgy@nYu_{yAzwX5y@W(SJ?UDi zVkSUJNC!=VYpqYR+5{X8(qsXW0&n`2@qU2@5^U{3jD@i5H%C45UIDJM`T_oHnfG($ zey~j6iSr{dn!9Nl_)ER*Bm$69aVt+JNoozqB4n%=Yy2*%nS!ZR7FRNG91y<3JRL(Ixar^cwm)T26stP~XP;qC5EI=q`Re`T&0%eTYAg zKEgjoALC=uC;89lGfG9DQ?;Wns3y^uRg36r${Bq_`J!*BQ1o5ZE&72vEBdh-9sN{I zi+-VIN52N3A5i7dLn&Y`bWEKKRZ|jRKHl;g)hJ726A?jNV^j4r#wa)9|T4e(lH6QcUJ0CJ%Ss~ST-Kv)#hRk5btRHu2WCSd&#!2D`tuta99CanO# zBO44bUju-bIYlD9_8x5mY+{}_!2CP>74y6S=09jK{{+DO6&@=9ZR`#Z$994^mJOM+ ztpeugHoaU8z+dZeQ=VWO#$N->+wl4JrFg79cjDnnrYAWd6%bVt4MAjp4V#DtGz8E7 z6i5Y#^xAmLR2_=P8lhvh(B1>TqcN|cBlcdn)r22_l+TSQf24x>-3c&{L$w}kltgYb zsuAv)=DBL(s}6C@nZogh1?T1U@Ld>EqR7;mAq{Srcn(NMV1ry-n@lk0Vi@2oL^V@W zz`Sh&%#&34!9jT7m`{TSqPOJ&GY_@WXx0o=jWNFFEV-zYN*YSj94)fvJ5tyki5-jb zWG!%ff5eXc89VkD?ATwiV~=3R9;HsvW8{kdM*iq=?AqVywCD-yA7dI7v(uEAtOZe9 z)!*M*ois2(jXx8sQ>gJS@?#~6EU6#2;+W~GS#X91^cEN$|O3h+UY8`V?yO^6g#XRJS zdC4F1;{b=~^jJh6FjGFaPvU@eiXX7n)Dj2hF04~O{wBHk)X~3P^v`~b^$+cm`9rx6 zR-~jQQhHr-yJq~*lk+|LY9)C{aoHeJh$uL_ta?S(L>!Z8Rk{i(MmLeDNVd+Q%!Jht zI~50}2M$b6DvkBRit9}sVyBZc)`yJP85D~3rC97t>KW@tXT4zQS9na5c5#wh_v(KjiJ$zAm^7C#LKZ*Lp}Dzl^h zmRqw|m^CQ=N}{7ZNK+n|o3x@OzOF2MP`22!W<291l&q)TG6XijW4T@jl@SH~`;rLoI^B$w0L*j&0fHlMb~ zuA*JBMf6nc8hS3aj9!XeOZ#K1=&jfq`Yg7NzK)swPo~WGH;K*jvgLx%zW6#onj4OX zaDM$z5RzUMJJM#Gu_A=|ayp_(;VWc=dmw_}!d;&ulHM@RxgdFt*7VIhT1q34h85<^ zN*cmJL}}GgBJ0mGIj#oY<8(xuKVfCcYI5pQ*!4-7Z^=61pQw9VMp-i$%wZ6)$7W3B z&0Jx&Z}7dP6(!ZK_^Mc8sa;lB86GQwNES~;dqK*k=$p!swraFXCA&|or(0tntoxbs zANI=hhkamYNzp0KQO#P8)lB+c74unjgp#IPYQ29l-jc7U(`APdSjiMte7_>dm+2ez z%FOFxEbcqq^{rm6%$jXV)R96Al*L?JGcEg6OQM+k$`7UoC6zb~X&ThJgQN(3$BUD@ z;(fvpfEc>HV(9jYq1!8lZm$@+y<&G#$Jl1_#?b8*L$_D#E+E|9G$^)>&WUZO3uE`t z}k%9J;OC(&vAb21ul%e%q?QCap%|@?2f&~ z{@A-5iG9HRVjuIM*rz-;_65&~ea%jk;#1NW!+W zW!pQ6j)|M}U(ULjaUX%vR-4^DN*ll9lyR$h%C7aG*2q2>43zJho?z#!LWCTPA zm@J(l7oxFsI&OhyhGy3pc<1Ug3k|R{@fdh!P)LvtvYN=v{6crwY5;?Gf#x8tKN@h+ zr6#U_KD`6Bn#jS_LAToDy6v_u$Py31^%wHPA#{;!$LAK(ujn$n2e*nquh>XCa0`+% z=x^(WTg42C8{L#!U+?XqR1;;0>Q<+S-qdCjtJPr=bXlf`Xu+^dcxl6wy#blqO0O3!-#m!HRHD zRO|&Tpx6sou%M#%S?``bGsy(cx!?WncYoY-aC)Y^Wv%r->simLOtn%H`Tv1xS6N;` zqHPqZ`~*zD!C5i=260TkY9WQhxUY$POA%B^&T!|oO#FDXRa{b`tzurAgs1Zg6OAg5 zp&>A;f5NE#O%3ftP3=sDc8xmNL7=yT#%fQczIGJt*wZOshsvovlP$ z><#F+y&-*VZ$#hQ&!J!KjhXFDxSG8wXWP+r%-)(zW)JZh`v6U|57g4_gSCA7P_3bTnAX;QnbygExmIGo zLOahsR_kjYry2H%TEsp@yWT!syUjjRTVbE2-D97tJz&2BRp%BU{X?osuK4O`1X909>z44{Htu)@RXft(OApv*|f#oQcLk4)hk9!N?1$^Nz}P zi>}yltrj49(G~j|#d}u6#ox6MLb-fq{vJvS3xMiW<1a7*qOy?9$7pBjhd^~2^Bee_ zOMvRM;TMq~7gVPM?*)`Es7@c=sSQ9T{~XqNizXee8?(WivzG%>Ef77;UC;rv@F#5r>A}dJ$>`F zB3mZD3{H(z$0LA8tb7$*lnEI%QyvT9>L1i!RXhSfLW&&!Oc&NW*@dMz;KD#%=2sIA zNqwqxVK`#rkR%e1IJgK67ZSNCmW7Tdaw}oss+O$?iQIG*X{O7$2^=Ojwh0HZ_zM^woPwpLucSCEm z5yf&RQpuYLsW&er!A@4rvR0X3jVbZqI41|YnlQb}lPI-<MRw`W<4RjMe zIIkelKqG2G>5LswuN_gZ9Z|3S9%^OZM8$S!9N3|8U`NzzN7QTIOhNmDG|0Y%hS?vY z%k2--Rrakk*}jct+PBm7_8oMyeJ9;&-$l#qyJ@Zc5xUo2PFw7c(suh}^r-!Dde;5~ z9klPE*X&Qy+jc~~c0|4QXXqRIv-G3=IXZ3MOMly+=QR61&a&_4eEYxn9Qy%oX@7x> z>@RXh`^zxWud?0#28Zl#!#KYO!~8xB^G7_>{xQ$7f66!7zu;T!U-J_CcYM43d%nm1 z6F*@8g&($`=AHIG`BD4d{G>zU7agg52q3IbgdjgCOWZP=yvsU=LJHBuBRXOeM|-aG zYGoinzvQLr^eK_?E$Z}{1~&Y3Wfs$E7*9}UF@vrGoGfNBlVN@V;Q%%OA=$$>HZ zP#L~Dbei5l=5nP#;RJJs_se6Ev)K#-Sr@?YW7>ms0!H&3RBDU18Ki0GK`nw?1NhPiN{!reDZTF#V1y zrspku6aZ0rI$?U8RZLGJdXbYgK z%=6L{!qYr-EMJfi^k$wl=*^4;y{cQj#4Ud zoJXaOp48XTi*!eCOkW?0IQr5chaJHHm70umyW%eFKVMy}+! z#`loM2}I{6%(Xi<*V?$jS=CTY{-`#=UtFHy?FCW0DziRy@e{~#DTa6?hWB#pjw`6E zV~iS_Cgul3ho&jzYV)<5hzSuP21GJC@>6OcJ#Yp>h}t+49QP%ES&rb#%5J$f;mi7C zUp6jYbhcth1&*WHDl7z!#_5PzQqHMlCd>?a!upHB;$^DpE5539{2+3S!%v=wRW%7e zdomR|rciswRQ&X5SW(llqOQS;nn6Ctbu`2=hc0oyBaB&y>kco@;!%7icyf0AF)$kUwdd^iz2h#{NRqF#LI2LG{(PFe; zw+WF4l1JKhAKp~zuhu7wbg=4?mcR+yx{`&)d0ab@2$#pm6o4QP{!>vZfb&E$g@tt# zWK;?us|GzX0CXaN6on~}DN@wEVqBsIRiWxu;8$fKtL0+~YNd&OLKfmhu2GsTab4Qc zlAK}@3QFG$N3*x2PV%}jTbER>U;U5Z0tM4oNw`o<_q?3MFs|wftv3K*ljAllN9ZRz zmSZ`tz%E<~Bex1ZYBhY+oz&a0hFp%jDD1c!#%(QK>R3ltIM&lR#|E10*hn)R_s~4Y zCKxw>at?^AI#8YEcz_;oY^H6F2dUhF>MX}Yw9oM{9dvA^*BsmEuwy$NbL^nc9Xsh8 z$1eKWv762~9^n)R#?J95*Ks_?1&%%3#_=?_bv(zN9Q(MR;{b;p2l-ORD?G~a8jp3n z$=5pG;kk~(Jm2vFFLNB_b&ikK);MUcLu+gBjn>xSInk}ro25U>x3DrUDCP;+n1XQ3 zjTFEaSjCs(oGApcH1t#Hj?ha|1@jOD-G|3A=oSPNsK?-Vg9>7M-1^{`73a)av z00Jd)!ZjcCoHY)wi;0g*gu;}L5P138CC|%qh zzdH?fa(cq?Dp=sc#g6tqSuG+{_dfy)SvygKt#XTE=ap(#msu zhDG@$7Ufr1lwZR}eghl%Eo|g>u#qQVBTtgy_#TV$CwSUlXr$vbO?3Q8(;Q}>Qi+lA zQ>+DmOrb?`9vHKYo|tX4$82M-sBIMI(kPlKOsi-I#Wk8X@cb%9@p7yv@iq$*M)86w zMll)&384%gMLPrgK!{GkQkDYz_a!=ojy8M_nlGkTPC{1+Hda0&s-#GKR8>~iiAi^& zPo)!mDxK-n(wPAbfK2M(tVUg()v453gZesalJ2ZUerGm?oVhgAnNL?a>(fMMBf8$% zgl=*+OYlAmVk0~@Ho~K#u}fDPfN_-&w3G~tt3XG6k$GKB-(#ui&~%gX2uRY?dAy!C zL_^RPDx+q%ypI4Bz&3u<()l47d8}pN=s?gfOdfpOBD`-N98h8b@SrLNAFf_GAO$~2 zgNdktuL!6EKlpF&{fDZxT8Jaomef}2yC~plY&n-IOMzp~1+~EMNkQ=Yr8%ODfS!9O z2o{hbSDMVG-d<^sRbC-^sR)QGdl?laE0qMZt+V9LR5JCPTB+gXaWcOETr_N3dKy=bMgH{I>*L-#oQ(nHRE^oX-RJ?XU5 zUZ;Z&IGyymQ>S;FF8a{vrq7%n`qt^CADsrXGsM}>0bJKPkXtzibFp(McXSTpbDfuQ zsq=E~)yT4&vx6ph zw3{7$5$$GoH+>A(lm-Og9(o_HX)O?dN9aYxXO{NpdljEKn?8hl+l1XGxv|x7Lp$JJ zz6C@2b9_dw3aGtuo~JJtg_SVCg{2SnrLx z!(t>;&6=O?;7~@Bxj^Bqis6;&fFKpaOVv>_orcp5Y*q}90gd8r07j7ggT#ZN3Dxk( z814zIK`PlntN@5qgBAd75MqT%o#>*lhFLM{ghGyRkqB3#9g?gpsO$lUHqWCMSFxt< z#GZn_ZlXSI#wAs+sk4SILio)667chBP4Rg$pDJv7kWH8JeJcgF0Yj6l=)U zWGN5^OT2oVC5|HD6qE>adY0MePO64$pwuW0s+(xQjRqU#wuY4q_*ssW>5@&$NHEOG zd{-2?0rtDZ#C|1}7+-`ds3no}2`s{=un3>VB7BAlozGHx=X3D>d*S_`hc(_u{hj;C z=lmB%oCoM4=L=YbFVbk|K^pITiLP2pw{MNbft3(J|+7Sm4iLeZQh#o!@eb^CV|Ff8<)upSh0nSG7P_ne!K0 zpcS=gO^(;+v3TtmmZf=?Jra%Ad_XUSPaxc$y|A((_brOFqF|Fjqfz|0P9Y)V>0V`J zs{t>$3(ImD7U&!-{EhevbREMhg+Pq1V{{2v1d@o7NU&5b)g4qjW)+k2Cno7fp`5Z} z5g?lB5?I0ERjk-`h=owj$2AkI;H6cs*#Ae7ir}Jv;A%l&`2`!OM9tLQ+Le~+e@mPJ z>#BOf$Cv6_YK^7(2bStzSgLx)KLfFL{FjKI>d~0WFGZ&GV}}@sH4}V zUX4cR)oF}ggC^=VX}VsEX6v=-COwN5>DhFfoJ*d~E?Ro({qc@~i z^~Us;-i$ugThdp08#D@S8FXb9~Pqkz>niCjXvOmOZ>bFsw z+MV9Ef&hBe3Ib@K6$AjTj|KtAQAS(Z!pTR20JS_-5P(*BRuBNOCAew{0qr~^lt5xCU@kJLvG=!o)%GK@EOm|Rg-AV0q zox12Q>Y=--kM1F-?j@h@qp%*JVS1Rx>F3id{X#6RAy`xxc6~VQ(MQlhUDd#msT%iE zbdfZp%}~@$0gTxi8Jp#3z@N9g&VYA{})^I_ijY)Dh_ushd8D&eJEu3QZxuK9vUO(`cwZ9Tw;sSfClOKr`tY z{aTu%Uq|!xxwJ&Tp6<}+(Q5r>dO%-D59v#2hkhG9t=~b1^p*6cekUE%@21c6_4KuV z51rKSRhGt#-oB4nnzv$>=G9pAwm%xZb)sizg{=&8*bPPRl7tk!mrYUUH~>OiQ}7$p z5tA)Oq$ZjKW6+dSM7czsYYtrEdMvSP@c)f)nBp8K0{;@?>k_D%N^zwby`8H>-R4ov zs8s>!ZIO!LEIu_#J7Xfav5I?`l`E5%T>35elI@9X7bPsYG5>bSAt_{al>Q$TgQ>Cy z+St-6dZ4Kj3R(xDpOAIRSKWWdqX-=R&L*QX53Z(3+cWU(vQWH@BJt|-Sd6SzPlR8J zx?2bZD#Po`{RRc~)tlEB21G+VhSWr(g8EU`-Z`iX#LFUhz+&yySM7lDD72x`T&UdU zFKudlr)CAsBz$cySCb2xsqht-+8I2cbpAlJd8>j}@)cSav{GN8m3)OZ^4QqY zLi4I~=jQ?SI zvv^;JDjO52l5-(Rl>NJ+#i%@t930P)!=Y%y#9J6k7osHz`NUJqE%Qd~A zMICv-^_XU;ent7ME3%kX*P;TD=#~@|$tSc;aH4tb67Iy@96yL1Px@w9wTEEU9)?xh z3ahpaR&6`1+72qwcT!J%7hK(LShYv!0v%@^{ZUx8$6(bSrwRHKG(+D*bM+??S3O0G z^`~i>{tT?zv$RovjyCIiVbz|ea(y2?rSGSI>Hnfv^aHSNFVGSFMLMn@gmrrf*6n4) zRH3E}TSsq6{V3m}ALCo~k9mdu3E!EG~C{agM_|Bk=bPw-FrN&Zv+UbE>xX*v2YT3!9L)m90&2^|ghrM%o%z6K%b#xpuFsmG+>kPPdo1Ft$pe0r+w#g*c!TAwx%wxt&_{JmAFE-^IQXLeO&`> zhHJ2Gi0dM;{(Q(Zjh6Md^|7qKt<+iJHMeHd@BfqV- zf?U(lr1@_|oTehpZ(st5^&g}C0FNNne}?u+^k_6!dml$5)dWvF1aL{L|7vY7f)|nO z->5wfBDQLRr|kp)bw48Fr?jpCbpi5@K^@!~YD(0hnU5XE*+g7vjpwt&}tDTC;S1B&vX=)$y zo>a9G-=1`OD$1G>uAYEx75Fu$R0C++MR-)6mfU@;^hEyhDQWVfLco|027Hcx$O9oE zWHSB!pvzUksF@oYm+YXm*#PYXV8Jv)Pd9rf<=4p=U)e!N{lkB$J!dcMID(K7S2o};xB{eyE0m7Zs;W$~0&z!WNb)jL z63!Bpfba@%ULN3-gaVKy)SSpQjB;I$-*> za$QT?U9;&~*Y)&@>qdIRwSbPf%IGuKV*1*(luo*Cr$1dQm|d$>q-eq@nq@1B8$Q-ViXyeVHwA+uVtSdU;GnR>4ilUF55s!V3bh=f%+DYhy>L$PI5Gf60^ zJFuu`<2ahqT8^W*Oly;yF(vU>SnnT?oH6$a_6&5uU3X#H*HL2^+NZfTP#f1qYVW#- zy1MSely9a1u7~I{*H$$pW@++>=#(@jN0i9Y2J8#-1lS(z3-binl{!REfHGVSR3@z0 zEKSzN;XD^V${~=RmOLVWu1tNZsR<)8JvJiAXE&37%WH%e*FX+%;K1Pk2X&;h%5hjC z=9nU9rqsko((p)pj8q2KwG(6X2)0H!HFZ5otz3^$vFmZ_=z4-mTzjae>q+YGdWOQT zy>zi_KgR0?8t;0Ernp{F<7QTUPK_<)!Is;j^P_IBBRSOp2Pi)E(bBXqmP1c0X4CEU z$9Z}++<;m2*;I{X_gK{@Ximeh;!eqkn*CfbqBD|5)HV+uR5&e(QdKkmVMLQSElAk~ z0G%C`(M>w0NcYn;v1@6{uHh0vH<~SVHIK&QOEayYyK3SJxQ$~0B&(}hR?rQ#Dl_P= zEkSoyL2YSXSAaW5fjC#g4aC~jq;gboR7BJo$MzhofPJM^5LA{VAFY+$Oo(2g%3{ex zWn5Pwdd;XK52)xBV(d$*ta^z-)l2fS5(3s_4vWY?B`mUkQ73G~*Rjan!XkSci|idN zvUjP-^&WL`9j0!sBUohbW08G8Zr6ucXdl4_AH`xjMk8Dw)0M7IXoBlFO?Q1tb6ua& z0@vrX*!2b7;rf!+xW1x|uCHl}>l@nX`j#GdeMir@PS8HrN!a1<=`Gg}bj0-|Z1GR@ zx$77D*>##uyZ)rVTqqcGYn+@81BcA7O z!VBDHGTr2>#H5lqCY8jNR8miLH(!s`9r&E6J(vQH3HY2Ky@`BMDvDFPMX^Lk2f;=Q z{5=6=;9iJjGEh#J&AsthCe7sxL~+Yt!WMw;KOM15b^LbGnl@>X8{YIz}z8K@HR0k9V8Leo1 zqw<8mTPD8hC`FaYYA?x-M6B`$xs>TgxdC?O?BtzE&*3+w!c6)SY~7sL&J--N8uVE4 z&qO1&W4*A%k9r#>n5{xQo9F}L77Tq7iQLFsy9=p>yNC+i#nj&2o=V-F$m{N+ER5Y_SH;ehRz$f{Onx^xQY*R!A{IKhjf0(uslPtM`jD#OH zFZRREV#NPPSqxB+1&aa4{{JiKfP@KB)eG@iQ5h_EH_S>YHFTdxP2D}ImAe-eyL(ed zcOUBR?n}Mh{mAa_Pae0O47Y;@x}9{fTc;6j7mabdX`Su7neFP09tE|w0M7~=$tjd21lS0bTiI-rLN!dCwW=>WuGvKdXr4bu8p zkvAqUS1k1u{J$a@cz$fTDl%}Y8HFJNL)5jP>K&)Z!0wrt+ga4uJsZ33dg|)FL5*!i zGH_$68;zk_P&W3Qpy(1W#mT_fUih-NB!5|8?D$ z!N}f9z1&O5;l2&_Y#9aJx6}FVJ7|b|IbG^rft|9FrnpzpEca@<(S0W^bR+P0ucZy{ z4Ro)26Fum@pPq0(NYA(*rkCB@>9BjJnkkdfek8UFVr`q@KFq>|_8>=E9g#$tVLfJ~ z7Y-9vCka!TK{_H$P#}bKM3O_q3C!j~3M#-sIwHB%>NXke?bVvT*wtU~ zisQwqoTIkrt;y2>zncP-gtXrhreSH-(-7UF(HOZRdk@|zwOFV@gsa0C=r5 z-3qA{NgN?ILte{xl97Nyv35S;;OGoYx zvG;8_ecAtO| zKS?v)-_s55AE?azBSM{@XqEdE4EfJ6;=j-?_pdPIztQvV({#}NJH6)qgWh)kNk`mg z=$QL2ggbxJDG$*Z4|9q~<7yro*Y>1vt|yi2d(ybMC!LEt8QjT}$=yBGxSyvwdp$LH zfTt#3ht5C z2K=n2As_HG;+H)Ts`WJH_dU({Yfnr5-P4Bu_MoWG(_YK;bkb^hx@vVi-L&SOQmvz> zmv*kFuU6`@YkfSr7W82S3~a& zZK=Z5GNFEWBSJqx<8RQWA_FT#r81N`^~U?vpxd<3Q8a#)HXLoTYvQD~0kz_raH}>7 zGy`yx(i3Kv=7gJ+;?F0v-Z6 zE~oG*R4?2CG`=~%4Gdn;_#$K@cH^-E?!*Ux!J`xw^${q?#pgEQe*CDm8Mhk3%x^_) zLrql74?q?B1Gse#U&ME75roB!`BGk~4S*+U0=>i~!0M%9ej+c>F2Fkr8b32-A>O$; z>f|SD4zti;)+34ZbRm|xVY z4bIhSNa4j#k7~7~?rymR+bjMd*!J8^xt@j8!h^8Tb1U`m+?Eh*qZ$QkMLc<3gxL86 z9S%HV0+#V$8v=aQ%wT&}@;6R-1}ncIJb9ypZ@fD8jpM;~Vo9jDUm@q03hzwILh>8B zN391xN`J*|jQ?{^E*r(PABm_KNO&Jo5bT z;giLugCLrNJGKmn0e~Rjg&07Ncy>_f@vimp7%;#F#qwOlDtwIvj3_EhbRTjaP%g4E zyq2VcRa;(}g^RrG1UHwQ=}veu4_NR;FiBz%PmUNZq0OwgLiSW^KQY*0rY z5MVGC>Y@U@ACYG{7Ue2x=vhroJ$F(|4+JkfcToq=-PF~ymU?^Ek;}850-g;tz_XEt zcz^Dd9}9D&RGkQaE4@gmQ0 zzRd%kz2__5>iL%UcuvC2{mA=0Kf}fS#>YH=@OPfSw1!@iP001ljT3V-Y`Gc!6K=*- z-}(vZ8&ThK@jGxSlE?}0s{jN=>uv}?50@eZ;Fq#=ZMH z_WSTn>)}b<<|aZW=+&i zP{^86tV%_3ScKpv>f`{|r*1+_-at-{wzg)$7XW}V0RWc7_kE?3u83qNyy$u8O{a$5 z3~K7lq?X=lROGEr9lSNDtG6bVdTUWXZ*6jVvnb%rrt`fyG{l=nmw4;ZW!?rf+ItRN zqjLJcN>DmcRn(sYqT&XdI$he z$rGA|#WpbXF{bOQ7}HtNFM-_M%yew=?zeb|HtiD|x)2{B4>2}86k4rj;-sx5Gdb)%dMrB#eh~u6rCZ!H$702-k-EKC;CPn2}M@Eso zxj0*=wDwB5za$WGnN|U4uRzJoOHK40X$g1Y!>rVGy?zXHkQ#eK80IjBIf8XPfX?*} z#F`$A;T=jty~F5A@1<%8&7#jS(IIS1z8FlXW4O`~Q59m9N(^J84nQtez{I2?`Fbwm z^|g3j;+n<^N@_!CVptGwgF`DOqDF#ExG#CAQqnL~qTRVWVg2488>-|`2biK2ar{RG zO*nm5WJDBo2P48deS;dID-r|(2_ZosGOCGK1vetrrzDrIcSdTkRyhrni^1KqA@GSC zLreZWc!7@<6yqTDjc|1cTt-~IQIcPbYpomxF1OT@?M&+99aqGwP{op8t>Rfas!5x$ zGO8?gS8d%YS0h%ad#?%vSQ2dv&%`h>b;Z(oi@cLnzLl`yDdU{J@xprTW^ z_i7l^an#p4o?PAuFs2h>OefJr-pMr5JB7x2r_vPfG`iM1o#uJ3p%G^}ecoC0uy;1?^vn@=_j-ECJCEM*-azkpZ=?^s^XU`sP4u020iE*ROn-Q9 zVfL1Bx_2>G_b%ny-rKpccLlfbuI57TU0mW_$GUeT`@Hw^AnyZwv3Cn!?cK_gygPWF zcQ@baeU#UEpWsd2r+BmXS>Eb>o_BfotBqo6d+xSu4X=tt7q`cvi!xA_q;Gu}z8)4v zqKi_Vi7g|x#>H2wEPEOvj#0>DNCU}>P)08Y+YB0sP9{_F7nz`jc#zY$1JT8`hzmC0 zh*lkC^qmoLtVMKj3*v%ah*6|7O9PdbtVQb)4Mff#N!9Em>#dInu#T$1ccUp!3z{?zzi2)JY#$+L=W(8o2#%6gE4vyU>y>(4i8pg z9jvI8f9b!~tvjgF%qQrC03v2)G2cyA-1yhmsnWEvSjQGn{;C71UICA1-a% z<)O|cwQ&XHx{4ktl@3oy$R^-c$en@13mpyB2un$xeXb8@wOW z1Kv+)hxa%==KYkO^L|DLy`R(T-Y@7~@0awE_bd9$`!#**{f2(>eoMc5zk>}q!5Q9@ zobCOd>w16S2HsO#@a6C=zC2#y ztH*164S0+19Nyz=%Fp^*@P1!wKIkjrSAFgHEni1I?CUIc12AS@fbpPDHkEC;%2S+FAl zj=j#A5SA3X@)7+>TLIqX!Frrf=a;(BV*3KtZ_3AB6U{DhD;GcimIR?Qp^Yq=Mn3`A}|!XN+~Q!>C(s8n=!KkYhxOmhms8re+(lH zni?hQFh2Zm431?TlH-wm1t~Ed0>Ccs0bzl^R|4aO$Z`qlvP-%%r`k#cf&qIo6IW>u zSFxq5EUnHg!GC`T9^l zUtiLF{V3$?PZ#*0%H?y=2%nR#^yxIw=b~$TZkpxu(IQ`fmiof9-iHR8z6)u$ZwNi- zyO<97hAD4p)^Nr2{s4tqnSD#|uUM+N)T-`^wYmc9Ck5f<9SAGMTMh+r(iB@8fjE2} zd|x_BZ7zWq6mNNrXw2iWOtn_psIr>LW(}9QRzQ!$|0D=S88rUI&ZgUvCqAt?KDiYj zxBC;~(CzUc@!=upl(%_Zs7=vZUkwz$M{e=w}AQPH<3nzDIcqf zxM1(A%Y*NhR^f6irv*oI5HK6uPT=44kwgSh{o-3iK3_d8P4^`8Y+QgSpLYt7` zEJtcx1UOUYmZ$ttTGv|L`33pn`|1_sC!&6_wu|{Fjp0Goi_u0|Uaa~jBY%fGol#|j ztCG@lq^B~3J{yQzYg~|D(72p$w*IaOdMx7anie#%el70n=$hO_NHfiGWov=dT7E%` z^0apNLb%rw&J%r-+rcx+RTWz&nTJ=UH;g6A(7jw-lvIOP_I_s<1yuqbd3gzbQ3cES z^(s0?)mt&YVZ{gYl+TV;yW}^m__R`sR)sH;BwM1&Sz;R+5*mZBp+{gtkHUr?jSYPT zHuRO)&||2RZ!C55U4;#OHFzhQAe3NO0Zwk%zO{E3CY1quu zX{GNPZ0H$uzi%dO^<7Jk`mUp=eY0qvZ#KQ?n}f|gm)`PSPw)HY(Wkx}=!EY^`pq|= z{`TF(X}$%V<-3^+e7A5DUm3UZE#wZqMO@-r%)NX|Soht^hHohk@ZH8ke9QP!-|cXl zcknpha-Qm2!LxlUdA@HIT<2LeA>60|MESm*?doE8NR2qn!abXM!x5@X1;%Et$i8C zoQ^OJxAJK~jO!8lKg!>$Fh84~#^0Gu89(Lc;c&%8|BZ@|U2w_L$7=)fQUWYy@k(T) zKoLUQ#Up{u+8f^d`E8r5IsGSdFsy^71mug$^SOX|I53vo#>l*S9 zG-`Yp@7D;qD&6)24mjtaa-;{EGK%8!Y%a9@h`(rp3{|t#F8GV4yqt4TFLD?1S9fuB zZ3x1J=6nyQXcyVKAb+(3J;2d z7J48~P|OPT;A6;NrQ1sIPuztWGa%Old^2`VLDC6_l%2`0gT+M&{Ux#e$gV0}N1}37 zOydIHLp;b_P@Tan5UR5&n@B>u0M$5MI)~kkoX*PJ)aLkCo>GdJ-v~E?!^i$;hC}h4 z6x>;sT&Gcq7jqd7a^yP=d+{gi#TnR(zo@0}Zz}Q=b@elK_iNP4ZzH=ug*^UL3i{LN z0)ILU@k0*6k3Mt$YBb4TlcxEzXr{jo&GFZz8~p`zo4+Bg@HeJ4{-(t3mVc&Fe4+f;gEiuF%Ld z;V8OUMSg-~f$1WC<9yx z7lU!gOp_Z!akQ*n&Q}0)0*U6<(rnQ~c>#^L0oqaOy- z-(VH4prWpY_# z$EX-+gMIZ_75i#0_ElZ%s|OSI)#Lx!zAA@SEFf?Q7pJLcx_MUDau&sldLdgdD+)zytgA-l zh(c9}+ybCY20)v%cE#pp9c^lz)Ugn|?*Oy?+S#H|$w(#k6hXy`RRAJw!ExIvUrvk3 zD_2OTRMt0DcyHx&wW_z1P_<0utSjr+tDPBd)D+*Nhfw)L{%f#Duf-m{4tsPK_ULTv z(K*wlc*`k&JmI3V37lt z?9he4Nd%{rZcKiK)50yn7OcZ#XupaOsV4%Y>c|YYQaR!pv=HqvBu88mDZd;9a8lT} zj;muAuSD4P5F}8)hJzEuxf3c|oK4RIC+UN~$e}mUqv<39BoqOI2QLDtxlpZp5#5-& z09g@77*J>5pQvsEP9kI+C`tVLm`8l%ALO>^>Sma;CwXV{XpDxWHxoNoKlz{SY}snX zs)!4lV>%+6tdUvhi-d<~BJ4rh_H6s50*09!+QgTx66y4#rpb?*CO>ML{HSU2zl){& z9+vK5xEItk`BBs4|9}kthcv){j4tyZr&0dTX{`S%y2k%4&G(U_3_xmRjW!g^My9HnDyQ>UNkzr)m2~=L z(YVu0od{u_|L#z z|3$t1=-Fuyg$<@bhDMhfHoC${p>akkO*YbKh5>_u z8Ku0*=*63jzWlgh=cf&wpEo@Gn&IcSjUXQ}B7D@ifIl?`@ejsD{EKl3|6yFJkugFx zFPj`7j@kUrVmAL+bo2JcQP>i(egYO;aK}N4+hdAYo7^4|u{OCqB4RxU@s-&8TfhXe zM65?Cp$3Rp^Ds-q8nXFfqak7qs%KQh8mgscpOIr|b1j`jAYzRpt|el9CMIJ2vlfBL z$id8>#Bm!U*2wRDj^p++9MzlAQ4l@1;i%r8-o$ZxJ&x+<(#t6eQ@Y})-i!9BgLgf4 z&{MV_ASqG6J}OW76<(}9UkGaJHhe3S19X`Z#WpMskeQ!rt!h7FydPn7rdJfjhA)ZI zg;LIiW7#7v#*7XtNoAXzI`<_TvD7^LH?V!B)nMWatx1J&y&chQSy0EO@dQ@F(y!{F_HQjlgMLCrjRj(1{+i9GGiKDX-uc_22{U{88pY3NjDkS(qiK} zy2F@7cN(+l9%BwYXw0SU#`W}wF^`@xZlD*88|hVJKD}k!L`RGT^qFxpoiJ{ppNum4 z(^$whV-Z&~7IU_-gbR#YVMdp7p>Z2`FqUyw<904J?qIvIoV~^h4jC(9MpyArV>MrH z+{srNYj~1z7tb(2K{VF#O~yK2Y^>)M#suS8N^)TMjJjT1)VB?5( ziSeN}&N!w`HlRyme6GzhzS8Cy-zYOY(A?^l8P;OeQiyhSlj?( ziM{}Q5}1)llitI}6n0t*N8!Wj04-F^JuuwD_0O?2| zreHJ81;r9cP4vE-0g9y{rrA6RC~6waa5JEt((x{z3wa2dL1BUw! zF~i(8MHu=G_;Nl6=308>UB&q@*U}?z23G?wKMjcKT()TgaWrVmi|H5JPdFMh;T80q z?G$b`RdM7bg@kUWW^wH6?Cj0NLjafTZ4NQ}3@gg_1`;gML#MYF+kBjY4&#gDKRKT!+g z6crjjQ)lBB>S6p!eT?78VVs7Y_??2r9|*brq~XRH8fE-NR~diPqyW*h0MoSrjcyFs zs4S2|O9QENM<9(>2QumI0K{|ywP|M{haL^&(UXCC^kSd^9SWQSIgBQ3FC|8W!=bNQz)+^$%g7Syy;tw<7 z`{N!nNh<`ekj}pFn9vGQ9uqEjE-D$*;nLwTYfI>`5&%+qPG9vcaUb|qc0oEm`Wfjs zkW!GIR-W-nT!gbu46~QhMU|d250W1XDxWK2oe9gN(QUjvVWJuy_(Nxbld@xQlK5G$ zZWw67SKx?SlATY3*hzsFlpAPG4FhecWuTCX0!7pzP)uC{ZK+qF9eS3aFH)cbMFJgZ zP@oeH3v{L{0$ngAU1@6IT)Hk$Le~enVNrLd+X6jkWuTPS2F{~<13hU=pcfW(Z`u>+ zLwf^#>7_tFdLz)Ejs$c%9&piD0XLlp1n9>=n0^VIPk#h1WC{%7tiZ*b7Z}bh10%R7 zFp4__uH>$PtGGvCJogSv;;REwc~W4y+8ECQBf)aAHU^?zb7K^-2QK9cLOWbg*(bxu z+t5p}9nc)v7zVe(SwOh|!@#m$ha{ZD{iY*Hr}1bqvjOHg1H9s2RXR>K##hRbNT2&p zlp_%lr?(Y5Mns$rfgQ6F-)JW=)(2p+YtbHT%?EL-Hkf!jXp6QT4(AQL?^Ym7*_esd zv>h%gM{O^s+FtKco#^(GOqNKK$))7Dl)X+g+R|45${+~*f!2O1(qyK!eyxfY0Vb8suwCAwPWUEa^jtN~>V(~1tU~;a?+FhVKn7u)vMZ3UM=jmJ(^;Y(t^*5Em zaqHpAG&|X-ittc^ohH<~QeoT8#Wu?ncHGSf^-%$kWAbK?ce+igDC12>T;umIcbW*Qv0g@y;p zXmns9O$aQa>4C*GE3kxa3fxMI154pQZiDYwMwg8fmQT! zU^TrNxD(rL4IK^KMV|-mrjvoSbSkipeh;k2RzuD;a35y`HgnCuL!1-X#`%Gr+%WJ6 zw+%eTodSEfU*Kuh1JAK9u#ZE51AIZ?AP)(=!lMJP@l}C0d1BygwGF>CS6FNt4vcQY zrW}sOeZ3ep@7NB={2{X(&HN#DGBbY>ZlWT)G#ZYB@H!k@(`mHYkV5;Jz?w>pWYTmb zP9!x_jc!7;CPgvTq0Rdlwx+~=cVk0J>{b&S^bn5jqPw_*o>Mf~+Sray0A5{*ZMYxQ z*Dd%i*#KJC;n*Fs$$#5 zvX$Ig63X9{q!dS$ZAD+99*|eb8slaSB$jREX^T*C@LWk{r3DF?@~|%!sC|(PyQ=m# z@%5|Wl?FbczJcT9417wyz-JT+d`<%cU(w}( zZ|TawNg5aUktPRzrn!ONXnx=ixQ{bx9hn*Ae~ZCleOMT*6cdy}+- zeF$r(z`&-{KvXT5tqn{xR!ThlRtDLuVx?0sqYlLzD^OAIJIND*wI#yiM4<#b`tCnX zNac=wuvmdAAjkNqsydD!Q*IEoputpX8cd^B!E`DLW>A-4CUpx|qn^Q<;smoEYupr8s*Ns?e^F=gDUfwjKlX6)k4+tm4bTLr&FF+5 zd*mN~Y$bh<|0)aHatQxBx$>O8)vAFcQBWPiPW#bJqyQb&P_iV6!Le{3$dtFKs`yle zggJ`Pje62pV=H9)fEX8b2d1oEfjgZ`1XPX(jmbz&XB4FZuqgpcTgY;yxC3w1pdeRB zZ_6Mr0rYugX(JS};(caG#p^?$#i3%gS4rc79BFqlGD|{RC|c(TLo^3s)a5j?(sKD9 zPVYy{U&TGvsR+5`=T*F4B~GK-VJpVB0a;Pu*h!5g){!3CN#Sf+V{i?v{I zsdj$wc5QHQg*GavR82utP}|nB2b#~a2bvzW2gO=XD~qL-SXnHs7#371Amel&rIl+9 zEaHMzU7Z<0D+k6BB`)w8i@3lily^q=A_Uw~;sPJBhzop3h09Pt=KWFP!d@UOCjqHv zf%?5RS`7OJFNarN22Xq#bat~C_7oDb;?HyG4`3$Z&+|9~u)DC=>T+Gg7Q!r(VpuQO zYl6TOLB&ttbkSTW0lu^n2uyD-)Wq92fM0H68;n~G(IUJcWg$ZHMo92h*B-X*0s=FF zQ*1xrZyPHgKZf$*m%u?Z&l!>Ubi6bMKB9`7-!J*5PeS|_QKnyx;v3?z0cjcr4? z)LPhvP;L#b!!}%xZMcC7gHUb_Lb)}#iAsa_Qs3YMa6?;YKyWJ!5ALALgS)W>%_dr= zBI#Ib8G_ms<3L#|WJi-4S+EJOzk_VdE0wJ@MRmc@omMfBa z#U&M_7b^OqGVw+6Vk9Kn+*tBx`4vRVuOM1}1)qWEc^01MIe4DE@I24M^PuHda6cKr zf6>6;0lGN&0zA))SoUc76-3LgAX;CWuB^}#o2bMQ^t9(;=) z557%L2j8Is!FTCU@I87fc$nS~9-&Wy@6(sT59nm@L;5ZF5&a!J3eR(lYX?7u=lKMl z=Qy_re#(Wx&$wgobM6rYT_pG=JA+@bC-^lR!SCRCzUSe=pZN0NFFYxDn&$-nFQ ztsvDhD!31r9uI>mmmxB8Eu`&VrZD9s5>LsDA}?hX(uhe~jp-5^f?;S1w8VXps$U9q zr`*ta)G*YOnudB&%TRAB3iYA(p}y2L)Q`G{`ct2fo!lV@1w&366w+x}$VH<<@p|m+PjJAf%vUsz8Nm4>0=+h7j+VWdVaNCq~ zm>*4Gbp@?i%Hkm|OrsGhErYiS0>D_0MV3axD1;?_7Z&#@5Q7BL$N-tSKlikunWI`1 zh03c<)6mdNx->Kkvoc2=UQH2#(Xr8v1*;^%s*JW9;n*5%EgOyn1<+U#4)^)k zxa+tde!Rp6QK5`4s~Dd}crp_&xiewqe^tf!{HG8KTq|@ck%mHNHabwr4gLdyQi0A{ zp<*w-$Q7azx&cFa6NYpFhV*7?6}p9rLuJ${w2(?ei>PmCF*!p^$QQbm!l9*fLFjfG z8CpSCgjQpb-$j!`>u64BBP|NuORGcot06WKl{;fYJUh0aXIR!6Otv zmEkc&Wk?KB2_haAGGv%M!0iN?lL=_0R3Lmwh>BT<2RsGF3jeT%zo}x5n&NY14PTWo zN8kR_9064kPDHV^8ofahLr~K|9E4R1^fxtmQebotE>vI@#z$R=?}xTv)VE^Pw_((` zW7KzGA@8IPp{Y?CcMPz}~*6fmOV{T+D;K*I9WsU_)&G9*~f743Ci zYD%J}Ra(OF9Yv`H3D3pHSI4MO=mm`LOBmmmF}|;0e9@&R^ePO+YZ%+tVYc7Es(urz z`W?D3beJv*eSj5xl%|C~p&LS<(X!ANYMf1_o!evMJe_WX);c3QJ_+M2iY4voa!80T zz&LkBVn=jJ1RETz4j1U{0}~?pt7*Up-IxWbE-}}y=&$!S`I+bdldj!t6_Mg(VTzfU z9RPo*Vj5n?r-?{%qIdlBNT`zXQ3W%j;_b62ADiCw8%)s&Owmb9(f635A7FTXgyH!KTi_J+4E>BL z`UO+;D-6$Xn5NToap-s0@;@+Df6;UlSzH@Vp}FC7njfx4W#O81YdDMU3fG|x;kvXn zTu)7*sd#)g?<$>Zi|IxybVTCaqS#K3is?F$sJ;^uEK@iVQ+Prdqf69A%AgCu=M%Gp z)}|CeIw1{Vk4$i(%C4b7UqbLDfW3CJd5C;>By6>x|8b7@ ziG#qt;|7?y*Zx7iCZSy1imy}=aph(gv4kA5%gAWGS(;(J9IQ7hUyhIqb;8xGXObb* zeFfDM`DF2=TO}qPx?)I(hjtk1pb2rm*2uh}Zdep6s^dyKt@3cVmxg<(AxV47lgc~R z!4DVlE+pu3lkIVm%uSq*B$y<1K8zb8rB)MeNV(z0 z)G*wHnueQFt8g*M7TT#DoYjTI%P#|1L1Hwggak!X9h1=5A;dV4B z+@7upcc2@>9cfXx6D<#Srgh;ibYHkDZ3~}E<>3-~GTe=x3wNgj;U4r_xRl-vpGU{S zJ?X1(FZw>*n|=xRp)=vWoD%NG)x-TcCv4{iVFx!2JGpgO=eA)NcMf~GAIQ7TaELDm z58xr;fjlfcm`8?DjSwEjH-<0cJHnUq>hKl3HawQMgvasr@C3EP-ZB@eWh8mI<&1b~ z)ERY0W@(j*sQN(}LZCirj&Y@e`ci2W7^G5#l!odC2f#d$BU{8Rk=_0l8)G>RM51h$ zi6$7;={vxE)o2@%b0_gwb<}(Pfuoj4uD(VeEB0$m)G-{youS>@W`rKu;JmKD5vnhEu&p88dI3Ja4tJ(G0O`UwoXIW@P)z`GZ79!jk#Z!8 zXW4}0R0W+?a&g))LKqD-0HnzgOyeJpOz^6|CU13AW0~Q|g$Y~zw<@-J;$aEfJSxLk zu04m~xr2nzC~>et=mcfD_<~fCM|cVr|^nd$BR8N1vDs+r*cV3yK-$(al5Q)N)}-x5|a?bkV-IB z1PgVAbOa|EXG$~TESd~CkyJQARtV}U08SMm?i~mcrqVo`A7j3#g4pnF7xr$ki1~5_QBKq;;vCg4g5-+}sBLm8902b&BxmjG52rQuR zNniwXO>ls3RvrSO4N_s%aeJkx%!1>Ul2V>&tK>J7wqs?$AP<1S0s#!lVmc0{nvtr< zh;OxN0AVQn3}$;TX8U=}_CDDD{jmH0!fYR)((ntI?H9=#K1iYPOLSrQWx6E%3XKe- zB|!L9nizf!5zgy0EBpp*|C_Wp{0<_U!-#A?pdI0(u=}6Tp73Y%Z1_vsAO408hELF| z;qTR`Dj{sxLkmyX9a{n0qV~8wtgL8;Nzi&1BA#uS4?8VJ&?7et3u3QxF@W~ie> zI@C}mA>vtyxg3jtSIVS?7%>>@C=7c%3+2>3k5LP+N^|Os1_dvC`@P8NXvrcqv%U(*=VPy0Y(M3`5>eir4nBvv#fMHqv*1fTQ>kd>$N?oAXA5#LdV^jjN8v5?3p~JYD z|FDR%l1I-bn51yh5)QAK*|E{9aB8Y5w`B?@q=;NXtod_1Y!+nTTc|4u{|gtX-NfKP zaA&AGNBvS--3pNZxmZ{;y+N3E73nvD>+u%iX4fe z>q0BLZh5NIqTqlamyt@QuFCYB#Z*fSaKRWYt8k|KH-*6!6x>unaOEt%lCO!csdqq} zp-3~Vsg~3*(u$f!T2o=94YiLHQrAckl}3uGccd-#kF+CSq&-C<9k3TW((p(p8Xf6O z<0D;YYNRX8j+{&LBPFyj(v6lyy3^`N4_Y57rOlD^XlJA+Js#;rdn3K+#Yi7|HPV;f ziu9wyk^XcvVyCYo4*DVDq~9Vsor$>E7V&aU#NfJ-5I2tu;5Lzg+%7VhOCv+MPh=ST zBbRYFayefbxq?SU#`4(6IKCz_k!MAw@Z!jHUKW|5*1kzti-8I7vQeBD1b>q@(;kHV zXnvB1{V(p`13JoTYXjc3t@GprE26qKF6x0s%r1DN;pH zQ4mmwA~qBi@!GqnSiyo~LB;+*`@HkcOeVp5@4xO^-@kqrW=fKo$$QRuc6;`-bqYaL z9lbzfk*XNZl0pza*~a~V#^NXY8Ev0<2BI0<9%vi_c1_`yu<8O8)3`B|)%pULXK@xV zUo@lVb4`>uq(^uqOt#S@ybda9Mvw3oXr>7TyEdd@zS5m&b-*wE826=2egKrUukpV1 zz%PAOd*zwv5I)M%L7WAZx2;--%^8C|^y zO=Je+J1(%LJq#Rb5KiT6$2y?OH-RA{#!tw|TlgSo0nqVfak^Lk)Fy;%y$k_a3l>ZPz+-~7}S z`?d~C*Vc1Z@t)AYRZgi3I$E)KKFeyA56LafS4!^h(&VLBmlxD1o0vb@G+9>5{6=$` zP@mTW1MKxBY%ZwO(%KaAT8QSGmVrRnN`Cc3QERy=C~SipT(7p)Tx(lt6w8vEm6%?i zW^Gr-Pv^_m)swFYTS$X#i)f^+gj}}86tpd&akiy2$yN$PT}Id0 zmeWnP6+qOLw8RDtTH7ih>TN*O)pW0I4LxXEOOM#r(P7)|^pb5oy=mJ(@7p%g=eA9B z%C?z)vTdP1Y9z-Ww(UV)VB5#bZToqht&F$W9^$)f5A!bD0p4eOgb&&d z@>8})`FY!8{EF>ye%tm0e`I@-PudRgH@3t4hwV8TSX40Xg_UA<$krM|G&Ro~dN)DQOh>KA)M^@qK&h3(BOY4#Rk2~gnGaAkVv z>TA;ys1s33&`Z4lte0`3gVmGBEB*-QWu$sU*QHX)1&4W~wgf?xgEs?xF^f=b1paEp zLbVK~Ysr}0q!uEo6YBC3b%VzBYILi*2DrWkmSBsTs7u#1(6t++dywPA^Z=BS@5QUs z!a$mly4M&z*=hjoOew*qeM$AC`yt*{m)=wbpeai^`+d;3WUy!^eXg3Luq`9wPpO8; z#jK)i`U5ns2avPLL91B`axq&_&aMt2h<*4uE7!va8yOVe044F4&}%FrUoPIOWPnUA z2N~VO_--SPn70??+evfo@T1XEt9)xP?i&)K z=m>|o%he_hP0dEK2vdrul~??so|`_Q%ae%enmVub1D=^(#(IuIime$qfH z&}YJe3`KjKi7#*o#-b=F5@|+s)ksI4gX6_5S+Y|mF%DPKTJcJzp2Bf!3F_90ge%$L zAFibM5wV=RHmLbXB&1w{Y2C;#q?p$494QJ5dY$tj(b>2RLd%J%bupC?j~7#EzQq5o zgM}CWoAGyv$@(mDDzvYm?KU116lzB!=K91Z-07ddIG_SO=MJtL86%lF1a-8J#5o&9 zJ?*1$&c@In`&b%nw~@B%BY9B|h+Q-v7_KWGbeFA-9pGc?em(Wl4OX)ZJBqsZ0&ahv` zwe6R4w*3ljWS_##?N@TX{VFc7U(G%2Q@M}*8Xjby#v|<4vfVzN1NQ59oc(&9WS_xP z?KkiY`%Io~zmXT%XK|_hCce!+n>X0!@HYEgzQ;bFAF?mxr|paRh`p5Gv9I6{?5p?_ z`x^eiemnnS->A~GTlNX+M{ow(Nsgz3g9zu!0o z$SXJHQnsXa#qUCblm0-Hd67tP(oYt#=Pk5_okm%(u$!o5)WTu}>At9OZKADcg{&d( zj6N?E>9_%oPj)jqYpQCS3OfpG+FaXF;|>~zVFPk2+5m`@Ti{F)l_uDLMll;uj^a?3 zvI9t;c0{NRY0smQfP#WI`AfZwCZIqRm7BKGC^0RWm4X372}FjhRPfgl9_v{*F#rIE zqYePzEdao~0D$)Z0LK6T?^ApG2UKAHkh0< z78>bDA*Umi{0>Y3bD%lifjJzG8noC^o7Ot&(MCr$ZFN}bZbvTda~SzkgDbc{wq)x} zY{IECe53QxxNl4`?}y1m#uW3xbcLp&q#`?ii5>$ia;Fi##!^FaNSH=8Eu$?KrkEV? zt0cEC3!1MN^dgfhhzyP#HA`*zm(fo9Qdmj^8{zLJ$aM<1|y ztOAX}bQmgRWi$^IsgkeJY@ZhGMy#rt3!s^U9B>N?KGK#2m(9|tsJcltOcuOPP8>va z8)OrhlPgLqtMxdLvveS5=|IlX(S}+%+EShaIZH<#^>pM@e@A;7>gYf=M@RBHI#Jls znI<^8(B+N-n(pXIvmD)MzT-TseIc!I^rYJyy=a}I5AAUDrvr|G^tfXPJ?$7yM;xQ* zMaNir&0*I^*r@fq9@`HO#rDGk*bl;H?1`1X9sLa!_~$Eh{!rv^OMv{MeQ%>Vuw;@` z^wJEhy+o1|z!^2UqZ4!{QEEK_WDQTjR?SCM{7%ba*s2wH#ch`JV5?-e7`2||X01n8 z1&^9AZA3d~(k-RwmLh=!0}MJ=+%h}~pGp9DRl=6(RLPbx$xS+(fxCEtxikK=`3T1h zfJnaz+u_C}ERdGBX=HmI;JH+vdq#kxWL!N))PO2)ls<4 z;RCGHVs1)gSk7OIo62xYkUx`0%Qv;%t1~t|o{ZIUDWlKU!_>-H z;v!lO@2W4>qc0dLQj>>B5zWDgK7}(9(Gn`66*m#HS40am1CuP=$O6e&;u$oCdqcC$ z5L4-(cfwp#Ohse4c_^dq)q(Vs^WsOdTg8n57tMkfE`K!7t8`<)3xb{2M-$L%P1q+W z;A1mP#s3f>?;wkvhTQ>j8SFHa$*bh6GRuT|mP;SzkME|`qGU52%kY+HzbIytk@RF3 zvI%slWimdcY+r4T9pKqIz_WFLXX^mZ*0C2y^Z^{v2dRf+A6?+s4`?o$!`;4K;E_yVLa z)?tx^x<3LyEG3;$5D2*jizMc_4}e&f)lWS!cX|`9zrbpqUN}db>71}y#x!G;k1dlK zo-U4a_exeRjQ0^n`oe_c+@q3JJBJO17RNal`v}p&p0R8fCNDyKETGm*LIzsuiF&27 zQURs0V`+3+#1Eqn2|{wbhZXt&EA$~&=r|1LM=+cp<1m6g=lGNcI6lMbe2&#QK@P`B zfan)koiDLEr)ZJ`UHuMp^*er|>l|n4M#t|o*YOuEa8knREQ}qx%VLLaV$?Ve!ND@A z{zWmWe>bg6gdwfeQJX&~L{M84(uBP`0e-Gf)Qr_J8UZqjDqeP+P2n*>K0e{HpC7yI zyw{tV-Z3+ycUtO0ynjUen$*PZB_|Y%oaxlknW6uVY~zKZe@9E~^xOC#zRLcHeu6#~ zKS9d1*lG=sZT>Og6ZDOJf{JeSKO_bd`J^U%>$KLCf6_fVEUHJ(X_2Ca@WfKhs&uAM4Uh>yxJ#8hxa;0sn#TGL4=q`MAF0_-_!mads)Nt6GXGIg>D zqZILcps+qR{w0OhB-^BSe;STJatmUmL!b@8B~xpuBzan*t~SM`w3E|KGWof@jH~W| zkL@ScLz|s7u%BvEuCop`bJnHS&U%#Z%%rZ)Eb8UVroPS`8tAM~qnuW9I~!2QiMg}R zT)M*9h^}!qrt6(eXqK}n&2u)RWzOcb+S!7(Ia|^$XDiz0Y)y|i+t49rTRQ4&N3S~b z=q+bH9e1{;6V48F+S!qQc6Oq_ot-(&*@bI33pmr+l^Zy_aZ~4c+|F6Zot@pe(Ak5} zclPAI&LSSc> z^#}cU(kGY#8SV|b*pdnv?%RM2qMbL9mjD^0i|`7bj}(t|5w7MSNOFCFwYzwbo{CbH z_91a2lTE5Y5vBk%Cg~zP%I$P_U=5^hnxi{#H_9%@F;;N^(nGb7uu0KHl-l$ O6^ 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 LL`Spd^e^~7;cDw# literal 0 HcmV?d00001 diff --git a/bin/randoop/RandoopTest4.class b/bin/randoop/RandoopTest4.class new file mode 100644 index 0000000000000000000000000000000000000000..341468d6b282d4fbe976e5bab374c306a975c286 GIT binary patch literal 428902 zcmeFa2Yggj`ZxZZbIaVBTp*+nh9bR5OEQy+U?`#>O#�Vju%VLjp-?cGR`7_TGE% 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 z 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%0DpZN=Fg!q{svI3hES_UG~eHtZuB>y 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 literal 0 HcmV?d00001 diff --git a/bin/randoop/RandoopTest5.class b/bin/randoop/RandoopTest5.class new file mode 100644 index 0000000000000000000000000000000000000000..c038beede147eb9552aab95b5e5618a4f94f8027 GIT binary patch literal 422989 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ӞWjS5j>sfo-qJ)jc3^`{t(g@h#618lDprA5 zc6W<8iJQcq#F4b@|8QCXQo?dDOHL>#-)v7xo|*QQGC=_aBPJ+dc3^_CC#6MM%@lDg zXxTJQ8l)v)LDS@=Br~-FO}qi6!?cWq5vb59Fgq!&X4oex7ISHtVmO#WT~|WM$vWTatriI)R5~F&8KVPXAn}<9Q|}qKEutsiaRId zF7wug$WW1{qj5sYh19;Lt-V8^yShNs+CmscKyJzuqf)c8lG7U^3#4Z4!MA7g+bxdfkCo@wZM+{6d zF`dAhSyDn1lM|Q8{lq83dP+fN-L&#Cn%wwYxKs~?N%a(!X=);c#F!2WDIgYEF}k2A z3U-WcYa&-`%5b%#Y*#)taJ8o#mZ*-d<;v^2R|Q=wRd3fCHPrQ>8s}QC?r=S<=D0Si zg|4k?scXBs*Y&vC;CfQ+bUm&1yPi=myPi`=UHjEXu9wu;u2!78A>rG1) z*V~pH*HKHZ>jO)k>to9muH%+=uFot5u2Yt-t}g}nIXtqUn+g1u1`*(IV95sX9|Z6> zv1FNE=aBYCyv{*-m?I0s1Nj{Q^hk9KnRj?(!F!;7WMsj31s_Y?SB|Er*Wq$H00Y0GznCN-cXZS zGViKzHyDS^Te9p=QCAH6GJmJ~g62sAF?2x%>6GO$5JSH!H+_NIvM|N~MhCc59X2Dm z_)A1>RA1F%X|brmO<@`$s-&9SUX=rVBUyGgMO+v6)?zoBC?3VVwRseOgv?t;7TnD5 zAoCVtXePg;GjADL@T|_f>!JF$S(}SUmi>^} zgC=VPLHHO;Dt<>}KE@+qz;YDC&`BO*si=veZ}}?AgSeE3)`A^m98TI%YD8L@UpgXNq>Eh~>>rAW$nE1JGHQr> zR3Rw(_5l=1=9RQIjOLVPu+Y-+{*qOqc37;z(jzZp3n>VPx@BUaG)5!Z%$5>~IM*h~ zWbmCxM`1KlQL<7ou*Kmo{DA%iP0~2NfszW+R;V>`5BeO<-(D&rBQ#c(iY7)|E?4j@ z84QI^xSpaFKDZYHyI{(@Cm|CwQi9Y-w&YjS`W6I*QUMAXYGHikArqAcuM``LqC%D; zZK_owCh5ww9YC`hl9c&QUwpkJQO^ zo@}lQkqoi^(QTK{YA@Nf72@0KlG66 z5E23G{|Lk=}ME(Fg8i`ox_=C*9@fTX%W-*_}$iyCE)gSLDj> zG){M?bC$arH*#CKnH!!#?mFDvU5{PvhU|AY<{s`m?(1&B!`v{lcemxq?)E&-UBHXo zoq4&t8?SR~IVP5uJ{?Vf1Q3NcUX6GPy$Q%tSbn!gGUIkEleQ!??!?29BTHuN=RO?P z&iCQ~a%35rH_?1~d794k0Gh{;8N+N8nXy>suEO&BP|W~9 zK7^H%3D&q0jCFt3P+6IF(^+KVQq(*E(ZeTrJpd%2^*DY9020@wT$+x@KL+=ux#%NH zLIe5f1S@EW%CrnLgfQm<7(GOl&y`H$dO?MlH7{v(B-a+BA=vG*pn#yq;^c%HI_1VP z52xH%=>P#Nb8Ig0DPhhxJ{JZg!LJ5sI#)O&NY>Kr)SY!@#Xe&c4#7rR# z2V}Tabzi$mFoSz<>&va*;d% zuLXTwwLCda$dC0c6uh~7o{n9F6k(D2qX-+R57!3gi@NMOxxHCIltZp7-h%zn!(3P1 zAKV79BdA;a{&4Hp@`y_)(bmAoFv}LaH4GEOXC#H{`tr_J7Bq<4T*r4J>kfUryVi2m zc_6B+3o?f$UTsjyRWAE-GgYY`x@Hd9!y)@ zL+AMhD%)=^giV^pSf6op8fw)_pzw;2uT4xNo38+@qP?H*%``CQfsY z;cWLx`a8Kho z?%R2Zdph6ep22I}GkLxH4t~siC+~94;=S&>c)xo#zv`aDhuw4esCxmQaxdl!?xp;j zdj)x#fy7#E--TTx; z_w#Cw`$cu1yHKrhzp5T`zpfr}A5vT0Z>gQ`chqk8d+HhYhw26Q$2xVL5JnIanbk&< zvrrF4IEz-0rU_GlA>L}9W-8$9uWr{;w?qmeag-ie4DnW@fx;pX$PvF1TxQ71>h%Sq{t%G26!xOI8UgGEGcOv$m4&8$fPqki+A{Y znC$KcGJnLUk$#5oZolG>QDu~ATR-sIs4^Y|GXKJFfFM2$WUkL^LHB+GWNyWGt1Wn3 zHSWlBEUWR{EVh9R7K8Qb?B$7S7Jjc4RYp`4aa#=@peu@!x{l=jkfEJG>NN**;@O+?uZIHnoEw|v_I=lou!`t!Px~Nn(0jGBuLb$!i{VE~q)Z@cQpLe15S)Y&6 zcL^)hW@@0L#O+#w{{}UTRwH8*$T&Sdh8#x~X!KKDk||l^=ZGL??eS=`dQy@|1P>G) zktT+RO(KwB)NeR@Lqx%dDE=oVqI51hq9C`EnF#;VY>VcfL^C`TcOJ^~ zq``2wHOb^Q%m>BIPuIwqQjDBQNF|XWmNy>`s>h5X;CFie2l_Hr|5mCM$$ZJ;xk>tM z>S;;oXfa9`=BJ_@hJf+V*HYxrrXV8^v`|7L^93>yWe`ZJSu^zu;EK>gxB~7Ecd0%2 z0TFw3x%_4v#tU^)T5(;fm9m^XOjI#CEsdv5 zi2NxK`EwxhNg(nm%5{H1P2FEo8~0a0<BPxrUf-~Am8cAur;?(c!h zKhPxiIhyYNk!HEi(|q>@y2t$!J>dSCHo1SHo$g=hY4>lm-+hr@b^lI>+PhA+JSp7KQ;xfN%CpOp z$^lOW?(M0_13Z;@sHZZI@Kogqo=l$Nsm{|qHF=?@Hm~vI@I#&k{D`L!Z}l|geV*q0 zhUW_Y*wcnjc=GuRPe=aA(}^#7y7J$i?t+%|S9o=pXbGi5q=0}8wP{RL2wc#O(EPmF z2+eymGGY)n@6gDYME!ZQM#g01tn<;)DS7O49A(@?Imqya0bk|kuCL9BpxB^|E zuYp?W+?3u^TW~1@O!KQ64>R$)`!ya`;{cFY7~?D+O6$~IAX#;dS_4Gv$5)fpL@nKl z9h=_*jQ~Z0UnM1g8lsT;vhFJhx1@$evVf%UUbbs#NJ{bpl5&ycz7zvV-O7ff|LHJe zbMcl^zXGJ9Ui{{RG{M{-8`@M!?@~2Lr51x!IouAAs%SnuCe^JZAXVACLyIKht$boZ zs(8;EM^BgPi9~V=U7@v_rl;jF1Os#RwNyE@Dagu$GmmO%{_4xm&ov)W69ztjv21Hi z4P&@64~Z`h3!y%g+h)s^OVA*SB{vF7bs@+=Whn;-s6*=EfHb~-9*)vUp18cAf!Ho! zY&2fAVI1zocASKLMo~2?{FkxOr4+$X1{Q`JO+^3upLXMyZ7wN{Pie!WY_sEVGA^Z+ zrjlr08*VDm!icPfC7&0U=X#u!;qg$m$4faLALV-d)XZa0J5PW*d4km46C$^#2ZcO6 zsjsIO4fOP;;hsJ;+S8ZDd9I>~o_;jb)1T&h2GCN^K)Tm+HLdXsqD`J_Xs2f|?ez?y z1D>H&>*$nc1byQfN#{M+164<%3-bmp?-|WiJU4Qd=O(W08N&@d zW4W2p`yTnZfHkGkKHe4&Ls$lXrV&0bTFn7d^B270(<#=$Q|cUBq8`mhiWp<$TU_FA#R6 zD(_jNYIq)0bv)};1JA>%iD$Fw=-H~gp6zOY=W#XI^Q0Q?d0O4-c}7j~Jg4S+_N%)+ zFR2xtSJX;Rk$S*$P;KzMsWyAwR*!j(s$HHB)B(>&g4{eK3?e3St4$_yV@nf8?p(BG zMCO01`#{m^`QK_WSP4DM>8%n(J{O{pvFc4lEK1Qp4nky&|^SF-4 zX$85Ls@6dE!$9txDxIqV*DHdAEf2y~^4ub6r~s~4MxF0G)N~?*_>jK^!V3d&p5La^ zxUDMC{0$&H7zi$p?6Nj)%Yd427Z6?=LTj@);=mIcQinO}4qVEDhHervUdeNN@y$SZ z$#aMBFip7DKu+67$voJa(A5P%xE?{CdnZWRc{fzisoa`dFfKbWTJc_M!h*6(m zZc0e^jvpC0%QIr+aCmKmXhDHd|jY5oW>HwBB z+}xNX8~^uU`-a*&j+KC#MQEtd;^M{yX?nz%u$fh);p0L_aT{EM6T z5>F0jVl%#*J<4$wMpe~CdT@Yf&5Ep5@goXgq>J&M;{dSF0AQa3z)n&_&nar^`GT(S zd`bD9uc)i%G`T!qli%|V_3@mct3BV+wVv;2l;cT&eICd z1zPL*2>|vpZTI{}yF7o;Q=Y%+B`?uyUJHHTO`_A@a`c_I0{!W&%;c@giQY^u@2$?2 zy)`+*Tbr%k9IoxHuT!-H;jh$O@N6*`JpF?OFCAV@F`x2HY(y<|1)ak(7qMdpqooNyk?`j z;(c7INQ>znbaRRFX$9TQ>4|S)!LP;rA8-K{{3Zf~f=aAH+u=|7F}AK%^^$SuQvDW6 z4=)+54gzBcx7kQ`6)W>eJd(^^Kp~=@AZr2VJkEdo#AeS~`n1O$ECHVZsWUOBy{nAV zJ|gXjoaX;Gt=K36#O~uHEkH(PGK@&AzR!HGbJRZVecli zSA6;}GfRqV;?Ma7lh`^9iQj)VyA*hL1m0x;MZ(Hn8SIc*lm;I#QNjC$~34 z`M!oU_O?W`ucUg7@-TrA|BvN2#?R*qn#3hr|4qxg>@JJqr<;}NyvV9tGPf!2zsO9F zfus0LD=W_5;y?6YWY&%$ALC`I@m2UpH?P!e8VX{WMfk!@co%y0IFTrTAsZM%D8{`_^5a)P%aAR*zZt3mCS9*JMcW)o|dHZrt z?^WE-+m8o(`|}9z0KU;XkjHzk=4swRJj;6xFY*rN72YAd$~%-F@?OiEy~B8ycR26$ zUdQ{rBluM>rp0@&=XboL_(Sgv{HgaQKI^@i&wIx!_D)nu-YF{8J58l|XQ)i?ovNXC zwrcI2r)=JZ%I&>d8Qx`TfcGACgZF-Qn|HOE;e9|Y@jj&P@orSByqnY}?-up6_c8UV zcc(h&eL@}aKBeCC?o}UqpH(NkFQ_lP2h=y-LYP%E&973OiUS_C#yTOFXz^Dc6gax__uN5kt3?4|Ee zH$cLwr*x=cu+osC`AXFbxtRd;dIh;K?v*0O+TrWfr*6wTj6HYZGG zBmR)9g1>|`l`$UEvIZR>O>`JqL{?;ON2#f~>kpHSF}c|Per86pdMy&Q>X}x7(fT)n zSoAWYnWuC#V<)0nGLp`Dmu8OWAIt46X~vdExr8SSMlJU&3c%7nrCgyjt29 zl;M)rB`Qx0DeTd!UeGTC92EYYhiT4n|i5$fuF8vyeTdA;va z$a|FfdOrZTd`zRf$7ziBGaBzb1%T1&5-3vj-(@Zon1-3E)qatM(v>>GX>Tqv885X& z4kDf)A$)b>xtE9m0&q*l*Bf?AuBF|Q{l#v{!qe5&)~qEVFcj6yRqFl^VnD201b3iqDHr}sTI@%{j4 zK1Z#+KT-$pdFtf7K;68*;FG&Zy}f@@e{Xm~YuK`WK=hO99Q~v^n2-VqX4v(o1C~k} zU?Du4!m2-&{D@^eh%4|{N-Ht&i3Cf3A_>RwdDKSo6f^cTB~h{zYuK9$M#^wjyAuX$<|`H}AH_7~^4Swetx6{Ijw}kQLj3qpGAf;3rOMSo@?$La z8Wk5R74C_7D{`oPH%AAB_X3w)8)q6Qw3FBX>mk-Y3XIf)& z63q{3>k(b-e1e#}aS*klN3ay7{iPljFZnS3)dw3lUn1rB&oA#`O;~sFN5y%Wzs@lHCpb=qE)`?w83Yk zExsDG(^r#r`?Bc;Uo9&1)uuOmV0wL+LgmY$Pkr_13txRY>uW$i`5MyizFa0>BTn`; z=8C>1oZ)NAwS0Npz}JlPe9gJFuLXDXwd8KTHtg}W<)E(}_x4@M!+c$Mq^~(ywum5AM#zr+kFH0dEX#@$v1>w^9|zybrm+F+k=}-fk+V`4Lk&&G2^A%ISrOof0ooX*o{=>n^##DxRRlausO< zi(XoCfh~NU7RyzpH`q>}YdellxurI~s6uDCu8!wbQIoSGo(nsJQOMxmVaEYXO@uJ+ z7}%K%us5}lja0+`b71NVz|J&)#aCU_H>-0VdMhQ`Te&qJ{WUJtz~69`&RAN3o#{r0 z)l7)~vUMcBPWLc&qFN@0A{#+dPZB0X!Z!fJ#Ngud68CpWM)4Ed$JP+65jyc75yAw5 zvPNda1yus!2{5l`Y0OhWfTehm#x~>k`u`F0Kz!^&1H8Q+6td@q*qeKgH?KbG-In&(?Zcl%ajDX*cmz6WWWZ#|ar!?fSGnO^p7 zrPqDi=}q6`^e$!-eCT_cj{BaWlfLKZwC@F3E^uVfUqdv`MH`Xf(GXcK^t`!T=y7wo z;AA!%4c3~=1und1qrp6Lxxj@toH~!C+ak;5PB@HZBE!IdJ1nd_SsD%QrhzEP55zkX za<7%{fmt4FMH+u%N}W0f-35|p;H1M@22)ImQ#E1TS&+38-4~N<^!+c+GMopch7v*R zBLmKsjQOAYJJ@MBROd$?d~*VBgy`$afUy#0NCa_c2ZM9S5v`hI8Q*-RlcydV|7$c=UU{ zEtl5Bj0N~8j9~#l%7}8!05c9K5Wh_3WBMUEm43x`nyii-%_sTlk8N^gb$#E zo?K*hdLYdXoA>oA{nc2iBI&7uu+}H$tLgu*UroF`AfZVaI#ZMOf!M2e!T-z;~)~__&_Z!{hyGXbCey7`ff6xrypLCb+FIwRHo0j?hq1C=iw9yYSsGsRcKg6JZ z3l;hk=#W2=-t{NZF@G|h@Tbt1{&IBAU!H#PSL6hL8g>NfT-}e*<+pM@e>S)F*Wvd5 zdfdt1kh}XEbI_m1z5UHKGKJl1`j}@h@Ww2Vw~3s=ow&N*tjpw{%Gj)n(9>Y?u?bJ^ zxfq??a~@mt@Z_FvwANiF_nahia?f*QPVU(VlmE>?rhVX3KSxGifeL8_l=+Y=Tok~J>~g3P%D2& z%J&ygC;ye?^mih|-ldw!~da3LQpCHkt65Xs~(U>`JiwM}a;>O^=j^U*0 z1hch>pEy*_5kGM>KT9z}{KWspDIfL|{}tQ+5CY0*6gR?t;poM^s!zlTWJ^Ku?)G|MO(oMoxr=5Mbk}NKD|a&%`l=HUUf-A zyr1;MD-Juw%4&)FkAug-zi@!Lru4GmW%vta-s3$n0cP;OEt}#2r_$OdUQanP*1>WZ zmZG8oz7BJJ27`ELA|p;Me;1UCJAZ|M(3*o1J;=qo%S@cPUfs4@jL%m=eog+FIN@gD zgu4qT+-#h1b8y1V#R)f$+WY5IXa54S`xjEczleJK7t;X$QX1u7K{xsDqg(u|Xoi0+ z-Q{0L^Zgre!aaf$ZnHiqMuz`<^Q553CVtX*^Q1t<$(&<43@3$@soUd=H#?NC!s#O$ zAv^Uzhw=|NDSG1@5MgEtrY{uG+X<;SDdbD6uQRq#vHvS{>ascb3GFP%FU`K?p{2hk z%T0JWXwi9k%=dKdzkN?(_Tzs)mEeB@Z&jC<2hq1(@QWT7e1kH)E$rw8-u8m`z+ok{ z=BYwdRh7d^*pR2Drwq5CBjw(>6Gn?a5+p}Vj3ENzORkrhcTk#~_)mbR3oDsbVv$oy zv0BAfd`9jE>qq`=I3su9jNFMc@^PGzyKqK6fiv<+K;Ujb;8TFWrvZU`0D*e}fzJQ} z_W=T*1q40^2z(w8_yQnsKhDS(aYh~h1il0aEJVieGCkpc1@QMOz3hJt@K;3d_+O`w z{BO`H|6w}sKLYrBm;Ug-&&mFe0DqqV{!VZc|4DA)|B}1-zh=AtTfpDEIO|e%ym>U$3TCVc}Hp8LW$v+iPj`6f}4;qTNA~9=VwU}5})Cr=>AI7 zx(4%wN;ihgLnk&`L!wk@u^LyWDzN{bhvkUFLM+G1k`Bq0OIVbZ!?a=sIwmUb;bv&V z#_NdMwgTG5L>v*@&=IZ&LzdPS<=hHTqJh=KkM;#M%(oV=as$86%~~@7BmS&4)1XmS z_3~?(k1gf#j5qmTO{+6sKzCaY>X2(~sQ=1_QpIj09zm$oS{p`6yG_uG-B3!qxV;(r zt!tyr8dD5v%3+ASH4LfCv)06PqqORHx9KuxZv_0EYYKKXhZqko&ZA(|DFyW_y|CV=*nYWFi*dNs@_uj5l6xoQd4btJNY=p>a`WX6&oRsgAX&bJ&>(Q|t<} zN{Q`apZhY#nY{No1Mglc4umX)F zYHK7@XCsANMmY)?<>@LTm98-=&~T$7jWR0H7^5=XYNXK&qYBM8s?t&;o$fa>=piGM zHXGGwyOBk^jq3D_VWpRh8uYqRlio72>3yRX9XD#zDWeXZG3wFajBFa|NRT zXBrJT+sNhmMk8)&H0D-D6D}~Ca(5$--9|GG7|pr2(SolrTJlKa3Lay$;#-Z@Jk@B! zcN%SZp3#n%82P-?XwU164*aOmk#`ye{FHGeKWB8}LZdSuHoEXpqbnaXy75V)JAY%? z_(#Lee;N*@45un*xKx_qR#}Ee)iV65nGsZ17(G=xqmL>u`YE3=Q1vseQP&$o)nsG1 zy4@J578^IH<;G3we&c4f))=qW8xz$IV~Tpgn5GJi8LG&*Qyn&DtK-Hzb;ekzemCw` z{}{_G7ULdEnsL9SuCdy3h4Fx;o$-*Rz}RT%YHYGNj4hU)#$%SNjGdONja?E_IBfDf z$P6i#Ze~caTp0-|Ei5g}ArO|vNSyQ#2umG=6sa(~EY%_*C19zHkRn}&S6Py&*>U+9iGakv<|#3NWV`|Lzd}vOZY7{7tg52EBRIE1!a2O zI!w8fd3O!?QGQytYB%Jaywf5kNiaXcl)E*$!d%E}(5fvJ=EG>;mR9X1XwaU8*?}kE z*Y_jLnRepdJorryOlr$BsTtbGdt0PX7dClbLv=8{F5NVF)`dE~-;n(|eXH4S-A$?Y z@lj&D3v^NVMfLH6GSdp%XhSEyN}U7ot_^ zu*LIDWyER1nFN`YrCLm!9#eLlmdF5|G+)fKAfzI&VoE?BxThdAe@WuqGcG1_OPn3l zAqhizmZQ0n?vd+L(V&gP%6tsKfJ_miW)q=Bl*@OTaY)R6(4GkMA3c>JzXGnST=~&N z?40G^EeOzwQmR8!HlDi9d}^^|-Taj>L+Onm4W|=~?lB)$N}moA0W*3=S~KuAZ?I;R zXa$7~%Ov7pu%cT*&DSY4Zx#_#=FNhx!@OBJ$fVhAZx`g4kFSR|OnjpCt@R>*o_U9M%!O`UtZ&i0)IdUauC<;Bt_Hyg zFs!@6TWKUg8Y6B;6f~BuAT;~n&z_MVFTpZnaACajwT{V|DY3~unth5ib(mQpCJ>6& zJ$|yR1mh}kfeu@RLW#qrrVYi9ku46u+8iC1B1;d@s7lD{`z`ChEW(&H3L zc;7}hF?>IbATpjpgx!k>`wSxNKFT$or99&~$~T^;D~%VZo3S5J_C*RA2M}dnq9H~h zjWk|Hgnfl37_ZW8#%qYOMKsTNot7AH&`RSVJzyN7hmFICvTq{FzD4_tBUEU-O>Y?Q z(7VRF^s#Z2J~!S&gngfWG(MnTjSmrJKVmXI<|N}7S2RB1YQ}M{V|>bujT4BnpK%A{ zbM9iCWT$b84dV+$*)MsJ@f8m3c!u#U&oRE^g~nN4ZhX(Hj30P| zagMhbKk^gCd4AToz%Lm;agp&ezh(Tw?;F4J3F9~Z%DBj9jowz@WuqizW_P?G|U)U-fTwJ6YB ztqokE)(6_CO@Vy1EznUt9_XZA40Khm1Z?WPfKz=O@TfBZzxq88RR08eS}cJ+mXtt0 zOJ-nzj-*1}za%Mc95xB)v)LDk#wF~idZS*l$Jo7bQdCSDim5X_1J<6nE86E zYR{kG9c@RisW{bELQEYF9lg-Hg{qI%V5Py}BcO6I^iVNEg%@yQDFz=M`?pp$FB zJn&_;6_;wlJn&hltWX$)W#A?q4P_4OIvowAOLRGUL&e}^Ir>l6;Pqfi$TPGlU=GYo zCR*0wx7EXtsj-#^aBqEnmIqlL#BB}uCGHDr5~%0-E%u;?RJ2+cRi&QLk@PG#)e*8W z|IW2A=@rhmdgHlFk3l$Btksg5+d>J9VPp1)OD#g&(TMQA1lb*qgP^+QpYG+-^AW0q zUqA;*37|YrSB$~~pb!PIPX)6FP8>n8p1zE$xE!X)Z!R4d!AnZ*kEmfxTpSmTiwP?S zWTcGGNSTmi*_*J|h{6QEatl%58p;R^r3Qgva(Ys=@C!vw&j!TwR>FGx6qd_E*xGZ- zq|)yo>2{o%xzHVa8}kk(N8dq-*_zQEvlPJ#e8v z#!|sMR&MnEWZoUaCMA3K?H6Zwj zq$aqI*?V&HN|@Q>utuiB%Y|riaoG*_Mj4y5sY4E46&JST*TX!D+Twd(8J(v)|B>z-L(#W*z-`}9Va5swFDOo5SD zMmJD)U^L|fZlorGo2W%#47Cl6rOtty$q^VwzQ8RM3XG=#fm>-3m=wT@1{pOMwNP6j;a=1BHa-{F!9N9d@x{PyMA<#6Vql-D8hBo11zuE* z0)?u5;8o=gysnJEA=NYR7NYArYGmL&bz|T|H6?IN%@2I4?hbse)&#y#4+TymvYt^- z1T7xE~w7}zo;(*7ZF|m(2+FUhxTnWlD-vQZ2R_&1}gh<*M zeOKWG(^&E z3J8tcDxkNwqc+v8NQdD0ZpCetpk{`Z7hbtCeW{YTCT>fk@A#7LC9VSf(gnSTtcw1% z_qZQN?c`SSx<{=}<=7~HJ@$)41q;p`>dkdaX8$*ExBa+JCq1D_| z?;)iR&8eei4)&UzEamY#>fzm0OSlKGQXl)uG(^Y~h@_u$c}p6ylW-r}Y#kv#i1wk0 z1y^`aC>umLMmBj)_TA<6}|;X#Zzsng~AY@{{1!*rY6z9~~VoKMy4V^H5BfFOD_(NeDbpmdZY_ zlHTW`L1#)qn)%>T&I)*NmH0534o?N_O)qEdQw4V;OlF#|8MAjpn{)3H?5_kM*u(30 zh9>0U*6Oigvba$vE=-!E{jAygnb{I1F>eKt1!1zf9EPAZNMB2rLmRX}R|;QGkweR7 z_?ghCS$g7nSlK5IZYH~Vi8rMMtTFq!%X|1-X7Wjy{Wqno9-^a9^wg91=H__6p7`l` zG6AJfyY>`EjUbAN6!?cSf=t;#MGb-$Y7$JK*1<&T7)+wBn4jecrjR#SjzYom)IXR? zLxL4(M6e=_4OXIw!OAo(m`1aLRcJx5D%}%IM>AyxJsixWZNX}^E0{%32dmSwK`R{y z)}W$bO?o?+O&u3yfxSnmE{878@!TV2zKJvf}QzLup1u<+WE7fi_ZqVd_HI>4u(`xu$M{=_El-Y z{;F2+YSlbAShWsbt8BsRlskC6GJ>O3&)^t!ZE&2rC3vg4GdM}j4c?{}1+@-rr%c4kTI;!3%hKXcmh-$9OyJFGa2))NihzMg@4U)kT1a_xoyb&?1iGcrGoXaY|O`0lLKJF0a0i9r3IKq>4O=;jleXD1J7jene%a5HqYQnU=@!bA}nG? zG(3Tbu$8{BJb+7ebfQ028>zoWb;AX>2$Tb+BfFe1xfcQMpCa3te@A;Mf`jJ+W`~{9 zaUqK9!0+2j<9EVfd^a_T_=6byo*s|i$V$y#VsuHEaQ5G|1VGDZKB3sJ!pyVFNuDk9 zQjurNyj0}b@LH4$(LB2}YR`lC2e`daer)Q18LDz&OPt}_pbkJ~jfsHh;eyj6t>vmN z7ZaQ>p#F#JT3hJ;(a3ofA>gG*^b za2b$rIgoG#knkQ_7QB~M2k)cx!TV`*a3$>suA(P{t7%_w4HX9AOb~p4-VHuT9|hL| z2_FIyuBY#V8|dfYM*1`OFp%&OP7H41a>319Iru222e+^_xRvV!w{!jA6tB)1Pf z&7FeJaQEPI91QLU8otECgRk(oU=dFY9^^T}H+f<3ZC(>R%8v#=0Q!B*&j*k5OTo{8 zfTw_fU-8?)Z}|P-w>pq+VOPgOJW~WQRng9!s(bm;A$U#z!W{uC z^gW%S&jq>Q^ms};kX55U@yt_rMi$&o2jr>)z0_&oPz{Yks5hZk zt~S*)ap>EK8IBYq%E%iv5{We0hEbJQVPYlnNCBSGStIBapw7(FsFQRf-dkg2jc>%D z&K+f=PIwlx2_Yph$GkPp>@`nYzM=-fQ_M${mIsvO`?@4QR&XmR8Ab}2SOvB1R2V+u zuo3`-!y2d$Q{+Mvt1jDc6rJE)5nKhZN;-}rDxa!IKBFZ7ln}x)08|OuqYo)dv<0PH z9?d_h?Bp+d4@&fPtl5zgz1Xg2<2~Yr>%w!K&8O?;?b4I?_$G`A%0{y`^at=(ABR~% zS*Y(PCZmQ>HGDx23$l#VXqlce3#|^e*k1L^da~c-4Ohn#s&YONx@4rJw!A+ z#I!J^XnDv&YeEUMA(TklLP_*QD4CuKrO=C^a`alLJRJ$8(g&dmbUaj%z6ik?I#ij? zghgq84o?r&00DHPl;$LRYCip#kc; z&>(e7Xo#8=8m6X&MyN$0%p4BgsMd$Zs!gF=)V9zB^>}EqdMY$k?F&s;`$KoAmqT}{ z*F$qOu&)S%i3#jz367|^k*b-~kvEuHEVT-tD8Sx9E!Q0h0Cv#jVQFemO^X!HZ%{)c zDd{*+6H*K)hgru4;5-Q_>1^c$D2rY1azL&KQe|pTOMtkjxHqWANJ+)!>8;?%yj7*|^k5hnCseK<8y@91SgzcoHprUpB-bsF;t9*101U za}2Ah8#3CGK#nY zenYh8UG_X1WUv)AQ-LWraMY1d1ck7KB5eAr;E+&9%y<%;fGDq+1Qo}mg7iq*3fG+& z42-Yi>g~KpK#QUSZ^A{~G94QQinY~Fp%%7B#ZyI53`AE~E27W>$_Oo{?9knm6IwzI zLrbY?Xc@H(EvL4j6;u$qhq{FBC3omP3Wn~dKB1L#b!Zh03$3P6p*3`KXe~_%JwP)< z57NBQI$9KZi0%!or?sICz`~8RIrK0+7J3ADxQX_KHq(L7qf`{yLWe_J>Alc4`ZTnI zPKI{TSE1c>A+(28Xdkffd9Dz`{PR#DR|~z$HAAm+-OwSvBJ>vU@EtA)y~kZcAF?BK zjJ=`bf-P7%`YbWAg&?ALz#;o%zk?3Jo0#dpR2xiKoo9z(rpfj*#9=(iht891gr9BaBS&RO-Ft+SN zE2wO8E7Jj(hR=acIt|I*UFcU4+53Ami9W;l%c?+~F~E^`fGs`o_qZq-I?somh-|qKBobzEW35rdL}&q0!e@%y$T6c3=n!zij?VnMi4|nL=Y4N1wp!k z6a@uAMX`Y>ieN8@Mo|5gyeN(KbrRYJ|V z3_=?2ry`oMD4+)gm$h3qu5AJ*f3|?LrT`nAk(3Q~s>$$6_~*j^YNz&ZBtp63aLXh@ z`8BlqgQH6GR>7DM$n8^3{R0ddpH*Pc0AtmY%6C(=XYuUS;s&N8H^Ecp^TxnS;W9MI zZ>-;|u{hg{1w*wPyTuzvk}PZ&mmgb&7a~a(pwRfyLZF|8?n?ee77G@liCnmeU(7Fj zG3{<#GW|GN-z8X@_(bYLB%|78$C;q?mk6vQWShMNrU3R(_l~*|~ zZiu@2f9MyNC7npjv-Hk#&9k4_Czd?RpeD@&<$hnykd=tds@9}*))ql%$&WWfTv8Sn z9gRv@uPC=-@Xm_CJ1Yk7tQfqrwxdF8d%D!xfjU`>sk^l!^|p4RLDtUXwsxVAwJQy` zcBAX9-RWj)51MN2NwciI=q~GJw8VNjEw}cjhpm0+32R?^#@dfwvR*-NTKm)c)&aD` zIuJH-5Pf5{(zjL{eQ&kX&sGPWwK|!tE>5$$xuVqrd+FtitUj)9^>cwWz-_ESZf^~7 zS8JFrw_eEutb^HU9l{~&RXof(6!vl$kGEdUldQven)Mo(^*UZ> z9mUUEujiMoqxmiC4g9Wk3~#rN<(<~?e8@V1Pgp1MY3ptLyY+UJYP~~cS!bz^*175m z>s=~fy;}{oE>>4t?^PqM_o)fi73x;&DmBgeuv%n&R4uhWu2xu|QV&_5R!>`>Rj*l} zS6i%`REhN^wafad`r7)2I$+(Rj#%GO$F1+FbJhG^b~EaW0uUsh?r>4Vu%v@CbuYl5;E2 zLLoyD$ny^F0N;=f7*~m&-OT`u>rIsD1oAu;+moarorP_%C_v)13baHmhbPzzoBy!7 zOE(xQ(GzMWA}$#!dZ?p- zeFAv~&=?JFX)m|obGS0nUhc|2AsgI_%_^ro?PVu_#dSf9)d0Zh z9lHJ95ELQr>-Kje0H@zX`EVODxAFWEGQp3j34qhK2+>Ivan+Ha#Rx5{+(!ZWC^YIPNCJ-_thohcA4*?(NA7Ll;NU(Gq6sA zd;(vrAfLdh6hBjB!o1)!9cU#3z~qHL&BuZmON|2AAoElK5Kfk2T({MTpI0P$HL1HL zm$u-s;njqls~SgKo_{JyoZ?CBBuH*2{goD4f1{<=GqlormL9YIPET9^py#aT=oRaE+G72a z-n0HiA6x&Xoygwy*q9F56dku&=(H_~&fAiiZ7G~#OXbS8G_Gn(=UTQ5ZfMKo0$Uch zwN>EGwu;=#R*A2$WwYH@nZ33u9Jb}~RkmCnZmY&O*=q1Dwpu*bR+ksp8t@WZW4_PU zlvmmcd9|%2KW=Non{Ai!tG4$1p{*l-ZR^4ZY~A^1TQC02)|=1S`YEyvP{}r{%CI?9 zC7WB-wE0v$TTnH&U8xFeLnM*r{)XO}re0;6re0-6Onm|Nw;Icg+w*CZ=A=m1m4C#X zi*#T5!wQ(3NnatQmhQ`7{?H_Wfh&oSz+gGG!I?CkU(`f$nb=hDOvKdB0CLqZ^(z_J z-K2gn^^ak3pLBAi`!ZFtCn3D&u?YU9Z@h&^!mLZ*_+yw*!R~@Tk!>1}1pY+shcsK3 z4j$+3;9C+?e;SzA_IOkcsedahA`~Q12G<8#NsvU9VamUS%c_CN_)6elIsjAOkkjZ0 zoL5aQKwfYWjBhP&3-@4{`d)O*l7_BS9lnANz^s3W4!orD*X!K|L8@n(+&F`(6M3xJ z)<#yEG#dYdBp(DSacj2Cl9~ns;fX+NzZWA5z8hruD61L8HLT!j+&@J6nvYcrZI)Djv~!YPkh0*(Oz@xl45E zDypB5BNQKOS5vO-TB>OqLG^4SsgdnEYGxZnEp0#w+D20s8<2uFAO&q>$!fci+_sy@ zZ<|PA+hn@VHigF6rqNBd88pc@OBaCb#@93D7EG)rouMD^XAm>nA_bsc)J}H;lc*oH z=C8pso(wrIfQ$;Ap&NLvPjPQ7;jXJG{P5SK#ZkRn&5|eXPL2Q<{JydmT%E)P7pjh; zxC?%N;suWw_x}uWB`HoyVU_2=*O!w#3V2o1RcKgnusvYGIu}ZnysLD+s0Vd4W>`|d zro~x>0u>ILe;`)ajCIv4pXpL2^1|#wOy;N{k|I=L$^#+kBd?a0;6E^PqB}@>!AwcH zoue4vZ%kGm1OA+B^B^npAu9{0q3v#JYFkKcY>TLaZ83GVErFceLw#-c(jePX^4gX` zM((4Lw)<(EZ8_v)1>J6YfM(lP(n8xRT4sBY9S&^8@BshZe@F)FSUK3 zWzgW>C^BUbmc)=jAc-J@8gs+IMnW1b)P|Ex%njHz49ra!1rOoaPXQ&(+qy`SN|WeS zT_j0EneiEtB1t+eq{sAzs|*xG9zRrs!zp$8nN2M;9b0pgJVEjn=gY3vik?RnU%Lq#ayCt*`4f}TPl!^gI5 zFfyfV5?aaZged6W=Cm%`7d5tq2qRN;F! zy&{u6TZ^#4w8W+e!||DBbbrMCw?LmvAQu1x>g{4+zH!#3~auvEw@Q3h?C|0Eufaq)3CRG!xF`F!VipxP*X#))$)$Ae-ubPL_ zH_Af~0bYf>M}$8tU1k!}bJ8A80%urqI6+3m{3b94Ym}3Y(G$^4G1RA?^ouJ=f&AXA ziYJt$Dn?6EG5MX2z=rI(lxwd>HSN`@o;{x$+iOsP{UT~@uSxCfwWzbbHubjGp#k=~ z&kR-2Cy0=@%@>n(d1kT(mj-RoGi^)p1mjn!B(vXxF)eWPm;85k~l7{4tL$FbPo zEQ?^X&=JB02K09-pd)k_ppbhIs)|7cYcMLzv#3%e?9;+$B+LQ?*Je~pD0(;Gz=j~IaHH{O;N2B7HQi7qT$8yu2$W7UvV_Cd8<>SP`Cc7Pn<)Vx29)01A z!KS8>3wJRgo=^D{xAL(ggH2DB{S;~(t{xbCI3?~=tc`w(@&}tVT{A3jk{Mf+?Z9HN zNnn2%u)!EFW}G&uCFTz!l8L0U=)dYIUa5Y!)kSb@f|5C8EObSW7QaODWDj79_-kvh z_5siSEUs_?eJM$7uEvtuyo{vyAs0aeCKBvu^B&U&&Eshg;1Y+S4_87T22)e}5Nct+ zirU(TLKlWnFZm|{aW(dN6--aNa(|LG|oPXCfl#4>Gshy*M0-^VGJ#` zkENCN8|hK|I9hAJnO?TvLa*CzrMK-<=`;Iu`qDm=zOm1ttWF%I`3AI-$`0i%F=5~fu z%%$6qkiD+Mked-`fa!@=(g^w*T9ZkS(p4mBSQfUH1ki)Y#3vH5YNz?|9***O>J&y3 zdWpS8BQxm@C_^2L(`$|>j5=VuBmxUW6;GEViZT(3Y?VHa6UFuAiy}%g@c#3JHT=(i z62pHJ2w8u(40j1pAYasi$a;{b^ce zf0kC*pQnfHo9J2lOZ0;MRmjvE^oD&4ZMDBc@7v#_kL-eq0j9~gv{CtaJ}N)!Bl6P> z;pTQ&KiP5fAf_TSVHrBWw@Wb~8KLCex)_iGYdT#Q17yd|WL*qMqamR$R-#0a13Uix$zfd0Dl(nV@oX&Z{w+NKSKLr0(62uDkG!Nq<;Xdo`nmK7JgPm;Eu zb>qZkLsVRn_xqBwhi*qf3i9T?0HlD{i$HlHv1<|*}X zNf7X$_WT?5&WfmaVz*yabRx0auNumpXi08DNfq?%)upm}gZVejiBI!+BD0cYz_LFO zO+M@oj5PV`;J2_vaFx7XSX|fq-2@mVYPs21eKQQ}8SpSiAe2XOgAdpMyhsg<{n-sR zCEW<@s5~n$ZiNo8VFBO>zs4#a@fAr_JjyJ}ilTM4=m0FSR9Zf`yh=j$ETvM}pIs6| zl1J;KC5Z!{iF8N#QYg*C;7wl{yeTmnc;>q7EqM*&nuk#fWQ=m!cR>So!vgJr1^OBm z=o?s|y|6(0sK~yby4nxG0%2XL{Sevg-%`MSn1-+m7U(qXu>VS*+kd0I_A_+Yeiq*CcRFSN zgMPQ4qrdIvImP}bSF-=bRqcOsEeCN!2Xj-0;x-NocW@+e4@WZhb)@hhM=HA=X&iE- z^EHkP9_`5Fn;cm@#ZiH0Ix6x!MB)e4Q9^-HZl_h1L?IrtdfAQkY3xX7~I*5 z*DBK6Xzc96YqC=CbKMa`5rIqepr@?Pep3&6R-se;Jn}{fD9MIA4IQ!8D8RPiaaoF!lie8gku|fmQ0(oaiH2(PHQdEA2H&U-20dHp6*YA+;L`*{KeE7PCi-hL@XhP< zHqg~VqgG;6Yf-ty1EXfUsjTBjy#ijVIU@3wagJkiIgaCht8`+T&e#eN zvmBWD|2L`W%pG3iKiH(kBV>zO@(V>x5ty!N-wd}?iV6xgrM*;Kn3MKuWM4^PLhABw zm!lH1l~O3RL~j!-x&FVnVlB=wf;D}^1m(J;ppy3R3` z#yW1N365!WyJI@dcHBV=9W!W|Vx}I^r>S$ z?QtxigO0oDm}4RR=vYL*ITq8OjwNhy+{0OpdpXCklxsMaaXrUvy?IDiUe52zLp6qy(r#sg0osP$NvEy;R&+!C5=y;MJ zb3Db*I@a=L$2xx9@if2VSPvKW41eZ$mcMdr;C+tg_^@LWA9rl#pB*pqZ;sbhvg0k4 z;n=EbI7(C<$2Qf_v0XKF>`*NnpQ$d6FVq!|uT;SCwHoZ$r>=G!R5v;ftLctoa9hXW zwtiBNJAPK{9H-R=#~Jmy;}7+b<4?8MN$QZ(qK-LJ)Q`?|b;_Bg&NwSslAKj6m7RH( zdd}*W7S0;l-5Jo5mZrP2SNGNRxJ7h>*fyHCSNWM7-X6(sxGge%C{*ETu2uWfvE zU)yzh#!L3Kg#aEg_O%&YL9(yS;0nUNHh@E9t2*|zVPCI6MzF6sD{B?M%^hMYmaOA)Y!`g zsziPsj~KmYPEC7V&?RuC_4ObvoTxEXV7S%jW0ZFdIz8MXF?_SEiv?g*NPa=V8Ruf( zin>_KMqh5~i`n^>&6XGYqkiy8Ul{4Pi;^zRwY<43&K#A3?MEYMEb>Yva@M9?XFaO# ztWQmx4XC-ZF?Dt}rGCx=5r0tlCCS@I#J@h8UE3{NkyAE7O!ATC9b~P|fg&>axFsXb zMn?P>HB7Z^w6Okq_+nejezBx4@U<{7tl~ka??k^?nWR(FAylg)*$~RvM>WrRTfO`S z{%Nz&6P-kL8%ymlupqtPe#I$ffFNbMMMCcn9wI5urJ`t@r73h|#t+c#bU~1>D$2k> z#vC+ba@bp$??yeFqLn_4weh0von`O`3YV{HEH~dJEVuV!hypxAzvXA^91ge1?eGF{ z=T*$lqX{4MXt5cvV4m2a=ZR5@tZM#P874qXAY+tocz!iqimXv8 zD6S@7w?=-ppjlfZkCi(hNjIf5k7S2NZ9diq*Hy;6^mvSTDRNwmrP0;Jyozxi&1fRY zeuB7~eU(_vKCPq_jI>IQyr7Zn7aBt@DMQsK5SyszB9OlvqT3Rp+lFd7FQIzQw$#XZ zDK&EzQCnv_YVT}MJ)Iq>kF%HtIy;iv*@=SA&UCf23ypGirE$(~G{xDSW;uJ%d}mKu z;_O8aIxnLqoR`xx&ffH*vk$%I>`Pmn{b;-M3fk%HPhUA2z}gr-z$5z1+g-<4c@=?%)h?H)oLhIzw!ChB@HGHge}+9^o9q zW1Ls<%}#(Yo!9adC$?`nNAn!#Sf1}3&x@TC_#x*ce%g5(Kj*xiH#_g(t8&uGC&j&nScOEmC4tQ9z^;K%^vTefThXt;Z07 z41`VG2@5MA_+9WfpFlN({0Zk;?65vpBMJEe7CV*30jf7mmsn>ZMcD(Zn~s&v579UH zsSGq3maBFtccH}k1kXeoCP~^eJOvGo5Alg!v@H}WoVvlG&I*Q~n4{eMZNVETl!pkYo@d9;C`)q#`O^=^ZfTiD=G2t=hONg^ zfSicck01|AQO1G70!2O8ZW#1))LY{QVeQ^8YwbYvldL-vRpQL}wsNc;GNp(`K!Z*e zN&a8!OvrjM6pYc@)18T3LW&A9R@lI#Pr!Aa4||vb^u5YSi2BV2-+!rLQ6keRB?(=M z#qcQPd>AVIC{%h4R2t9<=i}7E`2q>0b#A7W&KK!X=S#HK`7*uWe1*0+U#Cx;Z_($@t+d-& zLf<>L(Fx~vI_=!S%J~_mI=_HAf5nxZLb({(I)*B-*{%4^3;^k8GXR7b8{0M8qTXP3 zD?X2QD?W;LDlRPI%Rn=VkOI{OQ7MD5Bb>#`8f#rIYbSe-$H&4Qyb?I z>fk&|U7g1uKi^Sb=l77G+I1L#(LyMh%&@$(r z^ni=#NtcDzyHe>;O9V(mNV8zl0Hi^0DnedElcPWycLYc? z3ac`A0^pU3O(#82`4S3SM2{x;wnU0z|^UHy5QnJPmQ?DW^}Vz*Thz>NL`agqHli!_PrAg!|oXYNA;jEtUwCR zv=4b<1>{WK*oWEy>0LSq2z&AEmQ!$_)6ZjHb5i%0X*~p0+S;D7f z4>e^Hd^b>N>ZQ0t{j8irHOD3Yr_kteTY1fxHCBt$1*lAcj_3tk^Dx|%soN}gZ9!2b z^A}3Fsr9hyveuqqN*3&mPq0opW4^%A0GuV%YI@QpZmxzJ_< zqJB2NnttDEfwV7y97?Gj6*1(Ip3Ev0H}rQ0|qF)pCQ5iH%dNu0jYESBe|#RI_~Eh#WvUV?01dkA+8(v8rK*e?HbEBxo+giu5mowHJ<0XZsLWmn|YaQ z0zcrI$d9;g;ip`ac!O&)zwEk|-*ipok6qLGGuKQ$N3|l)z9^e8svITIbAO(pX)^xcD82 zYpCvvL_Gy+0c>Cj{7HM1bRsZ&H3^na!|c`dy0e}_4mDhN)&a9uJ`-lIY$nWJA-O`2 zC4=rzMH)1kiOx?;fJOzQu}sz1lTsCEmAVMg(QZW1YgI)(Pm3v9l}yqN5}5s8dQz$~ zsEvL?^6?oGh)?+_k`F0+eZ~8+7x4fls(!%g5 z8d4qe_fOIh{6;=E=etns5_-0_=+I!rG`c)J`DWeksfnW44M;;iM3=|US0ee4iK-!> zdlPE6Iw1DE0wt~#s*8S4FUuHw`g&Nu+)h1(-i~l#G*xTi5rhk)J~D&@;KF!>tLmw! zM*I|4QgeYYY|I-tEmHP+nf^vHgNZ8bIc93&w@uVEQqIy9Dcl&a1KsY4^ndifL|L$r z@E|ZWYFSZ$OJs#ad4NPCq5zP;iCM-1r6(SvyoCZ5!i>+$dZeTpaEJ)U_|-U%^u@pS zNO7Ce{zkB24BaE#KpEqoS2UTFngSe{B{#b;w4WAl*b^NSiZk702b$rY5YLn|Efw)d zrV}UwAwY8l+nIz6E{M%c=DUc72Z!>^MTOAE=k>N9yPL2}bz@`CTVrlz*nHU8m><*Do~Q zbsC}9uQbi|8;tT9TI4zlqx?Iqbo~LNd=5tWJdE<6Fv@?yDF02{-9$UxOuOBR4!A9J z%$-Ch+{yHtJB9vqr*e`zjWgZpT*aNi`R+`vYyusa_H@SQ9EAGp6NO<0m zVbchr))8rS^9s`l@}h_lYz=}Ob64fV)j|9>N>351Wb5=5+jY}Bmwp4W$`JsS^MLDrgJmGJDkp(h z=vI8@YA}zFsM|2AT3s6%J5@l%B#-iAMkWr{B)w#8TNg7Eu`!V;OUpX6rBP2`Afanx zZ7X0jQ2xe$uoz#KwHRCoM}l%RT^naHzADFJl$V(F(*<8lS#l~UexW%6Z_7)HtAJ~L z%1eohKw{F}MPRz_ew6DTKsDV1sh)cfHF8_2ncGIK+;%E*JE++0q;75x^>X{Ek2^#z z_h9n7htf6ftF@%`F+RH~DUcHrmfky>JamaB5A7i{8We#ki%O`n2_#MSFv$W-Neb%f zM6VO2nu%T{DRAf(J+36K;hwVBP?-Q&6?YB4PP~Q@Yxdts>pdNRPR~1#1HTVtfZZRxC!|N+p;I)IC?mOru_iTFIJ%_fs=hFM`yJ5!`(>LyW>7e^QI^|wLXWXmk zy!&Bh_ajF+w>LHfV7Hh*QY~!0s(8id+#N zG6jEhc$_Hii;5x;jX=W*q7e^D+qL+r+Od+L+$|fUqhXK@M z99d=;>~J|(X)E4216S#VxT|y|dX*wwu>Y3Af{q*gFz}uur%o+IV=FhcQKe1EwF&!T=ci0TU&9_-@!$H7rIpf-FgqY z^*(fK8+7Xf=+=kOt?f8~k7&62V;bw;K@;7d&=mKlG{gNl&2fK8_qq4bO7~t`?LGj# z`WAY1L?6^}<6=d1<^HIyEQ;#NT~S@RBdRO6Ms#H`xj@VF2`)N-?&yBVKAtH!P$Aw+ z1FX0;`WsVGq7iLqs%`L8b4_rZHlSHRSoe%RLbTF$tems;M;zMSacBEo>};F(He-`w z0cz^h2351}Py${ACE$Aiz1aXoK=67wo-UVR9ZUD3l$zQ3aXL^d&bj3!Rpy0p|CX1W z9RCb;`?#kuRq27miQM1g)PBUN{Y3TMC#Z@0Bo(@UhTl5{zxNAubf2c~?q8|5`z(Ck zIU3^ri^h7Grh1ZSfk$EzLXk`S_TAA_8HZCD0Q=j7u8pWqAq|bFPZ5?eTebRhN8d?^ zHb9$*UQ`u4GJIbHO?+hfz9vv4)?N<{bp#L4rV85q9WQ&ulcfw+4`r};oAX2Lio0;d zJuo;j$|uA|W>{aE3>F(z5xS?y-8`(7L;WZfoM1^ZTUS3?zt{Taagsx$z+zii`?>!4uQeK6<2DH`Fklyz+qK`a{X{VCcUR>5DA?7 zshX&@?}jn5sXUk#O{T3B48F|BU56I!rwEBMkZc|2Tr`n0(Y*c&X_w4%-ivnkG(19` ziLu`szX5m^zoApHN|>&D5vkaRFqfM_03j8p%9z4?0;!dxSVxe~?Zdm}(2slz?N7pv zF0`z%wiG{?2mZ#PNU3C5X%0K+2;R3E>Q4QUb{#;Yx&imp{RzBqXP}A40H*b1((9-*O`sE47cdBQrYUqxJ%vOKE7kxUn}sCLpmP{cdAiA6 zFP5^!Lzd9OHkccv1QbIwC50u8D|hNiEr@iL3=@pr5)83{Y(fnPWI33GLPGLWS&M9G z0rM^-1M$ncPn2(w#SXzX|Ig6m#5E=mP)>`h`p3#Z68Xf8GK?wACKiZkdx$4k>Jlv~ zRg|IhD=b4$pn$^W0B^JAkFhUM2kER(|w-R^swgVw>j^c6)Ym z!1IL;CJc&#=<;HYE-ywxW56v7xHWWN*PXecS$75rib?O1ZPuMR-K;y)d9&^e_QnXk z3;h(SJI})_0!ai1Gwh6TqGr*3NF9Zt3mnWSun4J3MS6lZYO;b#NWGSTqU9v)!8bIO z^PzbrMS*ZO?xiY;nx|P*;wrLGG?Y!^3#$eW5LzUYy$St!%gxXtVULaHMmbf!7X7cG zN6_+JR-9Il0t!ZpUe7Ci`%(l@dc&?JdekbEA<%QZWp_6kfEkhDClEYt;>U&A5kK^d z5IZi2<9C#v8OR+muPB_4>SS?_?9|}(3E_hzD!NLVIJ_7el1=0%jL@N$+Y!slj?=RX zFcrp>Y#X(Kl3`@T^9_`2FO+N_HTCSL7M=st)^m_Ldk#@A&$n>)hiQ=K2su4R$?rKv zLpoc>8T{hw)#=M=5={6f!pPSZ=CU+HbnZ?w&G zhIV+)(k{>MwAb?o9rm1~M&3%?%!{g{H;=n| zv1!JOu@rA@c6;mbP;WyX<88t>d7JShZ=qJWZH8!>4w$37G-%31@XgpX5rMaGZ>X8x z7S3Hvcnh~P;Vr068t|5B^ap*Z9)l<^q~lN$fihr!hpt#=&>GMZSBIKq(sNLy{ZOAQ z)M~b%MI#FLHn3v(Xv|cE(rp0BOLm;@!q~11>t5G_Y&}%0&3$YopV}8#8Wdj9qB$Gf@%rBJ0f;I&iadvf# z_AbFw8lIpU;&8NTh6ZT0%;eQ!_;pMj&1cnVPhCc)R6(H}i&T6>w_#erL>H5Q#11@?BZ zzXn4>Uz!FRzYYIx1viI)|IlRw3&Q7!v(mtU;N#rnArQWaWCveII-)-t-lss~v&934){KtAP3wX~;FJ)o02Pg4XyzQr@~HP6*D%gdmdK>$Dy_%pXQz(@nZrX@3CI zr?Yzj7x#>$_YjlIOK0~+{W>wLkIzG5XQs>7-oZGtp*XW)IJ2v9X2YqO_ZpnpwK%g8 z)Y&_ddU~&;KHkyf_KqdLcRbE)0?z9eeGWzi?3U;`gd!^I+XZlMoA4z+(b-6JV0S29{?EW_nRtf)PukM~^gb_1DLyc?*8_c_S^^EA-Ak(}Naa6B*42=6O& zi}!UL&09E{tvH$zn(uvIA5YNu#?j-sF?u}LN9e{(PJ4OIhFz#f5Tl|3P)gtLr9{I=(M)CNSCcU zIiV|ZEa=KTOSGR7_>wO2I)dpm>8xDc@I1XcZ)li zy2bqw$)*2LDHNAtrU?cHAs{geJ8f$v^mYo5VbYd z*2$v^QiV%cC>@*e)YRZH8F~uiN8~*X89DWau0$@OfC^KdGztFIeBd zX^;;;>SManr|4>*g+}?3Xq+#ZCizlmnlF{+_|oWZUpn3E%b-<0@X`6QXuYojz2K`z zulXv`+dizl@a51KzN)m_mrqB1HR+764yXF+bC$0WSN2`ZRec3~k*@{U^|j_!zP5a+ zuN@crin*(=la^0o^*}dMKDnVOp8yUSv2-iQpM)+JxXuii4O#Nh74nr0Q<4l@{s*K| zmV9{8!I#2SDyYN`=)zSRjY7iO5#}YGCegbrL}VE>jov_DvlapA9C{IPvJ|uKM%~tMtTnU(39ZZuz5rnIH~80VEEl*#wZkJ>J#ZVg2lqn|W`mY>Pgp$wA0fsm zYM_kXzJ7|FwgFf{#bBWu2%Clf01YCBSu3L;Y6!k8TJ3Z)PC?TCK|%iGYLJxcg)uL^ zKGZzi@Rr8bgAUiJ;4H+;irtM3|m-v?9Z zyPo#=#?XG>I6CaRnZEbkLMMEB0V`@8`YcRg1!%;CEPNa_rtg@Q76_MkI|wU;D^h6z zFeO5yODm(5mW7c@%Lufdg*zu5QTSAiYtKLwJ`n;u9m0x{Wz<7wKv-u1Kb?y}rUE$i zhC-B2An_9+G@8-#qwHi_25}QXpCG!_%bT$J!iZmBoa<=8%P2?i0?;kcHqp;ce3DCG;1%EmOQVN8V7Wmr1JR^cZ33SA^g=~spd?1C;>qSumAE?8tSvUEu-tuA(mr7ej`p5_4aVR5Gqi#vT- z-07PE$(squn+3_6O_%!SP)FZf>h7CIy?uAm0N-7ZzWEgNVc&u8Zb;uk8tq#|H~ALR z6yFk>>$?Z$^j=!(TS_Z^_tQGx1N5x#L3-1-n%?oPp>4h=XqRs-eeGLM2Yegoh;Jhu zM+5Gp?j1t2Fab8U5AxFkAN zqn*EI)KFOPEQEM6P?Pk1YKl`Vo)Hhg)>SAga!IQpagFqa`v%5-FVt-xqL}?mz5|@@JIL9-LtNeWE!XxP=0?6F zTN~|Q->>ZVo#m0fb3DoS7faL zeE=mzi;uS;>lIbU7IHmK18f{1&;~ZHFId+N8cYu_*J_=HQJWoa~*@;;T)cSyEA7y@(sphg=imUp2Xq-choCv6ePPLp9Y;eX5<99%}4% zEEvO6%UKD{%KFD{n(!yj%qEQu-t{$R3!W02y<74kjm0vV!z zvYvdO{G$2^#x6EF56fth-KK+y4v)9sb`yWxJV&1Ex%q#+{K6Qc%gc;2TX}#>^v$cF z;?O{PPg5dHJP(uneRV39mlOBvi3@SXLT<^c7FR{nmNJp-Ef03GZzAJcDU%sxe%qpl zhw|#hy=h+kxF<2&+65Ia@?!~;A4{10Si??iq4 zooS%I3%UGVDd_J;SNXfs2!9W{(chD9@%N(J{g=^f|K)VIzc(%Q_n`; z8~=l8`VVrW;N6QvRdrdut!YaYc)6RvYKGp zWp!gD1Z%GX2(tFTE_YXU1X+>*^ifwJ?3WQAm+At`E7g=BfEhb9^kRf+2BOSbFe^8z zdI<3)0k}og0A*%p*yY<5EGT|nm~FDmY*i%ze>Vtrc`5(N(~t^O1ZVtdowruPPK_UR z-kOaydHVslkj~G`{1t5VZrJ4#{*VO^pM#|1ZQWhUg=K$LcbD?$D9GIo0^?T|XuUPC z(1Wl^<5ykMdy3d)9d<+sf^|v z&`bObGahM02*i-|d=5BeknRYiRHDv~=5{||FAOLK@Zfli|4^EOSvLw))yi6S`Wwe5 zY%bTwS@!DxVA*wnDjTiaP01gidttF4M@H(i0;V37D+}lWHmUl6ELsL9*s^ltAu5&} z%ny{PA1G1(R_N?I(AjsXz+VD=eUCc&->0trZPd&E0S)kfNH+h+G}!+sjq>k=beL2$ z*PHT+t7|5#{Uh=^0O!yVSKgwpyg^0NTYE>n?g5Nel3tLTbTvBL3Y_a{t+mhG#E%zcm<}odnu6h^yfdHOGuh&E{bqDK_tVLBBUoK!4i1 z!kPUI=wF`9$*u>y5WV}_2FkFG+?_Yyp)U40!SB|~uUq=+VOF-j{6mBM`tct~FHZDg zTYP;iiRY*C>*CH*18<|BqmU)9B_H{436=5O-iFXpTF$@fHR7Ep)>I2hlP?#{W4v zF`5*4>2c1hRGFyk>{k3wqG;5&)X=U}NK4AX8^uiv=V}>PBQlmP<@#ZruV`3fKIm3U zG~H^odI@<{gVN9Sj{3aD@qWIEq&^qR4Ynn2$uE#3s4(su`8Ode#36ZSkL`_x-=ZXa7cD z_|MQj|5-ZX|DAsD{{f$U4nF%lTl{~*XaB`H{=YdtKwLM#+$5m5dBDPL14-O5kjy;- zDcl!3kOl_Q*b_+Sa3F)P31sq^Ko(C3RN&hJ6?s;m63-80^F4veydqGAR|j(V$v`eY z8_46$fvWs^pc-!tROfAheEuv@gLelm;(dXdd?Zkde+bm(Q-M1CXP~Z13e;1Xf%>XS zpn<9$XsBujnyBW1W~y_bx#|&UrFsW0QT+o&$`!U)4*g)i@+4iC4p&{_JJ9e&VkvMet~(GL4o-eXJDbl7g#K|7(}buVw$$t z(#5pJmJShH+}hGqmkiM$vj{{}a=IRt>Slw?l4Ul?EGcM^t(69ug(3~I!Rim>Z?Z{d zf;yzp`4T(qj=;2LtIr}Ztp)1C2u$l<^$v1AS+cuEy`ZP%D$zPDW~`dxK&ATywMIt= zmFZQrN=FA(ux4=)?ZdLuM)nZ z1AuLMltl?YUR@6JdCiYkkH_%$fOl@gc<=;11TMUfF&;dNcVawv8^(j@^L8~GpP&&x z$s53cHwfdw&+=31X*C%Q_ien;@&K~Ui}^F2ZOOoIH09l(n#ja&G~**Y-ckYYTYz}W zozfPcv=B2qgDly|KAWp5+$Xg!dJ8QSqMOvS_}7-&hpwPnxqqu%YGp<*y6i7)%5{iG zv}?s(iaU~mo{)R|9|75zL5}e1nWM&$e+KLZJHmc3e-<>hv5i$|A|OLW9D@hAHR2l} za}eU7xquh(ic##9Kr^8Y$IBsT(k5IH=gw=F@6Kfk0IqofrY#~)7QxJ18Mx4E2ZiYb zz5*+G&?iVOsLa0$NnBcvS{)frE7LWNGl6>BZYdOwMjhx5_6A~{U6_WbM-i)l0TlEg zz#0UWQf}aWsu@^L^#UuXao_}>hpBI1H4O?pM&7{V6b?K= zLj&vS#=r)e64*$01UA#cz{_-R;5AwvctgicM%Q$OsjDcyn{m^mh^{t9aWt|Vm2N=& zMY>YOGz1k3VIS;;26q)maSA?jf9UE7=&BdbL_>{cb`#w-?QiZNL%fQBwSiRTam`$a*=7#W`>bK|>&#zcRITzMKqeF8HVSd*E9N0$2d z=06o*B$S1llA~o>&0-R4AHQ-_LM?3C)PJb9U^Dgp>fJ@4FNsu`>*v>$O`NN6gWcB+ za0iw}++zP)Lttr2;M2F1Y5)r$pd=An7OP`m&^=bjXb@k>$WO~j#|yfWkx@F>D7^z{ zi{>xUmD>cArbI|pN>wtzKwr*6={SunLn)Y#-;h$SUfsE+TCLKbB$3!e4}Ii;*rabh zsOd}c8pxxDcod6nu7X}r;B9E}yU^kisvmfdngrg576UaJ_<)K6A3~G2Q@6lJ(BzM4 zKwt+s1D}vT@F`sx_>6`HcGAee=QK9(1x*U>IY*pK#fEVLtukWH59E&fensTmvcwdI?`y8>a20B=`>9hq0cTuBMVeh z9fxGny{bOq5Lv9W8e=ARz%F7gUu9vJr{uTKfs*8F)H*8BOZ*oJGh#Nq$!By#QW*ZisI2oyt%j2= zMD`xH2`#;G8Rr4(cbQqP#)t_j8>C$Z90<%h90#(!6a)d;)!`kYLw=<>N4%w)y<$(L zwJXjAz1*R4GhDFi7@tecPfLo7>ZKV2xLKxKimk5HzgaN+7Is8{OzXrS?hX3$amm&4Xo#gygQ&7<0$;EZdzh5TfmkPin zll{V{8_d-9_Ldu zdzPkA(es6}{G_B>wbG8{Ul3?rI1v{=vn3yXW{dclE!7$){M{yaF%MaI-~6WXGtpE$ z=8#rn1eb!?{1wFJuOK#m1qV~(;1DVZUPY~fL#Ze@j5-CcrXIoJbVU%Gzk=6NC^&+K z1xM2L!Ru&za1>1nUQbhlqiII)2AUTfL-z*9(yHK%^muR_tq+c;jlrAfrQpr@2dhmWO2`=Z4f-87u@B!WvT*(K6tN6R%gM2dh5T6M?tSGoz zr34>QS;5EDMZqUko!~mvF!&4{)N^o9FQ`j`FRGrwS5%+i>&hE^OI;h>s%{FFs7b+X zYHD!1ni1Tg<_14g_XodFtAbytM}l9g=Y#vyi@}5Hwcug3C3sAI8a%Fc1%Fas2Y*%v zf~VEb!87W&;2-K-@J|cCqn6~5#gY+9*6H-ih6#&0wCJWl72Oo5uqhA*8Nf01IiSD& zVD>txk0V4gJ=FUcz7Xy~r`oKWps5s6>k*<0(abRQIM6*ZgmJxEr70pZXuMj6QmM2^ zSAnVP8w|x~flz)JO6;;@YrP7g#QrfH+IH0iu1JVxcEXA6$7|WNN40`0l2ZIZ)l@I0 zu0qFET{?sb${aeaKq7-jxrCj}NTR{E#YxEeq}X1SGZpD#do{E|Pg+uuxK_tX>+euv z7q+beFm(y(Zw>5O`3mW@ux)wyc_hc;(8hvd_$l=m(&>r3M9t9Y^mLx9X2WIGfh)Wn z+*y)NFXmg+T>Nf5Ud7=%LAZ1Zivk=y+Go>4e9hp+!L+?`MY!gH zg%XcxuDb8A5Ga3 z?QTjnWwqOh8hp$>btDRd?g`bU`$P5U!BBmAEYyIW z4mG5Wp+@v_s4=}2YC_vW7t<%9ru0Rq8GREfphKZT`YzO*PK8>~@1d4Vp;nw4YRwfx zZ8#@%3D*d<<$9q@`QlJ}ZWrpv9YbBXPpCV4L%lc@>dn`O`tbvy0sL^t%8!K{yf)!&DuytgFqhABU9JY>DQ0Dm<}0sFd1m#^@|&)?nT7%JHmrmWzIDY-YHVgm&h^AP z7^qxC)#u2oZ9?m^HbE_gF98;m8^zg#Hvec7^ptiSS>J-9WK+#zbr&-RMb%{zKpwbT zRwOfQP|ys_wn?QSMfTNY;tsWxto#&I*mP5|CJHTh4f}-?v@aUSl`5t)yQ=4{^iLYAyf9n&C!K`A?6^e^NyL3xG>9hv-g6hUhxc zcai$uWyn0Gx1WOF`wDrnWWzyBW(q$}8bG;QpdG^XKayTS@NfX~KLL~of~Cp?d(Pv! zx1R-6`EsDnXW3W%weE_h# z50(Wv@Y~6Z3w+j zn?fJbE1{3+&CsXxQRs8p6Z(?&hxX9n&|dmJv|r1f0pmSx${u9LtSxVY?CCud^avzL z@0kGHHnL{|pxnrw39Mp`?3n-*JhEp3F!9Kq2`om9?3qBdT&gM9GeKSu;kSnD-A{HF z^hXv(MEmp1G|DFhO~&~>5H2qb=mf%}ba3!R~9p|dnQ^gD#^4+z~k zS{C|?9t$(A4JXkn;2wE1oI&q|E6}!ZHhmnV=z7!_DZ@Z~=7;7gE=7bGj_tik#s~$Qv%A zYr`Gr`fw+@E!;&PqQMq6C3=WgMGr9)^;V83@V{>q_}>$UDBY;br~|x}9HQuYEq&2D znoOArSScl!7TA0QJ;;G%BX~lG(9#u`R`@gq#$DPjxR`q0nRD#y-buvgP9oU4cobnFzK77MVeJA=uglYb4I? z1#F0^B~=-OSa%@VKvjkwLMn0q_U2`}C&GdL7VObCutwSR9?ilypK#IapebAxkE)=Z zFb4liRYsJhw{FvZV^U*8QwCHR{>fCK)}WDxP$-xy132ETtXg5iQ!-u!6JVTLbuUM) zVwLz4`g2|Xs#i{VJLlf*;G|bwPmm+o1R5-Pm zTv@C2M}w0~A5j6r#^lQgIVcE)b)jWZ>1MhYwHw4Szkv-=*nH3yUm<}_ z(oG0t+7)L?Oq^(!O3^dxqsvQ6ipQ!WiQA$_iDO54Gduu=U%`>Sjw5}88iwDbrs21! zO?V4+2)_+)v=wIN9qJo?mj;DP;E~>=aQJ;17T!i9!ynMN@P|0k?KskpU}`?5dEp(j zF#HKE4ezAo;a&7pcsFehe?zZ^(S-|xQ#*VFCgzwv@<~umf-;*UY%fKQydfd>#z6~h z>^k5oj3q#iz)*;J=s*v^y9s_eOcM}#2!47P#v#8>3gO5{(sfYZK{(KHU{#g!txWp{ zbon*|gKJ%Nz>%p%qm}l3izqA7i;Gj@q_ETpM8OS`DMYxHwWwTPR#cLOsT|EW)hbR@ zdjC&~N+CpG6^OZon*)2FKtK>LD`s~IBI3|OgV;G!3rv2xMrRHa@GE3#R6@-!*#5%9 zAm|$DuGwy2F)Bsy4LK<6VI*V~UKpl~flRRV??b^4cZV>>W=@S@#IrO;BeqpW3v;!o zRRSP`kKzVC8z2o~tg0c;mSeCD|B_zxf7p8u@Tlr;eRQpzMu5-}T$GXC{;2Ip6tz z=icYu=RW#OV`h^4_Uh|h?@AZshIS3TGAyFeewDY}M8~W&P!%zk(h_l}{i~t6{Vx?F z6vppYoIN4_%m1=pC56NNYR*miRQal4n3@{lxKqnVJP9?c!pMmH)bz+VAa=}`o>kbe zauybZ(wOg|g+D2Chb)K7~w4b&1%L$p#LBS9^u`*C>pTG-Y{ubh~#5V@e z0ON8Bx2XP6(H9V~hiJjXpev$E0XoD`2O#Pw!ybi=W`Z3?voT-?wIYmW&uF8GSUk*% zgD3Y1YHg*U)?gweI|FwS%_@{M#Oo_&rDUqrm75GkUm5LyL0Ah3pM z=yw2(pt>Ha0}^^i7*C+y5gwKcA;!u9QGmXCa#}g{4m??aZ6>%|gl#7B+FW_^H^${k zqwf!*kP5JxnBc9bj4E0)=(uRFqy3`o`3Il@%yPPHzWNpx5qq#QFfWH^doV9o3CjWP zd0IMPY1otXIksw50{sd z-Z@!exMx;Wv?(^bFc*C=a)~sVvem8t{69>HQlV7ArhZ|xfn?>$1>Y1}*^;kj@Iq6{ zm^Z|)RA@~XW|a2_sf;Bkt|m{bixmf$ZGV9QI|VjKtsU{Zr`D05U$5ZLSJ3}dfDU>H z=pa8ea=U$+q@AgaBEDiLF`oq9>574N}rrh93CX$p-rO(nDGK607vr?IAKG}$zr?l;Y#xu%)$84u7h(=1wP znoVm>b7-?^E0q2EnQ zK^(J;6HLoF$@D0vm>%OQrpLLqX$3bht>mVrRovRNnmd}F;BKZh+~4#h4>PT0o9QX` znx5uyrgc2kv>rZV13zeb27Y5BuP|+b@7T;6P0#WRrY-!cX)C{B+Q$1$+xd{`Irxqp ze8IGnFPmQC?@h1qpQbnXZ_`^^Nz*>9tm$2?yeVI+W%@v?Z~9PcY5G{pF&)=Bnoeqc zO`mBd(;3ZfI;TxCeW^_~eXY$feWT4WeWxun{irQ5{j4oF{i1C!{iZ!@`a^rp^q02N zOj@2fMtj2?uf1(f)IKzq)Q*`;Yv;`6w6Dym+Arpc+VAGd+AVX{m>6@7m@?+tF{$Qy zF*VH@%2$1=n>xc+!LA3Bn;0#a++=CLqEd4lNk9lvons$-wR>!{1rQcrt+}Y=%D(|Ah%|?H=X7%Fu4j!%`P63y(391zU%nhBgRZ>j-?+8LhhlFJOXO z>xB8h)94;v)zFcI4=PW;YYmJEZmpKq2EMK$d{${~nsxxbs)`nmzg^%7wfS%OG=V2H z@Pr2ee3*-$i--ikhwb>e^>{7M*B0XE z*5{2p6L5!kp#5Lq$=dVy84dVV%r8EH*D`rOThvrQLq5dAVv6InMtp(dwHNWeEagjA z3&tN)`B}Ozg|{?D58))yp21370UZSWsCs~#h&5x{!JvZ`^0EXx6WjurlX!tXBA`Al z87o~!x*9};qce%|MYMTvamIa8+t};@C^d`xCR1 z8sQ$;=~9i5#Ux_%FOQy!av=XaLl$Io31z(s5RjS_VOdpyE}RTMECapfMwDW1Lh0tF zRKwhiGR)1XvAG4cFt?-}b2fD{x1t{A*3`$`hK8DR$ZT#)E^|Bbo7>X_a|fDk?ntxE zo#;XH9kkTknO2&+&{O8FwAp+o?KIy-Z<~A3$L2nC!rY%un+MT3^HBQAJc7P8kES2Z zX1Z>+F`1nlXLhS3S#M5?GU^PUR}9mEp&Gq8pMhXANd5q&4w65>M93~xkUyYFE`{HC z>OpS?$sf$LIaot;VN_V(l=~nktc2F8I4EcD0T{OmOvg$Z3zKjGVeV7F!Abil37<5h zee^R-hg4Ven*Fn(=451`7|fr;F(Tr1C8}8}la?quN-$#=!|J6&FfT_4=D;EaGXjf> zSrbFx3Ko-5+(i%;-bA5-FuVrFgiH~!?y_zdAy{$XR)e#-JOJgD#n~l{FD!{NGJ>L{ zw2~?)!jlD#;%M79-#$QH8;WswSFc0p7Mb2UrzVh83_4hLG5qx3|zEB8GNQn0uW5WcTwNSs*MF=5*!+Tr}DY66(C-9rdo`)0w{7V1{DS^X9 zAREOxmB&)OpB2Kf0{ul-6vDA0C(&tza7^QB_@1h976cA0@$Sn2{#RD^XQWDFGpKUV z^%i!n1zyn|tvFxxvgEjN){sX<&kHWJra=pU!tmh2HcIP*7%dt;G353(Drgb@S6bQv zD*RQEVxzGQoO@D~+W#N4vkSP%u!o$DdODfW(Ke%_ZAM4ijE=S$9c?o@+GcdL&FE;G z(a|=eqise<+l-F3869miI@)G*w9V*fo6*rWqoZv`N85~!wiz95^Ix>VLiDU9hIU!v zX^$n5_E}2OK}%^mWWl(HC6&%vD$*58CFK?W88&eQjwK89j7BGWSE!RMdZBl+*CVvn zJK3TadMA5HsFMw78$2M!XK7NXlbs7sDV^*kC_L*#k$_UDp%xuB(NcAX9yDMRQZ$hw z3Bo=RIGN{DW1Kn*1wu6Rf^^`-u)4JkJ=AdS++ygn#Fjr z)(p^2A=X3Q-ca0_>@ypHN9VH>ahsN1yrGm!itIUrXEKAJF}R5WnY!{OVF8*T2F+5H zQY;a&q``-GT@2>LPeDe;kBF&kM}BhGj6-wG5$#mZ8+tGK{hPSx1l?g7N!=`?sF%e=!!1^FT6BDA1O3+yojs^I zK{Y6?y>2*rAxG~8sW^s5k-Q_F5(vx73>_I$_(0$sW1uBO6C)19RQN!6rL2a-R=Aiu zI^Ym~$&*8%2B;#IkEYnvhu=Gtf#9fbQr9~eOK#UfE7%c!XS^`wZ zl1mLN05Mv|Q7g-M>R_2bT`UvnF3UYM$TF3zmT5G>A{}W0&PM$Sp~D#(I-CJGoOm2g z14Qn!MNyct+rh(2X`nwoSvd&Zh*Q2#7QKo5fGHl?Abb~Ep7<~t@OV4J)ncR@xDTCm z-w|X2(UI5$bmZx5O4em4?r#nV2%mY@E?NoY8!o(En44W3OFh}uhIa8U3{ zO@n8XgQQ)Dy2vT%dnFqcX4OajteanZ5eJnKJgCVL2jwVyP_lLKAJ-FL?_gX(9n;S& zdNV-*VGAFeu6a-5;GV|8t;4~s$H8rYa6JRz+6dv=1kKwF;o3_5Ezi+l%Zuc&yhM{M zuS6W+Rcf#cajH7##a zJWqy3idvwWw{ONX4@A3CqliW?wwf&&7`IV6gTLH^bT zQIv?$UDTY}*T^^^GP;H#XE;=FEiM-8r8n6FMI3H3e4`w0q_NK} z`fw2n--eZYb*t<2{gf)7;%sjLkB6wUI)2|v6ry5E zpu%PW?}BRqu)iB}^H;W71?nh(To9CRL6l3lI0(GLWq=k?TTxhstEdX%*%QJbA;m%P zN1*m`O$a0uFaY3(n*!$p=Wa0o{YvJ=&WqNYhzlK!oKaD1Ax7vZpnxJI&rdBC@jc;! zNZ2UlLD|8no8}g<>?M<1?pw3Nd2s7G}Ky&Mq4YB z&6-YbYZV%6txES;tI%nVaO*pHRO{U8uH2Yg7Vpzs|KUwY_1TDl7}LV{}^*Z@hBXA z!7|~HfMVh)K(uB;5NG0D(tk*#`IL_+`7p{2TfjFY9Qq~bMNm$c$D@*j7B5N$7w{Xs ziPA$wd`l@h0Dk^+=wp{goQSd5n9}H}i!sr;_JJXaEC66R95i7;FaeV>!dl?ZK^A6o zsr5ySD3BuuL#Q;du$BOM7>EC0LL;Yp*~Llm^iMC9!|y(+C-dqPvNtO%g0I71i&eh(e~aV&LYyWL4DC= zuhF4^`52ZH7qkef7Z4j#cjH~*;U}>n*x!ZuLuuTD0?>F%cyX|L3ygv-Eiq(=62%VT z<`m3EJP7S#cf%0jo+cQdFI3V+9xNqY^wd$(m7eFV3l<&UqLhPw@N zvk4qD>3K1;L5GWHHr&9cfe}|;gte6)u00xU`J{9khpKJ#oR?YzRODjd=<=@`YzWfG z$hQe3D!Tl88+u!LdqqhUA_>4#D@9n*)XEW0qFH1Vw{0|)jH0=f?t9ob^8f;=ymd0P zX9~1uDzxW5*xmb~J<}-5I-QzZXTbK(ga$nT4VncFnoYy4bI59)OCIYy*xmUw*}8zH zSr^hg>w~n|x`>urAEK4k#jv|eXtVWUdfxg7y<%NTd#uY~cbC&)>!Yx{kHPLfPUo#F z=(2SsZ0{=i&AOUyS)bqp>l!X)eUekGYq_%ZDXwXKnj2czadYc>Zg1Vd-K@{R_HN|C z)=fOhx|to;XW4Jv!V|1pd8&0A&#(etWPOeoTc77;))#n{^+kT#x`Us!zRY>nJl<`6 zo%dSz@Db}?{=~YUzp@_SZ>{g~@76v^q} z^`h3!dP(bH{Z<=d{a&+Kf6^veuW3`PziJDuH?<|!Kegr7zr>>O5MA{Ri=v_MuE#8z z!E)PNlTASq{I%0$m6M<}yJ-CovmA!uuxd?JvnigyZHp3`Ovg>bh`YWsex6oJvC<{d zVie3i#lOmQ=q0WQFH(XI@JA>VO9}cg=c7<8CFsw1H_OVUZ7*vAKRhnR7AREbA%D`2XGsm{S!ny}5KvmdN=!Zue0{pU(x zo0H!4JT8TSdf|!@u(5QQtMe)h^*@JiuA#hFE>%G1crDe8@Lu7Xq0aWAL$8d^aIlGt zs*(C*^!_lT!l(y+*uaR&BL1(b$^hsBBge)6dV?6|eQIIz&fnuI$qKn+5w7mOqRqR6 z)`p?_PX&a!{Y%81);`*DMH+^v{?%<_wgQx)Vc)72GorJaVnc_~7DqK~@l@BAK#gt1 zDBG4u?QF&A4qFN8Wh+VjY)LfKR*FX3N|Vi2hTOKYG}cy*?y)7)bXy9|wpE~Iwo0_t zR)wCoRi~G1wP>%cF1>5Zprf`-<%ga6i5gmin8xtKf^F6#eZe-1)-=Y1UvMoq8QA8b zh;ocb$`*>GMg=3O=`@)1dZWZZ4b_C`6k|V~PGujAfmBT>6z=GdfN6zgATAX$P#rG5 zPJ|3hFIon~Eg>`A0W2PTCQ?9mFAhZ^aK`h+BcB3RSwPAXg{WJVvs8?E-Ihal+uG6)TRW&# zdve-3K&3iDr8?0x+Z{B=)|nRBx|+IJdNo z;2hgX?rIywJ#3@7pKS~ewV8Od&CGV2jVIcie6P*J(`w*+hks9o5JgC z_wx?h41U!%i+9`Ra=vW=pRz6D%eE!_y=^J~Y4?0cNL5aXkDGZA4 zHG}Y};1l>rqbK)saQ&713pR<c{oiVTnlc+>7fbp&@Svy+Usg|`$c!-^G!3y{~~ZV~1> zO5wG+^5k#X77okEG5EN#E<84rDyc+g81T!;TW+MKsGJSAajoQqL_k=O;A{e08fY|6 z-wH4lL0(5=QN-F60R2Xf%!URvbo^FP9Ao=alOk|!7m+g}itQWVQrg|vdOmk_&UM53Xg3`e#XVDomu=Dh@)_cCSJUZE`8tJK1V zGPZ3Ob+x@lJ#DX3f7@;vW_yFi*!Gaa_9ppkZ_y;%Ub^4*HqEu|qlaw!X}RqkT4Q^c zHrNip<{hLLZTXaEdyn?m-lunLAJ7N3LkKGl(<$4Bbl&z6?A{Uj-u5wFvmK?Iwqx|S z?KsEVKH((W2~M`1j_q@9Vf%tx+b-~(wy$`w?J|$BU15{$2iUx;Jjr&Q zr`m47*8R>aZ2#glw!e9uUE@vmINoM2#xL4S@E&_9K5Q?`N9`$m!Crwc*(>pP_H<>> zbZkm!njDmi!4L;16+Ohs;yS zFd9IG@`4l%za(`k0S(CFv>P&Uk)X4B=qxlKr9uD)%Y>>`D4?HR*go-hI9*|Ij%4_l zQ?z~hj|B93aaZ_&Q4!WTXb{XNM};|&OD+EE0&E1U44``X$$UuN4lBU;R80Crit#BF zk^r1hfyiE+QtY)T-Cmn&*y~VTdtGX5uSePT`qa*zL3h|2P%nEX^|Lpmq4q{J+MY!= zdt>t2o6vZBQ<`CKK}+ndXth0uw%Xg%3-(U*hP?}2vEQkpdz}&bcB~zGbblZe-R}uS z_phP?DzL1fKp5!Jy_aS|xJC5GV*z_IghywDuCKr(lfrv+l~+@B&Ew*$LLohJx_L#2 zfCWK>%o5L!i09`QDFQ){@!y2_Vy$f>l=E*!UEBWxh#S5-J)w4F?}4k+8&~IUT%A6Y zVegBp(~nx%`%{j60Clntq#ky3DD8u3fPDzA&~S3vN6|fY6WwpO(gSt}&9kd1Fw)0{ z=Nmy4c?}~(sFC8VWrlP#u7ui+hI2RIvAsj^*lsXPIy|<0FsKsct)cK5ScMo;-p~Y; z96!_#2fwh0gCC27mp;|Xh=YGHeDFb(MzHZI{o_1dhHjPM6VP6l`Y@mxcnv8PTB2EU z(@ph7^Wt`3Tp0hHRj{F4CBhR18(5LA2q#pLz=Z*V4X|T|#Euyf`&g=JA4m1<i z=*_~Fp(}Dfu85#L>d`oyeqUUXhM3Wnee9rOB#R1eV^PN+0%ssS=fP+p3Km3f7FJh! z&^OrQ5|9HMDXne`aTy*e;xasfZ~U_87Lm+6rrE>pO(5F#JO9vhhh z1SBQO7U>Q0NF9iacoMz<*>YU=UAO?daRJ`I1=s^e@g`;3-+}_{g#x?{XYmdMAEWQ~ z_i2>;ILR2Q1&^%s5!bxImQ!$CpHi0nGdQl()ZYF%b+wIDbko^)Zw_m0;_HSr|{ae~%zd|qCzoR_+_q50U1HEJakv_2hL`Usc>6HCv`rLkv zzO?^JKihB8ul7G#v)|%!4(1AuSWb5&a1BRsZt6(lY)2XH;z;I!j`BRrk;bDP>1=gW zW0#|bl3JaQ#cfC}_co-Ky9cE<3z!!pVmG9=Jy>Oph`n|wVy_U2*vo_>_822#r(cYS zoqjMPc3{MV5j&kUB6gS|sWu>D$COGiVyD-Qh@D=dV8l*XKch$Nm`Twib}>KQDG5jt zEJF%8>4M>OkrB2Sq^NirKIE|?lK~?4Y%-4GOe=|~!IM_901r7T0tQn=v9yvp4>>rJWCsVjo_T77 z1<<3i(hBv13Q20H;}CBEWC7w@ECNkIETVN1J&cat3p>2%)xsglh5SODMR2q3SF}i} zWn&`(l@Kv_erifY7a**V#{l^wM;%IW)TeYu2Gw>npbSSQHFGqiHjYNr(UC=69gV4n zqY3qOG^JsVW;Djpoa~MkS#r?9j)m>M;lt|$f4DawzSUCjy5~m({@J( z+TrL(d5%u>rsEDe=;%yG99`&BM^`%MxRWk9y3r4g?(~b}F8agKgW1uO6CAy`q@xd) zarEcvjzQeWF_fD*MsR1xXzuPXb8m-@M>(8qad_D2@be_cSf1*bz%v|^`60)>N=bD# z*2N(u9T!y6+L+)EB9+;Oh*q(pAo&dF5j3fB*^qD(+JPS^~J(Nw78 z3A`^6;~g=e$q` z1!yX;DMq#Wl`@7^PeGg<_e1q&K=o!)4aWmi$1#fW%QI|IX&xmlwNQ=Mz1;^ zr#+4p^p0aCec)I{M;)u_Gsly3*6}o5aBP73ZKCfSTj)>6b|%LQ9Ou{xpZE&bbnN1K zj@{hC@g}!%yv^Ml?{F{2LGI^xPpQ}2x^RTlt7XUsHi3XDfD9)h0Z{-MsEAIuIf(v( z+6V;CN#8+PWE4AqL1&qYN}&5tQJ0b9Vl)dlNAX#S^f0{x?r3ZDQ|JjjX5 z;}a#pMD`5oO~>&Yy-H7_-qaWBwTB+ZIJJ-+e?SXRUy`cTQOsir1AJNd$tn1G^N~J_ zDs@pUzb`4-P$lS*P;^4O^lFlN5FA9tWBi)}28I@%>YczRiqN0I2+7MsfBHq}&zeH| z6I>=0(+bO^K%8heu5j7}(GTs&R7&!{$>yiPhVSciemzj&hWp!v(l-3nRV@36&5P@W zo*-VFk)0~aQ`9)*e}dF6vfhlflKTs=1clW{g_4fLP@f}EpO2}g<0#d09HWMgNpLr^*N1ooS}OhXKA|Q3!39NM~fWiX_?~!t#W)x zPdhHsM#oq1Twl}6j!U%LahdixzM=OV-@zvkU;@+<7z+_5uSS;-x$& z!%7P)k?w&qeWKK8I@IL^o|T|Q@JJ~L2TQ`^yapd8gA`ArO(j086m6$X@LcgwqnE*# z`x#UQj0Us<6o7Z*x7`Q6+_O+93?>3mC}Yl2P@Y9+V!wr#Itf)4rA<{z)=SkMPEh%v zk_FWZDi-ovk#k+rUefv~U8|K4dque{eas8>S~#nzE&FNw3vGNYxM*g-B7X_%rHUw> zwJ60|m(rc}sD`sX)p2G}17`zj;>@Hr&W6<4*@${LvuJ>`F%5S%A(OKy*`3YE<7`f2 zoh|4-XG@yp%%+E(t!SmQH9h5QLmQnrwB6a3UU9agH=OP1ZD$91-`SBqc6OrAoOjT9 zXJ`7>*@dn;yV7sYJL#6Q8^=1kb8+WgT*ldpQ=EOcqO(6&aSq~|PDGT>5!}j&h|-CO z(rM%VPA3m>BBFHq+21qhRkLXc%c@5Ay(JMktxEET` zvmuskxUyCMV^Y^!>62Nd8M_e6(Y(^qY4qOQMG$TZ4J$Zs|qkxmUQPsFP6S@g2dJ)d7G*kTQ*$Q*FXvq9 z?p#1aoQufnT&yg$K7D61u0E1x1BuibS6?dRtuZhqwb#h$yY}jMRG$H+>zTp_5Zf6C zPzk2%Xv6_*EcyU~svooog*y$h*#t&FFgqZ`1llLTFdv2$GoFXL-^!|C7sw9P`o<@d z(y(Y9GY3O~<}D`O@Tc%X6xv78cnyP*0`=An;WB(eu^hsnN*^37hNI+P#v$QNOO62h z6axIhmZpTjKIneW*IVG_GePYoEpU(`Rsb%Fvnzti{?+WXsEd31Zb@oFL@*wmMBk

    u3om9eQ_GiSZnKq0_|Gd)0EjAx*rq24Q-Jd@={rRb{#NBBNKlht zK=JO61FJ3t#$xv;VD~S_?oY(-UqNjHS7P@kQ6w;#It8Xs_rO%@9hgS_0@Gc;4dfY4QNZ{1|mlH9Z~e8GE!Id$a+2bPF{L+)8$FPI@-aBayMGDpXXh6D&fh}Vpee^+|(&`jpkm+*1Y;+?b?&kph0fZp_yi+K&5 zQlQ?-pXNgG5jLoEFSgxHC*wn44w#h`oWhSaEZ_|2q3aTwPLN(6A zN&FNNQ~{aa0jQdmq?w$*_SzGkN0n?(I1$6rV<|A1;w}@-qTQ&8Rb=x+X+c7@v_oT) zE0YB2$A1(g3|gXz(z!4RGBLiF1wa37iE=rGrRH^W?qwG=jKiUO7L{-aeVz6q+Ttv7 zp65j=gX0fL+M*~9^PG^2sESvvmMAVJ(pJxNRzNoTdu{ztF{jUuk&Y z42=!^Mw0`-)6BqG$n_tzDDWq(4E#kmgC^_NAk$qzMO%XodLZbeqF@F+8!S&JgO%v7 zU{!VoYjC+>O|BetA)lVhwSx7zX|NHu3N~ebumwkgdE7nNmInko@Wnwl4-5MEieNyW z0u$3-X`Kb`XPpJ`?3;N9Kl@=>B>fWScCajR7P@i^oB$mQ<~m3m>R2#mA#tc$5N!LBfwvjam*Q&cA@fxvxG8-vfOJ&*CCr+fVVRB1&}NDdJRM^ej%yOlJl#?X9S} zkg+*c!0RB$I31XFD>!dIbIixpK7g#v3A|PvDEM)(A9hJ#T3}#!iYW22(ah6UTv*PO zI)NOsl(jiCrM7K>dA$7kcvaJO4hp-b4r~5Y`kXn3;Pe9x@bRQ`_VYiUGdrw_AP0^E zI{wqFvsN6}wCW+iD*YcEKKlQak`CwIFBElCyckHD26q%Jc-c}y<|@OYXt%RO@-{W- zngC=;_C${Hwp1$We{W>yf1RgJ=7c7NJaP< zr@RY=gXdD`U{^XX*bU`#-Ra_B4-jdbN8^G$>B?X)ni=d(^MdEo^+7lS!M?O6cmZt) z_M=U~3+diqf7%fofP;;J9Knm|U~mw<97M-t@M3y5ID|e8UP505FU5f$O1}n&u_HK~ z%LhkrmEcIu4vym7;An0V9K(6RaU2X@jy&0wd`@r*pC6pgLxVGURB#SY4qn4o1sCw5 z;B|aMa53K&T*mhXSMY&@&ecqg;bbc+ZbpF*?sbsZ-G!>ZX(dH?PBl;F#TopO@ z0xAMZPLf)Ijyg7@N(Y{MaW0Egs3Y7u-02V^_>gFDCwK1}BZ zAE92sM{z)Q(%@hbjSB9<0ePGz2KUme;67R!JOKawAl(#vURx)#z~yF3@L)wOUubHg zIG_bxZV4WZgy4yF@}quE8os4CpjSfhdg1XK$aH1UC~D80ocpoRg20;T0+(S{feUh5 zdRG%^F6Yw%<4pknTj{NFF2L60;%I!5v^Bq%-kKx;pM<;M4~>&vg+56oo~fH;Jul8~ zX{3+%-*^cEPIP4oghNCy-RiAP6RMx`67oCtclP2}!!N-&S;G74c(W0zzkOwh#h=gixNX#|=U|ZC}N^#wkJ%v(Id^H3Of}ONbsPwj# zO?YFDh)$4>Cm}!^=|LIBA?Gha&cXZ@d=+wj1jgVsY88B)+6IqOe(((n1mC1+@Ga^Z zd>h;Q4h;;xOT&Wi(PhE+A?qK|l;AO%5&V$m20x-D!H;QG@Do}W{FLqteg>3x94PMu zjKSwH24B!K!7pJ9zM`YSuVD8ZelgUJ4~IJP(U6Bf4(W&}*EXf!I-g+vOPo*M zpD+vo7=d#Tg>;}4{%)v#sh8~vep8tVl}3GdH6s0opk@d1QhHaP&tVKt3a`PF0iF&7U=BWj?)n+S%Y@B43*}iKg2Ve|uymJ4A8SuUQ)_Zf z@W@GKB8MBHe&TEN%+=zS^cdJ+4x=a4Lk~E5RAw3V>?1n8G78=}-SCt(jOVnj|ec zI!QDAS+-`fa~j;JOJ0`x2=riPY-VRM?}Rhul%`PX??9!J2i4D=ZEA^**cS>RW*S1w zG=!LG2r<)8oZ5y8$P)rw3Y|*@p{{gps2BAQ^`TLr3$(^J>!3zk5``GGrSYvPSZ$%- zMZ24IP`NsK*`DAsXvM8?2gV4qyNww2hoz&^WyGv9*tZ#Y%(WX&rXgxC7$txxyxDkiDM}zs4|)_8K=Y*oql`yK zuVh_KjM73!iALKPrC3v#?khBc`493g?@7tRz<+k&KZM ze?Ye(S}N{#X1UTA?yQA{asgiLOuF#$_Jx-fA040fADOF`b_PILa!ZJqB0gH)f<~nW zHFft2Q*&`hRxlMpvQ=D_HF(04?qGJtT~DNA@fyGrK$j$CL6Rr|v>Me&H3N-}uJRAG|(HygBUP`@-q`P`DgF8m^!Zg30;5(>e%X zXtmJMO$l`5(O>R1J1G@ZO3Dv4+I@u$U~tI^k_T20FJR9ZHFPv=c=waEVF<$ zK0#&=j2*xq5?wBjPNUYqNqT%MHwDX`xXl~6mae#{guHS21Uh;c7zd~l=;$fT_K=~| zRp}rY@0QaCxZ2n06AYM^&e8WVBXJetcQsIV{3`ZO+~#lS1-Qtk;5MJ4ryZXlrdJak zrbP~Eoy*~Jxc!>I*r5;k0A0872i3Ch4*-ui&4Os8^Fz{$0(kU|IVVJ&K%zNQqI9t2 zJUvm!0T&Ed2e*JeIuDsyv9!M6%OGfCo8~9!i%Mnd3ls@TE!Z#_^r=Ql!68Z{&~SiA zHJU%rz*LF@Em_i?;zU@rn}sE;PYOc-Dp!cYRVXW5opQr9s9`vZnuW8eb+{&V4CjzP zT#Jmbi#mmK>4I>5x-{H~MuwZx*l-J)7|x^F;kGm{+&;-0mguL+BR9&DCuASYSZyVNdMDId_*w`aw@uoK z8mT*xuxkIUR^ir8Rivs0|9NJc1Sm2jKw;U>;ub(D(v=}?IDr*G1XfWO=e9QQD+Bc* zVFVzk8UhA3309STFBOB5vguSBt<*NZl4M#X+EEKjq#zz>ysZQ5i+O!=oWCV`ymjG925nbY*xPO%IR9(Vc*!dpTVn zo=7XhSJ2wKpT@Em$Kd<}gVUO*?q*U?|$ z#auDGjH`uLaLw>)t`okATZGqfoA3rLf+kf=TT2AFdO`%7K+PwBC#TuK^Q;X#e@+0; zp->CADi_qjSb7$4Q_7L9L{68D;^;tq9Vjq*hJEFqF5GM@;Bm64s%KrW@~ zyp79g1>7Lt9nB28G{8D$31&naZ23GXY^8!AlIxJ>)Wo{B9%bsR1U!>~73S-0)5*$W z!JGx6L<(<&VBQJAybF446ZF{K)GB-rgmW{6!ds{yyp?){3#o7TUI^xWG$edK4G(Xl z%fb)Pdtt@4jm^onzA_NzsR%yx6*OY-zyDdp_T%{$aM3!ePdK)G1>>ByJ`3M5B`SBiG&!dx1gbSvFk= zD4(3ku4{5&rj|1+vtHRfqB>j^{s{~F3)K(*3VnZuT7-WCO#7YMhtHBH{0D_1MCV2v zbU_3h5fO8inpyonDzRwwsf*1961Ukv+G|5E$Dx%bX)>$->u9J2Ar@#XOQV}Y0k1S4 zQ)YwGYvYJvZKVGHvZS?XXs=BPci4{UIR^g2nBtBglYsg{zq4hak!LUo`oRV<#aqsL zxxA~qc(oN=<+U=z6H9->dL!=N%3sNxt!lj?CAHuxFWg0gL2|F}oI2l-S9RoW$0c~E z&?egaqFvMymCIGF(E-Rej6k6X$U*r>Z1$}GQqx~CIYo(CdpQ+Ky0m5H4(u+!q}-OS z?ucMoSp?I{BA8YdsYWd$)v0Zy2KgdcWJI#5Q=}&Kh~!Y;NG%#1anbNdZ5kV?Lz5%9 zG&53{u8Gv6g^~KSJko$}iZrBKB8}+oNMpJ$(u8(In$qq_GkPl0oDN1>(2+<>dNyzzpywvEbz2T2a_IRxjoQ*f(AG1-=J*k`dIegJq^|g)6`{e8Y5-9Qj6~1E7nS(@eE=FK zbbS6@u*ogQYnY-*bCpbGL4`I=b~w}KLKBHD=}OY+_f5&_e-jQv<7@8`_d2W&H6u2_ z38rQOn#OSgbTH|{@c=rfap`lFJ`r}Q8JKpDB%P}!rO%aR1CZwGg%BD0p~Y1wuPC#b zJiFAA;gTg()~izNk(70{UM`*2>#kYF5H12Siw+l|a&JCPnG@#>xi);$9kK>@FRx5=<>KNexpGVJu3_?qb?|Gs za!bq%sqd;UpVPoqUw;msbPP6>*Sr|Tq3;^Ia^=B%OcayvTBvUq%a`FB#aNdIdRvC) zh^sZtb2Tk;bQh~DnZ{C1MTU49ATF*UpHI_$B=2KPdZJ2#vzj*OrYk&!emGK!`| zM$@dw7@8Nkj21=4(u&A9D6;W%Yh(g#id;_jMkdns$Q86R0xu#miJpy2rdJ|U=&i_9 zIu@BmpGBtAw~?#pr^pQYJu;J3WEPi;%;u_*Ib17pHP?&G<>rxVxNT$}`y%t%h%DgF zk!!hEWFcP|xsC@%uIHhVMLa69n8!z!@Z`u+o*h}n3nMr1^2l;t8(F~{BP;pt$SS@s zvYK~9*6{Agjl4f{6F(QZnO}~q<<}zX_=CuL{w%VAzlz+(-$m}=A0wNTifmRHkwTRd zxnJc*9#jn@J5;mCqbe`5OSO+Yu40kB>ioz)bz$Uy8Xh^Qu8h2(u8zEZuk&1xqo*#cG=N($Z;!nh518#SBx_C0g+!9H<6p#aj-vz1?+LU3nJbi(0t4vR-8Yl`EBDrT(MI=jw!1pbd#Hf^^ zALCQ_#FwFrzva&m`ol+vHP+R+8!z~&4( zI=rJ6w?+E*TYQR(4ZhKl4mDq!JA(!|16NRod-1i7O#EIhU&wPDGWxhKT3h-fDJw%S z)^Z5riw|Mw#YT2JPvEBw_&zKAA(bc3vPF90mE!`jJn%R` ziwB#7(s}g90Px~5%6v>K)Uvb{LS2E`$T}v;3bnGWkd>uDf=1;*AGbxlHs(|SLrGTB zOjD{o-jdk2q2B^CoZI|OZR`tlku)LHt|0?!RF#M5dXKs$HK!t9Bhv}d~FA; zP=_LCtGpU%8}QewF~N?mj#K6V7O3SlRTE00IDVW5nStadw@fqtTHAMm|RkH+MEX+{5s4Kf}j^4L=Vv0(_YfO=YMjFl8l8Bj(V6!cUHE`;F287W<)cP7{=n$Y zpBX*)E8{#c5%lCUMlb%;=&jO>^HpV|kIFXss$Am&)!gW(+8G0sVGL528AH?zW2m~? z7@-yzqtzl~th&LNpjI1KsN0Rn>TYA2+F{I4MaFD((3q^ma4Ce z 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

    T|-r!I*J2*lu4USef1jnfr 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 literal 0 HcmV?d00001 diff --git a/bin/randoop/RandoopTest7.class b/bin/randoop/RandoopTest7.class new file mode 100644 index 0000000000000000000000000000000000000000..9a9367f7cdd9bbf45b34a0e85bac837fb4db929d GIT binary patch literal 450727 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�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

    MuNjI^nl!zY%GN-FvgWslXuV@R)lU2 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 O@Z2hPrETbv_kREclJ!LZ literal 0 HcmV?d00001 diff --git a/bin/randoop/RandoopTest8.class b/bin/randoop/RandoopTest8.class new file mode 100644 index 0000000000000000000000000000000000000000..28db87da7d43e50bdf6a53c189a8b9c0a48da313 GIT binary patch literal 434339 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

    sdz_mr? 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 EZ$p3R@Bjb+ literal 0 HcmV?d00001 diff --git a/bin/randoop/RandoopTest9.class b/bin/randoop/RandoopTest9.class new file mode 100644 index 0000000000000000000000000000000000000000..7390f326314dd7518c88565684de2b41a05c4050 GIT binary patch literal 427398 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

    h256uKfnx`9^4u`J%eZB#oX?3H*EH?wv^GF_Rs zaRVsZPk<`^POhceTh~Ap|1if?CnW6E_!#?DXZ(%oI<73HIFjyzR3njeBc>FYD`UnL z+f4Zh|0n1S@;a^Sp>^#+Wk|#zd4+Wn5^vFM)9Lu{l7*!QBqK6a(y9cdbec9hJw9Pi zV#VbkI-e4s=9CZ7v9A`H4ISMSxMGsjD!Zo<+)z`{1D`C zMI#wPS+*PgOQ9@Hd`*B4vctz%Y=;FImQc%*2tK1+UDJhulE71c^l5PtWhAg

    hpSMWqf!qxC5>+JLg64XJ9h5!H$| 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

    oF1Ca6+^SQYG@9356$P^p+!6( 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 literal 0 HcmV?d00001 diff --git a/bin/randoopFailures/RandoopTest_failure_1.class b/bin/randoopFailures/RandoopTest_failure_1.class new file mode 100644 index 0000000000000000000000000000000000000000..ade42c729aacda180ccdc8b501e00a28c201af2e GIT binary patch literal 1195 zcma)5T~pIQ6g}ItO(_8i2=XBaBG6JxK=1=vQK;0Hii~B7;sdj7ml9}`PLhKD6n};| zQ$`*A0sbh*yGb3y>4Oj1+&%Z>oZWl(=dZ6n0IcAJiU7l`&CQBsHFDgjHErSOul@a= zaNNTqA3R)E5o8!SX_|(sAKAPv&Mo^?moZuH2!>Eal$uorcEAwHlxqeBZZIhEM3Etw zwJM?u4BZ++2s8BM4O8qi>m_0D@luWQ2l7^#*NWUWn3(Fx@v^Cv(!TYgmH3Pe-^#!!f+>1>*;aqV%q4Sj7WBdyAJ( ztG3lNE7ab2TMs{X^{iF1?6eGjq~S5vD4dGrEL;2uA8eoTD%vlf){v1?px8~5X5oz6 zOR^gs&O@D-ZW79JzPalENLsrOw&{= z^qLsDiGX^?Xaz#bXGA}d5r9T(*n?H{c!*4=>29a!^p{DYg-i7Pn-cO; zG(Q0S7@$DvC?yAQgX|#fhCJpkq$EVh#s#7u5xc<6feGb1ZnrSK{|)nRFOkS6TUgjm zDlIIwk)2cv_t%5T(O?S?$-6H36;JY=p|hGb1tq6P!oWk@YnU55-G zGHB^cnIVz)Yhnlt=S(Cq$S_iLJh2wFDnf4Yic9{ZMZe13GMA1z_k@FsaTo&{EEB^> zQK+!#v>9fL{|j}FfQ5wd4ues6SrtL(_+DGbIK$XJKj5~@y@tKjl>VW*b_kQWqT@1y zb*e2LwL{S|aTOm>K7JH3Tq?$D$G116TbRdwUF>u6Dde?)e!}H)bx=7o(0e-BJp8Rcv!< z$D0lA3D>|ZEVX1!e2O`S^9>O$@#>3)^dqlE4NCVS^25;1`>ro@%G@?_TlGbkBH#p2 z$?lp&u6c&>wg@-HFA+6h*{??Jf~Sg1u@dRsOj%jpH?e@vWAAp82gCzCy+WU^_JN6< zifzg>K~ngV+R${SmH$^JzQ!X0S9he?kbWR!c$9BaQz_I$pF-vHnX-;N!|+KB3Z7^k z8CXI=QEZtQLl6{zC46UM1&;|Y)nYRy^NJD|O{~T_ix&r#d!>*Jo(c^kryb z6D3OOfV+`cr{-NumwILFwoe(wb$n)`jBSPsK@{d)M|k18bcpO{6X~_LPs8Ji?wHtB z*oJtmw&sUU{fOWnaCuv?_9W-izSD##H4TW>4SCvLs)W)kDAkE)TrD+LN=2PxD@2u2 zNJLrXL2qo0k{`*cSa#H4U+F&%s!*7wCqbj9h~TPsfp!{F(CMcnAmTGxfu#03jNfQ8 z0F&0iSghlGEK%)1PM6}F|0X<1 zl89F@euec46QkF(zwl89)7!5xyK{_8G26k-Ra$OkwGQrNt(r#P4n8B%7unH8Yu=jb z;Nfd5?U3Ra->l7b@a_EstxvLZmhlJHI@luP?-fif&g=nY0-PgA!}Q*aU SpacePanel.width + r || y > SpacePanel.height + r) + return true; + return false; + } + public void draw (Graphics2D g) { + g.setColor(color); + g.fillOval((int) (x - r) - 10, (int) (y - r) - 15, 2 * r, 2 * r); + } + + // Setters + // Getters + public double getX () {return x;} + public double getY () {return y;} + public double getR () {return r;} +} \ No newline at end of file diff --git a/src/SpaceWar/Enemy.java b/src/SpaceWar/Enemy.java new file mode 100644 index 0000000..7218d92 --- /dev/null +++ b/src/SpaceWar/Enemy.java @@ -0,0 +1,254 @@ +package SpaceWar; + +import java.awt.*; +import java.awt.image.*; +import java.net.URL; +import javax.imageio.*; +import java.awt.image.*; +import java.net.URL; +import javax.imageio.*; + +public class Enemy extends Generals { + private boolean ready, dead, hit; + private Color color; + private BufferedImage enemyT1, enemyT1Large, enemyT1Mini, enemyT1Medium; + private BufferedImage enemyT2, enemyT2Large, enemyT2Mini, enemyT2Medium; + private BufferedImage enemyT3, enemyT3Large, enemyT3Mini, enemyT3Medium; + private BufferedImage enemyT1Trans, enemyT1LargeTrans, enemyT1MiniTrans, enemyT1MediumTrans; + private BufferedImage enemyT2Trans, enemyT2LargeTrans, enemyT2MiniTrans, enemyT2MediumTrans; + private BufferedImage enemyT3Trans, enemyT3LargeTrans, enemyT3MiniTrans, enemyT3MediumTrans; + private BufferedImage image; + private double x, y, dx, dy, rad, speed; + private int r, health, type, rank; + private long hitTimer; + + public Enemy (int type, int rank) { + this.type = type; + this.rank = rank; + + if (enemyT1Mini == null) enemyT1Mini = loadImg ("/img/badass/badass1Mini.png"); + if (enemyT1Medium == null) enemyT1Medium = loadImg ("/img/badass/badass1Medium.png"); + if (enemyT1 == null) enemyT1 = loadImg ("/img/badass/badass1.png"); + if (enemyT1Large == null) enemyT1Large = loadImg ("/img/badass/badass1Large.png"); + // ------------------------------transparency badass 1 + if (enemyT1Trans == null) enemyT1Trans = loadImg ("/img/badass/transparency/badass1-transp.png"); + if (enemyT1LargeTrans == null) enemyT1LargeTrans = loadImg ("/img/badass/transparency/badass1Large-transp.png"); + if (enemyT1MiniTrans == null) enemyT1MiniTrans = loadImg ("/img/badass/transparency/badass1Mini-transp.png"); + if (enemyT1MediumTrans == null) enemyT1MediumTrans = loadImg ("/img/badass/transparency/badass1Medium-transp.png"); + + if (enemyT2Mini == null) enemyT2Mini = loadImg ("/img/badass/badass2Mini.png"); + if (enemyT2Medium == null) enemyT2Medium = loadImg ("/img/badass/badass2Medium.png"); + if (enemyT2 == null) enemyT2 = loadImg ("/img/badass/badass2.png"); + if (enemyT2Large == null) enemyT2Large = loadImg ("/img/badass/badass2Large.png"); + // ------------------------------transparency badass 2 + if (enemyT2Trans == null) enemyT2Trans = loadImg ("/img/badass/transparency/badass2-transp.png"); + if (enemyT2LargeTrans == null) enemyT2LargeTrans = loadImg ("/img/badass/transparency/badass2Large-transp.png"); + if (enemyT2MiniTrans == null) enemyT2MiniTrans = loadImg ("/img/badass/transparency/badass2Mini-transp.png"); + if (enemyT2MediumTrans == null) enemyT2MediumTrans = loadImg ("/img/badass/transparency/badass2Medium-transp.png"); + + if (enemyT3Mini == null) enemyT3Mini = loadImg ("/img/badass/badass3Mini.png"); + if (enemyT3Medium == null) enemyT3Medium = loadImg ("/img/badass/badass3Medium.png"); + if (enemyT3 == null) enemyT3 = loadImg ("/img/badass/badass3.png"); + if (enemyT3Large == null) enemyT3Large = loadImg ("/img/badass/badass3Large.png"); + // ------------------------------transparency badass 3 + if (enemyT3Trans == null) enemyT3Trans = loadImg ("/img/badass/transparency/badass3-transp.png"); + if (enemyT3LargeTrans == null) enemyT3LargeTrans = loadImg ("/img/badass/transparency/badass3Large-transp.png"); + if (enemyT3MiniTrans == null) enemyT3MiniTrans = loadImg ("/img/badass/transparency/badass3Mini-transp.png"); + if (enemyT3MediumTrans == null) enemyT3MediumTrans = loadImg ("/img/badass/transparency/badass3Medium-transp.png"); + + if (type == 1) { + if (rank == 1) { + speed = 3; + r = 15; + health = 1; + + image = enemyT1Mini; + } + if (rank == 2) { + speed = 3; + r = 25; + health = 2; + + image = enemyT1Medium; + } + if (rank == 3) { + speed = 1.5; + r = 30; + health = 3; + + image = enemyT1; + } + if (rank == 4) { + speed = 1.5; + r = 40; + health = 5; + + image = enemyT1Large; + } + } + // Stronger, faster default + if (type == 2) { + if (rank == 1) { + speed = 3; + r = 15; + health = 2; + image = enemyT2Mini; + } + if (rank == 2) { + speed = 3; + r = 25; + health = 3; + image = enemyT2Medium; + } + if (rank == 3) { + speed = 2.5; + r = 30; + health = 3; + image = enemyT2; + } + if (rank == 4) { + speed = 2.5; + r = 40; + health = 4; + image = enemyT2Large; + } + } + // Slow, but hard to kill + if (type == 3) { + if (rank == 1) { + speed = 1.5; + r = 15; + health = 5; + image = enemyT3Mini; + } + if (rank == 2) { + speed = 1.5; + r = 25; + health = 6; + image = enemyT3Medium; + } + if (rank == 3) { + speed = 1.5; + r = 30; + health = 7; + image = enemyT3; + } + if (rank == 4) { + speed = 1.5; + r = 40; + health = 8; + image = enemyT3Large; + } + } + + x = Math.random() * SpacePanel.width / 2 + SpacePanel.width / 4; + y = -r; + + double angle = Math.random() * 140 + 20; + rad = Math.toRadians(angle); + + dx = Math.cos(rad) * speed; + dy = Math.sin(rad) * speed; + + ready = false; + dead = false; + hit = false; + hitTimer = 0; + } + + // Setters + // Getters + public double getX () {return x;} + public double getY () {return y;} + public int getR () {return r;} + public boolean isDead () {return dead;} + public int getType () {return type;} + public int getRank () {return rank;} + + // General methods + public void explode () { + if (rank > 1) { + int amount = 0; + if (type == 1) amount = 2; + if (type == 2) amount = 3; + if (type == 3) amount = 4; + + for (int i = 0; i < amount; i++) { + Enemy e = new Enemy(getType(), getRank() - 1); + e.x = this.x; + e.y = this.y; + double angle = 0; + + if (!ready) angle = Math.random() * 140 + 20; + else angle = Math.random() * 360; + + e.rad = Math.toRadians(angle); + SpacePanel.enemies.add(e); + } + } + } + public void hit () { + health--; + if (health <= 0) dead = true; + hit = true; + hitTimer = System.nanoTime(); + } + + // Render methods + public void update () { + x += dx; + y += dy; + + if (!ready) + if (x > r && x < SpacePanel.width - r && y > r && y < SpacePanel.height - r) + ready = true; + + // Bounce + if (x < r && dx < 0) dx = -dx; + if (y < r && dy < 0) dy = -dy; + if (x > SpacePanel.width - r && dx > 0) dx = -dx; + if (y > SpacePanel.height - r && dy > 0) dy = -dy; + + if (hit) { + long elapsed = (System.nanoTime() - hitTimer) / 1000000; + if (elapsed > 50) { + hit = false; + hitTimer = 0; + } + } + } + public void draw (Graphics2D g) { + if (hit) { + if (image == enemyT1) image = enemyT1Trans; + if (image == enemyT1Large) image = enemyT1LargeTrans; + if (image == enemyT1Mini) image = enemyT1MiniTrans; + if (image == enemyT1Medium) image = enemyT1MediumTrans; + + if (image == enemyT2) image = enemyT2Trans; + + /*g.setColor(Color.WHITE); + g.fillOval((int) (x - r), (int) (y - r), 2 * r, 2 * r); + + g.setStroke(new BasicStroke(3)); + g.setColor(Color.WHITE.darker()); + g.drawOval((int) (x - r), (int) (y - r), 2 * r, 2 * r); + g.setStroke(new BasicStroke(1));*/ + } else { + if (image == enemyT1Trans) image = enemyT1; + if (image == enemyT1LargeTrans) image = enemyT1Large; + if (image == enemyT1MiniTrans) image = enemyT1Mini; + if (image == enemyT1MediumTrans) image = enemyT1Medium; + + if (image == enemyT2Trans) image = enemyT2; + + /*g.setColor(c1); + g.fillOval((int) (x - r), (int) (y - r), 2 * r, 2 * r); + + g.setStroke(new BasicStroke(3)); + g.setColor(c1.darker()); + g.drawOval((int) (x - r), (int) (y - r), 2 * r, 2 * r); + g.setStroke(new BasicStroke(1));*/ + } + g.drawImage(image, (int) (x - r), (int) (y - r), null); + } +} \ No newline at end of file diff --git a/src/SpaceWar/Explosion.java b/src/SpaceWar/Explosion.java new file mode 100644 index 0000000..f758ecd --- /dev/null +++ b/src/SpaceWar/Explosion.java @@ -0,0 +1,28 @@ +package SpaceWar; + +import java.awt.*; + +public class Explosion { + private double x, y; + private int r, maxRadius; + + public Explosion (double x, double y, int r, int max) { + this.x = x; + this.y = y; + this.r = r; + this.maxRadius = max; + } + + public boolean update () { + r++; + if (r >= maxRadius) + return true; + return false; + } + public void draw (Graphics2D g) { + g.setColor(new Color(255, 255, 255, 128)); + g.setStroke(new BasicStroke(3)); + g.drawOval((int) (x - r), (int) (y - r), 2 * r, 2 * r); + g.setStroke(new BasicStroke(1)); + } +} \ No newline at end of file diff --git a/src/SpaceWar/Generals.java b/src/SpaceWar/Generals.java new file mode 100644 index 0000000..a2b07fb --- /dev/null +++ b/src/SpaceWar/Generals.java @@ -0,0 +1,20 @@ +package SpaceWar; + +import java.awt.image.*; +import java.net.URL; +import javax.imageio.*; + +public class Generals { + // Loading image + public BufferedImage loadImg (String urlName) { + try { + URL url = getClass().getResource(urlName); + BufferedImage img = ImageIO.read(url); + System.out.println(getClass().getResource(urlName)); + return img; + } catch (Exception e) { + System.out.println("Error " + e.getMessage()); + return null; + } + } +} \ No newline at end of file diff --git a/src/SpaceWar/Player.java b/src/SpaceWar/Player.java new file mode 100644 index 0000000..c033516 --- /dev/null +++ b/src/SpaceWar/Player.java @@ -0,0 +1,159 @@ +package SpaceWar; + +import java.awt.*; +import java.awt.image.*; +import java.net.URL; +import javax.imageio.*; + +public class Player extends Generals { + private boolean left, right, up, down, firing, recovering; + private BufferedImage imageUp, imageUpTrans /*,imageLeft, imageRigth, imageDown*/, image; + private Color color1, color2; + private int requiredPower[] = {1, 2, 3, 4, 5, 6, 7, 8}; + private int x, y, r, dx, dy, speed, lives, score, powerLevel, power; + private long firingTimer, firingDelay, recoveryTimer; + + public Player () { + x = SpacePanel.width / 2; + y = SpacePanel.height - 100; + r = 25; + + dx = 0; + dy = 0; + speed = 5; + lives = 3; + + color1 = Color.WHITE; + color2 = Color.RED; + + firing = false; + firingTimer = System.nanoTime(); + firingDelay = 200; + + recovering = false; + recoveryTimer = System.nanoTime(); + + score = 0; + + if (imageUp == null) imageUp = loadImg ("/img/hero/hero-up.png"); + if (imageUpTrans == null) imageUpTrans = loadImg ("/img/hero/hero-up-transp.png"); + //if (imageDown == null) imageDown = loadImg ("/img/hero/hero-down.png"); + //if (imageRigth == null) imageRigth = loadImg ("/img/hero/hero-right.png"); + //if (imageLeft == null) imageLeft = loadImg ("/img/hero/hero-left.png"); + image = imageUp; + } + + // Render methods + public void update () { + if (left) dx = -speed; + if (right) dx = speed; + if (up) dy = -speed; + if (down) dy = speed; + + x += dx; + y += dy; + + // setting the frame border + if (x < r) x = r; + if (y < r) y = r; + if (x > SpacePanel.width - r) x = SpacePanel.width - r; + if (y > SpacePanel.height - r) y = SpacePanel.height - r; + + dx = 0; + dy = 0; + + if (firing) { + long elapsed = (System.nanoTime() - firingTimer) / 1000000; + if (elapsed > firingDelay) { + firingTimer = System.nanoTime(); + if (powerLevel < 2) + SpacePanel.bullets.add(new Bullet(270, (x + 10), y)); + else + if (powerLevel < 3) { + SpacePanel.bullets.add(new Bullet(270, (x + 10) + 5, y)); + SpacePanel.bullets.add(new Bullet(270, (x + 10) - 5, y)); + } else + if (powerLevel < 4) { + SpacePanel.bullets.add(new Bullet(265, (x + 10) - 5, y)); + SpacePanel.bullets.add(new Bullet(270, (x + 10), y)); + SpacePanel.bullets.add(new Bullet(277, (x + 10) + 5, y)); + } else { + SpacePanel.bullets.add(new Bullet(264, (x + 10) - 3, y)); + SpacePanel.bullets.add(new Bullet(267, (x + 10) - 3, y)); + SpacePanel.bullets.add(new Bullet(270, (x + 10), y)); + SpacePanel.bullets.add(new Bullet(273, (x + 10) + 3, y)); + SpacePanel.bullets.add(new Bullet(276, (x + 10) + 3, y)); + } + } + } + + // Time, i am invencible (2 s) + if (recovering) { + long elapsed = (System.nanoTime() - recoveryTimer) / 1000000; + if (elapsed > 2000) { + recovering = false; + recoveryTimer = 0; + } + } + } + public void draw (Graphics2D g) { + if (recovering) { + image = imageUpTrans; + g.drawImage(image, x - r, y - r, null); + /*g.setColor(color2); + g.fillOval(x - r, y - r, 2 * r, 2 * r); + + g.setStroke(new BasicStroke(3)); + g.setColor(color2.darker()); + g.drawOval(x - r, y - r, 2 * r, 2 * r); + g.setStroke(new BasicStroke(1));*/ + } else { + // This is the player + image = imageUp; + g.drawImage(image, x - r, y - r, null); + /*g.setColor(color1); + g.fillOval(x - r, y - r, 2 * r, 2 * r); + + g.setStroke(new BasicStroke(3)); + g.setColor(color1.darker()); + g.drawOval(x - r, y - r, 2 * r, 2 * r); + g.setStroke(new BasicStroke(1));*/ + } + } + + // Setters + public void setLife (int life) {lives = life;} + public void setLeft (boolean direction) {left = direction;} + public void setRigth (boolean direction) {right = direction;} + public void setUp (boolean direction) {up = direction;} + public void setDown (boolean direction) {down = direction;} + public void setFiring (boolean fire) {firing = fire;} + public void setScore (int sc) {score += sc;} + // Getters + public boolean isDead () {return lives <= 0;} + public boolean isRecovering () {return recovering;} + public int getLives () {return lives;} + public int getPower () {return power;} + public int getPowerLevel () {return powerLevel;} + public int getR () {return r;} + public int getRequiredPower () {return requiredPower[powerLevel];} + public int getScore () {return score;} + public int getX () {return x;} + public int getY () {return y;} + + // General methods + public void loseLife () { + lives--; + recovering = true; + recoveryTimer = System.nanoTime(); + } + public void increasePower (int pwr) { + if (power < 6) { + power += pwr; + if (power >= requiredPower[powerLevel]) { + power -= requiredPower[powerLevel]; + powerLevel++; + } + } + } +} \ No newline at end of file diff --git a/src/SpaceWar/PowerUp.java b/src/SpaceWar/PowerUp.java new file mode 100644 index 0000000..b8c3edd --- /dev/null +++ b/src/SpaceWar/PowerUp.java @@ -0,0 +1,55 @@ +package SpaceWar; + +import java.awt.*; + +public class PowerUp { + private Color color; + private double x, y; + private int r, type; + + // 1 = +1 life + // 2 = +1 power + // 3 = +2 power + public PowerUp (int type, double x, double y) { + this.type = type; + this.x = x; + this.y = y; + + if (type == 1) { + color = Color.RED; + r = 3; + } + if (type == 2) { + color = Color.GREEN; + r = 4; + } + if (type == 3) { + color = Color.YELLOW; + r = 6; + } + } + + // Getters + public double getX () {return x;} + public double getY () {return y;} + public double getR () {return r;} + public int getType () {return type;} + // Setters + + // Render methods + public boolean update () { + y += 2; + if (y > SpacePanel.height + r) + return true; + return false; + } + public void draw (Graphics2D g) { + g.setColor(color); + g.fillRect((int) (x - r), (int) (y - r), 2 * r, 2 * r); + + g.setStroke(new BasicStroke(3)); + g.setColor(color.darker()); + g.drawRect((int) (x - r), (int) (y - r), 2 * r, 2 * r); + g.setStroke(new BasicStroke(1)); + } +} \ No newline at end of file diff --git a/src/SpaceWar/SpacePanel.java b/src/SpaceWar/SpacePanel.java new file mode 100644 index 0000000..e946e9e --- /dev/null +++ b/src/SpaceWar/SpacePanel.java @@ -0,0 +1,408 @@ +package SpaceWar; + +import java.awt.*; +import java.awt.event.*; +import java.awt.image.*; +import java.net.URL; +import java.util.*; +import javax.swing.*; +import javax.imageio.*; + +public class SpacePanel extends JPanel implements Runnable, KeyListener { + public final static int width = 800; + public final static int height = 600; + + private boolean running, waveStart; + private BufferedImage image, lifeImg; + private double averageFps; + private Graphics2D g; + private int fps = 30, waveDelay = 2000, limitLevel = 12; + private int waveNumber; + private long waveStartTimer, waveStartTimerDiff; + private Thread thread; + + public static Player player; + public static ArrayList bullets; + public static ArrayList enemies; + public static ArrayList powerUps; + public static ArrayList explosions; + public static ArrayList texts; + + public SpacePanel () { + super(); + setPreferredSize(new Dimension(width, height)); + setFocusable(true); + requestFocus(); + } + public void addNotify () { + super.addNotify(); + + // Thread to start our game + if (thread == null) { + thread = new Thread(this); + thread.start(); + } + + addKeyListener(this); + } + + // Loading image + public BufferedImage loadImg (String urlName) { + try { + URL url = getClass().getResource(urlName); + BufferedImage img = ImageIO.read(url); + System.out.println(getClass().getResource(urlName)); + return img; + } catch (Exception e) { + System.out.println("Error " + e.getMessage()); + return null; + } + } + + // Runnable methods + public void run () { + running = true; + + if (lifeImg == null) lifeImg = loadImg ("/img/hero/hero-up-transp.png"); + image = new BufferedImage(width, height, BufferedImage.TYPE_INT_RGB); + g = (Graphics2D) image.getGraphics(); + g.setRenderingHint(RenderingHints.KEY_ANTIALIASING, RenderingHints.VALUE_ANTIALIAS_ON); + g.setRenderingHint(RenderingHints.KEY_TEXT_ANTIALIASING, RenderingHints.VALUE_TEXT_ANTIALIAS_ON); + + player = new Player(); + bullets = new ArrayList(); + enemies = new ArrayList(); + powerUps = new ArrayList(); + explosions = new ArrayList(); + texts = new ArrayList(); + + waveStartTimer = 0; + waveStartTimerDiff = 0; + waveStart = true; + waveNumber = 0; + + long startTime ; + long URDTimeMillis; + long waitTime = 0; + long totalTime = 0; + long targetTime = 1000 / fps; + + int frameCount = 0; + int maxFrameCount = 30; + + // + while (running) { + startTime = System.nanoTime(); + + gameUpdate(); + gameRender(); + gameDraw(); + + URDTimeMillis = (System.nanoTime() - startTime) / 1000000; + waitTime = targetTime - URDTimeMillis; + try { + Thread.sleep(waitTime); + } catch (Exception ex) { + totalTime += System.nanoTime() - startTime; + frameCount++; + if (frameCount == maxFrameCount) { + averageFps = 1000 / ((totalTime / frameCount) / 1000000); + frameCount = 0; + totalTime = 0; + } + } + } + + // Game over message + g.setColor(new Color(0, 100, 255)); + g.fillRect(0, 0, width, height); + g.setColor(Color.WHITE); + g.setFont(new Font("Century Gothic", Font.PLAIN, 20)); + String s = "Game over"; + int length = (int) g.getFontMetrics().getStringBounds(s, g).getWidth(); + g.drawString(s, (width - length) / 2, height / 2); + String score = "Total score: " + player.getScore(); + g.drawString(score, (width - length) / 2, height / 2 + 50); + gameDraw(); + } + + private void createNewEnemies () { + enemies.clear(); + Enemy e; + + if (waveNumber >= 1 && waveNumber <= 4) { + for (int i = 0; i < waveNumber; i++) + enemies.add(new Enemy(1, 1)); + for (int i = 0; i < 3; i++) + enemies.add(new Enemy(1, waveNumber)); + } + if (waveNumber >= 5 && waveNumber <= 8) { + for (int i = 0; i < 5; i++) + enemies.add(new Enemy(2, 1)); + for (int i = 0; i < 3; i++) + enemies.add(new Enemy(2, (waveNumber - 4))); + } + if (waveNumber >= 9 && waveNumber <= 12) { + for (int i = 0; i < 7; i++) + enemies.add(new Enemy(3, 1)); + for (int i = 0; i < 2; i++) + enemies.add(new Enemy(3, (waveNumber - 8))); + } else + if (waveNumber > limitLevel) + running = false; + } + + // ----------------------Methods game, update, render, draw + private void gameUpdate() { + if (waveStartTimer == 0 && enemies.size() == 0) { + waveNumber++; + waveStart = false; + waveStartTimer = System.nanoTime(); + } else { + waveStartTimerDiff = (System.nanoTime() - waveStartTimer) / 1000000; + if (waveStartTimerDiff > waveDelay) { + waveStart = true; + waveStartTimer = 0; + waveStartTimerDiff = 0; + } + } + + // The badass enemies + if (waveStart && enemies.size() == 0) + createNewEnemies(); + + player.update(); + + // ----------------Removing elements + // removing bullets + for (int i = 0; i < bullets.size(); i++) { + boolean remove = bullets.get(i).update(); + if (remove) { + bullets.remove(i); + i--; + } + } + // explosions update + for (int i = 0; i < explosions.size(); i++) { + boolean remove = explosions.get(i).update(); + if (remove) { + explosions.remove(i); + i--; + } + } + // Powerup update + for (int i = 0; i < powerUps.size(); i++) { + boolean remove = powerUps.get(i).update(); + if (remove) { + powerUps.remove(i); + i--; + } + } + // Text update + for (int i = 0; i < texts.size(); i++) { + boolean remove = texts.get(i).update(); + if (remove) { + texts.remove(i); + i--; + } + } + // Enemy update + for (int i = 0; i < enemies.size(); i++) + enemies.get(i).update(); + + for (int i = 0; i < bullets.size(); i++) { + Bullet b = bullets.get(i); + double bx = b.getX(); + double by = b.getY(); + double br = b.getR(); + for (int j = 0; j < enemies.size(); j++) { + Enemy e = enemies.get(j); + double ex = e.getX(); + double ey = e.getY(); + double er = e.getR(); + + double dx = bx - ex; + double dy = by - ey; + + double dist = Math.sqrt(dx * dx + dy * dy); + + // Killing faggots enemies + if (dist < br + er) { + e.hit(); + bullets.remove(i); + i--; + break; + } + } + } + + // Player dead + if (player.isDead()) { + running = false; + } + + // Print dead enemies + for (int i = 0; i < enemies.size(); i++) { + if (enemies.get(i).isDead()) { + Enemy e = enemies.get(i); + + // Chance for powerup + double rand = Math.random(); + if (rand < 0.010) + powerUps.add(new PowerUp(1, e.getX(), e.getY())); + else + if (rand < 0.100) + powerUps.add(new PowerUp(2, e.getX(), e.getY())); + else + if (rand < 0.130) + powerUps.add(new PowerUp(3, e.getX(), e.getY())); + + player.setScore(e.getType() + e.getRank()); + enemies.remove(i); + i--; + + e.explode(); + explosions.add(new Explosion(e.getX(), e.getY(), e.getR(), e.getR() + 30)); + } + } + + // Colision + if (!player.isRecovering()) { + int px = player.getX(); + int py = player.getY(); + int pr = player.getR(); + for (int i = 0; i < enemies.size(); i++) { + Enemy e = enemies.get(i); + double ex = e.getX(); + double ey = e.getY(); + double er = e.getR(); + + double dx = px - ex; + double dy = py - ey; + double dist = Math.sqrt(dx * dx + dy * dy); + + if (dist < pr + er) + player.loseLife(); + } + } + + // Player powerup collision + int px = player.getX(); + int py = player.getY(); + int pr = player.getR(); + for (int i = 0; i < powerUps.size(); i++) { + PowerUp p = powerUps.get(i); + double x = p.getX(); + double y = p.getY(); + double r = p.getR(); + double dx = px - x; + double dy = py - y; + double dist = Math.sqrt(dx * dx + dy * dy); + + if (dist < pr + r) { + int type = p.getType(); + if (type == 1) { + player.setLife(player.getLives() + 1); + texts.add(new Text(player.getX(), player.getY(), 2000, "Life +1")); + } + if (type == 2) { + player.increasePower(1); + texts.add(new Text(player.getX(), player.getY(), 2000, "Power +1")); + } + if (type == 3) { + player.increasePower(2); + texts.add(new Text(player.getX(), player.getY(), 2000, "Power +2")); + } + + powerUps.remove(i); + i--; + } + } + } + private void gameRender() { + // Drawing da background of our game + g.setColor(new Color(0, 100, 240)); + g.fillRect(0, 0, width, height); + + // Our hero + player.draw(g); + + // ------------------Drawing the elements + // Drawing da bullets + for (int i = 0; i < bullets.size(); i++) + bullets.get(i).draw(g); + // Drawing da anemies + for (int i = 0; i < enemies.size(); i++) + enemies.get(i).draw(g); + // Draw powers + for (int i = 0; i < powerUps.size(); i++) + powerUps.get(i).draw(g); + // Explosions + for (int i = 0; i < explosions.size(); i++) + explosions.get(i).draw(g); + // Draw text + for (int i = 0; i < texts.size(); i++) + texts.get(i).draw(g); + + // Wave number + if (waveStartTimer != 0 && waveNumber <= limitLevel) { + g.setFont(new Font("Century Gothic", Font.PLAIN, 20)); + String s = "-Level " + waveNumber + ", good luck"; + int length = (int) g.getFontMetrics().getStringBounds(s, g).getWidth(); + //int alpha = (int) (255 * Math.sin(Math.PI * waveStartTimerDiff / waveDelay)); + //if (alpha > 255) alpha = 255; + g.setColor(new Color(255, 255, 255, 128)); + g.drawString(s, width / 2 - length, height / 2); + } + + // Drawing player power + g.setColor(Color.YELLOW); + g.fillRect(20, 60, player.getPower() * 8, 8); + g.setColor(Color.YELLOW.darker()); + g.setStroke(new BasicStroke(3)); + for (int i = 0; i < player.getRequiredPower(); i++) + g.drawRect(20 + 8 * i, 60, 8, 8); + g.setStroke(new BasicStroke(1)); + + // Player lives + for (int i = 0; i < player.getLives(); i++) + g.drawImage(lifeImg, 25 + (35 * i), 20, 30, 30, null); + + // Player score + g.setColor(Color.WHITE); + g.setFont(new Font("Century Gothic", Font.PLAIN, 16)); + g.drawString("Score: " + player.getScore(), width - 100, 30); + // Showing level number + g.setColor(Color.WHITE); + g.setFont(new Font("Century Gothic", Font.PLAIN, 14)); + g.drawString("Level: " + waveNumber, width - 170, 30); + } + private void gameDraw() { + Graphics g2 = this.getGraphics(); + g2.drawImage(image, 0, 0, null); + g2.dispose(); + } + + // KeyListener methods + public void keyPressed (KeyEvent e) { + int keyCode = e.getKeyCode(); + + if (keyCode == 27) System.exit(0); + if (keyCode == KeyEvent.VK_LEFT) player.setLeft(true); + if (keyCode == KeyEvent.VK_RIGHT) player.setRigth(true); + if (keyCode == KeyEvent.VK_UP) player.setUp(true); + if (keyCode == KeyEvent.VK_DOWN) player.setDown(true); + if (keyCode == KeyEvent.VK_Z || keyCode == 32) player.setFiring(true); + } + public void keyReleased (KeyEvent e) { + int keyCode = e.getKeyCode(); + + if (keyCode == 27) System.exit(0); + if (keyCode == KeyEvent.VK_LEFT) player.setLeft(false); + if (keyCode == KeyEvent.VK_RIGHT) player.setRigth(false); + if (keyCode == KeyEvent.VK_UP) player.setUp(false); + if (keyCode == KeyEvent.VK_DOWN) player.setDown(false); + if (keyCode == KeyEvent.VK_Z || keyCode == 32) player.setFiring(false); + } + public void keyTyped (KeyEvent e) {} +} \ No newline at end of file diff --git a/src/SpaceWar/SpaceWar.java b/src/SpaceWar/SpaceWar.java new file mode 100644 index 0000000..14557a1 --- /dev/null +++ b/src/SpaceWar/SpaceWar.java @@ -0,0 +1,25 @@ +/* + Author: Khriz EnrĂ­quez @khrizenriquez + + Image sprites: http://sm.ingenieriamultimedia.org/lib/exe/fetch.php?media=alumnos:grupo_13:naves.png +*/ +package SpaceWar; + +import javax.swing.JFrame; + +public class SpaceWar { + public static void main(String[] args) { + JFrame container = new JFrame("SpaceWar"); + + container.setDefaultCloseOperation(JFrame.EXIT_ON_CLOSE); + container.setContentPane(new SpacePanel()); + + // Hides the border in our game + container.setUndecorated(true); + + container.setResizable(false); + container.setLocationRelativeTo(null); + container.pack(); + container.setVisible(true); + } +} \ No newline at end of file diff --git a/src/SpaceWar/Text.java b/src/SpaceWar/Text.java new file mode 100644 index 0000000..1c48b17 --- /dev/null +++ b/src/SpaceWar/Text.java @@ -0,0 +1,36 @@ +package SpaceWar; + +import java.awt.*; + +public class Text { + private double x; + private double y; + private long time, start; + private String s; + + public Text (double x, double y, long time, String s) { + this.x = x; + this.y = y; + this.time = time; + this.s = s; + + start = System.nanoTime(); + //start = (System.nanoTime() - start) / 1000000; + } + + public boolean update () { + long elapsed = (System.nanoTime() - start) / 1000000; + if (elapsed > time) + return true; + return false; + } + public void draw (Graphics2D g) { + g.setFont(new Font("Century Gothic", Font.PLAIN, 12)); + long elapsed = (System.nanoTime() - start) / 1000000; + //int alpha = (int) (255 * Math.sin(Math.PI * elapsed / time)); + //if (alpha > 255) alpha = 255; + g.setColor(new Color(255, 255, 255, 128)); + int length = (int) g.getFontMetrics().getStringBounds(s, g).getWidth(); + g.drawString(s, (int) (x - (length / 2)), (int) y); + } +} \ No newline at end of file diff --git a/src/SpaceWarLevel2.png b/src/SpaceWarLevel2.png new file mode 100644 index 0000000000000000000000000000000000000000..46d5ff5669a97f98e4d4e71d737fc6316cce3428 GIT binary patch literal 20782 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 literal 0 HcmV?d00001 diff --git a/src/SpaceWarLevel4.png b/src/SpaceWarLevel4.png new file mode 100644 index 0000000000000000000000000000000000000000..782e71a5f9b74254c6bc7393fa1a548354e399e2 GIT binary patch literal 32759 zcmeFYbx>U2wl0bV2`&j5v~hQb0F5*nBmn}1;1Ddh(+LD<+}#p_ySoKR$Qy?F{VVgxqgLeapnLp{>>_Hz$Dv3{T|5-LVtE1~okJap5QNo$vq?L|ouj4l)f z#`HqfQ;)U}7takY((-(_vmxpB;-gNgpI3aYx)IcgDopzc>>76&-s|c0oAM~cfFKix zOhnI}U0o*(1ta1OUJS(3Iy5NrgwQ?@K$3hsiELQ)!>r#cEV8tZUZrwZ7v zjffs?2)5l|D}~VQgwpvn9X7JI-tHCMT-LRzh@|JXwPh;iXzahIhs1ym=sLJS@rvqf zFB>*ulyt^))voW)MxA~=BaTwd+dVko|MnyYnTDRZQMbd;&35MKbpj~3v9WPb;-Ww; zdUQKDD}RPx5g0QcR8v#qaCIOUOTlf7a^syL6k%-;3&@o1qc0C~hzCpx zc^j*m2SGx`|L5-)GmT%gZy&GPMz7l75APFcfV)<>ocGwIUVt zIU=LnRJotdTN%05Qa&tzuPwCsM$c%%1KWgMh=MH%ui(ck^|lX0%NJKv8`#)V{4BAc zgFq>jVUeTevz?ut@A@20`z3Xbzz=~e{(4XNdh^-H!hvy2Kd9gIt;7rnB3e*+DB&w^ zfoPqDLE-UtTv^d&LQh*h>;1Fr9*3!H(0PfG4+oN>jk_;9e)&lb|Axu;=HSiLFA=25 z+}{)?J{Y~xtn#B?U341VoYAv4o6J=~k!nXoqi83!NRukin$KZ=iz{}Fpp?Ld_`S3g z=gWR+6V4ZA&D_uTC%w3hYLJOB=Br|3Lay5qsy}p9a)3%;jWdrPtFR={4rdokUX+e;!_`)>7HzULNX`5&if_mRJ7>*-lC^*fuETnN1>$$dYqWxY=yoO-br>qG_-V|&N7YJR+eOt4~q0)sL~o!}2wnrtsg`9BdkP)trwcQ3iE z3}Y~+mAimVxEvcO7}K2z>Q;P31EdkZC^K|I7}J5RA$NwxWdC?kozd4T(HKFc?U_JspgH%&iLqJ`vGvlnIhrpbC(`kdXQc}^(|T&SI{)^HwA6^ilV zh{1vjJj8A$JUx5FdOytz?UvI)mf+SObjJIotY`5jfBiT>bf9S7^NL*5aC+eO-phoi zbZYt(8_q(;t+N$0rm;Us_4qx*M6k5C-|iw*Ls?z+I?Bn*3(Cvz3^9oiHct%6*J4R? zUke6|Kpf%e4=t8>gFU4fzUnoNh|jlPH@$E#9=FHYX?=LttNXo64DY@3VeCq)5OD+N z7yAXso~LFk0dE)23?O@6-=iC){cgKvF4!wVA zc)LD$WZ0Kj@QqH$lx@fmPM~C{ufok6?B5&4IEQnVVfd?X`GchoA(|;QN9(*-TgQ&S z)#3YJ0|w+ni6HE+QqQ83c`YhG{z8fnJ5^B3AwXbE`;2t9J-U6|iJPa-f!p{+^8ODl z!Z#xYhFHW^z;7*zOz(&Bj*vKK0$L={9NA=&uN|NbrCt2-kO4=>S3U%2REBO*2R(xL*vj^3Jmr+OdxT$AiIf`Yn$k*G?7q4Sgu1=d)Tqmk;A&wy7^FH-#L7cQd zdA#)RM%og4XSmB*xFaCp;t?{Fm>#E(`!{BfA5)yHcQP+=mW9_r5q3K5{i5MOxP*y5E;a9e_w-w9NW1KU@*ExRUw2;wf0FGJc%`;Obs%4G8O>p^wEQ^aKdp-U3?auxHs{QG{E211tG(I_BS zC#aeD{Oj}XWz`w`o!qu7($c0i!DhZ2grwlJQ)rx9PQHDY4wX*O^_dI_p6Zmyj zumhod3{95Xw8qS)iJulGS{Rj72#*14LRAHc%o_i)=gdIVz467VO4&H=XwN3+1bpD)WjqD>yXG#|-fB_96PcX0SpGrLI%t`(;Ql+; zDm!_5&0V9-m<-#D5G4aP!&8f&r)4+G3s*G2Yo(Ut!7$U0iL#&y(VWNes1s~`_gq9Y_vuIuzE@|u&xb9$DSk$lX z5FOo0MVvD>39VIr@I2*qGn~-bp9t(ygEvO-FX8jTbKLUk8n!t18_s8M4l>Hr&=!5H zkgqsO$L{Nv_~5pJxaa^mQ`JbfqZ?#xOcN} zeRrh*|Cxd$aNe^Z4i6Vz$kb9J!FL>%-`{zxGY^3;cdWyw`kEpkwv$_b>0-q0bL1Sg z`D2?3lY`o(`aIptx35y_$k|0)-p8Ol{)oQEeXrx{K}aReERN!J zd%MhKNBw5#@g^ejqF5&OelPj}d4Q9WgL@xahBtw`*k3__sp@eqszxn`xs*whI03`& z0P1mB_a0EOYp;iVuKRr^s;cj-cT;kiLDaMF4ICfW-BKZsbEL*R-$su3C*M&uZ(TO+ zpSqdd%pucL>Qq|HSc{!%1VpA?-!k43%6(h(vO-p43*EW4!QEAJJ(-o<-F_wCLcyad z!t{%us$^TKZE(`vK`@-y?JQ?y^Cl8^`h*zG-Ye@dJ+yL>udNF^YW9f15%40M^ z_~v_8)D*Y3zXDM#6oi|~GG>rfS*Q#rlwE5j!%D}_`)944dbmob0ad*BoBR)^@Z3<+ z#EZ|r>!Zrj5_6g)w@PI<4_a^9c778o|h_3u*_+EUVmqb2TOpvj(ZGCZ5x)86Ov z6o#H&fnFT88?4)A4ZvWu@a0G6>q;kH?`>S!(j+}nfkp_wVoe`Nx8uz?miV@>O7Qe9b`aD zOd6U>>+>Tf+iq?{=bgHfoMR5;WG5hfiGf>3Ryrurrf@l?&3rx=Jhc9=xl|A?-#H#i2 z4v9*FW|)(b#Wwxjx#z-Bh#*zW#v}CiBSGVI{jD}p=eBQh-qjta8r42~7vJo&GBRp} z+vnVKL<<4YztZxrHcaG(4k;&0Zaj0{z7^kZUH(D)kReU%-5lEV@~x1qXUsyzyg+c8 zfO!9sjPq!`5jTHPvyhsHLvlSyr&1XO0}I#ZQ}}=+9TU#IZMPW{2MfMES>unKe~a8? z;gEdw3O-*YT-uV?6=aU1Tyr~y!R+gJG&mXOYJT_Yxx{kKlF8ti%kB%13D;9=HU88)=j70crPg8D-dxxEJ}-ISI~}XO$j$w^@e1F~ljYMDr%Vo~aqfj# z*KuyxL+%UH(!)*%*;n-#;o496>Ntza6*&4=dhni+|BT1`YNUT-Euk+ zR8joA#Q0$u$i=OJIru-%p0N9*`+#Gf=7YCf)XXN@oYbUZ>bu%qxN37r;vGD9; zLpX$aWq2q^Fzyx?c%D?yw$k8qcjfs>lApDWUj12lErL3@6C*MInP7_n z(DEsX`aQ|X@ODQd$v`SR?{{3#IQCe1YOtfwKjDPj)%lbR(649)^I0kMXuW9L;%2TF zP1XHKSAY5N0~!3`b#Pfm<|cfx`QS{n>EScqnW5*+Z^P`H@qcVaqqs|~I=cf9(XL9! zN7kZisO;)w`i!^u@f~k?@|T-IR_}*|#H*8x?iUiCDiNHSshe)ZxXOc28>@h}M@WRE zc%2g+YUm6&4gNp@_cTh#^ev9yLU-NQdAwPFFob^3y+0iMmb()(8Re?PJ`Rcw(Ut-rBJc=uIlOYVjb zcnGP?;b6;U_)WgWM|3(w5Zb$FPD6~{im}EAY=_H~r)ZY_@cP1E!5;C04z?Ld(iV}O zFII6G69>6W4zH|;0Vu-FIko@GsnP*f+Iep()t@cN*y9dQ^qF7dnwO>jdS1cBzpqh3 zX9n5Sqej>0K}`)sAV%Sw+jbrkdikk+zQ#niCd+nzbb$j;4Jr96`E!XzvIt7v@<5aN zCsz$RuqY%4CtRGILg3a*==9&)Bth}FXQ@at6`mIfR&UDO=;HBa&SiRw7B`*#!Sd4+ zbviATKMPdK=&7+ZK?K1ik$D+pDiml~$^r8jtX@G-c0l73zWJU~*?dW{@UNBciY@6v zvPvQ!AK8(Gpb{b##Q&N*s8Eo<2+DOet$_Ff7(<`x^YRPRyyHayLf_wi>G)Ki4u;;5B<7fnhK)i2=+%zZ{=rTx1kL8{sCq>T!{&Bi7)l`MI z*x1B&d(=_^x758sF_NV2Jm}QuJ2}bwgGV&8$+-&8my-hZlV6-D3$bOVK^$judBUYI zlgqoRk98xk56uVZomn0F_;VuFX`~X69!w33;*8$@11-q{PrUwE8kJzKFa^r;%|~)% zXl-TiBeCXrY)++_t(=czYLjyuBqma`D?X_<0UMNR_`y9RTlyvkq)u@-6%7CP@-wyU z!~4w5Vt~hrCZykt3PkqaMP`9dHwod|(TqyTpexsm^5M()M$o2E!zANlXTd+F1l72} z$N!S_g_b#iD3`0&h#zHaZe>7*JmN=rY+~ndEKLN`X@6shb&tJ)BdP}v*uPKvKTk#{ z2|I0>;l`8)ZD{F>fE@K#wNn5e)sz_e1@J}0{AUAi(o zrFSiv>c4zOWAd&?4JrOyR@Lv0GUCiOJ)gyzHIPn){gY1x9qgwG0u}@+*u#3_2{DBu z)K9nnhnIGJ_LlCQ9wjnMn?)i=fg^=2iBIPEV;u&2`d!EidvaTajWn4l7mC{%O%G0j z%h#vSBg;?Ita+|2%ll7LUaCg?YnX`te|hRZmkU2brwtppeB?ja|7pOS1Zv;eKC%C> zn*Swjp!cVlh{K1c0yLy-h!;J@fv_c=PX#X^ZQ*6ua81R$OIn+f6B3~6xfpSq*F+2QHl_|@n#u4sM^M= zCL~Wi>LtJnP&Stebby(lBh*f^ld4M@|#Lif`3F9j6q0#e8^z z6P}gLxqcLRmrTm*D|c0b3F#s2(BkXzq6WMyl>GD#rr`A+uPb{Y#r>|$@K-)WoTB=& z%>DY0T2+M;s?-}qYW$Z>2`M|A)d*3=h9iit%z7e6DtFqqJsixy2%y+!WaJ5&OkpIy z1uZ~vVbcUxNK~~5nv$Wh{lzN4EnAY7-m*_O@PenIZAE#BRoRt5wq9Rr3i(7cpSNa@oiicXm zD21!Z+1MXis$+}Q!Q($?2xXc5Zh6uJWD2x+YL;!E6da;iRjs{u_-ZuJr56tc50xf7 z+@r^>n4zLJsH20n#Mx;tO!T^!)Nr#rHxI&~gwh}7%p&FEgNt(f3qx`#Fu4eL(ZW6-x~585uDd$&jaq>(zg zHl%|fo$AJ0L&=HaZ$w&vvV?!F@g{`AdyHal?-oL@NhCt`Txg*efq_?C^d;M0gW<6h96rSEcMHH-(CbJ~}r@ z10$^#c;gc5Kjb+#Di}wM=BMO^@4}AopQZCrE%x;j;xc?smMVRLYQ;!OKc%f(Mug+1@UdEujA1b&UaG zYop>HI3XF|-p%V?@4(mkNF^=)Xi}}WGq+`*1@rV~RwOV|DUHYa;z}74E-n4E`sA6$ zrJL_EN3fD~Mye`t{Wz-+KPg#wOmK`_EO>gM#Rq<+yKF^fnX4W;<}K;QnVPX=^8S+} z!=XN8%rKGC)Nt}#jlJ;QBZ(yMm0x&qpA0Iy(wOE$pZe=!19suWu zBh8VpOW^`=G6vdXLSw5J>D(<7;Q~~C5T;Tc$vpmss`5uwVnSkIED#w!8wHV(UaZ<_Www$aWc1a_W8mFJy2OH0Y|(bUrE zZZxy9tpDPzh883+x*mXryD>K)bh@AMgSF5^=1Pjl^X25};wXlkdmA1$mD9^1fZgiK z%%}pz)IRDgAJrdeMoWQJy4@DK7enn%oTWZ!(3`KE8vSj3_8Bd40DM~)CER((dlJar zvOYOZ9++h&VK?Ha_=DSmm^K@~dMRJbaB+5?*Fuqr%Vipt!<%6Oz_VX^alD(AU=EpB z5U<;rV~)#`8;EbTHRO6aU45HQM>}s1z(U@tkFCsw6maMr`1l9%Swj6(NAQ&z4jJGM z0FzASc(P9hen70_`d6ew{J)QM{|=Y`34H&bURq|pp}L%m>ibs=JOKH_KC!|u{M_pr z`vN`8`Pf$TXKucMWwer>BJ$IJ3k!_sCK(=J&V|s#JCf)<(|3bnrOi7|&e=1Ej*`LU zT^kN{ytb#D=t#)nK*-E6#Zy-?lV&PS>dmeYJaD8UoEQ{x+hY$q(j8H^Rr~8G>Ef~! z1{tMq%Ss)4$}y_tNx@p0h%aW?MZyNwnv%p^C=vZLbK`B_%X2hj$PUsG%-Q)#sg6E} zS=#B3O0D}25K230F__{07nqjFXmvrG*(CdDv|&PykE0Rs8eq>csC2sfNYzl* zL}WQCQZCyqPT^G;_J&jD#(0qAuN3Smruf)}u&8fF$y~)_spJhRRQ+4i&S9!Njr>aY zJ=<0upI#WWnAEjq44+4-ZZXA?)m{=4;sw5#Pu2ds8fPthS$}g*8MAdG@911dA!Ako zw|=TkK{9L$auqj0Qk~$QR}zV)JhDo6sLQ9dWoLcw?0t3TlS`GB z7lms@skw1n$G$#5^{A&35ddiGv5Pt@Wq_Dmx5Dvd&~SYM7nZ^|`~uSuO|`b<)(ky` z?0J|H&9JSHsirPvI+P??UUlQI;KSFlWmgQ&1jZPf-(a3->SQd19D?c^4)cQ^e|Pvd z!-~SGUp;}ed2MGFaRaia4N=||Ulr-I3MvvC8;LeGl#@tcqSo3fxmtGl7e)Xno!Ugxm;awb`JaC1R5i^Bbe~lEr_lXQALH+ z55W(wwpbN| zQb3ssXL9J$wRZ2#;pC~a65IC9P1O<$Z1i{3Z!u*XeD?@bJbbSqA4XT0&GeR*r5mPo zo4S#yHvl~s_&jzl5FwnExV0t6kqW22V3%z@RS=Y_RBpf{Xy0<7!=HWptGFhlzApo$ z$JK_wfl6nOCg#ep&($zPgvpu^^=$HHzlY}a^z3qbr(oot)NK_IDTC#Z0D%Tg7;@u` zON8Zi#q1ss(+d{UjxYHd#vMDs=U1Qxn;y28_XXil&&lzjn@dZAT@pXo z<0GH;2OsQsCcS-`r$w(k%{pMB<{kC6C}OMS=#fn&TvqjFtg88WT`Gq! z#NlAwo#nkWQ7_8tLJ3F?fo8CA!wzj_lP0ope&c1sO-~h4WhBasxS7K^c`_QROt4QLFiC z31#uSxE;8-!daES#SP$Jydw2``+^{qxYUBzC61M*+dGC?zLYLxpgMy6co8$`xbJ6` zyUnju>y{?Kso&B2!vb^kp`uPl^+^qG`a=bb4{^MzP0>ACDPSHYwNcb80wPDV5Orl5 zsuFn8;N1jRz5Vp<&jyDPdELtM-|vsI0L%1ce>xew zUurFzYQ)*)pSBQi_$4YS)yP3Bk9#oe!Y7z*Wu;iL6CprZ|07xuYD!<{)0A8XHQ_gU z<$RH_v&TBVpqDLNyxuL#>%OXG{8boT9W@Eiyd#6~>y%*1wfx1Rz==%o~H} zgj^?m92#_j6Z7~^_l$xB*{np4-0{XJ>dLfOx=YiYJ*D4gngHBn4+8|p8XS)@D(*oO z%r*E6?J=5u)UYp!TP=!-ZM|DE{LlFn$NIAMg2!ZD;@L#iHX*~Tdf{t}E2j4;lnm&s zHOtQcQEbft5&>Y?!*^VidVt5X>!;Z5@0&1659;1@UyNSEIFqhxn9NE|;KhU0mZYyl z$-yX|_C)aqQGcsR7CZ^veFMN%PnZJ<6Tct8oHptAc<3wprzu2sMOeb<;@QV%#^q^a zf2@~FyyUbsTC110EQQl`8?zz~XU9Cm4b&_nKMC=~0O` ze!1UB;9Qp4XEb?~&7pXDZon8_Y`>OswQ!SCbo2gLDY%V9bZR?cJ|{S?fubH z9w6{UF!2cA1e58;)@Ll23ReC-u?y)of6393)QQ{h)g-btwzU-5Qu4<$(SwZFOQTLi(Ct!uc#oo#@F+992T=8iS_=H}4>Tdj@7UTt2bEo1)u}U0$6~~E zsW*2D+}vM_>t;Mf#(p5FxyTagK24lw*52#4r(_1a_rx)vONl>fS3XIP`U%U6JMR;L zsGgnv5x8sQv;AukzDjz{$_^O6+i|hV9W06Q<-^;O&?o(=I#x7ZVmR33CICSo)%}tI zP|E+X;_y_S@cPP&n>qL@Q#9zYNMxt2&|g%-4QG2OscH~NSPN^qhLU+Xy}mnpmh4A? zT0;IO)T&^{Ja^keMg~ZCN5s52;P(+_(O83`-VYO1t)1ebk$DvKZiP!KXQPX;n~E{j zlR&M6FU-Jk>qQwENA2}ry)u;F1+G9-+{9-iyy$Ero2{v!pzPs~^T4?=HpjcCnuwMQ z@Ncr7L+GER^iNe)Pnk8xKX36d8L?oJFB1>F)T?_qP^|-aUOkW{PH+iW{9=1NaWnLu zo`qi|v~B0!SR6Ww0`v&;h>jN0xwsUnw)&O6m#fv5{uR45vpnSRgIH`^)1jj;*O7_8 z9V0}e#DfYSGOskG%M~h&X^yQ6Jp5_6Ko@Xd|EqBF|D@{kzf~go{|Eo?f&0I=1hTmQ z2Ksk-{{{L7&p5>QMfD$|=agSv(Ds9qO|ynJqLn=0C$q6CFX|t5CsC(W0U`uc733>t zWP#=j91BW`M5u4?tU}=Ct5)A#-IYHX-MyL-F{0ClPw?w^q=$5-0Ua3CnjFGsA==o) zdft~M+DL!3L;*r`umXT7JDtaAuTy5ioC|>X9S3od5&*ZtCq`qHw+Qdx7M(V?0E!Bi z_D|NLdef6O`X=Iom)udE-Q7Yu0NVMsr_K&hGl1LOuOGEu7nZ^I*`cFPrU!84?1$7V z{AkcYbrW%BJF-%Qk@te4$om;1Y`S zv+|mQK`mXreKpU@EOjPYsnlZp6b7zM{TMY_g+!Y|KI=4ApLyCfDj$8MNPyM&98$>s z#3KFQU=UPC=#F5viNyt)X;02HnvVI{D1W>EsD&n(?2Go2$Mrj%IgV1;*d45kVV6=?aBB$GNXxRCIsg%1bZ|+D#L~tdB7YaJiS~}mDe$FN z8CL2e?y;#t7f=4XS#Q!ddhUNlbV@U95<>AqG2`%cch{|39oHL-*({8zU#cAC} zyruM5$OJ}UmgKdmN&DQg?Uw`v0&5xyPI^>xS_$&oRB~IE}#kM3=x9Nm>S@Mr|F^fxi#gD$-qkGaE$7pX3kfF_YjbO`9e{)JXWE+SG z8Bo_o=HJFL$CH2Z(E(YF=>zV2g1XD0ukk{DY>7Xd8VAEa>Pr;00++FA3Zt(?bVLNq z?5rnRZ@h#w>TsjqV=7Grw}_D0Bz|;Wwk#GBS*a+`Y9DU3rm>e&g({ zR#tiGG;PYfa5S>Mzva*o!8qyw7F$#VKQ|i~d2J2EF3RDzf1hJiijE z9K`NrKHSI4*S^r3UyJwQ4*KvLb!D>2UlV^P7f+pe4@{^`)~;o{)cw8;Q*|JIb4WmD zlvLF=rpKHurnk{iXei6Dmi$bFd1SfiMXYMH{I(>U2hU#Dj{vQBg)5_5Nwu(_8`%2I zDK?38zn7?^_f;f4BFT+V-WbgCpmI9OzA5QRE@bHm(86&gCnvhZVQAEC0t8GqW{<3&7k4)|jA}C}mU>8W17P za56sFh>>{3lQ-`KElh| z_@dDEPoVy7Q{tu`6R5=nv_f7t`4|?syaKqn<{ocq{c3t9wE=PT&!EdKkreWYYQ7vD zXL)km#j(Cr$;z08)}^6^wu+Q;oJLP2=ZpBA1NI4unUl3FQnBOw$#T$vm${(#96liM z{cKY%B^2 zH;^iElZm+`dD>Gi1ue+&Vk~hCdKHEDDwXc(eLxuL8A@;m&xiX-5>@CC&tXe#x}cAz zFsHbegpuQ`9N?QDky$yrMt*0ft}Ojmwbcvs%;F0Ug$YWNC-;R55P{2t z#QedyJ_c>4o$UR5t_ZDKu%0|suySBT=dDh2bwKbs<&TEPNTSdZ6uwx+OHGzpPh61I zC^t}itPVnvdM$tF115ir)r#9(bYW*CPJk5T66?Cj?yr2ce2neJNcR=dLZ$W|3~1YywrEce^Qk`>-jz z&eP9bUcJ73?c*6-omxBUP0NCMGk*MUam>l?*5$}`3Jwwto=KqCIHGt%nJ zeB3)Lg^f=Jfgr?xjI52C0o~QREjm3O`)tTkr(M0|3?n!&p9?boL?mJY8*&4~l~d2@ zCJG*bJOf-9tIK{?f0{Kq9{s*)@B!385Zk*nQr+K1jgG|^hsoQde`9Yu_`-GDSnVAwvzr#{16bA*8Zz$hTr2O#dCIJNpJ3E8fQUxOxLx76o zsVt7ISJIVAeZ=nYs74|a-nSQiU)6lEQ<6h(cqdoBp`^ld5p{B&yo}X$z`}^TEuN-m92+(&ZQHqThd~Zv9%J z>^tI=OiFFzj@Xx!41t)4=%o0h=w;aD`usIfrf7o+DdLsi_)C7_8gX3R=-pK;HvN-Q z^9>u5`D)tf04>7!&#MyeqYmbwrownF)HQacH)~%m$a|{X`yu?os48tXHfM$7 z#mS=E3bF7-+#m#mL=gO?5uZLn$Qt{o{#;G zOQT8$rSb_T>Qk$7fTD6IAtFD>-R-`p)-x=ft2D;qDFopKB~iEcppI6t4<_)BYGN0j zgn1p++(v3vZa_FlceM)6eKRa1a|)|Q=B$q{yzfKiK)R>KETU7W@Qnk9s2v@bU45mEIOEEqYu9HJlyd zo^9Br)5SQQGxza!T@iWO;x@8SQhLgrv zp3rGRNb!o7*N2qWG2#ud-sq~1+t8y8!u__s#ut%@$73Tk_q$gT9k0k|+e%%X;+2qU z#m^{_Qq86ZsLHK-y>|A!QogrFE?r$ZtaBc&e}#_^$G0_PitG83k>e21bBQb~dF^tC zshHmqfHx@ci}mUbaj7Eg(sq3TQJV|ZmhYdno_^KS9dAnIf?@b4nTdOOtnjZ;rxrTR zZq=n}G&Qiq7V_Btx$?LySTS{9HNM>v?|Z<#f4Tm1iLH4jQwUy3<`Zg?74h7}sBc~J zUZ}=1&)FI)>3fxjVS67E2|eB7 z{0zUeh8YNzxH`4)7>E6A^1*FT1`CJ{rQ{gW86g(ffGwcO)UiL{Sv(6@wN<9S)~h$6 zuYZnz{SmIEL+`n{z)0&j&-}FY#h1YsKt1oX!%*+?BmEbvn$$a~uCbK|YP;()NCR8Z zOYdl#iXcyV++}~X*pNO|%8wokd9XdgFr0V0IFvbW>ivGoTiiYeZ|MJ^2F$2xzM_Fr z(k@lg%1z*`AE4xqm_&BwpV>Zof5sqAhs!u}n4U$J(hVj4KKmG z`!1ZjZslQAS?i@ySSJbf6^7pwlmRyRFMO2qE+GO4iS@ADp0}z=wrgrA);};Ey}aVm zg(4$_%aJ2E#F#9UlJD-Y0KPZfX7O5rfh82-czG?Y`-UP&9-4081z!rgFa(dVKL?h_ zQ{>~?X^-C&OMDDJ_o7O6ZE6_u==}O{9SLYN zjbFf~F&I15PQ>!kuU5Glr?VsxTPB`&R7{JQJ~( zXkR+lS^^OOnDHH5JpP0YQ9cL2p-bVRM{mzcvYrf6(&}dk1Ktkn!z2Q4R1c!PO)$TV zuDB?u*=4^FQjzAGG#~`Tj@FgtpBHAs+B4;i&F;vr+2-dKFQ9q%!tI#c{^6*Y?Vtlx z)@=TeY^);90z>UREwq2NG$E`)2V1qnV95N2%U- zzK1dPC#zf5LR=MJer2bo3}&315ueF8*NV&QIf&NCao*v=Q7+^j!!os>{A;e-i)cU) ztXc<{z@5s7-sMW41;gmIFmJA^wopgRU*FO_pO{k1Z=p>YCb~wP&-8@Xx6zok7 zK^#n3t72n2q%XJdh3PODm@PL4InW_fc$9`#bRLjQ&Kns4ufnQ-A@rYK0NT@eBJdWM ze{TaD^1@8{!AOzisCQ=RNXa*&hp=>Bti9|i!lb__X4)1wh^%*|TYb|WJ0QxF{5(m-NBhw9CKYG0YHRTCJbzz?!I5!sW!R?@_uCN&Y*a03 zcSXs~KG;~GT}NpR=krG!QTd)S1_>2bw@oMcely1YT%1bNUk3Uofp^0CeVU{rRaX_N zj@@KSp^U=SDgl!J*)JR=W0@hOEyD*C*0QE_jZqX^ahC~?UXP+9>db}CW$~kr?i+H( ziBa_kN5hzO$zmTrFfq9E6g;PtshN?ZV`*L!_WvBFWk(dN5{rR6Ve|zXYfi(zHiE`+ z*MXr>oD-T6u8=pF-61jqn)=zHg_bLF8Y5w*VHR?uE;3JPHr|1zTd{`TZQK#V%3962 z*uT?`PgdL2dUD33-Ke@C{^Ci@Nf{|q9H)`7V*^t!UN&KS!I}5UF+DM~iJVo=-6lk# zKPi5jZHR$JaF1xfAm_eYrB_k%z6*Iz;(rM>rualMq0?d(WL+C6hZ; zJG5Zjs3vSZukqgVB*UnMBn0XCxZPnG7`DnB;)(*I3KW~|sat0yok?2`#cCtZ;!gE+ zs*jlyI6P7wTm4PXXe2QDUcPGJH}f3LG#%W^q4@16%WB{7q)6phzdnkD>o1CC67i?B zF>=qW;g^>g0A9i|I%E$(FR-To3l zpLiR_jWYAG#H#h($3An$KC>Vrn`gRu+kT7hICRRxZRNGgp_PfHBTH$}enMwAO7lwn zybqE2alBdswjd7No{!9vOX3RfdjVkS!J75IO^SPk{I4jHg4F+?n-z%FWH$ZY`Q@brTBq}$;I6%v=WEZSZqcj zrgIbGL_v@1SR`ze zy{!-0PNtSBN=J47;3PAFPy`K&s^uGdDzxP$xbC&nV*r2dO>dJG&a~r5tfD9-e2X^Y z!Iw(loNpk3@v$P@hrH^#iwpW8{PB<`q1tvcWTbaDg~C|ZO7Nh-p|UoxqLkDw?ALFT zxA+UiQQtDCZAK(9l%=6tcs$Gf~+E+OA_D0ao|{FnYitno3X zn<;!$R7dBUgPb^LZq9UuRPpD(3qAt}xM_Gql?4tW3zrk=q*-NNjGdh{%%Td+qOS|1 z=*+~MGXAdGL$AabTsxb5?WukSQApl~61;lg--|`mhM$rMY<^x|Pe)vD=TDsF>8Y^o z-Tb@cCOl$heq0&~YEOW|z~AYMhs2xW^YSz@TbpB&4NmEO0Sy@;^Secz^}ws}@j3#e#N7X@y|0RjD~Ptl32p%z zcS#_)22F4e?(P=cH8{Z`xCIXq+@0Va+#6}2gIjQ$Zt~v9*UbFQto80!FPg4f_tZK2 z$UaqfQ8@Cz`gBp8q?p*r%9o}fIoOjoj!i^H6g|ZA#L>S@XHyVJ-q#w?Pxe!}u|P0u zZSpvls}b9zjfP;XJOM)>y~#7n@OIT5>8eoM$vpHbhj{7ZuO3U)3V+pP1nET3=skIP zSRnW*+&?`yoF#qA=N;7esuVtKlO{IDm*n0ynYpNIQ~^cPBH0ke^Hdji#T_U_jhp~m zj0nv1^?kxtm`%S_hKh$8%=uNK08AvYDab#fkBgL}q*Gf_riDBSw>ky|;(GCTNsayE zDep-^KA7=u%ojCBep|6lr7PCdSBV=sAk(9;0fQR&DB}B47*QQ%B5Gir?AVQi*vY{q zyP<&aiBj6Ii862P8(FiQXD@rV_-EXFu3uBG~ls~uvhD<awEXF|Yj zlD~>fU#%M`%i{=PT>A<$j=`qT(|wer_ zT_JLC4>dO7muiFOA^c+TUw(Y9c_UVaHSHy)Rzn*T__0#D<`b>c@ND3ZUD9|{fgi~8 zTU!>4PQpDtN;F?1iBSfKIkZ>w1U+r~S=t#=N0rA?BTU6Q67&6xqpdG)7FEg-(tJg& zYb?*LPz3=X#|doik2$_~KYb4j1Ei>+;@f7<|2o9~R%Tl8W+$t1V@kw!i zE`HQuS+T?9O@lzC@BIfGJR;yd1FW28KeI4va1^|ADRYq>iOkk1a3ih+M}7p`jCr10 zv%$Gi8>ck3pDU2k{M8KXZ*(ePFb4A;rNRcM7TV}U?uMqwHG*<)o#PzBZ6gw4mw9}! zZe4}X33jrRH16cnBUAHzr=iKm_W4dEb9RXaC0%`31=A1 zz#1>ES_@@k#?J@tV!plPBVEWDUpDQ(0nVcO-`_sC#+fdo7M&rD(DqP#v6?SA-tJ zY`&L2&a7LTZXVT?s7O+QQZ1}tRU0p==CDDW^CRU`X7rC}ZpKs^Y6@is0KKHMD~n6v zbjqEUwAYZzB$u=!ZA^%b5QIf?!jPJdsKMmmkr*#|C2fpi-G`CCSRL?;dUb5r5A?HL z>;$6{V~oFq5x8 z%l4@>1LrVlFE&LEU<4?Z`eB=fGY*2k&XY>W;WHU@3zJ<7nKwyQ)L``q^=OsxkfP0&$wf0Lh0wq zf!AisfG%@Rw-(&NEBNpl|6*2s=yWHr5pmMVK{8u`I%?D$+SAsK=}7eJM$Y+B@2l6!GDF>jWqeSCd=z`^SzgiM+NFzpbXA@f;Ct7z3<0xeycGGZ{zuzCIoFIr zLRh~65kI2AL_l!lfoU|>Hb4m1Bz!>n%H7HJx^1Zyj5}={8pYBPBZgcB-uU7MAequw zR`58<*6PAngT}Hr>2IM6YE_H9{lm6?5=oSttA z4NcW1U@ceq6QS+8hw!24%hTJr=Dv*t^XOP+Dts<0uG()51Z={c2!Y+muC9V%GDK{$ z&)Wd6{*z+<)WwbR?Nl;lGEAqCTv9ygq`sxLSP4G3y zPrCP7HDu z76GE4Rr!hI@fQIKW!}h_U&af)Q;fffy~v0e5y#7(T#$g`FQ-L7PQtc6*GPG~-E10T zm05dx))~ia0WQ4h!t_F0GM#NMmHn>rpHkJgNA$8-bq?F_!y5epH*3`8XEore9iEj` z;=CibxEj=0`)3hft6pQ@e4{Ui!oV0rbDUKsAkjIT@|?5lgFdPK12v8W46$;GWc@>E zqbVK}QLfg6_zqQN`+07Q=QzCDKrZE3ui(wiWVQ9^q-wca$Dd0ECN#qvk8JguG34QU zxM9ZxK9+`EYG_1KxB~&u!ggM@GJSN?)-W0=;D^`vN_nnEpQNV_>TmsXiU)< zm3U4)2N+V69qPwjo1kBs5h!CPaOSJnn~tV1u_MKz=SUUJ3(x4|LO>xwTl|CgM1&;G zWFy%EE;sHKS!c$u^Rv8%%zq!2W{afcPtDBJ3~|EJqE+r?>QRuX6K&SWYj`g< z-;$}7k#Vk(z2J;_y>C?((Evy<1ML2UtDKd)2ZUPk5OV<~wPhGDS3YTc=3dUfKNaR_ zLkFXtc7~Qy|L;DOSUvW8IA0Gs$_v^v}xwsHFbE# z?XHJb(uZ2)A;guqS;qWN&%^q9{$zJ3LjKdt2_+JCsWHZ(s(_P_@^Yj9`T!Nie@O$Pa-s8v zz6>6aqY2BJE>$~z=C+CWqc!QZZn`z$;iTIKxgE?uZuU;aaIRrN1eSh2oY~c_DeTC^ zKq*}Hb2R`Yl?5X{ZoDk;hLu?NGE&j?cz!o0^3h_2wZUJzF5&1^?`<< zyUuc!EX3^7zYp*K&p1*CIS%wcO>9i#1!L-lEO{RYY6NbF_Cy|mQpIbE;%1F6L}|JN zlrCBCdQ`2tyRq!NSXr%cdaQ>S=a|N_6x5hgS{&|4ygV0l2;9gEyZizdLsy&p$S59{ z!8hkZ6oNYtYpRR6f@)8C(f?pxAn;7`UnchdvqAAoKnYi<_CwrEDR6#rjiM`5mu2m= z6^h(Z|EnQD_-6)(Cpg2~?w=KZ))WAJAs@zSb2{2jG92O+=2~nobQMdXSZt+#NB%4Q zI0WJ=mQ4Q3*Ze>0ebSBdB4yI8irc1C{v$>yNoc?Uh#XxFc+L~#Y~MYFD;|jt;4R+0 z$+qQDe#x~U*>&_8^L~4FXQfohV^(|VIq+%a_QK-{Q(|N$z~G9JkoA^h&vEP0)otJf z#2|?dJ&=SRYnze$@ok6xeaU6kM~iP!_s5p5_k8-HdDcP7;F)LqZoZevDH}5(qY?)h3Vm{un!DoV%tKJjn0nT>iPIlKXePbv- zcgE5fhoHRMQxg>yfkgs#-8d{|9QWvb0;QkqXt!FV@hLJ+RN?V5W8{7+ZK$&!%!IVm z81lXZe0YB?M*bEuA&%}XHVtGu0_122P1<3xZcsTxGFC$1C z$Y{%W1IUH$ZhX?1uO|*ep8#Cika`5ds~A%+;}FCp6u6TJlCa-&%wsWiw7g+Ehk7N3 z;uew}z#fmzd-IW`M*teOiV|vHqo@~$l#gb2uxri9Y1all?*^_^M~)H4r0V)}Zp(#L z`fR@Yc{+N-Fc0yi;H5VbdLSsrXMM6)>0xWkU^`9*N;u+t$L0Z)n(^Q0iGtz>7vSaJ z($8Upa#NAnb4!wFXQ)a`h#Ra74WT|A9~gq*yB-3jr}#%Oy4o@Dh%|C@3#`Bijgw!( zDe*UaKfdmtEkiLLNyN+(T2Y)R)_Rtj{M}?0MC+tB0M~i;Q`hV2wrT9|&g0^X)&$lh zy!Q1$pvR?z=>}OH###vy_6P{%sY2?niV8Gu&y%0exGTMTd0Xzv+O%5DM2?uLj%05D z`8x7jJ&W;u+P^-co@A6?A@RuhQ4fxcVsQxSnStsS&QC!HL;xL*nN&9&MyL_dk{^?W zN2cvIBO`OA5m#fVBR{`~JNXlsGaK!$EUuE z>0B*`l=f>m$x9LPmXT-9V_HSOfR6=-%f542XjI>!%{JiHvS2BOV&OBcUMa52DJQ!$ zf1iW$j)=rREcS&*9y#}V7dwQ<3*ZL z$l00KH(4d)-aC1Z`{>_gkOa;7^NMotT@8K>?sp`$V&Qpf%qg4WF!{Bfff00974h9f z+7UMYzZ}H)ql-oY1m0jDK)!BZ9D(oNL zQreH`tzP30Cy5p2chN5Rqe+GB?oN_Gt&-nEofMtSr(|k|G*LbCee5_PO5n|n3$Bq8 z#{9PKvN}#WWTP2&@cs0s8zLLL#|rDV@a(t>Gr8Kp<&BHz7Sdi2SUGo5@xHOjv~}Y6 z@uNXZ5ENhAt`;&~!~;PWV#Hj*5!rXEzaQMRVQN(;ZM*kL5i;sos7s2;Ediwd4B#v)`BPP$JP}$x2Kr6xd-7F&)OJdwc_Dwe}&h3{$_JP2fZ*8o-;d=xI-y^aV zvUu%Q9;OKWe&QrYBvCJoeV`vOY=1xhr|)tDyqgK>*nxz{CF!)qwkslANICf`Z)Q9P zQ)QM3dh(E>$w-{tOt=e$-4NQ@WU^;x7rq95sSWN`=8RAqkP$g0T3%k3w!Ap(_=7jw zmeO?dR$|+3Yjt$JVzJen-*!SoI&0hDp_>%rpU$~tDKR5Ats%@EoC?FXW@6d>>?|}# zP_xz$Hy{>=%TUK1L_<>))(unF*85~;wyhy4B^Hh0^ho#TeJ>#$waWy2+|%38v8VK7 zNjaz^99q?gJ;fJu@gJO>*h@k|m*iri8tgOLM|ccg1mei+hA<&FZ;~EMv(B!R z4SkyRjR}I~@TAyEf{`SFtk+wxnE&bTlL=Q|9a(4wzS|g_#QMA}jgH4Y7#zXyhxj{a z;WIsKDig9z_61$(>`1~0c(#7&z-CjqXkmY6mipseb zn(}Yqj=FE6M6Su*7bu-recxp9N}qJy=N3+`E4&s2;=_ETJe3H46Cs8 zUf7`05w{OAn?q;j?&3RSx3W8$Ye<_@CyjVp-uED`SYw`jrHu8QlD}T;wK_7N#DnCOkOCB> z{-=O}oP2Ww&Vx<;?Ta;`+H5yCnzLm?1qyKEPHxixjS@-sBcz_t_)Zr57CFyv>+IxuP&-WUq)svC}C*FcYI5N#N6k;5OQB9 zn4hYiKCq~hmP5^*uFkobVrl6iv0KLy>B-U(59n57R!`Q2^tHtp}( zElp>l@!?g&24}kp_7|?FboCnsO|k%)1NMHW4E2Okn1 z&;4*LM{1k-rCZcRi9cxgRRz2NjDMO1H*MDYAi|6RF*?cTJsm~jkFjKvRbdH@An+N1 zv;vtZ2PSD4F3PY z>Ga!z4kpq(0l|^E3yN^D)8bI9-$}#+X)|5O(G4i}x5lWSnR-{`v7Av{T)gQZe5#lbB5-3=A_G6=@2pobW-c5r zdM58LDwwppmCjrHRwZ&u z;LjS&Pt;25{^Y#^Q6-O;5)+ay&ccHZ`xm1@R;ndqE7^oi`_5hmC0IeDO5dK6{dx z)L{CTVx~)P&WGjz(Cp`Z#MsbSkjqE(@$2=Bavcd|pI1J}R-|LOTam;!M;DHz=d-o~ z87JQ<1P*6!e_2qJ;jG@HN2_goH8(QoRBda|@<>rxfPo)2aeulf3OV-oW^GUP+^|l%uG*#2EnFuP04&_8QBdg41`{+RHDvAfBSA31lGI*%Y1!o(wkmc>fRr z`^bw8P45!;H+};i{_y|M&7h+FP9zRzphb6o(>LR^}UJmaiJUanFX;a^`H(k4t-fiyj z3QE5hF33K6j_Q*hT9t6{ba%evCotgqwfU|`CYRNjyL00E&a& z*(W-du#zh=7PNA3c5zg0TRvatUROkJ#}Sj+d2DwG0?$U7t;l4fC56e!7cA9Md@C-4 zmVEPQnpCnPAR~vtG33|>R&T*-_PqziU%sfe81p<`srK3Uvi-1<22>H-E>dsIq-uEb zbq+jtVo8*AH`%i7!y&zf0nWok1zJfK!|LV)h7Ae(+b)6~dy)eTyU(7y(q@?d9#E6! z%iuK+LtNLVNInfj_I5tstRdC4+E;5}5!*nbEV5qhm2xZiQN#}T;7`v` z^$SVnf+uq~zH(QDEPc#>KPJiwZQzW)&qu6(N7@%=K=qGjAZ4|dEec!|?6kF*kts~{ zSv?}&M&9Pkb`Y_Bk-fMwxh-BatgUaI?D?--3?Y3i=l-2_<1-T_(r~_1Bf;jr#F0M1 z`v)H<14tJ365{&UQ-sl=jLQzyoH|v=I-Tcnc9N^C05Q6Y73f%+zX$6ancb^v4Gef^ zlGMkMX9hcS43@F8md5g7Wrl4ic)hB(7%MO3Ugq=N9`}5vV4n}Ffow(j$xsa|ml9Lw zyOX-qanZ%WRgEM@{zHWsV|w2I+ZE5B{kNy%0Z&b1xqqnfwVhjtGo>^+iJLfgqY!Rk zqqz}Okww!`8Mm?E;@REiQ*sL5@%B`n(cSz)u$}kMErPt<#jNnxqUX?}G()ltFR%n9 zh$D*dc(Z*@LeJ#Xv%+4n{TgT*UBr=Y?CQIR4%ALq5`)GZ6N(AJgJBtRJDsv~pzX2Q z5uKbfr{0T6P3c532J76d)6IjD34CYY&qJ=+pQx5JgLU8#5fe039bP-Km>vEp`g)ROWA1YPo|{{3qUAyv zGwt??yP%<+*d*gyP$cz*wr1seES z>BK<0tB)F$W1Ti~Cjwr7^5C$Ye4mC71RaFF92GcfpB(r+@l(gD3ZC6ioW^=QZOs;c zL$XC5NGshRQe$Kfa|pQl2t1owt9R=yFg!Ba>}O}1r>`*JkvCs40CGK35zJrJl-ZNa zO|3qEKA8wUczePb8?b(z!+TqZPAeuzz2eG+dv} zRj-h#n93z1$6=mWtjm%8iQ|hI?$C7M8{;?DREInW!Q=F#Rkh|vD{B)iV88pp< zLFOo%U{068*6As)Nui9XIncFVfXFY(&s;2A7S0-lQ%Y+9F~A)CDjBC9-wmF8{}CSuR2D$tc7oa(D?p_&P~qy4}I<^L1=V&i&j{ zYc_S2z>CM?J)!{LkW89?AqJB8pGCz_O$|aKQXlErgA+Q15(@)^(dZ#GL4gX&b5y~U zV7~(Zsn+1H&`GY3y=D@yrsx1M`hynGsAbI#vfSdOqrl1IjQ;A~U{p_$?`J92Q366w zKEtAx>Nuf$w5;ixq@Al2w|^Vk2-FkC}Ap4F`+8%j2+U`HLr3c+-oBNzB?8=ma@;C>cGjGA-HX&AE5s zO9Y^l^~+NbgJFdH$;#DLIFr{fke!tUWczccI8%e{GQE^20mQ~bwh-XleBageYfjV9 z*%Jw&Tb_X0(QR}Y&BtpyB{{3XE22^2P4OGE{#Mir0wi(zL2+ZICi1_o3Fdu=JzVcf z(kv+L(E8rm1zJg13VV+-GgjPsVFlr6cP+rk2~0x@u*MduM7njBmBo zf$r*&Ki92xqZM{iV~Rnbqt&jR0#4^H@m*9XB&GY9ASdtr@fT{?T>ZViF0Q1MF62Y* zHKja0Uc$+jhG-JIMnlb+r)Lk26?l$es=NV&!Pp*|4eJL}Z76`RYurIFU_-Zv+fkJX z$kF)Mel}^0W4O2RmC4%P-a1}3j8XyX9p46y`^4?VM_0PRjuT1m;|7yvRnCtLOCA_k~-f5>)*c27e3|f~*iElGDs^6?Ckz0Zr;VxQnh5z;kSLm((D!Z^zqelnCaU(eh zB8ep;ton{#RxSEK!f^;G4GF-MwutYUV^`FM*TZsh-0T)lw_^GP+$%N~ox9Vm0lNM~ z_ddW0{ibIc$jYGI49lv;;I=8Pb$tVq8}zL`8-O0J|DF%U?bh5+F)ys~%8QE9M|69^ zoz#%)!Qu5jGPBmlx4u3h1@fzW*O0N+A>df%6|bR@GsF0Dy&-h5vTKTx1{gUV9-Yk7 zVssgq=2*X9rOvtifOnCisnywuK(4ZoW?$;le74KV{=U<*(IIc>AQoDk7!xYB4M_m; zaJNmJZYM>(dEGg9bCbZ)`5`{91UyUVn+p`S?5*?zyNr4`Z0(o(qnW-#3dRsb&N&HT zG<&Z5`HkVO$L!Bac8MUDqNKj!wE*(ft@ z|Kg`F1F&)?u5LGM(XV%?hS~kQ*_J7$9<>Bst6ZHhR-5>tSbZa6Q9yVY#o%RA-cL)u zr#ts9Succ?Bd+@@aU>xku8JEtlx@k%D=>w(oku4Z&es_~f4D%4drxlA5+0HD3aERB zyl~z?;sDame2Rs11k#lv>N#KH(e4C}imWQ+^TF@&R^ri z7m08SW81?Y=Ryt#IFb9#M45zEU8txo<33-OcIqm5}vdk8ln_@8>d){b)vfLJD(qi-EzOhE?}G+REQTFbqUcd(h!pyu zX4#8;|3k5RQJRF;_rd`H(BWBWlG%3qmy_pszP}3ZuE|~`nH(HUg)}>SjJ6KRK0fAj zI{x$dh;>0!*69 zzON{@`Ky9>Z+a>bEZLnjd7eT8Ma;>s2t0Ob3+EfzJziq_Yi4{-YI5xB&6hKWOCI#r zW#8YP+x$!P@stK@E8gIIGJUIuj@9(3+gT9j68GWQ= zIIwhZyq%9BVxp}nG7zGLXX4j)x=6_vEJrHyj;?gRR5!ROHpkxn^<=EIJrDZP#PmAh zhUQ!~L88vrav$IQQaW{c8x;9KC!7J@{YX>raf4v{rRL(OTGA11Ay@o)(0 zIL;1+ot+U#N^yFMh!#yx3`vv3)ON&FF-5fd+ply++OP1|*zB3=)$HXC6JjQ`iv88N zOY@k3Yvl;5&8jh*dw`MYo&XwKi$W+hnAdeIbl=;QuUN<|NDQu7)ec zUwJWZd2FWb!th0jh@#vD;%w%I1?#M;c6rh>G&`#P`ec~ z4$;(!rSBHzG>A=HJV2ys{%RCFOAhWSU5mO#T#jU@u%m#6+on;3+nB zeR5_srS^*K(KY-1hejBEhc`2VU6S8KRN6NdFVYKy1+wd$sTmkvR;aGM;ahE#w$t*x z)|Ae#dr8yxCu9R9qF>K2eZOAB7w629>`#E&sWKzAYCVMu?R}rnVoN-@CIr~02D-a# zMs_rcf5}v0pGpNx5A4qoT~Ux4`I^AV6&Q*eVI*8441nw-7`jQ&=(_=EJly~>2mVR> z$#;W!*v|Pxl$G11G4Ci*--Q+vza9jTA5s$%WuO+A$&YY~=nid6;F17^L?@Hp$)k7Q z*?PZHU=k}pR7u6&@g^eMqpcLn7`So8etabnoBM*l);K6DqYhi+OvtYw#~5LTX z+BvTYUV9gu)ntP*S^*D!6|v{+Q!UI-8gd$gTZ0m&|CyhgFy33turytedu02ptliCo zh_C)$FK6*86~Zs)hsHVI?eRJd>OYH9iHvR0J@-7Q9@9I);)!|b*`xs`lx0lZ$-WY; zxZ%fr4j@!m!r`%d;3RK7IeDWQRnK!>>)Jmq4tY=OBdWx%;L8HdaL@{_rS4pW@8Tu= zwvf6hA4}D?J%LAG9H!Gua?|n|r+#WYSBLD{!~Hmr6yZcYZATEW`IeFHQzhr06dnt1 zXV^~c4@P@r*S=t|m;ZyfG>~4LRuAVX1T83lQVf4=itIv=o#?ZiaL=_Z1tq=MNAVP5 zZjRYY0^cpN3GbY4dLuGrt={Dj9rJhDww)5XJ+)W$#6PpEpUU9>V!WS@eeb6v5%NJE zFwZt`Jf4s^HQ?RuTsY)3ed`%b0;*ogm_@E#;e z-8$VaNWYRs`GH58p2sNuDZ;=RSu{I-7GZY!b*j!eA5Y_|gfOrB7(n%Tx769|$ld?< z_0zy5tQ+1|{jis$mTpNrMPWQee$g$qvX;f!1DU8Si|VgA473IGgm-3V!ucKLvK>W= z0Yu*w7lQ1~exA&zhf04CjWA+0ppsKAsY|%`*rcd~yOe~I6#8!yE4L__ihP4>5%*cbm+2sjO zZ)edy8^k&==$~|kfLC3A`94uLQir?$6Ya4dLT%gdyS6Y&N7^&F7)I(Y^v6`l*5WZQ zcA~QFADMxjp28hHALSDU3T_t%zZkI#FqN0$eWH4nLk@mVh3`xoGK;dL^8R{AiqvNg%^lr}Z{7dPF<)3kP14^2Kbl?ecK|AbRa(Y$hmA3Js zuUAD}aR}e}{h^ENaG9hxS=X9Sr@GE4)0`W^-Kds#oa~m=qo=LEBqY<6aak3pP6&y| zRiK@jLsvFPUhV^Y7^tp$5c^d>)ci=1vvf=KH5A@X?-`u6+?fku)^GO|C@dzQn(7>Z zsudmQ7H}q47zSg#lX`JIE;hRwSLfszUv;fm^c8MD@uo{yj$Mu7rC&hHwA&a|bl>I4 zqd-^inax+LtaxdE(~49g(xu9G@S>^XmQWAc2G9)%zon zhSq$c5B2z{E6wG7fdANnN6b$nO>0DT=h;}7ssXiAlu{R$YX`^UM5(yj*1^+9eNEhZ zbbROK@4~^d$(XWYWQWW5;e)=y3UQC=Sm;&8CzY33_bIwV63A(Q7_Y72^}MGbP?o^C zU}e(`@0EYq&K$!rVni10Kj{>G#0&xA{ek zq}ga#4A5MI zjhGeS=!p^-X}|8?aG?9gf$~<;Yx4Gpor^0n^5-5g62_8SJdPas+@1t=`RKXofoWdH zD?7v3AsGp1Bm#`Lu})#Nf9xP4Imz)Obeimpval0OX9){$)awZaKZdN`1K+O@(m1P3 zP4Ghr)l#9Z3zM>)kmHU_%X<}Z#kWwXfb>+80JO)ijt(L~^Gltt6Oz6{Jz+%FY!;fQ z)e3``G7SKSKd&CzFek2Pc;!c6P)Px#32;bRa{vGfi2wi#i2*ms%dG$a00(qQO+^RZ3KSDE7IyFRp8x<46-h)vRA}Dq zT6vI_)s_F9d%xu^{od>C^+E&PG}3@zBeuvhB55pfL&rE-tQn&rB05^3nMo$GG}cs^ zxKuJGDkNca1}p<=Dw*ek5`|dsS$LsEZfk?$xNybz4 z>Q&u$-*?aNJHPY0_nhwozOXOs3;V+UhKxST#dsaSfQNuQ28b9#bR#mKr4IrC8X6;` z0}V})Pw(!26Cj`pj4E<45d<%<{cM1a;4%PU#eywZ);Ko|z*|yY&^9t*Mg5ksk1|jS zfr)elzKY-CPFjuuUYENWV-IpJ0aU=6C4ipM2m^p=nN_WA2Y!BVPv^qr>m!Aq3fOfh zAYcYrSO|@4xdPL89jd^8@?*@vHbw+9B7J?mclJg*9tKcz0^s6eLgHa3`TP6$}x%0<$9|#ACh(>c509?m{?TcfuFU&iipMAUitRAf@cYS2MiGY7!4Tg$_uUrB2$)>u)$1r1Ge%MEGF?CgvFbK`$5nilKya&UZa z<^+`nfK)6%fx>P;xzzH)IlTRea~eAPx~{M-D}Q9pCy7Gs_UjNctjzD>D|)(o99})E zlAf7ViS-@H>yoBTpD6GOHrDD7^Q zGF4e|$sU?^)e-iF-N(B6dW##HB7b1!-9+Sk45esTiFxI5qPMIm0-fj-F^}Jfa;Cnr zBo6_v0Vd-8ivO`EODh2EJ$WvIC>K3Gr8E$up(!#OK;hA@-fvV)4%|BXD^Vl|gLGuC z4>faJ1_*FZ0Gx5t$?7>B&sER+@9)}PCP@ZKA)yPB_aE&_*H0Zk@qt7-6J6FgcW5{r zKB7k~0fd>kpNI|t$d3HBvVIGeH%06NLz(F^WD6k(LI`MpEUy(Ntt(Fk7(f{TWz1|g zG(~z&vCR>fCkdjnItQZ-l~W342thn?PJ$-PX+|pk0n+Kj`(R(o34ob(#U)ByGnKufsL%@`1f&!o0H!IWG+@1?m*DEBR}+9B6aYf@p={i@TTv|>5z7zy zO(BSgAecZHUf*>!_r``61`4fPYo?bJx=OQFnh1ba0;cUE8<&r+Sh(fH2m=%?^p^ag zSG7J&LI5N{1PB62ArLN?Wm1Tr9Bw-rb5i16Q_7Um+GCiguspKd@3(ywlLKgL8C;g9 z-4-yi6owal*aHIt1SB0v<4F+Y@CN`4QzDg3R$U`jgV(_Za6X3-bbILV_-vxIb6nX{ z!^FJ){sfZAY%G&z`30Cr2@oV*t?a zcBVqI^gB6_!~j7Mfry5qoePT~!plE78<~Uw!z8@@Og`G*^TIR*it~f#^a-mbX~~67 z2UWR+G!;OeX7&IiL4;hCMGiO-ND3bSkPD%Js&t1qYpBS)B`d@vLzv@Co3MXd2>Z7N zV0nOKRAS@fAz0oVLP3Ir81a*ilNClfrPhsXSs$S^AcW8>zr1bJ;tdmb2tjo??gB&v z5W%t;uRL0d?azx2ojj^#T$puzKF=Xjn)$8Gd04e%1~8Pxk|*|I z_2LpB;~+I8aOuBAp>o(hqGg~|(s}5y`klM~tXdjX(*;}5(0Cz&?)XJojs9`Cj?B?p zy8<;Abppaf?UhmFmn)FZz@$hPg{20W(t`~N`^qPedVDV)wee=ZIeowIOt5XEG$(I> zW`Fieq?a&KtmR{R#`!^lSTo>^9WcefqRw1K!mV?ULG|s<1 z0l>nH%aSF6G##e_>Sm;6ZFS&yUxfrqR14>pa* zzOChWV@)*i(Fry^D1jGi#qZWQ}c?3`2I~m6gda-KhWIVgP5_{JBz+fQ9nql^6 zm5ik?u)Ol%DH{N%v_$Y_ay;j=0!DOCNXD@PVZbzSbZ-dBxCF>T_hB!RQ3C`Mh55zM zT7!pkf=5eG13Igrl!mJ`v}R;7E;IwSC$}$;2qeG=7nA@j(BJI^91mj0{21&pv43X) z;5Tq|w||tPL?G8usbtKld^EE2y@%&)KPe>RFSbK`DYfFl=ACzJm{}$zo|FQYJ6XXC z{;8Rqq{QWm_ro7#-0)BfCQVcD2fYAGgaaixz_~z;B9>kWAporzS~DPlShoXINLaSS zurB6qj$yzfeMoBu6VFOu`RXkIDOA_?JWBUsQxcJ5{q~f`2Wm4{w_s`h0__SI) zr?N*b+yMaa_^hsnXEk4uN$6X&;-qH6mAAbQ!*bbmfZ12}qO95hYXU1m&|d(hbq=l0 z2@?+sh7D)&OBd6vXU`5cHpp=Hnr9Y+OS)>x# z%acRdst0Fn-u)kY=ATw&Wt?sac3)m603Z31)>?qq-o5)vH`_M8>#@xlLv-=|4H)9j-+&2FTWq6+vhBsen zpflAC+mi5D1dnCFV+wd|iT36~Z2DaYwwXo!w|el}FM=TLV(#sI2$pK3vkK{~M#|C1 zWL;!k#>BiZBr9aog9G_m7e83PRXxyp3GS|Z^RM#R_#}Yuo3Sa^JV<7{_QhjIgl*(| zECG)tb3A4-EKq<}KxuUx!VDo);lN*@5E!SBjsjL5kIv(f8~}l}#@?O|WD+jaK;p=z zr3V#&zZ&c(2K;Aq896(i!U6>@*L=B$D$a_-_5&5?CXrW?f$7yJB^%Lk-Mukt^o=E8 zVx7VfB>8Sq}^ zlj6Cta&t^6JwiGK7J^`bAnsg$kuRl`r#Rq!&noIdzF(kbS_YvoP8@px*UK~zfM>D_O@u`@ZP~2J$ZIsuoN&1YeF)az1!7pjH#H|uRkhvFcPkFu(j)_skriU zHdjRSwx%y=e0E>u>;)BTq#+GH<04EzcWdmNch>jZ?qoPm8nll|9|8CP5y7^NKtV~L zv1QdQNX3JQ4HP2YUx>GUyc9tNLkQu|ZEL(oc+n8eW8}4tL&v(Bc;X9gUofc2$t({H)aOt|~IHPRIt92hcXX*c*H|xIEi}~*N zBl@;CYLlO}k7K$IufA-@Uyg9&T>R$h^5*zZX7~XCZTy=C{BgE&!B)i7%bbk4zaj$C zN$2&yYrvyT@{IUhI_V%CqhEj4Ya5?SvNLw|cPC%VCb{qb1z;fz*D}0!OsMfN{@(5Q dxBfm4`#+F_8OsDeji>+s002ovPDHLkV1nhiQi=co literal 0 HcmV?d00001 diff --git a/src/img/badass/badass1Large.png b/src/img/badass/badass1Large.png new file mode 100644 index 0000000000000000000000000000000000000000..677b2a1bf043ed326818fa35e823aab9ea697e18 GIT binary patch literal 5938 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 Uv>p;%7XSbN07*qoM6N<$f+c84zW@LL literal 0 HcmV?d00001 diff --git a/src/img/badass/badass1Medium.png b/src/img/badass/badass1Medium.png new file mode 100644 index 0000000000000000000000000000000000000000..69c248b004ed22a8d9e5f569a8bdbe49f4e4feb4 GIT binary patch literal 2434 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 Ao&W#< literal 0 HcmV?d00001 diff --git a/src/img/badass/badass1Mini.png b/src/img/badass/badass1Mini.png new file mode 100644 index 0000000000000000000000000000000000000000..c7a69843afd94cbbde24a7babb03ce68eaa228d5 GIT binary patch literal 1686 zcmV;H25I?;P)X1^@s6CN-WK00001b5ch_0Itp) z=>Px#24YJ`L;(K){{a7>y{D4^000SaNLh0L01Jr#01Jr$H_6Mb00007bV*G`2i^)5 z0TdDyLZsOM00tIGL_t(Y$JJJAaFpd0e$M+{_S^5GKQbQn;WLOA^CJ=IC zlg(bf>*){Lnb?^IC>>`!zuq~w=bU-pbKVE|G>QA_sPk)|5UBSrP;V<_`?pX4zxtiKeQke=m0eD^uXL>RFW5MHef}38%ijFm z6@@YYgs<(kk8i4q{%l;=?q6|7wR>>kV9{Tj;8Rq90Z9T`EcnH_aR9(k(v_F;^8Z4rBr!)@z@qwl-bHA_pozCLw4oBYOJwlUi z+SyV({dg`?WK|sdd)|I475~WuBNoq?rsBEGIkx@ziao%<00B7YspS*HMkE%|luj12 ze*ALq)pZ{<;s>c=qt9~6G)e0v;YmUeC(V(FY>ce-Q-1BDU$$YOM`{igbq~pRO6z&q z-tu}&&Sr^KpB4~P0zuxKGJ87$1tKLWa#$h17fuYnfHnkq8D6*zJh@1aCL{@pEDC-; zzM9tE-dOuJd^EVLV#?D{EH#&=jO(#w2w$PkCzp60gAAJ^6LWhv+|-_v0bp}Y;`Gw` zqJspwTL@xBl|wR&>(4bsiLxFhTt^5;bKl4$sajjg@5z$TNRmiZBuElPP#hJRc3P(B zoQoD}rH6MEjVr1gg5$Wzn~-DM^kA_IfckBVw*i3k*xoN;|CR)9SQ6VM`*?{gNg+j+ zVP43iBiqVxy1@@0WR6a!;Jzbi{S_+|9+uRSf~Zju(iQ3($o2>7_ZN1hl&>^XN#<>=m%WlcQG8vx7ApJbH^qrn)PtW^*u++s|PVIBG^X(W(Tly4qOIE$Z(lh zHWaW25CgL0V{1g?NjD5Y(KF{&J^Q?4@r~=I?%%qqb@s=X(0>m4eS4>3W6g<+g~V_4 zM(ji~i z#&FufP{u~`f(7&Zg=gaTbv`=QCKLb7u(t950Kg_9&-J?5v=(JYvhRD2dv|k-edHg1 zE~KGzDm5SQdyZv)$IV%5B*(4Oh+kq!=$Bfd;*vj+#{eTUZ}RvCCu?Vin)tXwLud?^QJh9pRT{r4@Kjc8zY*0K*N89k%K zoQtnnr0Mjb;WtN;PX3vA--@!DqCKwTSy$b$UsI47GGm=>DG~~AlmxBu%ji9Gc%~D7 zXCWu!*Ikf>`52a}kGRr+T@PKv>TV1?o=%#L0Pqff`IDo#Z@76?{7 g04V=f{uRgn6Ze;_(xQiNF#rGn07*qoM6N<$g4E+Ei~s-t literal 0 HcmV?d00001 diff --git a/src/img/badass/badass2.png b/src/img/badass/badass2.png new file mode 100644 index 0000000000000000000000000000000000000000..8eacc09549ac4ac6527ca92418e19dbbc58772bd GIT binary patch literal 5655 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 mL_U0JH2U?iiNs%A|NjFp{LRKw5_1Ls0000l8 literal 0 HcmV?d00001 diff --git a/src/img/badass/badass3Mini.png b/src/img/badass/badass3Mini.png new file mode 100644 index 0000000000000000000000000000000000000000..23d192de0bec9c44aa66d9683b54e024122c3674 GIT binary patch literal 2174 zcmV-^2!Z#BP)Px#24YJ`L;(K){{a7>y{D4^000SaNLh0L01Qq501Qq6e|L-{00007bV*G`2i^)5 z0v`hDN7F9=00;g_L_t(o!_Aj_a8=b6#(#UCbI-lW$-PN#UWPnK3=sq*0SwhrrqPOG zb)-`9QE@=4sI@I)mGMz&2gll0YqeEd+M<T6NDMVa>D$CnOJ)1@ug9KAT+@xZNZE>{q%|FoYA`M7Y_(j zsa4OWT}AnhIvjJUkS@+r&77+0I3ZnP?r=;Vra5Kb9rxe!`|1nob#7T3vZ!% zwFD?oKq{RTKX`aadJC0$HF@ff&y(@ z9ZaU4i6}jQR&@Ik+3UK+*-GbSna1CWZgvu?7xW59L4G_GoaS4Wh}Lu$7o7~`0p0GC z;1{5rIfmWt`*RNX(pF;y4p=aNFWM2w=?Mhp-st-`{myfXd_>+$4YH(ZgFn_#Npo>g z!T!e&bZ_qwnKdj{S>-r6>pb_Kv8W~DxdTD1j5sQ*5$uTghZ2ro(|$ga{RI82;C(j` z2qjH3l+4HwF$@NCa`B-Q=vMjElF#JT8UDYP56I63Aa}Cw5Bk0zb40v=(wVzcsWHvI zZw&9a0>pxzAV!Dz%l%!+OvO52*60b%zR-eIiDB{%1h+twq1k`GaT70L_#`6g_Xx^v38M<<)}uY z2T$$t+=Ch*Cj20*SU+k4fV#GzNWC5X9yJB?s0d%k`_9E&nU@oJUHmK5KR74RzATLqKqVp(Dqj9O#f^=6;~{-x-q-J%^3)R@!S#Flr*8IKV}{kI zzGin*A8KWvyPvgvyN*1>6!5K0@D_mn=mM_?;OC>O_?1YM&GwgNjW>w~_hdHt(>TMn z*^r1y;M{YF-nvY04`obkswlrcCB6#A<7g2Qi6kFXRxaKeu+?J*1%w~HcAp^d! zCsNNErm)tTz&5FoI=kS=gJdJ{^vHl7X#*jpaNu?e=8rV?AvZ2xvOP7BY>`9BcIITc zvfpu(sWnD2fz#iQrL`!n#8!%6Uq5C%PD%4#{6IiV5dp;XJkSaOl}L6-e{vtOWQ$A< z2bAZ>WE8md`ktAOBnf%u{ey^5Z#b8s~qy6#89sy+K` ze8)XWxZWrp~Y6AJOtPJ^tL z{i^WQEp-0&MX9l4*a4I0+S=5wAAXqriVE4?+>C-=3)Xt@IB)~-TGuh$&8Nb-rfIKt z-8W+}0T2aTT~NReOG|OJW@WsZvP@3}#iy~`k*ji=2`j~Qd-kxluMdB?zbR-nq1J)k zbWFrC(dKzZ3PM?>Wr**ix;h8KB1wGT)tcx;tIsOV2#DpmV7r(i-k|Gt6@nSb$%#6) zt(DRYwzVqfI9$%LZIuWv$aSqP3=GC7d30sd>?KPU=6dmcO@$>dt_fC7pVHMO@se`c z*>*@z2)2GWZm4tSZ~FR5raiXm<*gUZkLKDL+^bYtHcY4EbOGf!zPPcN>dOk37J`%6 zJJc6(Vh8622}I zf+FqvI%B=Pm9H#aI<9N#G+t_Mp1*L>74PpaIZ+DQ+E5x)(?Q<6>>FRW@A3sZliAt0 z*%2yMt~@B`o#&kAtjE7SZ(@#%54QdvOra*-9+y!XMEM?dQ< z%qx5Bgz|=(iC4+QN!Q9fPpp83BX44)}h09BB$p+iIac&+pK zyg|y!bS|vVfQ`#-JHY1=ry0iOvjTzTpJmQ}0~MicsuJK?l>h($07*qoM6N<$f{Io! AJ^%m! literal 0 HcmV?d00001 diff --git a/src/img/badass/transparency/badass1-transp.png b/src/img/badass/transparency/badass1-transp.png new file mode 100644 index 0000000000000000000000000000000000000000..2a8a40db0751e903d2d0e86f3d077c91b931b782 GIT binary patch literal 3779 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 literal 0 HcmV?d00001 diff --git a/src/img/badass/transparency/badass1Large-transp.png b/src/img/badass/transparency/badass1Large-transp.png new file mode 100644 index 0000000000000000000000000000000000000000..37b48148a431d94d89481f083d6d0c44ab0f9cdc GIT binary patch literal 5077 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 literal 0 HcmV?d00001 diff --git a/src/img/badass/transparency/badass2-transp.png b/src/img/badass/transparency/badass2-transp.png new file mode 100644 index 0000000000000000000000000000000000000000..1671f909157919bf8339d57886634faf5066b7f8 GIT binary patch literal 5558 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 Ef;d0fr2qf` literal 0 HcmV?d00001 diff --git a/src/img/badass/transparency/badass2Large-transp.png b/src/img/badass/transparency/badass2Large-transp.png new file mode 100644 index 0000000000000000000000000000000000000000..e285ee89ef4a6a72496af92e0d3500602af6f210 GIT binary patch literal 8024 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 Hu0mjfJOc5k literal 0 HcmV?d00001 diff --git a/src/img/badass/transparency/badass3Large-transp.png b/src/img/badass/transparency/badass3Large-transp.png new file mode 100644 index 0000000000000000000000000000000000000000..dab124f0b9707e0bf1a707b80ef5e0062f3e37af GIT binary patch literal 6800 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 Hu0mjfM-2oq literal 0 HcmV?d00001 diff --git a/src/img/badass/transparency/badass3Mini-transp.png b/src/img/badass/transparency/badass3Mini-transp.png new file mode 100644 index 0000000000000000000000000000000000000000..a11e9ca92c514d5d312f881cc573b9c5ac3b2319 GIT binary patch literal 2069 zcmV+w2Px#24YJ`L;(K){{a7>y{D4^000SaNLh0L01Qq501Qq6e|L-{00007bV*G`2i^)5 z0v`_G@t*_$00)&xL_t(o!?l-taMaZm$3OS}9=n^(Zg!VE$cuzWASx2^!9Xn*6%Zdo zTdUSu9jUceYg@*49CegB&a|EBIF8d+E3Ig?V>?o&IxUash>!Xj6h#n1Kp=%A8v=Rn zZg%&#`}_Uw?H>}Ph)yE${Q0}*e((33bI?s4SBoO|Bvd%FGNntvJJuV#rMla zQ>vl?!V!@+2i|%owQ|8#{s-xHV=u$AdZc-y4%+_`PVwkCqP7p2k!hR1ze04MaVB?s zv}-n9J+F^-{~(CCZB_qD>7~DL1{#{|=UI2jZZF{#Q|4{S9eGFN117+#qFb}qvR3q# z1m6r4ihH6$7LbB|r2~gNFH$CCsMIvtYh2eGJ)j6B`Cy=0**02A`m3wTHIxX*jrzEz zVINj%#!;oyEw(jcLlLEgt95YDvS!_-)K{MLy|6;_QE`No?OSw%A$;?;s)~{4j`klN z)Orel2R!S#!Tb|{#aGT>R3Sujnr5DK9U zgOOMq1yLa9Z)P$TR6f5@bv=~POEVChtyEDd<+@sHOGxWLu^8!4N}QNg8}b2+jQrh^ zKHotfIyvnfO7o^t5gn;1-ywsE-2_WpN-6>=2tH9^R3exs1#1UIOGauSEnMCp-PH zqKch~pV3lrHI0#Pvd_Ja?@fvY-qLE0c$FE>2F}v;gafW8rPdg}4@zUXMZ!?fvnX}` z$uw^h@haOs!vK5cl)Ffj-^~2@GIkbk(L{N(`2+RTG=(qQCSuPG{ zSW%kfY`dSVKE#W|oh;Vjn%xJd+p{kGY3RKTZ%vN|0+GR3S@qtlmJ25urSX-Qscvf% z?+nWYlfL!Ks^|aOW4?YUJ$b9|$$55)Z-o0<6zrngJHp1)-cu3W_%8HtA{n65f-NU{ zT^dcWHT*T!`)9GiJA-%Cxm+9$v&G3_U49vfdsm4MgQ3aojZ@AqY9#{sJW^{Mr@;QH zQ_tIO*)@rK?z82xC4A^OWR&J$bP?;B!$!B69lC`J!WAczO9H!(>+6XtF1%vHIzRzr zy*ytH`(z583>OZwtkmO(>tafYQE+h6X>2JGQVh=Lvu4xDFL5d9cuyD0R-4SioF-u4($8X z3-uY=xer(?;4h=(I3cVzv?fwlhhHorgg^jZSs6#0ns8!K+ON10)AP{B{Lfjs6!nR0 z9=BuI>wvYVBKLny@)RU+A|IQ6{k9_yWI}2rHcx6!<*R09wE3Z^v8o^ObE7`u? zB#{s^T3g?aj*MhPUti;3th9OX-#w`RCbeq^G1_;E&F?-CEBSB_3x9m)`koals`k%4 zr?IlFE%x!CGLDRl)p4m1_Dfp-=pn5SB=;TI_2jIkkFg9nh7u_ETpAY<=G0F_%jOGU+Sa_F5sq>IyzCfa-x6^ z)Ys?BU?2dg8$zLpzh4t!^9|$dg_gBwA~F95li@SYeqMCn00000NkvXXu0mjf7iZoi literal 0 HcmV?d00001 diff --git a/src/img/hero-down.png b/src/img/hero-down.png new file mode 100644 index 0000000000000000000000000000000000000000..749672267bdf2092e891c3f80602248e558e249f GIT binary patch literal 3483 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 literal 0 HcmV?d00001 diff --git a/src/img/hero/hero-down.png b/src/img/hero/hero-down.png new file mode 100644 index 0000000000000000000000000000000000000000..749672267bdf2092e891c3f80602248e558e249f GIT binary patch literal 3483 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 JPDHLkV1l)6e~thE literal 0 HcmV?d00001 diff --git a/src/img/hero/hero-up.png b/src/img/hero/hero-up.png new file mode 100644 index 0000000000000000000000000000000000000000..a72cef0a2c626f18155487a82c0639a76b434398 GIT binary patch literal 3555 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 literal 0 HcmV?d00001 diff --git a/test/randoop/RandoopTest.java b/test/randoop/RandoopTest.java new file mode 100644 index 0000000..dc6786b --- /dev/null +++ b/test/randoop/RandoopTest.java @@ -0,0 +1,37 @@ +package randoop; +import junit.framework.*; +import junit.textui.*; + +public class RandoopTest extends TestCase { + + public static void main(String[] args) { + TestRunner runner = new TestRunner(); + TestResult result = runner.doRun(suite(), false); + if (! result.wasSuccessful()) { + System.exit(1); + } + } + + public RandoopTest(String name) { + super(name); + } + + public static Test suite() { + TestSuite result = new TestSuite(); + result.addTest(new TestSuite(RandoopTest0.class)); + result.addTest(new TestSuite(RandoopTest1.class)); + result.addTest(new TestSuite(RandoopTest2.class)); + result.addTest(new TestSuite(RandoopTest3.class)); + result.addTest(new TestSuite(RandoopTest4.class)); + result.addTest(new TestSuite(RandoopTest5.class)); + result.addTest(new TestSuite(RandoopTest6.class)); + result.addTest(new TestSuite(RandoopTest7.class)); + result.addTest(new TestSuite(RandoopTest8.class)); + result.addTest(new TestSuite(RandoopTest9.class)); + result.addTest(new TestSuite(RandoopTest10.class)); + result.addTest(new TestSuite(randoopFailures.RandoopTest_failure_1.class)); + result.addTest(new TestSuite(randoopFailures.RandoopTest_failure_2.class)); + return result; + } + +} diff --git a/test/randoop/RandoopTest0.java b/test/randoop/RandoopTest0.java new file mode 100644 index 0000000..4431c4c --- /dev/null +++ b/test/randoop/RandoopTest0.java @@ -0,0 +1,28727 @@ +package randoop; + +import junit.framework.*; + +public class RandoopTest0 extends TestCase { + + public static boolean debug = false; + + public void test1() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test1"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + // The following exception was thrown during execution. + // This behavior will recorded for regression testing. + try { + boolean var7 = var0.areFocusTraversalKeysSet(10); + fail("Expected exception of type java.lang.IllegalArgumentException"); + } catch (java.lang.IllegalArgumentException e) { + // Expected exception. + } + + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + } + + public void test2() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test2"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.updateUI(); + var0.enableInputMethods(true); + java.awt.Point var9 = var0.getMousePosition(false); + SpaceWar.SpacePanel var10 = new SpaceWar.SpacePanel(); + float var11 = var10.getAlignmentX(); + var10.setVisible(false); + var10.nextFocus(); + var10.updateUI(); + var10.enableInputMethods(true); + // The following exception was thrown during execution. + // This behavior will recorded for regression testing. + try { + var0.setComponentZOrder((java.awt.Component)var10, 10); + fail("Expected exception of type java.lang.IllegalArgumentException"); + } catch (java.lang.IllegalArgumentException e) { + // Expected exception. + } + + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNull(var9); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == 0.5f); + + } + + public void test3() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test3"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + // The following exception was thrown during execution. + // This behavior will recorded for regression testing. + try { + java.awt.Point var5 = var0.getLocationOnScreen(); + fail("Expected exception of type java.awt.IllegalComponentStateException"); + } catch (java.awt.IllegalComponentStateException e) { + // Expected exception. + } + + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + } + + public void test4() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test4"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var6 = var0.getUI(); + // The following exception was thrown during execution. + // This behavior will recorded for regression testing. + try { + boolean var8 = var0.areFocusTraversalKeysSet((-1)); + fail("Expected exception of type java.lang.IllegalArgumentException"); + } catch (java.lang.IllegalArgumentException e) { + // Expected exception. + } + + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + } + + public void test5() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test5"); + + + SpaceWar.SpaceWar var0 = new SpaceWar.SpaceWar(); + + } + + public void test6() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test6"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + java.awt.im.InputMethodRequests var3 = var0.getInputMethodRequests(); + var0.setDoubleBuffered(true); + java.awt.event.MouseWheelListener[] var6 = var0.getMouseWheelListeners(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + } + + public void test7() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test7"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.updateUI(); + // The following exception was thrown during execution. + // This behavior will recorded for regression testing. + try { + boolean var7 = var0.areFocusTraversalKeysSet((-1)); + fail("Expected exception of type java.lang.IllegalArgumentException"); + } catch (java.lang.IllegalArgumentException e) { + // Expected exception. + } + + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + } + + public void test8() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test8"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.repaint(1L); + SpaceWar.SpacePanel var7 = new SpaceWar.SpacePanel(); + float var8 = var7.getAlignmentX(); + var7.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var13 = new SpaceWar.SpacePanel(); + float var14 = var13.getAlignmentX(); + var13.setVisible(false); + java.awt.Dimension var17 = var13.getPreferredSize(); + var7.setMaximumSize(var17); + var0.setPreferredSize(var17); + javax.swing.plaf.PanelUI var20 = var0.getUI(); + // The following exception was thrown during execution. + // This behavior will recorded for regression testing. + try { + java.awt.Component var22 = var0.getComponent(0); + fail("Expected exception of type java.lang.ArrayIndexOutOfBoundsException"); + } catch (java.lang.ArrayIndexOutOfBoundsException e) { + // Expected exception. + } + + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + } + + public void test9() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test9"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + java.awt.im.InputMethodRequests var3 = var0.getInputMethodRequests(); + java.awt.GraphicsConfiguration var4 = var0.getGraphicsConfiguration(); + SpaceWar.SpacePanel var5 = new SpaceWar.SpacePanel(); + float var6 = var5.getAlignmentX(); + var5.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var11 = var5.getMouseListeners(); + var5.firePropertyChange("", 0.5f, 100.0f); + var5.enable(false); + // The following exception was thrown during execution. + // This behavior will recorded for regression testing. + try { + var0.setComponentZOrder((java.awt.Component)var5, 100); + fail("Expected exception of type java.lang.IllegalArgumentException"); + } catch (java.lang.IllegalArgumentException e) { + // Expected exception. + } + + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertNull(var4); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + } + + public void test10() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test10"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + var0.show(false); + boolean var8 = var0.isPaintingForPrint(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var15 = var9.getMouseListeners(); + int var16 = var9.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var17 = var9.getInputMethodRequests(); + var0.addKeyListener((java.awt.event.KeyListener)var9); + var9.invalidate(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + } + + public void test11() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test11"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.updateUI(); + var0.enableInputMethods(true); + java.awt.Point var9 = var0.getMousePosition(false); + var0.firePropertyChange("", '#', '4'); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNull(var9); + + } + + public void test12() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test12"); + + + SpaceWar.Generals var0 = new SpaceWar.Generals(); + + } + + public void test13() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test13"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + var0.show(false); + boolean var8 = var0.isPaintingForPrint(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var15 = var9.getMouseListeners(); + int var16 = var9.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var17 = var9.getInputMethodRequests(); + var0.addKeyListener((java.awt.event.KeyListener)var9); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + float var20 = var19.getAlignmentX(); + var19.setVisible(false); + boolean var23 = var19.isDoubleBuffered(); + var19.list(); + float var25 = var19.getAlignmentY(); + boolean var26 = var9.isFocusCycleRoot((java.awt.Container)var19); + javax.swing.JPopupMenu var27 = var19.getComponentPopupMenu(); + // The following exception was thrown during execution. + // This behavior will recorded for regression testing. + try { + javax.swing.InputMap var29 = var19.getInputMap(25); + fail("Expected exception of type java.lang.IllegalArgumentException"); + } catch (java.lang.IllegalArgumentException e) { + // Expected exception. + } + + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var27); + + } + + public void test14() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test14"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + boolean var4 = var0.inside(0, (-1)); + java.awt.event.KeyListener[] var5 = var0.getKeyListeners(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + } + + public void test15() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test15"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.setInheritsPopupMenu(false); + var0.move(10, 10); + boolean var9 = var0.isMinimumSizeSet(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == false); + + } + + public void test16() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test16"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + var0.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + java.awt.Toolkit var5 = var0.getToolkit(); + // The following exception was thrown during execution. + // This behavior will recorded for regression testing. + try { + java.awt.Point var6 = var0.getLocationOnScreen(); + fail("Expected exception of type java.awt.IllegalComponentStateException"); + } catch (java.awt.IllegalComponentStateException e) { + // Expected exception. + } + + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + } + + public void test17() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test17"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var6 = var0.getUI(); + java.awt.im.InputMethodRequests var7 = var0.getInputMethodRequests(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + var8.nextFocus(); + var8.updateUI(); + var8.enableInputMethods(true); + var8.setSize((-1), 1); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + var19.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var0.add((java.awt.Component)var8, (java.lang.Object)"SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + var8.doLayout(); + // The following exception was thrown during execution. + // This behavior will recorded for regression testing. + try { + java.awt.Component var27 = var8.getComponent((-1)); + fail("Expected exception of type java.lang.ArrayIndexOutOfBoundsException"); + } catch (java.lang.ArrayIndexOutOfBoundsException e) { + // Expected exception. + } + + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + } + + public void test18() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test18"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + var0.list(); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + float var7 = var6.getAlignmentX(); + var6.setVisible(false); + boolean var10 = var6.isDoubleBuffered(); + java.awt.dnd.DropTarget var11 = var6.getDropTarget(); + var6.show(false); + java.awt.Rectangle var14 = var6.getVisibleRect(); + java.awt.Rectangle var15 = var0.getBounds(var14); + javax.swing.JToolTip var16 = var0.createToolTip(); + var0.firePropertyChange("", false, false); + var0.validate(); + SpaceWar.SpacePanel var22 = new SpaceWar.SpacePanel(); + float var23 = var22.getAlignmentX(); + var22.setVisible(false); + SpaceWar.SpacePanel var26 = new SpaceWar.SpacePanel(); + java.awt.Color var27 = var26.getBackground(); + var22.setForeground(var27); + SpaceWar.SpacePanel var29 = new SpaceWar.SpacePanel(); + float var30 = var29.getAlignmentX(); + var29.setVisible(false); + boolean var33 = var29.isDoubleBuffered(); + java.awt.dnd.DropTarget var34 = var29.getDropTarget(); + var29.show(false); + java.awt.Rectangle var37 = var29.getVisibleRect(); + var22.repaint(var37); + java.awt.FocusTraversalPolicy var39 = var22.getFocusTraversalPolicy(); + SpaceWar.SpacePanel var40 = new SpaceWar.SpacePanel(); + float var41 = var40.getAlignmentX(); + var40.firePropertyChange("", (-1), 1); + boolean var46 = var40.isFocusOwner(); + SpaceWar.SpacePanel var48 = new SpaceWar.SpacePanel(); + float var49 = var48.getAlignmentX(); + var48.setVisible(false); + java.awt.Dimension var52 = var48.getPreferredSize(); + java.awt.Toolkit var53 = var48.getToolkit(); + SpaceWar.SpacePanel var54 = new SpaceWar.SpacePanel(); + var54.setName(""); + int var57 = var54.getX(); + SpaceWar.SpacePanel var58 = new SpaceWar.SpacePanel(); + float var59 = var58.getAlignmentX(); + var58.setVisible(false); + var58.nextFocus(); + SpaceWar.SpacePanel var63 = new SpaceWar.SpacePanel(); + float var64 = var63.getAlignmentX(); + var63.setVisible(false); + SpaceWar.SpacePanel var67 = new SpaceWar.SpacePanel(); + java.awt.Color var68 = var67.getBackground(); + var63.setForeground(var68); + var58.setBackground(var68); + var54.setBackground(var68); + var48.setForeground(var68); + var40.putClientProperty((java.lang.Object)(byte)100, (java.lang.Object)var68); + var22.setBackground(var68); + SpaceWar.SpacePanel var75 = new SpaceWar.SpacePanel(); + float var76 = var75.getAlignmentX(); + var75.setVisible(false); + boolean var79 = var75.isDoubleBuffered(); + java.awt.dnd.DropTarget var80 = var75.getDropTarget(); + var75.show(false); + boolean var83 = var75.isPaintingForPrint(); + SpaceWar.SpacePanel var84 = new SpaceWar.SpacePanel(); + float var85 = var84.getAlignmentX(); + SpaceWar.SpacePanel var86 = new SpaceWar.SpacePanel(); + float var87 = var86.getAlignmentX(); + var86.setVisible(false); + java.awt.Dimension var90 = var86.getPreferredSize(); + boolean var91 = var86.getVerifyInputWhenFocusTarget(); + java.awt.Component var94 = var86.findComponentAt(10, 1); + var84.addKeyListener((java.awt.event.KeyListener)var86); + java.awt.Dimension var96 = var86.getMinimumSize(); + var75.setMinimumSize(var96); + java.awt.Dimension var98 = var22.getSize(var96); + var0.setPreferredSize(var98); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var27); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var30 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var33 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var34); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var37); + + // Regression assertion (captures the current behavior of the code) + assertNull(var39); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var41 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var46 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var49 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var52); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var53); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var57 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var59 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var64 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var68); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var76 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var79 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var80); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var83 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var85 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var87 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var90); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var91 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var94); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var96); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var98); + + } + + public void test19() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test19"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + java.awt.im.InputMethodRequests var3 = var0.getInputMethodRequests(); + var0.setDoubleBuffered(true); + var0.setInheritsPopupMenu(false); + boolean var8 = var0.isFocusTraversalPolicySet(); + // The following exception was thrown during execution. + // This behavior will recorded for regression testing. + try { + var0.remove(100); + fail("Expected exception of type java.lang.ArrayIndexOutOfBoundsException"); + } catch (java.lang.ArrayIndexOutOfBoundsException e) { + // Expected exception. + } + + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + } + + public void test20() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test20"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + var0.setRequestFocusEnabled(false); + var0.reshape(100, 0, 100, 0); + javax.swing.event.AncestorListener[] var10 = var0.getAncestorListeners(); + int var11 = var0.getWidth(); + // The following exception was thrown during execution. + // This behavior will recorded for regression testing. + try { + boolean var13 = var0.areFocusTraversalKeysSet(100); + fail("Expected exception of type java.lang.IllegalArgumentException"); + } catch (java.lang.IllegalArgumentException e) { + // Expected exception. + } + + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == 100); + + } + + public void test21() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test21"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var6 = var0.getUI(); + java.awt.im.InputMethodRequests var7 = var0.getInputMethodRequests(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + var8.nextFocus(); + var8.updateUI(); + var8.enableInputMethods(true); + var8.setSize((-1), 1); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + var19.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var0.add((java.awt.Component)var8, (java.lang.Object)"SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + java.awt.event.KeyListener[] var25 = var0.getKeyListeners(); + var0.repaint(3, 1, 25, 0); + // The following exception was thrown during execution. + // This behavior will recorded for regression testing. + try { + java.awt.Point var31 = var0.getLocationOnScreen(); + fail("Expected exception of type java.awt.IllegalComponentStateException"); + } catch (java.awt.IllegalComponentStateException e) { + // Expected exception. + } + + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var25); + + } + + public void test22() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test22"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + var0.setRequestFocusEnabled(false); + var0.setIgnoreRepaint(false); + boolean var7 = var0.requestFocusInWindow(); + float var8 = var0.getAlignmentY(); + java.lang.String var9 = var0.toString(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var9 + "' != '" + "SpaceWar.SpacePanel[,0,0,0var9,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"+ "'", var9.equals("SpaceWar.SpacePanel[,0,0,0var9,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]")); + + } + + public void test23() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test23"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + var0.show(false); + boolean var8 = var0.isPaintingForPrint(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var15 = var9.getMouseListeners(); + int var16 = var9.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var17 = var9.getInputMethodRequests(); + var0.addKeyListener((java.awt.event.KeyListener)var9); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + float var20 = var19.getAlignmentX(); + var19.setVisible(false); + boolean var23 = var19.isDoubleBuffered(); + var19.list(); + float var25 = var19.getAlignmentY(); + boolean var26 = var9.isFocusCycleRoot((java.awt.Container)var19); + SpaceWar.SpacePanel var27 = new SpaceWar.SpacePanel(); + java.awt.Color var28 = var27.getBackground(); + var27.repaint(); + var27.setRequestFocusEnabled(false); + // The following exception was thrown during execution. + // This behavior will recorded for regression testing. + try { + var9.add((java.awt.Component)var27, (java.lang.Object)(-1L), 25); + fail("Expected exception of type java.lang.IllegalArgumentException"); + } catch (java.lang.IllegalArgumentException e) { + // Expected exception. + } + + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var28); + + } + + public void test24() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test24"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + var0.list(); + float var6 = var0.getAlignmentY(); + java.awt.event.ComponentListener[] var7 = var0.getComponentListeners(); + java.awt.Component var8 = var0.getNextFocusableComponent(); + // The following exception was thrown during execution. + // This behavior will recorded for regression testing. + try { + java.awt.Point var9 = var0.getLocationOnScreen(); + fail("Expected exception of type java.awt.IllegalComponentStateException"); + } catch (java.awt.IllegalComponentStateException e) { + // Expected exception. + } + + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertNull(var8); + + } + + public void test25() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test25"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + boolean var6 = var0.isFocusCycleRoot(); + var0.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", 100, 0); + SpaceWar.SpacePanel var11 = new SpaceWar.SpacePanel(); + float var12 = var11.getAlignmentX(); + var11.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var17 = var11.getUI(); + var0.add((java.awt.Component)var11, (java.lang.Object)(short)0); + SpaceWar.SpacePanel var20 = new SpaceWar.SpacePanel(); + java.awt.Color var21 = var20.getBackground(); + var20.repaint(); + java.awt.im.InputMethodRequests var23 = var20.getInputMethodRequests(); + // The following exception was thrown during execution. + // This behavior will recorded for regression testing. + try { + var0.setComponentZOrder((java.awt.Component)var20, 100); + fail("Expected exception of type java.lang.IllegalArgumentException"); + } catch (java.lang.IllegalArgumentException e) { + // Expected exception. + } + + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var21); + + // Regression assertion (captures the current behavior of the code) + assertNull(var23); + + } + + public void test26() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test26"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var1 = new SpaceWar.SpacePanel(); + java.awt.Color var2 = var1.getBackground(); + SpaceWar.SpacePanel var3 = new SpaceWar.SpacePanel(); + float var4 = var3.getAlignmentX(); + var3.setVisible(false); + var3.nextFocus(); + var3.updateUI(); + var3.enableInputMethods(true); + var0.add((java.awt.Component)var1, (java.lang.Object)true); + java.awt.Dimension var12 = var1.getPreferredSize(); + var1.move(100, 10); + boolean var16 = var1.isValidateRoot(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var2); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == false); + + } + + public void test27() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test27"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var6 = var0.getUI(); + java.awt.im.InputMethodRequests var7 = var0.getInputMethodRequests(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + var8.nextFocus(); + var8.updateUI(); + var8.enableInputMethods(true); + var8.setSize((-1), 1); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + var19.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var0.add((java.awt.Component)var8, (java.lang.Object)"SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + var0.setAutoscrolls(false); + java.lang.String var27 = var0.getUIClassID(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var27 + "' != '" + "PanelUI"+ "'", var27.equals("PanelUI")); + + } + + public void test28() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test28"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + java.awt.im.InputMethodRequests var3 = var0.getInputMethodRequests(); + int var4 = var0.countComponents(); + java.awt.event.ComponentListener[] var5 = var0.getComponentListeners(); + var0.removeNotify(); + java.awt.Component var9 = var0.getComponentAt(1, (-1)); + // The following exception was thrown during execution. + // This behavior will recorded for regression testing. + try { + boolean var11 = var0.areFocusTraversalKeysSet(10); + fail("Expected exception of type java.lang.IllegalArgumentException"); + } catch (java.lang.IllegalArgumentException e) { + // Expected exception. + } + + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertNull(var9); + + } + + public void test29() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test29"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var1 = new SpaceWar.SpacePanel(); + java.awt.Color var2 = var1.getBackground(); + SpaceWar.SpacePanel var3 = new SpaceWar.SpacePanel(); + float var4 = var3.getAlignmentX(); + var3.setVisible(false); + var3.nextFocus(); + var3.updateUI(); + var3.enableInputMethods(true); + var0.add((java.awt.Component)var1, (java.lang.Object)true); + // The following exception was thrown during execution. + // This behavior will recorded for regression testing. + try { + java.awt.Component var13 = var1.getComponent(100); + fail("Expected exception of type java.lang.ArrayIndexOutOfBoundsException"); + } catch (java.lang.ArrayIndexOutOfBoundsException e) { + // Expected exception. + } + + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var2); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0.5f); + + } + + public void test30() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test30"); + + + SpaceWar.Explosion var4 = new SpaceWar.Explosion(10.0d, 100.0d, 1, (-1)); + boolean var5 = var4.update(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == true); + + } + + public void test31() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test31"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + SpaceWar.SpacePanel var2 = new SpaceWar.SpacePanel(); + float var3 = var2.getAlignmentX(); + var2.setVisible(false); + java.awt.Dimension var6 = var2.getPreferredSize(); + boolean var7 = var2.getVerifyInputWhenFocusTarget(); + java.awt.Component var10 = var2.findComponentAt(10, 1); + var0.addKeyListener((java.awt.event.KeyListener)var2); + SpaceWar.SpacePanel var12 = new SpaceWar.SpacePanel(); + float var13 = var12.getAlignmentX(); + SpaceWar.SpacePanel var14 = new SpaceWar.SpacePanel(); + float var15 = var14.getAlignmentX(); + var14.setVisible(false); + java.awt.Dimension var18 = var14.getPreferredSize(); + boolean var19 = var14.getVerifyInputWhenFocusTarget(); + java.awt.Component var22 = var14.findComponentAt(10, 1); + var12.addKeyListener((java.awt.event.KeyListener)var14); + var14.repaint(100, (-1), (-1), 1); + java.awt.image.ColorModel var29 = var14.getColorModel(); + SpaceWar.SpacePanel var30 = new SpaceWar.SpacePanel(); + float var31 = var30.getAlignmentX(); + var30.setVisible(false); + boolean var34 = var30.isDoubleBuffered(); + var30.list(); + SpaceWar.SpacePanel var36 = new SpaceWar.SpacePanel(); + float var37 = var36.getAlignmentX(); + var36.setVisible(false); + boolean var40 = var36.isDoubleBuffered(); + java.awt.dnd.DropTarget var41 = var36.getDropTarget(); + var36.show(false); + java.awt.Rectangle var44 = var36.getVisibleRect(); + java.awt.image.BufferedImage var46 = var36.loadImg("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + boolean var47 = var30.isAncestorOf((java.awt.Component)var36); + javax.swing.InputVerifier var48 = var36.getInputVerifier(); + var2.putClientProperty((java.lang.Object)var14, (java.lang.Object)var36); + int var50 = var36.getComponentCount(); + java.awt.Container var51 = var36.getParent(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var29); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var31 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var34 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var40 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var41); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var44); + + // Regression assertion (captures the current behavior of the code) + assertNull(var46); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var47 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var48); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var50 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var51); + + } + + public void test32() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test32"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + var0.setRequestFocusEnabled(false); + var0.reshape(100, 0, 100, 0); + var0.requestFocus(); + SpaceWar.SpacePanel var11 = new SpaceWar.SpacePanel(); + float var12 = var11.getAlignmentX(); + var11.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var17 = var11.getUI(); + java.awt.im.InputMethodRequests var18 = var11.getInputMethodRequests(); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + float var20 = var19.getAlignmentX(); + var19.setVisible(false); + var19.nextFocus(); + var19.updateUI(); + var19.enableInputMethods(true); + var19.setSize((-1), 1); + SpaceWar.SpacePanel var30 = new SpaceWar.SpacePanel(); + var30.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var11.add((java.awt.Component)var19, (java.lang.Object)"SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + SpaceWar.SpacePanel var36 = new SpaceWar.SpacePanel(); + var36.setName(""); + java.awt.ComponentOrientation var39 = var36.getComponentOrientation(); + var11.applyComponentOrientation(var39); + var0.setComponentOrientation(var39); + var0.setSize((-1), 100); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var39); + + } + + public void test33() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test33"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + var0.enable(false); + boolean var7 = var0.getFocusTraversalKeysEnabled(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + java.awt.Dimension var12 = var8.getPreferredSize(); + java.awt.Toolkit var13 = var8.getToolkit(); + boolean var14 = var8.isFocusable(); + javax.swing.KeyStroke[] var15 = var8.getRegisteredKeyStrokes(); + SpaceWar.SpacePanel var16 = new SpaceWar.SpacePanel(); + float var17 = var16.getAlignmentX(); + SpaceWar.SpacePanel var18 = new SpaceWar.SpacePanel(); + float var19 = var18.getAlignmentX(); + var18.setVisible(false); + java.awt.Dimension var22 = var18.getPreferredSize(); + boolean var23 = var18.getVerifyInputWhenFocusTarget(); + java.awt.Component var26 = var18.findComponentAt(10, 1); + var16.addKeyListener((java.awt.event.KeyListener)var18); + var18.repaint(100, (-1), (-1), 1); + boolean var33 = var8.isAncestorOf((java.awt.Component)var18); + var0.addKeyListener((java.awt.event.KeyListener)var18); + SpaceWar.SpacePanel var36 = new SpaceWar.SpacePanel(); + float var37 = var36.getAlignmentX(); + var36.setVisible(false); + boolean var40 = var36.isDoubleBuffered(); + java.awt.dnd.DropTarget var41 = var36.getDropTarget(); + var36.show(false); + boolean var44 = var36.isPaintingForPrint(); + SpaceWar.SpacePanel var45 = new SpaceWar.SpacePanel(); + float var46 = var45.getAlignmentX(); + var45.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var51 = var45.getMouseListeners(); + int var52 = var45.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var53 = var45.getInputMethodRequests(); + var36.addKeyListener((java.awt.event.KeyListener)var45); + SpaceWar.SpacePanel var55 = new SpaceWar.SpacePanel(); + float var56 = var55.getAlignmentX(); + var55.setVisible(false); + boolean var59 = var55.isDoubleBuffered(); + var55.list(); + float var61 = var55.getAlignmentY(); + boolean var62 = var45.isFocusCycleRoot((java.awt.Container)var55); + SpaceWar.SpacePanel var64 = new SpaceWar.SpacePanel(); + float var65 = var64.getAlignmentX(); + var64.setVisible(false); + var64.nextFocus(); + var64.updateUI(); + java.awt.Component var70 = var45.add("", (java.awt.Component)var64); + java.awt.Component var71 = var18.add("", (java.awt.Component)var64); + var18.setInheritsPopupMenu(true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var33 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var40 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var41); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var44 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var46 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var51); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var52 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var53); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var56 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var59 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var61 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var62 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var65 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var70); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var71); + + } + + public void test34() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test34"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.repaint(1L); + SpaceWar.SpacePanel var7 = new SpaceWar.SpacePanel(); + float var8 = var7.getAlignmentX(); + var7.setVisible(false); + boolean var11 = var7.isDoubleBuffered(); + var7.list(); + SpaceWar.SpacePanel var13 = new SpaceWar.SpacePanel(); + float var14 = var13.getAlignmentX(); + var13.setVisible(false); + boolean var17 = var13.isDoubleBuffered(); + java.awt.dnd.DropTarget var18 = var13.getDropTarget(); + var13.show(false); + java.awt.Rectangle var21 = var13.getVisibleRect(); + java.awt.Rectangle var22 = var7.getBounds(var21); + var0.setBounds(var22); + boolean var24 = var0.isOptimizedDrawingEnabled(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var21); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var24 == true); + + } + + public void test35() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test35"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.Graphics var5 = var0.getGraphics(); + boolean var6 = var0.isMinimumSizeSet(); + // The following exception was thrown during execution. + // This behavior will recorded for regression testing. + try { + javax.swing.InputMap var8 = var0.getInputMap(100); + fail("Expected exception of type java.lang.IllegalArgumentException"); + } catch (java.lang.IllegalArgumentException e) { + // Expected exception. + } + + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == false); + + } + + public void test36() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test36"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + boolean var6 = var0.isFocusOwner(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + java.awt.Dimension var12 = var8.getPreferredSize(); + java.awt.Toolkit var13 = var8.getToolkit(); + SpaceWar.SpacePanel var14 = new SpaceWar.SpacePanel(); + var14.setName(""); + int var17 = var14.getX(); + SpaceWar.SpacePanel var18 = new SpaceWar.SpacePanel(); + float var19 = var18.getAlignmentX(); + var18.setVisible(false); + var18.nextFocus(); + SpaceWar.SpacePanel var23 = new SpaceWar.SpacePanel(); + float var24 = var23.getAlignmentX(); + var23.setVisible(false); + SpaceWar.SpacePanel var27 = new SpaceWar.SpacePanel(); + java.awt.Color var28 = var27.getBackground(); + var23.setForeground(var28); + var18.setBackground(var28); + var14.setBackground(var28); + var8.setForeground(var28); + var0.putClientProperty((java.lang.Object)(byte)100, (java.lang.Object)var28); + boolean var34 = var0.isEnabled(); + boolean var35 = var0.isFocusTraversalPolicyProvider(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var24 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var28); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var34 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var35 == false); + + } + + public void test37() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test37"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.repaint(1L); + SpaceWar.SpacePanel var7 = new SpaceWar.SpacePanel(); + float var8 = var7.getAlignmentX(); + var7.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var13 = new SpaceWar.SpacePanel(); + float var14 = var13.getAlignmentX(); + var13.setVisible(false); + java.awt.Dimension var17 = var13.getPreferredSize(); + var7.setMaximumSize(var17); + var0.setPreferredSize(var17); + java.awt.Container var20 = var0.getFocusCycleRootAncestor(); + java.awt.image.ColorModel var21 = var0.getColorModel(); + // The following exception was thrown during execution. + // This behavior will recorded for regression testing. + try { + java.awt.Point var22 = var0.getLocationOnScreen(); + fail("Expected exception of type java.awt.IllegalComponentStateException"); + } catch (java.awt.IllegalComponentStateException e) { + // Expected exception. + } + + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var21); + + } + + public void test38() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test38"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var6 = var0.getUI(); + var0.disable(); + var0.setSize((-1), 10); + boolean var11 = var0.hasFocus(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == false); + + } + + public void test39() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test39"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + java.awt.im.InputMethodRequests var3 = var0.getInputMethodRequests(); + var0.setDoubleBuffered(true); + var0.setInheritsPopupMenu(false); + javax.swing.InputMap var8 = var0.getInputMap(); + boolean var9 = var0.isFocusTraversalPolicySet(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == false); + + } + + public void test40() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test40"); + + + SpaceWar.PowerUp var3 = new SpaceWar.PowerUp(100, (-1.0d), 0.0d); + double var4 = var3.getR(); + int var5 = var3.getType(); + double var6 = var3.getR(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0.0d); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == 100); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == 0.0d); + + } + + public void test41() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test41"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + var0.setName(""); + var0.enable(true); + var0.enable(); + // The following exception was thrown during execution. + // This behavior will recorded for regression testing. + try { + java.util.Set var7 = var0.getFocusTraversalKeys(100); + fail("Expected exception of type java.lang.IllegalArgumentException"); + } catch (java.lang.IllegalArgumentException e) { + // Expected exception. + } + + } + + public void test42() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test42"); + + + SpaceWar.Player var0 = new SpaceWar.Player(); + int var1 = var0.getPower(); + var0.setLeft(true); + int var4 = var0.getX(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 400); + + } + + public void test43() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test43"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + var0.setRequestFocusEnabled(false); + var0.reshape(100, 0, 100, 0); + var0.requestFocus(); + var0.firePropertyChange("hi!", '4', ' '); + SpaceWar.Enemy var17 = new SpaceWar.Enemy(0, 100); + int var18 = var17.getR(); + var17.explode(); + var0.putClientProperty((java.lang.Object)var17, (java.lang.Object)(short)10); + var17.hit(); + int var23 = var17.getType(); + var17.update(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == 0); + + } + + public void test44() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test44"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + var0.setRequestFocusEnabled(false); + var0.reshape(100, 0, 100, 0); + java.beans.VetoableChangeListener[] var10 = var0.getVetoableChangeListeners(); + java.awt.Point var12 = var0.getMousePosition(false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertNull(var12); + + } + + public void test45() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test45"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + var0.list(); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + float var7 = var6.getAlignmentX(); + var6.setVisible(false); + boolean var10 = var6.isDoubleBuffered(); + java.awt.dnd.DropTarget var11 = var6.getDropTarget(); + var6.show(false); + java.awt.Rectangle var14 = var6.getVisibleRect(); + java.awt.Rectangle var15 = var0.getBounds(var14); + SpaceWar.SpacePanel var16 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var17 = new SpaceWar.SpacePanel(); + java.awt.Color var18 = var17.getBackground(); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + float var20 = var19.getAlignmentX(); + var19.setVisible(false); + var19.nextFocus(); + var19.updateUI(); + var19.enableInputMethods(true); + var16.add((java.awt.Component)var17, (java.lang.Object)true); + boolean var29 = var17.areFocusTraversalKeysSet(0); + boolean var30 = var17.isFocusable(); + // The following exception was thrown during execution. + // This behavior will recorded for regression testing. + try { + java.awt.Component var32 = var0.add((java.awt.Component)var17, 3); + fail("Expected exception of type java.lang.IllegalArgumentException"); + } catch (java.lang.IllegalArgumentException e) { + // Expected exception. + } + + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var29 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var30 == true); + + } + + public void test46() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test46"); + + + SpaceWar.Player var0 = new SpaceWar.Player(); + boolean var1 = var0.isRecovering(); + var0.setRigth(false); + boolean var4 = var0.isDead(); + var0.setLife(1); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == false); + + } + + public void test47() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test47"); + + + SpaceWar.PowerUp var3 = new SpaceWar.PowerUp(25, 1.0d, 1.0d); + + } + + public void test48() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test48"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + SpaceWar.SpacePanel var4 = new SpaceWar.SpacePanel(); + java.awt.Color var5 = var4.getBackground(); + var0.setForeground(var5); + SpaceWar.SpacePanel var7 = new SpaceWar.SpacePanel(); + float var8 = var7.getAlignmentX(); + var7.setVisible(false); + boolean var11 = var7.isDoubleBuffered(); + java.awt.dnd.DropTarget var12 = var7.getDropTarget(); + var7.show(false); + java.awt.Rectangle var15 = var7.getVisibleRect(); + var0.repaint(var15); + java.awt.FocusTraversalPolicy var17 = var0.getFocusTraversalPolicy(); + var0.resetKeyboardActions(); + java.util.Locale var19 = var0.getLocale(); + SpaceWar.SpacePanel var20 = new SpaceWar.SpacePanel(); + float var21 = var20.getAlignmentX(); + var20.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var26 = var20.getMouseListeners(); + // The following exception was thrown during execution. + // This behavior will recorded for regression testing. + try { + var0.setComponentZOrder((java.awt.Component)var20, (-1)); + fail("Expected exception of type java.lang.IllegalArgumentException"); + } catch (java.lang.IllegalArgumentException e) { + // Expected exception. + } + + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var26); + + } + + public void test49() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test49"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var6 = var0.getMouseListeners(); + java.awt.Dimension var7 = var0.getPreferredSize(); + java.util.Locale var8 = var0.getLocale(); + java.awt.event.HierarchyBoundsListener[] var9 = var0.getHierarchyBoundsListeners(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var9); + + } + + public void test50() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test50"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.reshape((-1), 1, (-1), 10); + var0.disable(); + java.awt.LayoutManager var11 = var0.getLayout(); + boolean var14 = var0.contains((-1), 0); + SpaceWar.SpacePanel var15 = new SpaceWar.SpacePanel(); + float var16 = var15.getAlignmentX(); + var15.setVisible(false); + var15.nextFocus(); + var15.updateUI(); + var15.enableInputMethods(true); + var15.setSize((-1), 1); + java.awt.Component var26 = var0.add((java.awt.Component)var15); + java.awt.event.KeyListener[] var27 = var26.getKeyListeners(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var27); + + } + + public void test51() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test51"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + java.lang.String var2 = var0.toString(); + java.awt.event.HierarchyBoundsListener[] var3 = var0.getHierarchyBoundsListeners(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var2 + "' != '" + "SpaceWar.SpacePanel[,0,0,0var2,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"+ "'", var2.equals("SpaceWar.SpacePanel[,0,0,0var2,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]")); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var3); + + } + + public void test52() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test52"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + java.awt.im.InputMethodRequests var3 = var0.getInputMethodRequests(); + int var4 = var0.countComponents(); + java.awt.event.ComponentListener[] var5 = var0.getComponentListeners(); + var0.removeNotify(); + java.awt.Component var9 = var0.getComponentAt(1, (-1)); + int var10 = var0.getHeight(); + boolean var11 = var0.isLightweight(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertNull(var9); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == false); + + } + + public void test53() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test53"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.reshape((-1), 1, (-1), 10); + var0.disable(); + java.awt.Component var13 = var0.findComponentAt(0, (-1)); + SpaceWar.SpacePanel var14 = new SpaceWar.SpacePanel(); + var14.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + javax.swing.plaf.PanelUI var19 = var14.getUI(); + SpaceWar.SpacePanel var20 = new SpaceWar.SpacePanel(); + float var21 = var20.getAlignmentX(); + var20.setVisible(false); + var20.nextFocus(); + var20.repaint(1L); + SpaceWar.SpacePanel var27 = new SpaceWar.SpacePanel(); + float var28 = var27.getAlignmentX(); + var27.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var33 = new SpaceWar.SpacePanel(); + float var34 = var33.getAlignmentX(); + var33.setVisible(false); + java.awt.Dimension var37 = var33.getPreferredSize(); + var27.setMaximumSize(var37); + var20.setPreferredSize(var37); + var14.setMaximumSize(var37); + var0.setSize(var37); + var0.hide(); + SpaceWar.SpacePanel var43 = new SpaceWar.SpacePanel(); + float var44 = var43.getAlignmentX(); + var43.firePropertyChange("", (-1), 1); + boolean var49 = var43.isFocusOwner(); + SpaceWar.SpacePanel var51 = new SpaceWar.SpacePanel(); + float var52 = var51.getAlignmentX(); + var51.setVisible(false); + java.awt.Dimension var55 = var51.getPreferredSize(); + java.awt.Toolkit var56 = var51.getToolkit(); + SpaceWar.SpacePanel var57 = new SpaceWar.SpacePanel(); + var57.setName(""); + int var60 = var57.getX(); + SpaceWar.SpacePanel var61 = new SpaceWar.SpacePanel(); + float var62 = var61.getAlignmentX(); + var61.setVisible(false); + var61.nextFocus(); + SpaceWar.SpacePanel var66 = new SpaceWar.SpacePanel(); + float var67 = var66.getAlignmentX(); + var66.setVisible(false); + SpaceWar.SpacePanel var70 = new SpaceWar.SpacePanel(); + java.awt.Color var71 = var70.getBackground(); + var66.setForeground(var71); + var61.setBackground(var71); + var57.setBackground(var71); + var51.setForeground(var71); + var43.putClientProperty((java.lang.Object)(byte)100, (java.lang.Object)var71); + SpaceWar.SpacePanel var77 = new SpaceWar.SpacePanel(); + var77.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + javax.swing.plaf.PanelUI var82 = var77.getUI(); + var43.setUI(var82); + var0.setUI(var82); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var28 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var34 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var37); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var44 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var49 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var52 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var55); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var56); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var60 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var62 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var67 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var71); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var82); + + } + + public void test54() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test54"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + var0.enable(false); + boolean var7 = var0.getFocusTraversalKeysEnabled(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + java.awt.Dimension var12 = var8.getPreferredSize(); + java.awt.Toolkit var13 = var8.getToolkit(); + boolean var14 = var8.isFocusable(); + javax.swing.KeyStroke[] var15 = var8.getRegisteredKeyStrokes(); + SpaceWar.SpacePanel var16 = new SpaceWar.SpacePanel(); + float var17 = var16.getAlignmentX(); + SpaceWar.SpacePanel var18 = new SpaceWar.SpacePanel(); + float var19 = var18.getAlignmentX(); + var18.setVisible(false); + java.awt.Dimension var22 = var18.getPreferredSize(); + boolean var23 = var18.getVerifyInputWhenFocusTarget(); + java.awt.Component var26 = var18.findComponentAt(10, 1); + var16.addKeyListener((java.awt.event.KeyListener)var18); + var18.repaint(100, (-1), (-1), 1); + boolean var33 = var8.isAncestorOf((java.awt.Component)var18); + var0.addKeyListener((java.awt.event.KeyListener)var18); + var18.hide(); + java.awt.event.MouseWheelListener[] var36 = var18.getMouseWheelListeners(); + var18.show(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var33 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var36); + + } + + public void test55() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test55"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + boolean var6 = var0.isFocusCycleRoot(); + var0.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", 100, 0); + SpaceWar.SpacePanel var11 = new SpaceWar.SpacePanel(); + float var12 = var11.getAlignmentX(); + var11.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var17 = var11.getUI(); + var0.add((java.awt.Component)var11, (java.lang.Object)(short)0); + var0.setVerifyInputWhenFocusTarget(false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var17); + + } + + public void test56() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test56"); + + + SpaceWar.PowerUp var3 = new SpaceWar.PowerUp(100, (-1.0d), 0.0d); + double var4 = var3.getX(); + double var5 = var3.getY(); + boolean var6 = var3.update(); + int var7 = var3.getType(); + double var8 = var3.getY(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == (-1.0d)); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == 0.0d); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 100); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 2.0d); + + } + + public void test57() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test57"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var6 = var0.getMouseListeners(); + var0.firePropertyChange("", 0.5f, 100.0f); + var0.enable(false); + var0.firePropertyChange("hi!", (short)0, (short)10); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + } + + public void test58() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test58"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + var0.show(false); + boolean var8 = var0.isPaintingForPrint(); + boolean var9 = var0.getIgnoreRepaint(); + var0.repaint(100, 10, 100, 0); + SpaceWar.SpacePanel var15 = new SpaceWar.SpacePanel(); + float var16 = var15.getAlignmentX(); + var15.setVisible(false); + boolean var19 = var15.isDoubleBuffered(); + java.awt.dnd.DropTarget var20 = var15.getDropTarget(); + var15.show(false); + boolean var23 = var15.isPaintingForPrint(); + SpaceWar.SpacePanel var24 = new SpaceWar.SpacePanel(); + float var25 = var24.getAlignmentX(); + var24.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var30 = var24.getMouseListeners(); + int var31 = var24.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var32 = var24.getInputMethodRequests(); + var15.addKeyListener((java.awt.event.KeyListener)var24); + SpaceWar.SpacePanel var34 = new SpaceWar.SpacePanel(); + float var35 = var34.getAlignmentX(); + var34.setVisible(false); + boolean var38 = var34.isDoubleBuffered(); + var34.list(); + float var40 = var34.getAlignmentY(); + boolean var41 = var24.isFocusCycleRoot((java.awt.Container)var34); + // The following exception was thrown during execution. + // This behavior will recorded for regression testing. + try { + java.awt.Component var43 = var0.add((java.awt.Component)var24, 10); + fail("Expected exception of type java.lang.IllegalArgumentException"); + } catch (java.lang.IllegalArgumentException e) { + // Expected exception. + } + + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var30); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var31 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var32); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var35 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var38 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var40 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var41 == false); + + } + + public void test59() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test59"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + var0.setRequestFocusEnabled(false); + var0.reshape(100, 0, 100, 0); + var0.requestFocus(); + java.awt.Rectangle var11 = var0.getVisibleRect(); + java.awt.Rectangle var12 = var0.getBounds(); + java.awt.im.InputMethodRequests var13 = var0.getInputMethodRequests(); + int var14 = var0.getComponentCount(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == 0); + + } + + public void test60() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test60"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + boolean var6 = var0.isFocusCycleRoot(); + java.lang.Object var7 = var0.getTreeLock(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var7); + + } + + public void test61() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test61"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.setInheritsPopupMenu(false); + var0.move(10, 10); + var0.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + java.awt.Rectangle var13 = var0.bounds(); + SpaceWar.SpacePanel var15 = new SpaceWar.SpacePanel(); + float var16 = var15.getAlignmentX(); + var15.setVisible(false); + var15.nextFocus(); + var15.repaint(1L); + SpaceWar.SpacePanel var22 = new SpaceWar.SpacePanel(); + float var23 = var22.getAlignmentX(); + var22.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var28 = new SpaceWar.SpacePanel(); + float var29 = var28.getAlignmentX(); + var28.setVisible(false); + java.awt.Dimension var32 = var28.getPreferredSize(); + var22.setMaximumSize(var32); + var15.setPreferredSize(var32); + SpaceWar.SpacePanel var36 = new SpaceWar.SpacePanel(); + float var37 = var36.getAlignmentX(); + var36.setVisible(false); + SpaceWar.SpacePanel var40 = new SpaceWar.SpacePanel(); + java.awt.Color var41 = var40.getBackground(); + var36.setForeground(var41); + javax.swing.InputMap var43 = var36.getInputMap(); + var15.setInputMap(1, var43); + // The following exception was thrown during execution. + // This behavior will recorded for regression testing. + try { + var0.setInputMap(100, var43); + fail("Expected exception of type java.lang.IllegalArgumentException"); + } catch (java.lang.IllegalArgumentException e) { + // Expected exception. + } + + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var29 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var32); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var41); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var43); + + } + + public void test62() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test62"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var6 = var0.getUI(); + java.awt.im.InputMethodRequests var7 = var0.getInputMethodRequests(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + var8.nextFocus(); + var8.updateUI(); + var8.enableInputMethods(true); + var8.setSize((-1), 1); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + var19.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var0.add((java.awt.Component)var8, (java.lang.Object)"SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + java.awt.ComponentOrientation var25 = var8.getComponentOrientation(); + java.beans.VetoableChangeListener[] var26 = var8.getVetoableChangeListeners(); + int var27 = var8.getHeight(); + var8.enable(true); + boolean var30 = var8.isFocusTraversalPolicyProvider(); + SpaceWar.SpacePanel var31 = new SpaceWar.SpacePanel(); + java.awt.Color var32 = var31.getBackground(); + var31.repaint(); + var31.setRequestFocusEnabled(false); + var31.reshape(100, 0, 100, 0); + var31.requestFocus(); + var31.firePropertyChange("hi!", '4', ' '); + java.awt.Point var46 = var31.getLocation(); + var8.setLocation(var46); + var8.list(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var25); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == 1); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var30 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var32); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var46); + + } + + public void test63() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test63"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.reshape((-1), 1, (-1), 10); + var0.disable(); + java.awt.LayoutManager var11 = var0.getLayout(); + java.awt.Container var12 = var0.getParent(); + boolean var13 = var0.isPaintingForPrint(); + SpaceWar.SpacePanel var14 = new SpaceWar.SpacePanel(); + float var15 = var14.getAlignmentX(); + var14.setVisible(false); + var14.nextFocus(); + var14.reshape((-1), 1, (-1), 10); + SpaceWar.SpacePanel var24 = new SpaceWar.SpacePanel(); + java.awt.Color var25 = var24.getBackground(); + var24.repaint(); + var24.setRequestFocusEnabled(false); + var24.reshape(100, 0, 100, 0); + java.awt.Component var34 = var14.add((java.awt.Component)var24); + SpaceWar.SpacePanel var35 = new SpaceWar.SpacePanel(); + var35.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + javax.swing.plaf.PanelUI var40 = var35.getUI(); + SpaceWar.SpacePanel var41 = new SpaceWar.SpacePanel(); + float var42 = var41.getAlignmentX(); + var41.setVisible(false); + var41.nextFocus(); + var41.repaint(1L); + SpaceWar.SpacePanel var48 = new SpaceWar.SpacePanel(); + float var49 = var48.getAlignmentX(); + var48.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var54 = new SpaceWar.SpacePanel(); + float var55 = var54.getAlignmentX(); + var54.setVisible(false); + java.awt.Dimension var58 = var54.getPreferredSize(); + var48.setMaximumSize(var58); + var41.setPreferredSize(var58); + var35.setMaximumSize(var58); + java.awt.Dimension var62 = var24.getSize(var58); + var0.setSize(var62); + java.awt.FocusTraversalPolicy var64 = var0.getFocusTraversalPolicy(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var25); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var34); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var40); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var42 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var49 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var55 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var58); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var62); + + // Regression assertion (captures the current behavior of the code) + assertNull(var64); + + } + + public void test64() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test64"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + java.awt.Dimension var4 = var0.getPreferredSize(); + java.awt.Toolkit var5 = var0.getToolkit(); + boolean var6 = var0.isFocusable(); + javax.swing.KeyStroke[] var7 = var0.getRegisteredKeyStrokes(); + var0.layout(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var4); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var7); + + } + + public void test65() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test65"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.reshape((-1), 1, (-1), 10); + SpaceWar.SpacePanel var10 = new SpaceWar.SpacePanel(); + java.awt.Color var11 = var10.getBackground(); + var10.repaint(); + var10.setRequestFocusEnabled(false); + var10.reshape(100, 0, 100, 0); + java.awt.Component var20 = var0.add((java.awt.Component)var10); + SpaceWar.SpacePanel var21 = new SpaceWar.SpacePanel(); + var21.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + javax.swing.plaf.PanelUI var26 = var21.getUI(); + SpaceWar.SpacePanel var27 = new SpaceWar.SpacePanel(); + float var28 = var27.getAlignmentX(); + var27.setVisible(false); + var27.nextFocus(); + var27.repaint(1L); + SpaceWar.SpacePanel var34 = new SpaceWar.SpacePanel(); + float var35 = var34.getAlignmentX(); + var34.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var40 = new SpaceWar.SpacePanel(); + float var41 = var40.getAlignmentX(); + var40.setVisible(false); + java.awt.Dimension var44 = var40.getPreferredSize(); + var34.setMaximumSize(var44); + var27.setPreferredSize(var44); + var21.setMaximumSize(var44); + java.awt.Dimension var48 = var10.getSize(var44); + boolean var49 = var10.getIgnoreRepaint(); + boolean var50 = var10.isShowing(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var28 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var35 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var41 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var44); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var48); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var49 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var50 == false); + + } + + public void test66() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test66"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + boolean var4 = var0.inside(0, (-1)); + var0.transferFocusUpCycle(); + java.awt.Container var6 = var0.getParent(); + boolean var7 = var0.isMaximumSizeSet(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + java.awt.Color var10 = var9.getBackground(); + SpaceWar.SpacePanel var11 = new SpaceWar.SpacePanel(); + float var12 = var11.getAlignmentX(); + var11.setVisible(false); + var11.nextFocus(); + var11.updateUI(); + var11.enableInputMethods(true); + var8.add((java.awt.Component)var9, (java.lang.Object)true); + boolean var21 = var9.areFocusTraversalKeysSet(0); + SpaceWar.SpacePanel var22 = new SpaceWar.SpacePanel(); + float var23 = var22.getAlignmentX(); + var22.setVisible(false); + boolean var26 = var22.isDoubleBuffered(); + java.awt.dnd.DropTarget var27 = var22.getDropTarget(); + var22.show(false); + java.awt.Rectangle var30 = var22.getVisibleRect(); + var9.setBounds(var30); + var0.setBounds(var30); + java.awt.Component.BaselineResizeBehavior var33 = var0.getBaselineResizeBehavior(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var27); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var30); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var33); + + } + + public void test67() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test67"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + java.awt.im.InputMethodRequests var3 = var0.getInputMethodRequests(); + int var4 = var0.countComponents(); + java.awt.event.ComponentListener[] var5 = var0.getComponentListeners(); + var0.removeNotify(); + javax.swing.InputMap var7 = var0.getInputMap(); + java.awt.Cursor var8 = var0.getCursor(); + boolean var10 = var0.requestFocus(false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == false); + + } + + public void test68() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test68"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var1 = new SpaceWar.SpacePanel(); + java.awt.Color var2 = var1.getBackground(); + SpaceWar.SpacePanel var3 = new SpaceWar.SpacePanel(); + float var4 = var3.getAlignmentX(); + var3.setVisible(false); + var3.nextFocus(); + var3.updateUI(); + var3.enableInputMethods(true); + var0.add((java.awt.Component)var1, (java.lang.Object)true); + java.awt.Image var14 = var1.createImage(1, (-1)); + java.awt.event.MouseListener[] var15 = var1.getMouseListeners(); + java.awt.Color var16 = var1.getBackground(); + boolean var17 = var1.getIgnoreRepaint(); + var1.enable(); + var1.show(false); + var1.validate(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var2); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == false); + + } + + public void test69() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test69"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + SpaceWar.SpacePanel var4 = new SpaceWar.SpacePanel(); + java.awt.Color var5 = var4.getBackground(); + var0.setForeground(var5); + SpaceWar.SpacePanel var7 = new SpaceWar.SpacePanel(); + float var8 = var7.getAlignmentX(); + var7.setVisible(false); + boolean var11 = var7.isDoubleBuffered(); + java.awt.dnd.DropTarget var12 = var7.getDropTarget(); + var7.show(false); + java.awt.Rectangle var15 = var7.getVisibleRect(); + var0.repaint(var15); + java.awt.FocusTraversalPolicy var17 = var0.getFocusTraversalPolicy(); + var0.layout(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + } + + public void test70() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test70"); + + + SpaceWar.Player var0 = new SpaceWar.Player(); + int var1 = var0.getR(); + var0.setUp(false); + var0.update(); + java.awt.image.BufferedImage var6 = var0.loadImg("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + int var7 = var0.getX(); + var0.setScore(1); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 25); + + // Regression assertion (captures the current behavior of the code) + assertNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 400); + + } + + public void test71() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test71"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var1 = new SpaceWar.SpacePanel(); + java.awt.Color var2 = var1.getBackground(); + SpaceWar.SpacePanel var3 = new SpaceWar.SpacePanel(); + float var4 = var3.getAlignmentX(); + var3.setVisible(false); + var3.nextFocus(); + var3.updateUI(); + var3.enableInputMethods(true); + var0.add((java.awt.Component)var1, (java.lang.Object)true); + boolean var12 = var0.isMinimumSizeSet(); + java.awt.event.HierarchyListener[] var13 = var0.getHierarchyListeners(); + SpaceWar.SpacePanel var14 = new SpaceWar.SpacePanel(); + float var15 = var14.getAlignmentX(); + var14.setVisible(false); + SpaceWar.SpacePanel var18 = new SpaceWar.SpacePanel(); + java.awt.Color var19 = var18.getBackground(); + var14.setForeground(var19); + SpaceWar.SpacePanel var21 = new SpaceWar.SpacePanel(); + float var22 = var21.getAlignmentX(); + var21.setVisible(false); + boolean var25 = var21.isDoubleBuffered(); + java.awt.dnd.DropTarget var26 = var21.getDropTarget(); + var21.show(false); + java.awt.Rectangle var29 = var21.getVisibleRect(); + var14.repaint(var29); + java.awt.FocusTraversalPolicy var31 = var14.getFocusTraversalPolicy(); + java.awt.im.InputMethodRequests var32 = var14.getInputMethodRequests(); + var14.layout(); + boolean var34 = var14.isFocusTraversalPolicyProvider(); + java.lang.Object var35 = var0.getClientProperty((java.lang.Object)var34); + boolean var36 = var0.isFocusTraversable(); + java.lang.String var37 = var0.getName(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var2); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var22 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var29); + + // Regression assertion (captures the current behavior of the code) + assertNull(var31); + + // Regression assertion (captures the current behavior of the code) + assertNull(var32); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var34 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var35); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var36 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var37); + + } + + public void test72() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test72"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + boolean var2 = var0.hasFocus(); + boolean var3 = var0.isPreferredSizeSet(); + SpaceWar.SpacePanel var4 = new SpaceWar.SpacePanel(); + java.awt.Color var5 = var4.getBackground(); + var4.repaint(); + var4.setRequestFocusEnabled(false); + int var9 = var0.getComponentZOrder((java.awt.Component)var4); + var4.setIgnoreRepaint(false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var2 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == (-1)); + + } + + public void test73() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test73"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.setInheritsPopupMenu(false); + var0.setFocusTraversalPolicyProvider(true); + boolean var10 = var0.inside(25, 3); + java.awt.Container var11 = var0.getFocusCycleRootAncestor(); + boolean var13 = var0.requestFocus(false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == false); + + } + + public void test74() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test74"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + java.awt.Dimension var4 = var0.getPreferredSize(); + java.awt.Toolkit var5 = var0.getToolkit(); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + var6.setName(""); + int var9 = var6.getX(); + SpaceWar.SpacePanel var10 = new SpaceWar.SpacePanel(); + float var11 = var10.getAlignmentX(); + var10.setVisible(false); + var10.nextFocus(); + SpaceWar.SpacePanel var15 = new SpaceWar.SpacePanel(); + float var16 = var15.getAlignmentX(); + var15.setVisible(false); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + java.awt.Color var20 = var19.getBackground(); + var15.setForeground(var20); + var10.setBackground(var20); + var6.setBackground(var20); + var0.setForeground(var20); + java.beans.PropertyChangeListener[] var26 = var0.getPropertyChangeListeners(""); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var4); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var26); + + } + + public void test75() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test75"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var1 = new SpaceWar.SpacePanel(); + java.awt.Color var2 = var1.getBackground(); + SpaceWar.SpacePanel var3 = new SpaceWar.SpacePanel(); + float var4 = var3.getAlignmentX(); + var3.setVisible(false); + var3.nextFocus(); + var3.updateUI(); + var3.enableInputMethods(true); + var0.add((java.awt.Component)var1, (java.lang.Object)true); + java.awt.Dimension var12 = var1.getPreferredSize(); + var1.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", (-1.0f), 100.0f); + SpaceWar.SpacePanel var17 = new SpaceWar.SpacePanel(); + float var18 = var17.getAlignmentX(); + var17.setVisible(false); + boolean var21 = var17.isDoubleBuffered(); + SpaceWar.SpacePanel var22 = new SpaceWar.SpacePanel(); + java.awt.Color var23 = var22.getBackground(); + var22.repaint(); + java.lang.Object var25 = var17.getClientProperty((java.lang.Object)var22); + var1.remove((java.awt.Component)var17); + // The following exception was thrown during execution. + // This behavior will recorded for regression testing. + try { + var17.remove(0); + fail("Expected exception of type java.lang.ArrayIndexOutOfBoundsException"); + } catch (java.lang.ArrayIndexOutOfBoundsException e) { + // Expected exception. + } + + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var2); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var23); + + // Regression assertion (captures the current behavior of the code) + assertNull(var25); + + } + + public void test76() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test76"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + var0.show(false); + boolean var8 = var0.isPaintingForPrint(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + SpaceWar.SpacePanel var11 = new SpaceWar.SpacePanel(); + float var12 = var11.getAlignmentX(); + var11.setVisible(false); + java.awt.Dimension var15 = var11.getPreferredSize(); + boolean var16 = var11.getVerifyInputWhenFocusTarget(); + java.awt.Component var19 = var11.findComponentAt(10, 1); + var9.addKeyListener((java.awt.event.KeyListener)var11); + java.awt.Dimension var21 = var11.getMinimumSize(); + var0.setMinimumSize(var21); + // The following exception was thrown during execution. + // This behavior will recorded for regression testing. + try { + java.awt.Component var24 = var0.getComponent(25); + fail("Expected exception of type java.lang.ArrayIndexOutOfBoundsException"); + } catch (java.lang.ArrayIndexOutOfBoundsException e) { + // Expected exception. + } + + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var21); + + } + + public void test77() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test77"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var6 = var0.getMouseListeners(); + int var7 = var0.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var8 = var0.getInputMethodRequests(); + var0.removeNotify(); + boolean var10 = var0.isMaximumSizeSet(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == false); + + } + + public void test78() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test78"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.updateUI(); + var0.enableInputMethods(true); + java.awt.Point var8 = var0.location(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.setVisible(false); + var9.nextFocus(); + java.awt.Component var14 = var0.add((java.awt.Component)var9); + int var15 = var0.getX(); + boolean var16 = var0.isValid(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == false); + + } + + public void test79() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test79"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var6 = var0.getUI(); + java.awt.im.InputMethodRequests var7 = var0.getInputMethodRequests(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + var8.nextFocus(); + var8.updateUI(); + var8.enableInputMethods(true); + var8.setSize((-1), 1); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + var19.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var0.add((java.awt.Component)var8, (java.lang.Object)"SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + boolean var25 = var0.isCursorSet(); + javax.swing.TransferHandler var26 = var0.getTransferHandler(); + // The following exception was thrown during execution. + // This behavior will recorded for regression testing. + try { + int var29 = var0.getBaseline((-1), (-1)); + fail("Expected exception of type java.lang.IllegalArgumentException"); + } catch (java.lang.IllegalArgumentException e) { + // Expected exception. + } + + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var26); + + } + + public void test80() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test80"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + var0.show(false); + boolean var8 = var0.isPaintingForPrint(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var15 = var9.getMouseListeners(); + int var16 = var9.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var17 = var9.getInputMethodRequests(); + var0.addKeyListener((java.awt.event.KeyListener)var9); + boolean var19 = var0.isDisplayable(); + var0.doLayout(); + int var21 = var0.getX(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == 0); + + } + + public void test81() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test81"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.updateUI(); + var0.enableInputMethods(true); + var0.setSize((-1), 1); + boolean var13 = var0.contains(1, 1); + java.awt.Component var16 = var0.getComponentAt(100, 3); + int var17 = var0.getWidth(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == (-1)); + + } + + public void test82() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test82"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + var0.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + javax.swing.plaf.PanelUI var5 = var0.getUI(); + java.awt.Color var6 = var0.getBackground(); + var0.removeAll(); + int var8 = var0.getHeight(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.removeNotify(); + SpaceWar.SpacePanel var12 = new SpaceWar.SpacePanel(); + float var13 = var12.getAlignmentX(); + var12.setVisible(false); + boolean var16 = var12.isDoubleBuffered(); + var12.list(); + float var18 = var12.getAlignmentY(); + java.awt.Insets var19 = var12.getInsets(); + java.awt.Insets var20 = var9.getInsets(var19); + boolean var21 = var9.isDoubleBuffered(); + java.awt.Component var22 = var0.add((java.awt.Component)var9); + SpaceWar.SpacePanel var24 = new SpaceWar.SpacePanel(); + java.awt.Color var25 = var24.getBackground(); + var24.repaint(); + java.awt.im.InputMethodRequests var27 = var24.getInputMethodRequests(); + var24.setDoubleBuffered(true); + var24.setInheritsPopupMenu(false); + javax.swing.plaf.PanelUI var32 = var24.getUI(); + java.util.Set var34 = var24.getFocusTraversalKeys(3); + // The following exception was thrown during execution. + // This behavior will recorded for regression testing. + try { + var9.setFocusTraversalKeys(10, var34); + fail("Expected exception of type java.lang.IllegalArgumentException"); + } catch (java.lang.IllegalArgumentException e) { + // Expected exception. + } + + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var25); + + // Regression assertion (captures the current behavior of the code) + assertNull(var27); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var32); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var34); + + } + + public void test83() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test83"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + SpaceWar.SpacePanel var2 = new SpaceWar.SpacePanel(); + float var3 = var2.getAlignmentX(); + var2.setVisible(false); + java.awt.Dimension var6 = var2.getPreferredSize(); + boolean var7 = var2.getVerifyInputWhenFocusTarget(); + java.awt.Component var10 = var2.findComponentAt(10, 1); + var0.addKeyListener((java.awt.event.KeyListener)var2); + var2.repaint(100, (-1), (-1), 1); + SpaceWar.SpacePanel var17 = new SpaceWar.SpacePanel(); + java.awt.Color var18 = var17.getBackground(); + var17.repaint(); + java.awt.im.InputMethodRequests var20 = var17.getInputMethodRequests(); + java.awt.GraphicsConfiguration var21 = var17.getGraphicsConfiguration(); + var2.remove((java.awt.Component)var17); + var2.setFocusable(true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertNull(var21); + + } + + public void test84() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test84"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + var0.show(false); + java.awt.Rectangle var8 = var0.getVisibleRect(); + java.awt.image.BufferedImage var10 = var0.loadImg("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + java.awt.ComponentOrientation var11 = var0.getComponentOrientation(); + var0.layout(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + } + + public void test85() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test85"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + var0.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", 10.0d, 100.0d); + var0.resetKeyboardActions(); + + } + + public void test86() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test86"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + var0.show(false); + boolean var8 = var0.isPaintingForPrint(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var15 = var9.getMouseListeners(); + int var16 = var9.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var17 = var9.getInputMethodRequests(); + var0.addKeyListener((java.awt.event.KeyListener)var9); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + float var20 = var19.getAlignmentX(); + var19.setVisible(false); + boolean var23 = var19.isDoubleBuffered(); + var19.list(); + float var25 = var19.getAlignmentY(); + boolean var26 = var9.isFocusCycleRoot((java.awt.Container)var19); + var19.firePropertyChange("", 1L, 1L); + var19.setVerifyInputWhenFocusTarget(true); + var19.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", '4', '4'); + java.awt.Point var37 = var19.getLocation(); + SpaceWar.SpacePanel var39 = new SpaceWar.SpacePanel(); + java.awt.Color var40 = var39.getBackground(); + var39.repaint(); + java.awt.im.InputMethodRequests var42 = var39.getInputMethodRequests(); + int var43 = var39.countComponents(); + java.awt.event.ComponentListener[] var44 = var39.getComponentListeners(); + var39.removeNotify(); + javax.swing.InputMap var46 = var39.getInputMap(); + // The following exception was thrown during execution. + // This behavior will recorded for regression testing. + try { + var19.setInputMap(25, var46); + fail("Expected exception of type java.lang.IllegalArgumentException"); + } catch (java.lang.IllegalArgumentException e) { + // Expected exception. + } + + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var37); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var40); + + // Regression assertion (captures the current behavior of the code) + assertNull(var42); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var43 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var44); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var46); + + } + + public void test87() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test87"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + SpaceWar.SpacePanel var2 = new SpaceWar.SpacePanel(); + float var3 = var2.getAlignmentX(); + var2.setVisible(false); + java.awt.Dimension var6 = var2.getPreferredSize(); + boolean var7 = var2.getVerifyInputWhenFocusTarget(); + java.awt.Component var10 = var2.findComponentAt(10, 1); + var0.addKeyListener((java.awt.event.KeyListener)var2); + SpaceWar.SpacePanel var12 = new SpaceWar.SpacePanel(); + float var13 = var12.getAlignmentX(); + SpaceWar.SpacePanel var14 = new SpaceWar.SpacePanel(); + float var15 = var14.getAlignmentX(); + var14.setVisible(false); + java.awt.Dimension var18 = var14.getPreferredSize(); + boolean var19 = var14.getVerifyInputWhenFocusTarget(); + java.awt.Component var22 = var14.findComponentAt(10, 1); + var12.addKeyListener((java.awt.event.KeyListener)var14); + var14.repaint(100, (-1), (-1), 1); + java.awt.image.ColorModel var29 = var14.getColorModel(); + SpaceWar.SpacePanel var30 = new SpaceWar.SpacePanel(); + float var31 = var30.getAlignmentX(); + var30.setVisible(false); + boolean var34 = var30.isDoubleBuffered(); + var30.list(); + SpaceWar.SpacePanel var36 = new SpaceWar.SpacePanel(); + float var37 = var36.getAlignmentX(); + var36.setVisible(false); + boolean var40 = var36.isDoubleBuffered(); + java.awt.dnd.DropTarget var41 = var36.getDropTarget(); + var36.show(false); + java.awt.Rectangle var44 = var36.getVisibleRect(); + java.awt.image.BufferedImage var46 = var36.loadImg("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + boolean var47 = var30.isAncestorOf((java.awt.Component)var36); + javax.swing.InputVerifier var48 = var36.getInputVerifier(); + var2.putClientProperty((java.lang.Object)var14, (java.lang.Object)var36); + SpaceWar.SpacePanel var50 = new SpaceWar.SpacePanel(); + float var51 = var50.getAlignmentX(); + var50.setVisible(false); + var50.nextFocus(); + var50.requestFocus(); + // The following exception was thrown during execution. + // This behavior will recorded for regression testing. + try { + java.awt.Component var57 = var14.add((java.awt.Component)var50, 10); + fail("Expected exception of type java.lang.IllegalArgumentException"); + } catch (java.lang.IllegalArgumentException e) { + // Expected exception. + } + + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var29); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var31 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var34 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var40 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var41); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var44); + + // Regression assertion (captures the current behavior of the code) + assertNull(var46); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var47 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var48); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var51 == 0.5f); + + } + + public void test88() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test88"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + var0.list(); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + float var7 = var6.getAlignmentX(); + var6.setVisible(false); + boolean var10 = var6.isDoubleBuffered(); + java.awt.dnd.DropTarget var11 = var6.getDropTarget(); + var6.show(false); + java.awt.Rectangle var14 = var6.getVisibleRect(); + java.awt.Rectangle var15 = var0.getBounds(var14); + javax.swing.JToolTip var16 = var0.createToolTip(); + var0.firePropertyChange("", false, false); + var0.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", (-1L), (-1L)); + java.awt.Component var27 = var0.getComponentAt(3, 25); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertNull(var27); + + } + + public void test89() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test89"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + java.awt.im.InputMethodRequests var3 = var0.getInputMethodRequests(); + var0.setDoubleBuffered(true); + var0.setInheritsPopupMenu(false); + javax.swing.InputMap var8 = var0.getInputMap(); + // The following exception was thrown during execution. + // This behavior will recorded for regression testing. + try { + java.awt.Point var9 = var0.getLocationOnScreen(); + fail("Expected exception of type java.awt.IllegalComponentStateException"); + } catch (java.awt.IllegalComponentStateException e) { + // Expected exception. + } + + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var8); + + } + + public void test90() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test90"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.updateUI(); + var0.enableInputMethods(true); + java.lang.String var8 = var0.toString(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.setVisible(false); + boolean var13 = var9.isDoubleBuffered(); + java.awt.dnd.DropTarget var14 = var9.getDropTarget(); + var9.show(false); + java.awt.Rectangle var17 = var9.getVisibleRect(); + java.awt.image.BufferedImage var19 = var9.loadImg("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + java.awt.ComponentOrientation var20 = var9.getComponentOrientation(); + boolean var21 = var9.isPaintingTile(); + boolean var22 = var9.isOptimizedDrawingEnabled(); + int var23 = var0.getComponentZOrder((java.awt.Component)var9); + javax.swing.InputMap var24 = var9.getInputMap(); + boolean var25 = var9.getIgnoreRepaint(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var8 + "' != '" + "SpaceWar.SpacePanel[,0,0,0var8,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"+ "'", var8.equals("SpaceWar.SpacePanel[,0,0,0var8,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]")); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var22 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == (-1)); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == false); + + } + + public void test91() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test91"); + + + SpaceWar.Explosion var4 = new SpaceWar.Explosion(0.0d, 514.6637810615505d, 0, 0); + boolean var5 = var4.update(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == true); + + } + + public void test92() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test92"); + + + SpaceWar.Player var0 = new SpaceWar.Player(); + int var1 = var0.getR(); + var0.setRigth(false); + var0.setLife(100); + var0.setDown(false); + boolean var8 = var0.isRecovering(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 25); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + } + + public void test93() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test93"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + java.awt.im.InputMethodRequests var3 = var0.getInputMethodRequests(); + var0.setDoubleBuffered(true); + var0.setInheritsPopupMenu(false); + boolean var8 = var0.isFocusTraversalPolicySet(); + var0.setToolTipText("SpaceWar.SpacePanel[,0,0,0x0,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + } + + public void test94() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test94"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var1 = new SpaceWar.SpacePanel(); + java.awt.Color var2 = var1.getBackground(); + SpaceWar.SpacePanel var3 = new SpaceWar.SpacePanel(); + float var4 = var3.getAlignmentX(); + var3.setVisible(false); + var3.nextFocus(); + var3.updateUI(); + var3.enableInputMethods(true); + var0.add((java.awt.Component)var1, (java.lang.Object)true); + boolean var12 = var0.isMinimumSizeSet(); + SpaceWar.SpacePanel var14 = new SpaceWar.SpacePanel(); + float var15 = var14.getAlignmentX(); + var14.setVisible(false); + boolean var18 = var14.isDoubleBuffered(); + var14.enable(false); + java.awt.Container var21 = var14.getTopLevelAncestor(); + javax.swing.InputMap var23 = var14.getInputMap(1); + // The following exception was thrown during execution. + // This behavior will recorded for regression testing. + try { + var0.setInputMap(100, var23); + fail("Expected exception of type java.lang.IllegalArgumentException"); + } catch (java.lang.IllegalArgumentException e) { + // Expected exception. + } + + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var2); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var21); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var23); + + } + + public void test95() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test95"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + SpaceWar.SpacePanel var4 = new SpaceWar.SpacePanel(); + java.awt.Color var5 = var4.getBackground(); + var0.setForeground(var5); + SpaceWar.SpacePanel var7 = new SpaceWar.SpacePanel(); + float var8 = var7.getAlignmentX(); + var7.setVisible(false); + boolean var11 = var7.isDoubleBuffered(); + java.awt.dnd.DropTarget var12 = var7.getDropTarget(); + var7.show(false); + java.awt.Rectangle var15 = var7.getVisibleRect(); + var0.repaint(var15); + java.awt.FocusTraversalPolicy var17 = var0.getFocusTraversalPolicy(); + java.awt.im.InputMethodRequests var18 = var0.getInputMethodRequests(); + var0.layout(); + java.awt.Point var20 = var0.getMousePosition(); + java.awt.Graphics var21 = var0.getGraphics(); + SpaceWar.SpacePanel var22 = new SpaceWar.SpacePanel(); + float var23 = var22.getAlignmentX(); + var22.setVisible(false); + boolean var26 = var22.isDoubleBuffered(); + var22.list(); + SpaceWar.SpacePanel var28 = new SpaceWar.SpacePanel(); + float var29 = var28.getAlignmentX(); + var28.setVisible(false); + boolean var32 = var28.isDoubleBuffered(); + java.awt.dnd.DropTarget var33 = var28.getDropTarget(); + var28.show(false); + java.awt.Rectangle var36 = var28.getVisibleRect(); + java.awt.Rectangle var37 = var22.getBounds(var36); + var0.paintImmediately(var37); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertNull(var21); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var29 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var32 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var33); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var36); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var37); + + } + + public void test96() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test96"); + + + SpaceWar.Player var0 = new SpaceWar.Player(); + int var1 = var0.getPower(); + var0.setLeft(true); + var0.increasePower(0); + int var6 = var0.getR(); + var0.setDown(false); + var0.increasePower(10); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == 25); + + } + + public void test97() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test97"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + SpaceWar.SpacePanel var2 = new SpaceWar.SpacePanel(); + float var3 = var2.getAlignmentX(); + var2.setVisible(false); + java.awt.Dimension var6 = var2.getPreferredSize(); + boolean var7 = var2.getVerifyInputWhenFocusTarget(); + java.awt.Component var10 = var2.findComponentAt(10, 1); + var0.addKeyListener((java.awt.event.KeyListener)var2); + SpaceWar.SpacePanel var12 = new SpaceWar.SpacePanel(); + float var13 = var12.getAlignmentX(); + SpaceWar.SpacePanel var14 = new SpaceWar.SpacePanel(); + float var15 = var14.getAlignmentX(); + var14.setVisible(false); + java.awt.Dimension var18 = var14.getPreferredSize(); + boolean var19 = var14.getVerifyInputWhenFocusTarget(); + java.awt.Component var22 = var14.findComponentAt(10, 1); + var12.addKeyListener((java.awt.event.KeyListener)var14); + var14.repaint(100, (-1), (-1), 1); + java.awt.image.ColorModel var29 = var14.getColorModel(); + SpaceWar.SpacePanel var30 = new SpaceWar.SpacePanel(); + float var31 = var30.getAlignmentX(); + var30.setVisible(false); + boolean var34 = var30.isDoubleBuffered(); + var30.list(); + SpaceWar.SpacePanel var36 = new SpaceWar.SpacePanel(); + float var37 = var36.getAlignmentX(); + var36.setVisible(false); + boolean var40 = var36.isDoubleBuffered(); + java.awt.dnd.DropTarget var41 = var36.getDropTarget(); + var36.show(false); + java.awt.Rectangle var44 = var36.getVisibleRect(); + java.awt.image.BufferedImage var46 = var36.loadImg("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + boolean var47 = var30.isAncestorOf((java.awt.Component)var36); + javax.swing.InputVerifier var48 = var36.getInputVerifier(); + var2.putClientProperty((java.lang.Object)var14, (java.lang.Object)var36); + javax.swing.JToolTip var50 = var2.createToolTip(); + var50.show(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var29); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var31 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var34 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var40 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var41); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var44); + + // Regression assertion (captures the current behavior of the code) + assertNull(var46); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var47 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var48); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var50); + + } + + public void test98() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test98"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + java.awt.im.InputMethodRequests var3 = var0.getInputMethodRequests(); + int var4 = var0.countComponents(); + java.awt.event.ComponentListener[] var5 = var0.getComponentListeners(); + var0.removeNotify(); + javax.swing.InputMap var7 = var0.getInputMap(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var14 = new SpaceWar.SpacePanel(); + float var15 = var14.getAlignmentX(); + var14.setVisible(false); + SpaceWar.SpacePanel var18 = new SpaceWar.SpacePanel(); + java.awt.Color var19 = var18.getBackground(); + var14.setForeground(var19); + var8.setBackground(var19); + java.awt.Point var22 = var8.location(); + var0.setLocation(var22); + SpaceWar.SpacePanel var24 = new SpaceWar.SpacePanel(); + float var25 = var24.getAlignmentX(); + var24.setVisible(false); + var24.nextFocus(); + var24.reshape((-1), 1, (-1), 10); + SpaceWar.SpacePanel var34 = new SpaceWar.SpacePanel(); + java.awt.Color var35 = var34.getBackground(); + var34.repaint(); + var34.setRequestFocusEnabled(false); + var34.reshape(100, 0, 100, 0); + java.awt.Component var44 = var24.add((java.awt.Component)var34); + var24.enable(); + SpaceWar.SpacePanel var46 = new SpaceWar.SpacePanel(); + float var47 = var46.getAlignmentX(); + boolean var48 = var46.hasFocus(); + boolean var49 = var46.isPreferredSizeSet(); + var0.putClientProperty((java.lang.Object)var24, (java.lang.Object)var46); + // The following exception was thrown during execution. + // This behavior will recorded for regression testing. + try { + java.awt.Component var52 = var46.getComponent(100); + fail("Expected exception of type java.lang.ArrayIndexOutOfBoundsException"); + } catch (java.lang.ArrayIndexOutOfBoundsException e) { + // Expected exception. + } + + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var35); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var44); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var47 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var48 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var49 == true); + + } + + public void test99() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test99"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + java.awt.im.InputMethodRequests var3 = var0.getInputMethodRequests(); + var0.setDoubleBuffered(true); + var0.setInheritsPopupMenu(false); + javax.swing.InputMap var8 = var0.getInputMap(); + boolean var9 = var0.requestDefaultFocus(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == false); + + } + + public void test100() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test100"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + var0.show(false); + boolean var8 = var0.isPaintingForPrint(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var15 = var9.getMouseListeners(); + int var16 = var9.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var17 = var9.getInputMethodRequests(); + var0.addKeyListener((java.awt.event.KeyListener)var9); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + float var20 = var19.getAlignmentX(); + var19.setVisible(false); + boolean var23 = var19.isDoubleBuffered(); + var19.list(); + float var25 = var19.getAlignmentY(); + boolean var26 = var9.isFocusCycleRoot((java.awt.Container)var19); + var19.firePropertyChange("", 1L, 1L); + var19.setVerifyInputWhenFocusTarget(true); + java.awt.Cursor var33 = var19.getCursor(); + java.lang.String var34 = var19.getUIClassID(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var33); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var34 + "' != '" + "PanelUI"+ "'", var34.equals("PanelUI")); + + } + + public void test101() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test101"); + + + SpaceWar.Player var0 = new SpaceWar.Player(); + int var1 = var0.getR(); + var0.setUp(false); + int var4 = var0.getLives(); + int var5 = var0.getX(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 25); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 3); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == 400); + + } + + public void test102() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test102"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var1 = new SpaceWar.SpacePanel(); + java.awt.Color var2 = var1.getBackground(); + SpaceWar.SpacePanel var3 = new SpaceWar.SpacePanel(); + float var4 = var3.getAlignmentX(); + var3.setVisible(false); + var3.nextFocus(); + var3.updateUI(); + var3.enableInputMethods(true); + var0.add((java.awt.Component)var1, (java.lang.Object)true); + boolean var12 = var0.isMinimumSizeSet(); + java.awt.event.HierarchyListener[] var13 = var0.getHierarchyListeners(); + var0.repaint(0L); + // The following exception was thrown during execution. + // This behavior will recorded for regression testing. + try { + java.util.Set var17 = var0.getFocusTraversalKeys(500); + fail("Expected exception of type java.lang.IllegalArgumentException"); + } catch (java.lang.IllegalArgumentException e) { + // Expected exception. + } + + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var2); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var13); + + } + + public void test103() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test103"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + var0.show(false); + boolean var8 = var0.isPaintingForPrint(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var15 = var9.getMouseListeners(); + int var16 = var9.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var17 = var9.getInputMethodRequests(); + var0.addKeyListener((java.awt.event.KeyListener)var9); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + float var20 = var19.getAlignmentX(); + var19.setVisible(false); + boolean var23 = var19.isDoubleBuffered(); + var19.list(); + float var25 = var19.getAlignmentY(); + boolean var26 = var9.isFocusCycleRoot((java.awt.Container)var19); + boolean var27 = var19.isEnabled(); + java.awt.Dimension var28 = var19.getMaximumSize(); + SpaceWar.SpacePanel var30 = new SpaceWar.SpacePanel(); + float var31 = var30.getAlignmentX(); + var30.setVisible(false); + java.awt.Dimension var34 = var30.getPreferredSize(); + java.awt.Toolkit var35 = var30.getToolkit(); + boolean var36 = var30.isFocusable(); + SpaceWar.SpacePanel var38 = new SpaceWar.SpacePanel(); + float var39 = var38.getAlignmentX(); + var38.setVisible(false); + var38.nextFocus(); + var38.reshape((-1), 1, (-1), 10); + java.util.Set var49 = var38.getFocusTraversalKeys(3); + var30.setFocusTraversalKeys(1, var49); + // The following exception was thrown during execution. + // This behavior will recorded for regression testing. + try { + var19.setFocusTraversalKeys(24, var49); + fail("Expected exception of type java.lang.IllegalArgumentException"); + } catch (java.lang.IllegalArgumentException e) { + // Expected exception. + } + + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var28); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var31 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var34); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var35); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var36 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var39 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var49); + + } + + public void test104() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test104"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + var0.list(); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + float var7 = var6.getAlignmentX(); + var6.setVisible(false); + boolean var10 = var6.isDoubleBuffered(); + java.awt.dnd.DropTarget var11 = var6.getDropTarget(); + var6.show(false); + java.awt.Rectangle var14 = var6.getVisibleRect(); + java.awt.Rectangle var15 = var0.getBounds(var14); + javax.swing.JToolTip var16 = var0.createToolTip(); + var0.firePropertyChange("", false, false); + boolean var21 = var0.isFocusTraversalPolicySet(); + boolean var22 = var0.requestFocusInWindow(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var22 == false); + + } + + public void test105() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test105"); + + + SpaceWar.Player var0 = new SpaceWar.Player(); + boolean var1 = var0.isRecovering(); + var0.setRigth(false); + int var4 = var0.getRequiredPower(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 1); + + } + + public void test106() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test106"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + var0.setName(""); + java.awt.Toolkit var3 = var0.getToolkit(); + var0.setEnabled(false); + boolean var6 = var0.isLightweight(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == false); + + } + + public void test107() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test107"); + + + SpaceWar.PowerUp var3 = new SpaceWar.PowerUp(100, (-1.0d), 0.0d); + double var4 = var3.getX(); + double var5 = var3.getY(); + double var6 = var3.getY(); + double var7 = var3.getR(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == (-1.0d)); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == 0.0d); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == 0.0d); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.0d); + + } + + public void test108() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test108"); + + + SpaceWar.Text var4 = new SpaceWar.Text((-1.0d), (-1.0d), 100L, "SpaceWar.SpacePanel[,0,0,0x0,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + boolean var5 = var4.update(); + boolean var6 = var4.update(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == false); + + } + + public void test109() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test109"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.removeNotify(); + float var3 = var0.getAlignmentX(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == 0.5f); + + } + + public void test110() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test110"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var6 = var0.getMouseListeners(); + int var7 = var0.getDebugGraphicsOptions(); + boolean var8 = var0.getAutoscrolls(); + var0.setVisible(true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + } + + public void test111() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test111"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var6 = var0.getMouseListeners(); + java.awt.Dimension var7 = var0.getPreferredSize(); + java.util.Locale var8 = var0.getLocale(); + java.lang.String var9 = var0.getToolTipText(); + var0.updateUI(); + boolean var11 = var0.isRequestFocusEnabled(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertNull(var9); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == true); + + } + + public void test112() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test112"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + var0.setRequestFocusEnabled(false); + var0.setIgnoreRepaint(false); + java.lang.String var7 = var0.toString(); + java.awt.Color var8 = var0.getBackground(); + java.beans.PropertyChangeListener[] var9 = var0.getPropertyChangeListeners(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var7 + "' != '" + "SpaceWar.SpacePanel[,0,0,0var7,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"+ "'", var7.equals("SpaceWar.SpacePanel[,0,0,0var7,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]")); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var9); + + } + + public void test113() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test113"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.setEnabled(false); + java.awt.Image var8 = var0.createImage(10, 100); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var10 = new SpaceWar.SpacePanel(); + java.awt.Color var11 = var10.getBackground(); + SpaceWar.SpacePanel var12 = new SpaceWar.SpacePanel(); + float var13 = var12.getAlignmentX(); + var12.setVisible(false); + var12.nextFocus(); + var12.updateUI(); + var12.enableInputMethods(true); + var9.add((java.awt.Component)var10, (java.lang.Object)true); + java.awt.Insets var21 = var9.getInsets(); + java.awt.Insets var22 = var0.getInsets(var21); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var21); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var22); + + } + + public void test114() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test114"); + + + SpaceWar.Player var0 = new SpaceWar.Player(); + int var1 = var0.getPower(); + var0.setLeft(true); + var0.increasePower(0); + int var6 = var0.getR(); + var0.setDown(false); + var0.setScore(25); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == 25); + + } + + public void test115() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test115"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + java.awt.Dimension var4 = var0.getPreferredSize(); + boolean var5 = var0.getVerifyInputWhenFocusTarget(); + java.awt.Component var8 = var0.findComponentAt(10, 1); + boolean var9 = var0.requestDefaultFocus(); + var0.firePropertyChange("hi!", false, true); + javax.swing.ActionMap var14 = var0.getActionMap(); + var0.setDebugGraphicsOptions(10); + boolean var17 = var0.getVerifyInputWhenFocusTarget(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var4); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == true); + + } + + public void test116() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test116"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + var0.show(false); + boolean var8 = var0.isPaintingForPrint(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var15 = var9.getMouseListeners(); + int var16 = var9.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var17 = var9.getInputMethodRequests(); + var0.addKeyListener((java.awt.event.KeyListener)var9); + var9.repaint(); + java.awt.Component var22 = var9.findComponentAt(10, (-1)); + SpaceWar.SpacePanel var23 = new SpaceWar.SpacePanel(); + var23.setName(""); + java.awt.Graphics var26 = var23.getGraphics(); + java.awt.event.MouseMotionListener[] var27 = var23.getMouseMotionListeners(); + boolean var28 = var23.getIgnoreRepaint(); + SpaceWar.SpacePanel var29 = new SpaceWar.SpacePanel(); + float var30 = var29.getAlignmentX(); + var29.removeNotify(); + SpaceWar.SpacePanel var32 = new SpaceWar.SpacePanel(); + float var33 = var32.getAlignmentX(); + var32.setVisible(false); + boolean var36 = var32.isDoubleBuffered(); + var32.list(); + float var38 = var32.getAlignmentY(); + java.awt.Insets var39 = var32.getInsets(); + java.awt.Insets var40 = var29.getInsets(var39); + // The following exception was thrown during execution. + // This behavior will recorded for regression testing. + try { + var9.add((java.awt.Component)var23, (java.lang.Object)var29, 400); + fail("Expected exception of type java.lang.IllegalArgumentException"); + } catch (java.lang.IllegalArgumentException e) { + // Expected exception. + } + + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var27); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var28 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var30 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var33 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var36 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var38 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var39); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var40); + + } + + public void test117() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test117"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + SpaceWar.SpacePanel var4 = new SpaceWar.SpacePanel(); + java.awt.Color var5 = var4.getBackground(); + var0.setForeground(var5); + SpaceWar.SpacePanel var7 = new SpaceWar.SpacePanel(); + float var8 = var7.getAlignmentX(); + var7.setVisible(false); + boolean var11 = var7.isDoubleBuffered(); + java.awt.dnd.DropTarget var12 = var7.getDropTarget(); + var7.show(false); + java.awt.Rectangle var15 = var7.getVisibleRect(); + var0.repaint(var15); + java.awt.FocusTraversalPolicy var17 = var0.getFocusTraversalPolicy(); + javax.swing.TransferHandler var18 = var0.getTransferHandler(); + javax.swing.JToolTip var19 = var0.createToolTip(); + var0.paintImmediately(1, 25, 10, 500); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var19); + + } + + public void test118() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test118"); + + + SpaceWar.Player var0 = new SpaceWar.Player(); + var0.increasePower(25); + int var3 = var0.getR(); + int var4 = var0.getScore(); + var0.loseLife(); + int var6 = var0.getLives(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == 25); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == 2); + + } + + public void test119() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test119"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var6 = var0.getUI(); + java.awt.im.InputMethodRequests var7 = var0.getInputMethodRequests(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + var8.nextFocus(); + var8.updateUI(); + var8.enableInputMethods(true); + var8.setSize((-1), 1); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + var19.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var0.add((java.awt.Component)var8, (java.lang.Object)"SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + SpaceWar.SpacePanel var25 = new SpaceWar.SpacePanel(); + float var26 = var25.getAlignmentX(); + var25.setVisible(false); + java.awt.Dimension var29 = var25.getPreferredSize(); + java.awt.Toolkit var30 = var25.getToolkit(); + java.awt.Toolkit var31 = var25.getToolkit(); + java.awt.Component var32 = var8.add((java.awt.Component)var25); + var8.setDebugGraphicsOptions(0); + java.awt.event.HierarchyListener[] var35 = var8.getHierarchyListeners(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var29); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var30); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var31); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var32); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var35); + + } + + public void test120() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test120"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var6 = var0.getMouseListeners(); + int var7 = var0.getDebugGraphicsOptions(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + boolean var12 = var8.isDoubleBuffered(); + java.awt.dnd.DropTarget var13 = var8.getDropTarget(); + var8.show(false); + java.awt.Rectangle var16 = var8.getVisibleRect(); + var0.paintImmediately(var16); + java.awt.Rectangle var18 = var0.getBounds(); + java.awt.Component var21 = var0.getComponentAt((-1), 25); + java.awt.Insets var22 = var0.getInsets(); + SpaceWar.SpacePanel var23 = new SpaceWar.SpacePanel(); + float var24 = var23.getAlignmentX(); + var23.setVisible(false); + var23.nextFocus(); + var23.repaint(1L); + SpaceWar.SpacePanel var30 = new SpaceWar.SpacePanel(); + float var31 = var30.getAlignmentX(); + var30.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var36 = new SpaceWar.SpacePanel(); + float var37 = var36.getAlignmentX(); + var36.setVisible(false); + java.awt.Dimension var40 = var36.getPreferredSize(); + var30.setMaximumSize(var40); + var23.setPreferredSize(var40); + javax.swing.plaf.PanelUI var43 = var23.getUI(); + SpaceWar.SpacePanel var44 = new SpaceWar.SpacePanel(); + float var45 = var44.getAlignmentX(); + var44.setVisible(false); + SpaceWar.SpacePanel var48 = new SpaceWar.SpacePanel(); + java.awt.Color var49 = var48.getBackground(); + var44.setForeground(var49); + SpaceWar.SpacePanel var51 = new SpaceWar.SpacePanel(); + float var52 = var51.getAlignmentX(); + var51.setVisible(false); + boolean var55 = var51.isDoubleBuffered(); + java.awt.dnd.DropTarget var56 = var51.getDropTarget(); + var51.show(false); + java.awt.Rectangle var59 = var51.getVisibleRect(); + var44.repaint(var59); + java.awt.FocusTraversalPolicy var61 = var44.getFocusTraversalPolicy(); + var44.resetKeyboardActions(); + SpaceWar.SpacePanel var63 = new SpaceWar.SpacePanel(); + float var64 = var63.getAlignmentX(); + var63.setVisible(false); + boolean var67 = var63.isDoubleBuffered(); + java.awt.dnd.DropTarget var68 = var63.getDropTarget(); + var63.show(false); + java.awt.Rectangle var71 = var63.getVisibleRect(); + var44.computeVisibleRect(var71); + javax.swing.ActionMap var73 = var44.getActionMap(); + var23.setActionMap(var73); + java.awt.Point var75 = var23.getMousePosition(); + SpaceWar.SpacePanel var76 = new SpaceWar.SpacePanel(); + float var77 = var76.getAlignmentX(); + var76.setVisible(false); + var76.setInheritsPopupMenu(false); + var76.setFocusTraversalPolicyProvider(true); + java.awt.Container var84 = var76.getFocusCycleRootAncestor(); + SpaceWar.SpacePanel var85 = new SpaceWar.SpacePanel(); + float var86 = var85.getAlignmentX(); + var85.removeNotify(); + SpaceWar.SpacePanel var88 = new SpaceWar.SpacePanel(); + float var89 = var88.getAlignmentX(); + var88.setVisible(false); + boolean var92 = var88.isDoubleBuffered(); + var88.list(); + float var94 = var88.getAlignmentY(); + java.awt.Insets var95 = var88.getInsets(); + java.awt.Insets var96 = var85.getInsets(var95); + java.awt.Insets var97 = var76.getInsets(var96); + var0.add((java.awt.Component)var23, (java.lang.Object)var76); + java.awt.event.ContainerListener[] var99 = var76.getContainerListeners(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertNull(var21); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var24 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var31 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var40); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var43); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var45 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var49); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var52 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var55 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var56); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var59); + + // Regression assertion (captures the current behavior of the code) + assertNull(var61); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var64 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var67 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var68); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var71); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var73); + + // Regression assertion (captures the current behavior of the code) + assertNull(var75); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var77 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNull(var84); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var86 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var89 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var92 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var94 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var95); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var96); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var97); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var99); + + } + + public void test121() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test121"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + SpaceWar.SpacePanel var4 = new SpaceWar.SpacePanel(); + java.awt.Color var5 = var4.getBackground(); + var0.setForeground(var5); + SpaceWar.SpacePanel var7 = new SpaceWar.SpacePanel(); + float var8 = var7.getAlignmentX(); + var7.setVisible(false); + boolean var11 = var7.isDoubleBuffered(); + java.awt.dnd.DropTarget var12 = var7.getDropTarget(); + var7.show(false); + java.awt.Rectangle var15 = var7.getVisibleRect(); + var0.repaint(var15); + java.awt.FocusTraversalPolicy var17 = var0.getFocusTraversalPolicy(); + java.awt.im.InputMethodRequests var18 = var0.getInputMethodRequests(); + var0.layout(); + SpaceWar.SpacePanel var20 = new SpaceWar.SpacePanel(); + float var21 = var20.getAlignmentX(); + var20.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var26 = new SpaceWar.SpacePanel(); + float var27 = var26.getAlignmentX(); + var26.setVisible(false); + SpaceWar.SpacePanel var30 = new SpaceWar.SpacePanel(); + java.awt.Color var31 = var30.getBackground(); + var26.setForeground(var31); + var20.setBackground(var31); + var0.setForeground(var31); + int var35 = var0.getWidth(); + // The following exception was thrown during execution. + // This behavior will recorded for regression testing. + try { + java.awt.Component var37 = var0.getComponent(400); + fail("Expected exception of type java.lang.ArrayIndexOutOfBoundsException"); + } catch (java.lang.ArrayIndexOutOfBoundsException e) { + // Expected exception. + } + + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var31); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var35 == 0); + + } + + public void test122() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test122"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + var0.enable(false); + boolean var7 = var0.getFocusTraversalKeysEnabled(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + java.awt.Dimension var12 = var8.getPreferredSize(); + java.awt.Toolkit var13 = var8.getToolkit(); + boolean var14 = var8.isFocusable(); + javax.swing.KeyStroke[] var15 = var8.getRegisteredKeyStrokes(); + SpaceWar.SpacePanel var16 = new SpaceWar.SpacePanel(); + float var17 = var16.getAlignmentX(); + SpaceWar.SpacePanel var18 = new SpaceWar.SpacePanel(); + float var19 = var18.getAlignmentX(); + var18.setVisible(false); + java.awt.Dimension var22 = var18.getPreferredSize(); + boolean var23 = var18.getVerifyInputWhenFocusTarget(); + java.awt.Component var26 = var18.findComponentAt(10, 1); + var16.addKeyListener((java.awt.event.KeyListener)var18); + var18.repaint(100, (-1), (-1), 1); + boolean var33 = var8.isAncestorOf((java.awt.Component)var18); + var0.addKeyListener((java.awt.event.KeyListener)var18); + SpaceWar.SpacePanel var36 = new SpaceWar.SpacePanel(); + float var37 = var36.getAlignmentX(); + var36.setVisible(false); + boolean var40 = var36.isDoubleBuffered(); + java.awt.dnd.DropTarget var41 = var36.getDropTarget(); + var36.show(false); + boolean var44 = var36.isPaintingForPrint(); + SpaceWar.SpacePanel var45 = new SpaceWar.SpacePanel(); + float var46 = var45.getAlignmentX(); + var45.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var51 = var45.getMouseListeners(); + int var52 = var45.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var53 = var45.getInputMethodRequests(); + var36.addKeyListener((java.awt.event.KeyListener)var45); + SpaceWar.SpacePanel var55 = new SpaceWar.SpacePanel(); + float var56 = var55.getAlignmentX(); + var55.setVisible(false); + boolean var59 = var55.isDoubleBuffered(); + var55.list(); + float var61 = var55.getAlignmentY(); + boolean var62 = var45.isFocusCycleRoot((java.awt.Container)var55); + SpaceWar.SpacePanel var64 = new SpaceWar.SpacePanel(); + float var65 = var64.getAlignmentX(); + var64.setVisible(false); + var64.nextFocus(); + var64.updateUI(); + java.awt.Component var70 = var45.add("", (java.awt.Component)var64); + java.awt.Component var71 = var18.add("", (java.awt.Component)var64); + java.awt.Component var74 = var18.locate(24, 100); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var33 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var40 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var41); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var44 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var46 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var51); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var52 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var53); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var56 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var59 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var61 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var62 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var65 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var70); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var71); + + // Regression assertion (captures the current behavior of the code) + assertNull(var74); + + } + + public void test123() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test123"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.updateUI(); + var0.enableInputMethods(true); + var0.setSize((-1), 1); + boolean var13 = var0.contains(1, 1); + javax.swing.TransferHandler var14 = var0.getTransferHandler(); + boolean var15 = var0.isValid(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == false); + + } + + public void test124() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test124"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + java.awt.im.InputMethodRequests var3 = var0.getInputMethodRequests(); + java.awt.GraphicsConfiguration var4 = var0.getGraphicsConfiguration(); + boolean var6 = var0.requestFocus(false); + javax.swing.JPopupMenu var7 = var0.getComponentPopupMenu(); + boolean var8 = var0.isDoubleBuffered(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertNull(var4); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == true); + + } + + public void test125() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test125"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.reshape((-1), 1, (-1), 10); + javax.swing.border.Border var10 = var0.getBorder(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNull(var10); + + } + + public void test126() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test126"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + SpaceWar.SpacePanel var2 = new SpaceWar.SpacePanel(); + float var3 = var2.getAlignmentX(); + var2.setVisible(false); + java.awt.Dimension var6 = var2.getPreferredSize(); + boolean var7 = var2.getVerifyInputWhenFocusTarget(); + java.awt.Component var10 = var2.findComponentAt(10, 1); + var0.addKeyListener((java.awt.event.KeyListener)var2); + SpaceWar.SpacePanel var12 = new SpaceWar.SpacePanel(); + float var13 = var12.getAlignmentX(); + SpaceWar.SpacePanel var14 = new SpaceWar.SpacePanel(); + float var15 = var14.getAlignmentX(); + var14.setVisible(false); + java.awt.Dimension var18 = var14.getPreferredSize(); + boolean var19 = var14.getVerifyInputWhenFocusTarget(); + java.awt.Component var22 = var14.findComponentAt(10, 1); + var12.addKeyListener((java.awt.event.KeyListener)var14); + var14.repaint(100, (-1), (-1), 1); + java.awt.image.ColorModel var29 = var14.getColorModel(); + SpaceWar.SpacePanel var30 = new SpaceWar.SpacePanel(); + float var31 = var30.getAlignmentX(); + var30.setVisible(false); + boolean var34 = var30.isDoubleBuffered(); + var30.list(); + SpaceWar.SpacePanel var36 = new SpaceWar.SpacePanel(); + float var37 = var36.getAlignmentX(); + var36.setVisible(false); + boolean var40 = var36.isDoubleBuffered(); + java.awt.dnd.DropTarget var41 = var36.getDropTarget(); + var36.show(false); + java.awt.Rectangle var44 = var36.getVisibleRect(); + java.awt.image.BufferedImage var46 = var36.loadImg("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + boolean var47 = var30.isAncestorOf((java.awt.Component)var36); + javax.swing.InputVerifier var48 = var36.getInputVerifier(); + var2.putClientProperty((java.lang.Object)var14, (java.lang.Object)var36); + javax.swing.JToolTip var50 = var2.createToolTip(); + boolean var51 = var50.isFocusTraversable(); + SpaceWar.SpacePanel var52 = new SpaceWar.SpacePanel(); + float var53 = var52.getAlignmentX(); + var52.setVisible(false); + var52.nextFocus(); + var52.reshape((-1), 1, (-1), 10); + SpaceWar.SpacePanel var62 = new SpaceWar.SpacePanel(); + java.awt.Color var63 = var62.getBackground(); + var62.repaint(); + var62.setRequestFocusEnabled(false); + var62.reshape(100, 0, 100, 0); + java.awt.Component var72 = var52.add((java.awt.Component)var62); + boolean var73 = var62.isCursorSet(); + var62.paintImmediately(3, 10, (-1), (-1)); + // The following exception was thrown during execution. + // This behavior will recorded for regression testing. + try { + java.awt.Component var80 = var50.add((java.awt.Component)var62, 10); + fail("Expected exception of type java.lang.IllegalArgumentException"); + } catch (java.lang.IllegalArgumentException e) { + // Expected exception. + } + + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var29); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var31 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var34 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var40 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var41); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var44); + + // Regression assertion (captures the current behavior of the code) + assertNull(var46); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var47 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var48); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var50); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var51 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var53 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var63); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var72); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var73 == false); + + } + + public void test127() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test127"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + java.awt.im.InputMethodRequests var3 = var0.getInputMethodRequests(); + var0.setDoubleBuffered(true); + var0.setInheritsPopupMenu(false); + var0.invalidate(); + var0.setRequestFocusEnabled(true); + SpaceWar.SpacePanel var11 = new SpaceWar.SpacePanel(); + float var12 = var11.getAlignmentX(); + var11.setVisible(false); + SpaceWar.SpacePanel var15 = new SpaceWar.SpacePanel(); + java.awt.Color var16 = var15.getBackground(); + var11.setForeground(var16); + SpaceWar.SpacePanel var18 = new SpaceWar.SpacePanel(); + float var19 = var18.getAlignmentX(); + var18.setVisible(false); + boolean var22 = var18.isDoubleBuffered(); + java.awt.dnd.DropTarget var23 = var18.getDropTarget(); + var18.show(false); + java.awt.Rectangle var26 = var18.getVisibleRect(); + var11.repaint(var26); + java.awt.FocusTraversalPolicy var28 = var11.getFocusTraversalPolicy(); + java.awt.im.InputMethodRequests var29 = var11.getInputMethodRequests(); + var11.layout(); + SpaceWar.SpacePanel var31 = new SpaceWar.SpacePanel(); + float var32 = var31.getAlignmentX(); + var31.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var37 = new SpaceWar.SpacePanel(); + float var38 = var37.getAlignmentX(); + var37.setVisible(false); + SpaceWar.SpacePanel var41 = new SpaceWar.SpacePanel(); + java.awt.Color var42 = var41.getBackground(); + var37.setForeground(var42); + var31.setBackground(var42); + var11.setForeground(var42); + int var46 = var11.getWidth(); + int var47 = var0.getComponentZOrder((java.awt.Component)var11); + // The following exception was thrown during execution. + // This behavior will recorded for regression testing. + try { + java.awt.Component var49 = var0.getComponent(25); + fail("Expected exception of type java.lang.ArrayIndexOutOfBoundsException"); + } catch (java.lang.ArrayIndexOutOfBoundsException e) { + // Expected exception. + } + + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var22 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var23); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertNull(var28); + + // Regression assertion (captures the current behavior of the code) + assertNull(var29); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var32 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var38 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var42); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var46 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var47 == (-1)); + + } + + public void test128() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test128"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var6 = var0.getUI(); + java.awt.im.InputMethodRequests var7 = var0.getInputMethodRequests(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + var8.nextFocus(); + var8.updateUI(); + var8.enableInputMethods(true); + var8.setSize((-1), 1); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + var19.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var0.add((java.awt.Component)var8, (java.lang.Object)"SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + java.awt.event.KeyListener[] var25 = var0.getKeyListeners(); + var0.reshape(10, 100, 3, 3); + javax.accessibility.AccessibleContext var31 = var0.getAccessibleContext(); + boolean var32 = var0.getFocusTraversalKeysEnabled(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var25); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var31); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var32 == true); + + } + + public void test129() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test129"); + + + SpaceWar.Bullet var3 = new SpaceWar.Bullet(594.7973940347722d, 500, (-1)); + + } + + public void test130() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test130"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var6 = var0.getMouseListeners(); + var0.firePropertyChange("", 0.5f, 100.0f); + var0.enable(false); + SpaceWar.SpacePanel var13 = new SpaceWar.SpacePanel(); + float var14 = var13.getAlignmentX(); + SpaceWar.SpacePanel var15 = new SpaceWar.SpacePanel(); + float var16 = var15.getAlignmentX(); + var15.setVisible(false); + java.awt.Dimension var19 = var15.getPreferredSize(); + boolean var20 = var15.getVerifyInputWhenFocusTarget(); + java.awt.Component var23 = var15.findComponentAt(10, 1); + var13.addKeyListener((java.awt.event.KeyListener)var15); + java.awt.Cursor var25 = var13.getCursor(); + java.awt.Dimension var26 = var13.getMinimumSize(); + var0.setSize(var26); + // The following exception was thrown during execution. + // This behavior will recorded for regression testing. + try { + java.awt.Point var28 = var0.getLocationOnScreen(); + fail("Expected exception of type java.awt.IllegalComponentStateException"); + } catch (java.awt.IllegalComponentStateException e) { + // Expected exception. + } + + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var23); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var25); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var26); + + } + + public void test131() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test131"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.reshape((-1), 1, (-1), 10); + var0.disable(); + java.awt.LayoutManager var11 = var0.getLayout(); + var0.setVisible(false); + SpaceWar.SpacePanel var14 = new SpaceWar.SpacePanel(); + float var15 = var14.getAlignmentX(); + var14.setVisible(false); + var14.nextFocus(); + var14.updateUI(); + java.util.Locale var20 = var14.getLocale(); + var0.setLocale(var20); + javax.swing.JComponent.setDefaultLocale(var20); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + } + + public void test132() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test132"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.setInheritsPopupMenu(false); + var0.move(10, 10); + int var9 = var0.getHeight(); + var0.setLocation(3, 1); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0); + + } + + public void test133() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test133"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + float var7 = var6.getAlignmentX(); + var6.setVisible(false); + java.awt.Dimension var10 = var6.getPreferredSize(); + var0.setMaximumSize(var10); + boolean var12 = var0.getVerifyInputWhenFocusTarget(); + java.awt.Toolkit var13 = var0.getToolkit(); + java.lang.String var14 = var0.getUIClassID(); + java.awt.Dimension var15 = var0.getMinimumSize(); + javax.swing.InputVerifier var16 = var0.getInputVerifier(); + var0.setName("SpaceWar.SpacePanel[,0,0,0x0,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var14 + "' != '" + "PanelUI"+ "'", var14.equals("PanelUI")); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNull(var16); + + } + + public void test134() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test134"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + boolean var2 = var0.hasFocus(); + boolean var3 = var0.isPreferredSizeSet(); + var0.firePropertyChange("", (short)1, (short)0); + boolean var8 = var0.isMaximumSizeSet(); + var0.list(); + SpaceWar.SpacePanel var10 = new SpaceWar.SpacePanel(); + float var11 = var10.getAlignmentX(); + var10.setVisible(false); + boolean var14 = var10.isDoubleBuffered(); + java.awt.dnd.DropTarget var15 = var10.getDropTarget(); + var10.show(false); + java.awt.Rectangle var18 = var10.getVisibleRect(); + java.awt.image.BufferedImage var20 = var10.loadImg("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + java.awt.ComponentOrientation var21 = var10.getComponentOrientation(); + var10.transferFocusBackward(); + SpaceWar.SpacePanel var23 = new SpaceWar.SpacePanel(); + java.awt.Color var24 = var23.getBackground(); + var23.setFocusCycleRoot(true); + var0.add((java.awt.Component)var10, (java.lang.Object)true); + // The following exception was thrown during execution. + // This behavior will recorded for regression testing. + try { + var0.remove(499); + fail("Expected exception of type java.lang.ArrayIndexOutOfBoundsException"); + } catch (java.lang.ArrayIndexOutOfBoundsException e) { + // Expected exception. + } + + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var2 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var21); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var24); + + } + + public void test135() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test135"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.repaint(1L); + SpaceWar.SpacePanel var7 = new SpaceWar.SpacePanel(); + float var8 = var7.getAlignmentX(); + var7.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var13 = new SpaceWar.SpacePanel(); + float var14 = var13.getAlignmentX(); + var13.setVisible(false); + java.awt.Dimension var17 = var13.getPreferredSize(); + var7.setMaximumSize(var17); + var0.setPreferredSize(var17); + java.awt.Container var20 = var0.getFocusCycleRootAncestor(); + java.awt.image.ColorModel var21 = var0.getColorModel(); + // The following exception was thrown during execution. + // This behavior will recorded for regression testing. + try { + boolean var23 = var0.areFocusTraversalKeysSet(24); + fail("Expected exception of type java.lang.IllegalArgumentException"); + } catch (java.lang.IllegalArgumentException e) { + // Expected exception. + } + + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var21); + + } + + public void test136() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test136"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + var0.show(false); + java.awt.Rectangle var8 = var0.getVisibleRect(); + boolean var9 = var0.isFocusTraversalPolicySet(); + var0.setLocation(24, 3); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == false); + + } + + public void test137() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test137"); + + + SpaceWar.Enemy var2 = new SpaceWar.Enemy(0, 100); + var2.explode(); + double var4 = var2.getY(); + var2.explode(); + int var6 = var2.getRank(); + var2.explode(); + boolean var8 = var2.isDead(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0.0d); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == 100); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + } + + public void test138() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test138"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.updateUI(); + var0.enableInputMethods(true); + java.awt.Point var8 = var0.location(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.setVisible(false); + var9.nextFocus(); + java.awt.Component var14 = var0.add((java.awt.Component)var9); + var9.move(2, 10); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + } + + public void test139() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test139"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + var0.show(false); + boolean var8 = var0.isPaintingForPrint(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var15 = var9.getMouseListeners(); + int var16 = var9.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var17 = var9.getInputMethodRequests(); + var0.addKeyListener((java.awt.event.KeyListener)var9); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + float var20 = var19.getAlignmentX(); + var19.setVisible(false); + boolean var23 = var19.isDoubleBuffered(); + var19.list(); + float var25 = var19.getAlignmentY(); + boolean var26 = var9.isFocusCycleRoot((java.awt.Container)var19); + boolean var27 = var19.isEnabled(); + java.awt.Dimension var28 = var19.getMaximumSize(); + var19.disable(); + var19.move(10, 1); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var28); + + } + + public void test140() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test140"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + SpaceWar.SpacePanel var4 = new SpaceWar.SpacePanel(); + java.awt.Color var5 = var4.getBackground(); + var0.setForeground(var5); + SpaceWar.SpacePanel var7 = new SpaceWar.SpacePanel(); + float var8 = var7.getAlignmentX(); + var7.setVisible(false); + boolean var11 = var7.isDoubleBuffered(); + java.awt.dnd.DropTarget var12 = var7.getDropTarget(); + var7.show(false); + java.awt.Rectangle var15 = var7.getVisibleRect(); + var0.repaint(var15); + java.awt.Component.BaselineResizeBehavior var17 = var0.getBaselineResizeBehavior(); + SpaceWar.SpacePanel var18 = new SpaceWar.SpacePanel(); + float var19 = var18.getAlignmentX(); + var18.setVisible(false); + var18.nextFocus(); + var18.repaint(1L); + SpaceWar.SpacePanel var25 = new SpaceWar.SpacePanel(); + float var26 = var25.getAlignmentX(); + var25.setVisible(false); + boolean var29 = var25.isDoubleBuffered(); + var25.list(); + SpaceWar.SpacePanel var31 = new SpaceWar.SpacePanel(); + float var32 = var31.getAlignmentX(); + var31.setVisible(false); + boolean var35 = var31.isDoubleBuffered(); + java.awt.dnd.DropTarget var36 = var31.getDropTarget(); + var31.show(false); + java.awt.Rectangle var39 = var31.getVisibleRect(); + java.awt.Rectangle var40 = var25.getBounds(var39); + var18.setBounds(var40); + var0.paintImmediately(var40); + java.awt.Dimension var43 = var0.getMaximumSize(); + boolean var44 = var0.getFocusTraversalKeysEnabled(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var29 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var32 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var35 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var36); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var39); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var40); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var43); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var44 == true); + + } + + public void test141() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test141"); + + + SpaceWar.Enemy var2 = new SpaceWar.Enemy(0, 100); + int var3 = var2.getR(); + int var4 = var2.getR(); + int var5 = var2.getR(); + var2.hit(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == 0); + + } + + public void test142() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test142"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var6 = var0.getMouseListeners(); + java.awt.Dimension var7 = var0.getPreferredSize(); + java.util.Locale var8 = var0.getLocale(); + var0.setFocusable(true); + var0.paintImmediately((-1), 10, 100, 25); + var0.resetKeyboardActions(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var8); + + } + + public void test143() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test143"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var6 = var0.getUI(); + java.awt.im.InputMethodRequests var7 = var0.getInputMethodRequests(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + var8.nextFocus(); + var8.updateUI(); + var8.enableInputMethods(true); + var8.setSize((-1), 1); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + var19.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var0.add((java.awt.Component)var8, (java.lang.Object)"SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + var0.list(); + var0.layout(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + } + + public void test144() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test144"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.reshape((-1), 1, (-1), 10); + var0.disable(); + java.awt.LayoutManager var11 = var0.getLayout(); + boolean var14 = var0.contains((-1), 0); + var0.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", 1.0f, 10.0f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == false); + + } + + public void test145() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test145"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + SpaceWar.SpacePanel var2 = new SpaceWar.SpacePanel(); + float var3 = var2.getAlignmentX(); + var2.setVisible(false); + java.awt.Dimension var6 = var2.getPreferredSize(); + boolean var7 = var2.getVerifyInputWhenFocusTarget(); + java.awt.Component var10 = var2.findComponentAt(10, 1); + var0.addKeyListener((java.awt.event.KeyListener)var2); + SpaceWar.SpacePanel var12 = new SpaceWar.SpacePanel(); + float var13 = var12.getAlignmentX(); + SpaceWar.SpacePanel var14 = new SpaceWar.SpacePanel(); + float var15 = var14.getAlignmentX(); + var14.setVisible(false); + java.awt.Dimension var18 = var14.getPreferredSize(); + boolean var19 = var14.getVerifyInputWhenFocusTarget(); + java.awt.Component var22 = var14.findComponentAt(10, 1); + var12.addKeyListener((java.awt.event.KeyListener)var14); + var14.repaint(100, (-1), (-1), 1); + java.awt.image.ColorModel var29 = var14.getColorModel(); + SpaceWar.SpacePanel var30 = new SpaceWar.SpacePanel(); + float var31 = var30.getAlignmentX(); + var30.setVisible(false); + boolean var34 = var30.isDoubleBuffered(); + var30.list(); + SpaceWar.SpacePanel var36 = new SpaceWar.SpacePanel(); + float var37 = var36.getAlignmentX(); + var36.setVisible(false); + boolean var40 = var36.isDoubleBuffered(); + java.awt.dnd.DropTarget var41 = var36.getDropTarget(); + var36.show(false); + java.awt.Rectangle var44 = var36.getVisibleRect(); + java.awt.image.BufferedImage var46 = var36.loadImg("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + boolean var47 = var30.isAncestorOf((java.awt.Component)var36); + javax.swing.InputVerifier var48 = var36.getInputVerifier(); + var2.putClientProperty((java.lang.Object)var14, (java.lang.Object)var36); + int var50 = var36.getComponentCount(); + java.awt.Component var53 = var36.locate(100, 24); + boolean var54 = var36.isFocusTraversable(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var29); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var31 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var34 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var40 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var41); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var44); + + // Regression assertion (captures the current behavior of the code) + assertNull(var46); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var47 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var48); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var50 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var53); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var54 == true); + + } + + public void test146() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test146"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.setInheritsPopupMenu(false); + boolean var6 = var0.isDoubleBuffered(); + var0.setAlignmentY(100.0f); + boolean var9 = var0.isPaintingTile(); + java.awt.im.InputMethodRequests var10 = var0.getInputMethodRequests(); + var0.transferFocusUpCycle(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var10); + + } + + public void test147() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test147"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + java.awt.Dimension var4 = var0.getPreferredSize(); + boolean var5 = var0.getVerifyInputWhenFocusTarget(); + java.awt.Component var8 = var0.findComponentAt(10, 1); + boolean var9 = var0.requestDefaultFocus(); + var0.setVerifyInputWhenFocusTarget(false); + java.awt.Point var12 = var0.getLocation(); + var0.list(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var4); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var12); + + } + + public void test148() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test148"); + + + SpaceWar.Player var0 = new SpaceWar.Player(); + boolean var1 = var0.isRecovering(); + var0.setUp(true); + int var4 = var0.getY(); + var0.increasePower(500); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 500); + + } + + public void test149() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test149"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + boolean var2 = var0.hasFocus(); + boolean var3 = var0.isPreferredSizeSet(); + var0.firePropertyChange("", (short)1, (short)0); + boolean var8 = var0.requestFocusInWindow(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var2 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + } + + public void test150() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test150"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + java.awt.Dimension var4 = var0.getPreferredSize(); + java.awt.Toolkit var5 = var0.getToolkit(); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + var6.setName(""); + int var9 = var6.getX(); + SpaceWar.SpacePanel var10 = new SpaceWar.SpacePanel(); + float var11 = var10.getAlignmentX(); + var10.setVisible(false); + var10.nextFocus(); + SpaceWar.SpacePanel var15 = new SpaceWar.SpacePanel(); + float var16 = var15.getAlignmentX(); + var15.setVisible(false); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + java.awt.Color var20 = var19.getBackground(); + var15.setForeground(var20); + var10.setBackground(var20); + var6.setBackground(var20); + var0.setForeground(var20); + SpaceWar.SpacePanel var25 = new SpaceWar.SpacePanel(); + float var26 = var25.getAlignmentX(); + var25.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var31 = new SpaceWar.SpacePanel(); + float var32 = var31.getAlignmentX(); + var31.setVisible(false); + java.awt.Dimension var35 = var31.getPreferredSize(); + var25.setMaximumSize(var35); + boolean var37 = var25.getVerifyInputWhenFocusTarget(); + javax.accessibility.AccessibleContext var38 = var25.getAccessibleContext(); + boolean var39 = var25.isDoubleBuffered(); + java.awt.Rectangle var40 = var25.getVisibleRect(); + var0.scrollRectToVisible(var40); + SpaceWar.SpacePanel var42 = new SpaceWar.SpacePanel(); + float var43 = var42.getAlignmentX(); + var42.setVisible(false); + java.awt.Dimension var46 = var42.getPreferredSize(); + java.awt.Toolkit var47 = var42.getToolkit(); + SpaceWar.SpacePanel var48 = new SpaceWar.SpacePanel(); + var48.setName(""); + int var51 = var48.getX(); + SpaceWar.SpacePanel var52 = new SpaceWar.SpacePanel(); + float var53 = var52.getAlignmentX(); + var52.setVisible(false); + var52.nextFocus(); + SpaceWar.SpacePanel var57 = new SpaceWar.SpacePanel(); + float var58 = var57.getAlignmentX(); + var57.setVisible(false); + SpaceWar.SpacePanel var61 = new SpaceWar.SpacePanel(); + java.awt.Color var62 = var61.getBackground(); + var57.setForeground(var62); + var52.setBackground(var62); + var48.setBackground(var62); + var42.setForeground(var62); + SpaceWar.SpacePanel var67 = new SpaceWar.SpacePanel(); + float var68 = var67.getAlignmentX(); + var67.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var73 = new SpaceWar.SpacePanel(); + float var74 = var73.getAlignmentX(); + var73.setVisible(false); + java.awt.Dimension var77 = var73.getPreferredSize(); + var67.setMaximumSize(var77); + boolean var79 = var67.getVerifyInputWhenFocusTarget(); + javax.accessibility.AccessibleContext var80 = var67.getAccessibleContext(); + boolean var81 = var67.isDoubleBuffered(); + java.awt.Rectangle var82 = var67.getVisibleRect(); + var42.scrollRectToVisible(var82); + var0.removeKeyListener((java.awt.event.KeyListener)var42); + var42.firePropertyChange("PanelUI", (short)1, (short)1); + java.lang.String var89 = var42.getToolTipText(); + int var90 = var42.getDebugGraphicsOptions(); + var42.transferFocusUpCycle(); + var42.show(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var4); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var32 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var35); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var38); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var39 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var40); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var43 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var46); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var47); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var51 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var53 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var58 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var62); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var68 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var74 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var77); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var79 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var80); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var81 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var82); + + // Regression assertion (captures the current behavior of the code) + assertNull(var89); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var90 == 0); + + } + + public void test151() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test151"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + java.awt.im.InputMethodRequests var3 = var0.getInputMethodRequests(); + var0.list(); + int var5 = var0.getHeight(); + boolean var6 = var0.isValidateRoot(); + var0.transferFocusUpCycle(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == false); + + } + + public void test152() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test152"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.setInheritsPopupMenu(false); + var0.setFocusTraversalPolicyProvider(true); + boolean var10 = var0.inside(25, 3); + SpaceWar.SpacePanel var11 = new SpaceWar.SpacePanel(); + float var12 = var11.getAlignmentX(); + var11.setVisible(false); + boolean var15 = var11.isDoubleBuffered(); + java.awt.dnd.DropTarget var16 = var11.getDropTarget(); + var11.show(false); + boolean var19 = var11.isPaintingForPrint(); + SpaceWar.SpacePanel var20 = new SpaceWar.SpacePanel(); + float var21 = var20.getAlignmentX(); + SpaceWar.SpacePanel var22 = new SpaceWar.SpacePanel(); + float var23 = var22.getAlignmentX(); + var22.setVisible(false); + java.awt.Dimension var26 = var22.getPreferredSize(); + boolean var27 = var22.getVerifyInputWhenFocusTarget(); + java.awt.Component var30 = var22.findComponentAt(10, 1); + var20.addKeyListener((java.awt.event.KeyListener)var22); + java.awt.Dimension var32 = var22.getMinimumSize(); + var11.setMinimumSize(var32); + var0.setPreferredSize(var32); + boolean var36 = var0.requestFocus(true); + var0.reshape((-1), 10, 24, 0); + var0.repaint(1L); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var30); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var32); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var36 == false); + + } + + public void test153() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test153"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + var0.list(); + boolean var6 = var0.isVisible(); + java.lang.String var7 = var0.toString(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var7 + "' != '" + "SpaceWar.SpacePanel[,0,0,0var7,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"+ "'", var7.equals("SpaceWar.SpacePanel[,0,0,0var7,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]")); + + } + + public void test154() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test154"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + float var7 = var6.getAlignmentX(); + var6.setVisible(false); + SpaceWar.SpacePanel var10 = new SpaceWar.SpacePanel(); + java.awt.Color var11 = var10.getBackground(); + var6.setForeground(var11); + var0.setBackground(var11); + java.awt.Point var14 = var0.location(); + java.awt.Image var17 = var0.createImage((-1), 10); + int var18 = var0.getWidth(); + java.awt.peer.ComponentPeer var19 = var0.getPeer(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var19); + + } + + public void test155() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test155"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + boolean var2 = var0.hasFocus(); + boolean var3 = var0.isPreferredSizeSet(); + boolean var4 = var0.isMinimumSizeSet(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var2 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == false); + + } + + public void test156() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test156"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + java.awt.im.InputMethodRequests var3 = var0.getInputMethodRequests(); + var0.setDoubleBuffered(true); + var0.setInheritsPopupMenu(false); + javax.swing.plaf.PanelUI var8 = var0.getUI(); + boolean var9 = var0.isCursorSet(); + var0.repaint(2, 1, 100, 500); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == false); + + } + + public void test157() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test157"); + + + SpaceWar.Player var0 = new SpaceWar.Player(); + int var1 = var0.getR(); + var0.setRigth(false); + int var4 = var0.getY(); + int var5 = var0.getY(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 25); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 500); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == 500); + + } + + public void test158() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test158"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + var0.enable(false); + boolean var7 = var0.getFocusTraversalKeysEnabled(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + java.awt.Dimension var12 = var8.getPreferredSize(); + java.awt.Toolkit var13 = var8.getToolkit(); + boolean var14 = var8.isFocusable(); + javax.swing.KeyStroke[] var15 = var8.getRegisteredKeyStrokes(); + SpaceWar.SpacePanel var16 = new SpaceWar.SpacePanel(); + float var17 = var16.getAlignmentX(); + SpaceWar.SpacePanel var18 = new SpaceWar.SpacePanel(); + float var19 = var18.getAlignmentX(); + var18.setVisible(false); + java.awt.Dimension var22 = var18.getPreferredSize(); + boolean var23 = var18.getVerifyInputWhenFocusTarget(); + java.awt.Component var26 = var18.findComponentAt(10, 1); + var16.addKeyListener((java.awt.event.KeyListener)var18); + var18.repaint(100, (-1), (-1), 1); + boolean var33 = var8.isAncestorOf((java.awt.Component)var18); + var0.addKeyListener((java.awt.event.KeyListener)var18); + javax.swing.border.Border var35 = var18.getBorder(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var33 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var35); + + } + + public void test159() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test159"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + var0.show(false); + boolean var8 = var0.isPaintingForPrint(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var15 = var9.getMouseListeners(); + int var16 = var9.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var17 = var9.getInputMethodRequests(); + var0.addKeyListener((java.awt.event.KeyListener)var9); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + float var20 = var19.getAlignmentX(); + var19.setVisible(false); + boolean var23 = var19.isDoubleBuffered(); + var19.list(); + float var25 = var19.getAlignmentY(); + boolean var26 = var9.isFocusCycleRoot((java.awt.Container)var19); + SpaceWar.SpacePanel var28 = new SpaceWar.SpacePanel(); + float var29 = var28.getAlignmentX(); + var28.setVisible(false); + var28.nextFocus(); + var28.updateUI(); + java.awt.Component var34 = var9.add("", (java.awt.Component)var28); + java.awt.ComponentOrientation var35 = var28.getComponentOrientation(); + boolean var36 = var28.isDisplayable(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var29 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var34); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var35); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var36 == false); + + } + + public void test160() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test160"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var6 = var0.getMouseListeners(); + java.awt.Dimension var7 = var0.getPreferredSize(); + java.util.Locale var8 = var0.getLocale(); + java.lang.String var9 = var0.getToolTipText(); + var0.updateUI(); + // The following exception was thrown during execution. + // This behavior will recorded for regression testing. + try { + java.awt.Point var11 = var0.getLocationOnScreen(); + fail("Expected exception of type java.awt.IllegalComponentStateException"); + } catch (java.awt.IllegalComponentStateException e) { + // Expected exception. + } + + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertNull(var9); + + } + + public void test161() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test161"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.setInheritsPopupMenu(false); + var0.setFocusTraversalPolicyProvider(true); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + java.awt.Color var9 = var8.getBackground(); + var8.repaint(); + java.awt.im.InputMethodRequests var11 = var8.getInputMethodRequests(); + java.awt.GraphicsConfiguration var12 = var8.getGraphicsConfiguration(); + java.awt.Component var13 = var0.add((java.awt.Component)var8); + var0.setFocusCycleRoot(true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var9); + + // Regression assertion (captures the current behavior of the code) + assertNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var13); + + } + + public void test162() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test162"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + var0.show(false); + boolean var8 = var0.isPaintingForPrint(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var15 = var9.getMouseListeners(); + int var16 = var9.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var17 = var9.getInputMethodRequests(); + var0.addKeyListener((java.awt.event.KeyListener)var9); + java.awt.Container var19 = var9.getFocusCycleRootAncestor(); + boolean var20 = var9.hasFocus(); + var9.enableInputMethods(false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == false); + + } + + public void test163() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test163"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.reshape((-1), 1, (-1), 10); + var0.disable(); + java.awt.LayoutManager var11 = var0.getLayout(); + boolean var14 = var0.contains((-1), 0); + SpaceWar.SpacePanel var15 = new SpaceWar.SpacePanel(); + float var16 = var15.getAlignmentX(); + var15.setVisible(false); + var15.nextFocus(); + var15.updateUI(); + var15.enableInputMethods(true); + var15.setSize((-1), 1); + java.awt.Component var26 = var0.add((java.awt.Component)var15); + boolean var28 = var0.requestFocus(true); + var0.layout(); + boolean var30 = var0.isCursorSet(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var28 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var30 == false); + + } + + public void test164() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test164"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + java.awt.im.InputMethodRequests var3 = var0.getInputMethodRequests(); + var0.setDoubleBuffered(true); + var0.setInheritsPopupMenu(false); + boolean var8 = var0.isFocusTraversalPolicySet(); + var0.transferFocusUpCycle(); + java.awt.image.BufferedImage var11 = var0.loadImg("SpaceWar.SpacePanel[,0,0,0x0,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + SpaceWar.SpacePanel var12 = new SpaceWar.SpacePanel(); + float var13 = var12.getAlignmentX(); + var12.setVisible(false); + var12.setInheritsPopupMenu(false); + boolean var18 = var12.isDoubleBuffered(); + boolean var19 = var12.isMinimumSizeSet(); + java.awt.Font var20 = var12.getFont(); + java.awt.FontMetrics var21 = var0.getFontMetrics(var20); + var0.grabFocus(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var21); + + } + + public void test165() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test165"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + java.awt.im.InputMethodRequests var3 = var0.getInputMethodRequests(); + var0.setDoubleBuffered(true); + var0.show(false); + var0.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", (-1), 24); + java.awt.Container var12 = var0.getTopLevelAncestor(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertNull(var12); + + } + + public void test166() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test166"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + boolean var6 = var0.isFocusOwner(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + java.awt.Dimension var12 = var8.getPreferredSize(); + java.awt.Toolkit var13 = var8.getToolkit(); + SpaceWar.SpacePanel var14 = new SpaceWar.SpacePanel(); + var14.setName(""); + int var17 = var14.getX(); + SpaceWar.SpacePanel var18 = new SpaceWar.SpacePanel(); + float var19 = var18.getAlignmentX(); + var18.setVisible(false); + var18.nextFocus(); + SpaceWar.SpacePanel var23 = new SpaceWar.SpacePanel(); + float var24 = var23.getAlignmentX(); + var23.setVisible(false); + SpaceWar.SpacePanel var27 = new SpaceWar.SpacePanel(); + java.awt.Color var28 = var27.getBackground(); + var23.setForeground(var28); + var18.setBackground(var28); + var14.setBackground(var28); + var8.setForeground(var28); + var0.putClientProperty((java.lang.Object)(byte)100, (java.lang.Object)var28); + SpaceWar.SpacePanel var34 = new SpaceWar.SpacePanel(); + var34.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + javax.swing.plaf.PanelUI var39 = var34.getUI(); + var0.setUI(var39); + SpaceWar.SpacePanel var41 = new SpaceWar.SpacePanel(); + java.awt.Color var42 = var41.getBackground(); + var41.repaint(); + java.awt.im.InputMethodRequests var44 = var41.getInputMethodRequests(); + int var45 = var41.countComponents(); + java.awt.event.ComponentListener[] var46 = var41.getComponentListeners(); + var41.transferFocusBackward(); + SpaceWar.SpacePanel var49 = new SpaceWar.SpacePanel(); + float var50 = var49.getAlignmentX(); + var49.setVisible(false); + boolean var53 = var49.isDoubleBuffered(); + var49.enable(false); + SpaceWar.SpacePanel var56 = new SpaceWar.SpacePanel(); + float var57 = var56.getAlignmentX(); + boolean var58 = var56.hasFocus(); + java.awt.Insets var59 = var56.getInsets(); + java.awt.Rectangle var60 = var56.bounds(); + var49.repaint(var60); + java.awt.Component var62 = var41.add("", (java.awt.Component)var49); + // The following exception was thrown during execution. + // This behavior will recorded for regression testing. + try { + var0.setComponentZOrder((java.awt.Component)var41, 25); + fail("Expected exception of type java.lang.IllegalArgumentException"); + } catch (java.lang.IllegalArgumentException e) { + // Expected exception. + } + + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var24 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var28); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var39); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var42); + + // Regression assertion (captures the current behavior of the code) + assertNull(var44); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var45 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var46); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var50 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var53 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var57 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var58 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var59); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var60); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var62); + + } + + public void test167() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test167"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + var0.list(); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + float var7 = var6.getAlignmentX(); + var6.setVisible(false); + boolean var10 = var6.isDoubleBuffered(); + java.awt.dnd.DropTarget var11 = var6.getDropTarget(); + var6.show(false); + java.awt.Rectangle var14 = var6.getVisibleRect(); + java.awt.Rectangle var15 = var0.getBounds(var14); + javax.swing.JToolTip var16 = var0.createToolTip(); + var0.firePropertyChange("", false, false); + var0.validate(); + SpaceWar.SpacePanel var22 = new SpaceWar.SpacePanel(); + float var23 = var22.getAlignmentX(); + var22.setVisible(false); + boolean var26 = var22.isDoubleBuffered(); + java.awt.dnd.DropTarget var27 = var22.getDropTarget(); + var22.show(false); + boolean var30 = var22.isPaintingForPrint(); + SpaceWar.SpacePanel var31 = new SpaceWar.SpacePanel(); + float var32 = var31.getAlignmentX(); + var31.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var37 = var31.getMouseListeners(); + int var38 = var31.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var39 = var31.getInputMethodRequests(); + var22.addKeyListener((java.awt.event.KeyListener)var31); + boolean var41 = var31.isShowing(); + // The following exception was thrown during execution. + // This behavior will recorded for regression testing. + try { + java.awt.Component var43 = var0.add((java.awt.Component)var31, 2); + fail("Expected exception of type java.lang.IllegalArgumentException"); + } catch (java.lang.IllegalArgumentException e) { + // Expected exception. + } + + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var27); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var30 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var32 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var37); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var38 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var39); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var41 == false); + + } + + public void test168() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test168"); + + + SpaceWar.Player var0 = new SpaceWar.Player(); + boolean var1 = var0.isRecovering(); + var0.setRigth(false); + int var4 = var0.getPower(); + int var5 = var0.getPowerLevel(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == 0); + + } + + public void test169() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test169"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var6 = var0.getUI(); + java.awt.im.InputMethodRequests var7 = var0.getInputMethodRequests(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + var8.nextFocus(); + var8.updateUI(); + var8.enableInputMethods(true); + var8.setSize((-1), 1); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + var19.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var0.add((java.awt.Component)var8, (java.lang.Object)"SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + java.awt.ComponentOrientation var25 = var8.getComponentOrientation(); + java.beans.VetoableChangeListener[] var26 = var8.getVetoableChangeListeners(); + int var27 = var8.getHeight(); + var8.enable(true); + var8.repaint(); + int var31 = var8.getHeight(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var25); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == 1); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var31 == 1); + + } + + public void test170() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test170"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + SpaceWar.SpacePanel var4 = new SpaceWar.SpacePanel(); + java.awt.Color var5 = var4.getBackground(); + var0.setForeground(var5); + SpaceWar.SpacePanel var7 = new SpaceWar.SpacePanel(); + float var8 = var7.getAlignmentX(); + var7.setVisible(false); + boolean var11 = var7.isDoubleBuffered(); + java.awt.dnd.DropTarget var12 = var7.getDropTarget(); + var7.show(false); + java.awt.Rectangle var15 = var7.getVisibleRect(); + var0.repaint(var15); + SpaceWar.SpacePanel var17 = new SpaceWar.SpacePanel(); + float var18 = var17.getAlignmentX(); + var17.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var23 = var17.getMouseListeners(); + java.awt.Dimension var24 = var17.getPreferredSize(); + java.util.Locale var25 = var17.getLocale(); + var0.setLocale(var25); + java.util.Locale var27 = var0.getLocale(); + // The following exception was thrown during execution. + // This behavior will recorded for regression testing. + try { + javax.swing.InputMap var29 = var0.getInputMap(24); + fail("Expected exception of type java.lang.IllegalArgumentException"); + } catch (java.lang.IllegalArgumentException e) { + // Expected exception. + } + + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var23); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var25); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var27); + + } + + public void test171() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test171"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + java.awt.event.MouseMotionListener[] var6 = var0.getMouseMotionListeners(); + java.awt.event.ComponentListener[] var7 = var0.getComponentListeners(); + var0.setFocusTraversalPolicyProvider(false); + // The following exception was thrown during execution. + // This behavior will recorded for regression testing. + try { + java.awt.Point var10 = var0.getLocationOnScreen(); + fail("Expected exception of type java.awt.IllegalComponentStateException"); + } catch (java.awt.IllegalComponentStateException e) { + // Expected exception. + } + + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var7); + + } + + public void test172() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test172"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + boolean var2 = var0.hasFocus(); + java.beans.VetoableChangeListener[] var3 = var0.getVetoableChangeListeners(); + var0.paintImmediately(10, 0, (-1), 25); + boolean var9 = var0.getInheritsPopupMenu(); + var0.resize(500, 10); + boolean var13 = var0.isLightweight(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var2 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == false); + + } + + public void test173() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test173"); + + + SpaceWar.Player var0 = new SpaceWar.Player(); + var0.increasePower(25); + int var3 = var0.getR(); + int var4 = var0.getScore(); + java.awt.image.BufferedImage var6 = var0.loadImg("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == 25); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var6); + + } + + public void test174() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test174"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + SpaceWar.SpacePanel var2 = new SpaceWar.SpacePanel(); + float var3 = var2.getAlignmentX(); + var2.setVisible(false); + java.awt.Dimension var6 = var2.getPreferredSize(); + boolean var7 = var2.getVerifyInputWhenFocusTarget(); + java.awt.Component var10 = var2.findComponentAt(10, 1); + var0.addKeyListener((java.awt.event.KeyListener)var2); + var2.repaint(100, (-1), (-1), 1); + SpaceWar.SpacePanel var17 = new SpaceWar.SpacePanel(); + java.awt.Color var18 = var17.getBackground(); + var17.repaint(); + java.awt.im.InputMethodRequests var20 = var17.getInputMethodRequests(); + java.awt.GraphicsConfiguration var21 = var17.getGraphicsConfiguration(); + var2.remove((java.awt.Component)var17); + var2.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", 0.0f, 1.0f); + SpaceWar.SpacePanel var27 = new SpaceWar.SpacePanel(); + float var28 = var27.getAlignmentX(); + var27.setVisible(false); + java.awt.Dimension var31 = var27.getPreferredSize(); + boolean var32 = var27.getVerifyInputWhenFocusTarget(); + SpaceWar.SpacePanel var33 = new SpaceWar.SpacePanel(); + var33.setName(""); + int var36 = var33.getX(); + SpaceWar.SpacePanel var37 = new SpaceWar.SpacePanel(); + float var38 = var37.getAlignmentX(); + var37.setVisible(false); + var37.nextFocus(); + SpaceWar.SpacePanel var42 = new SpaceWar.SpacePanel(); + float var43 = var42.getAlignmentX(); + var42.setVisible(false); + SpaceWar.SpacePanel var46 = new SpaceWar.SpacePanel(); + java.awt.Color var47 = var46.getBackground(); + var42.setForeground(var47); + var37.setBackground(var47); + var33.setBackground(var47); + var2.add((java.awt.Component)var27, (java.lang.Object)var33); + var2.transferFocusBackward(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertNull(var21); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var28 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var31); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var32 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var36 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var38 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var43 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var47); + + } + + public void test175() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test175"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + java.awt.Dimension var4 = var0.getPreferredSize(); + boolean var5 = var0.getVerifyInputWhenFocusTarget(); + boolean var6 = var0.isShowing(); + boolean var7 = var0.isBackgroundSet(); + java.awt.im.InputContext var8 = var0.getInputContext(); + var0.firePropertyChange("hi!", (short)100, (short)1); + // The following exception was thrown during execution. + // This behavior will recorded for regression testing. + try { + java.awt.Point var13 = var0.getLocationOnScreen(); + fail("Expected exception of type java.awt.IllegalComponentStateException"); + } catch (java.awt.IllegalComponentStateException e) { + // Expected exception. + } + + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var4); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var8); + + } + + public void test176() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test176"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + var0.show(false); + boolean var8 = var0.isPaintingForPrint(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var15 = var9.getMouseListeners(); + int var16 = var9.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var17 = var9.getInputMethodRequests(); + var0.addKeyListener((java.awt.event.KeyListener)var9); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + float var20 = var19.getAlignmentX(); + var19.setVisible(false); + boolean var23 = var19.isDoubleBuffered(); + var19.list(); + float var25 = var19.getAlignmentY(); + boolean var26 = var9.isFocusCycleRoot((java.awt.Container)var19); + java.awt.Component[] var27 = var9.getComponents(); + // The following exception was thrown during execution. + // This behavior will recorded for regression testing. + try { + java.awt.Point var28 = var9.getLocationOnScreen(); + fail("Expected exception of type java.awt.IllegalComponentStateException"); + } catch (java.awt.IllegalComponentStateException e) { + // Expected exception. + } + + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var27); + + } + + public void test177() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test177"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + boolean var6 = var0.isFocusOwner(); + java.awt.Dimension var7 = var0.getMinimumSize(); + boolean var8 = var0.requestFocusInWindow(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.setVisible(false); + var9.nextFocus(); + var9.requestFocus(); + boolean var15 = var9.isBackgroundSet(); + SpaceWar.SpacePanel var16 = new SpaceWar.SpacePanel(); + java.awt.Color var17 = var16.getBackground(); + var16.repaint(); + var16.setRequestFocusEnabled(false); + var16.reshape(100, 0, 100, 0); + SpaceWar.SpacePanel var26 = new SpaceWar.SpacePanel(); + float var27 = var26.getAlignmentX(); + var26.setVisible(false); + var26.setInheritsPopupMenu(false); + boolean var32 = var26.isDoubleBuffered(); + SpaceWar.SpacePanel var33 = new SpaceWar.SpacePanel(); + float var34 = var33.getAlignmentX(); + var33.setVisible(false); + var33.nextFocus(); + var33.reshape((-1), 1, (-1), 10); + var33.disable(); + java.awt.LayoutManager var44 = var33.getLayout(); + var26.setLayout(var44); + var9.add((java.awt.Component)var16, (java.lang.Object)var44); + var0.setLayout(var44); + SpaceWar.SpacePanel var48 = new SpaceWar.SpacePanel(); + float var49 = var48.getAlignmentX(); + boolean var50 = var48.hasFocus(); + SpaceWar.SpacePanel var51 = new SpaceWar.SpacePanel(); + float var52 = var51.getAlignmentX(); + var51.setVisible(false); + boolean var55 = var51.isDoubleBuffered(); + java.awt.dnd.DropTarget var56 = var51.getDropTarget(); + boolean var57 = var51.isFocusCycleRoot(); + var51.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", 100, 0); + SpaceWar.SpacePanel var62 = new SpaceWar.SpacePanel(); + float var63 = var62.getAlignmentX(); + var62.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var68 = var62.getUI(); + var51.add((java.awt.Component)var62, (java.lang.Object)(short)0); + java.awt.Insets var71 = var62.getInsets(); + java.awt.Insets var72 = var48.getInsets(var71); + java.awt.Insets var73 = var0.getInsets(var72); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var32 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var34 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var44); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var49 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var50 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var52 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var55 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var56); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var57 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var63 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var68); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var71); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var72); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var73); + + } + + public void test178() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test178"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + var0.setRequestFocusEnabled(false); + var0.reshape(100, 0, 100, 0); + var0.requestFocus(); + var0.firePropertyChange("hi!", '4', ' '); + java.awt.Point var15 = var0.getLocation(); + java.awt.Dimension var16 = var0.size(); + java.awt.Image var19 = var0.createImage((-1), (-1)); + java.awt.event.ComponentListener[] var20 = var0.getComponentListeners(); + var0.setName("PanelUI"); + java.awt.Dimension var23 = var0.preferredSize(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var23); + + } + + public void test179() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test179"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + var0.enable(false); + boolean var7 = var0.getFocusTraversalKeysEnabled(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + java.awt.Dimension var12 = var8.getPreferredSize(); + java.awt.Toolkit var13 = var8.getToolkit(); + boolean var14 = var8.isFocusable(); + javax.swing.KeyStroke[] var15 = var8.getRegisteredKeyStrokes(); + SpaceWar.SpacePanel var16 = new SpaceWar.SpacePanel(); + float var17 = var16.getAlignmentX(); + SpaceWar.SpacePanel var18 = new SpaceWar.SpacePanel(); + float var19 = var18.getAlignmentX(); + var18.setVisible(false); + java.awt.Dimension var22 = var18.getPreferredSize(); + boolean var23 = var18.getVerifyInputWhenFocusTarget(); + java.awt.Component var26 = var18.findComponentAt(10, 1); + var16.addKeyListener((java.awt.event.KeyListener)var18); + var18.repaint(100, (-1), (-1), 1); + boolean var33 = var8.isAncestorOf((java.awt.Component)var18); + var0.addKeyListener((java.awt.event.KeyListener)var18); + var18.hide(); + java.awt.event.MouseWheelListener[] var36 = var18.getMouseWheelListeners(); + var18.setLocation((-1), 500); + var18.disable(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var33 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var36); + + } + + public void test180() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test180"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + var0.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + javax.swing.plaf.PanelUI var5 = var0.getUI(); + java.awt.Color var6 = var0.getBackground(); + var0.removeAll(); + // The following exception was thrown during execution. + // This behavior will recorded for regression testing. + try { + boolean var9 = var0.areFocusTraversalKeysSet(400); + fail("Expected exception of type java.lang.IllegalArgumentException"); + } catch (java.lang.IllegalArgumentException e) { + // Expected exception. + } + + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + } + + public void test181() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test181"); + + + SpaceWar.Explosion var4 = new SpaceWar.Explosion(525.4439481651533d, 323.62099822147866d, 0, 10); + + } + + public void test182() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test182"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.removeNotify(); + // The following exception was thrown during execution. + // This behavior will recorded for regression testing. + try { + java.awt.Component var4 = var0.getComponent((-1)); + fail("Expected exception of type java.lang.ArrayIndexOutOfBoundsException"); + } catch (java.lang.ArrayIndexOutOfBoundsException e) { + // Expected exception. + } + + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + } + + public void test183() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test183"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + var0.setRequestFocusEnabled(false); + var0.setIgnoreRepaint(false); + java.lang.String var7 = var0.toString(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var14 = var8.getUI(); + java.awt.im.InputMethodRequests var15 = var8.getInputMethodRequests(); + SpaceWar.SpacePanel var16 = new SpaceWar.SpacePanel(); + float var17 = var16.getAlignmentX(); + var16.setVisible(false); + var16.nextFocus(); + var16.updateUI(); + var16.enableInputMethods(true); + var16.setSize((-1), 1); + SpaceWar.SpacePanel var27 = new SpaceWar.SpacePanel(); + var27.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var8.add((java.awt.Component)var16, (java.lang.Object)"SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + java.awt.ComponentOrientation var33 = var16.getComponentOrientation(); + var0.setComponentOrientation(var33); + java.awt.image.VolatileImage var37 = var0.createVolatileImage(0, 100); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var7 + "' != '" + "SpaceWar.SpacePanel[,0,0,0var7,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"+ "'", var7.equals("SpaceWar.SpacePanel[,0,0,0var7,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]")); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var33); + + // Regression assertion (captures the current behavior of the code) + assertNull(var37); + + } + + public void test184() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test184"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + java.awt.Dimension var4 = var0.getPreferredSize(); + java.awt.Toolkit var5 = var0.getToolkit(); + boolean var6 = var0.isFocusable(); + javax.swing.KeyStroke[] var7 = var0.getRegisteredKeyStrokes(); + var0.setFocusCycleRoot(false); + java.awt.image.BufferedImage var11 = var0.loadImg("SpaceWar.SpacePanel[,0,0,0x0,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + // The following exception was thrown during execution. + // This behavior will recorded for regression testing. + try { + java.awt.Component var13 = var0.getComponent(0); + fail("Expected exception of type java.lang.ArrayIndexOutOfBoundsException"); + } catch (java.lang.ArrayIndexOutOfBoundsException e) { + // Expected exception. + } + + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var4); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertNull(var11); + + } + + public void test185() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test185"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + java.awt.Dimension var4 = var0.getPreferredSize(); + java.awt.Toolkit var5 = var0.getToolkit(); + boolean var6 = var0.isFocusable(); + java.awt.Container var7 = var0.getFocusCycleRootAncestor(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + java.awt.Color var9 = var8.getBackground(); + var8.repaint(); + java.awt.im.InputMethodRequests var11 = var8.getInputMethodRequests(); + java.awt.GraphicsConfiguration var12 = var8.getGraphicsConfiguration(); + boolean var14 = var8.requestFocus(false); + // The following exception was thrown during execution. + // This behavior will recorded for regression testing. + try { + var0.setComponentZOrder((java.awt.Component)var8, 3); + fail("Expected exception of type java.lang.IllegalArgumentException"); + } catch (java.lang.IllegalArgumentException e) { + // Expected exception. + } + + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var4); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var9); + + // Regression assertion (captures the current behavior of the code) + assertNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == false); + + } + + public void test186() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test186"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + java.awt.event.MouseMotionListener[] var6 = var0.getMouseMotionListeners(); + java.awt.event.ComponentListener[] var7 = var0.getComponentListeners(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + var8.nextFocus(); + var8.repaint(1L); + SpaceWar.SpacePanel var15 = new SpaceWar.SpacePanel(); + float var16 = var15.getAlignmentX(); + var15.setVisible(false); + boolean var19 = var15.isDoubleBuffered(); + var15.list(); + SpaceWar.SpacePanel var21 = new SpaceWar.SpacePanel(); + float var22 = var21.getAlignmentX(); + var21.setVisible(false); + boolean var25 = var21.isDoubleBuffered(); + java.awt.dnd.DropTarget var26 = var21.getDropTarget(); + var21.show(false); + java.awt.Rectangle var29 = var21.getVisibleRect(); + java.awt.Rectangle var30 = var15.getBounds(var29); + var8.setBounds(var30); + var0.paintImmediately(var30); + java.awt.Point var33 = var0.getMousePosition(); + java.awt.image.BufferedImage var35 = var0.loadImg("SpaceWar.SpacePanel[,-1,1,-1x10,invalid,hidden,disabled,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + var0.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", 3, 100); + var0.repaint((-1L), 10, 2, 100, 25); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var22 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var29); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var30); + + // Regression assertion (captures the current behavior of the code) + assertNull(var33); + + // Regression assertion (captures the current behavior of the code) + assertNull(var35); + + } + + public void test187() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test187"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + var0.list(); + float var6 = var0.getAlignmentY(); + boolean var7 = var0.isOpaque(); + var0.resetKeyboardActions(); + var0.updateUI(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == true); + + } + + public void test188() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test188"); + + + SpaceWar.Player var0 = new SpaceWar.Player(); + int var1 = var0.getR(); + boolean var2 = var0.isDead(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 25); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var2 == false); + + } + + public void test189() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test189"); + + + SpaceWar.Player var0 = new SpaceWar.Player(); + boolean var1 = var0.isRecovering(); + var0.loseLife(); + int var3 = var0.getR(); + var0.loseLife(); + var0.setDown(true); + int var7 = var0.getRequiredPower(); + var0.setUp(true); + int var10 = var0.getPower(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == 25); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 1); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0); + + } + + public void test190() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test190"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + java.awt.Dimension var4 = var0.getPreferredSize(); + java.awt.Toolkit var5 = var0.getToolkit(); + boolean var6 = var0.isFocusable(); + javax.swing.KeyStroke[] var7 = var0.getRegisteredKeyStrokes(); + java.awt.Component var10 = var0.getComponentAt(100, 100); + java.lang.Object var11 = var0.getTreeLock(); + boolean var14 = var0.inside(400, 0); + boolean var15 = var0.isOpaque(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var4); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == true); + + } + + public void test191() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test191"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var6 = var0.getMouseListeners(); + int var7 = var0.getDebugGraphicsOptions(); + var0.removeNotify(); + var0.setLocation(3, 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0); + + } + + public void test192() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test192"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var6 = var0.getUI(); + java.awt.im.InputMethodRequests var7 = var0.getInputMethodRequests(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + var8.nextFocus(); + var8.updateUI(); + var8.enableInputMethods(true); + var8.setSize((-1), 1); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + var19.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var0.add((java.awt.Component)var8, (java.lang.Object)"SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + SpaceWar.SpacePanel var25 = new SpaceWar.SpacePanel(); + float var26 = var25.getAlignmentX(); + var25.setVisible(false); + java.awt.Dimension var29 = var25.getPreferredSize(); + java.awt.Toolkit var30 = var25.getToolkit(); + java.awt.Toolkit var31 = var25.getToolkit(); + java.awt.Component var32 = var8.add((java.awt.Component)var25); + var8.setDebugGraphicsOptions(0); + var8.setVerifyInputWhenFocusTarget(false); + var8.nextFocus(); + SpaceWar.SpacePanel var38 = new SpaceWar.SpacePanel(); + float var39 = var38.getAlignmentX(); + var38.setVisible(false); + boolean var42 = var38.isDoubleBuffered(); + java.awt.dnd.DropTarget var43 = var38.getDropTarget(); + var38.show(false); + java.awt.Rectangle var46 = var38.getVisibleRect(); + java.awt.Toolkit var47 = var38.getToolkit(); + SpaceWar.SpacePanel var48 = new SpaceWar.SpacePanel(); + float var49 = var48.getAlignmentX(); + var48.setVisible(false); + boolean var52 = var48.isDoubleBuffered(); + var48.list(); + SpaceWar.SpacePanel var54 = new SpaceWar.SpacePanel(); + float var55 = var54.getAlignmentX(); + var54.setVisible(false); + boolean var58 = var54.isDoubleBuffered(); + java.awt.dnd.DropTarget var59 = var54.getDropTarget(); + var54.show(false); + java.awt.Rectangle var62 = var54.getVisibleRect(); + java.awt.Rectangle var63 = var48.getBounds(var62); + javax.swing.JToolTip var64 = var48.createToolTip(); + var48.firePropertyChange("", false, false); + var48.validate(); + SpaceWar.SpacePanel var70 = new SpaceWar.SpacePanel(); + float var71 = var70.getAlignmentX(); + var70.setVisible(false); + var70.nextFocus(); + var70.updateUI(); + var70.enableInputMethods(true); + java.lang.String var78 = var70.toString(); + var38.putClientProperty((java.lang.Object)var48, (java.lang.Object)var70); + java.awt.Dimension var80 = var48.size(); + var8.removeKeyListener((java.awt.event.KeyListener)var48); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var29); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var30); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var31); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var32); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var39 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var42 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var43); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var46); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var47); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var49 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var52 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var55 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var58 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var59); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var62); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var63); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var64); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var71 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var78 + "' != '" + "SpaceWar.SpacePanel[,0,0,0var78,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"+ "'", var78.equals("SpaceWar.SpacePanel[,0,0,0var78,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]")); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var80); + + } + + public void test193() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test193"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + var0.list(); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + float var7 = var6.getAlignmentX(); + var6.setVisible(false); + boolean var10 = var6.isDoubleBuffered(); + java.awt.dnd.DropTarget var11 = var6.getDropTarget(); + var6.show(false); + java.awt.Rectangle var14 = var6.getVisibleRect(); + java.awt.Rectangle var15 = var0.getBounds(var14); + javax.swing.JToolTip var16 = var0.createToolTip(); + var0.firePropertyChange("", false, false); + var0.revalidate(); + int var22 = var0.getComponentCount(); + var0.setFocusTraversalKeysEnabled(true); + boolean var25 = var0.isPaintingForPrint(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var22 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == false); + + } + + public void test194() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test194"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.updateUI(); + var0.enableInputMethods(true); + int var8 = var0.getY(); + boolean var9 = var0.isMinimumSizeSet(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == false); + + } + + public void test195() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test195"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + var0.list(); + float var6 = var0.getAlignmentY(); + java.awt.event.ComponentListener[] var7 = var0.getComponentListeners(); + java.awt.Component var8 = var0.getNextFocusableComponent(); + boolean var9 = var0.isManagingFocus(); + javax.swing.border.Border var10 = var0.getBorder(); + java.beans.VetoableChangeListener[] var11 = var0.getVetoableChangeListeners(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + } + + public void test196() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test196"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + SpaceWar.SpacePanel var2 = new SpaceWar.SpacePanel(); + float var3 = var2.getAlignmentX(); + var2.setVisible(false); + java.awt.Dimension var6 = var2.getPreferredSize(); + boolean var7 = var2.getVerifyInputWhenFocusTarget(); + java.awt.Component var10 = var2.findComponentAt(10, 1); + var0.addKeyListener((java.awt.event.KeyListener)var2); + var2.repaint(100, (-1), (-1), 1); + java.awt.image.ColorModel var17 = var2.getColorModel(); + boolean var18 = var2.isFocusTraversalPolicyProvider(); + float var19 = var2.getAlignmentX(); + SpaceWar.SpacePanel var21 = new SpaceWar.SpacePanel(); + float var22 = var21.getAlignmentX(); + var21.setVisible(false); + var21.nextFocus(); + var21.repaint(1L); + SpaceWar.SpacePanel var28 = new SpaceWar.SpacePanel(); + float var29 = var28.getAlignmentX(); + var28.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var34 = new SpaceWar.SpacePanel(); + float var35 = var34.getAlignmentX(); + var34.setVisible(false); + java.awt.Dimension var38 = var34.getPreferredSize(); + var28.setMaximumSize(var38); + var21.setPreferredSize(var38); + SpaceWar.SpacePanel var42 = new SpaceWar.SpacePanel(); + float var43 = var42.getAlignmentX(); + var42.setVisible(false); + SpaceWar.SpacePanel var46 = new SpaceWar.SpacePanel(); + java.awt.Color var47 = var46.getBackground(); + var42.setForeground(var47); + javax.swing.InputMap var49 = var42.getInputMap(); + var21.setInputMap(1, var49); + // The following exception was thrown during execution. + // This behavior will recorded for regression testing. + try { + var2.setInputMap(400, var49); + fail("Expected exception of type java.lang.IllegalArgumentException"); + } catch (java.lang.IllegalArgumentException e) { + // Expected exception. + } + + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var22 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var29 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var35 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var38); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var43 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var47); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var49); + + } + + public void test197() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test197"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + var0.setRequestFocusEnabled(false); + var0.setIgnoreRepaint(false); + java.lang.String var7 = var0.toString(); + var0.repaint(1L, 400, 25, (-1), 25); + SpaceWar.SpacePanel var14 = new SpaceWar.SpacePanel(); + float var15 = var14.getAlignmentX(); + var14.setVisible(false); + boolean var18 = var14.isDoubleBuffered(); + java.awt.dnd.DropTarget var19 = var14.getDropTarget(); + // The following exception was thrown during execution. + // This behavior will recorded for regression testing. + try { + java.awt.Component var21 = var0.add((java.awt.Component)var14, 500); + fail("Expected exception of type java.lang.IllegalArgumentException"); + } catch (java.lang.IllegalArgumentException e) { + // Expected exception. + } + + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var7 + "' != '" + "SpaceWar.SpacePanel[,0,0,0var7,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"+ "'", var7.equals("SpaceWar.SpacePanel[,0,0,0var7,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]")); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var19); + + } + + public void test198() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test198"); + + + SpaceWar.Text var4 = new SpaceWar.Text(323.62099822147866d, 506.9915098063617d, 10L, "hi!"); + boolean var5 = var4.update(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == false); + + } + + public void test199() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test199"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var1 = new SpaceWar.SpacePanel(); + java.awt.Color var2 = var1.getBackground(); + SpaceWar.SpacePanel var3 = new SpaceWar.SpacePanel(); + float var4 = var3.getAlignmentX(); + var3.setVisible(false); + var3.nextFocus(); + var3.updateUI(); + var3.enableInputMethods(true); + var0.add((java.awt.Component)var1, (java.lang.Object)true); + java.awt.Image var14 = var1.createImage(1, (-1)); + java.awt.event.MouseListener[] var15 = var1.getMouseListeners(); + java.awt.Color var16 = var1.getBackground(); + boolean var17 = var1.getIgnoreRepaint(); + var1.enable(); + SpaceWar.SpacePanel var20 = new SpaceWar.SpacePanel(); + java.awt.Color var21 = var20.getBackground(); + var20.repaint(); + java.awt.im.InputMethodRequests var23 = var20.getInputMethodRequests(); + var20.setDoubleBuffered(true); + var20.setInheritsPopupMenu(false); + javax.swing.plaf.PanelUI var28 = var20.getUI(); + java.util.Set var30 = var20.getFocusTraversalKeys(3); + // The following exception was thrown during execution. + // This behavior will recorded for regression testing. + try { + var1.setFocusTraversalKeys(100, var30); + fail("Expected exception of type java.lang.IllegalArgumentException"); + } catch (java.lang.IllegalArgumentException e) { + // Expected exception. + } + + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var2); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var21); + + // Regression assertion (captures the current behavior of the code) + assertNull(var23); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var28); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var30); + + } + + public void test200() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test200"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.Graphics var5 = var0.getGraphics(); + boolean var6 = var0.isMinimumSizeSet(); + var0.grabFocus(); + var0.setRequestFocusEnabled(true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == false); + + } + + public void test201() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test201"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + var0.enable(false); + boolean var7 = var0.getFocusTraversalKeysEnabled(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + java.awt.Dimension var12 = var8.getPreferredSize(); + java.awt.Toolkit var13 = var8.getToolkit(); + boolean var14 = var8.isFocusable(); + javax.swing.KeyStroke[] var15 = var8.getRegisteredKeyStrokes(); + SpaceWar.SpacePanel var16 = new SpaceWar.SpacePanel(); + float var17 = var16.getAlignmentX(); + SpaceWar.SpacePanel var18 = new SpaceWar.SpacePanel(); + float var19 = var18.getAlignmentX(); + var18.setVisible(false); + java.awt.Dimension var22 = var18.getPreferredSize(); + boolean var23 = var18.getVerifyInputWhenFocusTarget(); + java.awt.Component var26 = var18.findComponentAt(10, 1); + var16.addKeyListener((java.awt.event.KeyListener)var18); + var18.repaint(100, (-1), (-1), 1); + boolean var33 = var8.isAncestorOf((java.awt.Component)var18); + var0.addKeyListener((java.awt.event.KeyListener)var18); + SpaceWar.SpacePanel var35 = new SpaceWar.SpacePanel(); + float var36 = var35.getAlignmentX(); + var35.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var41 = var35.getUI(); + java.awt.im.InputMethodRequests var42 = var35.getInputMethodRequests(); + SpaceWar.SpacePanel var43 = new SpaceWar.SpacePanel(); + float var44 = var43.getAlignmentX(); + var43.setVisible(false); + var43.nextFocus(); + var43.updateUI(); + var43.enableInputMethods(true); + var43.setSize((-1), 1); + SpaceWar.SpacePanel var54 = new SpaceWar.SpacePanel(); + var54.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var35.add((java.awt.Component)var43, (java.lang.Object)"SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + SpaceWar.SpacePanel var60 = new SpaceWar.SpacePanel(); + float var61 = var60.getAlignmentX(); + var60.setVisible(false); + var60.setInheritsPopupMenu(false); + boolean var66 = var60.isDoubleBuffered(); + boolean var67 = var60.isMinimumSizeSet(); + SpaceWar.SpacePanel var68 = new SpaceWar.SpacePanel(); + float var69 = var68.getAlignmentX(); + var68.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var74 = new SpaceWar.SpacePanel(); + float var75 = var74.getAlignmentX(); + var74.setVisible(false); + java.awt.Dimension var78 = var74.getPreferredSize(); + var68.setMaximumSize(var78); + boolean var80 = var68.getVerifyInputWhenFocusTarget(); + javax.accessibility.AccessibleContext var81 = var68.getAccessibleContext(); + boolean var82 = var68.isDoubleBuffered(); + java.awt.Rectangle var83 = var68.getVisibleRect(); + var60.setBounds(var83); + java.awt.Rectangle var85 = var35.getBounds(var83); + var18.setBounds(var85); + javax.swing.event.AncestorListener[] var87 = var18.getAncestorListeners(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var33 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var36 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var41); + + // Regression assertion (captures the current behavior of the code) + assertNull(var42); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var44 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var61 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var66 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var67 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var69 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var75 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var78); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var80 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var81); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var82 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var83); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var85); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var87); + + } + + public void test202() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test202"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + var0.list(); + float var6 = var0.getAlignmentY(); + java.awt.Insets var7 = var0.getInsets(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var14 = var8.getMouseListeners(); + var8.firePropertyChange("", 0.5f, 100.0f); + var8.enable(false); + SpaceWar.SpacePanel var21 = new SpaceWar.SpacePanel(); + float var22 = var21.getAlignmentX(); + SpaceWar.SpacePanel var23 = new SpaceWar.SpacePanel(); + float var24 = var23.getAlignmentX(); + var23.setVisible(false); + java.awt.Dimension var27 = var23.getPreferredSize(); + boolean var28 = var23.getVerifyInputWhenFocusTarget(); + java.awt.Component var31 = var23.findComponentAt(10, 1); + var21.addKeyListener((java.awt.event.KeyListener)var23); + java.awt.Cursor var33 = var21.getCursor(); + java.awt.Dimension var34 = var21.getMinimumSize(); + var8.setSize(var34); + java.awt.Dimension var36 = var0.getSize(var34); + java.awt.event.HierarchyBoundsListener[] var37 = var0.getHierarchyBoundsListeners(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var22 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var24 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var27); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var28 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var31); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var33); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var34); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var36); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var37); + + } + + public void test203() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test203"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + java.awt.Dimension var4 = var0.getPreferredSize(); + boolean var5 = var0.getVerifyInputWhenFocusTarget(); + java.awt.event.MouseWheelListener[] var6 = var0.getMouseWheelListeners(); + java.awt.event.MouseWheelListener[] var7 = var0.getMouseWheelListeners(); + boolean var8 = var0.isShowing(); + var0.nextFocus(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var4); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + } + + public void test204() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test204"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + java.awt.Dimension var4 = var0.getPreferredSize(); + boolean var5 = var0.getVerifyInputWhenFocusTarget(); + java.awt.Component var8 = var0.findComponentAt(10, 1); + boolean var9 = var0.requestDefaultFocus(); + var0.setVerifyInputWhenFocusTarget(false); + boolean var12 = var0.isPaintingForPrint(); + boolean var13 = var0.getIgnoreRepaint(); + var0.setEnabled(false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var4); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == false); + + } + + public void test205() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test205"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + var0.setRequestFocusEnabled(false); + var0.reshape(100, 0, 100, 0); + javax.swing.event.AncestorListener[] var10 = var0.getAncestorListeners(); + var0.grabFocus(); + java.awt.image.BufferedImage var13 = var0.loadImg("SpaceWar.SpacePanel[,0,0,0x0,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertNull(var13); + + } + + public void test206() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test206"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var1 = new SpaceWar.SpacePanel(); + java.awt.Color var2 = var1.getBackground(); + SpaceWar.SpacePanel var3 = new SpaceWar.SpacePanel(); + float var4 = var3.getAlignmentX(); + var3.setVisible(false); + var3.nextFocus(); + var3.updateUI(); + var3.enableInputMethods(true); + var0.add((java.awt.Component)var1, (java.lang.Object)true); + java.awt.Dimension var12 = var1.getPreferredSize(); + var1.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", (-1.0f), 100.0f); + SpaceWar.SpacePanel var17 = new SpaceWar.SpacePanel(); + float var18 = var17.getAlignmentX(); + var17.setVisible(false); + boolean var21 = var17.isDoubleBuffered(); + SpaceWar.SpacePanel var22 = new SpaceWar.SpacePanel(); + java.awt.Color var23 = var22.getBackground(); + var22.repaint(); + java.lang.Object var25 = var17.getClientProperty((java.lang.Object)var22); + var1.remove((java.awt.Component)var17); + SpaceWar.SpacePanel var27 = new SpaceWar.SpacePanel(); + float var28 = var27.getAlignmentX(); + var27.firePropertyChange("", (-1), 1); + java.awt.event.MouseMotionListener[] var33 = var27.getMouseMotionListeners(); + java.awt.Dimension var34 = var27.getMinimumSize(); + var1.setMaximumSize(var34); + SpaceWar.SpacePanel var36 = new SpaceWar.SpacePanel(); + java.awt.Color var37 = var36.getBackground(); + var36.repaint(); + java.awt.im.InputMethodRequests var39 = var36.getInputMethodRequests(); + var36.setDoubleBuffered(true); + SpaceWar.SpacePanel var42 = new SpaceWar.SpacePanel(); + float var43 = var42.getAlignmentX(); + boolean var44 = var42.hasFocus(); + java.awt.Insets var45 = var42.getInsets(); + java.awt.Insets var46 = var36.getInsets(var45); + java.awt.Insets var47 = var1.getInsets(var45); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var2); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var23); + + // Regression assertion (captures the current behavior of the code) + assertNull(var25); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var28 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var33); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var34); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var37); + + // Regression assertion (captures the current behavior of the code) + assertNull(var39); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var43 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var44 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var45); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var46); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var47); + + } + + public void test207() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test207"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + java.awt.im.InputMethodRequests var3 = var0.getInputMethodRequests(); + int var4 = var0.countComponents(); + java.awt.event.ComponentListener[] var5 = var0.getComponentListeners(); + var0.transferFocusBackward(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + boolean var12 = var8.isDoubleBuffered(); + var8.enable(false); + SpaceWar.SpacePanel var15 = new SpaceWar.SpacePanel(); + float var16 = var15.getAlignmentX(); + boolean var17 = var15.hasFocus(); + java.awt.Insets var18 = var15.getInsets(); + java.awt.Rectangle var19 = var15.bounds(); + var8.repaint(var19); + java.awt.Component var21 = var0.add("", (java.awt.Component)var8); + var0.hide(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var21); + + } + + public void test208() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test208"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + java.awt.im.InputMethodRequests var3 = var0.getInputMethodRequests(); + var0.list(); + int var5 = var0.getHeight(); + var0.disable(); + boolean var7 = var0.isDisplayable(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == false); + + } + + public void test209() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test209"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + java.awt.im.InputMethodRequests var3 = var0.getInputMethodRequests(); + int var4 = var0.countComponents(); + java.awt.event.ComponentListener[] var5 = var0.getComponentListeners(); + var0.removeNotify(); + javax.swing.InputMap var7 = var0.getInputMap(); + int var8 = var0.getDebugGraphicsOptions(); + java.awt.Graphics var9 = var0.getGraphics(); + var0.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", (short)(-1), (short)100); + boolean var14 = var0.isEnabled(); + boolean var15 = var0.isDoubleBuffered(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var9); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == true); + + } + + public void test210() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test210"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var1 = new SpaceWar.SpacePanel(); + java.awt.Color var2 = var1.getBackground(); + SpaceWar.SpacePanel var3 = new SpaceWar.SpacePanel(); + float var4 = var3.getAlignmentX(); + var3.setVisible(false); + var3.nextFocus(); + var3.updateUI(); + var3.enableInputMethods(true); + var0.add((java.awt.Component)var1, (java.lang.Object)true); + java.awt.Image var14 = var1.createImage(1, (-1)); + java.awt.event.MouseListener[] var15 = var1.getMouseListeners(); + var1.firePropertyChange("SpaceWar.SpacePanel[,-1,1,-1x10,invalid,hidden,disabled,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", 100.0d, 1.0d); + var1.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", 1.0f, 1.0f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var2); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + } + + public void test211() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test211"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.reshape((-1), 1, (-1), 10); + var0.disable(); + java.awt.Component var13 = var0.findComponentAt(0, (-1)); + SpaceWar.SpacePanel var14 = new SpaceWar.SpacePanel(); + var14.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + javax.swing.plaf.PanelUI var19 = var14.getUI(); + SpaceWar.SpacePanel var20 = new SpaceWar.SpacePanel(); + float var21 = var20.getAlignmentX(); + var20.setVisible(false); + var20.nextFocus(); + var20.repaint(1L); + SpaceWar.SpacePanel var27 = new SpaceWar.SpacePanel(); + float var28 = var27.getAlignmentX(); + var27.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var33 = new SpaceWar.SpacePanel(); + float var34 = var33.getAlignmentX(); + var33.setVisible(false); + java.awt.Dimension var37 = var33.getPreferredSize(); + var27.setMaximumSize(var37); + var20.setPreferredSize(var37); + var14.setMaximumSize(var37); + var0.setSize(var37); + var0.show(); + java.beans.VetoableChangeListener[] var43 = var0.getVetoableChangeListeners(); + java.awt.event.ComponentListener[] var44 = var0.getComponentListeners(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var28 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var34 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var37); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var43); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var44); + + } + + public void test212() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test212"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var1 = new SpaceWar.SpacePanel(); + java.awt.Color var2 = var1.getBackground(); + SpaceWar.SpacePanel var3 = new SpaceWar.SpacePanel(); + float var4 = var3.getAlignmentX(); + var3.setVisible(false); + var3.nextFocus(); + var3.updateUI(); + var3.enableInputMethods(true); + var0.add((java.awt.Component)var1, (java.lang.Object)true); + boolean var12 = var0.isMinimumSizeSet(); + java.awt.event.HierarchyListener[] var13 = var0.getHierarchyListeners(); + var0.repaint(0L); + java.awt.Toolkit var16 = var0.getToolkit(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var2); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + } + + public void test213() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test213"); + + + SpaceWar.Player var0 = new SpaceWar.Player(); + int var1 = var0.getPower(); + var0.setLeft(true); + var0.increasePower(0); + int var6 = var0.getR(); + int var7 = var0.getLives(); + int var8 = var0.getPowerLevel(); + var0.setScore(1); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == 25); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 3); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 0); + + } + + public void test214() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test214"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + java.awt.im.InputMethodRequests var3 = var0.getInputMethodRequests(); + var0.setDoubleBuffered(true); + var0.setInheritsPopupMenu(false); + boolean var8 = var0.isFocusTraversalPolicySet(); + var0.transferFocusUpCycle(); + java.awt.image.BufferedImage var11 = var0.loadImg("SpaceWar.SpacePanel[,0,0,0x0,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + boolean var12 = var0.isFocusOwner(); + java.awt.event.ComponentListener[] var13 = var0.getComponentListeners(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var13); + + } + + public void test215() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test215"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + java.awt.im.InputMethodRequests var3 = var0.getInputMethodRequests(); + int var4 = var0.countComponents(); + java.awt.event.ComponentListener[] var5 = var0.getComponentListeners(); + var0.transferFocusBackward(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + boolean var12 = var8.isDoubleBuffered(); + var8.enable(false); + SpaceWar.SpacePanel var15 = new SpaceWar.SpacePanel(); + float var16 = var15.getAlignmentX(); + boolean var17 = var15.hasFocus(); + java.awt.Insets var18 = var15.getInsets(); + java.awt.Rectangle var19 = var15.bounds(); + var8.repaint(var19); + java.awt.Component var21 = var0.add("", (java.awt.Component)var8); + // The following exception was thrown during execution. + // This behavior will recorded for regression testing. + try { + boolean var23 = var8.areFocusTraversalKeysSet(500); + fail("Expected exception of type java.lang.IllegalArgumentException"); + } catch (java.lang.IllegalArgumentException e) { + // Expected exception. + } + + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var21); + + } + + public void test216() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test216"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + var0.setRequestFocusEnabled(false); + var0.reshape(100, 0, 100, 0); + var0.requestFocus(); + var0.firePropertyChange("hi!", '4', ' '); + java.awt.Point var15 = var0.getLocation(); + java.awt.Dimension var16 = var0.size(); + java.awt.Image var19 = var0.createImage((-1), (-1)); + java.awt.event.ComponentListener[] var20 = var0.getComponentListeners(); + var0.setName("PanelUI"); + java.awt.image.VolatileImage var25 = var0.createVolatileImage(500, 100); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertNull(var25); + + } + + public void test217() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test217"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + SpaceWar.SpacePanel var4 = new SpaceWar.SpacePanel(); + java.awt.Color var5 = var4.getBackground(); + var0.setForeground(var5); + SpaceWar.SpacePanel var7 = new SpaceWar.SpacePanel(); + float var8 = var7.getAlignmentX(); + var7.setVisible(false); + boolean var11 = var7.isDoubleBuffered(); + java.awt.dnd.DropTarget var12 = var7.getDropTarget(); + var7.show(false); + java.awt.Rectangle var15 = var7.getVisibleRect(); + var0.repaint(var15); + java.awt.FocusTraversalPolicy var17 = var0.getFocusTraversalPolicy(); + SpaceWar.SpacePanel var18 = new SpaceWar.SpacePanel(); + float var19 = var18.getAlignmentX(); + var18.firePropertyChange("", (-1), 1); + boolean var24 = var18.isFocusOwner(); + SpaceWar.SpacePanel var26 = new SpaceWar.SpacePanel(); + float var27 = var26.getAlignmentX(); + var26.setVisible(false); + java.awt.Dimension var30 = var26.getPreferredSize(); + java.awt.Toolkit var31 = var26.getToolkit(); + SpaceWar.SpacePanel var32 = new SpaceWar.SpacePanel(); + var32.setName(""); + int var35 = var32.getX(); + SpaceWar.SpacePanel var36 = new SpaceWar.SpacePanel(); + float var37 = var36.getAlignmentX(); + var36.setVisible(false); + var36.nextFocus(); + SpaceWar.SpacePanel var41 = new SpaceWar.SpacePanel(); + float var42 = var41.getAlignmentX(); + var41.setVisible(false); + SpaceWar.SpacePanel var45 = new SpaceWar.SpacePanel(); + java.awt.Color var46 = var45.getBackground(); + var41.setForeground(var46); + var36.setBackground(var46); + var32.setBackground(var46); + var26.setForeground(var46); + var18.putClientProperty((java.lang.Object)(byte)100, (java.lang.Object)var46); + var0.setBackground(var46); + SpaceWar.SpacePanel var53 = new SpaceWar.SpacePanel(); + float var54 = var53.getAlignmentX(); + var53.setVisible(false); + boolean var57 = var53.isDoubleBuffered(); + java.awt.dnd.DropTarget var58 = var53.getDropTarget(); + var53.show(false); + boolean var61 = var53.isPaintingForPrint(); + SpaceWar.SpacePanel var62 = new SpaceWar.SpacePanel(); + float var63 = var62.getAlignmentX(); + SpaceWar.SpacePanel var64 = new SpaceWar.SpacePanel(); + float var65 = var64.getAlignmentX(); + var64.setVisible(false); + java.awt.Dimension var68 = var64.getPreferredSize(); + boolean var69 = var64.getVerifyInputWhenFocusTarget(); + java.awt.Component var72 = var64.findComponentAt(10, 1); + var62.addKeyListener((java.awt.event.KeyListener)var64); + java.awt.Dimension var74 = var64.getMinimumSize(); + var53.setMinimumSize(var74); + java.awt.Dimension var76 = var0.getSize(var74); + boolean var77 = var0.isValid(); + int var78 = var0.getWidth(); + java.awt.event.HierarchyListener[] var79 = var0.getHierarchyListeners(); + java.awt.FocusTraversalPolicy var80 = var0.getFocusTraversalPolicy(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var24 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var30); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var31); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var35 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var42 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var46); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var54 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var57 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var58); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var61 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var63 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var65 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var68); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var69 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var72); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var74); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var76); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var77 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var78 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var79); + + // Regression assertion (captures the current behavior of the code) + assertNull(var80); + + } + + public void test218() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test218"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var1 = new SpaceWar.SpacePanel(); + java.awt.Color var2 = var1.getBackground(); + SpaceWar.SpacePanel var3 = new SpaceWar.SpacePanel(); + float var4 = var3.getAlignmentX(); + var3.setVisible(false); + var3.nextFocus(); + var3.updateUI(); + var3.enableInputMethods(true); + var0.add((java.awt.Component)var1, (java.lang.Object)true); + boolean var13 = var1.areFocusTraversalKeysSet(0); + SpaceWar.SpacePanel var14 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var15 = new SpaceWar.SpacePanel(); + java.awt.Color var16 = var15.getBackground(); + SpaceWar.SpacePanel var17 = new SpaceWar.SpacePanel(); + float var18 = var17.getAlignmentX(); + var17.setVisible(false); + var17.nextFocus(); + var17.updateUI(); + var17.enableInputMethods(true); + var14.add((java.awt.Component)var15, (java.lang.Object)true); + boolean var26 = var14.isMinimumSizeSet(); + java.awt.event.HierarchyListener[] var27 = var14.getHierarchyListeners(); + SpaceWar.SpacePanel var28 = new SpaceWar.SpacePanel(); + float var29 = var28.getAlignmentX(); + var28.setVisible(false); + SpaceWar.SpacePanel var32 = new SpaceWar.SpacePanel(); + java.awt.Color var33 = var32.getBackground(); + var28.setForeground(var33); + SpaceWar.SpacePanel var35 = new SpaceWar.SpacePanel(); + float var36 = var35.getAlignmentX(); + var35.setVisible(false); + boolean var39 = var35.isDoubleBuffered(); + java.awt.dnd.DropTarget var40 = var35.getDropTarget(); + var35.show(false); + java.awt.Rectangle var43 = var35.getVisibleRect(); + var28.repaint(var43); + java.awt.FocusTraversalPolicy var45 = var28.getFocusTraversalPolicy(); + java.awt.im.InputMethodRequests var46 = var28.getInputMethodRequests(); + var28.layout(); + boolean var48 = var28.isFocusTraversalPolicyProvider(); + java.lang.Object var49 = var14.getClientProperty((java.lang.Object)var48); + boolean var50 = var14.isFocusTraversable(); + var1.remove((java.awt.Component)var14); + SpaceWar.SpacePanel var52 = new SpaceWar.SpacePanel(); + java.awt.Color var53 = var52.getBackground(); + var52.repaint(); + var52.setRequestFocusEnabled(false); + var52.reshape(100, 0, 100, 0); + var52.requestFocus(); + java.awt.Rectangle var63 = var52.getVisibleRect(); + var14.repaint(var63); + SpaceWar.SpacePanel var66 = new SpaceWar.SpacePanel(); + float var67 = var66.getAlignmentX(); + var66.setVisible(false); + var66.nextFocus(); + var66.reshape((-1), 1, (-1), 10); + java.util.Set var77 = var66.getFocusTraversalKeys(3); + // The following exception was thrown during execution. + // This behavior will recorded for regression testing. + try { + var14.setFocusTraversalKeys(25, var77); + fail("Expected exception of type java.lang.IllegalArgumentException"); + } catch (java.lang.IllegalArgumentException e) { + // Expected exception. + } + + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var2); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var27); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var29 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var33); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var36 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var39 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var40); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var43); + + // Regression assertion (captures the current behavior of the code) + assertNull(var45); + + // Regression assertion (captures the current behavior of the code) + assertNull(var46); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var48 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var49); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var50 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var53); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var63); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var67 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var77); + + } + + public void test219() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test219"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + java.awt.im.InputMethodRequests var3 = var0.getInputMethodRequests(); + int var4 = var0.countComponents(); + java.awt.event.ComponentListener[] var5 = var0.getComponentListeners(); + var0.removeNotify(); + javax.swing.InputMap var7 = var0.getInputMap(); + java.awt.Cursor var8 = var0.getCursor(); + var0.doLayout(); + SpaceWar.SpacePanel var10 = new SpaceWar.SpacePanel(); + float var11 = var10.getAlignmentX(); + var10.firePropertyChange("", (-1), 1); + boolean var16 = var10.isFocusOwner(); + SpaceWar.SpacePanel var18 = new SpaceWar.SpacePanel(); + float var19 = var18.getAlignmentX(); + var18.setVisible(false); + java.awt.Dimension var22 = var18.getPreferredSize(); + java.awt.Toolkit var23 = var18.getToolkit(); + SpaceWar.SpacePanel var24 = new SpaceWar.SpacePanel(); + var24.setName(""); + int var27 = var24.getX(); + SpaceWar.SpacePanel var28 = new SpaceWar.SpacePanel(); + float var29 = var28.getAlignmentX(); + var28.setVisible(false); + var28.nextFocus(); + SpaceWar.SpacePanel var33 = new SpaceWar.SpacePanel(); + float var34 = var33.getAlignmentX(); + var33.setVisible(false); + SpaceWar.SpacePanel var37 = new SpaceWar.SpacePanel(); + java.awt.Color var38 = var37.getBackground(); + var33.setForeground(var38); + var28.setBackground(var38); + var24.setBackground(var38); + var18.setForeground(var38); + var10.putClientProperty((java.lang.Object)(byte)100, (java.lang.Object)var38); + java.awt.Dimension var44 = var10.size(); + var0.resize(var44); + javax.swing.TransferHandler var46 = var0.getTransferHandler(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var23); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var29 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var34 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var38); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var44); + + // Regression assertion (captures the current behavior of the code) + assertNull(var46); + + } + + public void test220() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test220"); + + + SpaceWar.Player var0 = new SpaceWar.Player(); + int var1 = var0.getR(); + var0.setUp(false); + var0.update(); + java.awt.image.BufferedImage var6 = var0.loadImg("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + var0.increasePower(499); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 25); + + // Regression assertion (captures the current behavior of the code) + assertNull(var6); + + } + + public void test221() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test221"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + var0.show(false); + boolean var8 = var0.isPaintingForPrint(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var15 = var9.getMouseListeners(); + int var16 = var9.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var17 = var9.getInputMethodRequests(); + var0.addKeyListener((java.awt.event.KeyListener)var9); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + float var20 = var19.getAlignmentX(); + var19.setVisible(false); + boolean var23 = var19.isDoubleBuffered(); + var19.list(); + float var25 = var19.getAlignmentY(); + boolean var26 = var9.isFocusCycleRoot((java.awt.Container)var19); + boolean var27 = var19.isEnabled(); + java.awt.Dimension var28 = var19.getMaximumSize(); + var19.setFocusCycleRoot(false); + java.awt.event.ComponentListener[] var31 = var19.getComponentListeners(); + var19.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", (byte)10, (byte)1); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var28); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var31); + + } + + public void test222() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test222"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var6 = var0.getUI(); + java.awt.im.InputMethodRequests var7 = var0.getInputMethodRequests(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + var8.nextFocus(); + var8.updateUI(); + var8.enableInputMethods(true); + var8.setSize((-1), 1); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + var19.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var0.add((java.awt.Component)var8, (java.lang.Object)"SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + java.awt.ComponentOrientation var25 = var8.getComponentOrientation(); + java.beans.VetoableChangeListener[] var26 = var8.getVetoableChangeListeners(); + int var27 = var8.getHeight(); + var8.enable(true); + int var30 = var8.getY(); + java.awt.Dimension var31 = var8.getMinimumSize(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var25); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == 1); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var30 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var31); + + } + + public void test223() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test223"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + var0.enable(false); + boolean var7 = var0.getFocusTraversalKeysEnabled(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + java.awt.Dimension var12 = var8.getPreferredSize(); + java.awt.Toolkit var13 = var8.getToolkit(); + boolean var14 = var8.isFocusable(); + javax.swing.KeyStroke[] var15 = var8.getRegisteredKeyStrokes(); + SpaceWar.SpacePanel var16 = new SpaceWar.SpacePanel(); + float var17 = var16.getAlignmentX(); + SpaceWar.SpacePanel var18 = new SpaceWar.SpacePanel(); + float var19 = var18.getAlignmentX(); + var18.setVisible(false); + java.awt.Dimension var22 = var18.getPreferredSize(); + boolean var23 = var18.getVerifyInputWhenFocusTarget(); + java.awt.Component var26 = var18.findComponentAt(10, 1); + var16.addKeyListener((java.awt.event.KeyListener)var18); + var18.repaint(100, (-1), (-1), 1); + boolean var33 = var8.isAncestorOf((java.awt.Component)var18); + var0.addKeyListener((java.awt.event.KeyListener)var18); + SpaceWar.SpacePanel var36 = new SpaceWar.SpacePanel(); + float var37 = var36.getAlignmentX(); + var36.setVisible(false); + boolean var40 = var36.isDoubleBuffered(); + java.awt.dnd.DropTarget var41 = var36.getDropTarget(); + var36.show(false); + boolean var44 = var36.isPaintingForPrint(); + SpaceWar.SpacePanel var45 = new SpaceWar.SpacePanel(); + float var46 = var45.getAlignmentX(); + var45.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var51 = var45.getMouseListeners(); + int var52 = var45.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var53 = var45.getInputMethodRequests(); + var36.addKeyListener((java.awt.event.KeyListener)var45); + SpaceWar.SpacePanel var55 = new SpaceWar.SpacePanel(); + float var56 = var55.getAlignmentX(); + var55.setVisible(false); + boolean var59 = var55.isDoubleBuffered(); + var55.list(); + float var61 = var55.getAlignmentY(); + boolean var62 = var45.isFocusCycleRoot((java.awt.Container)var55); + SpaceWar.SpacePanel var64 = new SpaceWar.SpacePanel(); + float var65 = var64.getAlignmentX(); + var64.setVisible(false); + var64.nextFocus(); + var64.updateUI(); + java.awt.Component var70 = var45.add("", (java.awt.Component)var64); + java.awt.Component var71 = var18.add("", (java.awt.Component)var64); + SpaceWar.SpacePanel var72 = new SpaceWar.SpacePanel(); + float var73 = var72.getAlignmentX(); + var72.setVisible(false); + java.awt.Dimension var76 = var72.getPreferredSize(); + java.awt.Toolkit var77 = var72.getToolkit(); + boolean var78 = var72.isFocusable(); + javax.swing.KeyStroke[] var79 = var72.getRegisteredKeyStrokes(); + SpaceWar.SpacePanel var80 = new SpaceWar.SpacePanel(); + float var81 = var80.getAlignmentX(); + SpaceWar.SpacePanel var82 = new SpaceWar.SpacePanel(); + float var83 = var82.getAlignmentX(); + var82.setVisible(false); + java.awt.Dimension var86 = var82.getPreferredSize(); + boolean var87 = var82.getVerifyInputWhenFocusTarget(); + java.awt.Component var90 = var82.findComponentAt(10, 1); + var80.addKeyListener((java.awt.event.KeyListener)var82); + var82.repaint(100, (-1), (-1), 1); + boolean var97 = var72.isAncestorOf((java.awt.Component)var82); + java.awt.Point var98 = var72.location(); + var71.setLocation(var98); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var33 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var40 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var41); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var44 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var46 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var51); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var52 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var53); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var56 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var59 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var61 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var62 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var65 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var70); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var71); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var73 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var76); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var77); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var78 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var79); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var81 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var83 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var86); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var87 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var90); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var97 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var98); + + } + + public void test224() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test224"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var6 = var0.getMouseListeners(); + var0.firePropertyChange("", 0.5f, 100.0f); + var0.enable(false); + SpaceWar.SpacePanel var13 = new SpaceWar.SpacePanel(); + float var14 = var13.getAlignmentX(); + SpaceWar.SpacePanel var15 = new SpaceWar.SpacePanel(); + float var16 = var15.getAlignmentX(); + var15.setVisible(false); + java.awt.Dimension var19 = var15.getPreferredSize(); + boolean var20 = var15.getVerifyInputWhenFocusTarget(); + java.awt.Component var23 = var15.findComponentAt(10, 1); + var13.addKeyListener((java.awt.event.KeyListener)var15); + java.awt.Cursor var25 = var13.getCursor(); + java.awt.Dimension var26 = var13.getMinimumSize(); + var0.setSize(var26); + SpaceWar.SpacePanel var28 = new SpaceWar.SpacePanel(); + float var29 = var28.getAlignmentX(); + var28.setVisible(false); + SpaceWar.SpacePanel var32 = new SpaceWar.SpacePanel(); + java.awt.Color var33 = var32.getBackground(); + var28.setForeground(var33); + SpaceWar.SpacePanel var35 = new SpaceWar.SpacePanel(); + float var36 = var35.getAlignmentX(); + var35.setVisible(false); + boolean var39 = var35.isDoubleBuffered(); + java.awt.dnd.DropTarget var40 = var35.getDropTarget(); + var35.show(false); + java.awt.Rectangle var43 = var35.getVisibleRect(); + var28.repaint(var43); + var0.repaint(var43); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var23); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var25); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var29 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var33); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var36 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var39 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var40); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var43); + + } + + public void test225() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test225"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.setInheritsPopupMenu(false); + var0.setFocusTraversalPolicyProvider(true); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + boolean var12 = var8.isDoubleBuffered(); + var8.list(); + SpaceWar.SpacePanel var14 = new SpaceWar.SpacePanel(); + float var15 = var14.getAlignmentX(); + var14.setVisible(false); + boolean var18 = var14.isDoubleBuffered(); + java.awt.dnd.DropTarget var19 = var14.getDropTarget(); + var14.show(false); + java.awt.Rectangle var22 = var14.getVisibleRect(); + java.awt.Rectangle var23 = var8.getBounds(var22); + javax.swing.JToolTip var24 = var8.createToolTip(); + var0.removeKeyListener((java.awt.event.KeyListener)var8); + javax.swing.TransferHandler var26 = var0.getTransferHandler(); + var0.transferFocus(); + boolean var28 = var0.isFocusable(); + var0.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, true); + java.awt.Component var35 = var0.findComponentAt((-1), 499); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var23); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var28 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var35); + + } + + public void test226() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test226"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + var0.list(); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + float var7 = var6.getAlignmentX(); + var6.setVisible(false); + boolean var10 = var6.isDoubleBuffered(); + java.awt.dnd.DropTarget var11 = var6.getDropTarget(); + var6.show(false); + java.awt.Rectangle var14 = var6.getVisibleRect(); + java.awt.image.BufferedImage var16 = var6.loadImg("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + boolean var17 = var0.isAncestorOf((java.awt.Component)var6); + float var18 = var0.getAlignmentX(); + java.awt.image.VolatileImage var21 = var0.createVolatileImage(25, 1); + java.beans.PropertyChangeListener[] var23 = var0.getPropertyChangeListeners("PanelUI"); + var0.list(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNull(var21); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var23); + + } + + public void test227() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test227"); + + + SpaceWar.Text var4 = new SpaceWar.Text(0.0d, 594.7973940347722d, 1L, ""); + boolean var5 = var4.update(); + boolean var6 = var4.update(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == false); + + } + + public void test228() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test228"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + boolean var4 = var0.inside(0, (-1)); + var0.transferFocusUpCycle(); + java.awt.Container var6 = var0.getParent(); + boolean var7 = var0.isMaximumSizeSet(); + java.awt.event.InputMethodListener[] var8 = var0.getInputMethodListeners(); + var0.setRequestFocusEnabled(true); + var0.setAlignmentY(100.0f); + java.awt.event.KeyListener[] var13 = var0.getKeyListeners(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var13); + + } + + public void test229() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test229"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.setInheritsPopupMenu(false); + var0.setFocusTraversalPolicyProvider(true); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + boolean var12 = var8.isDoubleBuffered(); + var8.list(); + SpaceWar.SpacePanel var14 = new SpaceWar.SpacePanel(); + float var15 = var14.getAlignmentX(); + var14.setVisible(false); + boolean var18 = var14.isDoubleBuffered(); + java.awt.dnd.DropTarget var19 = var14.getDropTarget(); + var14.show(false); + java.awt.Rectangle var22 = var14.getVisibleRect(); + java.awt.Rectangle var23 = var8.getBounds(var22); + javax.swing.JToolTip var24 = var8.createToolTip(); + var0.removeKeyListener((java.awt.event.KeyListener)var8); + SpaceWar.SpacePanel var26 = new SpaceWar.SpacePanel(); + float var27 = var26.getAlignmentX(); + var26.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var32 = var26.getMouseListeners(); + int var33 = var26.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var34 = var26.getInputMethodRequests(); + var26.removeNotify(); + var26.enable(); + SpaceWar.SpacePanel var37 = new SpaceWar.SpacePanel(); + java.awt.Color var38 = var37.getBackground(); + boolean var41 = var37.inside(0, (-1)); + var37.transferFocusUpCycle(); + java.lang.String var43 = var37.getName(); + boolean var44 = var26.isFocusCycleRoot((java.awt.Container)var37); + java.awt.Dimension var45 = var26.getMinimumSize(); + var0.resize(var45); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var23); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var32); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var33 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var34); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var38); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var41 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var43); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var44 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var45); + + } + + public void test230() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test230"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.setInheritsPopupMenu(false); + var0.setFocusTraversalPolicyProvider(true); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + boolean var12 = var8.isDoubleBuffered(); + var8.list(); + SpaceWar.SpacePanel var14 = new SpaceWar.SpacePanel(); + float var15 = var14.getAlignmentX(); + var14.setVisible(false); + boolean var18 = var14.isDoubleBuffered(); + java.awt.dnd.DropTarget var19 = var14.getDropTarget(); + var14.show(false); + java.awt.Rectangle var22 = var14.getVisibleRect(); + java.awt.Rectangle var23 = var8.getBounds(var22); + javax.swing.JToolTip var24 = var8.createToolTip(); + var0.removeKeyListener((java.awt.event.KeyListener)var8); + javax.swing.TransferHandler var26 = var0.getTransferHandler(); + var0.transferFocus(); + boolean var28 = var0.isFocusable(); + var0.enableInputMethods(false); + var0.move(0, 25); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var23); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var28 == true); + + } + + public void test231() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test231"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.updateUI(); + var0.enableInputMethods(true); + java.awt.Point var9 = var0.getMousePosition(false); + boolean var10 = var0.isShowing(); + var0.repaint(10, 100, 100, 25); + // The following exception was thrown during execution. + // This behavior will recorded for regression testing. + try { + var0.remove(10); + fail("Expected exception of type java.lang.ArrayIndexOutOfBoundsException"); + } catch (java.lang.ArrayIndexOutOfBoundsException e) { + // Expected exception. + } + + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNull(var9); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == false); + + } + + public void test232() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test232"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + SpaceWar.SpacePanel var4 = new SpaceWar.SpacePanel(); + java.awt.Color var5 = var4.getBackground(); + var0.setForeground(var5); + SpaceWar.SpacePanel var7 = new SpaceWar.SpacePanel(); + float var8 = var7.getAlignmentX(); + var7.setVisible(false); + boolean var11 = var7.isDoubleBuffered(); + java.awt.dnd.DropTarget var12 = var7.getDropTarget(); + var7.show(false); + java.awt.Rectangle var15 = var7.getVisibleRect(); + var0.repaint(var15); + java.awt.FocusTraversalPolicy var17 = var0.getFocusTraversalPolicy(); + SpaceWar.SpacePanel var18 = new SpaceWar.SpacePanel(); + float var19 = var18.getAlignmentX(); + var18.firePropertyChange("", (-1), 1); + boolean var24 = var18.isFocusOwner(); + SpaceWar.SpacePanel var26 = new SpaceWar.SpacePanel(); + float var27 = var26.getAlignmentX(); + var26.setVisible(false); + java.awt.Dimension var30 = var26.getPreferredSize(); + java.awt.Toolkit var31 = var26.getToolkit(); + SpaceWar.SpacePanel var32 = new SpaceWar.SpacePanel(); + var32.setName(""); + int var35 = var32.getX(); + SpaceWar.SpacePanel var36 = new SpaceWar.SpacePanel(); + float var37 = var36.getAlignmentX(); + var36.setVisible(false); + var36.nextFocus(); + SpaceWar.SpacePanel var41 = new SpaceWar.SpacePanel(); + float var42 = var41.getAlignmentX(); + var41.setVisible(false); + SpaceWar.SpacePanel var45 = new SpaceWar.SpacePanel(); + java.awt.Color var46 = var45.getBackground(); + var41.setForeground(var46); + var36.setBackground(var46); + var32.setBackground(var46); + var26.setForeground(var46); + var18.putClientProperty((java.lang.Object)(byte)100, (java.lang.Object)var46); + var0.setBackground(var46); + javax.swing.JToolTip var53 = var0.createToolTip(); + var53.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, true); + var53.setDoubleBuffered(false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var24 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var30); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var31); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var35 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var42 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var46); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var53); + + } + + public void test233() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test233"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + var0.show(false); + boolean var8 = var0.isPaintingForPrint(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var15 = var9.getMouseListeners(); + int var16 = var9.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var17 = var9.getInputMethodRequests(); + var0.addKeyListener((java.awt.event.KeyListener)var9); + var9.repaint(); + java.awt.Component var22 = var9.findComponentAt(10, (-1)); + var9.transferFocusDownCycle(); + // The following exception was thrown during execution. + // This behavior will recorded for regression testing. + try { + java.util.Set var25 = var9.getFocusTraversalKeys(10); + fail("Expected exception of type java.lang.IllegalArgumentException"); + } catch (java.lang.IllegalArgumentException e) { + // Expected exception. + } + + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertNull(var22); + + } + + public void test234() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test234"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + java.awt.event.MouseMotionListener[] var6 = var0.getMouseMotionListeners(); + java.awt.event.ComponentListener[] var7 = var0.getComponentListeners(); + var0.setFocusTraversalPolicyProvider(false); + java.awt.Component var12 = var0.findComponentAt((-1), 100); + java.awt.Container var13 = var0.getTopLevelAncestor(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNull(var13); + + } + + public void test235() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test235"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + SpaceWar.SpacePanel var4 = new SpaceWar.SpacePanel(); + java.awt.Color var5 = var4.getBackground(); + var0.setForeground(var5); + SpaceWar.SpacePanel var7 = new SpaceWar.SpacePanel(); + float var8 = var7.getAlignmentX(); + var7.setVisible(false); + boolean var11 = var7.isDoubleBuffered(); + java.awt.dnd.DropTarget var12 = var7.getDropTarget(); + var7.show(false); + java.awt.Rectangle var15 = var7.getVisibleRect(); + var0.repaint(var15); + java.awt.FocusTraversalPolicy var17 = var0.getFocusTraversalPolicy(); + java.awt.im.InputMethodRequests var18 = var0.getInputMethodRequests(); + var0.layout(); + var0.setDebugGraphicsOptions(10); + java.awt.event.FocusListener[] var22 = var0.getFocusListeners(); + SpaceWar.SpacePanel var23 = new SpaceWar.SpacePanel(); + float var24 = var23.getAlignmentX(); + var23.setVisible(false); + boolean var27 = var23.isDoubleBuffered(); + java.awt.dnd.DropTarget var28 = var23.getDropTarget(); + boolean var29 = var23.isFocusCycleRoot(); + SpaceWar.SpacePanel var30 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var31 = new SpaceWar.SpacePanel(); + java.awt.Color var32 = var31.getBackground(); + SpaceWar.SpacePanel var33 = new SpaceWar.SpacePanel(); + float var34 = var33.getAlignmentX(); + var33.setVisible(false); + var33.nextFocus(); + var33.updateUI(); + var33.enableInputMethods(true); + var30.add((java.awt.Component)var31, (java.lang.Object)true); + java.awt.Dimension var42 = var31.getPreferredSize(); + var23.setSize(var42); + var23.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", (-1), 10); + SpaceWar.SpacePanel var48 = new SpaceWar.SpacePanel(); + float var49 = var48.getAlignmentX(); + var48.setVisible(false); + var48.nextFocus(); + var48.repaint(1L); + SpaceWar.SpacePanel var55 = new SpaceWar.SpacePanel(); + float var56 = var55.getAlignmentX(); + var55.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var61 = new SpaceWar.SpacePanel(); + float var62 = var61.getAlignmentX(); + var61.setVisible(false); + java.awt.Dimension var65 = var61.getPreferredSize(); + var55.setMaximumSize(var65); + var48.setPreferredSize(var65); + var23.setSize(var65); + var0.resize(var65); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var24 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var28); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var29 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var32); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var34 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var42); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var49 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var56 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var62 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var65); + + } + + public void test236() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test236"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + var0.list(); + float var6 = var0.getAlignmentY(); + java.awt.Insets var7 = var0.getInsets(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var14 = new SpaceWar.SpacePanel(); + float var15 = var14.getAlignmentX(); + var14.setVisible(false); + java.awt.Dimension var18 = var14.getPreferredSize(); + var8.setMaximumSize(var18); + java.awt.Dimension var20 = var0.getSize(var18); + var0.setFocusTraversalKeysEnabled(false); + var0.transferFocusBackward(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + } + + public void test237() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test237"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.setInheritsPopupMenu(false); + var0.setFocusTraversalPolicyProvider(true); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + boolean var12 = var8.isDoubleBuffered(); + var8.list(); + SpaceWar.SpacePanel var14 = new SpaceWar.SpacePanel(); + float var15 = var14.getAlignmentX(); + var14.setVisible(false); + boolean var18 = var14.isDoubleBuffered(); + java.awt.dnd.DropTarget var19 = var14.getDropTarget(); + var14.show(false); + java.awt.Rectangle var22 = var14.getVisibleRect(); + java.awt.Rectangle var23 = var8.getBounds(var22); + javax.swing.JToolTip var24 = var8.createToolTip(); + var0.removeKeyListener((java.awt.event.KeyListener)var8); + javax.swing.TransferHandler var26 = var0.getTransferHandler(); + var0.setFocusTraversalPolicyProvider(true); + SpaceWar.SpacePanel var29 = new SpaceWar.SpacePanel(); + float var30 = var29.getAlignmentX(); + var29.setVisible(false); + boolean var33 = var29.isDoubleBuffered(); + java.awt.dnd.DropTarget var34 = var29.getDropTarget(); + var29.show(false); + boolean var37 = var29.isPaintingForPrint(); + SpaceWar.SpacePanel var38 = new SpaceWar.SpacePanel(); + float var39 = var38.getAlignmentX(); + var38.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var44 = var38.getMouseListeners(); + int var45 = var38.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var46 = var38.getInputMethodRequests(); + var29.addKeyListener((java.awt.event.KeyListener)var38); + boolean var48 = var38.isShowing(); + java.awt.ComponentOrientation var49 = var38.getComponentOrientation(); + // The following exception was thrown during execution. + // This behavior will recorded for regression testing. + try { + var0.setComponentZOrder((java.awt.Component)var38, 100); + fail("Expected exception of type java.lang.IllegalArgumentException"); + } catch (java.lang.IllegalArgumentException e) { + // Expected exception. + } + + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var23); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var30 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var33 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var34); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var39 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var44); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var45 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var46); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var48 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var49); + + } + + public void test238() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test238"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.reshape((-1), 1, (-1), 10); + var0.disable(); + java.awt.LayoutManager var11 = var0.getLayout(); + boolean var14 = var0.contains((-1), 0); + SpaceWar.SpacePanel var15 = new SpaceWar.SpacePanel(); + float var16 = var15.getAlignmentX(); + var15.setVisible(false); + var15.nextFocus(); + var15.updateUI(); + var15.enableInputMethods(true); + var15.setSize((-1), 1); + java.awt.Component var26 = var0.add((java.awt.Component)var15); + boolean var28 = var0.requestFocus(true); + java.awt.Dimension var29 = var0.preferredSize(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var28 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var29); + + } + + public void test239() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test239"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + java.lang.String var2 = var0.toString(); + java.awt.Dimension var3 = var0.size(); + boolean var4 = var0.isPreferredSizeSet(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var2 + "' != '" + "SpaceWar.SpacePanel[,0,0,0var2,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"+ "'", var2.equals("SpaceWar.SpacePanel[,0,0,0var2,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]")); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + } + + public void test240() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test240"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + var0.list(); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + float var7 = var6.getAlignmentX(); + var6.setVisible(false); + boolean var10 = var6.isDoubleBuffered(); + java.awt.dnd.DropTarget var11 = var6.getDropTarget(); + var6.show(false); + java.awt.Rectangle var14 = var6.getVisibleRect(); + java.awt.Rectangle var15 = var0.getBounds(var14); + javax.swing.JToolTip var16 = var0.createToolTip(); + var0.firePropertyChange("", false, false); + var0.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", (-1L), (-1L)); + java.awt.Container var25 = var0.getParent(); + java.awt.Component.BaselineResizeBehavior var26 = var0.getBaselineResizeBehavior(); + var0.show(true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertNull(var25); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var26); + + } + + public void test241() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test241"); + + + SpaceWar.Bullet var3 = new SpaceWar.Bullet(100.0d, 1, 3); + boolean var4 = var3.update(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == false); + + } + + public void test242() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test242"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + boolean var2 = var0.hasFocus(); + boolean var3 = var0.isPreferredSizeSet(); + SpaceWar.SpacePanel var4 = new SpaceWar.SpacePanel(); + java.awt.Color var5 = var4.getBackground(); + var4.repaint(); + var4.setRequestFocusEnabled(false); + int var9 = var0.getComponentZOrder((java.awt.Component)var4); + java.lang.String var10 = var4.getUIClassID(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var2 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == (-1)); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var10 + "' != '" + "PanelUI"+ "'", var10.equals("PanelUI")); + + } + + public void test243() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test243"); + + + SpaceWar.Player var0 = new SpaceWar.Player(); + boolean var1 = var0.isRecovering(); + var0.setUp(true); + int var4 = var0.getY(); + int var5 = var0.getR(); + var0.setLeft(true); + var0.setDown(false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 500); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == 25); + + } + + public void test244() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test244"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + java.awt.Dimension var4 = var0.getPreferredSize(); + java.awt.Toolkit var5 = var0.getToolkit(); + java.awt.Toolkit var6 = var0.getToolkit(); + boolean var7 = var0.isDoubleBuffered(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var4); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == true); + + } + + public void test245() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test245"); + + + SpaceWar.Text var4 = new SpaceWar.Text(0.0d, 83.657626403857d, 1L, "SpaceWar.SpacePanel[,0,0,0x0,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + + } + + public void test246() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test246"); + + + SpaceWar.Enemy var2 = new SpaceWar.Enemy(10, 24); + + } + + public void test247() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test247"); + + + SpaceWar.Player var0 = new SpaceWar.Player(); + int var1 = var0.getPower(); + int var2 = var0.getPower(); + int var3 = var0.getScore(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var2 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == 0); + + } + + public void test248() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test248"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var1 = new SpaceWar.SpacePanel(); + java.awt.Color var2 = var1.getBackground(); + SpaceWar.SpacePanel var3 = new SpaceWar.SpacePanel(); + float var4 = var3.getAlignmentX(); + var3.setVisible(false); + var3.nextFocus(); + var3.updateUI(); + var3.enableInputMethods(true); + var0.add((java.awt.Component)var1, (java.lang.Object)true); + boolean var12 = var0.isMinimumSizeSet(); + java.awt.event.HierarchyListener[] var13 = var0.getHierarchyListeners(); + boolean var14 = var0.isForegroundSet(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var2); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == true); + + } + + public void test249() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test249"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + java.awt.Color var7 = var6.getBackground(); + var6.repaint(); + var6.setRequestFocusEnabled(false); + var6.reshape(100, 0, 100, 0); + var6.requestFocus(); + SpaceWar.SpacePanel var17 = new SpaceWar.SpacePanel(); + float var18 = var17.getAlignmentX(); + var17.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var23 = var17.getUI(); + java.awt.im.InputMethodRequests var24 = var17.getInputMethodRequests(); + SpaceWar.SpacePanel var25 = new SpaceWar.SpacePanel(); + float var26 = var25.getAlignmentX(); + var25.setVisible(false); + var25.nextFocus(); + var25.updateUI(); + var25.enableInputMethods(true); + var25.setSize((-1), 1); + SpaceWar.SpacePanel var36 = new SpaceWar.SpacePanel(); + var36.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var17.add((java.awt.Component)var25, (java.lang.Object)"SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + SpaceWar.SpacePanel var42 = new SpaceWar.SpacePanel(); + var42.setName(""); + java.awt.ComponentOrientation var45 = var42.getComponentOrientation(); + var17.applyComponentOrientation(var45); + var6.setComponentOrientation(var45); + var0.applyComponentOrientation(var45); + boolean var49 = var0.isPaintingForPrint(); + java.awt.Component[] var50 = var0.getComponents(); + var0.setSize(1, 24); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var23); + + // Regression assertion (captures the current behavior of the code) + assertNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var45); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var49 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var50); + + } + + public void test250() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test250"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + boolean var6 = var0.isFocusCycleRoot(); + var0.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", 100, 0); + SpaceWar.SpacePanel var11 = new SpaceWar.SpacePanel(); + java.awt.Color var12 = var11.getBackground(); + var11.repaint(); + var11.setRequestFocusEnabled(false); + var11.reshape(100, 0, 100, 0); + javax.swing.event.AncestorListener[] var21 = var11.getAncestorListeners(); + var11.grabFocus(); + boolean var23 = var0.isFocusCycleRoot((java.awt.Container)var11); + boolean var24 = var11.isDoubleBuffered(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var21); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var24 == true); + + } + + public void test251() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test251"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + var0.list(); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + float var7 = var6.getAlignmentX(); + var6.setVisible(false); + boolean var10 = var6.isDoubleBuffered(); + java.awt.dnd.DropTarget var11 = var6.getDropTarget(); + var6.show(false); + java.awt.Rectangle var14 = var6.getVisibleRect(); + java.awt.Rectangle var15 = var0.getBounds(var14); + javax.swing.JToolTip var16 = var0.createToolTip(); + java.awt.Graphics var17 = var0.getGraphics(); + float var18 = var0.getAlignmentY(); + java.lang.String var19 = var0.getUIClassID(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var19 + "' != '" + "PanelUI"+ "'", var19.equals("PanelUI")); + + } + + public void test252() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test252"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + var0.show(false); + boolean var8 = var0.isPaintingForPrint(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var15 = var9.getMouseListeners(); + int var16 = var9.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var17 = var9.getInputMethodRequests(); + var0.addKeyListener((java.awt.event.KeyListener)var9); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + float var20 = var19.getAlignmentX(); + var19.setVisible(false); + boolean var23 = var19.isDoubleBuffered(); + var19.list(); + float var25 = var19.getAlignmentY(); + boolean var26 = var9.isFocusCycleRoot((java.awt.Container)var19); + javax.swing.ActionMap var27 = var9.getActionMap(); + boolean var28 = var9.isValid(); + java.awt.dnd.DropTarget var29 = var9.getDropTarget(); + var9.removeAll(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var27); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var28 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var29); + + } + + public void test253() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test253"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.reshape((-1), 1, (-1), 10); + var0.disable(); + java.awt.LayoutManager var11 = var0.getLayout(); + java.awt.Component var14 = var0.getComponentAt(24, 499); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNull(var14); + + } + + public void test254() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test254"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.setEnabled(false); + var0.invalidate(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + var8.nextFocus(); + var8.updateUI(); + var8.enableInputMethods(true); + SpaceWar.SpacePanel var16 = new SpaceWar.SpacePanel(); + float var17 = var16.getAlignmentX(); + boolean var18 = var16.hasFocus(); + java.awt.Insets var19 = var16.getInsets(); + java.awt.Insets var20 = var8.getInsets(var19); + boolean var21 = var8.isManagingFocus(); + java.awt.Image var24 = var8.createImage(1, 10); + SpaceWar.SpacePanel var25 = new SpaceWar.SpacePanel(); + float var26 = var25.getAlignmentX(); + var25.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var31 = new SpaceWar.SpacePanel(); + float var32 = var31.getAlignmentX(); + var31.setVisible(false); + java.awt.Dimension var35 = var31.getPreferredSize(); + var25.setMaximumSize(var35); + boolean var37 = var25.getVerifyInputWhenFocusTarget(); + int var38 = var25.getX(); + SpaceWar.SpacePanel var39 = new SpaceWar.SpacePanel(); + float var40 = var39.getAlignmentX(); + var39.setVisible(false); + var39.setEnabled(false); + var8.add((java.awt.Component)var25, (java.lang.Object)false); + boolean var46 = var8.isForegroundSet(); + java.awt.Component var47 = var0.add("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", (java.awt.Component)var8); + boolean var48 = var0.isLightweight(); + // The following exception was thrown during execution. + // This behavior will recorded for regression testing. + try { + java.awt.Component var50 = var0.getComponent(400); + fail("Expected exception of type java.lang.ArrayIndexOutOfBoundsException"); + } catch (java.lang.ArrayIndexOutOfBoundsException e) { + // Expected exception. + } + + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var32 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var35); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var38 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var40 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var46 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var47); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var48 == false); + + } + + public void test255() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test255"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + var0.list(); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + float var7 = var6.getAlignmentX(); + var6.setVisible(false); + boolean var10 = var6.isDoubleBuffered(); + java.awt.dnd.DropTarget var11 = var6.getDropTarget(); + var6.show(false); + java.awt.Rectangle var14 = var6.getVisibleRect(); + java.awt.image.BufferedImage var16 = var6.loadImg("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + boolean var17 = var0.isAncestorOf((java.awt.Component)var6); + float var18 = var0.getAlignmentX(); + java.awt.image.VolatileImage var21 = var0.createVolatileImage(25, 1); + boolean var22 = var0.isPaintingForPrint(); + var0.setFocusable(true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNull(var21); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var22 == false); + + } + + public void test256() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test256"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + java.awt.Dimension var4 = var0.getPreferredSize(); + boolean var5 = var0.getVerifyInputWhenFocusTarget(); + java.awt.Component var8 = var0.findComponentAt(10, 1); + boolean var9 = var0.requestDefaultFocus(); + var0.setVerifyInputWhenFocusTarget(false); + boolean var12 = var0.isPaintingForPrint(); + boolean var13 = var0.getIgnoreRepaint(); + var0.show(false); + int var16 = var0.getWidth(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var4); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0); + + } + + public void test257() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test257"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var6 = var0.getUI(); + java.awt.im.InputMethodRequests var7 = var0.getInputMethodRequests(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + var8.nextFocus(); + var8.updateUI(); + var8.enableInputMethods(true); + var8.setSize((-1), 1); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + var19.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var0.add((java.awt.Component)var8, (java.lang.Object)"SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + SpaceWar.SpacePanel var25 = new SpaceWar.SpacePanel(); + float var26 = var25.getAlignmentX(); + var25.setVisible(false); + java.awt.Dimension var29 = var25.getPreferredSize(); + java.awt.Toolkit var30 = var25.getToolkit(); + java.awt.Toolkit var31 = var25.getToolkit(); + java.awt.Component var32 = var8.add((java.awt.Component)var25); + int var33 = var8.getY(); + var8.removeNotify(); + boolean var35 = var8.isDoubleBuffered(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var29); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var30); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var31); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var32); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var33 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var35 == true); + + } + + public void test258() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test258"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var6 = var0.getUI(); + java.awt.im.InputMethodRequests var7 = var0.getInputMethodRequests(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + var8.nextFocus(); + var8.updateUI(); + var8.enableInputMethods(true); + var8.setSize((-1), 1); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + var19.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var0.add((java.awt.Component)var8, (java.lang.Object)"SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + SpaceWar.SpacePanel var25 = new SpaceWar.SpacePanel(); + float var26 = var25.getAlignmentX(); + var25.setVisible(false); + var25.setInheritsPopupMenu(false); + boolean var31 = var25.isDoubleBuffered(); + boolean var32 = var25.isMinimumSizeSet(); + SpaceWar.SpacePanel var33 = new SpaceWar.SpacePanel(); + float var34 = var33.getAlignmentX(); + var33.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var39 = new SpaceWar.SpacePanel(); + float var40 = var39.getAlignmentX(); + var39.setVisible(false); + java.awt.Dimension var43 = var39.getPreferredSize(); + var33.setMaximumSize(var43); + boolean var45 = var33.getVerifyInputWhenFocusTarget(); + javax.accessibility.AccessibleContext var46 = var33.getAccessibleContext(); + boolean var47 = var33.isDoubleBuffered(); + java.awt.Rectangle var48 = var33.getVisibleRect(); + var25.setBounds(var48); + java.awt.Rectangle var50 = var0.getBounds(var48); + SpaceWar.SpacePanel var51 = new SpaceWar.SpacePanel(); + float var52 = var51.getAlignmentX(); + var51.setVisible(false); + boolean var55 = var51.isDoubleBuffered(); + java.awt.dnd.DropTarget var56 = var51.getDropTarget(); + var51.show(false); + boolean var59 = var51.isPaintingForPrint(); + SpaceWar.SpacePanel var60 = new SpaceWar.SpacePanel(); + float var61 = var60.getAlignmentX(); + var60.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var66 = var60.getMouseListeners(); + int var67 = var60.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var68 = var60.getInputMethodRequests(); + var51.addKeyListener((java.awt.event.KeyListener)var60); + SpaceWar.SpacePanel var70 = new SpaceWar.SpacePanel(); + float var71 = var70.getAlignmentX(); + var70.setVisible(false); + boolean var74 = var70.isDoubleBuffered(); + var70.list(); + float var76 = var70.getAlignmentY(); + boolean var77 = var60.isFocusCycleRoot((java.awt.Container)var70); + SpaceWar.SpacePanel var79 = new SpaceWar.SpacePanel(); + float var80 = var79.getAlignmentX(); + var79.setVisible(false); + var79.nextFocus(); + var79.updateUI(); + java.awt.Component var85 = var60.add("", (java.awt.Component)var79); + java.awt.ComponentOrientation var86 = var79.getComponentOrientation(); + var0.applyComponentOrientation(var86); + SpaceWar.SpacePanel var88 = new SpaceWar.SpacePanel(); + var88.setName(""); + var88.enable(true); + var88.enable(); + java.awt.Point var94 = var88.location(); + boolean var95 = var0.contains(var94); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var31 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var32 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var34 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var40 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var43); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var45 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var46); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var47 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var48); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var50); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var52 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var55 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var56); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var59 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var61 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var66); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var67 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var68); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var71 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var74 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var76 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var77 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var80 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var85); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var86); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var94); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var95 == false); + + } + + public void test259() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test259"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + float var7 = var6.getAlignmentX(); + var6.setVisible(false); + SpaceWar.SpacePanel var10 = new SpaceWar.SpacePanel(); + java.awt.Color var11 = var10.getBackground(); + var6.setForeground(var11); + var0.setBackground(var11); + var0.grabFocus(); + boolean var15 = var0.getFocusTraversalKeysEnabled(); + java.awt.GraphicsConfiguration var16 = var0.getGraphicsConfiguration(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var16); + + } + + public void test260() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test260"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var1 = new SpaceWar.SpacePanel(); + java.awt.Color var2 = var1.getBackground(); + SpaceWar.SpacePanel var3 = new SpaceWar.SpacePanel(); + float var4 = var3.getAlignmentX(); + var3.setVisible(false); + var3.nextFocus(); + var3.updateUI(); + var3.enableInputMethods(true); + var0.add((java.awt.Component)var1, (java.lang.Object)true); + java.awt.Dimension var12 = var1.getPreferredSize(); + var1.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", (-1.0f), 100.0f); + var1.removeNotify(); + java.awt.Dimension var18 = var1.size(); + var1.show(false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var2); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var18); + + } + + public void test261() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test261"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.reshape((-1), 1, (-1), 10); + var0.disable(); + java.awt.LayoutManager var11 = var0.getLayout(); + java.awt.Component var14 = var0.findComponentAt(2, 2); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNull(var14); + + } + + public void test262() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test262"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.reshape((-1), 1, (-1), 10); + var0.disable(); + var0.show(); + SpaceWar.SpacePanel var12 = new SpaceWar.SpacePanel(); + float var13 = var12.getAlignmentX(); + var12.setVisible(false); + boolean var16 = var12.isDoubleBuffered(); + var12.list(); + SpaceWar.SpacePanel var18 = new SpaceWar.SpacePanel(); + float var19 = var18.getAlignmentX(); + var18.setVisible(false); + boolean var22 = var18.isDoubleBuffered(); + java.awt.dnd.DropTarget var23 = var18.getDropTarget(); + var18.show(false); + java.awt.Rectangle var26 = var18.getVisibleRect(); + java.awt.Rectangle var27 = var12.getBounds(var26); + javax.swing.JToolTip var28 = var12.createToolTip(); + var12.firePropertyChange("", false, false); + var12.validate(); + SpaceWar.SpacePanel var34 = new SpaceWar.SpacePanel(); + float var35 = var34.getAlignmentX(); + var34.setVisible(false); + boolean var38 = var34.isDoubleBuffered(); + java.awt.dnd.DropTarget var39 = var34.getDropTarget(); + var34.show(false); + boolean var42 = var34.isPaintingForPrint(); + SpaceWar.SpacePanel var43 = new SpaceWar.SpacePanel(); + float var44 = var43.getAlignmentX(); + var43.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var49 = var43.getMouseListeners(); + int var50 = var43.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var51 = var43.getInputMethodRequests(); + var34.addKeyListener((java.awt.event.KeyListener)var43); + var43.repaint(); + java.awt.Point var54 = var43.location(); + java.awt.Component var55 = var12.getComponentAt(var54); + java.awt.Point var56 = var0.getLocation(var54); + var0.setAlignmentY(0.5f); + boolean var59 = var0.getVerifyInputWhenFocusTarget(); + boolean var60 = var0.isBackgroundSet(); + java.awt.Dimension var61 = var0.getMinimumSize(); + var0.list(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var22 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var23); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var27); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var28); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var35 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var38 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var39); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var42 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var44 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var49); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var50 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var51); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var54); + + // Regression assertion (captures the current behavior of the code) + assertNull(var55); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var56); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var59 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var60 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var61); + + } + + public void test263() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test263"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + SpaceWar.SpacePanel var4 = new SpaceWar.SpacePanel(); + java.awt.Color var5 = var4.getBackground(); + var0.setForeground(var5); + SpaceWar.SpacePanel var7 = new SpaceWar.SpacePanel(); + float var8 = var7.getAlignmentX(); + var7.setVisible(false); + boolean var11 = var7.isDoubleBuffered(); + java.awt.dnd.DropTarget var12 = var7.getDropTarget(); + var7.show(false); + java.awt.Rectangle var15 = var7.getVisibleRect(); + var0.repaint(var15); + java.awt.FocusTraversalPolicy var17 = var0.getFocusTraversalPolicy(); + javax.swing.TransferHandler var18 = var0.getTransferHandler(); + int var21 = var0.getBaseline(24, 25); + boolean var23 = var0.requestFocus(true); + boolean var24 = var0.getInheritsPopupMenu(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == (-1)); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var24 == false); + + } + + public void test264() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test264"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + var0.show(false); + java.awt.Rectangle var8 = var0.getVisibleRect(); + var0.layout(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var8); + + } + + public void test265() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test265"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + java.awt.Dimension var4 = var0.getPreferredSize(); + java.awt.Toolkit var5 = var0.getToolkit(); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + var6.setName(""); + int var9 = var6.getX(); + SpaceWar.SpacePanel var10 = new SpaceWar.SpacePanel(); + float var11 = var10.getAlignmentX(); + var10.setVisible(false); + var10.nextFocus(); + SpaceWar.SpacePanel var15 = new SpaceWar.SpacePanel(); + float var16 = var15.getAlignmentX(); + var15.setVisible(false); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + java.awt.Color var20 = var19.getBackground(); + var15.setForeground(var20); + var10.setBackground(var20); + var6.setBackground(var20); + var0.setForeground(var20); + int var25 = var0.countComponents(); + var0.transferFocusBackward(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var4); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == 0); + + } + + public void test266() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test266"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var1 = new SpaceWar.SpacePanel(); + java.awt.Color var2 = var1.getBackground(); + SpaceWar.SpacePanel var3 = new SpaceWar.SpacePanel(); + float var4 = var3.getAlignmentX(); + var3.setVisible(false); + var3.nextFocus(); + var3.updateUI(); + var3.enableInputMethods(true); + var0.add((java.awt.Component)var1, (java.lang.Object)true); + java.awt.Dimension var12 = var1.getPreferredSize(); + boolean var13 = var1.isValidateRoot(); + java.awt.image.BufferedImage var15 = var1.loadImg(""); + java.awt.im.InputMethodRequests var16 = var1.getInputMethodRequests(); + SpaceWar.SpacePanel var17 = new SpaceWar.SpacePanel(); + float var18 = var17.getAlignmentX(); + var17.setVisible(false); + boolean var21 = var17.isDoubleBuffered(); + java.awt.dnd.DropTarget var22 = var17.getDropTarget(); + var17.show(false); + boolean var25 = var17.isPaintingForPrint(); + SpaceWar.SpacePanel var26 = new SpaceWar.SpacePanel(); + float var27 = var26.getAlignmentX(); + var26.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var32 = var26.getMouseListeners(); + int var33 = var26.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var34 = var26.getInputMethodRequests(); + var17.addKeyListener((java.awt.event.KeyListener)var26); + SpaceWar.SpacePanel var36 = new SpaceWar.SpacePanel(); + float var37 = var36.getAlignmentX(); + var36.setVisible(false); + boolean var40 = var36.isDoubleBuffered(); + var36.list(); + float var42 = var36.getAlignmentY(); + boolean var43 = var26.isFocusCycleRoot((java.awt.Container)var36); + javax.swing.JPopupMenu var44 = var36.getComponentPopupMenu(); + var36.move((-1), 100); + var36.validate(); + java.awt.Rectangle var49 = var36.getVisibleRect(); + var1.computeVisibleRect(var49); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var2); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var32); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var33 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var34); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var40 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var42 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var43 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var44); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var49); + + } + + public void test267() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test267"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var6 = var0.getMouseListeners(); + java.awt.Dimension var7 = var0.getPreferredSize(); + java.util.Locale var8 = var0.getLocale(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.setVisible(false); + boolean var13 = var9.isDoubleBuffered(); + SpaceWar.SpacePanel var14 = new SpaceWar.SpacePanel(); + java.awt.Color var15 = var14.getBackground(); + var14.repaint(); + java.lang.Object var17 = var9.getClientProperty((java.lang.Object)var14); + SpaceWar.SpacePanel var18 = new SpaceWar.SpacePanel(); + java.awt.Color var19 = var18.getBackground(); + boolean var22 = var18.inside(0, (-1)); + SpaceWar.SpacePanel var23 = new SpaceWar.SpacePanel(); + float var24 = var23.getAlignmentX(); + var23.setVisible(false); + SpaceWar.SpacePanel var27 = new SpaceWar.SpacePanel(); + java.awt.Color var28 = var27.getBackground(); + var23.setForeground(var28); + var18.setForeground(var28); + var14.setBackground(var28); + java.awt.Image var34 = var14.createImage(100, 24); + java.awt.Dimension var35 = var14.getMinimumSize(); + java.awt.Dimension var36 = var0.getSize(var35); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var22 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var24 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var28); + + // Regression assertion (captures the current behavior of the code) + assertNull(var34); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var35); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var36); + + } + + public void test268() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test268"); + + + SpaceWar.PowerUp var3 = new SpaceWar.PowerUp(100, (-1.0d), 0.0d); + double var4 = var3.getR(); + int var5 = var3.getType(); + double var6 = var3.getX(); + double var7 = var3.getR(); + double var8 = var3.getY(); + double var9 = var3.getX(); + double var10 = var3.getR(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0.0d); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == 100); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == (-1.0d)); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.0d); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 0.0d); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == (-1.0d)); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.0d); + + } + + public void test269() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test269"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + var0.setRequestFocusEnabled(false); + var0.removeAll(); + var0.layout(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + } + + public void test270() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test270"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.repaint(1L); + SpaceWar.SpacePanel var7 = new SpaceWar.SpacePanel(); + float var8 = var7.getAlignmentX(); + var7.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var13 = new SpaceWar.SpacePanel(); + float var14 = var13.getAlignmentX(); + var13.setVisible(false); + java.awt.Dimension var17 = var13.getPreferredSize(); + var7.setMaximumSize(var17); + var0.setPreferredSize(var17); + javax.swing.plaf.PanelUI var20 = var0.getUI(); + SpaceWar.SpacePanel var21 = new SpaceWar.SpacePanel(); + float var22 = var21.getAlignmentX(); + var21.setVisible(false); + var21.nextFocus(); + var21.reshape((-1), 1, (-1), 10); + var21.disable(); + java.awt.LayoutManager var32 = var21.getLayout(); + java.awt.Container var33 = var21.getParent(); + java.lang.String var34 = var21.getUIClassID(); + SpaceWar.Enemy var37 = new SpaceWar.Enemy(0, 10); + var0.add((java.awt.Component)var21, (java.lang.Object)10); + var0.setInheritsPopupMenu(true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var22 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var32); + + // Regression assertion (captures the current behavior of the code) + assertNull(var33); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var34 + "' != '" + "PanelUI"+ "'", var34.equals("PanelUI")); + + } + + public void test271() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test271"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + java.awt.Dimension var4 = var0.getPreferredSize(); + boolean var5 = var0.getVerifyInputWhenFocusTarget(); + java.awt.Component var8 = var0.findComponentAt(10, 1); + boolean var9 = var0.requestDefaultFocus(); + java.awt.Insets var10 = var0.getInsets(); + var0.setDoubleBuffered(false); + SpaceWar.SpacePanel var13 = new SpaceWar.SpacePanel(); + float var14 = var13.getAlignmentX(); + var13.setVisible(false); + boolean var17 = var13.isDoubleBuffered(); + java.awt.dnd.DropTarget var18 = var13.getDropTarget(); + var13.show(false); + java.awt.Rectangle var21 = var13.getVisibleRect(); + java.awt.Toolkit var22 = var13.getToolkit(); + java.awt.event.MouseMotionListener[] var23 = var13.getMouseMotionListeners(); + SpaceWar.SpacePanel var24 = new SpaceWar.SpacePanel(); + float var25 = var24.getAlignmentX(); + var24.setVisible(false); + SpaceWar.SpacePanel var28 = new SpaceWar.SpacePanel(); + java.awt.Color var29 = var28.getBackground(); + var24.setForeground(var29); + SpaceWar.SpacePanel var31 = new SpaceWar.SpacePanel(); + float var32 = var31.getAlignmentX(); + var31.setVisible(false); + boolean var35 = var31.isDoubleBuffered(); + java.awt.dnd.DropTarget var36 = var31.getDropTarget(); + var31.show(false); + java.awt.Rectangle var39 = var31.getVisibleRect(); + var24.repaint(var39); + java.awt.Component.BaselineResizeBehavior var41 = var24.getBaselineResizeBehavior(); + SpaceWar.SpacePanel var42 = new SpaceWar.SpacePanel(); + float var43 = var42.getAlignmentX(); + var42.setVisible(false); + var42.nextFocus(); + var42.repaint(1L); + SpaceWar.SpacePanel var49 = new SpaceWar.SpacePanel(); + float var50 = var49.getAlignmentX(); + var49.setVisible(false); + boolean var53 = var49.isDoubleBuffered(); + var49.list(); + SpaceWar.SpacePanel var55 = new SpaceWar.SpacePanel(); + float var56 = var55.getAlignmentX(); + var55.setVisible(false); + boolean var59 = var55.isDoubleBuffered(); + java.awt.dnd.DropTarget var60 = var55.getDropTarget(); + var55.show(false); + java.awt.Rectangle var63 = var55.getVisibleRect(); + java.awt.Rectangle var64 = var49.getBounds(var63); + var42.setBounds(var64); + var24.paintImmediately(var64); + var13.setBounds(var64); + SpaceWar.SpacePanel var68 = new SpaceWar.SpacePanel(); + float var69 = var68.getAlignmentX(); + var68.setVisible(false); + SpaceWar.SpacePanel var72 = new SpaceWar.SpacePanel(); + java.awt.Color var73 = var72.getBackground(); + var68.setForeground(var73); + SpaceWar.SpacePanel var75 = new SpaceWar.SpacePanel(); + float var76 = var75.getAlignmentX(); + var75.setVisible(false); + boolean var79 = var75.isDoubleBuffered(); + java.awt.dnd.DropTarget var80 = var75.getDropTarget(); + var75.show(false); + java.awt.Rectangle var83 = var75.getVisibleRect(); + var68.repaint(var83); + java.awt.Component.BaselineResizeBehavior var85 = var68.getBaselineResizeBehavior(); + var0.add((java.awt.Component)var13, (java.lang.Object)var85); + boolean var87 = var0.isFocusable(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var4); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var21); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var23); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var29); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var32 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var35 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var36); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var39); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var41); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var43 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var50 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var53 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var56 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var59 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var60); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var63); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var64); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var69 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var73); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var76 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var79 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var80); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var83); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var85); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var87 == true); + + } + + public void test272() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test272"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + SpaceWar.SpacePanel var5 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + java.awt.Color var7 = var6.getBackground(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + var8.nextFocus(); + var8.updateUI(); + var8.enableInputMethods(true); + var5.add((java.awt.Component)var6, (java.lang.Object)true); + java.awt.Dimension var17 = var6.getPreferredSize(); + var0.setMaximumSize(var17); + java.awt.Dimension var19 = var0.preferredSize(); + SpaceWar.SpacePanel var21 = new SpaceWar.SpacePanel(); + java.awt.Color var22 = var21.getBackground(); + var21.repaint(); + java.awt.im.InputMethodRequests var24 = var21.getInputMethodRequests(); + int var25 = var21.countComponents(); + java.awt.event.ComponentListener[] var26 = var21.getComponentListeners(); + var21.removeNotify(); + javax.swing.InputMap var28 = var21.getInputMap(); + // The following exception was thrown during execution. + // This behavior will recorded for regression testing. + try { + var0.setInputMap(25, var28); + fail("Expected exception of type java.lang.IllegalArgumentException"); + } catch (java.lang.IllegalArgumentException e) { + // Expected exception. + } + + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var28); + + } + + public void test273() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test273"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + var0.show(false); + boolean var8 = var0.isPaintingForPrint(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var15 = var9.getMouseListeners(); + int var16 = var9.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var17 = var9.getInputMethodRequests(); + var0.addKeyListener((java.awt.event.KeyListener)var9); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + float var20 = var19.getAlignmentX(); + var19.setVisible(false); + boolean var23 = var19.isDoubleBuffered(); + var19.list(); + float var25 = var19.getAlignmentY(); + boolean var26 = var9.isFocusCycleRoot((java.awt.Container)var19); + var19.firePropertyChange("", 1L, 1L); + var19.setAutoscrolls(false); + var19.reshape(0, 1, 100, 100); + boolean var38 = var19.getVerifyInputWhenFocusTarget(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var38 == true); + + } + + public void test274() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test274"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + boolean var2 = var0.hasFocus(); + boolean var3 = var0.isPreferredSizeSet(); + var0.firePropertyChange("", (short)1, (short)0); + boolean var8 = var0.isMaximumSizeSet(); + java.awt.peer.ComponentPeer var9 = var0.getPeer(); + SpaceWar.SpacePanel var10 = new SpaceWar.SpacePanel(); + float var11 = var10.getAlignmentX(); + var10.setVisible(false); + boolean var14 = var10.isDoubleBuffered(); + java.awt.dnd.DropTarget var15 = var10.getDropTarget(); + var10.show(false); + SpaceWar.SpacePanel var18 = new SpaceWar.SpacePanel(); + float var19 = var18.getAlignmentX(); + var18.setVisible(false); + SpaceWar.SpacePanel var22 = new SpaceWar.SpacePanel(); + java.awt.Color var23 = var22.getBackground(); + var18.setForeground(var23); + SpaceWar.SpacePanel var25 = new SpaceWar.SpacePanel(); + float var26 = var25.getAlignmentX(); + var25.setVisible(false); + boolean var29 = var25.isDoubleBuffered(); + java.awt.dnd.DropTarget var30 = var25.getDropTarget(); + var25.show(false); + java.awt.Rectangle var33 = var25.getVisibleRect(); + var18.repaint(var33); + java.awt.FocusTraversalPolicy var35 = var18.getFocusTraversalPolicy(); + java.awt.im.InputMethodRequests var36 = var18.getInputMethodRequests(); + var18.layout(); + SpaceWar.SpacePanel var38 = new SpaceWar.SpacePanel(); + float var39 = var38.getAlignmentX(); + var38.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var44 = new SpaceWar.SpacePanel(); + float var45 = var44.getAlignmentX(); + var44.setVisible(false); + SpaceWar.SpacePanel var48 = new SpaceWar.SpacePanel(); + java.awt.Color var49 = var48.getBackground(); + var44.setForeground(var49); + var38.setBackground(var49); + var18.setForeground(var49); + int var53 = var18.getWidth(); + javax.swing.plaf.PanelUI var54 = var18.getUI(); + var10.setUI(var54); + var0.setUI(var54); + java.awt.event.MouseListener[] var57 = var0.getMouseListeners(); + SpaceWar.SpacePanel var58 = new SpaceWar.SpacePanel(); + float var59 = var58.getAlignmentX(); + var58.setVisible(false); + boolean var62 = var58.isDoubleBuffered(); + var58.list(); + SpaceWar.SpacePanel var64 = new SpaceWar.SpacePanel(); + float var65 = var64.getAlignmentX(); + var64.setVisible(false); + boolean var68 = var64.isDoubleBuffered(); + java.awt.dnd.DropTarget var69 = var64.getDropTarget(); + var64.show(false); + java.awt.Rectangle var72 = var64.getVisibleRect(); + java.awt.Rectangle var73 = var58.getBounds(var72); + javax.swing.JToolTip var74 = var58.createToolTip(); + java.awt.Dimension var75 = var58.minimumSize(); + boolean var77 = var58.requestFocus(false); + java.awt.Dimension var78 = var58.minimumSize(); + // The following exception was thrown during execution. + // This behavior will recorded for regression testing. + try { + java.awt.Component var80 = var0.add((java.awt.Component)var58, 2); + fail("Expected exception of type java.lang.IllegalArgumentException"); + } catch (java.lang.IllegalArgumentException e) { + // Expected exception. + } + + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var2 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var9); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var23); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var29 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var30); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var33); + + // Regression assertion (captures the current behavior of the code) + assertNull(var35); + + // Regression assertion (captures the current behavior of the code) + assertNull(var36); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var39 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var45 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var49); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var53 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var54); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var57); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var59 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var62 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var65 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var68 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var69); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var72); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var73); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var74); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var75); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var77 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var78); + + } + + public void test275() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test275"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + java.awt.im.InputMethodRequests var3 = var0.getInputMethodRequests(); + int var4 = var0.countComponents(); + java.awt.event.ComponentListener[] var5 = var0.getComponentListeners(); + var0.removeNotify(); + javax.swing.InputMap var7 = var0.getInputMap(); + int var8 = var0.getDebugGraphicsOptions(); + java.awt.Graphics var9 = var0.getGraphics(); + var0.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", (short)(-1), (short)100); + boolean var14 = var0.isEnabled(); + java.awt.image.BufferedImage var16 = var0.loadImg(""); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var9); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var16); + + } + + public void test276() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test276"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + var0.show(false); + boolean var8 = var0.isPaintingForPrint(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var15 = var9.getMouseListeners(); + int var16 = var9.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var17 = var9.getInputMethodRequests(); + var0.addKeyListener((java.awt.event.KeyListener)var9); + var9.firePropertyChange("", (short)0, (short)0); + java.awt.event.MouseMotionListener[] var23 = var9.getMouseMotionListeners(); + boolean var24 = var9.isValidateRoot(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var23); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var24 == false); + + } + + public void test277() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test277"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.requestFocus(); + boolean var6 = var0.isBackgroundSet(); + SpaceWar.SpacePanel var7 = new SpaceWar.SpacePanel(); + java.awt.Color var8 = var7.getBackground(); + var7.repaint(); + var7.setRequestFocusEnabled(false); + var7.reshape(100, 0, 100, 0); + SpaceWar.SpacePanel var17 = new SpaceWar.SpacePanel(); + float var18 = var17.getAlignmentX(); + var17.setVisible(false); + var17.setInheritsPopupMenu(false); + boolean var23 = var17.isDoubleBuffered(); + SpaceWar.SpacePanel var24 = new SpaceWar.SpacePanel(); + float var25 = var24.getAlignmentX(); + var24.setVisible(false); + var24.nextFocus(); + var24.reshape((-1), 1, (-1), 10); + var24.disable(); + java.awt.LayoutManager var35 = var24.getLayout(); + var17.setLayout(var35); + var0.add((java.awt.Component)var7, (java.lang.Object)var35); + SpaceWar.SpacePanel var38 = new SpaceWar.SpacePanel(); + float var39 = var38.getAlignmentX(); + var38.setVisible(false); + java.awt.Dimension var42 = var38.getPreferredSize(); + java.awt.Toolkit var43 = var38.getToolkit(); + boolean var44 = var38.isFocusable(); + javax.swing.KeyStroke[] var45 = var38.getRegisteredKeyStrokes(); + SpaceWar.SpacePanel var46 = new SpaceWar.SpacePanel(); + float var47 = var46.getAlignmentX(); + SpaceWar.SpacePanel var48 = new SpaceWar.SpacePanel(); + float var49 = var48.getAlignmentX(); + var48.setVisible(false); + java.awt.Dimension var52 = var48.getPreferredSize(); + boolean var53 = var48.getVerifyInputWhenFocusTarget(); + java.awt.Component var56 = var48.findComponentAt(10, 1); + var46.addKeyListener((java.awt.event.KeyListener)var48); + var48.repaint(100, (-1), (-1), 1); + boolean var63 = var38.isAncestorOf((java.awt.Component)var48); + var38.setFocusable(false); + boolean var66 = var7.isAncestorOf((java.awt.Component)var38); + boolean var67 = var7.isFocusTraversalPolicySet(); + SpaceWar.SpacePanel var68 = new SpaceWar.SpacePanel(); + float var69 = var68.getAlignmentX(); + var68.setVisible(false); + boolean var72 = var68.isDoubleBuffered(); + var68.list(); + float var74 = var68.getAlignmentY(); + boolean var75 = var68.isOpaque(); + var68.nextFocus(); + java.awt.Component var77 = var68.getNextFocusableComponent(); + var7.remove((java.awt.Component)var68); + java.awt.Container var79 = var7.getFocusCycleRootAncestor(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var35); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var39 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var42); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var43); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var44 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var45); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var47 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var49 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var52); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var53 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var56); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var63 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var66 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var67 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var69 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var72 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var74 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var75 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var77); + + // Regression assertion (captures the current behavior of the code) + assertNull(var79); + + } + + public void test278() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test278"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + java.awt.Dimension var4 = var0.getPreferredSize(); + java.awt.Toolkit var5 = var0.getToolkit(); + boolean var6 = var0.isFocusable(); + javax.swing.KeyStroke[] var7 = var0.getRegisteredKeyStrokes(); + var0.setFocusCycleRoot(false); + SpaceWar.SpacePanel var10 = new SpaceWar.SpacePanel(); + java.awt.Color var11 = var10.getBackground(); + var10.repaint(); + javax.swing.plaf.PanelUI var13 = var10.getUI(); + SpaceWar.SpacePanel var14 = new SpaceWar.SpacePanel(); + float var15 = var14.getAlignmentX(); + var14.setVisible(false); + boolean var18 = var14.isDoubleBuffered(); + java.awt.dnd.DropTarget var19 = var14.getDropTarget(); + var14.show(false); + boolean var22 = var14.isPaintingForPrint(); + SpaceWar.SpacePanel var23 = new SpaceWar.SpacePanel(); + float var24 = var23.getAlignmentX(); + var23.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var29 = var23.getMouseListeners(); + int var30 = var23.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var31 = var23.getInputMethodRequests(); + var14.addKeyListener((java.awt.event.KeyListener)var23); + SpaceWar.SpacePanel var33 = new SpaceWar.SpacePanel(); + float var34 = var33.getAlignmentX(); + var33.setVisible(false); + boolean var37 = var33.isDoubleBuffered(); + var33.list(); + float var39 = var33.getAlignmentY(); + boolean var40 = var23.isFocusCycleRoot((java.awt.Container)var33); + SpaceWar.SpacePanel var42 = new SpaceWar.SpacePanel(); + float var43 = var42.getAlignmentX(); + var42.setVisible(false); + var42.nextFocus(); + var42.updateUI(); + java.awt.Component var48 = var23.add("", (java.awt.Component)var42); + java.awt.ComponentOrientation var49 = var42.getComponentOrientation(); + boolean var50 = var42.isFocusable(); + var10.remove((java.awt.Component)var42); + SpaceWar.SpacePanel var52 = new SpaceWar.SpacePanel(); + float var53 = var52.getAlignmentX(); + var52.setVisible(false); + var52.setInheritsPopupMenu(false); + boolean var58 = var52.isDoubleBuffered(); + SpaceWar.SpacePanel var59 = new SpaceWar.SpacePanel(); + float var60 = var59.getAlignmentX(); + var59.setVisible(false); + var59.nextFocus(); + var59.reshape((-1), 1, (-1), 10); + var59.disable(); + java.awt.LayoutManager var70 = var59.getLayout(); + var52.setLayout(var70); + var0.add((java.awt.Component)var10, (java.lang.Object)var70); + var10.setDebugGraphicsOptions(3); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var4); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var22 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var24 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var29); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var30 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var31); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var34 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var39 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var40 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var43 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var48); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var49); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var50 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var53 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var58 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var60 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var70); + + } + + public void test279() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test279"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var6 = var0.getUI(); + java.awt.im.InputMethodRequests var7 = var0.getInputMethodRequests(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + var8.nextFocus(); + var8.updateUI(); + var8.enableInputMethods(true); + var8.setSize((-1), 1); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + var19.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var0.add((java.awt.Component)var8, (java.lang.Object)"SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + java.awt.event.KeyListener[] var25 = var0.getKeyListeners(); + java.awt.FocusTraversalPolicy var26 = var0.getFocusTraversalPolicy(); + java.awt.Component var29 = var0.locate(3, 100); + boolean var32 = var0.contains(1, 400); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var25); + + // Regression assertion (captures the current behavior of the code) + assertNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertNull(var29); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var32 == false); + + } + + public void test280() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test280"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + float var7 = var6.getAlignmentX(); + var6.setVisible(false); + SpaceWar.SpacePanel var10 = new SpaceWar.SpacePanel(); + java.awt.Color var11 = var10.getBackground(); + var6.setForeground(var11); + var0.setBackground(var11); + var0.grabFocus(); + SpaceWar.SpacePanel var15 = new SpaceWar.SpacePanel(); + float var16 = var15.getAlignmentX(); + var15.setVisible(false); + boolean var19 = var15.isDoubleBuffered(); + java.awt.dnd.DropTarget var20 = var15.getDropTarget(); + boolean var21 = var15.isFocusCycleRoot(); + SpaceWar.SpacePanel var22 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var23 = new SpaceWar.SpacePanel(); + java.awt.Color var24 = var23.getBackground(); + SpaceWar.SpacePanel var25 = new SpaceWar.SpacePanel(); + float var26 = var25.getAlignmentX(); + var25.setVisible(false); + var25.nextFocus(); + var25.updateUI(); + var25.enableInputMethods(true); + var22.add((java.awt.Component)var23, (java.lang.Object)true); + java.awt.Dimension var34 = var23.getPreferredSize(); + var15.setSize(var34); + var0.setMaximumSize(var34); + float var37 = var0.getAlignmentY(); + java.awt.Container var38 = var0.getParent(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var34); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNull(var38); + + } + + public void test281() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test281"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.repaint(1L); + SpaceWar.SpacePanel var7 = new SpaceWar.SpacePanel(); + float var8 = var7.getAlignmentX(); + var7.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var13 = new SpaceWar.SpacePanel(); + float var14 = var13.getAlignmentX(); + var13.setVisible(false); + java.awt.Dimension var17 = var13.getPreferredSize(); + var7.setMaximumSize(var17); + var0.setPreferredSize(var17); + javax.swing.plaf.PanelUI var20 = var0.getUI(); + SpaceWar.SpacePanel var21 = new SpaceWar.SpacePanel(); + float var22 = var21.getAlignmentX(); + var21.setVisible(false); + SpaceWar.SpacePanel var25 = new SpaceWar.SpacePanel(); + java.awt.Color var26 = var25.getBackground(); + var21.setForeground(var26); + SpaceWar.SpacePanel var28 = new SpaceWar.SpacePanel(); + float var29 = var28.getAlignmentX(); + var28.setVisible(false); + boolean var32 = var28.isDoubleBuffered(); + java.awt.dnd.DropTarget var33 = var28.getDropTarget(); + var28.show(false); + java.awt.Rectangle var36 = var28.getVisibleRect(); + var21.repaint(var36); + java.awt.FocusTraversalPolicy var38 = var21.getFocusTraversalPolicy(); + var21.resetKeyboardActions(); + SpaceWar.SpacePanel var40 = new SpaceWar.SpacePanel(); + float var41 = var40.getAlignmentX(); + var40.setVisible(false); + boolean var44 = var40.isDoubleBuffered(); + java.awt.dnd.DropTarget var45 = var40.getDropTarget(); + var40.show(false); + java.awt.Rectangle var48 = var40.getVisibleRect(); + var21.computeVisibleRect(var48); + javax.swing.ActionMap var50 = var21.getActionMap(); + var0.setActionMap(var50); + int var52 = var0.getDebugGraphicsOptions(); + // The following exception was thrown during execution. + // This behavior will recorded for regression testing. + try { + java.awt.Point var53 = var0.getLocationOnScreen(); + fail("Expected exception of type java.awt.IllegalComponentStateException"); + } catch (java.awt.IllegalComponentStateException e) { + // Expected exception. + } + + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var22 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var29 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var32 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var33); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var36); + + // Regression assertion (captures the current behavior of the code) + assertNull(var38); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var41 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var44 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var45); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var48); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var50); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var52 == 0); + + } + + public void test282() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test282"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + var0.list(); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + float var7 = var6.getAlignmentX(); + var6.setVisible(false); + boolean var10 = var6.isDoubleBuffered(); + java.awt.dnd.DropTarget var11 = var6.getDropTarget(); + var6.show(false); + java.awt.Rectangle var14 = var6.getVisibleRect(); + java.awt.Rectangle var15 = var0.getBounds(var14); + javax.swing.JToolTip var16 = var0.createToolTip(); + var0.firePropertyChange("", false, false); + var0.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", (-1L), (-1L)); + java.beans.VetoableChangeListener[] var25 = var0.getVetoableChangeListeners(); + java.awt.Dimension var26 = var0.size(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var25); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var26); + + } + + public void test283() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test283"); + + + SpaceWar.Player var0 = new SpaceWar.Player(); + var0.increasePower(25); + int var3 = var0.getR(); + int var4 = var0.getScore(); + var0.loseLife(); + boolean var6 = var0.isRecovering(); + var0.setFiring(false); + int var9 = var0.getScore(); + var0.setLeft(true); + var0.setScore(499); + var0.setUp(false); + var0.setFiring(false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == 25); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0); + + } + + public void test284() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test284"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + var0.setRequestFocusEnabled(false); + var0.removeAll(); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + float var7 = var6.getAlignmentX(); + var6.setVisible(false); + boolean var10 = var6.isDoubleBuffered(); + java.awt.dnd.DropTarget var11 = var6.getDropTarget(); + var6.show(false); + boolean var14 = var6.isPaintingForPrint(); + SpaceWar.SpacePanel var15 = new SpaceWar.SpacePanel(); + float var16 = var15.getAlignmentX(); + var15.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var21 = var15.getMouseListeners(); + int var22 = var15.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var23 = var15.getInputMethodRequests(); + var6.addKeyListener((java.awt.event.KeyListener)var15); + SpaceWar.SpacePanel var25 = new SpaceWar.SpacePanel(); + float var26 = var25.getAlignmentX(); + var25.setVisible(false); + boolean var29 = var25.isDoubleBuffered(); + var25.list(); + float var31 = var25.getAlignmentY(); + boolean var32 = var15.isFocusCycleRoot((java.awt.Container)var25); + SpaceWar.SpacePanel var34 = new SpaceWar.SpacePanel(); + float var35 = var34.getAlignmentX(); + var34.setVisible(false); + var34.nextFocus(); + var34.updateUI(); + java.awt.Component var40 = var15.add("", (java.awt.Component)var34); + boolean var41 = var0.isAncestorOf((java.awt.Component)var34); + boolean var43 = var34.requestFocus(true); + java.awt.Component var46 = var34.getComponentAt(499, (-1)); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var21); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var22 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var23); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var29 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var31 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var32 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var35 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var40); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var41 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var43 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var46); + + } + + public void test285() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test285"); + + + SpaceWar.Text var4 = new SpaceWar.Text(323.62099822147866d, 24.0d, 10L, "SpaceWar.SpacePanel[,0,0,0x0,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + + } + + public void test286() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test286"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.setInheritsPopupMenu(false); + var0.setFocusTraversalPolicyProvider(true); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + boolean var12 = var8.isDoubleBuffered(); + var8.list(); + SpaceWar.SpacePanel var14 = new SpaceWar.SpacePanel(); + float var15 = var14.getAlignmentX(); + var14.setVisible(false); + boolean var18 = var14.isDoubleBuffered(); + java.awt.dnd.DropTarget var19 = var14.getDropTarget(); + var14.show(false); + java.awt.Rectangle var22 = var14.getVisibleRect(); + java.awt.Rectangle var23 = var8.getBounds(var22); + javax.swing.JToolTip var24 = var8.createToolTip(); + var0.removeKeyListener((java.awt.event.KeyListener)var8); + boolean var26 = var8.isValid(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var23); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == false); + + } + + public void test287() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test287"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + var0.show(false); + boolean var8 = var0.isPaintingForPrint(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var15 = var9.getMouseListeners(); + int var16 = var9.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var17 = var9.getInputMethodRequests(); + var0.addKeyListener((java.awt.event.KeyListener)var9); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + float var20 = var19.getAlignmentX(); + var19.setVisible(false); + boolean var23 = var19.isDoubleBuffered(); + var19.list(); + float var25 = var19.getAlignmentY(); + boolean var26 = var9.isFocusCycleRoot((java.awt.Container)var19); + SpaceWar.SpacePanel var28 = new SpaceWar.SpacePanel(); + float var29 = var28.getAlignmentX(); + var28.setVisible(false); + var28.nextFocus(); + var28.updateUI(); + java.awt.Component var34 = var9.add("", (java.awt.Component)var28); + SpaceWar.SpacePanel var36 = new SpaceWar.SpacePanel(); + java.awt.Color var37 = var36.getBackground(); + var36.repaint(); + var36.setRequestFocusEnabled(false); + var36.reshape(100, 0, 100, 0); + var36.requestFocus(); + var36.firePropertyChange("hi!", '4', ' '); + java.awt.Point var51 = var36.getLocation(); + java.awt.Dimension var52 = var36.size(); + java.awt.Component var53 = var9.add("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", (java.awt.Component)var36); + java.awt.event.HierarchyListener[] var54 = var36.getHierarchyListeners(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var29 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var34); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var37); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var51); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var52); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var53); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var54); + + } + + public void test288() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test288"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + java.awt.Dimension var4 = var0.getPreferredSize(); + boolean var5 = var0.getVerifyInputWhenFocusTarget(); + java.awt.Component var8 = var0.findComponentAt(10, 1); + boolean var9 = var0.requestDefaultFocus(); + var0.setVerifyInputWhenFocusTarget(false); + boolean var12 = var0.isPaintingForPrint(); + boolean var13 = var0.getIgnoreRepaint(); + var0.resize(3, 2); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var4); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == false); + + } + + public void test289() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test289"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.reshape((-1), 1, (-1), 10); + java.lang.Object var10 = var0.getTreeLock(); + var0.resize(500, (-1)); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var10); + + } + + public void test290() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test290"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + java.awt.im.InputMethodRequests var3 = var0.getInputMethodRequests(); + var0.setDoubleBuffered(true); + var0.show(false); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + boolean var12 = var8.isDoubleBuffered(); + var8.enable(false); + boolean var15 = var8.getFocusTraversalKeysEnabled(); + SpaceWar.SpacePanel var16 = new SpaceWar.SpacePanel(); + float var17 = var16.getAlignmentX(); + var16.setVisible(false); + java.awt.Dimension var20 = var16.getPreferredSize(); + java.awt.Toolkit var21 = var16.getToolkit(); + boolean var22 = var16.isFocusable(); + javax.swing.KeyStroke[] var23 = var16.getRegisteredKeyStrokes(); + SpaceWar.SpacePanel var24 = new SpaceWar.SpacePanel(); + float var25 = var24.getAlignmentX(); + SpaceWar.SpacePanel var26 = new SpaceWar.SpacePanel(); + float var27 = var26.getAlignmentX(); + var26.setVisible(false); + java.awt.Dimension var30 = var26.getPreferredSize(); + boolean var31 = var26.getVerifyInputWhenFocusTarget(); + java.awt.Component var34 = var26.findComponentAt(10, 1); + var24.addKeyListener((java.awt.event.KeyListener)var26); + var26.repaint(100, (-1), (-1), 1); + boolean var41 = var16.isAncestorOf((java.awt.Component)var26); + var8.addKeyListener((java.awt.event.KeyListener)var26); + var26.hide(); + java.awt.event.MouseWheelListener[] var44 = var26.getMouseWheelListeners(); + var26.setLocation((-1), 500); + var26.nextFocus(); + java.awt.Rectangle var49 = var26.bounds(); + var26.repaint(400, 3, (-1), 0); + // The following exception was thrown during execution. + // This behavior will recorded for regression testing. + try { + java.awt.Component var56 = var0.add((java.awt.Component)var26, 3); + fail("Expected exception of type java.lang.IllegalArgumentException"); + } catch (java.lang.IllegalArgumentException e) { + // Expected exception. + } + + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var21); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var22 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var23); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var30); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var31 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var34); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var41 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var44); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var49); + + } + + public void test291() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test291"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + SpaceWar.SpacePanel var2 = new SpaceWar.SpacePanel(); + float var3 = var2.getAlignmentX(); + var2.setVisible(false); + java.awt.Dimension var6 = var2.getPreferredSize(); + boolean var7 = var2.getVerifyInputWhenFocusTarget(); + java.awt.Component var10 = var2.findComponentAt(10, 1); + var0.addKeyListener((java.awt.event.KeyListener)var2); + var2.repaint(100, (-1), (-1), 1); + SpaceWar.SpacePanel var17 = new SpaceWar.SpacePanel(); + java.awt.Color var18 = var17.getBackground(); + var17.repaint(); + java.awt.im.InputMethodRequests var20 = var17.getInputMethodRequests(); + java.awt.GraphicsConfiguration var21 = var17.getGraphicsConfiguration(); + var2.remove((java.awt.Component)var17); + java.awt.event.HierarchyBoundsListener[] var23 = var2.getHierarchyBoundsListeners(); + boolean var26 = var2.contains(25, 3); + SpaceWar.SpacePanel var27 = new SpaceWar.SpacePanel(); + float var28 = var27.getAlignmentX(); + var27.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var33 = var27.getUI(); + java.awt.im.InputMethodRequests var34 = var27.getInputMethodRequests(); + SpaceWar.SpacePanel var35 = new SpaceWar.SpacePanel(); + float var36 = var35.getAlignmentX(); + var35.setVisible(false); + var35.nextFocus(); + var35.updateUI(); + var35.enableInputMethods(true); + var35.setSize((-1), 1); + SpaceWar.SpacePanel var46 = new SpaceWar.SpacePanel(); + var46.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var27.add((java.awt.Component)var35, (java.lang.Object)"SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + var27.setAutoscrolls(false); + SpaceWar.SpacePanel var54 = new SpaceWar.SpacePanel(); + java.awt.Color var55 = var54.getBackground(); + var54.repaint(); + var54.setRequestFocusEnabled(false); + var54.setIgnoreRepaint(false); + boolean var61 = var54.requestFocusInWindow(); + float var62 = var54.getAlignmentY(); + java.awt.LayoutManager var63 = var54.getLayout(); + var27.setLayout(var63); + var2.setLayout(var63); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertNull(var21); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var23); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var28 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var33); + + // Regression assertion (captures the current behavior of the code) + assertNull(var34); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var36 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var55); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var61 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var62 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var63); + + } + + public void test292() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test292"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + var0.show(false); + boolean var8 = var0.isPaintingForPrint(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var15 = var9.getMouseListeners(); + int var16 = var9.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var17 = var9.getInputMethodRequests(); + var0.addKeyListener((java.awt.event.KeyListener)var9); + boolean var19 = var0.isDisplayable(); + boolean var20 = var0.isManagingFocus(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == false); + + } + + public void test293() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test293"); + + + SpaceWar.Text var4 = new SpaceWar.Text(10.0d, 0.0d, 10L, "SpaceWar.SpacePanel[,0,0,0x0,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + boolean var5 = var4.update(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == false); + + } + + public void test294() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test294"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + java.awt.Point var6 = var0.getMousePosition(); + java.lang.String var7 = var0.getUIClassID(); + var0.setAutoscrolls(true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var7 + "' != '" + "PanelUI"+ "'", var7.equals("PanelUI")); + + } + + public void test295() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test295"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.updateUI(); + var0.enableInputMethods(true); + java.awt.Point var8 = var0.location(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.setVisible(false); + var9.nextFocus(); + java.awt.Component var14 = var0.add((java.awt.Component)var9); + boolean var15 = var0.isRequestFocusEnabled(); + var0.setFocusCycleRoot(false); + SpaceWar.SpacePanel var18 = new SpaceWar.SpacePanel(); + float var19 = var18.getAlignmentX(); + var18.setVisible(false); + var18.nextFocus(); + var18.repaint(1L); + SpaceWar.SpacePanel var25 = new SpaceWar.SpacePanel(); + float var26 = var25.getAlignmentX(); + var25.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var31 = new SpaceWar.SpacePanel(); + float var32 = var31.getAlignmentX(); + var31.setVisible(false); + java.awt.Dimension var35 = var31.getPreferredSize(); + var25.setMaximumSize(var35); + var18.setPreferredSize(var35); + javax.swing.plaf.PanelUI var38 = var18.getUI(); + SpaceWar.SpacePanel var39 = new SpaceWar.SpacePanel(); + float var40 = var39.getAlignmentX(); + var39.setVisible(false); + var39.nextFocus(); + var39.reshape((-1), 1, (-1), 10); + var39.disable(); + java.awt.LayoutManager var50 = var39.getLayout(); + java.awt.Container var51 = var39.getParent(); + java.lang.String var52 = var39.getUIClassID(); + SpaceWar.Enemy var55 = new SpaceWar.Enemy(0, 10); + var18.add((java.awt.Component)var39, (java.lang.Object)10); + javax.swing.JToolTip var57 = var18.createToolTip(); + java.awt.Component var58 = var0.add((java.awt.Component)var57); + boolean var59 = var0.isMaximumSizeSet(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var32 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var35); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var38); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var40 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var50); + + // Regression assertion (captures the current behavior of the code) + assertNull(var51); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var52 + "' != '" + "PanelUI"+ "'", var52.equals("PanelUI")); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var57); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var58); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var59 == false); + + } + + public void test296() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test296"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + var0.setName(""); + java.awt.Toolkit var3 = var0.getToolkit(); + var0.setEnabled(false); + var0.removeNotify(); + java.lang.Object var7 = var0.getTreeLock(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var7); + + } + + public void test297() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test297"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + java.awt.im.InputMethodRequests var3 = var0.getInputMethodRequests(); + var0.setDoubleBuffered(true); + var0.setInheritsPopupMenu(false); + boolean var8 = var0.isFocusTraversalPolicySet(); + var0.transferFocusUpCycle(); + java.awt.image.BufferedImage var11 = var0.loadImg("SpaceWar.SpacePanel[,0,0,0x0,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + java.beans.PropertyChangeListener[] var12 = var0.getPropertyChangeListeners(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var12); + + } + + public void test298() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test298"); + + + SpaceWar.Player var0 = new SpaceWar.Player(); + var0.increasePower(25); + int var3 = var0.getScore(); + var0.setRigth(true); + var0.setLife(499); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == 0); + + } + + public void test299() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test299"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + var0.setRequestFocusEnabled(false); + var0.reshape(100, 0, 100, 0); + var0.requestFocus(); + var0.firePropertyChange("hi!", '4', ' '); + java.awt.Point var15 = var0.getLocation(); + java.awt.event.MouseWheelListener[] var16 = var0.getMouseWheelListeners(); + SpaceWar.SpacePanel var17 = new SpaceWar.SpacePanel(); + float var18 = var17.getAlignmentX(); + var17.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var23 = var17.getUI(); + var0.setUI(var23); + var0.firePropertyChange("PanelUI", (byte)(-1), (byte)1); + SpaceWar.SpacePanel var29 = new SpaceWar.SpacePanel(); + float var30 = var29.getAlignmentX(); + var29.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var35 = var29.getMouseListeners(); + int var36 = var29.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var37 = var29.getInputMethodRequests(); + java.lang.String var38 = var29.getToolTipText(); + boolean var39 = var29.isOpaque(); + java.awt.Color var40 = var29.getForeground(); + var0.setForeground(var40); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var23); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var30 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var35); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var36 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var37); + + // Regression assertion (captures the current behavior of the code) + assertNull(var38); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var39 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var40); + + } + + public void test300() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test300"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + java.awt.im.InputMethodRequests var3 = var0.getInputMethodRequests(); + var0.setDoubleBuffered(true); + var0.setInheritsPopupMenu(false); + javax.swing.InputMap var8 = var0.getInputMap(); + var0.doLayout(); + var0.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=1.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var8); + + } + + public void test301() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test301"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var1 = new SpaceWar.SpacePanel(); + java.awt.Color var2 = var1.getBackground(); + SpaceWar.SpacePanel var3 = new SpaceWar.SpacePanel(); + float var4 = var3.getAlignmentX(); + var3.setVisible(false); + var3.nextFocus(); + var3.updateUI(); + var3.enableInputMethods(true); + var0.add((java.awt.Component)var1, (java.lang.Object)true); + java.awt.Dimension var12 = var1.getPreferredSize(); + boolean var13 = var1.isValidateRoot(); + java.awt.image.BufferedImage var15 = var1.loadImg(""); + java.awt.im.InputMethodRequests var16 = var1.getInputMethodRequests(); + var1.setDebugGraphicsOptions(0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var2); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNull(var16); + + } + + public void test302() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test302"); + + + SpaceWar.Enemy var2 = new SpaceWar.Enemy(3, 500); + + } + + public void test303() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test303"); + + + SpaceWar.Enemy var2 = new SpaceWar.Enemy(0, 10); + var2.update(); + var2.update(); + + } + + public void test304() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test304"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.requestFocus(); + boolean var6 = var0.getInheritsPopupMenu(); + boolean var7 = var0.isFocusOwner(); + java.awt.Component var10 = var0.findComponentAt(499, 400); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var10); + + } + + public void test305() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test305"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + java.awt.im.InputMethodRequests var3 = var0.getInputMethodRequests(); + var0.setDoubleBuffered(true); + var0.setInheritsPopupMenu(false); + boolean var8 = var0.isFocusTraversalPolicySet(); + var0.transferFocusUpCycle(); + SpaceWar.SpacePanel var10 = new SpaceWar.SpacePanel(); + float var11 = var10.getAlignmentX(); + var10.setVisible(false); + boolean var14 = var10.isDoubleBuffered(); + java.awt.dnd.DropTarget var15 = var10.getDropTarget(); + var10.show(false); + java.awt.Rectangle var18 = var10.getVisibleRect(); + java.awt.image.BufferedImage var20 = var10.loadImg("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + java.awt.ComponentOrientation var21 = var10.getComponentOrientation(); + java.awt.Component var22 = var0.add((java.awt.Component)var10); + var22.repaint(1, 3, 400, 24); + boolean var28 = var22.isForegroundSet(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var21); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var28 == true); + + } + + public void test306() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test306"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + var0.setRequestFocusEnabled(false); + var0.reshape(100, 0, 100, 0); + var0.requestFocus(); + java.awt.Rectangle var11 = var0.getVisibleRect(); + java.awt.Rectangle var12 = var0.getBounds(); + java.awt.im.InputMethodRequests var13 = var0.getInputMethodRequests(); + boolean var14 = var0.requestFocusInWindow(); + java.awt.Point var16 = var0.getMousePosition(false); + SpaceWar.SpacePanel var17 = new SpaceWar.SpacePanel(); + float var18 = var17.getAlignmentX(); + var17.setVisible(false); + boolean var21 = var17.isDoubleBuffered(); + var17.list(); + float var23 = var17.getAlignmentY(); + java.awt.Insets var24 = var17.getInsets(); + SpaceWar.SpacePanel var25 = new SpaceWar.SpacePanel(); + float var26 = var25.getAlignmentX(); + var25.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var31 = new SpaceWar.SpacePanel(); + float var32 = var31.getAlignmentX(); + var31.setVisible(false); + java.awt.Dimension var35 = var31.getPreferredSize(); + var25.setMaximumSize(var35); + java.awt.Dimension var37 = var17.getSize(var35); + var17.setFocusTraversalKeysEnabled(false); + SpaceWar.SpacePanel var40 = new SpaceWar.SpacePanel(); + java.awt.Color var41 = var40.getBackground(); + var40.repaint(); + var40.setRequestFocusEnabled(false); + // The following exception was thrown during execution. + // This behavior will recorded for regression testing. + try { + var0.add((java.awt.Component)var17, (java.lang.Object)false, 400); + fail("Expected exception of type java.lang.IllegalArgumentException"); + } catch (java.lang.IllegalArgumentException e) { + // Expected exception. + } + + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var32 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var35); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var37); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var41); + + } + + public void test307() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test307"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + java.awt.im.InputMethodRequests var3 = var0.getInputMethodRequests(); + var0.setDoubleBuffered(true); + var0.setInheritsPopupMenu(false); + java.awt.Insets var8 = var0.insets(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var8); + + } + + public void test308() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test308"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + var0.setRequestFocusEnabled(false); + var0.reshape(100, 0, 100, 0); + var0.requestFocus(); + var0.firePropertyChange("hi!", '4', ' '); + java.awt.Point var15 = var0.getLocation(); + java.awt.event.MouseWheelListener[] var16 = var0.getMouseWheelListeners(); + SpaceWar.SpacePanel var17 = new SpaceWar.SpacePanel(); + float var18 = var17.getAlignmentX(); + var17.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var23 = var17.getUI(); + var0.setUI(var23); + var0.firePropertyChange("PanelUI", (byte)(-1), (byte)1); + var0.setFocusTraversalPolicyProvider(true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var23); + + } + + public void test309() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test309"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.setInheritsPopupMenu(false); + var0.move(10, 10); + var0.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var0.removeAll(); + var0.setInheritsPopupMenu(true); + boolean var18 = var0.inside(0, 500); + var0.requestFocus(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == false); + + } + + public void test310() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test310"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var1 = new SpaceWar.SpacePanel(); + java.awt.Color var2 = var1.getBackground(); + SpaceWar.SpacePanel var3 = new SpaceWar.SpacePanel(); + float var4 = var3.getAlignmentX(); + var3.setVisible(false); + var3.nextFocus(); + var3.updateUI(); + var3.enableInputMethods(true); + var0.add((java.awt.Component)var1, (java.lang.Object)true); + boolean var13 = var1.areFocusTraversalKeysSet(0); + boolean var14 = var1.isFocusable(); + var1.repaint(100L, 24, 25, 25, 2); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var2); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == true); + + } + + public void test311() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test311"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.reshape((-1), 1, (-1), 10); + var0.disable(); + java.awt.LayoutManager var11 = var0.getLayout(); + java.awt.Container var12 = var0.getParent(); + float var13 = var0.getAlignmentX(); + var0.transferFocusDownCycle(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == 0.5f); + + } + + public void test312() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test312"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var6 = var0.getUI(); + java.awt.im.InputMethodRequests var7 = var0.getInputMethodRequests(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + var8.nextFocus(); + var8.updateUI(); + var8.enableInputMethods(true); + var8.setSize((-1), 1); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + var19.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var0.add((java.awt.Component)var8, (java.lang.Object)"SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + java.awt.ComponentOrientation var25 = var8.getComponentOrientation(); + java.beans.VetoableChangeListener[] var26 = var8.getVetoableChangeListeners(); + int var27 = var8.getHeight(); + var8.enable(true); + boolean var30 = var8.isFocusTraversalPolicyProvider(); + var8.transferFocus(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var25); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == 1); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var30 == false); + + } + + public void test313() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test313"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.reshape((-1), 1, (-1), 10); + java.util.Set var11 = var0.getFocusTraversalKeys(3); + var0.firePropertyChange("SpaceWar.SpacePanel[,-1,1,-1x10,invalid,hidden,disabled,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", '4', ' '); + SpaceWar.SpacePanel var16 = new SpaceWar.SpacePanel(); + float var17 = var16.getAlignmentX(); + var16.setVisible(false); + var16.nextFocus(); + var16.repaint(1L); + SpaceWar.SpacePanel var23 = new SpaceWar.SpacePanel(); + float var24 = var23.getAlignmentX(); + var23.setVisible(false); + boolean var27 = var23.isDoubleBuffered(); + var23.list(); + SpaceWar.SpacePanel var29 = new SpaceWar.SpacePanel(); + float var30 = var29.getAlignmentX(); + var29.setVisible(false); + boolean var33 = var29.isDoubleBuffered(); + java.awt.dnd.DropTarget var34 = var29.getDropTarget(); + var29.show(false); + java.awt.Rectangle var37 = var29.getVisibleRect(); + java.awt.Rectangle var38 = var23.getBounds(var37); + var16.setBounds(var38); + SpaceWar.SpacePanel var40 = new SpaceWar.SpacePanel(); + float var41 = var40.getAlignmentX(); + var40.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var46 = var40.getMouseListeners(); + int var47 = var40.getDebugGraphicsOptions(); + java.awt.Color var48 = var40.getBackground(); + var16.setForeground(var48); + var0.setForeground(var48); + var0.setBounds(500, 3, 0, 24); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var24 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var30 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var33 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var34); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var37); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var38); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var41 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var46); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var47 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var48); + + } + + public void test314() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test314"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + java.awt.Dimension var4 = var0.getPreferredSize(); + java.awt.Toolkit var5 = var0.getToolkit(); + boolean var6 = var0.isFocusable(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + var8.nextFocus(); + var8.reshape((-1), 1, (-1), 10); + java.util.Set var19 = var8.getFocusTraversalKeys(3); + var0.setFocusTraversalKeys(1, var19); + SpaceWar.SpacePanel var21 = new SpaceWar.SpacePanel(); + float var22 = var21.getAlignmentX(); + var21.setVisible(false); + SpaceWar.SpacePanel var25 = new SpaceWar.SpacePanel(); + java.awt.Color var26 = var25.getBackground(); + var21.setForeground(var26); + SpaceWar.SpacePanel var28 = new SpaceWar.SpacePanel(); + float var29 = var28.getAlignmentX(); + var28.setVisible(false); + boolean var32 = var28.isDoubleBuffered(); + java.awt.dnd.DropTarget var33 = var28.getDropTarget(); + var28.show(false); + java.awt.Rectangle var36 = var28.getVisibleRect(); + var21.repaint(var36); + java.awt.FocusTraversalPolicy var38 = var21.getFocusTraversalPolicy(); + java.awt.im.InputMethodRequests var39 = var21.getInputMethodRequests(); + var21.layout(); + java.awt.Container var41 = var21.getFocusCycleRootAncestor(); + SpaceWar.SpacePanel var42 = new SpaceWar.SpacePanel(); + float var43 = var42.getAlignmentX(); + var42.setVisible(false); + boolean var46 = var42.isDoubleBuffered(); + var42.list(); + SpaceWar.SpacePanel var48 = new SpaceWar.SpacePanel(); + float var49 = var48.getAlignmentX(); + var48.setVisible(false); + boolean var52 = var48.isDoubleBuffered(); + java.awt.dnd.DropTarget var53 = var48.getDropTarget(); + var48.show(false); + java.awt.Rectangle var56 = var48.getVisibleRect(); + java.awt.Rectangle var57 = var42.getBounds(var56); + javax.swing.JToolTip var58 = var42.createToolTip(); + var42.firePropertyChange("", false, false); + var42.validate(); + SpaceWar.SpacePanel var64 = new SpaceWar.SpacePanel(); + float var65 = var64.getAlignmentX(); + var64.setVisible(false); + boolean var68 = var64.isDoubleBuffered(); + java.awt.dnd.DropTarget var69 = var64.getDropTarget(); + var64.show(false); + boolean var72 = var64.isPaintingForPrint(); + SpaceWar.SpacePanel var73 = new SpaceWar.SpacePanel(); + float var74 = var73.getAlignmentX(); + var73.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var79 = var73.getMouseListeners(); + int var80 = var73.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var81 = var73.getInputMethodRequests(); + var64.addKeyListener((java.awt.event.KeyListener)var73); + var73.repaint(); + java.awt.Point var84 = var73.location(); + java.awt.Component var85 = var42.getComponentAt(var84); + var21.setLocation(var84); + java.awt.Point var87 = var0.getLocation(var84); + java.awt.image.VolatileImage var90 = var0.createVolatileImage(500, 1); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var4); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var22 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var29 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var32 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var33); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var36); + + // Regression assertion (captures the current behavior of the code) + assertNull(var38); + + // Regression assertion (captures the current behavior of the code) + assertNull(var39); + + // Regression assertion (captures the current behavior of the code) + assertNull(var41); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var43 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var46 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var49 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var52 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var53); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var56); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var57); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var58); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var65 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var68 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var69); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var72 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var74 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var79); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var80 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var81); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var84); + + // Regression assertion (captures the current behavior of the code) + assertNull(var85); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var87); + + // Regression assertion (captures the current behavior of the code) + assertNull(var90); + + } + + public void test315() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test315"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + boolean var2 = var0.hasFocus(); + SpaceWar.SpacePanel var3 = new SpaceWar.SpacePanel(); + float var4 = var3.getAlignmentX(); + var3.setVisible(false); + var3.nextFocus(); + var3.reshape((-1), 1, (-1), 10); + var3.disable(); + java.awt.LayoutManager var14 = var3.getLayout(); + var3.setVisible(false); + var0.remove((java.awt.Component)var3); + java.beans.VetoableChangeListener[] var18 = var0.getVetoableChangeListeners(); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + float var20 = var19.getAlignmentX(); + var19.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var25 = var19.getUI(); + java.awt.im.InputMethodRequests var26 = var19.getInputMethodRequests(); + SpaceWar.SpacePanel var27 = new SpaceWar.SpacePanel(); + float var28 = var27.getAlignmentX(); + var27.setVisible(false); + var27.nextFocus(); + var27.updateUI(); + var27.enableInputMethods(true); + var27.setSize((-1), 1); + SpaceWar.SpacePanel var38 = new SpaceWar.SpacePanel(); + var38.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var19.add((java.awt.Component)var27, (java.lang.Object)"SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + SpaceWar.SpacePanel var44 = new SpaceWar.SpacePanel(); + float var45 = var44.getAlignmentX(); + var44.setVisible(false); + var44.setInheritsPopupMenu(false); + boolean var50 = var44.isDoubleBuffered(); + boolean var51 = var44.isMinimumSizeSet(); + SpaceWar.SpacePanel var52 = new SpaceWar.SpacePanel(); + float var53 = var52.getAlignmentX(); + var52.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var58 = new SpaceWar.SpacePanel(); + float var59 = var58.getAlignmentX(); + var58.setVisible(false); + java.awt.Dimension var62 = var58.getPreferredSize(); + var52.setMaximumSize(var62); + boolean var64 = var52.getVerifyInputWhenFocusTarget(); + javax.accessibility.AccessibleContext var65 = var52.getAccessibleContext(); + boolean var66 = var52.isDoubleBuffered(); + java.awt.Rectangle var67 = var52.getVisibleRect(); + var44.setBounds(var67); + java.awt.Rectangle var69 = var19.getBounds(var67); + var0.repaint(var69); + int var71 = var0.getWidth(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var2 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var25); + + // Regression assertion (captures the current behavior of the code) + assertNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var28 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var45 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var50 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var51 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var53 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var59 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var62); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var64 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var65); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var66 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var67); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var69); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var71 == 0); + + } + + public void test316() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test316"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.setInheritsPopupMenu(false); + var0.setFocusTraversalPolicyProvider(true); + var0.setLocation(1, 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + } + + public void test317() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test317"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + boolean var2 = var0.hasFocus(); + java.awt.Insets var3 = var0.getInsets(); + boolean var4 = var0.isFocusTraversalPolicyProvider(); + var0.firePropertyChange("", (byte)10, (byte)1); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + SpaceWar.SpacePanel var11 = new SpaceWar.SpacePanel(); + float var12 = var11.getAlignmentX(); + var11.setVisible(false); + java.awt.Dimension var15 = var11.getPreferredSize(); + boolean var16 = var11.getVerifyInputWhenFocusTarget(); + java.awt.Component var19 = var11.findComponentAt(10, 1); + var9.addKeyListener((java.awt.event.KeyListener)var11); + java.awt.Cursor var21 = var9.getCursor(); + var0.setCursor(var21); + // The following exception was thrown during execution. + // This behavior will recorded for regression testing. + try { + int var25 = var0.getBaseline((-1), 0); + fail("Expected exception of type java.lang.IllegalArgumentException"); + } catch (java.lang.IllegalArgumentException e) { + // Expected exception. + } + + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var2 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var21); + + } + + public void test318() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test318"); + + + SpaceWar.Player var0 = new SpaceWar.Player(); + var0.increasePower(25); + int var3 = var0.getR(); + int var4 = var0.getScore(); + var0.setFiring(false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == 25); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0); + + } + + public void test319() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test319"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + SpaceWar.SpacePanel var2 = new SpaceWar.SpacePanel(); + float var3 = var2.getAlignmentX(); + var2.setVisible(false); + java.awt.Dimension var6 = var2.getPreferredSize(); + boolean var7 = var2.getVerifyInputWhenFocusTarget(); + java.awt.Component var10 = var2.findComponentAt(10, 1); + var0.addKeyListener((java.awt.event.KeyListener)var2); + var2.repaint(100, (-1), (-1), 1); + SpaceWar.SpacePanel var17 = new SpaceWar.SpacePanel(); + java.awt.Color var18 = var17.getBackground(); + var17.repaint(); + java.awt.im.InputMethodRequests var20 = var17.getInputMethodRequests(); + java.awt.GraphicsConfiguration var21 = var17.getGraphicsConfiguration(); + var2.remove((java.awt.Component)var17); + var2.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", 0.0f, 1.0f); + java.awt.Component var29 = var2.findComponentAt(100, 3); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertNull(var21); + + // Regression assertion (captures the current behavior of the code) + assertNull(var29); + + } + + public void test320() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test320"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + boolean var5 = javax.swing.JComponent.isLightweightComponent((java.awt.Component)var0); + int var6 = var0.countComponents(); + java.awt.event.MouseListener[] var7 = var0.getMouseListeners(); + // The following exception was thrown during execution. + // This behavior will recorded for regression testing. + try { + java.awt.Component var9 = var0.getComponent(500); + fail("Expected exception of type java.lang.ArrayIndexOutOfBoundsException"); + } catch (java.lang.ArrayIndexOutOfBoundsException e) { + // Expected exception. + } + + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var7); + + } + + public void test321() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test321"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var6 = var0.getMouseListeners(); + java.awt.Dimension var7 = var0.getPreferredSize(); + java.util.Locale var8 = var0.getLocale(); + var0.setFocusable(true); + java.lang.String var11 = var0.getToolTipText(); + SpaceWar.SpacePanel var12 = new SpaceWar.SpacePanel(); + java.awt.Color var13 = var12.getBackground(); + var12.repaint(); + var12.setRequestFocusEnabled(false); + var12.reshape(100, 0, 100, 0); + var12.requestFocus(); + SpaceWar.SpacePanel var23 = new SpaceWar.SpacePanel(); + float var24 = var23.getAlignmentX(); + var23.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var29 = var23.getUI(); + java.awt.im.InputMethodRequests var30 = var23.getInputMethodRequests(); + SpaceWar.SpacePanel var31 = new SpaceWar.SpacePanel(); + float var32 = var31.getAlignmentX(); + var31.setVisible(false); + var31.nextFocus(); + var31.updateUI(); + var31.enableInputMethods(true); + var31.setSize((-1), 1); + SpaceWar.SpacePanel var42 = new SpaceWar.SpacePanel(); + var42.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var23.add((java.awt.Component)var31, (java.lang.Object)"SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + SpaceWar.SpacePanel var48 = new SpaceWar.SpacePanel(); + var48.setName(""); + java.awt.ComponentOrientation var51 = var48.getComponentOrientation(); + var23.applyComponentOrientation(var51); + var12.setComponentOrientation(var51); + SpaceWar.SpacePanel var54 = new SpaceWar.SpacePanel(); + float var55 = var54.getAlignmentX(); + var54.setVisible(false); + boolean var58 = var54.isDoubleBuffered(); + var54.list(); + SpaceWar.SpacePanel var60 = new SpaceWar.SpacePanel(); + float var61 = var60.getAlignmentX(); + var60.setVisible(false); + boolean var64 = var60.isDoubleBuffered(); + java.awt.dnd.DropTarget var65 = var60.getDropTarget(); + var60.show(false); + java.awt.Rectangle var68 = var60.getVisibleRect(); + java.awt.image.BufferedImage var70 = var60.loadImg("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + boolean var71 = var54.isAncestorOf((java.awt.Component)var60); + javax.swing.InputVerifier var72 = var60.getInputVerifier(); + java.awt.Dimension var73 = var60.minimumSize(); + var12.setSize(var73); + var0.setPreferredSize(var73); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var24 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var29); + + // Regression assertion (captures the current behavior of the code) + assertNull(var30); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var32 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var51); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var55 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var58 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var61 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var64 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var65); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var68); + + // Regression assertion (captures the current behavior of the code) + assertNull(var70); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var71 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var72); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var73); + + } + + public void test322() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test322"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + var0.setRequestFocusEnabled(false); + var0.reshape(100, 0, 100, 0); + var0.requestFocus(); + SpaceWar.SpacePanel var11 = new SpaceWar.SpacePanel(); + float var12 = var11.getAlignmentX(); + var11.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var17 = var11.getUI(); + java.awt.im.InputMethodRequests var18 = var11.getInputMethodRequests(); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + float var20 = var19.getAlignmentX(); + var19.setVisible(false); + var19.nextFocus(); + var19.updateUI(); + var19.enableInputMethods(true); + var19.setSize((-1), 1); + SpaceWar.SpacePanel var30 = new SpaceWar.SpacePanel(); + var30.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var11.add((java.awt.Component)var19, (java.lang.Object)"SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + SpaceWar.SpacePanel var36 = new SpaceWar.SpacePanel(); + var36.setName(""); + java.awt.ComponentOrientation var39 = var36.getComponentOrientation(); + var11.applyComponentOrientation(var39); + var0.setComponentOrientation(var39); + java.util.Locale var42 = var0.getLocale(); + var0.move((-1), 25); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var39); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var42); + + } + + public void test323() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test323"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + java.awt.im.InputMethodRequests var3 = var0.getInputMethodRequests(); + int var4 = var0.countComponents(); + java.awt.event.ComponentListener[] var5 = var0.getComponentListeners(); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + float var7 = var6.getAlignmentX(); + var6.removeNotify(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.setVisible(false); + boolean var13 = var9.isDoubleBuffered(); + var9.list(); + float var15 = var9.getAlignmentY(); + java.awt.Insets var16 = var9.getInsets(); + java.awt.Insets var17 = var6.getInsets(var16); + java.awt.Insets var18 = var0.getInsets(var17); + javax.swing.JPopupMenu var19 = var0.getComponentPopupMenu(); + java.awt.image.BufferedImage var21 = var0.loadImg("PanelUI"); + java.awt.image.BufferedImage var23 = var0.loadImg("PanelUI"); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertNull(var21); + + // Regression assertion (captures the current behavior of the code) + assertNull(var23); + + } + + public void test324() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test324"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var6 = var0.getUI(); + java.awt.im.InputMethodRequests var7 = var0.getInputMethodRequests(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + var8.nextFocus(); + var8.updateUI(); + var8.enableInputMethods(true); + var8.setSize((-1), 1); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + var19.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var0.add((java.awt.Component)var8, (java.lang.Object)"SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + java.awt.ComponentOrientation var25 = var8.getComponentOrientation(); + boolean var26 = var8.isMaximumSizeSet(); + SpaceWar.SpacePanel var27 = new SpaceWar.SpacePanel(); + float var28 = var27.getAlignmentX(); + var27.setVisible(false); + boolean var31 = var27.isDoubleBuffered(); + java.awt.dnd.DropTarget var32 = var27.getDropTarget(); + var27.show(false); + boolean var35 = var27.isPaintingForPrint(); + SpaceWar.SpacePanel var36 = new SpaceWar.SpacePanel(); + float var37 = var36.getAlignmentX(); + var36.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var42 = var36.getMouseListeners(); + int var43 = var36.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var44 = var36.getInputMethodRequests(); + var27.addKeyListener((java.awt.event.KeyListener)var36); + SpaceWar.SpacePanel var46 = new SpaceWar.SpacePanel(); + float var47 = var46.getAlignmentX(); + var46.setVisible(false); + boolean var50 = var46.isDoubleBuffered(); + var46.list(); + float var52 = var46.getAlignmentY(); + boolean var53 = var36.isFocusCycleRoot((java.awt.Container)var46); + boolean var54 = var46.isEnabled(); + java.awt.Dimension var55 = var46.getMaximumSize(); + var8.setMinimumSize(var55); + var8.disable(); + int var58 = var8.getComponentCount(); + // The following exception was thrown during execution. + // This behavior will recorded for regression testing. + try { + java.util.Set var60 = var8.getFocusTraversalKeys(400); + fail("Expected exception of type java.lang.IllegalArgumentException"); + } catch (java.lang.IllegalArgumentException e) { + // Expected exception. + } + + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var25); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var28 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var31 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var32); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var35 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var42); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var43 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var44); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var47 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var50 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var52 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var53 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var54 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var55); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var58 == 0); + + } + + public void test325() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test325"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + java.awt.im.InputMethodRequests var3 = var0.getInputMethodRequests(); + int var4 = var0.countComponents(); + java.awt.event.ComponentListener[] var5 = var0.getComponentListeners(); + var0.transferFocusBackward(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + boolean var12 = var8.isDoubleBuffered(); + var8.enable(false); + SpaceWar.SpacePanel var15 = new SpaceWar.SpacePanel(); + float var16 = var15.getAlignmentX(); + boolean var17 = var15.hasFocus(); + java.awt.Insets var18 = var15.getInsets(); + java.awt.Rectangle var19 = var15.bounds(); + var8.repaint(var19); + java.awt.Component var21 = var0.add("", (java.awt.Component)var8); + SpaceWar.SpacePanel var22 = new SpaceWar.SpacePanel(); + float var23 = var22.getAlignmentX(); + var22.setVisible(false); + var22.nextFocus(); + var22.updateUI(); + var22.enableInputMethods(true); + java.awt.Point var31 = var22.getMousePosition(false); + SpaceWar.SpacePanel var32 = new SpaceWar.SpacePanel(); + float var33 = var32.getAlignmentX(); + var32.setVisible(false); + boolean var36 = var32.isDoubleBuffered(); + var32.list(); + SpaceWar.SpacePanel var38 = new SpaceWar.SpacePanel(); + float var39 = var38.getAlignmentX(); + var38.setVisible(false); + boolean var42 = var38.isDoubleBuffered(); + java.awt.dnd.DropTarget var43 = var38.getDropTarget(); + var38.show(false); + java.awt.Rectangle var46 = var38.getVisibleRect(); + java.awt.Rectangle var47 = var32.getBounds(var46); + var22.scrollRectToVisible(var46); + var0.paintImmediately(var46); + java.awt.Insets var50 = var0.getInsets(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var21); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNull(var31); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var33 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var36 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var39 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var42 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var43); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var46); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var47); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var50); + + } + + public void test326() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test326"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + var0.setRequestFocusEnabled(false); + var0.setIgnoreRepaint(false); + var0.setDebugGraphicsOptions(3); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + } + + public void test327() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test327"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + SpaceWar.SpacePanel var2 = new SpaceWar.SpacePanel(); + float var3 = var2.getAlignmentX(); + var2.setVisible(false); + java.awt.Dimension var6 = var2.getPreferredSize(); + boolean var7 = var2.getVerifyInputWhenFocusTarget(); + java.awt.Component var10 = var2.findComponentAt(10, 1); + var0.addKeyListener((java.awt.event.KeyListener)var2); + var2.repaint(100, (-1), (-1), 1); + SpaceWar.SpacePanel var17 = new SpaceWar.SpacePanel(); + java.awt.Color var18 = var17.getBackground(); + var17.repaint(); + java.awt.im.InputMethodRequests var20 = var17.getInputMethodRequests(); + java.awt.GraphicsConfiguration var21 = var17.getGraphicsConfiguration(); + var2.remove((java.awt.Component)var17); + java.awt.Font var23 = var17.getFont(); + java.awt.im.InputMethodRequests var24 = var17.getInputMethodRequests(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertNull(var21); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var23); + + // Regression assertion (captures the current behavior of the code) + assertNull(var24); + + } + + public void test328() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test328"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + float var7 = var6.getAlignmentX(); + var6.setVisible(false); + java.awt.Dimension var10 = var6.getPreferredSize(); + var0.setMaximumSize(var10); + boolean var12 = var0.getVerifyInputWhenFocusTarget(); + javax.accessibility.AccessibleContext var13 = var0.getAccessibleContext(); + boolean var14 = var0.isDoubleBuffered(); + boolean var15 = var0.getAutoscrolls(); + var0.repaint(10L, (-1), 25, (-1), 100); + var0.updateUI(); + boolean var23 = var0.isBackgroundSet(); + SpaceWar.SpacePanel var24 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var25 = new SpaceWar.SpacePanel(); + java.awt.Color var26 = var25.getBackground(); + SpaceWar.SpacePanel var27 = new SpaceWar.SpacePanel(); + float var28 = var27.getAlignmentX(); + var27.setVisible(false); + var27.nextFocus(); + var27.updateUI(); + var27.enableInputMethods(true); + var24.add((java.awt.Component)var25, (java.lang.Object)true); + boolean var37 = var25.areFocusTraversalKeysSet(0); + SpaceWar.SpacePanel var38 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var39 = new SpaceWar.SpacePanel(); + java.awt.Color var40 = var39.getBackground(); + SpaceWar.SpacePanel var41 = new SpaceWar.SpacePanel(); + float var42 = var41.getAlignmentX(); + var41.setVisible(false); + var41.nextFocus(); + var41.updateUI(); + var41.enableInputMethods(true); + var38.add((java.awt.Component)var39, (java.lang.Object)true); + boolean var50 = var38.isMinimumSizeSet(); + java.awt.event.HierarchyListener[] var51 = var38.getHierarchyListeners(); + SpaceWar.SpacePanel var52 = new SpaceWar.SpacePanel(); + float var53 = var52.getAlignmentX(); + var52.setVisible(false); + SpaceWar.SpacePanel var56 = new SpaceWar.SpacePanel(); + java.awt.Color var57 = var56.getBackground(); + var52.setForeground(var57); + SpaceWar.SpacePanel var59 = new SpaceWar.SpacePanel(); + float var60 = var59.getAlignmentX(); + var59.setVisible(false); + boolean var63 = var59.isDoubleBuffered(); + java.awt.dnd.DropTarget var64 = var59.getDropTarget(); + var59.show(false); + java.awt.Rectangle var67 = var59.getVisibleRect(); + var52.repaint(var67); + java.awt.FocusTraversalPolicy var69 = var52.getFocusTraversalPolicy(); + java.awt.im.InputMethodRequests var70 = var52.getInputMethodRequests(); + var52.layout(); + boolean var72 = var52.isFocusTraversalPolicyProvider(); + java.lang.Object var73 = var38.getClientProperty((java.lang.Object)var72); + boolean var74 = var38.isFocusTraversable(); + var25.remove((java.awt.Component)var38); + SpaceWar.SpacePanel var76 = new SpaceWar.SpacePanel(); + java.awt.Color var77 = var76.getBackground(); + var76.repaint(); + var76.setRequestFocusEnabled(false); + var76.reshape(100, 0, 100, 0); + var76.requestFocus(); + java.awt.Rectangle var87 = var76.getVisibleRect(); + var38.repaint(var87); + var0.repaint(var87); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var28 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var40); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var42 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var50 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var51); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var53 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var57); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var60 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var63 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var64); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var67); + + // Regression assertion (captures the current behavior of the code) + assertNull(var69); + + // Regression assertion (captures the current behavior of the code) + assertNull(var70); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var72 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var73); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var74 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var77); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var87); + + } + + public void test329() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test329"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + var0.enable(false); + boolean var7 = var0.getFocusTraversalKeysEnabled(); + var0.setToolTipText("PanelUI"); + // The following exception was thrown during execution. + // This behavior will recorded for regression testing. + try { + boolean var11 = var0.areFocusTraversalKeysSet((-1)); + fail("Expected exception of type java.lang.IllegalArgumentException"); + } catch (java.lang.IllegalArgumentException e) { + // Expected exception. + } + + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == true); + + } + + public void test330() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test330"); + + + SpaceWar.Enemy var2 = new SpaceWar.Enemy(0, 100); + int var3 = var2.getR(); + java.awt.image.BufferedImage var5 = var2.loadImg("SpaceWar.SpacePanel[,0,0,0x0,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + var2.explode(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + } + + public void test331() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test331"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + java.awt.Rectangle var6 = var0.getVisibleRect(); + java.awt.event.MouseListener[] var7 = var0.getMouseListeners(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + boolean var12 = var8.isDoubleBuffered(); + java.awt.dnd.DropTarget var13 = var8.getDropTarget(); + boolean var14 = var8.isFocusCycleRoot(); + SpaceWar.SpacePanel var15 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var16 = new SpaceWar.SpacePanel(); + java.awt.Color var17 = var16.getBackground(); + SpaceWar.SpacePanel var18 = new SpaceWar.SpacePanel(); + float var19 = var18.getAlignmentX(); + var18.setVisible(false); + var18.nextFocus(); + var18.updateUI(); + var18.enableInputMethods(true); + var15.add((java.awt.Component)var16, (java.lang.Object)true); + java.awt.Dimension var27 = var16.getPreferredSize(); + var8.setSize(var27); + var8.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", (-1), 10); + SpaceWar.SpacePanel var33 = new SpaceWar.SpacePanel(); + float var34 = var33.getAlignmentX(); + var33.setVisible(false); + var33.nextFocus(); + var33.repaint(1L); + SpaceWar.SpacePanel var40 = new SpaceWar.SpacePanel(); + float var41 = var40.getAlignmentX(); + var40.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var46 = new SpaceWar.SpacePanel(); + float var47 = var46.getAlignmentX(); + var46.setVisible(false); + java.awt.Dimension var50 = var46.getPreferredSize(); + var40.setMaximumSize(var50); + var33.setPreferredSize(var50); + var8.setSize(var50); + javax.swing.plaf.PanelUI var54 = var8.getUI(); + var0.setUI(var54); + java.awt.image.VolatileImage var58 = var0.createVolatileImage(25, 2); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var27); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var34 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var41 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var47 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var50); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var54); + + // Regression assertion (captures the current behavior of the code) + assertNull(var58); + + } + + public void test332() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test332"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var1 = new SpaceWar.SpacePanel(); + java.awt.Color var2 = var1.getBackground(); + SpaceWar.SpacePanel var3 = new SpaceWar.SpacePanel(); + float var4 = var3.getAlignmentX(); + var3.setVisible(false); + var3.nextFocus(); + var3.updateUI(); + var3.enableInputMethods(true); + var0.add((java.awt.Component)var1, (java.lang.Object)true); + java.awt.Image var14 = var1.createImage(1, (-1)); + java.awt.event.MouseListener[] var15 = var1.getMouseListeners(); + var1.firePropertyChange("SpaceWar.SpacePanel[,-1,1,-1x10,invalid,hidden,disabled,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", 100.0d, 1.0d); + var1.setLocation(24, 3); + SpaceWar.SpacePanel var23 = new SpaceWar.SpacePanel(); + float var24 = var23.getAlignmentX(); + var23.setVisible(false); + boolean var27 = var23.isDoubleBuffered(); + java.awt.dnd.DropTarget var28 = var23.getDropTarget(); + var23.show(false); + boolean var31 = var23.isPaintingForPrint(); + SpaceWar.SpacePanel var32 = new SpaceWar.SpacePanel(); + float var33 = var32.getAlignmentX(); + var32.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var38 = var32.getMouseListeners(); + int var39 = var32.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var40 = var32.getInputMethodRequests(); + var23.addKeyListener((java.awt.event.KeyListener)var32); + SpaceWar.SpacePanel var42 = new SpaceWar.SpacePanel(); + float var43 = var42.getAlignmentX(); + var42.setVisible(false); + boolean var46 = var42.isDoubleBuffered(); + var42.list(); + float var48 = var42.getAlignmentY(); + boolean var49 = var32.isFocusCycleRoot((java.awt.Container)var42); + SpaceWar.SpacePanel var51 = new SpaceWar.SpacePanel(); + float var52 = var51.getAlignmentX(); + var51.setVisible(false); + var51.nextFocus(); + var51.updateUI(); + java.awt.Component var57 = var32.add("", (java.awt.Component)var51); + SpaceWar.SpacePanel var59 = new SpaceWar.SpacePanel(); + java.awt.Color var60 = var59.getBackground(); + var59.repaint(); + var59.setRequestFocusEnabled(false); + var59.reshape(100, 0, 100, 0); + var59.requestFocus(); + var59.firePropertyChange("hi!", '4', ' '); + java.awt.Point var74 = var59.getLocation(); + java.awt.Dimension var75 = var59.size(); + java.awt.Component var76 = var32.add("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", (java.awt.Component)var59); + java.awt.Point var77 = var76.getMousePosition(); + boolean var78 = var76.isValid(); + java.awt.Component var80 = var1.add(var76, 0); + SpaceWar.SpacePanel var81 = new SpaceWar.SpacePanel(); + float var82 = var81.getAlignmentX(); + var81.setVisible(false); + var81.setDoubleBuffered(true); + var81.repaint(0, 500, 2, 24); + java.awt.Cursor var92 = var81.getCursor(); + var80.setCursor(var92); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var2); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var24 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var28); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var31 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var33 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var38); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var39 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var40); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var43 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var46 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var48 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var49 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var52 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var57); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var60); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var74); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var75); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var76); + + // Regression assertion (captures the current behavior of the code) + assertNull(var77); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var78 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var80); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var82 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var92); + + } + + public void test333() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test333"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.reshape((-1), 1, (-1), 10); + var0.disable(); + java.awt.LayoutManager var11 = var0.getLayout(); + boolean var14 = var0.contains((-1), 0); + SpaceWar.SpacePanel var15 = new SpaceWar.SpacePanel(); + float var16 = var15.getAlignmentX(); + var15.setVisible(false); + var15.nextFocus(); + var15.updateUI(); + var15.enableInputMethods(true); + var15.setSize((-1), 1); + java.awt.Component var26 = var0.add((java.awt.Component)var15); + SpaceWar.SpacePanel var27 = new SpaceWar.SpacePanel(); + float var28 = var27.getAlignmentX(); + var27.setVisible(false); + var27.nextFocus(); + var27.updateUI(); + var27.enableInputMethods(true); + java.lang.String var35 = var27.toString(); + java.awt.FocusTraversalPolicy var36 = var27.getFocusTraversalPolicy(); + var15.removeKeyListener((java.awt.event.KeyListener)var27); + java.awt.Container var38 = var27.getParent(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var28 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var35 + "' != '" + "SpaceWar.SpacePanel[,0,0,0var35,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"+ "'", var35.equals("SpaceWar.SpacePanel[,0,0,0var35,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]")); + + // Regression assertion (captures the current behavior of the code) + assertNull(var36); + + // Regression assertion (captures the current behavior of the code) + assertNull(var38); + + } + + public void test334() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test334"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.setInheritsPopupMenu(false); + boolean var6 = var0.isMinimumSizeSet(); + java.awt.LayoutManager var7 = var0.getLayout(); + java.awt.event.HierarchyBoundsListener[] var8 = var0.getHierarchyBoundsListeners(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var8); + + } + + public void test335() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test335"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var6 = var0.getUI(); + java.awt.im.InputMethodRequests var7 = var0.getInputMethodRequests(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + var8.nextFocus(); + var8.updateUI(); + var8.enableInputMethods(true); + var8.setSize((-1), 1); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + var19.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var0.add((java.awt.Component)var8, (java.lang.Object)"SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + java.awt.ComponentOrientation var25 = var8.getComponentOrientation(); + java.beans.VetoableChangeListener[] var26 = var8.getVetoableChangeListeners(); + // The following exception was thrown during execution. + // This behavior will recorded for regression testing. + try { + boolean var28 = var8.areFocusTraversalKeysSet(499); + fail("Expected exception of type java.lang.IllegalArgumentException"); + } catch (java.lang.IllegalArgumentException e) { + // Expected exception. + } + + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var25); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var26); + + } + + public void test336() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test336"); + + + SpaceWar.Player var0 = new SpaceWar.Player(); + int var1 = var0.getPower(); + var0.setLeft(true); + var0.increasePower(0); + int var6 = var0.getR(); + int var7 = var0.getLives(); + int var8 = var0.getPowerLevel(); + int var9 = var0.getPower(); + int var10 = var0.getPowerLevel(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == 25); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 3); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0); + + } + + public void test337() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test337"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + var0.show(false); + boolean var8 = var0.isPaintingForPrint(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var15 = var9.getMouseListeners(); + int var16 = var9.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var17 = var9.getInputMethodRequests(); + var0.addKeyListener((java.awt.event.KeyListener)var9); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + float var20 = var19.getAlignmentX(); + var19.setVisible(false); + boolean var23 = var19.isDoubleBuffered(); + var19.list(); + float var25 = var19.getAlignmentY(); + boolean var26 = var9.isFocusCycleRoot((java.awt.Container)var19); + javax.swing.JPopupMenu var27 = var19.getComponentPopupMenu(); + var19.move((-1), 100); + var19.validate(); + java.awt.Toolkit var32 = var19.getToolkit(); + SpaceWar.SpacePanel var33 = new SpaceWar.SpacePanel(); + float var34 = var33.getAlignmentX(); + var33.setVisible(false); + boolean var37 = var33.isDoubleBuffered(); + SpaceWar.SpacePanel var38 = new SpaceWar.SpacePanel(); + java.awt.Color var39 = var38.getBackground(); + var38.repaint(); + java.lang.Object var41 = var33.getClientProperty((java.lang.Object)var38); + var38.repaint(10, 1, 25, 0); + var19.removeKeyListener((java.awt.event.KeyListener)var38); + // The following exception was thrown during execution. + // This behavior will recorded for regression testing. + try { + java.awt.Point var48 = var38.getLocationOnScreen(); + fail("Expected exception of type java.awt.IllegalComponentStateException"); + } catch (java.awt.IllegalComponentStateException e) { + // Expected exception. + } + + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var27); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var32); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var34 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var39); + + // Regression assertion (captures the current behavior of the code) + assertNull(var41); + + } + + public void test338() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test338"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + var0.enable(false); + boolean var7 = var0.getFocusTraversalKeysEnabled(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + java.awt.Dimension var12 = var8.getPreferredSize(); + java.awt.Toolkit var13 = var8.getToolkit(); + boolean var14 = var8.isFocusable(); + javax.swing.KeyStroke[] var15 = var8.getRegisteredKeyStrokes(); + SpaceWar.SpacePanel var16 = new SpaceWar.SpacePanel(); + float var17 = var16.getAlignmentX(); + SpaceWar.SpacePanel var18 = new SpaceWar.SpacePanel(); + float var19 = var18.getAlignmentX(); + var18.setVisible(false); + java.awt.Dimension var22 = var18.getPreferredSize(); + boolean var23 = var18.getVerifyInputWhenFocusTarget(); + java.awt.Component var26 = var18.findComponentAt(10, 1); + var16.addKeyListener((java.awt.event.KeyListener)var18); + var18.repaint(100, (-1), (-1), 1); + boolean var33 = var8.isAncestorOf((java.awt.Component)var18); + var0.addKeyListener((java.awt.event.KeyListener)var18); + java.awt.ComponentOrientation var35 = var0.getComponentOrientation(); + java.awt.ComponentOrientation var36 = var0.getComponentOrientation(); + var0.firePropertyChange("", 'a', '4'); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var33 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var35); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var36); + + } + + public void test339() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test339"); + + + SpaceWar.Enemy var2 = new SpaceWar.Enemy(0, 100); + int var3 = var2.getR(); + double var4 = var2.getX(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 241.4584513263457d); + + } + + public void test340() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test340"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.setInheritsPopupMenu(false); + var0.setFocusTraversalPolicyProvider(true); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + boolean var12 = var8.isDoubleBuffered(); + var8.list(); + SpaceWar.SpacePanel var14 = new SpaceWar.SpacePanel(); + float var15 = var14.getAlignmentX(); + var14.setVisible(false); + boolean var18 = var14.isDoubleBuffered(); + java.awt.dnd.DropTarget var19 = var14.getDropTarget(); + var14.show(false); + java.awt.Rectangle var22 = var14.getVisibleRect(); + java.awt.Rectangle var23 = var8.getBounds(var22); + javax.swing.JToolTip var24 = var8.createToolTip(); + var0.removeKeyListener((java.awt.event.KeyListener)var8); + javax.swing.TransferHandler var26 = var0.getTransferHandler(); + boolean var27 = var0.isPaintingForPrint(); + java.lang.String var28 = var0.getName(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var23); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var28); + + } + + public void test341() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test341"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + var0.setName(""); + // The following exception was thrown during execution. + // This behavior will recorded for regression testing. + try { + java.util.Set var4 = var0.getFocusTraversalKeys(500); + fail("Expected exception of type java.lang.IllegalArgumentException"); + } catch (java.lang.IllegalArgumentException e) { + // Expected exception. + } + + } + + public void test342() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test342"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + var0.show(false); + boolean var8 = var0.isPaintingForPrint(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var15 = var9.getMouseListeners(); + int var16 = var9.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var17 = var9.getInputMethodRequests(); + var0.addKeyListener((java.awt.event.KeyListener)var9); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + float var20 = var19.getAlignmentX(); + var19.setVisible(false); + boolean var23 = var19.isDoubleBuffered(); + var19.list(); + float var25 = var19.getAlignmentY(); + boolean var26 = var9.isFocusCycleRoot((java.awt.Container)var19); + SpaceWar.SpacePanel var28 = new SpaceWar.SpacePanel(); + float var29 = var28.getAlignmentX(); + var28.setVisible(false); + var28.nextFocus(); + var28.updateUI(); + java.awt.Component var34 = var9.add("", (java.awt.Component)var28); + java.lang.Object var35 = var34.getTreeLock(); + boolean var36 = var34.hasFocus(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var29 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var34); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var35); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var36 == false); + + } + + public void test343() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test343"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + SpaceWar.SpacePanel var4 = new SpaceWar.SpacePanel(); + java.awt.Color var5 = var4.getBackground(); + var0.setForeground(var5); + SpaceWar.SpacePanel var7 = new SpaceWar.SpacePanel(); + float var8 = var7.getAlignmentX(); + var7.setVisible(false); + boolean var11 = var7.isDoubleBuffered(); + java.awt.dnd.DropTarget var12 = var7.getDropTarget(); + var7.show(false); + java.awt.Rectangle var15 = var7.getVisibleRect(); + var0.repaint(var15); + java.awt.Component.BaselineResizeBehavior var17 = var0.getBaselineResizeBehavior(); + var0.firePropertyChange("SpaceWar.SpacePanel[,-1,1,-1x10,invalid,hidden,disabled,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", 1L, 1L); + boolean var22 = var0.isCursorSet(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var22 == false); + + } + + public void test344() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test344"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + var0.show(false); + boolean var8 = var0.isPaintingForPrint(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var15 = var9.getMouseListeners(); + int var16 = var9.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var17 = var9.getInputMethodRequests(); + var0.addKeyListener((java.awt.event.KeyListener)var9); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + float var20 = var19.getAlignmentX(); + var19.setVisible(false); + boolean var23 = var19.isDoubleBuffered(); + var19.list(); + float var25 = var19.getAlignmentY(); + boolean var26 = var9.isFocusCycleRoot((java.awt.Container)var19); + boolean var27 = var19.isEnabled(); + java.awt.Dimension var28 = var19.getMaximumSize(); + var19.disable(); + var19.updateUI(); + var19.setFocusable(false); + // The following exception was thrown during execution. + // This behavior will recorded for regression testing. + try { + java.awt.Point var33 = var19.getLocationOnScreen(); + fail("Expected exception of type java.awt.IllegalComponentStateException"); + } catch (java.awt.IllegalComponentStateException e) { + // Expected exception. + } + + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var28); + + } + + public void test345() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test345"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + boolean var2 = var0.hasFocus(); + boolean var3 = var0.isPreferredSizeSet(); + SpaceWar.SpacePanel var4 = new SpaceWar.SpacePanel(); + java.awt.Color var5 = var4.getBackground(); + var4.repaint(); + var4.setRequestFocusEnabled(false); + int var9 = var0.getComponentZOrder((java.awt.Component)var4); + int var10 = var0.getDebugGraphicsOptions(); + var0.enableInputMethods(true); + var0.setFocusTraversalPolicyProvider(true); + var0.transferFocusUpCycle(); + var0.disable(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var2 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == (-1)); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0); + + } + + public void test346() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test346"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.requestFocus(); + boolean var6 = var0.isBackgroundSet(); + SpaceWar.SpacePanel var7 = new SpaceWar.SpacePanel(); + java.awt.Color var8 = var7.getBackground(); + var7.repaint(); + var7.setRequestFocusEnabled(false); + var7.reshape(100, 0, 100, 0); + SpaceWar.SpacePanel var17 = new SpaceWar.SpacePanel(); + float var18 = var17.getAlignmentX(); + var17.setVisible(false); + var17.setInheritsPopupMenu(false); + boolean var23 = var17.isDoubleBuffered(); + SpaceWar.SpacePanel var24 = new SpaceWar.SpacePanel(); + float var25 = var24.getAlignmentX(); + var24.setVisible(false); + var24.nextFocus(); + var24.reshape((-1), 1, (-1), 10); + var24.disable(); + java.awt.LayoutManager var35 = var24.getLayout(); + var17.setLayout(var35); + var0.add((java.awt.Component)var7, (java.lang.Object)var35); + var0.setVerifyInputWhenFocusTarget(true); + java.awt.event.ContainerListener[] var40 = var0.getContainerListeners(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var35); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var40); + + } + + public void test347() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test347"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + java.awt.im.InputMethodRequests var3 = var0.getInputMethodRequests(); + var0.setDoubleBuffered(true); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + float var7 = var6.getAlignmentX(); + boolean var8 = var6.hasFocus(); + java.awt.Insets var9 = var6.getInsets(); + java.awt.Insets var10 = var0.getInsets(var9); + // The following exception was thrown during execution. + // This behavior will recorded for regression testing. + try { + java.awt.Point var11 = var0.getLocationOnScreen(); + fail("Expected exception of type java.awt.IllegalComponentStateException"); + } catch (java.awt.IllegalComponentStateException e) { + // Expected exception. + } + + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var9); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var10); + + } + + public void test348() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test348"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + boolean var2 = var0.hasFocus(); + boolean var3 = var0.isPreferredSizeSet(); + SpaceWar.SpacePanel var4 = new SpaceWar.SpacePanel(); + java.awt.Color var5 = var4.getBackground(); + var4.repaint(); + var4.setRequestFocusEnabled(false); + int var9 = var0.getComponentZOrder((java.awt.Component)var4); + java.awt.GraphicsConfiguration var10 = var4.getGraphicsConfiguration(); + boolean var11 = var4.isForegroundSet(); + boolean var12 = var4.isDisplayable(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var2 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == (-1)); + + // Regression assertion (captures the current behavior of the code) + assertNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == false); + + } + + public void test349() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test349"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + java.awt.Dimension var4 = var0.getPreferredSize(); + java.awt.Toolkit var5 = var0.getToolkit(); + java.awt.Toolkit var6 = var0.getToolkit(); + var0.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=1.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var4); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + } + + public void test350() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test350"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.updateUI(); + var0.enableInputMethods(true); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + boolean var10 = var8.hasFocus(); + java.awt.Insets var11 = var8.getInsets(); + java.awt.Insets var12 = var0.getInsets(var11); + boolean var13 = var0.isManagingFocus(); + java.awt.Image var16 = var0.createImage(1, 10); + java.awt.Rectangle var17 = var0.bounds(); + var0.transferFocusBackward(); + int var19 = var0.getHeight(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == 0); + + } + + public void test351() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test351"); + + + SpaceWar.Enemy var2 = new SpaceWar.Enemy(0, 100); + int var3 = var2.getR(); + var2.explode(); + int var5 = var2.getRank(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == 100); + + } + + public void test352() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test352"); + + + SpaceWar.Bullet var3 = new SpaceWar.Bullet(83.657626403857d, 1, 24); + double var4 = var3.getR(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 5.0d); + + } + + public void test353() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test353"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + var0.enable(false); + boolean var7 = var0.getFocusTraversalKeysEnabled(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + java.awt.Dimension var12 = var8.getPreferredSize(); + java.awt.Toolkit var13 = var8.getToolkit(); + boolean var14 = var8.isFocusable(); + javax.swing.KeyStroke[] var15 = var8.getRegisteredKeyStrokes(); + SpaceWar.SpacePanel var16 = new SpaceWar.SpacePanel(); + float var17 = var16.getAlignmentX(); + SpaceWar.SpacePanel var18 = new SpaceWar.SpacePanel(); + float var19 = var18.getAlignmentX(); + var18.setVisible(false); + java.awt.Dimension var22 = var18.getPreferredSize(); + boolean var23 = var18.getVerifyInputWhenFocusTarget(); + java.awt.Component var26 = var18.findComponentAt(10, 1); + var16.addKeyListener((java.awt.event.KeyListener)var18); + var18.repaint(100, (-1), (-1), 1); + boolean var33 = var8.isAncestorOf((java.awt.Component)var18); + var0.addKeyListener((java.awt.event.KeyListener)var18); + var18.hide(); + java.awt.event.MouseWheelListener[] var36 = var18.getMouseWheelListeners(); + var18.setLocation((-1), 500); + var18.nextFocus(); + java.awt.Rectangle var41 = var18.bounds(); + var18.repaint(25, 25, 499, (-1)); + java.awt.Dimension var47 = var18.size(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var33 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var36); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var41); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var47); + + } + + public void test354() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test354"); + + + SpaceWar.Enemy var2 = new SpaceWar.Enemy(0, 100); + int var3 = var2.getR(); + java.awt.image.BufferedImage var5 = var2.loadImg("SpaceWar.SpacePanel[,0,0,0x0,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + java.awt.image.BufferedImage var7 = var2.loadImg("SpaceWar.SpacePanel[,0,0,0x0,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertNull(var7); + + } + + public void test355() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test355"); + + + SpaceWar.Text var4 = new SpaceWar.Text(596.7541610319765d, 2.0d, 0L, "PanelUI"); + boolean var5 = var4.update(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == false); + + } + + public void test356() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test356"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + boolean var2 = var0.hasFocus(); + SpaceWar.SpacePanel var3 = new SpaceWar.SpacePanel(); + float var4 = var3.getAlignmentX(); + var3.setVisible(false); + var3.nextFocus(); + var3.reshape((-1), 1, (-1), 10); + var3.disable(); + java.awt.LayoutManager var14 = var3.getLayout(); + var3.setVisible(false); + var0.remove((java.awt.Component)var3); + var3.repaint(); + var3.firePropertyChange("SpaceWar.SpacePanel[,-1,1,-1x10,invalid,hidden,disabled,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", (-1L), 0L); + SpaceWar.SpacePanel var24 = new SpaceWar.SpacePanel(); + java.awt.Color var25 = var24.getBackground(); + var24.repaint(); + java.awt.im.InputMethodRequests var27 = var24.getInputMethodRequests(); + var24.setDoubleBuffered(true); + var24.setInheritsPopupMenu(false); + javax.swing.plaf.PanelUI var32 = var24.getUI(); + java.util.Set var34 = var24.getFocusTraversalKeys(3); + // The following exception was thrown during execution. + // This behavior will recorded for regression testing. + try { + var3.setFocusTraversalKeys(400, var34); + fail("Expected exception of type java.lang.IllegalArgumentException"); + } catch (java.lang.IllegalArgumentException e) { + // Expected exception. + } + + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var2 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var25); + + // Regression assertion (captures the current behavior of the code) + assertNull(var27); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var32); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var34); + + } + + public void test357() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test357"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + var0.list(); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + float var7 = var6.getAlignmentX(); + var6.setVisible(false); + boolean var10 = var6.isDoubleBuffered(); + java.awt.dnd.DropTarget var11 = var6.getDropTarget(); + var6.show(false); + java.awt.Rectangle var14 = var6.getVisibleRect(); + java.awt.Rectangle var15 = var0.getBounds(var14); + javax.swing.JToolTip var16 = var0.createToolTip(); + java.awt.Dimension var17 = var0.minimumSize(); + boolean var19 = var0.requestFocus(false); + java.awt.Dimension var20 = var0.minimumSize(); + SpaceWar.SpacePanel var21 = new SpaceWar.SpacePanel(); + float var22 = var21.getAlignmentX(); + var21.setVisible(false); + SpaceWar.SpacePanel var25 = new SpaceWar.SpacePanel(); + java.awt.Color var26 = var25.getBackground(); + var21.setForeground(var26); + SpaceWar.SpacePanel var28 = new SpaceWar.SpacePanel(); + float var29 = var28.getAlignmentX(); + var28.setVisible(false); + boolean var32 = var28.isDoubleBuffered(); + java.awt.dnd.DropTarget var33 = var28.getDropTarget(); + var28.show(false); + java.awt.Rectangle var36 = var28.getVisibleRect(); + var21.repaint(var36); + java.awt.FocusTraversalPolicy var38 = var21.getFocusTraversalPolicy(); + java.awt.im.InputMethodRequests var39 = var21.getInputMethodRequests(); + var21.layout(); + var21.setDebugGraphicsOptions(10); + SpaceWar.SpacePanel var43 = new SpaceWar.SpacePanel(); + float var44 = var43.getAlignmentX(); + var43.setVisible(false); + var43.nextFocus(); + var43.reshape((-1), 1, (-1), 10); + SpaceWar.SpacePanel var53 = new SpaceWar.SpacePanel(); + java.awt.Color var54 = var53.getBackground(); + var53.repaint(); + var53.setRequestFocusEnabled(false); + var53.reshape(100, 0, 100, 0); + java.awt.Component var63 = var43.add((java.awt.Component)var53); + SpaceWar.SpacePanel var64 = new SpaceWar.SpacePanel(); + var64.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + javax.swing.plaf.PanelUI var69 = var64.getUI(); + SpaceWar.SpacePanel var70 = new SpaceWar.SpacePanel(); + float var71 = var70.getAlignmentX(); + var70.setVisible(false); + var70.nextFocus(); + var70.repaint(1L); + SpaceWar.SpacePanel var77 = new SpaceWar.SpacePanel(); + float var78 = var77.getAlignmentX(); + var77.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var83 = new SpaceWar.SpacePanel(); + float var84 = var83.getAlignmentX(); + var83.setVisible(false); + java.awt.Dimension var87 = var83.getPreferredSize(); + var77.setMaximumSize(var87); + var70.setPreferredSize(var87); + var64.setMaximumSize(var87); + java.awt.Dimension var91 = var53.getSize(var87); + var21.setSize(var91); + var0.resize(var91); + var0.paintImmediately(0, 500, 25, (-1)); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var22 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var29 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var32 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var33); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var36); + + // Regression assertion (captures the current behavior of the code) + assertNull(var38); + + // Regression assertion (captures the current behavior of the code) + assertNull(var39); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var44 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var54); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var63); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var69); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var71 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var78 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var84 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var87); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var91); + + } + + public void test358() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test358"); + + + SpaceWar.Bullet var3 = new SpaceWar.Bullet(594.7973940347722d, 3, 100); + boolean var4 = var3.update(); + boolean var5 = var3.update(); + double var6 = var3.getR(); + double var7 = var3.getX(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == 5.0d); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == (-8.529389630162045d)); + + } + + public void test359() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test359"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + var0.setRequestFocusEnabled(false); + var0.reshape(100, 0, 100, 0); + var0.requestFocus(); + java.awt.Rectangle var11 = var0.getVisibleRect(); + java.awt.Rectangle var12 = var0.getBounds(); + java.awt.im.InputMethodRequests var13 = var0.getInputMethodRequests(); + boolean var14 = var0.requestFocusInWindow(); + java.awt.event.InputMethodListener[] var15 = var0.getInputMethodListeners(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + } + + public void test360() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test360"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + java.awt.Dimension var4 = var0.getPreferredSize(); + java.awt.Toolkit var5 = var0.getToolkit(); + boolean var6 = var0.isFocusable(); + javax.swing.KeyStroke[] var7 = var0.getRegisteredKeyStrokes(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + SpaceWar.SpacePanel var10 = new SpaceWar.SpacePanel(); + float var11 = var10.getAlignmentX(); + var10.setVisible(false); + java.awt.Dimension var14 = var10.getPreferredSize(); + boolean var15 = var10.getVerifyInputWhenFocusTarget(); + java.awt.Component var18 = var10.findComponentAt(10, 1); + var8.addKeyListener((java.awt.event.KeyListener)var10); + var10.repaint(100, (-1), (-1), 1); + boolean var25 = var0.isAncestorOf((java.awt.Component)var10); + java.awt.Point var26 = var0.location(); + boolean var27 = var0.getVerifyInputWhenFocusTarget(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var4); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == true); + + } + + public void test361() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test361"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.setInheritsPopupMenu(false); + var0.setFocusTraversalPolicyProvider(true); + java.awt.Container var8 = var0.getFocusCycleRootAncestor(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.removeNotify(); + SpaceWar.SpacePanel var12 = new SpaceWar.SpacePanel(); + float var13 = var12.getAlignmentX(); + var12.setVisible(false); + boolean var16 = var12.isDoubleBuffered(); + var12.list(); + float var18 = var12.getAlignmentY(); + java.awt.Insets var19 = var12.getInsets(); + java.awt.Insets var20 = var9.getInsets(var19); + java.awt.Insets var21 = var0.getInsets(var20); + boolean var22 = var0.isFocusTraversalPolicyProvider(); + boolean var23 = var0.requestDefaultFocus(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var21); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var22 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == false); + + } + + public void test362() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test362"); + + + SpaceWar.Bullet var3 = new SpaceWar.Bullet(594.7973940347722d, 3, 100); + double var4 = var3.getY(); + double var5 = var3.getR(); + double var6 = var3.getY(); + double var7 = var3.getX(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 100.0d); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == 5.0d); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == 100.0d); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 3.0d); + + } + + public void test363() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test363"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.setInheritsPopupMenu(false); + java.awt.im.InputContext var6 = var0.getInputContext(); + int var9 = var0.getBaseline(25, 25); + // The following exception was thrown during execution. + // This behavior will recorded for regression testing. + try { + boolean var11 = var0.areFocusTraversalKeysSet(25); + fail("Expected exception of type java.lang.IllegalArgumentException"); + } catch (java.lang.IllegalArgumentException e) { + // Expected exception. + } + + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == (-1)); + + } + + public void test364() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test364"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.updateUI(); + java.util.Locale var6 = var0.getLocale(); + var0.paintImmediately(25, 100, 3, 0); + boolean var12 = var0.isCursorSet(); + boolean var13 = var0.isCursorSet(); + boolean var14 = var0.getFocusTraversalKeysEnabled(); + var0.setVerifyInputWhenFocusTarget(false); + boolean var17 = var0.isFocusTraversalPolicySet(); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + java.awt.Color var20 = var19.getBackground(); + var19.repaint(); + java.awt.im.InputMethodRequests var22 = var19.getInputMethodRequests(); + var19.setDoubleBuffered(true); + var19.setInheritsPopupMenu(false); + javax.swing.plaf.PanelUI var27 = var19.getUI(); + java.util.Set var29 = var19.getFocusTraversalKeys(3); + // The following exception was thrown during execution. + // This behavior will recorded for regression testing. + try { + var0.setFocusTraversalKeys((-1), var29); + fail("Expected exception of type java.lang.IllegalArgumentException"); + } catch (java.lang.IllegalArgumentException e) { + // Expected exception. + } + + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var27); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var29); + + } + + public void test365() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test365"); + + + SpaceWar.Player var0 = new SpaceWar.Player(); + int var1 = var0.getPower(); + var0.setLeft(true); + var0.increasePower(0); + int var6 = var0.getR(); + var0.setDown(true); + var0.increasePower(3); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == 25); + + } + + public void test366() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test366"); + + + SpaceWar.Enemy var2 = new SpaceWar.Enemy(25, 500); + + } + + public void test367() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test367"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + java.awt.event.MouseMotionListener[] var6 = var0.getMouseMotionListeners(); + java.awt.event.ComponentListener[] var7 = var0.getComponentListeners(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + var8.nextFocus(); + var8.repaint(1L); + SpaceWar.SpacePanel var15 = new SpaceWar.SpacePanel(); + float var16 = var15.getAlignmentX(); + var15.setVisible(false); + boolean var19 = var15.isDoubleBuffered(); + var15.list(); + SpaceWar.SpacePanel var21 = new SpaceWar.SpacePanel(); + float var22 = var21.getAlignmentX(); + var21.setVisible(false); + boolean var25 = var21.isDoubleBuffered(); + java.awt.dnd.DropTarget var26 = var21.getDropTarget(); + var21.show(false); + java.awt.Rectangle var29 = var21.getVisibleRect(); + java.awt.Rectangle var30 = var15.getBounds(var29); + var8.setBounds(var30); + var0.paintImmediately(var30); + java.awt.Point var33 = var0.getMousePosition(); + int var34 = var0.getComponentCount(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var22 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var29); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var30); + + // Regression assertion (captures the current behavior of the code) + assertNull(var33); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var34 == 0); + + } + + public void test368() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test368"); + + + SpaceWar.Player var0 = new SpaceWar.Player(); + var0.increasePower(25); + int var3 = var0.getScore(); + var0.setRigth(true); + var0.loseLife(); + int var7 = var0.getPower(); + int var8 = var0.getX(); + java.awt.image.BufferedImage var10 = var0.loadImg("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=1.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 24); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 400); + + // Regression assertion (captures the current behavior of the code) + assertNull(var10); + + } + + public void test369() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test369"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + var0.list(); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + float var7 = var6.getAlignmentX(); + var6.setVisible(false); + boolean var10 = var6.isDoubleBuffered(); + java.awt.dnd.DropTarget var11 = var6.getDropTarget(); + var6.show(false); + java.awt.Rectangle var14 = var6.getVisibleRect(); + java.awt.Rectangle var15 = var0.getBounds(var14); + javax.swing.JToolTip var16 = var0.createToolTip(); + var0.firePropertyChange("", false, false); + var0.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", (-1L), (-1L)); + var0.validate(); + boolean var26 = var0.isForegroundSet(); + var0.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=1.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", (short)0, (short)10); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == true); + + } + + public void test370() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test370"); + + + SpaceWar.Player var0 = new SpaceWar.Player(); + var0.increasePower(25); + int var3 = var0.getScore(); + var0.setRigth(true); + var0.loseLife(); + int var7 = var0.getPower(); + int var8 = var0.getX(); + int var9 = var0.getPower(); + int var10 = var0.getX(); + var0.setScore(3); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 24); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 400); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 24); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 400); + + } + + public void test371() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test371"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + var0.setName(""); + java.awt.ComponentOrientation var3 = var0.getComponentOrientation(); + int var4 = var0.getComponentCount(); + java.awt.image.ColorModel var5 = var0.getColorModel(); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + float var7 = var6.getAlignmentX(); + var6.setVisible(false); + java.awt.Dimension var10 = var6.getPreferredSize(); + boolean var11 = var6.getVerifyInputWhenFocusTarget(); + java.awt.Component var14 = var6.findComponentAt(10, 1); + boolean var15 = var6.isCursorSet(); + boolean var16 = var6.isFocusTraversalPolicyProvider(); + java.awt.ComponentOrientation var17 = var6.getComponentOrientation(); + var0.setComponentOrientation(var17); + var0.setDoubleBuffered(false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var17); + + } + + public void test372() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test372"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + boolean var4 = var0.inside(0, (-1)); + var0.transferFocusUpCycle(); + javax.swing.JToolTip var6 = var0.createToolTip(); + javax.swing.KeyStroke[] var7 = var0.getRegisteredKeyStrokes(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var7); + + } + + public void test373() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test373"); + + + SpaceWar.Bullet var3 = new SpaceWar.Bullet(594.7973940347722d, 3, 100); + boolean var4 = var3.update(); + boolean var5 = var3.update(); + boolean var6 = var3.update(); + double var7 = var3.getY(); + double var8 = var3.getY(); + double var9 = var3.getX(); + double var10 = var3.getY(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 75.48643960578549d); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 75.48643960578549d); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == (-14.294084445243069d)); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 75.48643960578549d); + + } + + public void test374() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test374"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + java.awt.Dimension var4 = var0.getPreferredSize(); + boolean var5 = var0.getVerifyInputWhenFocusTarget(); + java.awt.Component var8 = var0.findComponentAt(10, 1); + boolean var9 = var0.requestDefaultFocus(); + java.awt.Insets var10 = var0.getInsets(); + var0.setDoubleBuffered(false); + java.lang.String var13 = var0.getToolTipText(); + java.awt.dnd.DropTarget var14 = var0.getDropTarget(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var4); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertNull(var14); + + } + + public void test375() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test375"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var6 = var0.getMouseListeners(); + int var7 = var0.getDebugGraphicsOptions(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + boolean var12 = var8.isDoubleBuffered(); + java.awt.dnd.DropTarget var13 = var8.getDropTarget(); + var8.show(false); + java.awt.Rectangle var16 = var8.getVisibleRect(); + var0.paintImmediately(var16); + SpaceWar.SpacePanel var18 = new SpaceWar.SpacePanel(); + float var19 = var18.getAlignmentX(); + var18.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var24 = var18.getMouseListeners(); + int var25 = var18.getDebugGraphicsOptions(); + SpaceWar.SpacePanel var26 = new SpaceWar.SpacePanel(); + float var27 = var26.getAlignmentX(); + var26.setVisible(false); + boolean var30 = var26.isDoubleBuffered(); + java.awt.dnd.DropTarget var31 = var26.getDropTarget(); + var26.show(false); + java.awt.Rectangle var34 = var26.getVisibleRect(); + var18.paintImmediately(var34); + java.awt.Rectangle var36 = var18.getBounds(); + var0.scrollRectToVisible(var36); + SpaceWar.SpacePanel var38 = new SpaceWar.SpacePanel(); + java.awt.Color var39 = var38.getBackground(); + var38.repaint(); + var38.setRequestFocusEnabled(false); + var38.setIgnoreRepaint(false); + boolean var45 = var38.requestFocusInWindow(); + float var46 = var38.getAlignmentY(); + java.awt.LayoutManager var47 = var38.getLayout(); + var0.setLayout(var47); + SpaceWar.SpacePanel var49 = new SpaceWar.SpacePanel(); + float var50 = var49.getAlignmentX(); + SpaceWar.SpacePanel var51 = new SpaceWar.SpacePanel(); + float var52 = var51.getAlignmentX(); + var51.setVisible(false); + java.awt.Dimension var55 = var51.getPreferredSize(); + boolean var56 = var51.getVerifyInputWhenFocusTarget(); + java.awt.Component var59 = var51.findComponentAt(10, 1); + var49.addKeyListener((java.awt.event.KeyListener)var51); + SpaceWar.SpacePanel var61 = new SpaceWar.SpacePanel(); + float var62 = var61.getAlignmentX(); + SpaceWar.SpacePanel var63 = new SpaceWar.SpacePanel(); + float var64 = var63.getAlignmentX(); + var63.setVisible(false); + java.awt.Dimension var67 = var63.getPreferredSize(); + boolean var68 = var63.getVerifyInputWhenFocusTarget(); + java.awt.Component var71 = var63.findComponentAt(10, 1); + var61.addKeyListener((java.awt.event.KeyListener)var63); + var63.repaint(100, (-1), (-1), 1); + java.awt.image.ColorModel var78 = var63.getColorModel(); + SpaceWar.SpacePanel var79 = new SpaceWar.SpacePanel(); + float var80 = var79.getAlignmentX(); + var79.setVisible(false); + boolean var83 = var79.isDoubleBuffered(); + var79.list(); + SpaceWar.SpacePanel var85 = new SpaceWar.SpacePanel(); + float var86 = var85.getAlignmentX(); + var85.setVisible(false); + boolean var89 = var85.isDoubleBuffered(); + java.awt.dnd.DropTarget var90 = var85.getDropTarget(); + var85.show(false); + java.awt.Rectangle var93 = var85.getVisibleRect(); + java.awt.image.BufferedImage var95 = var85.loadImg("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + boolean var96 = var79.isAncestorOf((java.awt.Component)var85); + javax.swing.InputVerifier var97 = var85.getInputVerifier(); + var51.putClientProperty((java.lang.Object)var63, (java.lang.Object)var85); + java.awt.Component var99 = var0.add((java.awt.Component)var63); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var30 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var31); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var34); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var36); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var39); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var45 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var46 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var47); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var50 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var52 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var55); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var56 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var59); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var62 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var64 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var67); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var68 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var71); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var78); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var80 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var83 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var86 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var89 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var90); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var93); + + // Regression assertion (captures the current behavior of the code) + assertNull(var95); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var96 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var97); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var99); + + } + + public void test376() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test376"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + boolean var6 = var0.isFocusOwner(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + java.awt.Dimension var12 = var8.getPreferredSize(); + java.awt.Toolkit var13 = var8.getToolkit(); + SpaceWar.SpacePanel var14 = new SpaceWar.SpacePanel(); + var14.setName(""); + int var17 = var14.getX(); + SpaceWar.SpacePanel var18 = new SpaceWar.SpacePanel(); + float var19 = var18.getAlignmentX(); + var18.setVisible(false); + var18.nextFocus(); + SpaceWar.SpacePanel var23 = new SpaceWar.SpacePanel(); + float var24 = var23.getAlignmentX(); + var23.setVisible(false); + SpaceWar.SpacePanel var27 = new SpaceWar.SpacePanel(); + java.awt.Color var28 = var27.getBackground(); + var23.setForeground(var28); + var18.setBackground(var28); + var14.setBackground(var28); + var8.setForeground(var28); + var0.putClientProperty((java.lang.Object)(byte)100, (java.lang.Object)var28); + boolean var34 = var0.isEnabled(); + java.awt.event.ComponentListener[] var35 = var0.getComponentListeners(); + var0.layout(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var24 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var28); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var34 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var35); + + } + + public void test377() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test377"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + SpaceWar.SpacePanel var5 = new SpaceWar.SpacePanel(); + float var6 = var5.getAlignmentX(); + var5.setVisible(false); + var5.nextFocus(); + var5.reshape((-1), 1, (-1), 10); + var5.disable(); + boolean var16 = var5.isFocusable(); + int var17 = var5.getHeight(); + var0.setNextFocusableComponent((java.awt.Component)var5); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + float var20 = var19.getAlignmentX(); + var19.setVisible(false); + var19.nextFocus(); + SpaceWar.SpacePanel var24 = new SpaceWar.SpacePanel(); + float var25 = var24.getAlignmentX(); + var24.setVisible(false); + SpaceWar.SpacePanel var28 = new SpaceWar.SpacePanel(); + java.awt.Color var29 = var28.getBackground(); + var24.setForeground(var29); + var19.setBackground(var29); + java.awt.Component var32 = var19.getNextFocusableComponent(); + float var33 = var19.getAlignmentY(); + java.awt.event.MouseListener[] var34 = var19.getMouseListeners(); + java.awt.Point var35 = var19.location(); + java.awt.Point var36 = var0.getLocation(var35); + var0.setVerifyInputWhenFocusTarget(true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == 10); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var29); + + // Regression assertion (captures the current behavior of the code) + assertNull(var32); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var33 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var34); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var35); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var36); + + } + + public void test378() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test378"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + var0.list(); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + float var7 = var6.getAlignmentX(); + var6.setVisible(false); + boolean var10 = var6.isDoubleBuffered(); + java.awt.dnd.DropTarget var11 = var6.getDropTarget(); + var6.show(false); + java.awt.Rectangle var14 = var6.getVisibleRect(); + java.awt.Rectangle var15 = var0.getBounds(var14); + javax.swing.JToolTip var16 = var0.createToolTip(); + java.awt.Graphics var17 = var0.getGraphics(); + java.beans.VetoableChangeListener[] var18 = var0.getVetoableChangeListeners(); + // The following exception was thrown during execution. + // This behavior will recorded for regression testing. + try { + boolean var20 = var0.areFocusTraversalKeysSet(24); + fail("Expected exception of type java.lang.IllegalArgumentException"); + } catch (java.lang.IllegalArgumentException e) { + // Expected exception. + } + + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var18); + + } + + public void test379() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test379"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var1 = new SpaceWar.SpacePanel(); + java.awt.Color var2 = var1.getBackground(); + SpaceWar.SpacePanel var3 = new SpaceWar.SpacePanel(); + float var4 = var3.getAlignmentX(); + var3.setVisible(false); + var3.nextFocus(); + var3.updateUI(); + var3.enableInputMethods(true); + var0.add((java.awt.Component)var1, (java.lang.Object)true); + java.awt.Image var14 = var1.createImage(1, (-1)); + SpaceWar.SpacePanel var15 = new SpaceWar.SpacePanel(); + float var16 = var15.getAlignmentX(); + var15.setVisible(false); + var15.nextFocus(); + var15.updateUI(); + var15.enableInputMethods(true); + SpaceWar.SpacePanel var23 = new SpaceWar.SpacePanel(); + float var24 = var23.getAlignmentX(); + boolean var25 = var23.hasFocus(); + java.awt.Insets var26 = var23.getInsets(); + java.awt.Insets var27 = var15.getInsets(var26); + java.awt.Insets var28 = var1.getInsets(var26); + java.awt.Point var29 = var1.getMousePosition(); + boolean var30 = var1.isFocusTraversalPolicyProvider(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var2); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var24 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var27); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var28); + + // Regression assertion (captures the current behavior of the code) + assertNull(var29); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var30 == false); + + } + + public void test380() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test380"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + var0.list(); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + float var7 = var6.getAlignmentX(); + var6.setVisible(false); + boolean var10 = var6.isDoubleBuffered(); + java.awt.dnd.DropTarget var11 = var6.getDropTarget(); + var6.show(false); + java.awt.Rectangle var14 = var6.getVisibleRect(); + java.awt.image.BufferedImage var16 = var6.loadImg("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + boolean var17 = var0.isAncestorOf((java.awt.Component)var6); + // The following exception was thrown during execution. + // This behavior will recorded for regression testing. + try { + boolean var19 = var0.areFocusTraversalKeysSet(499); + fail("Expected exception of type java.lang.IllegalArgumentException"); + } catch (java.lang.IllegalArgumentException e) { + // Expected exception. + } + + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == false); + + } + + public void test381() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test381"); + + + SpaceWar.Explosion var4 = new SpaceWar.Explosion((-14.294084445243069d), 514.6637810615505d, 499, 499); + + } + + public void test382() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test382"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + java.awt.Dimension var4 = var0.getPreferredSize(); + java.awt.Toolkit var5 = var0.getToolkit(); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + var6.setName(""); + int var9 = var6.getX(); + SpaceWar.SpacePanel var10 = new SpaceWar.SpacePanel(); + float var11 = var10.getAlignmentX(); + var10.setVisible(false); + var10.nextFocus(); + SpaceWar.SpacePanel var15 = new SpaceWar.SpacePanel(); + float var16 = var15.getAlignmentX(); + var15.setVisible(false); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + java.awt.Color var20 = var19.getBackground(); + var15.setForeground(var20); + var10.setBackground(var20); + var6.setBackground(var20); + var0.setForeground(var20); + SpaceWar.SpacePanel var25 = new SpaceWar.SpacePanel(); + float var26 = var25.getAlignmentX(); + var25.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var31 = new SpaceWar.SpacePanel(); + float var32 = var31.getAlignmentX(); + var31.setVisible(false); + java.awt.Dimension var35 = var31.getPreferredSize(); + var25.setMaximumSize(var35); + boolean var37 = var25.getVerifyInputWhenFocusTarget(); + javax.accessibility.AccessibleContext var38 = var25.getAccessibleContext(); + boolean var39 = var25.isDoubleBuffered(); + java.awt.Rectangle var40 = var25.getVisibleRect(); + var0.scrollRectToVisible(var40); + var0.setInheritsPopupMenu(false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var4); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var32 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var35); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var38); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var39 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var40); + + } + + public void test383() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test383"); + + + SpaceWar.Bullet var3 = new SpaceWar.Bullet(100.0d, 1, 3); + double var4 = var3.getX(); + double var5 = var3.getX(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 1.0d); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == 1.0d); + + } + + public void test384() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test384"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + java.awt.im.InputMethodRequests var3 = var0.getInputMethodRequests(); + var0.setDoubleBuffered(true); + var0.setInheritsPopupMenu(false); + javax.swing.InputMap var8 = var0.getInputMap(); + var0.doLayout(); + javax.swing.JPopupMenu var10 = var0.getComponentPopupMenu(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertNull(var10); + + } + + public void test385() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test385"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var1 = new SpaceWar.SpacePanel(); + java.awt.Color var2 = var1.getBackground(); + SpaceWar.SpacePanel var3 = new SpaceWar.SpacePanel(); + float var4 = var3.getAlignmentX(); + var3.setVisible(false); + var3.nextFocus(); + var3.updateUI(); + var3.enableInputMethods(true); + var0.add((java.awt.Component)var1, (java.lang.Object)true); + java.awt.Dimension var12 = var1.getPreferredSize(); + boolean var13 = var1.isValidateRoot(); + boolean var14 = var1.isDoubleBuffered(); + java.beans.VetoableChangeListener[] var15 = var1.getVetoableChangeListeners(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var2); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + } + + public void test386() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test386"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + SpaceWar.SpacePanel var4 = new SpaceWar.SpacePanel(); + java.awt.Color var5 = var4.getBackground(); + var0.setForeground(var5); + SpaceWar.SpacePanel var7 = new SpaceWar.SpacePanel(); + float var8 = var7.getAlignmentX(); + var7.setVisible(false); + boolean var11 = var7.isDoubleBuffered(); + java.awt.dnd.DropTarget var12 = var7.getDropTarget(); + var7.show(false); + java.awt.Rectangle var15 = var7.getVisibleRect(); + var0.repaint(var15); + java.awt.FocusTraversalPolicy var17 = var0.getFocusTraversalPolicy(); + var0.resetKeyboardActions(); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + float var20 = var19.getAlignmentX(); + var19.setVisible(false); + boolean var23 = var19.isDoubleBuffered(); + java.awt.dnd.DropTarget var24 = var19.getDropTarget(); + var19.show(false); + java.awt.Rectangle var27 = var19.getVisibleRect(); + var0.computeVisibleRect(var27); + javax.swing.ActionMap var29 = var0.getActionMap(); + SpaceWar.SpacePanel var30 = new SpaceWar.SpacePanel(); + float var31 = var30.getAlignmentX(); + var30.setVisible(false); + boolean var34 = var30.isDoubleBuffered(); + var30.list(); + SpaceWar.SpacePanel var36 = new SpaceWar.SpacePanel(); + float var37 = var36.getAlignmentX(); + var36.setVisible(false); + boolean var40 = var36.isDoubleBuffered(); + java.awt.dnd.DropTarget var41 = var36.getDropTarget(); + var36.show(false); + java.awt.Rectangle var44 = var36.getVisibleRect(); + java.awt.Rectangle var45 = var30.getBounds(var44); + javax.swing.JToolTip var46 = var30.createToolTip(); + var30.firePropertyChange("", false, false); + var30.validate(); + SpaceWar.SpacePanel var52 = new SpaceWar.SpacePanel(); + float var53 = var52.getAlignmentX(); + boolean var54 = var52.hasFocus(); + java.beans.VetoableChangeListener[] var55 = var52.getVetoableChangeListeners(); + var0.add((java.awt.Component)var30, (java.lang.Object)var55); + int var57 = var30.getY(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var27); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var29); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var31 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var34 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var40 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var41); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var44); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var45); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var46); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var53 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var54 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var55); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var57 == 0); + + } + + public void test387() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test387"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.reshape((-1), 1, (-1), 10); + SpaceWar.SpacePanel var10 = new SpaceWar.SpacePanel(); + java.awt.Color var11 = var10.getBackground(); + var10.repaint(); + var10.setRequestFocusEnabled(false); + var10.reshape(100, 0, 100, 0); + java.awt.Component var20 = var0.add((java.awt.Component)var10); + var0.enable(); + javax.accessibility.AccessibleContext var22 = var0.getAccessibleContext(); + boolean var23 = var0.isVisible(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == false); + + } + + public void test388() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test388"); + + + SpaceWar.Bullet var3 = new SpaceWar.Bullet(1.0d, 10, 400); + boolean var4 = var3.update(); + double var5 = var3.getX(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == 19.998476951563912d); + + } + + public void test389() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test389"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + float var7 = var6.getAlignmentX(); + var6.setVisible(false); + java.awt.Dimension var10 = var6.getPreferredSize(); + var0.setMaximumSize(var10); + boolean var12 = var0.getVerifyInputWhenFocusTarget(); + boolean var13 = var0.isFontSet(); + SpaceWar.SpacePanel var14 = new SpaceWar.SpacePanel(); + float var15 = var14.getAlignmentX(); + var14.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var20 = var14.getUI(); + java.awt.im.InputMethodRequests var21 = var14.getInputMethodRequests(); + SpaceWar.SpacePanel var22 = new SpaceWar.SpacePanel(); + float var23 = var22.getAlignmentX(); + var22.setVisible(false); + var22.nextFocus(); + var22.updateUI(); + var22.enableInputMethods(true); + var22.setSize((-1), 1); + SpaceWar.SpacePanel var33 = new SpaceWar.SpacePanel(); + var33.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var14.add((java.awt.Component)var22, (java.lang.Object)"SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + java.awt.ComponentOrientation var39 = var22.getComponentOrientation(); + java.beans.VetoableChangeListener[] var40 = var22.getVetoableChangeListeners(); + int var41 = var22.getHeight(); + var22.enable(true); + boolean var44 = var22.isFocusTraversalPolicyProvider(); + SpaceWar.SpacePanel var45 = new SpaceWar.SpacePanel(); + java.awt.Color var46 = var45.getBackground(); + var45.repaint(); + var45.setRequestFocusEnabled(false); + var45.reshape(100, 0, 100, 0); + var45.requestFocus(); + var45.firePropertyChange("hi!", '4', ' '); + java.awt.Point var60 = var45.getLocation(); + var22.setLocation(var60); + boolean var62 = var22.isManagingFocus(); + int var63 = var0.getComponentZOrder((java.awt.Component)var22); + SpaceWar.SpacePanel var64 = new SpaceWar.SpacePanel(); + float var65 = var64.getAlignmentX(); + var64.firePropertyChange("", (-1), 1); + boolean var70 = var64.isFocusOwner(); + java.awt.Dimension var71 = var64.getMinimumSize(); + var22.setPreferredSize(var71); + var22.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", (-1.0f), 10.0f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertNull(var21); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var39); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var40); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var41 == 1); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var44 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var46); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var60); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var62 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var63 == (-1)); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var65 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var70 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var71); + + } + + public void test390() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test390"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.repaint(1L); + java.awt.image.VolatileImage var9 = var0.createVolatileImage(0, (-1)); + // The following exception was thrown during execution. + // This behavior will recorded for regression testing. + try { + java.awt.Point var10 = var0.getLocationOnScreen(); + fail("Expected exception of type java.awt.IllegalComponentStateException"); + } catch (java.awt.IllegalComponentStateException e) { + // Expected exception. + } + + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNull(var9); + + } + + public void test391() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test391"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var6 = var0.getUI(); + java.awt.im.InputMethodRequests var7 = var0.getInputMethodRequests(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + var8.nextFocus(); + var8.updateUI(); + var8.enableInputMethods(true); + var8.setSize((-1), 1); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + var19.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var0.add((java.awt.Component)var8, (java.lang.Object)"SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + java.awt.ComponentOrientation var25 = var8.getComponentOrientation(); + java.beans.VetoableChangeListener[] var26 = var8.getVetoableChangeListeners(); + int var27 = var8.getHeight(); + javax.swing.ActionMap var28 = var8.getActionMap(); + java.awt.Component var29 = var8.getNextFocusableComponent(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var25); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == 1); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var28); + + // Regression assertion (captures the current behavior of the code) + assertNull(var29); + + } + + public void test392() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test392"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + var0.setRequestFocusEnabled(false); + var0.setIgnoreRepaint(false); + boolean var7 = var0.requestFocusInWindow(); + var0.setAlignmentY(100.0f); + java.awt.Component.BaselineResizeBehavior var10 = var0.getBaselineResizeBehavior(); + SpaceWar.SpacePanel var12 = new SpaceWar.SpacePanel(); + float var13 = var12.getAlignmentX(); + var12.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var18 = var12.getUI(); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + float var20 = var19.getAlignmentX(); + var19.setVisible(false); + SpaceWar.SpacePanel var23 = new SpaceWar.SpacePanel(); + java.awt.Color var24 = var23.getBackground(); + var19.setForeground(var24); + SpaceWar.SpacePanel var26 = new SpaceWar.SpacePanel(); + float var27 = var26.getAlignmentX(); + var26.setVisible(false); + boolean var30 = var26.isDoubleBuffered(); + java.awt.dnd.DropTarget var31 = var26.getDropTarget(); + var26.show(false); + java.awt.Rectangle var34 = var26.getVisibleRect(); + var19.repaint(var34); + java.awt.FocusTraversalPolicy var36 = var19.getFocusTraversalPolicy(); + var19.resetKeyboardActions(); + SpaceWar.SpacePanel var38 = new SpaceWar.SpacePanel(); + float var39 = var38.getAlignmentX(); + var38.setVisible(false); + boolean var42 = var38.isDoubleBuffered(); + java.awt.dnd.DropTarget var43 = var38.getDropTarget(); + var38.show(false); + java.awt.Rectangle var46 = var38.getVisibleRect(); + var19.computeVisibleRect(var46); + javax.swing.ActionMap var48 = var19.getActionMap(); + var12.setActionMap(var48); + javax.swing.InputMap var50 = var12.getInputMap(); + // The following exception was thrown during execution. + // This behavior will recorded for regression testing. + try { + var0.setInputMap(500, var50); + fail("Expected exception of type java.lang.IllegalArgumentException"); + } catch (java.lang.IllegalArgumentException e) { + // Expected exception. + } + + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var30 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var31); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var34); + + // Regression assertion (captures the current behavior of the code) + assertNull(var36); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var39 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var42 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var43); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var46); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var48); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var50); + + } + + public void test393() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test393"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + var0.show(false); + java.awt.Rectangle var8 = var0.getVisibleRect(); + java.awt.image.BufferedImage var10 = var0.loadImg("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + java.awt.ComponentOrientation var11 = var0.getComponentOrientation(); + boolean var12 = var0.isPaintingTile(); + boolean var13 = var0.isOptimizedDrawingEnabled(); + boolean var14 = var0.isMinimumSizeSet(); + float var15 = var0.getAlignmentX(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == 0.5f); + + } + + public void test394() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test394"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + float var7 = var6.getAlignmentX(); + var6.setVisible(false); + java.awt.Dimension var10 = var6.getPreferredSize(); + var0.setMaximumSize(var10); + boolean var12 = var0.getVerifyInputWhenFocusTarget(); + int var13 = var0.getX(); + var0.paintImmediately(100, 10, 24, 400); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == 0); + + } + + public void test395() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test395"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.reshape((-1), 1, (-1), 10); + java.util.Set var11 = var0.getFocusTraversalKeys(3); + java.awt.Point var12 = var0.getLocation(); + java.awt.Dimension var13 = var0.preferredSize(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var13); + + } + + public void test396() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test396"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.Graphics var5 = var0.getGraphics(); + boolean var6 = var0.hasFocus(); + boolean var7 = var0.isVisible(); + var0.updateUI(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == false); + + } + + public void test397() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test397"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + SpaceWar.SpacePanel var4 = new SpaceWar.SpacePanel(); + java.awt.Color var5 = var4.getBackground(); + var0.setForeground(var5); + SpaceWar.SpacePanel var7 = new SpaceWar.SpacePanel(); + float var8 = var7.getAlignmentX(); + var7.setVisible(false); + boolean var11 = var7.isDoubleBuffered(); + java.awt.dnd.DropTarget var12 = var7.getDropTarget(); + var7.show(false); + java.awt.Rectangle var15 = var7.getVisibleRect(); + var0.repaint(var15); + java.awt.FocusTraversalPolicy var17 = var0.getFocusTraversalPolicy(); + SpaceWar.SpacePanel var18 = new SpaceWar.SpacePanel(); + float var19 = var18.getAlignmentX(); + var18.firePropertyChange("", (-1), 1); + boolean var24 = var18.isFocusOwner(); + SpaceWar.SpacePanel var26 = new SpaceWar.SpacePanel(); + float var27 = var26.getAlignmentX(); + var26.setVisible(false); + java.awt.Dimension var30 = var26.getPreferredSize(); + java.awt.Toolkit var31 = var26.getToolkit(); + SpaceWar.SpacePanel var32 = new SpaceWar.SpacePanel(); + var32.setName(""); + int var35 = var32.getX(); + SpaceWar.SpacePanel var36 = new SpaceWar.SpacePanel(); + float var37 = var36.getAlignmentX(); + var36.setVisible(false); + var36.nextFocus(); + SpaceWar.SpacePanel var41 = new SpaceWar.SpacePanel(); + float var42 = var41.getAlignmentX(); + var41.setVisible(false); + SpaceWar.SpacePanel var45 = new SpaceWar.SpacePanel(); + java.awt.Color var46 = var45.getBackground(); + var41.setForeground(var46); + var36.setBackground(var46); + var32.setBackground(var46); + var26.setForeground(var46); + var18.putClientProperty((java.lang.Object)(byte)100, (java.lang.Object)var46); + var0.setBackground(var46); + SpaceWar.SpacePanel var53 = new SpaceWar.SpacePanel(); + float var54 = var53.getAlignmentX(); + var53.setVisible(false); + boolean var57 = var53.isDoubleBuffered(); + java.awt.dnd.DropTarget var58 = var53.getDropTarget(); + var53.show(false); + boolean var61 = var53.isPaintingForPrint(); + SpaceWar.SpacePanel var62 = new SpaceWar.SpacePanel(); + float var63 = var62.getAlignmentX(); + SpaceWar.SpacePanel var64 = new SpaceWar.SpacePanel(); + float var65 = var64.getAlignmentX(); + var64.setVisible(false); + java.awt.Dimension var68 = var64.getPreferredSize(); + boolean var69 = var64.getVerifyInputWhenFocusTarget(); + java.awt.Component var72 = var64.findComponentAt(10, 1); + var62.addKeyListener((java.awt.event.KeyListener)var64); + java.awt.Dimension var74 = var64.getMinimumSize(); + var53.setMinimumSize(var74); + java.awt.Dimension var76 = var0.getSize(var74); + boolean var77 = var0.isValid(); + int var78 = var0.getWidth(); + java.awt.event.HierarchyListener[] var79 = var0.getHierarchyListeners(); + javax.swing.InputMap var80 = var0.getInputMap(); + boolean var81 = var0.getAutoscrolls(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var24 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var30); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var31); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var35 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var42 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var46); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var54 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var57 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var58); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var61 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var63 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var65 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var68); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var69 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var72); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var74); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var76); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var77 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var78 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var79); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var80); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var81 == false); + + } + + public void test398() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test398"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.updateUI(); + var0.enableInputMethods(true); + java.awt.Point var9 = var0.getMousePosition(false); + var0.enableInputMethods(false); + // The following exception was thrown during execution. + // This behavior will recorded for regression testing. + try { + var0.remove(499); + fail("Expected exception of type java.lang.ArrayIndexOutOfBoundsException"); + } catch (java.lang.ArrayIndexOutOfBoundsException e) { + // Expected exception. + } + + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNull(var9); + + } + + public void test399() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test399"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var1 = new SpaceWar.SpacePanel(); + java.awt.Color var2 = var1.getBackground(); + SpaceWar.SpacePanel var3 = new SpaceWar.SpacePanel(); + float var4 = var3.getAlignmentX(); + var3.setVisible(false); + var3.nextFocus(); + var3.updateUI(); + var3.enableInputMethods(true); + var0.add((java.awt.Component)var1, (java.lang.Object)true); + boolean var13 = var1.areFocusTraversalKeysSet(0); + SpaceWar.SpacePanel var14 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var15 = new SpaceWar.SpacePanel(); + java.awt.Color var16 = var15.getBackground(); + SpaceWar.SpacePanel var17 = new SpaceWar.SpacePanel(); + float var18 = var17.getAlignmentX(); + var17.setVisible(false); + var17.nextFocus(); + var17.updateUI(); + var17.enableInputMethods(true); + var14.add((java.awt.Component)var15, (java.lang.Object)true); + boolean var26 = var14.isMinimumSizeSet(); + java.awt.event.HierarchyListener[] var27 = var14.getHierarchyListeners(); + SpaceWar.SpacePanel var28 = new SpaceWar.SpacePanel(); + float var29 = var28.getAlignmentX(); + var28.setVisible(false); + SpaceWar.SpacePanel var32 = new SpaceWar.SpacePanel(); + java.awt.Color var33 = var32.getBackground(); + var28.setForeground(var33); + SpaceWar.SpacePanel var35 = new SpaceWar.SpacePanel(); + float var36 = var35.getAlignmentX(); + var35.setVisible(false); + boolean var39 = var35.isDoubleBuffered(); + java.awt.dnd.DropTarget var40 = var35.getDropTarget(); + var35.show(false); + java.awt.Rectangle var43 = var35.getVisibleRect(); + var28.repaint(var43); + java.awt.FocusTraversalPolicy var45 = var28.getFocusTraversalPolicy(); + java.awt.im.InputMethodRequests var46 = var28.getInputMethodRequests(); + var28.layout(); + boolean var48 = var28.isFocusTraversalPolicyProvider(); + java.lang.Object var49 = var14.getClientProperty((java.lang.Object)var48); + boolean var50 = var14.isFocusTraversable(); + var1.remove((java.awt.Component)var14); + SpaceWar.SpacePanel var52 = new SpaceWar.SpacePanel(); + java.awt.Color var53 = var52.getBackground(); + var52.repaint(); + var52.setRequestFocusEnabled(false); + var52.reshape(100, 0, 100, 0); + var52.requestFocus(); + java.awt.Rectangle var63 = var52.getVisibleRect(); + var14.repaint(var63); + var14.setVisible(true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var2); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var27); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var29 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var33); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var36 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var39 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var40); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var43); + + // Regression assertion (captures the current behavior of the code) + assertNull(var45); + + // Regression assertion (captures the current behavior of the code) + assertNull(var46); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var48 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var49); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var50 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var53); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var63); + + } + + public void test400() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test400"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.setInheritsPopupMenu(false); + var0.move(10, 10); + var0.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + java.awt.Rectangle var13 = var0.bounds(); + var0.repaint(25, 100, 24, 24); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var13); + + } + + public void test401() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test401"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + var0.list(); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + float var7 = var6.getAlignmentX(); + var6.setVisible(false); + boolean var10 = var6.isDoubleBuffered(); + java.awt.dnd.DropTarget var11 = var6.getDropTarget(); + var6.show(false); + java.awt.Rectangle var14 = var6.getVisibleRect(); + java.awt.Rectangle var15 = var0.getBounds(var14); + javax.swing.JToolTip var16 = var0.createToolTip(); + var0.firePropertyChange("", false, false); + var0.validate(); + var0.setAlignmentY((-1.0f)); + SpaceWar.SpacePanel var24 = new SpaceWar.SpacePanel(); + float var25 = var24.getAlignmentX(); + boolean var26 = var24.hasFocus(); + SpaceWar.SpacePanel var27 = new SpaceWar.SpacePanel(); + float var28 = var27.getAlignmentX(); + var27.setVisible(false); + var27.nextFocus(); + var27.reshape((-1), 1, (-1), 10); + var27.disable(); + java.awt.LayoutManager var38 = var27.getLayout(); + var27.setVisible(false); + var24.remove((java.awt.Component)var27); + java.awt.Dimension var42 = var27.getSize(); + var0.setSize(var42); + var0.removeNotify(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var28 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var38); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var42); + + } + + public void test402() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test402"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + var0.show(false); + boolean var8 = var0.isPaintingForPrint(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var15 = var9.getMouseListeners(); + int var16 = var9.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var17 = var9.getInputMethodRequests(); + var0.addKeyListener((java.awt.event.KeyListener)var9); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + float var20 = var19.getAlignmentX(); + var19.setVisible(false); + boolean var23 = var19.isDoubleBuffered(); + var19.list(); + float var25 = var19.getAlignmentY(); + boolean var26 = var9.isFocusCycleRoot((java.awt.Container)var19); + var19.firePropertyChange("", 1L, 1L); + var19.setVerifyInputWhenFocusTarget(true); + SpaceWar.SpacePanel var33 = new SpaceWar.SpacePanel(); + var33.setName(""); + java.awt.Dimension var36 = var33.minimumSize(); + boolean var37 = var33.isDoubleBuffered(); + SpaceWar.SpacePanel var38 = new SpaceWar.SpacePanel(); + float var39 = var38.getAlignmentX(); + SpaceWar.SpacePanel var40 = new SpaceWar.SpacePanel(); + float var41 = var40.getAlignmentX(); + var40.setVisible(false); + java.awt.Dimension var44 = var40.getPreferredSize(); + boolean var45 = var40.getVerifyInputWhenFocusTarget(); + java.awt.Component var48 = var40.findComponentAt(10, 1); + var38.addKeyListener((java.awt.event.KeyListener)var40); + var40.repaint(100, (-1), (-1), 1); + SpaceWar.SpacePanel var55 = new SpaceWar.SpacePanel(); + java.awt.Color var56 = var55.getBackground(); + var55.repaint(); + java.awt.im.InputMethodRequests var58 = var55.getInputMethodRequests(); + java.awt.GraphicsConfiguration var59 = var55.getGraphicsConfiguration(); + var40.remove((java.awt.Component)var55); + java.awt.Font var61 = var55.getFont(); + java.awt.FontMetrics var62 = var33.getFontMetrics(var61); + java.awt.FontMetrics var63 = var19.getFontMetrics(var61); + java.awt.Point var64 = var19.location(); + javax.swing.ActionMap var65 = var19.getActionMap(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var36); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var39 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var41 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var44); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var45 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var48); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var56); + + // Regression assertion (captures the current behavior of the code) + assertNull(var58); + + // Regression assertion (captures the current behavior of the code) + assertNull(var59); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var61); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var62); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var63); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var64); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var65); + + } + + public void test403() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test403"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + SpaceWar.SpacePanel var4 = new SpaceWar.SpacePanel(); + java.awt.Color var5 = var4.getBackground(); + var0.setForeground(var5); + SpaceWar.SpacePanel var7 = new SpaceWar.SpacePanel(); + float var8 = var7.getAlignmentX(); + var7.setVisible(false); + boolean var11 = var7.isDoubleBuffered(); + java.awt.dnd.DropTarget var12 = var7.getDropTarget(); + var7.show(false); + java.awt.Rectangle var15 = var7.getVisibleRect(); + var0.repaint(var15); + java.awt.FocusTraversalPolicy var17 = var0.getFocusTraversalPolicy(); + java.awt.im.InputMethodRequests var18 = var0.getInputMethodRequests(); + var0.layout(); + java.awt.Container var20 = var0.getFocusCycleRootAncestor(); + SpaceWar.SpacePanel var22 = new SpaceWar.SpacePanel(); + float var23 = var22.getAlignmentX(); + var22.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var28 = var22.getUI(); + SpaceWar.SpacePanel var29 = new SpaceWar.SpacePanel(); + float var30 = var29.getAlignmentX(); + var29.setVisible(false); + SpaceWar.SpacePanel var33 = new SpaceWar.SpacePanel(); + java.awt.Color var34 = var33.getBackground(); + var29.setForeground(var34); + SpaceWar.SpacePanel var36 = new SpaceWar.SpacePanel(); + float var37 = var36.getAlignmentX(); + var36.setVisible(false); + boolean var40 = var36.isDoubleBuffered(); + java.awt.dnd.DropTarget var41 = var36.getDropTarget(); + var36.show(false); + java.awt.Rectangle var44 = var36.getVisibleRect(); + var29.repaint(var44); + java.awt.FocusTraversalPolicy var46 = var29.getFocusTraversalPolicy(); + var29.resetKeyboardActions(); + SpaceWar.SpacePanel var48 = new SpaceWar.SpacePanel(); + float var49 = var48.getAlignmentX(); + var48.setVisible(false); + boolean var52 = var48.isDoubleBuffered(); + java.awt.dnd.DropTarget var53 = var48.getDropTarget(); + var48.show(false); + java.awt.Rectangle var56 = var48.getVisibleRect(); + var29.computeVisibleRect(var56); + javax.swing.ActionMap var58 = var29.getActionMap(); + var22.setActionMap(var58); + javax.swing.InputMap var60 = var22.getInputMap(); + // The following exception was thrown during execution. + // This behavior will recorded for regression testing. + try { + var0.setInputMap(100, var60); + fail("Expected exception of type java.lang.IllegalArgumentException"); + } catch (java.lang.IllegalArgumentException e) { + // Expected exception. + } + + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var28); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var30 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var34); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var40 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var41); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var44); + + // Regression assertion (captures the current behavior of the code) + assertNull(var46); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var49 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var52 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var53); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var56); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var58); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var60); + + } + + public void test404() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test404"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + java.awt.Color var7 = var6.getBackground(); + var6.repaint(); + var6.setRequestFocusEnabled(false); + var6.reshape(100, 0, 100, 0); + var6.requestFocus(); + SpaceWar.SpacePanel var17 = new SpaceWar.SpacePanel(); + float var18 = var17.getAlignmentX(); + var17.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var23 = var17.getUI(); + java.awt.im.InputMethodRequests var24 = var17.getInputMethodRequests(); + SpaceWar.SpacePanel var25 = new SpaceWar.SpacePanel(); + float var26 = var25.getAlignmentX(); + var25.setVisible(false); + var25.nextFocus(); + var25.updateUI(); + var25.enableInputMethods(true); + var25.setSize((-1), 1); + SpaceWar.SpacePanel var36 = new SpaceWar.SpacePanel(); + var36.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var17.add((java.awt.Component)var25, (java.lang.Object)"SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + SpaceWar.SpacePanel var42 = new SpaceWar.SpacePanel(); + var42.setName(""); + java.awt.ComponentOrientation var45 = var42.getComponentOrientation(); + var17.applyComponentOrientation(var45); + var6.setComponentOrientation(var45); + var0.applyComponentOrientation(var45); + int var49 = var0.getHeight(); + SpaceWar.SpacePanel var50 = new SpaceWar.SpacePanel(); + float var51 = var50.getAlignmentX(); + var50.setVisible(false); + boolean var54 = var50.isDoubleBuffered(); + var50.enable(false); + java.awt.Container var57 = var50.getTopLevelAncestor(); + java.awt.Dimension var58 = var50.minimumSize(); + SpaceWar.SpacePanel var59 = new SpaceWar.SpacePanel(); + java.awt.Color var60 = var59.getBackground(); + var59.repaint(); + var59.setRequestFocusEnabled(false); + var59.setIgnoreRepaint(false); + boolean var66 = var59.requestFocusInWindow(); + var59.setAlignmentY(100.0f); + SpaceWar.SpacePanel var69 = new SpaceWar.SpacePanel(); + java.awt.Color var70 = var69.getBackground(); + var69.repaint(); + var69.setRequestFocusEnabled(false); + var69.reshape(100, 0, 100, 0); + javax.swing.event.AncestorListener[] var79 = var69.getAncestorListeners(); + SpaceWar.SpacePanel var80 = new SpaceWar.SpacePanel(); + float var81 = var80.getAlignmentX(); + SpaceWar.SpacePanel var82 = new SpaceWar.SpacePanel(); + float var83 = var82.getAlignmentX(); + var82.setVisible(false); + java.awt.Dimension var86 = var82.getPreferredSize(); + boolean var87 = var82.getVerifyInputWhenFocusTarget(); + java.awt.Component var90 = var82.findComponentAt(10, 1); + var80.addKeyListener((java.awt.event.KeyListener)var82); + java.awt.Cursor var92 = var80.getCursor(); + var69.setCursor(var92); + var59.setCursor(var92); + var50.setCursor(var92); + var0.setCursor(var92); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var23); + + // Regression assertion (captures the current behavior of the code) + assertNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var45); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var49 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var51 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var54 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var57); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var58); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var60); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var66 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var70); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var79); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var81 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var83 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var86); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var87 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var90); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var92); + + } + + public void test405() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test405"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var6 = var0.getUI(); + java.awt.im.InputMethodRequests var7 = var0.getInputMethodRequests(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + var8.nextFocus(); + var8.updateUI(); + var8.enableInputMethods(true); + var8.setSize((-1), 1); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + var19.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var0.add((java.awt.Component)var8, (java.lang.Object)"SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + java.awt.event.KeyListener[] var25 = var0.getKeyListeners(); + var0.repaint(3, 1, 25, 0); + SpaceWar.SpacePanel var31 = new SpaceWar.SpacePanel(); + java.awt.Color var32 = var31.getBackground(); + boolean var35 = var31.inside(0, (-1)); + var31.transferFocusUpCycle(); + java.awt.Container var37 = var31.getParent(); + boolean var38 = var31.isMaximumSizeSet(); + SpaceWar.SpacePanel var39 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var40 = new SpaceWar.SpacePanel(); + java.awt.Color var41 = var40.getBackground(); + SpaceWar.SpacePanel var42 = new SpaceWar.SpacePanel(); + float var43 = var42.getAlignmentX(); + var42.setVisible(false); + var42.nextFocus(); + var42.updateUI(); + var42.enableInputMethods(true); + var39.add((java.awt.Component)var40, (java.lang.Object)true); + boolean var52 = var40.areFocusTraversalKeysSet(0); + SpaceWar.SpacePanel var53 = new SpaceWar.SpacePanel(); + float var54 = var53.getAlignmentX(); + var53.setVisible(false); + boolean var57 = var53.isDoubleBuffered(); + java.awt.dnd.DropTarget var58 = var53.getDropTarget(); + var53.show(false); + java.awt.Rectangle var61 = var53.getVisibleRect(); + var40.setBounds(var61); + var31.setBounds(var61); + java.awt.Rectangle var64 = var0.getBounds(var61); + java.awt.Dimension var65 = var0.minimumSize(); + SpaceWar.SpacePanel var66 = new SpaceWar.SpacePanel(); + float var67 = var66.getAlignmentX(); + boolean var68 = var66.hasFocus(); + boolean var69 = var66.isPreferredSizeSet(); + var66.firePropertyChange("", (short)1, (short)0); + boolean var74 = var66.isMaximumSizeSet(); + var66.list(); + java.awt.Rectangle var76 = var66.getBounds(); + java.awt.Font var77 = var66.getFont(); + var0.setFont(var77); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var25); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var32); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var35 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var37); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var38 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var41); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var43 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var52 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var54 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var57 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var58); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var61); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var64); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var65); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var67 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var68 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var69 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var74 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var76); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var77); + + } + + public void test406() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test406"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.requestFocus(); + boolean var6 = var0.getInheritsPopupMenu(); + boolean var7 = javax.swing.JComponent.isLightweightComponent((java.awt.Component)var0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == false); + + } + + public void test407() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test407"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + boolean var2 = var0.hasFocus(); + SpaceWar.SpacePanel var3 = new SpaceWar.SpacePanel(); + float var4 = var3.getAlignmentX(); + var3.setVisible(false); + var3.nextFocus(); + var3.reshape((-1), 1, (-1), 10); + var3.disable(); + java.awt.LayoutManager var14 = var3.getLayout(); + var3.setVisible(false); + var0.remove((java.awt.Component)var3); + var3.repaint(); + var3.repaint(); + boolean var20 = var3.isRequestFocusEnabled(); + SpaceWar.SpacePanel var21 = new SpaceWar.SpacePanel(); + float var22 = var21.getAlignmentX(); + var21.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var27 = new SpaceWar.SpacePanel(); + float var28 = var27.getAlignmentX(); + var27.setVisible(false); + java.awt.Dimension var31 = var27.getPreferredSize(); + var21.setMaximumSize(var31); + boolean var33 = var21.getVerifyInputWhenFocusTarget(); + var21.transferFocusUpCycle(); + java.awt.Point var35 = var21.location(); + java.awt.Component var36 = var3.getComponentAt(var35); + SpaceWar.SpacePanel var38 = new SpaceWar.SpacePanel(); + java.awt.Color var39 = var38.getBackground(); + var38.repaint(); + java.awt.im.InputMethodRequests var41 = var38.getInputMethodRequests(); + var38.setDoubleBuffered(true); + var38.setInheritsPopupMenu(false); + javax.swing.plaf.PanelUI var46 = var38.getUI(); + java.util.Set var48 = var38.getFocusTraversalKeys(3); + // The following exception was thrown during execution. + // This behavior will recorded for regression testing. + try { + var3.setFocusTraversalKeys(25, var48); + fail("Expected exception of type java.lang.IllegalArgumentException"); + } catch (java.lang.IllegalArgumentException e) { + // Expected exception. + } + + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var2 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var22 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var28 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var31); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var33 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var35); + + // Regression assertion (captures the current behavior of the code) + assertNull(var36); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var39); + + // Regression assertion (captures the current behavior of the code) + assertNull(var41); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var46); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var48); + + } + + public void test408() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test408"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.setInheritsPopupMenu(false); + var0.setFocusTraversalPolicyProvider(true); + boolean var10 = var0.inside(25, 3); + SpaceWar.SpacePanel var11 = new SpaceWar.SpacePanel(); + float var12 = var11.getAlignmentX(); + var11.setVisible(false); + boolean var15 = var11.isDoubleBuffered(); + java.awt.dnd.DropTarget var16 = var11.getDropTarget(); + var11.show(false); + boolean var19 = var11.isPaintingForPrint(); + SpaceWar.SpacePanel var20 = new SpaceWar.SpacePanel(); + float var21 = var20.getAlignmentX(); + SpaceWar.SpacePanel var22 = new SpaceWar.SpacePanel(); + float var23 = var22.getAlignmentX(); + var22.setVisible(false); + java.awt.Dimension var26 = var22.getPreferredSize(); + boolean var27 = var22.getVerifyInputWhenFocusTarget(); + java.awt.Component var30 = var22.findComponentAt(10, 1); + var20.addKeyListener((java.awt.event.KeyListener)var22); + java.awt.Dimension var32 = var22.getMinimumSize(); + var11.setMinimumSize(var32); + var0.setPreferredSize(var32); + boolean var36 = var0.requestFocus(true); + java.awt.Dimension var37 = var0.getMinimumSize(); + java.awt.event.InputMethodListener[] var38 = var0.getInputMethodListeners(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var30); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var32); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var36 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var37); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var38); + + } + + public void test409() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test409"); + + + SpaceWar.Enemy var2 = new SpaceWar.Enemy(0, 100); + var2.explode(); + java.awt.image.BufferedImage var5 = var2.loadImg("SpaceWar.SpacePanel[,-1,1,-1x10,invalid,hidden,disabled,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + var2.explode(); + boolean var7 = var2.isDead(); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == false); + + } + + public void test410() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test410"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + var0.show(false); + boolean var8 = var0.isPaintingForPrint(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var15 = var9.getMouseListeners(); + int var16 = var9.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var17 = var9.getInputMethodRequests(); + var0.addKeyListener((java.awt.event.KeyListener)var9); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + float var20 = var19.getAlignmentX(); + var19.setVisible(false); + boolean var23 = var19.isDoubleBuffered(); + var19.list(); + float var25 = var19.getAlignmentY(); + boolean var26 = var9.isFocusCycleRoot((java.awt.Container)var19); + SpaceWar.SpacePanel var28 = new SpaceWar.SpacePanel(); + float var29 = var28.getAlignmentX(); + var28.setVisible(false); + var28.nextFocus(); + var28.updateUI(); + java.awt.Component var34 = var9.add("", (java.awt.Component)var28); + var9.firePropertyChange("hi!", 'a', '4'); + boolean var39 = var9.getAutoscrolls(); + SpaceWar.SpacePanel var40 = new SpaceWar.SpacePanel(); + float var41 = var40.getAlignmentX(); + var40.setVisible(false); + boolean var44 = var40.isDoubleBuffered(); + java.awt.dnd.DropTarget var45 = var40.getDropTarget(); + var40.show(false); + boolean var48 = var40.isPaintingForPrint(); + SpaceWar.SpacePanel var49 = new SpaceWar.SpacePanel(); + float var50 = var49.getAlignmentX(); + var49.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var55 = var49.getMouseListeners(); + int var56 = var49.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var57 = var49.getInputMethodRequests(); + var40.addKeyListener((java.awt.event.KeyListener)var49); + SpaceWar.SpacePanel var59 = new SpaceWar.SpacePanel(); + float var60 = var59.getAlignmentX(); + var59.setVisible(false); + boolean var63 = var59.isDoubleBuffered(); + var59.list(); + float var65 = var59.getAlignmentY(); + boolean var66 = var49.isFocusCycleRoot((java.awt.Container)var59); + var59.firePropertyChange("", 1L, 1L); + var59.setVerifyInputWhenFocusTarget(true); + java.awt.Cursor var73 = var59.getCursor(); + var9.setCursor(var73); + // The following exception was thrown during execution. + // This behavior will recorded for regression testing. + try { + java.awt.Point var75 = var9.getLocationOnScreen(); + fail("Expected exception of type java.awt.IllegalComponentStateException"); + } catch (java.awt.IllegalComponentStateException e) { + // Expected exception. + } + + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var29 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var34); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var39 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var41 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var44 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var45); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var48 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var50 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var55); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var56 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var57); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var60 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var63 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var65 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var66 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var73); + + } + + public void test411() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test411"); + + + SpaceWar.Player var0 = new SpaceWar.Player(); + var0.increasePower(25); + int var3 = var0.getR(); + int var4 = var0.getScore(); + var0.increasePower(2); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == 25); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0); + + } + + public void test412() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test412"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + java.awt.im.InputMethodRequests var3 = var0.getInputMethodRequests(); + int var4 = var0.countComponents(); + java.awt.event.ComponentListener[] var5 = var0.getComponentListeners(); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + float var7 = var6.getAlignmentX(); + var6.removeNotify(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.setVisible(false); + boolean var13 = var9.isDoubleBuffered(); + var9.list(); + float var15 = var9.getAlignmentY(); + java.awt.Insets var16 = var9.getInsets(); + java.awt.Insets var17 = var6.getInsets(var16); + java.awt.Insets var18 = var0.getInsets(var17); + javax.swing.JPopupMenu var19 = var0.getComponentPopupMenu(); + java.awt.image.BufferedImage var21 = var0.loadImg("PanelUI"); + var0.invalidate(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertNull(var21); + + } + + public void test413() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test413"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + java.awt.im.InputMethodRequests var3 = var0.getInputMethodRequests(); + int var4 = var0.countComponents(); + java.awt.event.ComponentListener[] var5 = var0.getComponentListeners(); + var0.transferFocusBackward(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + boolean var12 = var8.isDoubleBuffered(); + var8.enable(false); + SpaceWar.SpacePanel var15 = new SpaceWar.SpacePanel(); + float var16 = var15.getAlignmentX(); + boolean var17 = var15.hasFocus(); + java.awt.Insets var18 = var15.getInsets(); + java.awt.Rectangle var19 = var15.bounds(); + var8.repaint(var19); + java.awt.Component var21 = var0.add("", (java.awt.Component)var8); + var8.reshape(2, 2, 3, 1); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var21); + + } + + public void test414() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test414"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.reshape((-1), 1, (-1), 10); + var0.disable(); + java.awt.LayoutManager var11 = var0.getLayout(); + var0.setVisible(false); + int var14 = var0.getWidth(); + var0.requestFocus(); + var0.show(false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == (-1)); + + } + + public void test415() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test415"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + SpaceWar.SpacePanel var5 = new SpaceWar.SpacePanel(); + java.awt.Color var6 = var5.getBackground(); + var5.repaint(); + java.lang.Object var8 = var0.getClientProperty((java.lang.Object)var5); + var0.setIgnoreRepaint(false); + boolean var11 = var0.hasFocus(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == false); + + } + + public void test416() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test416"); + + + SpaceWar.PowerUp var3 = new SpaceWar.PowerUp(3, 525.4439481651533d, 506.9915098063617d); + double var4 = var3.getX(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 525.4439481651533d); + + } + + public void test417() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test417"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + SpaceWar.SpacePanel var4 = new SpaceWar.SpacePanel(); + java.awt.Color var5 = var4.getBackground(); + var0.setForeground(var5); + SpaceWar.SpacePanel var7 = new SpaceWar.SpacePanel(); + float var8 = var7.getAlignmentX(); + var7.setVisible(false); + boolean var11 = var7.isDoubleBuffered(); + java.awt.dnd.DropTarget var12 = var7.getDropTarget(); + var7.show(false); + java.awt.Rectangle var15 = var7.getVisibleRect(); + var0.repaint(var15); + java.awt.FocusTraversalPolicy var17 = var0.getFocusTraversalPolicy(); + SpaceWar.SpacePanel var18 = new SpaceWar.SpacePanel(); + float var19 = var18.getAlignmentX(); + var18.firePropertyChange("", (-1), 1); + boolean var24 = var18.isFocusOwner(); + SpaceWar.SpacePanel var26 = new SpaceWar.SpacePanel(); + float var27 = var26.getAlignmentX(); + var26.setVisible(false); + java.awt.Dimension var30 = var26.getPreferredSize(); + java.awt.Toolkit var31 = var26.getToolkit(); + SpaceWar.SpacePanel var32 = new SpaceWar.SpacePanel(); + var32.setName(""); + int var35 = var32.getX(); + SpaceWar.SpacePanel var36 = new SpaceWar.SpacePanel(); + float var37 = var36.getAlignmentX(); + var36.setVisible(false); + var36.nextFocus(); + SpaceWar.SpacePanel var41 = new SpaceWar.SpacePanel(); + float var42 = var41.getAlignmentX(); + var41.setVisible(false); + SpaceWar.SpacePanel var45 = new SpaceWar.SpacePanel(); + java.awt.Color var46 = var45.getBackground(); + var41.setForeground(var46); + var36.setBackground(var46); + var32.setBackground(var46); + var26.setForeground(var46); + var18.putClientProperty((java.lang.Object)(byte)100, (java.lang.Object)var46); + var0.setBackground(var46); + javax.swing.JToolTip var53 = var0.createToolTip(); + java.awt.Graphics var54 = var0.getGraphics(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var24 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var30); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var31); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var35 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var42 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var46); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var53); + + // Regression assertion (captures the current behavior of the code) + assertNull(var54); + + } + + public void test418() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test418"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var6 = var0.getUI(); + java.awt.im.InputMethodRequests var7 = var0.getInputMethodRequests(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + var8.nextFocus(); + var8.updateUI(); + var8.enableInputMethods(true); + var8.setSize((-1), 1); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + var19.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var0.add((java.awt.Component)var8, (java.lang.Object)"SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + boolean var25 = var0.isCursorSet(); + javax.swing.KeyStroke[] var26 = var0.getRegisteredKeyStrokes(); + var0.nextFocus(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var26); + + } + + public void test419() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test419"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + var0.list(); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + float var7 = var6.getAlignmentX(); + var6.setVisible(false); + boolean var10 = var6.isDoubleBuffered(); + java.awt.dnd.DropTarget var11 = var6.getDropTarget(); + var6.show(false); + java.awt.Rectangle var14 = var6.getVisibleRect(); + java.awt.Rectangle var15 = var0.getBounds(var14); + javax.swing.JToolTip var16 = var0.createToolTip(); + var0.firePropertyChange("", false, false); + var0.validate(); + boolean var22 = var0.isEnabled(); + SpaceWar.SpacePanel var23 = new SpaceWar.SpacePanel(); + float var24 = var23.getAlignmentX(); + var23.setVisible(false); + boolean var27 = var23.isDoubleBuffered(); + java.awt.dnd.DropTarget var28 = var23.getDropTarget(); + var23.show(false); + java.awt.Rectangle var31 = var23.getVisibleRect(); + javax.swing.KeyStroke[] var32 = var23.getRegisteredKeyStrokes(); + SpaceWar.SpacePanel var33 = new SpaceWar.SpacePanel(); + float var34 = var33.getAlignmentX(); + var33.setVisible(false); + boolean var37 = var33.isDoubleBuffered(); + java.awt.dnd.DropTarget var38 = var33.getDropTarget(); + boolean var39 = var33.isFocusCycleRoot(); + var33.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", 100, 0); + SpaceWar.SpacePanel var44 = new SpaceWar.SpacePanel(); + float var45 = var44.getAlignmentX(); + var44.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var50 = var44.getUI(); + var33.add((java.awt.Component)var44, (java.lang.Object)(short)0); + java.awt.event.InputMethodListener[] var53 = var44.getInputMethodListeners(); + var0.putClientProperty((java.lang.Object)var32, (java.lang.Object)var44); + var44.move(10, 10); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var22 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var24 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var28); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var31); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var32); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var34 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var38); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var39 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var45 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var50); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var53); + + } + + public void test420() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test420"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var6 = var0.getMouseListeners(); + int var7 = var0.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var8 = var0.getInputMethodRequests(); + var0.removeNotify(); + var0.enable(); + SpaceWar.SpacePanel var11 = new SpaceWar.SpacePanel(); + java.awt.Color var12 = var11.getBackground(); + boolean var15 = var11.inside(0, (-1)); + var11.transferFocusUpCycle(); + java.lang.String var17 = var11.getName(); + boolean var18 = var0.isFocusCycleRoot((java.awt.Container)var11); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + java.awt.Color var20 = var19.getBackground(); + var19.repaint(); + var19.setRequestFocusEnabled(false); + var19.reshape(100, 0, 100, 0); + var19.requestFocus(); + var19.firePropertyChange("hi!", '4', ' '); + java.awt.Point var34 = var19.getLocation(); + java.awt.Component var35 = var11.getComponentAt(var34); + var11.setRequestFocusEnabled(true); + boolean var38 = var11.isCursorSet(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var34); + + // Regression assertion (captures the current behavior of the code) + assertNull(var35); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var38 == false); + + } + + public void test421() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test421"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + java.awt.im.InputMethodRequests var3 = var0.getInputMethodRequests(); + int var4 = var0.countComponents(); + java.awt.event.ComponentListener[] var5 = var0.getComponentListeners(); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + float var7 = var6.getAlignmentX(); + var6.removeNotify(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.setVisible(false); + boolean var13 = var9.isDoubleBuffered(); + var9.list(); + float var15 = var9.getAlignmentY(); + java.awt.Insets var16 = var9.getInsets(); + java.awt.Insets var17 = var6.getInsets(var16); + java.awt.Insets var18 = var0.getInsets(var17); + var0.removeAll(); + boolean var20 = var0.getIgnoreRepaint(); + boolean var21 = var0.getAutoscrolls(); + var0.removeAll(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == false); + + } + + public void test422() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test422"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var1 = new SpaceWar.SpacePanel(); + java.awt.Color var2 = var1.getBackground(); + SpaceWar.SpacePanel var3 = new SpaceWar.SpacePanel(); + float var4 = var3.getAlignmentX(); + var3.setVisible(false); + var3.nextFocus(); + var3.updateUI(); + var3.enableInputMethods(true); + var0.add((java.awt.Component)var1, (java.lang.Object)true); + java.awt.Insets var12 = var0.getInsets(); + java.awt.Component var15 = var0.locate((-1), 1); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var2); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNull(var15); + + } + + public void test423() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test423"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + boolean var2 = var0.hasFocus(); + SpaceWar.SpacePanel var3 = new SpaceWar.SpacePanel(); + float var4 = var3.getAlignmentX(); + var3.setVisible(false); + var3.nextFocus(); + var3.reshape((-1), 1, (-1), 10); + var3.disable(); + java.awt.LayoutManager var14 = var3.getLayout(); + var3.setVisible(false); + var0.remove((java.awt.Component)var3); + var3.repaint(); + var3.firePropertyChange("SpaceWar.SpacePanel[,-1,1,-1x10,invalid,hidden,disabled,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", (-1L), 0L); + var3.firePropertyChange("SpaceWar.SpacePanel[,-1,1,-1x10,invalid,hidden,disabled,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", (byte)100, (byte)10); + boolean var27 = var3.isFocusTraversalPolicySet(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var2 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == false); + + } + + public void test424() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test424"); + + + SpaceWar.Player var0 = new SpaceWar.Player(); + int var1 = var0.getR(); + var0.setUp(false); + int var4 = var0.getLives(); + var0.loseLife(); + boolean var6 = var0.isRecovering(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 25); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 3); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == true); + + } + + public void test425() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test425"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.reshape((-1), 1, (-1), 10); + var0.disable(); + java.awt.LayoutManager var11 = var0.getLayout(); + boolean var14 = var0.contains((-1), 0); + SpaceWar.SpacePanel var15 = new SpaceWar.SpacePanel(); + float var16 = var15.getAlignmentX(); + var15.setVisible(false); + var15.nextFocus(); + var15.updateUI(); + var15.enableInputMethods(true); + var15.setSize((-1), 1); + java.awt.Component var26 = var0.add((java.awt.Component)var15); + SpaceWar.SpacePanel var27 = new SpaceWar.SpacePanel(); + float var28 = var27.getAlignmentX(); + var27.setVisible(false); + var27.nextFocus(); + var27.updateUI(); + var27.enableInputMethods(true); + java.lang.String var35 = var27.toString(); + java.awt.FocusTraversalPolicy var36 = var27.getFocusTraversalPolicy(); + var15.removeKeyListener((java.awt.event.KeyListener)var27); + boolean var38 = var27.isShowing(); + java.awt.GraphicsConfiguration var39 = var27.getGraphicsConfiguration(); + boolean var40 = var27.isMaximumSizeSet(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var28 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var35 + "' != '" + "SpaceWar.SpacePanel[,0,0,0var35,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"+ "'", var35.equals("SpaceWar.SpacePanel[,0,0,0var35,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]")); + + // Regression assertion (captures the current behavior of the code) + assertNull(var36); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var38 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var39); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var40 == false); + + } + + public void test426() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test426"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + SpaceWar.SpacePanel var4 = new SpaceWar.SpacePanel(); + java.awt.Color var5 = var4.getBackground(); + var0.setForeground(var5); + SpaceWar.SpacePanel var7 = new SpaceWar.SpacePanel(); + float var8 = var7.getAlignmentX(); + var7.setVisible(false); + boolean var11 = var7.isDoubleBuffered(); + java.awt.dnd.DropTarget var12 = var7.getDropTarget(); + var7.show(false); + java.awt.Rectangle var15 = var7.getVisibleRect(); + var0.repaint(var15); + java.awt.FocusTraversalPolicy var17 = var0.getFocusTraversalPolicy(); + var0.setEnabled(false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + } + + public void test427() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test427"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + var0.show(false); + boolean var8 = var0.isPaintingForPrint(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var15 = var9.getMouseListeners(); + int var16 = var9.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var17 = var9.getInputMethodRequests(); + var0.addKeyListener((java.awt.event.KeyListener)var9); + var9.repaint(); + java.awt.Component var22 = var9.findComponentAt(10, (-1)); + var9.transferFocusDownCycle(); + boolean var24 = var9.isOpaque(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var24 == true); + + } + + public void test428() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test428"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.setInheritsPopupMenu(false); + boolean var6 = var0.isDoubleBuffered(); + boolean var7 = var0.isMinimumSizeSet(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var14 = new SpaceWar.SpacePanel(); + float var15 = var14.getAlignmentX(); + var14.setVisible(false); + java.awt.Dimension var18 = var14.getPreferredSize(); + var8.setMaximumSize(var18); + boolean var20 = var8.getVerifyInputWhenFocusTarget(); + javax.accessibility.AccessibleContext var21 = var8.getAccessibleContext(); + boolean var22 = var8.isDoubleBuffered(); + java.awt.Rectangle var23 = var8.getVisibleRect(); + var0.setBounds(var23); + SpaceWar.SpacePanel var25 = new SpaceWar.SpacePanel(); + var25.setName(""); + var25.enable(true); + var25.enable(); + java.awt.Point var31 = var25.location(); + var25.repaint(0, 3, (-1), 1); + java.awt.Component var39 = var25.findComponentAt(0, 25); + var0.setNextFocusableComponent((java.awt.Component)var25); + java.awt.event.KeyListener[] var41 = var25.getKeyListeners(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var21); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var22 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var23); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var31); + + // Regression assertion (captures the current behavior of the code) + assertNull(var39); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var41); + + } + + public void test429() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test429"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + SpaceWar.SpacePanel var4 = new SpaceWar.SpacePanel(); + java.awt.Color var5 = var4.getBackground(); + var0.setForeground(var5); + SpaceWar.SpacePanel var7 = new SpaceWar.SpacePanel(); + float var8 = var7.getAlignmentX(); + var7.setVisible(false); + boolean var11 = var7.isDoubleBuffered(); + java.awt.dnd.DropTarget var12 = var7.getDropTarget(); + var7.show(false); + java.awt.Rectangle var15 = var7.getVisibleRect(); + var0.repaint(var15); + java.awt.FocusTraversalPolicy var17 = var0.getFocusTraversalPolicy(); + java.awt.im.InputMethodRequests var18 = var0.getInputMethodRequests(); + javax.swing.JToolTip var19 = var0.createToolTip(); + // The following exception was thrown during execution. + // This behavior will recorded for regression testing. + try { + java.awt.Component var21 = var0.getComponent(0); + fail("Expected exception of type java.lang.ArrayIndexOutOfBoundsException"); + } catch (java.lang.ArrayIndexOutOfBoundsException e) { + // Expected exception. + } + + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var19); + + } + + public void test430() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test430"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var6 = var0.getMouseListeners(); + int var7 = var0.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var8 = var0.getInputMethodRequests(); + var0.removeNotify(); + var0.enable(); + SpaceWar.SpacePanel var11 = new SpaceWar.SpacePanel(); + java.awt.Color var12 = var11.getBackground(); + boolean var15 = var11.inside(0, (-1)); + var11.transferFocusUpCycle(); + java.lang.String var17 = var11.getName(); + boolean var18 = var0.isFocusCycleRoot((java.awt.Container)var11); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + java.awt.Color var20 = var19.getBackground(); + var19.repaint(); + var19.setRequestFocusEnabled(false); + var19.reshape(100, 0, 100, 0); + var19.requestFocus(); + var19.firePropertyChange("hi!", '4', ' '); + java.awt.Point var34 = var19.getLocation(); + java.awt.Component var35 = var11.getComponentAt(var34); + java.beans.VetoableChangeListener[] var36 = var11.getVetoableChangeListeners(); + // The following exception was thrown during execution. + // This behavior will recorded for regression testing. + try { + java.awt.Component var38 = var11.getComponent(24); + fail("Expected exception of type java.lang.ArrayIndexOutOfBoundsException"); + } catch (java.lang.ArrayIndexOutOfBoundsException e) { + // Expected exception. + } + + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var34); + + // Regression assertion (captures the current behavior of the code) + assertNull(var35); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var36); + + } + + public void test431() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test431"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + boolean var2 = var0.hasFocus(); + SpaceWar.SpacePanel var3 = new SpaceWar.SpacePanel(); + float var4 = var3.getAlignmentX(); + var3.setVisible(false); + var3.nextFocus(); + var3.reshape((-1), 1, (-1), 10); + var3.disable(); + java.awt.LayoutManager var14 = var3.getLayout(); + var3.setVisible(false); + var0.remove((java.awt.Component)var3); + boolean var18 = var3.hasFocus(); + java.awt.Point var20 = var3.getMousePosition(false); + boolean var21 = var3.requestDefaultFocus(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var2 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == false); + + } + + public void test432() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test432"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.reshape((-1), 1, (-1), 10); + SpaceWar.SpacePanel var10 = new SpaceWar.SpacePanel(); + java.awt.Color var11 = var10.getBackground(); + var10.repaint(); + var10.setRequestFocusEnabled(false); + var10.reshape(100, 0, 100, 0); + java.awt.Component var20 = var0.add((java.awt.Component)var10); + boolean var21 = var10.isEnabled(); + SpaceWar.SpacePanel var22 = new SpaceWar.SpacePanel(); + float var23 = var22.getAlignmentX(); + var22.setVisible(false); + var22.setInheritsPopupMenu(false); + var22.setFocusTraversalPolicyProvider(true); + SpaceWar.SpacePanel var30 = new SpaceWar.SpacePanel(); + float var31 = var30.getAlignmentX(); + var30.setVisible(false); + boolean var34 = var30.isDoubleBuffered(); + var30.list(); + SpaceWar.SpacePanel var36 = new SpaceWar.SpacePanel(); + float var37 = var36.getAlignmentX(); + var36.setVisible(false); + boolean var40 = var36.isDoubleBuffered(); + java.awt.dnd.DropTarget var41 = var36.getDropTarget(); + var36.show(false); + java.awt.Rectangle var44 = var36.getVisibleRect(); + java.awt.Rectangle var45 = var30.getBounds(var44); + javax.swing.JToolTip var46 = var30.createToolTip(); + var22.removeKeyListener((java.awt.event.KeyListener)var30); + javax.swing.TransferHandler var48 = var22.getTransferHandler(); + var22.transferFocus(); + SpaceWar.SpacePanel var50 = new SpaceWar.SpacePanel(); + float var51 = var50.getAlignmentX(); + SpaceWar.SpacePanel var52 = new SpaceWar.SpacePanel(); + float var53 = var52.getAlignmentX(); + var52.setVisible(false); + java.awt.Dimension var56 = var52.getPreferredSize(); + boolean var57 = var52.getVerifyInputWhenFocusTarget(); + java.awt.Component var60 = var52.findComponentAt(10, 1); + var50.addKeyListener((java.awt.event.KeyListener)var52); + java.awt.Dimension var62 = var52.getMinimumSize(); + SpaceWar.SpacePanel var63 = new SpaceWar.SpacePanel(); + java.awt.Color var64 = var63.getBackground(); + var63.repaint(); + var63.setRequestFocusEnabled(false); + var63.reshape(100, 0, 100, 0); + var63.requestFocus(); + java.awt.Rectangle var74 = var63.getVisibleRect(); + var52.setBounds(var74); + var22.scrollRectToVisible(var74); + var10.setBounds(var74); + var10.setName(""); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var31 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var34 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var40 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var41); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var44); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var45); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var46); + + // Regression assertion (captures the current behavior of the code) + assertNull(var48); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var51 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var53 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var56); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var57 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var60); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var62); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var64); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var74); + + } + + public void test433() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test433"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var6 = var0.getMouseListeners(); + int var7 = var0.getDebugGraphicsOptions(); + java.awt.Color var8 = var0.getBackground(); + java.awt.Container var9 = var0.getParent(); + boolean var10 = var0.getVerifyInputWhenFocusTarget(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertNull(var9); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == true); + + } + + public void test434() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test434"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + float var6 = var0.getAlignmentY(); + var0.repaint((-1L)); + var0.setLocation(400, 24); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == 0.5f); + + } + + public void test435() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test435"); + + + SpaceWar.Player var0 = new SpaceWar.Player(); + int var1 = var0.getR(); + var0.setUp(false); + var0.update(); + java.awt.image.BufferedImage var6 = var0.loadImg("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + int var7 = var0.getX(); + var0.setLife(10); + var0.loseLife(); + var0.update(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 25); + + // Regression assertion (captures the current behavior of the code) + assertNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 400); + + } + + public void test436() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test436"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + float var7 = var6.getAlignmentX(); + var6.setVisible(false); + java.awt.Dimension var10 = var6.getPreferredSize(); + var0.setMaximumSize(var10); + boolean var12 = var0.getVerifyInputWhenFocusTarget(); + int var13 = var0.getX(); + java.awt.Rectangle var14 = var0.bounds(); + boolean var15 = var0.getAutoscrolls(); + var0.removeAll(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == false); + + } + + public void test437() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test437"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + java.awt.Dimension var4 = var0.getPreferredSize(); + java.awt.Toolkit var5 = var0.getToolkit(); + boolean var6 = var0.isFocusable(); + javax.swing.KeyStroke[] var7 = var0.getRegisteredKeyStrokes(); + var0.setFocusCycleRoot(false); + var0.setDoubleBuffered(false); + SpaceWar.SpacePanel var12 = new SpaceWar.SpacePanel(); + float var13 = var12.getAlignmentX(); + var12.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var18 = new SpaceWar.SpacePanel(); + float var19 = var18.getAlignmentX(); + var18.setVisible(false); + SpaceWar.SpacePanel var22 = new SpaceWar.SpacePanel(); + java.awt.Color var23 = var22.getBackground(); + var18.setForeground(var23); + var12.setBackground(var23); + java.awt.Point var26 = var12.location(); + var12.setToolTipText("SpaceWar.SpacePanel[,0,0,0x0,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + java.awt.event.HierarchyBoundsListener[] var29 = var12.getHierarchyBoundsListeners(); + var12.revalidate(); + // The following exception was thrown during execution. + // This behavior will recorded for regression testing. + try { + var0.setComponentZOrder((java.awt.Component)var12, 1); + fail("Expected exception of type java.lang.IllegalArgumentException"); + } catch (java.lang.IllegalArgumentException e) { + // Expected exception. + } + + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var4); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var23); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var29); + + } + + public void test438() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test438"); + + + SpaceWar.Bullet var3 = new SpaceWar.Bullet(594.7973940347722d, 3, 100); + boolean var4 = var3.update(); + boolean var5 = var3.update(); + boolean var6 = var3.update(); + double var7 = var3.getR(); + double var8 = var3.getX(); + double var9 = var3.getY(); + double var10 = var3.getX(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 5.0d); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == (-14.294084445243069d)); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 75.48643960578549d); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == (-14.294084445243069d)); + + } + + public void test439() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test439"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + var0.list(); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + float var7 = var6.getAlignmentX(); + var6.setVisible(false); + boolean var10 = var6.isDoubleBuffered(); + java.awt.dnd.DropTarget var11 = var6.getDropTarget(); + var6.show(false); + java.awt.Rectangle var14 = var6.getVisibleRect(); + java.awt.Rectangle var15 = var0.getBounds(var14); + javax.swing.JToolTip var16 = var0.createToolTip(); + var0.firePropertyChange("", false, false); + var0.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", (-1L), (-1L)); + var0.validate(); + int var28 = var0.getBaseline(1, 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var28 == (-1)); + + } + + public void test440() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test440"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.updateUI(); + var0.enableInputMethods(true); + var0.enableInputMethods(true); + SpaceWar.SpacePanel var10 = new SpaceWar.SpacePanel(); + float var11 = var10.getAlignmentX(); + var10.setVisible(false); + var10.nextFocus(); + var10.reshape((-1), 1, (-1), 10); + var10.disable(); + var10.show(); + SpaceWar.SpacePanel var22 = new SpaceWar.SpacePanel(); + float var23 = var22.getAlignmentX(); + var22.setVisible(false); + boolean var26 = var22.isDoubleBuffered(); + var22.list(); + SpaceWar.SpacePanel var28 = new SpaceWar.SpacePanel(); + float var29 = var28.getAlignmentX(); + var28.setVisible(false); + boolean var32 = var28.isDoubleBuffered(); + java.awt.dnd.DropTarget var33 = var28.getDropTarget(); + var28.show(false); + java.awt.Rectangle var36 = var28.getVisibleRect(); + java.awt.Rectangle var37 = var22.getBounds(var36); + javax.swing.JToolTip var38 = var22.createToolTip(); + var22.firePropertyChange("", false, false); + var22.validate(); + SpaceWar.SpacePanel var44 = new SpaceWar.SpacePanel(); + float var45 = var44.getAlignmentX(); + var44.setVisible(false); + boolean var48 = var44.isDoubleBuffered(); + java.awt.dnd.DropTarget var49 = var44.getDropTarget(); + var44.show(false); + boolean var52 = var44.isPaintingForPrint(); + SpaceWar.SpacePanel var53 = new SpaceWar.SpacePanel(); + float var54 = var53.getAlignmentX(); + var53.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var59 = var53.getMouseListeners(); + int var60 = var53.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var61 = var53.getInputMethodRequests(); + var44.addKeyListener((java.awt.event.KeyListener)var53); + var53.repaint(); + java.awt.Point var64 = var53.location(); + java.awt.Component var65 = var22.getComponentAt(var64); + java.awt.Point var66 = var10.getLocation(var64); + java.awt.Point var67 = var0.getLocation(var64); + java.awt.Component var70 = var0.getComponentAt(500, 2); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var29 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var32 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var33); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var36); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var37); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var38); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var45 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var48 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var49); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var52 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var54 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var59); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var60 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var61); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var64); + + // Regression assertion (captures the current behavior of the code) + assertNull(var65); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var66); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var67); + + // Regression assertion (captures the current behavior of the code) + assertNull(var70); + + } + + public void test441() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test441"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.reshape((-1), 1, (-1), 10); + SpaceWar.SpacePanel var10 = new SpaceWar.SpacePanel(); + java.awt.Color var11 = var10.getBackground(); + var10.repaint(); + var10.setRequestFocusEnabled(false); + var10.reshape(100, 0, 100, 0); + java.awt.Component var20 = var0.add((java.awt.Component)var10); + boolean var21 = var10.isEnabled(); + var10.requestFocus(); + boolean var23 = var10.isManagingFocus(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == false); + + } + + public void test442() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test442"); + + + SpaceWar.Enemy var2 = new SpaceWar.Enemy(10, 400); + double var3 = var2.getY(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == 0.0d); + + } + + public void test443() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test443"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.updateUI(); + var0.enableInputMethods(true); + var0.setSize((-1), 1); + boolean var13 = var0.contains(1, 1); + java.lang.String var14 = var0.getUIClassID(); + var0.show(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var14 + "' != '" + "PanelUI"+ "'", var14.equals("PanelUI")); + + } + + public void test444() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test444"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.reshape((-1), 1, (-1), 10); + java.awt.Image var12 = var0.createImage(1, 10); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNull(var12); + + } + + public void test445() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test445"); + + + SpaceWar.Player var0 = new SpaceWar.Player(); + var0.loseLife(); + var0.setScore(3); + + } + + public void test446() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test446"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + boolean var2 = var0.hasFocus(); + java.beans.VetoableChangeListener[] var3 = var0.getVetoableChangeListeners(); + var0.paintImmediately(10, 0, (-1), 25); + boolean var9 = var0.getInheritsPopupMenu(); + var0.resize(500, 10); + SpaceWar.SpacePanel var13 = new SpaceWar.SpacePanel(); + float var14 = var13.getAlignmentX(); + var13.setVisible(false); + boolean var17 = var13.isDoubleBuffered(); + SpaceWar.SpacePanel var18 = new SpaceWar.SpacePanel(); + float var19 = var18.getAlignmentX(); + var18.setVisible(false); + var18.nextFocus(); + var18.reshape((-1), 1, (-1), 10); + var18.disable(); + boolean var29 = var18.isFocusable(); + int var30 = var18.getHeight(); + var13.setNextFocusableComponent((java.awt.Component)var18); + SpaceWar.SpacePanel var32 = new SpaceWar.SpacePanel(); + float var33 = var32.getAlignmentX(); + var32.setVisible(false); + var32.nextFocus(); + SpaceWar.SpacePanel var37 = new SpaceWar.SpacePanel(); + float var38 = var37.getAlignmentX(); + var37.setVisible(false); + SpaceWar.SpacePanel var41 = new SpaceWar.SpacePanel(); + java.awt.Color var42 = var41.getBackground(); + var37.setForeground(var42); + var32.setBackground(var42); + java.awt.Component var45 = var32.getNextFocusableComponent(); + float var46 = var32.getAlignmentY(); + java.awt.event.MouseListener[] var47 = var32.getMouseListeners(); + java.awt.Point var48 = var32.location(); + java.awt.Point var49 = var13.getLocation(var48); + var0.setLocation(var49); + var0.setSize(2, 3); + SpaceWar.Player var54 = new SpaceWar.Player(); + boolean var55 = var54.isRecovering(); + var54.setRigth(false); + int var58 = var54.getPower(); + boolean var59 = var54.isDead(); + SpaceWar.SpacePanel var60 = new SpaceWar.SpacePanel(); + java.awt.Color var61 = var60.getBackground(); + var60.repaint(); + java.awt.im.InputMethodRequests var63 = var60.getInputMethodRequests(); + var60.setDoubleBuffered(true); + var60.setInheritsPopupMenu(false); + boolean var68 = var60.isFocusTraversalPolicySet(); + var0.putClientProperty((java.lang.Object)var54, (java.lang.Object)var68); + int var70 = var54.getR(); + int var71 = var54.getLives(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var2 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var29 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var30 == 10); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var33 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var38 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var42); + + // Regression assertion (captures the current behavior of the code) + assertNull(var45); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var46 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var47); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var48); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var49); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var55 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var58 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var59 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var61); + + // Regression assertion (captures the current behavior of the code) + assertNull(var63); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var68 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var70 == 25); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var71 == 3); + + } + + public void test447() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test447"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.setInheritsPopupMenu(false); + var0.setFocusTraversalPolicyProvider(true); + boolean var10 = var0.inside(25, 3); + SpaceWar.SpacePanel var11 = new SpaceWar.SpacePanel(); + float var12 = var11.getAlignmentX(); + var11.setVisible(false); + boolean var15 = var11.isDoubleBuffered(); + java.awt.dnd.DropTarget var16 = var11.getDropTarget(); + var11.show(false); + boolean var19 = var11.isPaintingForPrint(); + SpaceWar.SpacePanel var20 = new SpaceWar.SpacePanel(); + float var21 = var20.getAlignmentX(); + SpaceWar.SpacePanel var22 = new SpaceWar.SpacePanel(); + float var23 = var22.getAlignmentX(); + var22.setVisible(false); + java.awt.Dimension var26 = var22.getPreferredSize(); + boolean var27 = var22.getVerifyInputWhenFocusTarget(); + java.awt.Component var30 = var22.findComponentAt(10, 1); + var20.addKeyListener((java.awt.event.KeyListener)var22); + java.awt.Dimension var32 = var22.getMinimumSize(); + var11.setMinimumSize(var32); + var0.setPreferredSize(var32); + // The following exception was thrown during execution. + // This behavior will recorded for regression testing. + try { + java.awt.Component var36 = var0.getComponent((-1)); + fail("Expected exception of type java.lang.ArrayIndexOutOfBoundsException"); + } catch (java.lang.ArrayIndexOutOfBoundsException e) { + // Expected exception. + } + + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var30); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var32); + + } + + public void test448() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test448"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.reshape((-1), 1, (-1), 10); + var0.disable(); + boolean var11 = var0.isFocusable(); + int var12 = var0.getHeight(); + javax.swing.InputVerifier var13 = var0.getInputVerifier(); + java.awt.Graphics var14 = var0.getGraphics(); + SpaceWar.SpacePanel var15 = new SpaceWar.SpacePanel(); + float var16 = var15.getAlignmentX(); + var15.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var21 = var15.getMouseListeners(); + java.awt.Dimension var22 = var15.getPreferredSize(); + java.util.Locale var23 = var15.getLocale(); + java.awt.Font var24 = var15.getFont(); + java.awt.Color var25 = var15.getForeground(); + var0.setForeground(var25); + // The following exception was thrown during execution. + // This behavior will recorded for regression testing. + try { + java.awt.Component var28 = var0.getComponent(24); + fail("Expected exception of type java.lang.ArrayIndexOutOfBoundsException"); + } catch (java.lang.ArrayIndexOutOfBoundsException e) { + // Expected exception. + } + + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == 10); + + // Regression assertion (captures the current behavior of the code) + assertNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var21); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var23); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var25); + + } + + public void test449() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test449"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.setInheritsPopupMenu(false); + var0.setFocusTraversalPolicyProvider(true); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + boolean var12 = var8.isDoubleBuffered(); + var8.list(); + SpaceWar.SpacePanel var14 = new SpaceWar.SpacePanel(); + float var15 = var14.getAlignmentX(); + var14.setVisible(false); + boolean var18 = var14.isDoubleBuffered(); + java.awt.dnd.DropTarget var19 = var14.getDropTarget(); + var14.show(false); + java.awt.Rectangle var22 = var14.getVisibleRect(); + java.awt.Rectangle var23 = var8.getBounds(var22); + javax.swing.JToolTip var24 = var8.createToolTip(); + var0.removeKeyListener((java.awt.event.KeyListener)var8); + boolean var26 = var8.isDoubleBuffered(); + java.awt.Toolkit var27 = var8.getToolkit(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var23); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var27); + + } + + public void test450() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test450"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var6 = var0.getUI(); + java.awt.im.InputMethodRequests var7 = var0.getInputMethodRequests(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + var8.nextFocus(); + var8.updateUI(); + var8.enableInputMethods(true); + var8.setSize((-1), 1); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + var19.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var0.add((java.awt.Component)var8, (java.lang.Object)"SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + var8.doLayout(); + SpaceWar.SpacePanel var26 = new SpaceWar.SpacePanel(); + float var27 = var26.getAlignmentX(); + var26.setVisible(false); + SpaceWar.SpacePanel var30 = new SpaceWar.SpacePanel(); + java.awt.Color var31 = var30.getBackground(); + var26.setForeground(var31); + SpaceWar.SpacePanel var33 = new SpaceWar.SpacePanel(); + float var34 = var33.getAlignmentX(); + var33.setVisible(false); + boolean var37 = var33.isDoubleBuffered(); + java.awt.dnd.DropTarget var38 = var33.getDropTarget(); + var33.show(false); + java.awt.Rectangle var41 = var33.getVisibleRect(); + var26.repaint(var41); + java.awt.FocusTraversalPolicy var43 = var26.getFocusTraversalPolicy(); + var26.resetKeyboardActions(); + SpaceWar.SpacePanel var45 = new SpaceWar.SpacePanel(); + float var46 = var45.getAlignmentX(); + var45.setVisible(false); + boolean var49 = var45.isDoubleBuffered(); + java.awt.dnd.DropTarget var50 = var45.getDropTarget(); + var45.show(false); + java.awt.Rectangle var53 = var45.getVisibleRect(); + var26.computeVisibleRect(var53); + javax.swing.ActionMap var55 = var26.getActionMap(); + var8.setActionMap(var55); + java.awt.Point var57 = var8.getLocation(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var31); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var34 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var38); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var41); + + // Regression assertion (captures the current behavior of the code) + assertNull(var43); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var46 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var49 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var50); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var53); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var55); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var57); + + } + + public void test451() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test451"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + boolean var6 = var0.isFocusCycleRoot(); + var0.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", 100, 0); + SpaceWar.SpacePanel var11 = new SpaceWar.SpacePanel(); + float var12 = var11.getAlignmentX(); + var11.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var17 = var11.getUI(); + var0.add((java.awt.Component)var11, (java.lang.Object)(short)0); + java.awt.event.InputMethodListener[] var20 = var11.getInputMethodListeners(); + java.awt.Toolkit var21 = var11.getToolkit(); + boolean var22 = var11.isDoubleBuffered(); + // The following exception was thrown during execution. + // This behavior will recorded for regression testing. + try { + java.awt.Point var23 = var11.getLocationOnScreen(); + fail("Expected exception of type java.awt.IllegalComponentStateException"); + } catch (java.awt.IllegalComponentStateException e) { + // Expected exception. + } + + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var21); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var22 == true); + + } + + public void test452() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test452"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + SpaceWar.SpacePanel var2 = new SpaceWar.SpacePanel(); + float var3 = var2.getAlignmentX(); + var2.setVisible(false); + java.awt.Dimension var6 = var2.getPreferredSize(); + boolean var7 = var2.getVerifyInputWhenFocusTarget(); + java.awt.Component var10 = var2.findComponentAt(10, 1); + var0.addKeyListener((java.awt.event.KeyListener)var2); + var2.repaint(100, (-1), (-1), 1); + SpaceWar.SpacePanel var17 = new SpaceWar.SpacePanel(); + java.awt.Color var18 = var17.getBackground(); + var17.repaint(); + java.awt.im.InputMethodRequests var20 = var17.getInputMethodRequests(); + java.awt.GraphicsConfiguration var21 = var17.getGraphicsConfiguration(); + var2.remove((java.awt.Component)var17); + java.awt.Font var23 = var17.getFont(); + boolean var25 = var17.requestFocus(false); + SpaceWar.SpacePanel var26 = new SpaceWar.SpacePanel(); + float var27 = var26.getAlignmentX(); + var26.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var32 = var26.getUI(); + java.awt.im.InputMethodRequests var33 = var26.getInputMethodRequests(); + SpaceWar.SpacePanel var34 = new SpaceWar.SpacePanel(); + float var35 = var34.getAlignmentX(); + var34.setVisible(false); + var34.nextFocus(); + var34.updateUI(); + var34.enableInputMethods(true); + var34.setSize((-1), 1); + SpaceWar.SpacePanel var45 = new SpaceWar.SpacePanel(); + var45.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var26.add((java.awt.Component)var34, (java.lang.Object)"SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + java.awt.ComponentOrientation var51 = var34.getComponentOrientation(); + java.beans.VetoableChangeListener[] var52 = var34.getVetoableChangeListeners(); + java.awt.Rectangle var53 = var34.bounds(); + var17.setNextFocusableComponent((java.awt.Component)var34); + var34.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", true, true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertNull(var21); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var23); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var32); + + // Regression assertion (captures the current behavior of the code) + assertNull(var33); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var35 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var51); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var52); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var53); + + } + + public void test453() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test453"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.setInheritsPopupMenu(false); + var0.setFocusTraversalPolicyProvider(true); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + boolean var12 = var8.isDoubleBuffered(); + var8.list(); + SpaceWar.SpacePanel var14 = new SpaceWar.SpacePanel(); + float var15 = var14.getAlignmentX(); + var14.setVisible(false); + boolean var18 = var14.isDoubleBuffered(); + java.awt.dnd.DropTarget var19 = var14.getDropTarget(); + var14.show(false); + java.awt.Rectangle var22 = var14.getVisibleRect(); + java.awt.Rectangle var23 = var8.getBounds(var22); + javax.swing.JToolTip var24 = var8.createToolTip(); + var0.removeKeyListener((java.awt.event.KeyListener)var8); + javax.swing.TransferHandler var26 = var0.getTransferHandler(); + var0.transferFocus(); + boolean var28 = var0.isFocusable(); + var0.disable(); + boolean var30 = var0.isFocusOwner(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var23); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var28 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var30 == false); + + } + + public void test454() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test454"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + SpaceWar.SpacePanel var4 = new SpaceWar.SpacePanel(); + java.awt.Color var5 = var4.getBackground(); + var0.setForeground(var5); + SpaceWar.SpacePanel var7 = new SpaceWar.SpacePanel(); + float var8 = var7.getAlignmentX(); + var7.setVisible(false); + boolean var11 = var7.isDoubleBuffered(); + java.awt.dnd.DropTarget var12 = var7.getDropTarget(); + var7.show(false); + java.awt.Rectangle var15 = var7.getVisibleRect(); + var0.repaint(var15); + SpaceWar.SpacePanel var17 = new SpaceWar.SpacePanel(); + float var18 = var17.getAlignmentX(); + var17.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var23 = var17.getMouseListeners(); + java.awt.Dimension var24 = var17.getPreferredSize(); + java.util.Locale var25 = var17.getLocale(); + var0.setLocale(var25); + java.util.Locale var27 = var0.getLocale(); + var0.transferFocusDownCycle(); + java.awt.event.MouseWheelListener[] var29 = var0.getMouseWheelListeners(); + boolean var30 = var0.isValid(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var23); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var25); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var27); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var29); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var30 == false); + + } + + public void test455() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test455"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var6 = var0.getMouseListeners(); + var0.firePropertyChange("", 0.5f, 100.0f); + java.awt.event.MouseMotionListener[] var11 = var0.getMouseMotionListeners(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + } + + public void test456() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test456"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + java.awt.im.InputMethodRequests var3 = var0.getInputMethodRequests(); + var0.setDoubleBuffered(true); + var0.show(false); + var0.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", (-1), 24); + boolean var12 = var0.hasFocus(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == false); + + } + + public void test457() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test457"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var1 = new SpaceWar.SpacePanel(); + java.awt.Color var2 = var1.getBackground(); + SpaceWar.SpacePanel var3 = new SpaceWar.SpacePanel(); + float var4 = var3.getAlignmentX(); + var3.setVisible(false); + var3.nextFocus(); + var3.updateUI(); + var3.enableInputMethods(true); + var0.add((java.awt.Component)var1, (java.lang.Object)true); + java.awt.Dimension var12 = var1.getPreferredSize(); + java.awt.Component[] var13 = var1.getComponents(); + var1.repaint(25, 25, 100, 1); + javax.swing.KeyStroke[] var19 = var1.getRegisteredKeyStrokes(); + var1.validate(); + boolean var21 = var1.isForegroundSet(); + java.awt.ComponentOrientation var22 = var1.getComponentOrientation(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var2); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var22); + + } + + public void test458() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test458"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var6 = var0.getMouseListeners(); + int var7 = var0.getDebugGraphicsOptions(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + boolean var12 = var8.isDoubleBuffered(); + java.awt.dnd.DropTarget var13 = var8.getDropTarget(); + var8.show(false); + java.awt.Rectangle var16 = var8.getVisibleRect(); + var0.paintImmediately(var16); + SpaceWar.SpacePanel var18 = new SpaceWar.SpacePanel(); + float var19 = var18.getAlignmentX(); + var18.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var24 = var18.getMouseListeners(); + int var25 = var18.getDebugGraphicsOptions(); + SpaceWar.SpacePanel var26 = new SpaceWar.SpacePanel(); + float var27 = var26.getAlignmentX(); + var26.setVisible(false); + boolean var30 = var26.isDoubleBuffered(); + java.awt.dnd.DropTarget var31 = var26.getDropTarget(); + var26.show(false); + java.awt.Rectangle var34 = var26.getVisibleRect(); + var18.paintImmediately(var34); + java.awt.Rectangle var36 = var18.getBounds(); + var0.scrollRectToVisible(var36); + SpaceWar.SpacePanel var38 = new SpaceWar.SpacePanel(); + java.awt.Color var39 = var38.getBackground(); + var38.repaint(); + var38.setRequestFocusEnabled(false); + var38.setIgnoreRepaint(false); + boolean var45 = var38.requestFocusInWindow(); + float var46 = var38.getAlignmentY(); + java.awt.LayoutManager var47 = var38.getLayout(); + var0.setLayout(var47); + java.awt.Dimension var49 = var0.minimumSize(); + var0.setFocusable(false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var30 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var31); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var34); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var36); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var39); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var45 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var46 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var47); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var49); + + } + + public void test459() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test459"); + + + SpaceWar.Enemy var2 = new SpaceWar.Enemy(0, 100); + int var3 = var2.getR(); + int var4 = var2.getR(); + int var5 = var2.getR(); + int var6 = var2.getRank(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == 100); + + } + + public void test460() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test460"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + var0.show(false); + boolean var8 = var0.isPaintingForPrint(); + boolean var9 = var0.getIgnoreRepaint(); + var0.repaint(100, 10, 100, 0); + var0.setOpaque(false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == false); + + } + + public void test461() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test461"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + boolean var5 = javax.swing.JComponent.isLightweightComponent((java.awt.Component)var0); + int var6 = var0.countComponents(); + java.awt.Container var7 = var0.getParent(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var7); + + } + + public void test462() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test462"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + var0.setRequestFocusEnabled(false); + var0.setIgnoreRepaint(false); + boolean var7 = var0.requestFocusInWindow(); + var0.setVisible(true); + java.awt.Container var10 = var0.getParent(); + SpaceWar.SpacePanel var12 = new SpaceWar.SpacePanel(); + java.awt.Color var13 = var12.getBackground(); + var12.repaint(); + java.awt.im.InputMethodRequests var15 = var12.getInputMethodRequests(); + var12.setDoubleBuffered(true); + var12.setInheritsPopupMenu(false); + javax.swing.plaf.PanelUI var20 = var12.getUI(); + java.util.Set var22 = var12.getFocusTraversalKeys(3); + // The following exception was thrown during execution. + // This behavior will recorded for regression testing. + try { + var0.setFocusTraversalKeys(10, var22); + fail("Expected exception of type java.lang.IllegalArgumentException"); + } catch (java.lang.IllegalArgumentException e) { + // Expected exception. + } + + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var22); + + } + + public void test463() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test463"); + + + SpaceWar.Enemy var2 = new SpaceWar.Enemy(0, 100); + int var3 = var2.getR(); + int var4 = var2.getR(); + int var5 = var2.getR(); + int var6 = var2.getType(); + int var7 = var2.getR(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0); + + } + + public void test464() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test464"); + + + SpaceWar.Player var0 = new SpaceWar.Player(); + int var1 = var0.getR(); + boolean var2 = var0.isRecovering(); + int var3 = var0.getRequiredPower(); + var0.setLeft(false); + int var6 = var0.getPower(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 25); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var2 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == 1); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == 0); + + } + + public void test465() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test465"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + java.awt.im.InputMethodRequests var3 = var0.getInputMethodRequests(); + java.awt.GraphicsConfiguration var4 = var0.getGraphicsConfiguration(); + boolean var6 = var0.requestFocus(false); + SpaceWar.SpacePanel var7 = new SpaceWar.SpacePanel(); + float var8 = var7.getAlignmentX(); + var7.setVisible(false); + java.awt.Dimension var11 = var7.getPreferredSize(); + java.awt.Toolkit var12 = var7.getToolkit(); + SpaceWar.SpacePanel var13 = new SpaceWar.SpacePanel(); + var13.setName(""); + int var16 = var13.getX(); + SpaceWar.SpacePanel var17 = new SpaceWar.SpacePanel(); + float var18 = var17.getAlignmentX(); + var17.setVisible(false); + var17.nextFocus(); + SpaceWar.SpacePanel var22 = new SpaceWar.SpacePanel(); + float var23 = var22.getAlignmentX(); + var22.setVisible(false); + SpaceWar.SpacePanel var26 = new SpaceWar.SpacePanel(); + java.awt.Color var27 = var26.getBackground(); + var22.setForeground(var27); + var17.setBackground(var27); + var13.setBackground(var27); + var7.setForeground(var27); + SpaceWar.SpacePanel var32 = new SpaceWar.SpacePanel(); + float var33 = var32.getAlignmentX(); + var32.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var38 = new SpaceWar.SpacePanel(); + float var39 = var38.getAlignmentX(); + var38.setVisible(false); + java.awt.Dimension var42 = var38.getPreferredSize(); + var32.setMaximumSize(var42); + boolean var44 = var32.getVerifyInputWhenFocusTarget(); + javax.accessibility.AccessibleContext var45 = var32.getAccessibleContext(); + boolean var46 = var32.isDoubleBuffered(); + java.awt.Rectangle var47 = var32.getVisibleRect(); + var7.scrollRectToVisible(var47); + SpaceWar.SpacePanel var49 = new SpaceWar.SpacePanel(); + float var50 = var49.getAlignmentX(); + var49.setVisible(false); + java.awt.Dimension var53 = var49.getPreferredSize(); + java.awt.Toolkit var54 = var49.getToolkit(); + SpaceWar.SpacePanel var55 = new SpaceWar.SpacePanel(); + var55.setName(""); + int var58 = var55.getX(); + SpaceWar.SpacePanel var59 = new SpaceWar.SpacePanel(); + float var60 = var59.getAlignmentX(); + var59.setVisible(false); + var59.nextFocus(); + SpaceWar.SpacePanel var64 = new SpaceWar.SpacePanel(); + float var65 = var64.getAlignmentX(); + var64.setVisible(false); + SpaceWar.SpacePanel var68 = new SpaceWar.SpacePanel(); + java.awt.Color var69 = var68.getBackground(); + var64.setForeground(var69); + var59.setBackground(var69); + var55.setBackground(var69); + var49.setForeground(var69); + SpaceWar.SpacePanel var74 = new SpaceWar.SpacePanel(); + float var75 = var74.getAlignmentX(); + var74.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var80 = new SpaceWar.SpacePanel(); + float var81 = var80.getAlignmentX(); + var80.setVisible(false); + java.awt.Dimension var84 = var80.getPreferredSize(); + var74.setMaximumSize(var84); + boolean var86 = var74.getVerifyInputWhenFocusTarget(); + javax.accessibility.AccessibleContext var87 = var74.getAccessibleContext(); + boolean var88 = var74.isDoubleBuffered(); + java.awt.Rectangle var89 = var74.getVisibleRect(); + var49.scrollRectToVisible(var89); + var7.removeKeyListener((java.awt.event.KeyListener)var49); + var49.firePropertyChange("PanelUI", (short)1, (short)1); + java.lang.String var96 = var49.getToolTipText(); + int var97 = var49.getY(); + var0.remove((java.awt.Component)var49); + var49.revalidate(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertNull(var4); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var27); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var33 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var39 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var42); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var44 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var45); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var46 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var47); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var50 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var53); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var54); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var58 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var60 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var65 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var69); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var75 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var81 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var84); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var86 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var87); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var88 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var89); + + // Regression assertion (captures the current behavior of the code) + assertNull(var96); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var97 == 0); + + } + + public void test466() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test466"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + java.awt.im.InputMethodRequests var3 = var0.getInputMethodRequests(); + int var4 = var0.countComponents(); + java.awt.event.ComponentListener[] var5 = var0.getComponentListeners(); + var0.removeNotify(); + java.awt.Component var9 = var0.getComponentAt(1, (-1)); + SpaceWar.SpacePanel var10 = new SpaceWar.SpacePanel(); + float var11 = var10.getAlignmentX(); + var10.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var16 = new SpaceWar.SpacePanel(); + float var17 = var16.getAlignmentX(); + var16.setVisible(false); + java.awt.Dimension var20 = var16.getPreferredSize(); + var10.setMaximumSize(var20); + boolean var22 = var10.getVerifyInputWhenFocusTarget(); + javax.accessibility.AccessibleContext var23 = var10.getAccessibleContext(); + boolean var24 = var10.isDoubleBuffered(); + java.awt.Rectangle var25 = var10.getVisibleRect(); + var0.setBounds(var25); + java.awt.image.VolatileImage var29 = var0.createVolatileImage(400, 0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertNull(var9); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var22 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var23); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var24 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var25); + + // Regression assertion (captures the current behavior of the code) + assertNull(var29); + + } + + public void test467() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test467"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var1 = new SpaceWar.SpacePanel(); + java.awt.Color var2 = var1.getBackground(); + SpaceWar.SpacePanel var3 = new SpaceWar.SpacePanel(); + float var4 = var3.getAlignmentX(); + var3.setVisible(false); + var3.nextFocus(); + var3.updateUI(); + var3.enableInputMethods(true); + var0.add((java.awt.Component)var1, (java.lang.Object)true); + java.awt.Dimension var12 = var1.getPreferredSize(); + var1.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", (-1.0f), 100.0f); + SpaceWar.SpacePanel var17 = new SpaceWar.SpacePanel(); + float var18 = var17.getAlignmentX(); + var17.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var23 = var17.getMouseListeners(); + java.awt.Dimension var24 = var17.getPreferredSize(); + java.util.Locale var25 = var17.getLocale(); + var17.setFocusable(true); + var17.setSize(3, 10); + var17.invalidate(); + boolean var32 = var17.isValid(); + boolean var33 = var17.getVerifyInputWhenFocusTarget(); + SpaceWar.SpacePanel var34 = new SpaceWar.SpacePanel(); + float var35 = var34.getAlignmentX(); + var34.setVisible(false); + var34.nextFocus(); + var34.reshape((-1), 1, (-1), 10); + var34.disable(); + java.awt.LayoutManager var45 = var34.getLayout(); + java.awt.Container var46 = var34.getParent(); + java.lang.String var47 = var34.getUIClassID(); + float var48 = var34.getAlignmentX(); + var34.enable(true); + boolean var51 = var34.isPaintingTile(); + // The following exception was thrown during execution. + // This behavior will recorded for regression testing. + try { + var1.add((java.awt.Component)var17, (java.lang.Object)var51, 25); + fail("Expected exception of type java.lang.IllegalArgumentException"); + } catch (java.lang.IllegalArgumentException e) { + // Expected exception. + } + + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var2); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var23); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var25); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var32 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var33 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var35 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var45); + + // Regression assertion (captures the current behavior of the code) + assertNull(var46); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var47 + "' != '" + "PanelUI"+ "'", var47.equals("PanelUI")); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var48 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var51 == false); + + } + + public void test468() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test468"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var1 = new SpaceWar.SpacePanel(); + java.awt.Color var2 = var1.getBackground(); + SpaceWar.SpacePanel var3 = new SpaceWar.SpacePanel(); + float var4 = var3.getAlignmentX(); + var3.setVisible(false); + var3.nextFocus(); + var3.updateUI(); + var3.enableInputMethods(true); + var0.add((java.awt.Component)var1, (java.lang.Object)true); + java.awt.Dimension var12 = var1.getPreferredSize(); + java.awt.Component[] var13 = var1.getComponents(); + var1.firePropertyChange("SpaceWar.SpacePanel[,-1,1,-1x10,invalid,hidden,disabled,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", ' ', 'a'); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var2); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var13); + + } + + public void test469() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test469"); + + + SpaceWar.Player var0 = new SpaceWar.Player(); + var0.increasePower(25); + int var3 = var0.getR(); + int var4 = var0.getScore(); + var0.loseLife(); + boolean var6 = var0.isRecovering(); + boolean var7 = var0.isDead(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == 25); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == false); + + } + + public void test470() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test470"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + SpaceWar.SpacePanel var4 = new SpaceWar.SpacePanel(); + java.awt.Color var5 = var4.getBackground(); + var0.setForeground(var5); + SpaceWar.SpacePanel var7 = new SpaceWar.SpacePanel(); + float var8 = var7.getAlignmentX(); + var7.setVisible(false); + boolean var11 = var7.isDoubleBuffered(); + java.awt.dnd.DropTarget var12 = var7.getDropTarget(); + var7.show(false); + java.awt.Rectangle var15 = var7.getVisibleRect(); + var0.repaint(var15); + java.awt.FocusTraversalPolicy var17 = var0.getFocusTraversalPolicy(); + java.awt.im.InputMethodRequests var18 = var0.getInputMethodRequests(); + var0.layout(); + java.awt.Point var20 = var0.getMousePosition(); + boolean var21 = var0.isShowing(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == false); + + } + + public void test471() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test471"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.reshape((-1), 1, (-1), 10); + var0.disable(); + var0.show(); + SpaceWar.SpacePanel var12 = new SpaceWar.SpacePanel(); + float var13 = var12.getAlignmentX(); + var12.setVisible(false); + boolean var16 = var12.isDoubleBuffered(); + var12.list(); + SpaceWar.SpacePanel var18 = new SpaceWar.SpacePanel(); + float var19 = var18.getAlignmentX(); + var18.setVisible(false); + boolean var22 = var18.isDoubleBuffered(); + java.awt.dnd.DropTarget var23 = var18.getDropTarget(); + var18.show(false); + java.awt.Rectangle var26 = var18.getVisibleRect(); + java.awt.Rectangle var27 = var12.getBounds(var26); + javax.swing.JToolTip var28 = var12.createToolTip(); + var12.firePropertyChange("", false, false); + var12.validate(); + SpaceWar.SpacePanel var34 = new SpaceWar.SpacePanel(); + float var35 = var34.getAlignmentX(); + var34.setVisible(false); + boolean var38 = var34.isDoubleBuffered(); + java.awt.dnd.DropTarget var39 = var34.getDropTarget(); + var34.show(false); + boolean var42 = var34.isPaintingForPrint(); + SpaceWar.SpacePanel var43 = new SpaceWar.SpacePanel(); + float var44 = var43.getAlignmentX(); + var43.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var49 = var43.getMouseListeners(); + int var50 = var43.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var51 = var43.getInputMethodRequests(); + var34.addKeyListener((java.awt.event.KeyListener)var43); + var43.repaint(); + java.awt.Point var54 = var43.location(); + java.awt.Component var55 = var12.getComponentAt(var54); + java.awt.Point var56 = var0.getLocation(var54); + var0.setAlignmentY(0.5f); + SpaceWar.SpacePanel var59 = new SpaceWar.SpacePanel(); + java.awt.Color var60 = var59.getBackground(); + var59.repaint(); + java.awt.im.InputMethodRequests var62 = var59.getInputMethodRequests(); + var59.setDoubleBuffered(true); + SpaceWar.SpacePanel var65 = new SpaceWar.SpacePanel(); + float var66 = var65.getAlignmentX(); + boolean var67 = var65.hasFocus(); + java.awt.Insets var68 = var65.getInsets(); + java.awt.Insets var69 = var59.getInsets(var68); + java.awt.Insets var70 = var0.getInsets(var68); + java.awt.event.FocusListener[] var71 = var0.getFocusListeners(); + // The following exception was thrown during execution. + // This behavior will recorded for regression testing. + try { + var0.remove(25); + fail("Expected exception of type java.lang.ArrayIndexOutOfBoundsException"); + } catch (java.lang.ArrayIndexOutOfBoundsException e) { + // Expected exception. + } + + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var22 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var23); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var27); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var28); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var35 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var38 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var39); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var42 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var44 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var49); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var50 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var51); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var54); + + // Regression assertion (captures the current behavior of the code) + assertNull(var55); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var56); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var60); + + // Regression assertion (captures the current behavior of the code) + assertNull(var62); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var66 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var67 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var68); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var69); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var70); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var71); + + } + + public void test472() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test472"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var1 = new SpaceWar.SpacePanel(); + java.awt.Color var2 = var1.getBackground(); + SpaceWar.SpacePanel var3 = new SpaceWar.SpacePanel(); + float var4 = var3.getAlignmentX(); + var3.setVisible(false); + var3.nextFocus(); + var3.updateUI(); + var3.enableInputMethods(true); + var0.add((java.awt.Component)var1, (java.lang.Object)true); + java.awt.Image var14 = var1.createImage(1, (-1)); + java.awt.event.MouseListener[] var15 = var1.getMouseListeners(); + var1.firePropertyChange("SpaceWar.SpacePanel[,-1,1,-1x10,invalid,hidden,disabled,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", 100.0d, 1.0d); + boolean var20 = var1.requestDefaultFocus(); + java.awt.Container var21 = var1.getTopLevelAncestor(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var2); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var21); + + } + + public void test473() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test473"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + var0.show(false); + boolean var8 = var0.isPaintingForPrint(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var15 = var9.getMouseListeners(); + int var16 = var9.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var17 = var9.getInputMethodRequests(); + var0.addKeyListener((java.awt.event.KeyListener)var9); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + float var20 = var19.getAlignmentX(); + var19.setVisible(false); + boolean var23 = var19.isDoubleBuffered(); + var19.list(); + float var25 = var19.getAlignmentY(); + boolean var26 = var9.isFocusCycleRoot((java.awt.Container)var19); + var19.firePropertyChange("", 1L, 1L); + var19.setVerifyInputWhenFocusTarget(true); + var19.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", '4', '4'); + java.awt.Point var37 = var19.getLocation(); + boolean var38 = var19.isFontSet(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var37); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var38 == true); + + } + + public void test474() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test474"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.reshape((-1), 1, (-1), 10); + var0.disable(); + java.awt.LayoutManager var11 = var0.getLayout(); + boolean var14 = var0.contains((-1), 0); + SpaceWar.SpacePanel var15 = new SpaceWar.SpacePanel(); + float var16 = var15.getAlignmentX(); + var15.setVisible(false); + var15.nextFocus(); + var15.updateUI(); + var15.enableInputMethods(true); + var15.setSize((-1), 1); + java.awt.Component var26 = var0.add((java.awt.Component)var15); + SpaceWar.SpacePanel var27 = new SpaceWar.SpacePanel(); + float var28 = var27.getAlignmentX(); + var27.setVisible(false); + var27.nextFocus(); + var27.updateUI(); + var27.enableInputMethods(true); + java.lang.String var35 = var27.toString(); + java.awt.FocusTraversalPolicy var36 = var27.getFocusTraversalPolicy(); + var15.removeKeyListener((java.awt.event.KeyListener)var27); + var27.invalidate(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var28 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var35 + "' != '" + "SpaceWar.SpacePanel[,0,0,0var35,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"+ "'", var35.equals("SpaceWar.SpacePanel[,0,0,0var35,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]")); + + // Regression assertion (captures the current behavior of the code) + assertNull(var36); + + } + + public void test475() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test475"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + var0.setRequestFocusEnabled(false); + var0.reshape(100, 0, 100, 0); + javax.swing.event.AncestorListener[] var10 = var0.getAncestorListeners(); + var0.setOpaque(true); + java.awt.GraphicsConfiguration var13 = var0.getGraphicsConfiguration(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertNull(var13); + + } + + public void test476() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test476"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var6 = var0.getUI(); + SpaceWar.SpacePanel var7 = new SpaceWar.SpacePanel(); + float var8 = var7.getAlignmentX(); + var7.setVisible(false); + SpaceWar.SpacePanel var11 = new SpaceWar.SpacePanel(); + java.awt.Color var12 = var11.getBackground(); + var7.setForeground(var12); + SpaceWar.SpacePanel var14 = new SpaceWar.SpacePanel(); + float var15 = var14.getAlignmentX(); + var14.setVisible(false); + boolean var18 = var14.isDoubleBuffered(); + java.awt.dnd.DropTarget var19 = var14.getDropTarget(); + var14.show(false); + java.awt.Rectangle var22 = var14.getVisibleRect(); + var7.repaint(var22); + java.awt.FocusTraversalPolicy var24 = var7.getFocusTraversalPolicy(); + var7.resetKeyboardActions(); + SpaceWar.SpacePanel var26 = new SpaceWar.SpacePanel(); + float var27 = var26.getAlignmentX(); + var26.setVisible(false); + boolean var30 = var26.isDoubleBuffered(); + java.awt.dnd.DropTarget var31 = var26.getDropTarget(); + var26.show(false); + java.awt.Rectangle var34 = var26.getVisibleRect(); + var7.computeVisibleRect(var34); + javax.swing.ActionMap var36 = var7.getActionMap(); + var0.setActionMap(var36); + java.awt.Point var38 = var0.getMousePosition(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var30 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var31); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var34); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var36); + + // Regression assertion (captures the current behavior of the code) + assertNull(var38); + + } + + public void test477() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test477"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + var0.list(); + float var6 = var0.getAlignmentY(); + boolean var7 = var0.isOpaque(); + var0.nextFocus(); + java.awt.Component var9 = var0.getNextFocusableComponent(); + SpaceWar.SpacePanel var10 = new SpaceWar.SpacePanel(); + float var11 = var10.getAlignmentX(); + var10.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var16 = var10.getUI(); + java.awt.im.InputMethodRequests var17 = var10.getInputMethodRequests(); + SpaceWar.SpacePanel var18 = new SpaceWar.SpacePanel(); + float var19 = var18.getAlignmentX(); + var18.setVisible(false); + var18.nextFocus(); + var18.updateUI(); + var18.enableInputMethods(true); + var18.setSize((-1), 1); + SpaceWar.SpacePanel var29 = new SpaceWar.SpacePanel(); + var29.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var10.add((java.awt.Component)var18, (java.lang.Object)"SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + SpaceWar.SpacePanel var35 = new SpaceWar.SpacePanel(); + float var36 = var35.getAlignmentX(); + var35.setVisible(false); + java.awt.Dimension var39 = var35.getPreferredSize(); + java.awt.Toolkit var40 = var35.getToolkit(); + java.awt.Toolkit var41 = var35.getToolkit(); + java.awt.Component var42 = var18.add((java.awt.Component)var35); + var42.firePropertyChange("", 0.5f, 10.0f); + SpaceWar.SpacePanel var47 = new SpaceWar.SpacePanel(); + float var48 = var47.getAlignmentX(); + var47.setVisible(false); + var47.setInheritsPopupMenu(false); + var47.move(10, 10); + var47.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + java.awt.Rectangle var60 = var47.bounds(); + var42.setBounds(var60); + boolean var64 = var42.inside(500, 0); + // The following exception was thrown during execution. + // This behavior will recorded for regression testing. + try { + var0.setComponentZOrder(var42, 2); + fail("Expected exception of type java.lang.IllegalArgumentException"); + } catch (java.lang.IllegalArgumentException e) { + // Expected exception. + } + + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var9); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var36 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var39); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var40); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var41); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var42); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var48 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var60); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var64 == false); + + } + + public void test478() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test478"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + var0.setRequestFocusEnabled(false); + var0.reshape(100, 0, 100, 0); + var0.requestFocus(); + var0.firePropertyChange("hi!", '4', ' '); + java.awt.Point var15 = var0.getLocation(); + java.awt.Dimension var16 = var0.size(); + java.awt.Image var19 = var0.createImage((-1), (-1)); + SpaceWar.SpacePanel var20 = new SpaceWar.SpacePanel(); + float var21 = var20.getAlignmentX(); + var20.setVisible(false); + boolean var24 = var20.isDoubleBuffered(); + java.awt.dnd.DropTarget var25 = var20.getDropTarget(); + var20.show(false); + boolean var28 = var20.isPaintingForPrint(); + SpaceWar.SpacePanel var29 = new SpaceWar.SpacePanel(); + float var30 = var29.getAlignmentX(); + var29.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var35 = var29.getMouseListeners(); + int var36 = var29.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var37 = var29.getInputMethodRequests(); + var20.addKeyListener((java.awt.event.KeyListener)var29); + var29.repaint(); + java.awt.Point var40 = var29.location(); + java.awt.Component var41 = var0.findComponentAt(var40); + java.awt.im.InputContext var42 = var0.getInputContext(); + boolean var43 = var0.isDoubleBuffered(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var24 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var25); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var28 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var30 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var35); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var36 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var37); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var40); + + // Regression assertion (captures the current behavior of the code) + assertNull(var41); + + // Regression assertion (captures the current behavior of the code) + assertNull(var42); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var43 == true); + + } + + public void test479() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test479"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + boolean var2 = var0.hasFocus(); + java.awt.Insets var3 = var0.getInsets(); + java.awt.Dimension var4 = var0.getPreferredSize(); + java.lang.Object var5 = var0.getTreeLock(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var2 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var4); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + } + + public void test480() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test480"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + var0.show(false); + boolean var8 = var0.isPaintingForPrint(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var15 = var9.getMouseListeners(); + int var16 = var9.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var17 = var9.getInputMethodRequests(); + var0.addKeyListener((java.awt.event.KeyListener)var9); + java.awt.Container var19 = var9.getFocusCycleRootAncestor(); + boolean var20 = var9.hasFocus(); + SpaceWar.SpacePanel var21 = new SpaceWar.SpacePanel(); + float var22 = var21.getAlignmentX(); + var21.setVisible(false); + var21.setInheritsPopupMenu(false); + boolean var27 = var21.isDoubleBuffered(); + boolean var28 = var21.isMinimumSizeSet(); + SpaceWar.SpacePanel var29 = new SpaceWar.SpacePanel(); + float var30 = var29.getAlignmentX(); + var29.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var35 = new SpaceWar.SpacePanel(); + float var36 = var35.getAlignmentX(); + var35.setVisible(false); + java.awt.Dimension var39 = var35.getPreferredSize(); + var29.setMaximumSize(var39); + boolean var41 = var29.getVerifyInputWhenFocusTarget(); + javax.accessibility.AccessibleContext var42 = var29.getAccessibleContext(); + boolean var43 = var29.isDoubleBuffered(); + java.awt.Rectangle var44 = var29.getVisibleRect(); + var21.setBounds(var44); + java.lang.Object var46 = var9.getClientProperty((java.lang.Object)var21); + java.awt.Insets var47 = var9.insets(); + SpaceWar.SpacePanel var48 = new SpaceWar.SpacePanel(); + float var49 = var48.getAlignmentX(); + var48.setVisible(false); + var48.setInheritsPopupMenu(false); + boolean var54 = var48.isMinimumSizeSet(); + java.awt.Point var56 = var48.getMousePosition(true); + boolean var57 = var9.isFocusCycleRoot((java.awt.Container)var48); + SpaceWar.SpacePanel var58 = new SpaceWar.SpacePanel(); + float var59 = var58.getAlignmentX(); + var58.setVisible(false); + boolean var62 = var58.isDoubleBuffered(); + var58.list(); + SpaceWar.SpacePanel var64 = new SpaceWar.SpacePanel(); + float var65 = var64.getAlignmentX(); + var64.setVisible(false); + boolean var68 = var64.isDoubleBuffered(); + java.awt.dnd.DropTarget var69 = var64.getDropTarget(); + var64.show(false); + java.awt.Rectangle var72 = var64.getVisibleRect(); + java.awt.Rectangle var73 = var58.getBounds(var72); + javax.swing.JToolTip var74 = var58.createToolTip(); + boolean var75 = var74.getInheritsPopupMenu(); + SpaceWar.SpacePanel var76 = new SpaceWar.SpacePanel(); + float var77 = var76.getAlignmentX(); + var76.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var82 = new SpaceWar.SpacePanel(); + float var83 = var82.getAlignmentX(); + var82.setVisible(false); + java.awt.Dimension var86 = var82.getPreferredSize(); + var76.setMaximumSize(var86); + boolean var88 = var76.getVerifyInputWhenFocusTarget(); + boolean var89 = var76.isFontSet(); + boolean var90 = var76.getIgnoreRepaint(); + java.awt.Component var93 = var76.locate(1, 25); + java.awt.Dimension var94 = var76.getMinimumSize(); + var74.resize(var94); + var9.setSize(var94); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var22 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var28 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var30 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var36 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var39); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var41 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var42); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var43 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var44); + + // Regression assertion (captures the current behavior of the code) + assertNull(var46); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var47); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var49 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var54 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var56); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var57 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var59 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var62 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var65 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var68 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var69); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var72); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var73); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var74); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var75 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var77 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var83 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var86); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var88 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var89 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var90 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var93); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var94); + + } + + public void test481() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test481"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + java.awt.im.InputMethodRequests var3 = var0.getInputMethodRequests(); + int var4 = var0.countComponents(); + java.awt.event.ComponentListener[] var5 = var0.getComponentListeners(); + var0.removeNotify(); + int var7 = var0.getWidth(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0); + + } + + public void test482() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test482"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.setInheritsPopupMenu(false); + boolean var6 = var0.isMinimumSizeSet(); + java.awt.Point var8 = var0.getMousePosition(true); + boolean var9 = var0.isPreferredSizeSet(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == true); + + } + + public void test483() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test483"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var1 = new SpaceWar.SpacePanel(); + java.awt.Color var2 = var1.getBackground(); + SpaceWar.SpacePanel var3 = new SpaceWar.SpacePanel(); + float var4 = var3.getAlignmentX(); + var3.setVisible(false); + var3.nextFocus(); + var3.updateUI(); + var3.enableInputMethods(true); + var0.add((java.awt.Component)var1, (java.lang.Object)true); + java.awt.Image var14 = var1.createImage(1, (-1)); + java.awt.event.MouseListener[] var15 = var1.getMouseListeners(); + java.awt.Color var16 = var1.getBackground(); + boolean var17 = var1.getIgnoreRepaint(); + var1.enable(); + javax.swing.JToolTip var19 = var1.createToolTip(); + var19.setToolTipText("SpaceWar.SpacePanel[,-1,1,-1x10,invalid,hidden,disabled,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + boolean var22 = var19.getInheritsPopupMenu(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var2); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var22 == false); + + } + + public void test484() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test484"); + + + SpaceWar.PowerUp var3 = new SpaceWar.PowerUp(24, 596.7541610319765d, 5.0d); + + } + + public void test485() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test485"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + var0.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + java.awt.event.ContainerListener[] var5 = var0.getContainerListeners(); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + float var7 = var6.getAlignmentX(); + var6.setVisible(false); + var6.setInheritsPopupMenu(false); + boolean var12 = var6.isDoubleBuffered(); + SpaceWar.SpacePanel var13 = new SpaceWar.SpacePanel(); + float var14 = var13.getAlignmentX(); + var13.setVisible(false); + var13.nextFocus(); + var13.reshape((-1), 1, (-1), 10); + var13.disable(); + java.awt.LayoutManager var24 = var13.getLayout(); + var6.setLayout(var24); + var0.setLayout(var24); + var0.removeNotify(); + var0.setFocusTraversalKeysEnabled(true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var24); + + } + + public void test486() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test486"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + java.awt.Dimension var4 = var0.getPreferredSize(); + boolean var5 = var0.getVerifyInputWhenFocusTarget(); + java.awt.Component var8 = var0.findComponentAt(10, 1); + boolean var9 = var0.requestDefaultFocus(); + var0.firePropertyChange("hi!", false, true); + javax.swing.ActionMap var14 = var0.getActionMap(); + var0.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", true, true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var4); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + } + + public void test487() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test487"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + java.awt.Dimension var4 = var0.getPreferredSize(); + boolean var5 = var0.isFocusTraversalPolicyProvider(); + java.awt.GraphicsConfiguration var6 = var0.getGraphicsConfiguration(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var4); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var6); + + } + + public void test488() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test488"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + SpaceWar.SpacePanel var2 = new SpaceWar.SpacePanel(); + float var3 = var2.getAlignmentX(); + var2.setVisible(false); + java.awt.Dimension var6 = var2.getPreferredSize(); + boolean var7 = var2.getVerifyInputWhenFocusTarget(); + java.awt.Component var10 = var2.findComponentAt(10, 1); + var0.addKeyListener((java.awt.event.KeyListener)var2); + SpaceWar.SpacePanel var12 = new SpaceWar.SpacePanel(); + float var13 = var12.getAlignmentX(); + SpaceWar.SpacePanel var14 = new SpaceWar.SpacePanel(); + float var15 = var14.getAlignmentX(); + var14.setVisible(false); + java.awt.Dimension var18 = var14.getPreferredSize(); + boolean var19 = var14.getVerifyInputWhenFocusTarget(); + java.awt.Component var22 = var14.findComponentAt(10, 1); + var12.addKeyListener((java.awt.event.KeyListener)var14); + var14.repaint(100, (-1), (-1), 1); + java.awt.image.ColorModel var29 = var14.getColorModel(); + SpaceWar.SpacePanel var30 = new SpaceWar.SpacePanel(); + float var31 = var30.getAlignmentX(); + var30.setVisible(false); + boolean var34 = var30.isDoubleBuffered(); + var30.list(); + SpaceWar.SpacePanel var36 = new SpaceWar.SpacePanel(); + float var37 = var36.getAlignmentX(); + var36.setVisible(false); + boolean var40 = var36.isDoubleBuffered(); + java.awt.dnd.DropTarget var41 = var36.getDropTarget(); + var36.show(false); + java.awt.Rectangle var44 = var36.getVisibleRect(); + java.awt.image.BufferedImage var46 = var36.loadImg("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + boolean var47 = var30.isAncestorOf((java.awt.Component)var36); + javax.swing.InputVerifier var48 = var36.getInputVerifier(); + var2.putClientProperty((java.lang.Object)var14, (java.lang.Object)var36); + javax.swing.JToolTip var50 = var2.createToolTip(); + var50.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", 2.0d, 2.0d); + boolean var55 = var50.isValidateRoot(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var29); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var31 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var34 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var40 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var41); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var44); + + // Regression assertion (captures the current behavior of the code) + assertNull(var46); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var47 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var48); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var50); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var55 == false); + + } + + public void test489() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test489"); + + + SpaceWar.Enemy var2 = new SpaceWar.Enemy(0, 100); + var2.explode(); + boolean var4 = var2.isDead(); + double var5 = var2.getX(); + boolean var6 = var2.isDead(); + var2.update(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == 509.27513824562607d); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == false); + + } + + public void test490() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test490"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + var0.setRequestFocusEnabled(false); + var0.setIgnoreRepaint(false); + java.lang.String var7 = var0.toString(); + java.awt.Color var8 = var0.getBackground(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.setVisible(false); + java.awt.Dimension var13 = var9.getPreferredSize(); + java.awt.Toolkit var14 = var9.getToolkit(); + java.awt.Toolkit var15 = var9.getToolkit(); + SpaceWar.Player var16 = new SpaceWar.Player(); + var16.increasePower(25); + int var19 = var16.getScore(); + var16.setRigth(true); + var16.loseLife(); + var0.putClientProperty((java.lang.Object)var9, (java.lang.Object)var16); + boolean var24 = var16.isRecovering(); + boolean var25 = var16.isDead(); + var16.setUp(false); + var16.setRigth(true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var7 + "' != '" + "SpaceWar.SpacePanel[,0,0,0var7,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"+ "'", var7.equals("SpaceWar.SpacePanel[,0,0,0var7,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]")); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var24 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == false); + + } + + public void test491() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test491"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + boolean var2 = var0.isMinimumSizeSet(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var2 == false); + + } + + public void test492() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test492"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + java.awt.event.MouseMotionListener[] var6 = var0.getMouseMotionListeners(); + java.awt.event.ComponentListener[] var7 = var0.getComponentListeners(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + var8.nextFocus(); + var8.repaint(1L); + SpaceWar.SpacePanel var15 = new SpaceWar.SpacePanel(); + float var16 = var15.getAlignmentX(); + var15.setVisible(false); + boolean var19 = var15.isDoubleBuffered(); + var15.list(); + SpaceWar.SpacePanel var21 = new SpaceWar.SpacePanel(); + float var22 = var21.getAlignmentX(); + var21.setVisible(false); + boolean var25 = var21.isDoubleBuffered(); + java.awt.dnd.DropTarget var26 = var21.getDropTarget(); + var21.show(false); + java.awt.Rectangle var29 = var21.getVisibleRect(); + java.awt.Rectangle var30 = var15.getBounds(var29); + var8.setBounds(var30); + var0.paintImmediately(var30); + java.beans.PropertyChangeListener[] var33 = var0.getPropertyChangeListeners(); + var0.doLayout(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var22 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var29); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var30); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var33); + + } + + public void test493() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test493"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + boolean var2 = var0.hasFocus(); + boolean var3 = var0.isPreferredSizeSet(); + SpaceWar.SpacePanel var4 = new SpaceWar.SpacePanel(); + java.awt.Color var5 = var4.getBackground(); + var4.repaint(); + var4.setRequestFocusEnabled(false); + int var9 = var0.getComponentZOrder((java.awt.Component)var4); + boolean var10 = var0.requestDefaultFocus(); + javax.swing.border.Border var11 = var0.getBorder(); + SpaceWar.SpacePanel var12 = new SpaceWar.SpacePanel(); + java.awt.Color var13 = var12.getBackground(); + var12.repaint(); + java.awt.im.InputMethodRequests var15 = var12.getInputMethodRequests(); + int var16 = var12.countComponents(); + java.awt.event.ComponentListener[] var17 = var12.getComponentListeners(); + var12.removeNotify(); + javax.swing.InputMap var19 = var12.getInputMap(); + int var20 = var12.getDebugGraphicsOptions(); + java.awt.Rectangle var21 = var12.getBounds(); + var0.setBounds(var21); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var2 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == (-1)); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var21); + + } + + public void test494() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test494"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + boolean var2 = var0.hasFocus(); + SpaceWar.SpacePanel var3 = new SpaceWar.SpacePanel(); + float var4 = var3.getAlignmentX(); + var3.setVisible(false); + var3.nextFocus(); + var3.reshape((-1), 1, (-1), 10); + var3.disable(); + java.awt.LayoutManager var14 = var3.getLayout(); + var3.setVisible(false); + var0.remove((java.awt.Component)var3); + var3.repaint(); + var3.firePropertyChange("SpaceWar.SpacePanel[,-1,1,-1x10,invalid,hidden,disabled,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", (-1L), 0L); + var3.firePropertyChange("SpaceWar.SpacePanel[,-1,1,-1x10,invalid,hidden,disabled,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", (byte)100, (byte)10); + SpaceWar.SpacePanel var27 = new SpaceWar.SpacePanel(); + float var28 = var27.getAlignmentX(); + var27.setVisible(false); + var27.nextFocus(); + var27.reshape((-1), 1, (-1), 10); + var27.disable(); + boolean var38 = var27.isFocusable(); + int var39 = var27.getHeight(); + javax.swing.InputVerifier var40 = var27.getInputVerifier(); + java.awt.Graphics var41 = var27.getGraphics(); + SpaceWar.SpacePanel var42 = new SpaceWar.SpacePanel(); + float var43 = var42.getAlignmentX(); + var42.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var48 = var42.getMouseListeners(); + java.awt.Dimension var49 = var42.getPreferredSize(); + java.util.Locale var50 = var42.getLocale(); + java.awt.Font var51 = var42.getFont(); + java.awt.Color var52 = var42.getForeground(); + var27.setForeground(var52); + var3.setBackground(var52); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var2 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var28 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var38 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var39 == 10); + + // Regression assertion (captures the current behavior of the code) + assertNull(var40); + + // Regression assertion (captures the current behavior of the code) + assertNull(var41); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var43 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var48); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var49); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var50); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var51); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var52); + + } + + public void test495() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test495"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + var0.show(false); + boolean var8 = var0.isPaintingForPrint(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var15 = var9.getMouseListeners(); + int var16 = var9.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var17 = var9.getInputMethodRequests(); + var0.addKeyListener((java.awt.event.KeyListener)var9); + var9.repaint(); + java.awt.Point var20 = var9.location(); + java.awt.FocusTraversalPolicy var21 = var9.getFocusTraversalPolicy(); + SpaceWar.SpacePanel var22 = new SpaceWar.SpacePanel(); + java.awt.Color var23 = var22.getBackground(); + var22.repaint(); + var22.setRequestFocusEnabled(false); + var22.reshape(100, 0, 100, 0); + var22.requestFocus(); + var22.firePropertyChange("hi!", '4', ' '); + java.awt.Point var37 = var22.getLocation(); + java.awt.Dimension var38 = var22.size(); + boolean var39 = var22.isDoubleBuffered(); + SpaceWar.SpacePanel var40 = new SpaceWar.SpacePanel(); + float var41 = var40.getAlignmentX(); + var40.setVisible(false); + boolean var44 = var40.isDoubleBuffered(); + var40.list(); + SpaceWar.SpacePanel var46 = new SpaceWar.SpacePanel(); + float var47 = var46.getAlignmentX(); + var46.setVisible(false); + boolean var50 = var46.isDoubleBuffered(); + java.awt.dnd.DropTarget var51 = var46.getDropTarget(); + var46.show(false); + java.awt.Rectangle var54 = var46.getVisibleRect(); + java.awt.Rectangle var55 = var40.getBounds(var54); + javax.swing.JToolTip var56 = var40.createToolTip(); + var40.firePropertyChange("", false, false); + var40.setFocusTraversalKeysEnabled(false); + boolean var63 = var40.isValid(); + SpaceWar.SpacePanel var64 = new SpaceWar.SpacePanel(); + float var65 = var64.getAlignmentX(); + var64.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var70 = var64.getMouseListeners(); + int var71 = var64.getDebugGraphicsOptions(); + java.awt.Color var72 = var64.getBackground(); + var40.setForeground(var72); + // The following exception was thrown during execution. + // This behavior will recorded for regression testing. + try { + var9.add((java.awt.Component)var22, (java.lang.Object)var40, 3); + fail("Expected exception of type java.lang.IllegalArgumentException"); + } catch (java.lang.IllegalArgumentException e) { + // Expected exception. + } + + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertNull(var21); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var23); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var37); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var38); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var39 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var41 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var44 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var47 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var50 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var51); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var54); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var55); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var56); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var63 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var65 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var70); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var71 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var72); + + } + + public void test496() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test496"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + var0.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + javax.swing.plaf.PanelUI var5 = var0.getUI(); + java.awt.Color var6 = var0.getBackground(); + var0.removeAll(); + int var8 = var0.getHeight(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.removeNotify(); + SpaceWar.SpacePanel var12 = new SpaceWar.SpacePanel(); + float var13 = var12.getAlignmentX(); + var12.setVisible(false); + boolean var16 = var12.isDoubleBuffered(); + var12.list(); + float var18 = var12.getAlignmentY(); + java.awt.Insets var19 = var12.getInsets(); + java.awt.Insets var20 = var9.getInsets(var19); + boolean var21 = var9.isDoubleBuffered(); + java.awt.Component var22 = var0.add((java.awt.Component)var9); + SpaceWar.SpacePanel var23 = new SpaceWar.SpacePanel(); + float var24 = var23.getAlignmentX(); + var23.setVisible(false); + boolean var27 = var23.isDoubleBuffered(); + java.awt.dnd.DropTarget var28 = var23.getDropTarget(); + var23.show(false); + boolean var31 = var23.isPaintingForPrint(); + SpaceWar.SpacePanel var32 = new SpaceWar.SpacePanel(); + float var33 = var32.getAlignmentX(); + var32.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var38 = var32.getMouseListeners(); + int var39 = var32.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var40 = var32.getInputMethodRequests(); + var23.addKeyListener((java.awt.event.KeyListener)var32); + SpaceWar.SpacePanel var42 = new SpaceWar.SpacePanel(); + float var43 = var42.getAlignmentX(); + var42.setVisible(false); + boolean var46 = var42.isDoubleBuffered(); + var42.list(); + float var48 = var42.getAlignmentY(); + boolean var49 = var32.isFocusCycleRoot((java.awt.Container)var42); + javax.swing.ActionMap var50 = var32.getActionMap(); + java.awt.Color var51 = var32.getForeground(); + var9.setBackground(var51); + java.awt.FocusTraversalPolicy var53 = var9.getFocusTraversalPolicy(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var24 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var28); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var31 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var33 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var38); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var39 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var40); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var43 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var46 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var48 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var49 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var50); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var51); + + // Regression assertion (captures the current behavior of the code) + assertNull(var53); + + } + + public void test497() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test497"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + javax.swing.plaf.PanelUI var3 = var0.getUI(); + SpaceWar.SpacePanel var4 = new SpaceWar.SpacePanel(); + float var5 = var4.getAlignmentX(); + var4.setVisible(false); + boolean var8 = var4.isDoubleBuffered(); + java.awt.dnd.DropTarget var9 = var4.getDropTarget(); + var4.show(false); + boolean var12 = var4.isPaintingForPrint(); + SpaceWar.SpacePanel var13 = new SpaceWar.SpacePanel(); + float var14 = var13.getAlignmentX(); + var13.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var19 = var13.getMouseListeners(); + int var20 = var13.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var21 = var13.getInputMethodRequests(); + var4.addKeyListener((java.awt.event.KeyListener)var13); + SpaceWar.SpacePanel var23 = new SpaceWar.SpacePanel(); + float var24 = var23.getAlignmentX(); + var23.setVisible(false); + boolean var27 = var23.isDoubleBuffered(); + var23.list(); + float var29 = var23.getAlignmentY(); + boolean var30 = var13.isFocusCycleRoot((java.awt.Container)var23); + SpaceWar.SpacePanel var32 = new SpaceWar.SpacePanel(); + float var33 = var32.getAlignmentX(); + var32.setVisible(false); + var32.nextFocus(); + var32.updateUI(); + java.awt.Component var38 = var13.add("", (java.awt.Component)var32); + java.awt.ComponentOrientation var39 = var32.getComponentOrientation(); + boolean var40 = var32.isFocusable(); + var0.remove((java.awt.Component)var32); + java.awt.Insets var42 = var0.insets(); + var0.grabFocus(); + java.awt.GraphicsConfiguration var44 = var0.getGraphicsConfiguration(); + // The following exception was thrown during execution. + // This behavior will recorded for regression testing. + try { + javax.swing.InputMap var46 = var0.getInputMap(500); + fail("Expected exception of type java.lang.IllegalArgumentException"); + } catch (java.lang.IllegalArgumentException e) { + // Expected exception. + } + + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var9); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var21); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var24 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var29 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var30 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var33 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var38); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var39); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var40 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var42); + + // Regression assertion (captures the current behavior of the code) + assertNull(var44); + + } + + public void test498() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test498"); + + + SpaceWar.Player var0 = new SpaceWar.Player(); + boolean var1 = var0.isRecovering(); + java.awt.image.BufferedImage var3 = var0.loadImg("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + var0.setScore((-1)); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var3); + + } + + public void test499() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test499"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.updateUI(); + var0.enableInputMethods(true); + var0.enableInputMethods(true); + var0.grabFocus(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + } + + public void test500() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest0.test500"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + var0.show(false); + boolean var8 = var0.isPaintingForPrint(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var15 = var9.getMouseListeners(); + int var16 = var9.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var17 = var9.getInputMethodRequests(); + var0.addKeyListener((java.awt.event.KeyListener)var9); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + float var20 = var19.getAlignmentX(); + var19.setVisible(false); + boolean var23 = var19.isDoubleBuffered(); + var19.list(); + float var25 = var19.getAlignmentY(); + boolean var26 = var9.isFocusCycleRoot((java.awt.Container)var19); + SpaceWar.SpacePanel var28 = new SpaceWar.SpacePanel(); + float var29 = var28.getAlignmentX(); + var28.setVisible(false); + var28.nextFocus(); + var28.updateUI(); + java.awt.Component var34 = var9.add("", (java.awt.Component)var28); + java.awt.ComponentOrientation var35 = var28.getComponentOrientation(); + boolean var36 = var28.isFocusable(); + SpaceWar.SpacePanel var37 = new SpaceWar.SpacePanel(); + float var38 = var37.getAlignmentX(); + var37.setVisible(false); + var37.nextFocus(); + var37.reshape((-1), 1, (-1), 10); + var37.disable(); + java.awt.LayoutManager var48 = var37.getLayout(); + java.awt.Container var49 = var37.getParent(); + boolean var50 = var37.isOptimizedDrawingEnabled(); + var28.addKeyListener((java.awt.event.KeyListener)var37); + var28.setVisible(false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var29 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var34); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var35); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var36 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var38 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var48); + + // Regression assertion (captures the current behavior of the code) + assertNull(var49); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var50 == true); + + } + +} diff --git a/test/randoop/RandoopTest1.java b/test/randoop/RandoopTest1.java new file mode 100644 index 0000000..d6e543f --- /dev/null +++ b/test/randoop/RandoopTest1.java @@ -0,0 +1,34414 @@ +package randoop; + +import junit.framework.*; + +public class RandoopTest1 extends TestCase { + + public static boolean debug = false; + + public void test1() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test1"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + var0.show(false); + boolean var8 = var0.isPaintingForPrint(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var15 = var9.getMouseListeners(); + int var16 = var9.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var17 = var9.getInputMethodRequests(); + var0.addKeyListener((java.awt.event.KeyListener)var9); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + float var20 = var19.getAlignmentX(); + var19.setVisible(false); + boolean var23 = var19.isDoubleBuffered(); + var19.list(); + float var25 = var19.getAlignmentY(); + boolean var26 = var9.isFocusCycleRoot((java.awt.Container)var19); + SpaceWar.SpacePanel var28 = new SpaceWar.SpacePanel(); + float var29 = var28.getAlignmentX(); + var28.setVisible(false); + var28.nextFocus(); + var28.updateUI(); + java.awt.Component var34 = var9.add("", (java.awt.Component)var28); + java.lang.Object var35 = var34.getTreeLock(); + boolean var36 = var34.isValid(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var29 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var34); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var35); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var36 == false); + + } + + public void test2() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test2"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + boolean var5 = javax.swing.JComponent.isLightweightComponent((java.awt.Component)var0); + java.awt.event.MouseWheelListener[] var6 = var0.getMouseWheelListeners(); + java.awt.Component.BaselineResizeBehavior var7 = var0.getBaselineResizeBehavior(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var7); + + } + + public void test3() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test3"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var1 = new SpaceWar.SpacePanel(); + java.awt.Color var2 = var1.getBackground(); + SpaceWar.SpacePanel var3 = new SpaceWar.SpacePanel(); + float var4 = var3.getAlignmentX(); + var3.setVisible(false); + var3.nextFocus(); + var3.updateUI(); + var3.enableInputMethods(true); + var0.add((java.awt.Component)var1, (java.lang.Object)true); + java.awt.Image var14 = var1.createImage(1, (-1)); + SpaceWar.SpacePanel var15 = new SpaceWar.SpacePanel(); + float var16 = var15.getAlignmentX(); + var15.setVisible(false); + var15.nextFocus(); + var15.updateUI(); + var15.enableInputMethods(true); + SpaceWar.SpacePanel var23 = new SpaceWar.SpacePanel(); + float var24 = var23.getAlignmentX(); + boolean var25 = var23.hasFocus(); + java.awt.Insets var26 = var23.getInsets(); + java.awt.Insets var27 = var15.getInsets(var26); + java.awt.Insets var28 = var1.getInsets(var26); + boolean var29 = var1.isMaximumSizeSet(); + int var30 = var1.getY(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var2); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var24 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var27); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var28); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var29 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var30 == 0); + + } + + public void test4() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test4"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + float var7 = var6.getAlignmentX(); + var6.setVisible(false); + java.awt.Dimension var10 = var6.getPreferredSize(); + var0.setMaximumSize(var10); + boolean var12 = var0.getVerifyInputWhenFocusTarget(); + boolean var13 = var0.isFontSet(); + boolean var14 = var0.getIgnoreRepaint(); + java.awt.Component var17 = var0.locate(1, 25); + java.awt.dnd.DropTarget var18 = var0.getDropTarget(); + boolean var19 = var0.isForegroundSet(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == true); + + } + + public void test5() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test5"); + + + SpaceWar.Player var0 = new SpaceWar.Player(); + int var1 = var0.getPower(); + int var2 = var0.getPowerLevel(); + int var3 = var0.getX(); + int var4 = var0.getRequiredPower(); + int var5 = var0.getX(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var2 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == 400); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 1); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == 400); + + } + + public void test6() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test6"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + java.awt.Dimension var4 = var0.getPreferredSize(); + java.awt.Toolkit var5 = var0.getToolkit(); + java.awt.Toolkit var6 = var0.getToolkit(); + var0.firePropertyChange("hi!", 25, 1); + boolean var11 = var0.isFocusable(); + java.awt.Container var12 = var0.getFocusCycleRootAncestor(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var4); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var12); + + } + + public void test7() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test7"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + var0.setRequestFocusEnabled(false); + var0.reshape(100, 0, 100, 0); + var0.requestFocus(); + var0.firePropertyChange("hi!", '4', ' '); + java.awt.Point var15 = var0.getLocation(); + java.awt.Dimension var16 = var0.size(); + java.awt.Image var19 = var0.createImage((-1), (-1)); + java.awt.event.ComponentListener[] var20 = var0.getComponentListeners(); + SpaceWar.SpacePanel var21 = new SpaceWar.SpacePanel(); + var21.setName(""); + java.awt.ComponentOrientation var24 = var21.getComponentOrientation(); + var21.firePropertyChange("PanelUI", 1.0f, 0.5f); + int var29 = var0.getComponentZOrder((java.awt.Component)var21); + SpaceWar.SpacePanel var30 = new SpaceWar.SpacePanel(); + float var31 = var30.getAlignmentX(); + var30.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var36 = var30.getUI(); + java.awt.im.InputMethodRequests var37 = var30.getInputMethodRequests(); + SpaceWar.SpacePanel var38 = new SpaceWar.SpacePanel(); + float var39 = var38.getAlignmentX(); + var38.setVisible(false); + var38.nextFocus(); + var38.updateUI(); + var38.enableInputMethods(true); + var38.setSize((-1), 1); + SpaceWar.SpacePanel var49 = new SpaceWar.SpacePanel(); + var49.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var30.add((java.awt.Component)var38, (java.lang.Object)"SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + SpaceWar.SpacePanel var55 = new SpaceWar.SpacePanel(); + float var56 = var55.getAlignmentX(); + var55.setVisible(false); + var55.setInheritsPopupMenu(false); + boolean var61 = var55.isDoubleBuffered(); + boolean var62 = var55.isMinimumSizeSet(); + SpaceWar.SpacePanel var63 = new SpaceWar.SpacePanel(); + float var64 = var63.getAlignmentX(); + var63.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var69 = new SpaceWar.SpacePanel(); + float var70 = var69.getAlignmentX(); + var69.setVisible(false); + java.awt.Dimension var73 = var69.getPreferredSize(); + var63.setMaximumSize(var73); + boolean var75 = var63.getVerifyInputWhenFocusTarget(); + javax.accessibility.AccessibleContext var76 = var63.getAccessibleContext(); + boolean var77 = var63.isDoubleBuffered(); + java.awt.Rectangle var78 = var63.getVisibleRect(); + var55.setBounds(var78); + java.awt.Rectangle var80 = var30.getBounds(var78); + var0.computeVisibleRect(var78); + java.awt.dnd.DropTarget var82 = var0.getDropTarget(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var29 == (-1)); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var31 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var36); + + // Regression assertion (captures the current behavior of the code) + assertNull(var37); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var39 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var56 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var61 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var62 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var64 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var70 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var73); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var75 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var76); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var77 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var78); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var80); + + // Regression assertion (captures the current behavior of the code) + assertNull(var82); + + } + + public void test8() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test8"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.reshape((-1), 1, (-1), 10); + var0.disable(); + var0.show(); + SpaceWar.SpacePanel var12 = new SpaceWar.SpacePanel(); + float var13 = var12.getAlignmentX(); + var12.setVisible(false); + boolean var16 = var12.isDoubleBuffered(); + var12.list(); + SpaceWar.SpacePanel var18 = new SpaceWar.SpacePanel(); + float var19 = var18.getAlignmentX(); + var18.setVisible(false); + boolean var22 = var18.isDoubleBuffered(); + java.awt.dnd.DropTarget var23 = var18.getDropTarget(); + var18.show(false); + java.awt.Rectangle var26 = var18.getVisibleRect(); + java.awt.Rectangle var27 = var12.getBounds(var26); + javax.swing.JToolTip var28 = var12.createToolTip(); + var12.firePropertyChange("", false, false); + var12.validate(); + SpaceWar.SpacePanel var34 = new SpaceWar.SpacePanel(); + float var35 = var34.getAlignmentX(); + var34.setVisible(false); + boolean var38 = var34.isDoubleBuffered(); + java.awt.dnd.DropTarget var39 = var34.getDropTarget(); + var34.show(false); + boolean var42 = var34.isPaintingForPrint(); + SpaceWar.SpacePanel var43 = new SpaceWar.SpacePanel(); + float var44 = var43.getAlignmentX(); + var43.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var49 = var43.getMouseListeners(); + int var50 = var43.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var51 = var43.getInputMethodRequests(); + var34.addKeyListener((java.awt.event.KeyListener)var43); + var43.repaint(); + java.awt.Point var54 = var43.location(); + java.awt.Component var55 = var12.getComponentAt(var54); + java.awt.Point var56 = var0.getLocation(var54); + var0.setAlignmentY(0.5f); + boolean var59 = var0.getVerifyInputWhenFocusTarget(); + boolean var60 = var0.isBackgroundSet(); + java.awt.Point var61 = var0.location(); + var0.setBounds(0, 500, 0, 25); + // The following exception was thrown during execution. + // This behavior will recorded for regression testing. + try { + java.awt.Component var68 = var0.getComponent(24); + fail("Expected exception of type java.lang.ArrayIndexOutOfBoundsException"); + } catch (java.lang.ArrayIndexOutOfBoundsException e) { + // Expected exception. + } + + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var22 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var23); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var27); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var28); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var35 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var38 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var39); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var42 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var44 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var49); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var50 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var51); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var54); + + // Regression assertion (captures the current behavior of the code) + assertNull(var55); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var56); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var59 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var60 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var61); + + } + + public void test9() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test9"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + boolean var6 = var0.isFocusOwner(); + java.awt.Dimension var7 = var0.getMinimumSize(); + // The following exception was thrown during execution. + // This behavior will recorded for regression testing. + try { + javax.swing.InputMap var9 = var0.getInputMap(24); + fail("Expected exception of type java.lang.IllegalArgumentException"); + } catch (java.lang.IllegalArgumentException e) { + // Expected exception. + } + + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var7); + + } + + public void test10() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test10"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var1 = new SpaceWar.SpacePanel(); + java.awt.Color var2 = var1.getBackground(); + SpaceWar.SpacePanel var3 = new SpaceWar.SpacePanel(); + float var4 = var3.getAlignmentX(); + var3.setVisible(false); + var3.nextFocus(); + var3.updateUI(); + var3.enableInputMethods(true); + var0.add((java.awt.Component)var1, (java.lang.Object)true); + boolean var12 = var0.isMinimumSizeSet(); + java.awt.event.HierarchyListener[] var13 = var0.getHierarchyListeners(); + SpaceWar.SpacePanel var14 = new SpaceWar.SpacePanel(); + float var15 = var14.getAlignmentX(); + var14.setVisible(false); + SpaceWar.SpacePanel var18 = new SpaceWar.SpacePanel(); + java.awt.Color var19 = var18.getBackground(); + var14.setForeground(var19); + SpaceWar.SpacePanel var21 = new SpaceWar.SpacePanel(); + float var22 = var21.getAlignmentX(); + var21.setVisible(false); + boolean var25 = var21.isDoubleBuffered(); + java.awt.dnd.DropTarget var26 = var21.getDropTarget(); + var21.show(false); + java.awt.Rectangle var29 = var21.getVisibleRect(); + var14.repaint(var29); + java.awt.FocusTraversalPolicy var31 = var14.getFocusTraversalPolicy(); + java.awt.im.InputMethodRequests var32 = var14.getInputMethodRequests(); + var14.layout(); + boolean var34 = var14.isFocusTraversalPolicyProvider(); + java.lang.Object var35 = var0.getClientProperty((java.lang.Object)var34); + boolean var36 = var0.isFocusTraversable(); + SpaceWar.SpacePanel var38 = new SpaceWar.SpacePanel(); + float var39 = var38.getAlignmentX(); + var38.setVisible(false); + java.awt.Dimension var42 = var38.getPreferredSize(); + java.awt.Toolkit var43 = var38.getToolkit(); + boolean var44 = var38.isFocusable(); + SpaceWar.SpacePanel var46 = new SpaceWar.SpacePanel(); + float var47 = var46.getAlignmentX(); + var46.setVisible(false); + var46.nextFocus(); + var46.reshape((-1), 1, (-1), 10); + java.util.Set var57 = var46.getFocusTraversalKeys(3); + var38.setFocusTraversalKeys(1, var57); + // The following exception was thrown during execution. + // This behavior will recorded for regression testing. + try { + var0.setFocusTraversalKeys(400, var57); + fail("Expected exception of type java.lang.IllegalArgumentException"); + } catch (java.lang.IllegalArgumentException e) { + // Expected exception. + } + + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var2); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var22 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var29); + + // Regression assertion (captures the current behavior of the code) + assertNull(var31); + + // Regression assertion (captures the current behavior of the code) + assertNull(var32); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var34 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var35); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var36 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var39 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var42); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var43); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var44 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var47 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var57); + + } + + public void test11() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test11"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.updateUI(); + var0.enableInputMethods(true); + var0.resetKeyboardActions(); + java.awt.event.HierarchyListener[] var9 = var0.getHierarchyListeners(); + SpaceWar.SpacePanel var10 = new SpaceWar.SpacePanel(); + java.awt.Color var11 = var10.getBackground(); + var10.repaint(); + var10.setRequestFocusEnabled(false); + var10.reshape(100, 0, 100, 0); + java.beans.VetoableChangeListener[] var20 = var10.getVetoableChangeListeners(); + java.awt.Rectangle var21 = var10.getVisibleRect(); + var0.paintImmediately(var21); + var0.setVerifyInputWhenFocusTarget(true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var9); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var21); + + } + + public void test12() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test12"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + var0.setName(""); + java.awt.Toolkit var3 = var0.getToolkit(); + var0.setEnabled(false); + var0.removeNotify(); + var0.setDoubleBuffered(false); + boolean var9 = var0.isShowing(); + var0.enable(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == false); + + } + + public void test13() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test13"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + var0.list(); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + float var7 = var6.getAlignmentX(); + var6.setVisible(false); + boolean var10 = var6.isDoubleBuffered(); + java.awt.dnd.DropTarget var11 = var6.getDropTarget(); + var6.show(false); + java.awt.Rectangle var14 = var6.getVisibleRect(); + java.awt.Rectangle var15 = var0.getBounds(var14); + javax.swing.JToolTip var16 = var0.createToolTip(); + var0.firePropertyChange("", false, false); + var0.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", (-1L), (-1L)); + boolean var25 = var0.isManagingFocus(); + var0.enableInputMethods(true); + boolean var28 = var0.isManagingFocus(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var28 == false); + + } + + public void test14() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test14"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.repaint(1L); + SpaceWar.SpacePanel var7 = new SpaceWar.SpacePanel(); + float var8 = var7.getAlignmentX(); + var7.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var13 = new SpaceWar.SpacePanel(); + float var14 = var13.getAlignmentX(); + var13.setVisible(false); + java.awt.Dimension var17 = var13.getPreferredSize(); + var7.setMaximumSize(var17); + var0.setPreferredSize(var17); + javax.swing.plaf.PanelUI var20 = var0.getUI(); + SpaceWar.SpacePanel var21 = new SpaceWar.SpacePanel(); + float var22 = var21.getAlignmentX(); + var21.setVisible(false); + SpaceWar.SpacePanel var25 = new SpaceWar.SpacePanel(); + java.awt.Color var26 = var25.getBackground(); + var21.setForeground(var26); + SpaceWar.SpacePanel var28 = new SpaceWar.SpacePanel(); + float var29 = var28.getAlignmentX(); + var28.setVisible(false); + boolean var32 = var28.isDoubleBuffered(); + java.awt.dnd.DropTarget var33 = var28.getDropTarget(); + var28.show(false); + java.awt.Rectangle var36 = var28.getVisibleRect(); + var21.repaint(var36); + java.awt.FocusTraversalPolicy var38 = var21.getFocusTraversalPolicy(); + var21.resetKeyboardActions(); + SpaceWar.SpacePanel var40 = new SpaceWar.SpacePanel(); + float var41 = var40.getAlignmentX(); + var40.setVisible(false); + boolean var44 = var40.isDoubleBuffered(); + java.awt.dnd.DropTarget var45 = var40.getDropTarget(); + var40.show(false); + java.awt.Rectangle var48 = var40.getVisibleRect(); + var21.computeVisibleRect(var48); + javax.swing.ActionMap var50 = var21.getActionMap(); + var0.setActionMap(var50); + javax.swing.JRootPane var52 = var0.getRootPane(); + java.awt.GraphicsConfiguration var53 = var0.getGraphicsConfiguration(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var22 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var29 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var32 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var33); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var36); + + // Regression assertion (captures the current behavior of the code) + assertNull(var38); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var41 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var44 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var45); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var48); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var50); + + // Regression assertion (captures the current behavior of the code) + assertNull(var52); + + // Regression assertion (captures the current behavior of the code) + assertNull(var53); + + } + + public void test15() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test15"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + var0.list(); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + float var7 = var6.getAlignmentX(); + var6.setVisible(false); + boolean var10 = var6.isDoubleBuffered(); + java.awt.dnd.DropTarget var11 = var6.getDropTarget(); + var6.show(false); + java.awt.Rectangle var14 = var6.getVisibleRect(); + java.awt.Rectangle var15 = var0.getBounds(var14); + javax.swing.JToolTip var16 = var0.createToolTip(); + java.awt.Dimension var17 = var0.minimumSize(); + boolean var19 = var0.requestFocus(false); + var0.setName("PanelUI"); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == false); + + } + + public void test16() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test16"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + var0.setName(""); + java.awt.Graphics var3 = var0.getGraphics(); + java.awt.event.MouseMotionListener[] var4 = var0.getMouseMotionListeners(); + int var5 = var0.getX(); + + // Regression assertion (captures the current behavior of the code) + assertNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var4); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == 0); + + } + + public void test17() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test17"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.updateUI(); + var0.enableInputMethods(true); + java.awt.Point var8 = var0.location(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.setVisible(false); + var9.nextFocus(); + java.awt.Component var14 = var0.add((java.awt.Component)var9); + boolean var15 = var0.isRequestFocusEnabled(); + var0.setFocusCycleRoot(false); + var0.setOpaque(false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == true); + + } + + public void test18() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test18"); + + + SpaceWar.Enemy var2 = new SpaceWar.Enemy(10, 1); + int var3 = var2.getRank(); + var2.hit(); + var2.update(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == 1); + + } + + public void test19() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test19"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + var0.setName(""); + int var3 = var0.getX(); + SpaceWar.SpacePanel var4 = new SpaceWar.SpacePanel(); + float var5 = var4.getAlignmentX(); + var4.setVisible(false); + var4.nextFocus(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.setVisible(false); + SpaceWar.SpacePanel var13 = new SpaceWar.SpacePanel(); + java.awt.Color var14 = var13.getBackground(); + var9.setForeground(var14); + var4.setBackground(var14); + var0.setBackground(var14); + javax.swing.JPopupMenu var18 = var0.getComponentPopupMenu(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertNull(var18); + + } + + public void test20() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test20"); + + + SpaceWar.Enemy var2 = new SpaceWar.Enemy(10, 500); + + } + + public void test21() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test21"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + java.awt.im.InputMethodRequests var3 = var0.getInputMethodRequests(); + int var4 = var0.countComponents(); + java.awt.event.ComponentListener[] var5 = var0.getComponentListeners(); + var0.transferFocusBackward(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + boolean var12 = var8.isDoubleBuffered(); + var8.enable(false); + SpaceWar.SpacePanel var15 = new SpaceWar.SpacePanel(); + float var16 = var15.getAlignmentX(); + boolean var17 = var15.hasFocus(); + java.awt.Insets var18 = var15.getInsets(); + java.awt.Rectangle var19 = var15.bounds(); + var8.repaint(var19); + java.awt.Component var21 = var0.add("", (java.awt.Component)var8); + SpaceWar.SpacePanel var22 = new SpaceWar.SpacePanel(); + float var23 = var22.getAlignmentX(); + var22.setVisible(false); + var22.nextFocus(); + var22.updateUI(); + var22.enableInputMethods(true); + java.awt.Point var31 = var22.getMousePosition(false); + SpaceWar.SpacePanel var32 = new SpaceWar.SpacePanel(); + float var33 = var32.getAlignmentX(); + var32.setVisible(false); + boolean var36 = var32.isDoubleBuffered(); + var32.list(); + SpaceWar.SpacePanel var38 = new SpaceWar.SpacePanel(); + float var39 = var38.getAlignmentX(); + var38.setVisible(false); + boolean var42 = var38.isDoubleBuffered(); + java.awt.dnd.DropTarget var43 = var38.getDropTarget(); + var38.show(false); + java.awt.Rectangle var46 = var38.getVisibleRect(); + java.awt.Rectangle var47 = var32.getBounds(var46); + var22.scrollRectToVisible(var46); + var0.paintImmediately(var46); + SpaceWar.SpacePanel var50 = new SpaceWar.SpacePanel(); + float var51 = var50.getAlignmentX(); + var50.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var56 = var50.getUI(); + java.awt.im.InputMethodRequests var57 = var50.getInputMethodRequests(); + SpaceWar.SpacePanel var58 = new SpaceWar.SpacePanel(); + float var59 = var58.getAlignmentX(); + var58.setVisible(false); + var58.nextFocus(); + var58.updateUI(); + var58.enableInputMethods(true); + var58.setSize((-1), 1); + SpaceWar.SpacePanel var69 = new SpaceWar.SpacePanel(); + var69.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var50.add((java.awt.Component)var58, (java.lang.Object)"SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + var50.setAutoscrolls(false); + SpaceWar.SpacePanel var77 = new SpaceWar.SpacePanel(); + java.awt.Color var78 = var77.getBackground(); + var77.repaint(); + var77.setRequestFocusEnabled(false); + var77.setIgnoreRepaint(false); + boolean var84 = var77.requestFocusInWindow(); + float var85 = var77.getAlignmentY(); + java.awt.LayoutManager var86 = var77.getLayout(); + var50.setLayout(var86); + var0.setLayout(var86); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var21); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNull(var31); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var33 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var36 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var39 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var42 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var43); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var46); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var47); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var51 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var56); + + // Regression assertion (captures the current behavior of the code) + assertNull(var57); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var59 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var78); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var84 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var85 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var86); + + } + + public void test22() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test22"); + + + SpaceWar.Player var0 = new SpaceWar.Player(); + int var1 = var0.getPower(); + int var2 = var0.getPowerLevel(); + int var3 = var0.getX(); + int var4 = var0.getRequiredPower(); + java.awt.image.BufferedImage var6 = var0.loadImg("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=1.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + boolean var7 = var0.isDead(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var2 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == 400); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 1); + + // Regression assertion (captures the current behavior of the code) + assertNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == false); + + } + + public void test23() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test23"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + SpaceWar.SpacePanel var4 = new SpaceWar.SpacePanel(); + java.awt.Color var5 = var4.getBackground(); + var0.setForeground(var5); + SpaceWar.SpacePanel var7 = new SpaceWar.SpacePanel(); + float var8 = var7.getAlignmentX(); + var7.setVisible(false); + boolean var11 = var7.isDoubleBuffered(); + java.awt.dnd.DropTarget var12 = var7.getDropTarget(); + var7.show(false); + java.awt.Rectangle var15 = var7.getVisibleRect(); + var0.repaint(var15); + java.awt.FocusTraversalPolicy var17 = var0.getFocusTraversalPolicy(); + SpaceWar.SpacePanel var18 = new SpaceWar.SpacePanel(); + float var19 = var18.getAlignmentX(); + var18.firePropertyChange("", (-1), 1); + boolean var24 = var18.isFocusOwner(); + SpaceWar.SpacePanel var26 = new SpaceWar.SpacePanel(); + float var27 = var26.getAlignmentX(); + var26.setVisible(false); + java.awt.Dimension var30 = var26.getPreferredSize(); + java.awt.Toolkit var31 = var26.getToolkit(); + SpaceWar.SpacePanel var32 = new SpaceWar.SpacePanel(); + var32.setName(""); + int var35 = var32.getX(); + SpaceWar.SpacePanel var36 = new SpaceWar.SpacePanel(); + float var37 = var36.getAlignmentX(); + var36.setVisible(false); + var36.nextFocus(); + SpaceWar.SpacePanel var41 = new SpaceWar.SpacePanel(); + float var42 = var41.getAlignmentX(); + var41.setVisible(false); + SpaceWar.SpacePanel var45 = new SpaceWar.SpacePanel(); + java.awt.Color var46 = var45.getBackground(); + var41.setForeground(var46); + var36.setBackground(var46); + var32.setBackground(var46); + var26.setForeground(var46); + var18.putClientProperty((java.lang.Object)(byte)100, (java.lang.Object)var46); + var0.setBackground(var46); + SpaceWar.SpacePanel var53 = new SpaceWar.SpacePanel(); + float var54 = var53.getAlignmentX(); + var53.setVisible(false); + boolean var57 = var53.isDoubleBuffered(); + java.awt.dnd.DropTarget var58 = var53.getDropTarget(); + var53.show(false); + boolean var61 = var53.isPaintingForPrint(); + SpaceWar.SpacePanel var62 = new SpaceWar.SpacePanel(); + float var63 = var62.getAlignmentX(); + SpaceWar.SpacePanel var64 = new SpaceWar.SpacePanel(); + float var65 = var64.getAlignmentX(); + var64.setVisible(false); + java.awt.Dimension var68 = var64.getPreferredSize(); + boolean var69 = var64.getVerifyInputWhenFocusTarget(); + java.awt.Component var72 = var64.findComponentAt(10, 1); + var62.addKeyListener((java.awt.event.KeyListener)var64); + java.awt.Dimension var74 = var64.getMinimumSize(); + var53.setMinimumSize(var74); + java.awt.Dimension var76 = var0.getSize(var74); + var0.show(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var24 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var30); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var31); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var35 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var42 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var46); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var54 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var57 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var58); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var61 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var63 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var65 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var68); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var69 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var72); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var74); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var76); + + } + + public void test24() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test24"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + boolean var2 = var0.hasFocus(); + boolean var3 = var0.isPreferredSizeSet(); + var0.firePropertyChange("", (short)1, (short)0); + boolean var8 = var0.isMaximumSizeSet(); + var0.list(); + var0.layout(); + var0.setToolTipText(""); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var2 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + } + + public void test25() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test25"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.reshape((-1), 1, (-1), 10); + var0.disable(); + boolean var11 = var0.isFocusable(); + int var12 = var0.getHeight(); + javax.swing.InputVerifier var13 = var0.getInputVerifier(); + java.awt.Graphics var14 = var0.getGraphics(); + java.awt.Color var15 = var0.getForeground(); + java.awt.image.BufferedImage var17 = var0.loadImg("SpaceWar.SpacePanel[,-1,1,-1x10,invalid,hidden,disabled,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == 10); + + // Regression assertion (captures the current behavior of the code) + assertNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + } + + public void test26() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test26"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + var0.list(); + float var6 = var0.getAlignmentY(); + java.awt.Dimension var7 = var0.getPreferredSize(); + java.awt.Point var8 = var0.getMousePosition(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertNull(var8); + + } + + public void test27() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test27"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + var0.setName(""); + java.awt.Graphics var3 = var0.getGraphics(); + java.awt.event.MouseMotionListener[] var4 = var0.getMouseMotionListeners(); + boolean var5 = var0.getIgnoreRepaint(); + var0.transferFocusBackward(); + var0.enable(); + java.awt.Container var8 = var0.getTopLevelAncestor(); + var0.invalidate(); + SpaceWar.SpacePanel var10 = new SpaceWar.SpacePanel(); + float var11 = var10.getAlignmentX(); + var10.setVisible(false); + var10.nextFocus(); + var10.updateUI(); + var10.enableInputMethods(true); + java.lang.String var18 = var10.toString(); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + float var20 = var19.getAlignmentX(); + var19.setVisible(false); + boolean var23 = var19.isDoubleBuffered(); + java.awt.dnd.DropTarget var24 = var19.getDropTarget(); + var19.show(false); + java.awt.Rectangle var27 = var19.getVisibleRect(); + java.awt.image.BufferedImage var29 = var19.loadImg("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + java.awt.ComponentOrientation var30 = var19.getComponentOrientation(); + boolean var31 = var19.isPaintingTile(); + boolean var32 = var19.isOptimizedDrawingEnabled(); + int var33 = var10.getComponentZOrder((java.awt.Component)var19); + javax.swing.InputMap var34 = var19.getInputMap(); + SpaceWar.SpacePanel var35 = new SpaceWar.SpacePanel(); + float var36 = var35.getAlignmentX(); + boolean var37 = var35.hasFocus(); + SpaceWar.SpacePanel var38 = new SpaceWar.SpacePanel(); + float var39 = var38.getAlignmentX(); + var38.setVisible(false); + var38.nextFocus(); + var38.reshape((-1), 1, (-1), 10); + var38.disable(); + java.awt.LayoutManager var49 = var38.getLayout(); + var38.setVisible(false); + var35.remove((java.awt.Component)var38); + java.beans.VetoableChangeListener[] var53 = var35.getVetoableChangeListeners(); + var0.putClientProperty((java.lang.Object)var34, (java.lang.Object)var35); + var0.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", 2.0d, 594.7973940347722d); + + // Regression assertion (captures the current behavior of the code) + assertNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var4); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var18 + "' != '" + "SpaceWar.SpacePanel[,0,0,0var18,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"+ "'", var18.equals("SpaceWar.SpacePanel[,0,0,0var18,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]")); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var27); + + // Regression assertion (captures the current behavior of the code) + assertNull(var29); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var30); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var31 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var32 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var33 == (-1)); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var34); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var36 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var39 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var49); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var53); + + } + + public void test28() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test28"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + boolean var2 = var0.hasFocus(); + boolean var3 = var0.isPreferredSizeSet(); + SpaceWar.SpacePanel var4 = new SpaceWar.SpacePanel(); + java.awt.Color var5 = var4.getBackground(); + var4.repaint(); + var4.setRequestFocusEnabled(false); + int var9 = var0.getComponentZOrder((java.awt.Component)var4); + boolean var10 = var0.requestDefaultFocus(); + var0.setSize(25, 3); + var0.grabFocus(); + SpaceWar.SpacePanel var15 = new SpaceWar.SpacePanel(); + float var16 = var15.getAlignmentX(); + var15.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var21 = new SpaceWar.SpacePanel(); + float var22 = var21.getAlignmentX(); + var21.setVisible(false); + java.awt.Dimension var25 = var21.getPreferredSize(); + var15.setMaximumSize(var25); + boolean var27 = var15.getVerifyInputWhenFocusTarget(); + int var28 = var15.getX(); + java.awt.Rectangle var29 = var15.bounds(); + var0.scrollRectToVisible(var29); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var2 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == (-1)); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var22 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var25); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var28 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var29); + + } + + public void test29() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test29"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + var0.setName(""); + java.awt.Toolkit var3 = var0.getToolkit(); + var0.setEnabled(false); + var0.removeNotify(); + var0.setDoubleBuffered(false); + boolean var9 = var0.isShowing(); + SpaceWar.SpacePanel var10 = new SpaceWar.SpacePanel(); + java.awt.Color var11 = var10.getBackground(); + boolean var14 = var10.inside(0, (-1)); + SpaceWar.SpacePanel var15 = new SpaceWar.SpacePanel(); + float var16 = var15.getAlignmentX(); + var15.setVisible(false); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + java.awt.Color var20 = var19.getBackground(); + var15.setForeground(var20); + var10.setForeground(var20); + var10.setAutoscrolls(false); + SpaceWar.SpacePanel var25 = new SpaceWar.SpacePanel(); + float var26 = var25.getAlignmentX(); + var25.setVisible(false); + boolean var29 = var25.isDoubleBuffered(); + java.awt.dnd.DropTarget var30 = var25.getDropTarget(); + var25.show(false); + boolean var33 = var25.isPaintingForPrint(); + SpaceWar.SpacePanel var34 = new SpaceWar.SpacePanel(); + float var35 = var34.getAlignmentX(); + var34.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var40 = var34.getMouseListeners(); + int var41 = var34.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var42 = var34.getInputMethodRequests(); + var25.addKeyListener((java.awt.event.KeyListener)var34); + SpaceWar.SpacePanel var44 = new SpaceWar.SpacePanel(); + float var45 = var44.getAlignmentX(); + var44.setVisible(false); + boolean var48 = var44.isDoubleBuffered(); + var44.list(); + float var50 = var44.getAlignmentY(); + boolean var51 = var34.isFocusCycleRoot((java.awt.Container)var44); + var44.firePropertyChange("", 1L, 1L); + var44.setVerifyInputWhenFocusTarget(true); + SpaceWar.SpacePanel var58 = new SpaceWar.SpacePanel(); + var58.setName(""); + java.awt.Dimension var61 = var58.minimumSize(); + boolean var62 = var58.isDoubleBuffered(); + SpaceWar.SpacePanel var63 = new SpaceWar.SpacePanel(); + float var64 = var63.getAlignmentX(); + SpaceWar.SpacePanel var65 = new SpaceWar.SpacePanel(); + float var66 = var65.getAlignmentX(); + var65.setVisible(false); + java.awt.Dimension var69 = var65.getPreferredSize(); + boolean var70 = var65.getVerifyInputWhenFocusTarget(); + java.awt.Component var73 = var65.findComponentAt(10, 1); + var63.addKeyListener((java.awt.event.KeyListener)var65); + var65.repaint(100, (-1), (-1), 1); + SpaceWar.SpacePanel var80 = new SpaceWar.SpacePanel(); + java.awt.Color var81 = var80.getBackground(); + var80.repaint(); + java.awt.im.InputMethodRequests var83 = var80.getInputMethodRequests(); + java.awt.GraphicsConfiguration var84 = var80.getGraphicsConfiguration(); + var65.remove((java.awt.Component)var80); + java.awt.Font var86 = var80.getFont(); + java.awt.FontMetrics var87 = var58.getFontMetrics(var86); + java.awt.FontMetrics var88 = var44.getFontMetrics(var86); + var10.setFont(var86); + var0.setFont(var86); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var29 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var30); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var33 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var35 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var40); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var41 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var42); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var45 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var48 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var50 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var51 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var61); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var62 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var64 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var66 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var69); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var70 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var73); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var81); + + // Regression assertion (captures the current behavior of the code) + assertNull(var83); + + // Regression assertion (captures the current behavior of the code) + assertNull(var84); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var86); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var87); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var88); + + } + + public void test30() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test30"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + var0.show(false); + java.awt.Rectangle var8 = var0.getVisibleRect(); + java.awt.image.BufferedImage var10 = var0.loadImg("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + java.awt.ComponentOrientation var11 = var0.getComponentOrientation(); + boolean var12 = var0.isPaintingTile(); + int var13 = var0.getHeight(); + java.awt.event.ComponentListener[] var14 = var0.getComponentListeners(); + java.awt.Point var15 = var0.getMousePosition(); + SpaceWar.SpacePanel var16 = new SpaceWar.SpacePanel(); + float var17 = var16.getAlignmentX(); + var16.setVisible(false); + boolean var20 = var16.isDoubleBuffered(); + var16.list(); + SpaceWar.SpacePanel var22 = new SpaceWar.SpacePanel(); + float var23 = var22.getAlignmentX(); + var22.setVisible(false); + boolean var26 = var22.isDoubleBuffered(); + java.awt.dnd.DropTarget var27 = var22.getDropTarget(); + var22.show(false); + java.awt.Rectangle var30 = var22.getVisibleRect(); + java.awt.Rectangle var31 = var16.getBounds(var30); + javax.swing.JToolTip var32 = var16.createToolTip(); + boolean var33 = var32.getInheritsPopupMenu(); + SpaceWar.SpacePanel var34 = new SpaceWar.SpacePanel(); + float var35 = var34.getAlignmentX(); + var34.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var40 = new SpaceWar.SpacePanel(); + float var41 = var40.getAlignmentX(); + var40.setVisible(false); + java.awt.Dimension var44 = var40.getPreferredSize(); + var34.setMaximumSize(var44); + boolean var46 = var34.getVerifyInputWhenFocusTarget(); + boolean var47 = var34.isFontSet(); + boolean var48 = var34.getIgnoreRepaint(); + java.awt.Component var51 = var34.locate(1, 25); + java.awt.Dimension var52 = var34.getMinimumSize(); + var32.resize(var52); + var0.setSize(var52); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var27); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var30); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var31); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var32); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var33 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var35 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var41 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var44); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var46 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var47 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var48 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var51); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var52); + + } + + public void test31() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test31"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + var0.show(false); + boolean var8 = var0.isPaintingForPrint(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var15 = var9.getMouseListeners(); + int var16 = var9.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var17 = var9.getInputMethodRequests(); + var0.addKeyListener((java.awt.event.KeyListener)var9); + var9.removeNotify(); + java.lang.String var20 = var9.toString(); + java.beans.PropertyChangeListener[] var22 = var9.getPropertyChangeListeners("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var20 + "' != '" + "SpaceWar.SpacePanel[,0,0,0var20,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"+ "'", var20.equals("SpaceWar.SpacePanel[,0,0,0var20,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]")); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var22); + + } + + public void test32() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test32"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + java.awt.Dimension var4 = var0.getPreferredSize(); + java.awt.Toolkit var5 = var0.getToolkit(); + boolean var6 = var0.isFocusable(); + javax.swing.KeyStroke[] var7 = var0.getRegisteredKeyStrokes(); + java.awt.Component var10 = var0.getComponentAt(100, 100); + java.lang.Object var11 = var0.getTreeLock(); + SpaceWar.SpacePanel var12 = new SpaceWar.SpacePanel(); + float var13 = var12.getAlignmentX(); + var12.setVisible(false); + boolean var16 = var12.isDoubleBuffered(); + java.awt.dnd.DropTarget var17 = var12.getDropTarget(); + java.awt.Point var18 = var12.getMousePosition(); + java.lang.String var19 = var12.getUIClassID(); + var0.setNextFocusableComponent((java.awt.Component)var12); + SpaceWar.SpacePanel var21 = new SpaceWar.SpacePanel(); + var21.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", 10.0d, 100.0d); + SpaceWar.SpacePanel var26 = new SpaceWar.SpacePanel(); + float var27 = var26.getAlignmentX(); + var26.setVisible(false); + boolean var30 = var26.isDoubleBuffered(); + java.awt.dnd.DropTarget var31 = var26.getDropTarget(); + boolean var32 = var26.isFocusCycleRoot(); + var26.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", 100, 0); + SpaceWar.SpacePanel var37 = new SpaceWar.SpacePanel(); + java.awt.Color var38 = var37.getBackground(); + var37.repaint(); + var37.setRequestFocusEnabled(false); + var37.reshape(100, 0, 100, 0); + javax.swing.event.AncestorListener[] var47 = var37.getAncestorListeners(); + var37.grabFocus(); + boolean var49 = var26.isFocusCycleRoot((java.awt.Container)var37); + javax.swing.ActionMap var50 = var37.getActionMap(); + var21.setActionMap(var50); + var0.setActionMap(var50); + SpaceWar.SpacePanel var53 = new SpaceWar.SpacePanel(); + float var54 = var53.getAlignmentX(); + var53.setVisible(false); + boolean var57 = var53.isDoubleBuffered(); + java.awt.dnd.DropTarget var58 = var53.getDropTarget(); + var53.show(false); + boolean var61 = var53.isPaintingForPrint(); + SpaceWar.SpacePanel var62 = new SpaceWar.SpacePanel(); + float var63 = var62.getAlignmentX(); + var62.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var68 = var62.getMouseListeners(); + int var69 = var62.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var70 = var62.getInputMethodRequests(); + var53.addKeyListener((java.awt.event.KeyListener)var62); + var62.repaint(); + java.awt.Point var73 = var62.location(); + var0.setLocation(var73); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var4); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var19 + "' != '" + "PanelUI"+ "'", var19.equals("PanelUI")); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var30 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var31); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var32 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var38); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var47); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var49 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var50); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var54 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var57 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var58); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var61 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var63 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var68); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var69 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var70); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var73); + + } + + public void test33() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test33"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.updateUI(); + var0.enableInputMethods(true); + java.awt.Point var8 = var0.location(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.setVisible(false); + var9.nextFocus(); + java.awt.Component var14 = var0.add((java.awt.Component)var9); + int var15 = var0.getX(); + var0.doLayout(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == 0); + + } + + public void test34() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test34"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var1 = new SpaceWar.SpacePanel(); + java.awt.Color var2 = var1.getBackground(); + SpaceWar.SpacePanel var3 = new SpaceWar.SpacePanel(); + float var4 = var3.getAlignmentX(); + var3.setVisible(false); + var3.nextFocus(); + var3.updateUI(); + var3.enableInputMethods(true); + var0.add((java.awt.Component)var1, (java.lang.Object)true); + java.awt.Image var14 = var1.createImage(1, (-1)); + SpaceWar.SpacePanel var15 = new SpaceWar.SpacePanel(); + float var16 = var15.getAlignmentX(); + var15.setVisible(false); + var15.nextFocus(); + var15.updateUI(); + var15.enableInputMethods(true); + SpaceWar.SpacePanel var23 = new SpaceWar.SpacePanel(); + float var24 = var23.getAlignmentX(); + boolean var25 = var23.hasFocus(); + java.awt.Insets var26 = var23.getInsets(); + java.awt.Insets var27 = var15.getInsets(var26); + java.awt.Insets var28 = var1.getInsets(var26); + var1.paintImmediately(400, (-1), 0, 3); + SpaceWar.SpacePanel var34 = new SpaceWar.SpacePanel(); + float var35 = var34.getAlignmentX(); + var34.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var40 = var34.getMouseListeners(); + java.awt.Dimension var41 = var34.getPreferredSize(); + int var42 = var1.getComponentZOrder((java.awt.Component)var34); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var2); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var24 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var27); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var28); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var35 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var40); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var41); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var42 == (-1)); + + } + + public void test35() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test35"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.setInheritsPopupMenu(false); + var0.setFocusTraversalPolicyProvider(true); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + boolean var12 = var8.isDoubleBuffered(); + var8.list(); + SpaceWar.SpacePanel var14 = new SpaceWar.SpacePanel(); + float var15 = var14.getAlignmentX(); + var14.setVisible(false); + boolean var18 = var14.isDoubleBuffered(); + java.awt.dnd.DropTarget var19 = var14.getDropTarget(); + var14.show(false); + java.awt.Rectangle var22 = var14.getVisibleRect(); + java.awt.Rectangle var23 = var8.getBounds(var22); + javax.swing.JToolTip var24 = var8.createToolTip(); + var0.removeKeyListener((java.awt.event.KeyListener)var8); + javax.swing.TransferHandler var26 = var0.getTransferHandler(); + var0.transferFocus(); + SpaceWar.SpacePanel var28 = new SpaceWar.SpacePanel(); + float var29 = var28.getAlignmentX(); + SpaceWar.SpacePanel var30 = new SpaceWar.SpacePanel(); + float var31 = var30.getAlignmentX(); + var30.setVisible(false); + java.awt.Dimension var34 = var30.getPreferredSize(); + boolean var35 = var30.getVerifyInputWhenFocusTarget(); + java.awt.Component var38 = var30.findComponentAt(10, 1); + var28.addKeyListener((java.awt.event.KeyListener)var30); + java.awt.Dimension var40 = var30.getMinimumSize(); + SpaceWar.SpacePanel var41 = new SpaceWar.SpacePanel(); + java.awt.Color var42 = var41.getBackground(); + var41.repaint(); + var41.setRequestFocusEnabled(false); + var41.reshape(100, 0, 100, 0); + var41.requestFocus(); + java.awt.Rectangle var52 = var41.getVisibleRect(); + var30.setBounds(var52); + var0.scrollRectToVisible(var52); + var0.setFocusCycleRoot(false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var23); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var29 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var31 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var34); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var35 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var38); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var40); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var42); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var52); + + } + + public void test36() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test36"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + var0.setRequestFocusEnabled(false); + var0.reshape(100, 0, 100, 0); + javax.swing.event.AncestorListener[] var10 = var0.getAncestorListeners(); + SpaceWar.SpacePanel var11 = new SpaceWar.SpacePanel(); + float var12 = var11.getAlignmentX(); + SpaceWar.SpacePanel var13 = new SpaceWar.SpacePanel(); + float var14 = var13.getAlignmentX(); + var13.setVisible(false); + java.awt.Dimension var17 = var13.getPreferredSize(); + boolean var18 = var13.getVerifyInputWhenFocusTarget(); + java.awt.Component var21 = var13.findComponentAt(10, 1); + var11.addKeyListener((java.awt.event.KeyListener)var13); + java.awt.Cursor var23 = var11.getCursor(); + var0.setCursor(var23); + SpaceWar.SpacePanel var25 = new SpaceWar.SpacePanel(); + float var26 = var25.getAlignmentX(); + var25.setVisible(false); + boolean var29 = var25.isDoubleBuffered(); + var25.list(); + SpaceWar.SpacePanel var31 = new SpaceWar.SpacePanel(); + float var32 = var31.getAlignmentX(); + var31.setVisible(false); + boolean var35 = var31.isDoubleBuffered(); + java.awt.dnd.DropTarget var36 = var31.getDropTarget(); + var31.show(false); + java.awt.Rectangle var39 = var31.getVisibleRect(); + java.awt.image.BufferedImage var41 = var31.loadImg("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + boolean var42 = var25.isAncestorOf((java.awt.Component)var31); + float var43 = var25.getAlignmentX(); + java.awt.image.VolatileImage var46 = var25.createVolatileImage(25, 1); + SpaceWar.SpacePanel var47 = new SpaceWar.SpacePanel(); + float var48 = var47.getAlignmentX(); + var47.setVisible(false); + boolean var51 = var47.isDoubleBuffered(); + var47.list(); + SpaceWar.SpacePanel var53 = new SpaceWar.SpacePanel(); + float var54 = var53.getAlignmentX(); + var53.setVisible(false); + boolean var57 = var53.isDoubleBuffered(); + java.awt.dnd.DropTarget var58 = var53.getDropTarget(); + var53.show(false); + java.awt.Rectangle var61 = var53.getVisibleRect(); + java.awt.Rectangle var62 = var47.getBounds(var61); + javax.swing.JToolTip var63 = var47.createToolTip(); + java.awt.Dimension var64 = var47.minimumSize(); + SpaceWar.SpacePanel var65 = new SpaceWar.SpacePanel(); + float var66 = var65.getAlignmentX(); + var65.setVisible(false); + var65.setInheritsPopupMenu(false); + var65.setFocusTraversalPolicyProvider(true); + java.awt.Container var73 = var65.getFocusCycleRootAncestor(); + SpaceWar.SpacePanel var74 = new SpaceWar.SpacePanel(); + float var75 = var74.getAlignmentX(); + var74.removeNotify(); + SpaceWar.SpacePanel var77 = new SpaceWar.SpacePanel(); + float var78 = var77.getAlignmentX(); + var77.setVisible(false); + boolean var81 = var77.isDoubleBuffered(); + var77.list(); + float var83 = var77.getAlignmentY(); + java.awt.Insets var84 = var77.getInsets(); + java.awt.Insets var85 = var74.getInsets(var84); + java.awt.Insets var86 = var65.getInsets(var85); + java.awt.Insets var87 = var47.getInsets(var85); + java.awt.Insets var88 = var25.getInsets(var85); + java.awt.Insets var89 = var0.getInsets(var85); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var21); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var23); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var29 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var32 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var35 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var36); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var39); + + // Regression assertion (captures the current behavior of the code) + assertNull(var41); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var42 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var43 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNull(var46); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var48 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var51 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var54 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var57 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var58); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var61); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var62); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var63); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var64); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var66 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNull(var73); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var75 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var78 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var81 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var83 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var84); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var85); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var86); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var87); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var88); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var89); + + } + + public void test37() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test37"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + var0.show(false); + boolean var8 = var0.isPaintingForPrint(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var15 = var9.getMouseListeners(); + int var16 = var9.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var17 = var9.getInputMethodRequests(); + var0.addKeyListener((java.awt.event.KeyListener)var9); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + float var20 = var19.getAlignmentX(); + var19.setVisible(false); + boolean var23 = var19.isDoubleBuffered(); + var19.list(); + float var25 = var19.getAlignmentY(); + boolean var26 = var9.isFocusCycleRoot((java.awt.Container)var19); + javax.swing.ActionMap var27 = var9.getActionMap(); + java.awt.Color var28 = var9.getForeground(); + boolean var29 = var9.isLightweight(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var27); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var28); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var29 == false); + + } + + public void test38() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test38"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + java.awt.im.InputMethodRequests var3 = var0.getInputMethodRequests(); + int var4 = var0.countComponents(); + java.awt.event.ComponentListener[] var5 = var0.getComponentListeners(); + var0.removeNotify(); + javax.swing.InputMap var7 = var0.getInputMap(); + java.awt.Cursor var8 = var0.getCursor(); + var0.doLayout(); + var0.repaint(10L, 499, 3, 10, 24); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var8); + + } + + public void test39() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test39"); + + + SpaceWar.Player var0 = new SpaceWar.Player(); + boolean var1 = var0.isRecovering(); + var0.setRigth(false); + int var4 = var0.getPowerLevel(); + var0.update(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0); + + } + + public void test40() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test40"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + var0.setRequestFocusEnabled(false); + var0.reshape(100, 0, 100, 0); + var0.requestFocus(); + SpaceWar.SpacePanel var11 = new SpaceWar.SpacePanel(); + float var12 = var11.getAlignmentX(); + var11.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var17 = var11.getUI(); + java.awt.im.InputMethodRequests var18 = var11.getInputMethodRequests(); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + float var20 = var19.getAlignmentX(); + var19.setVisible(false); + var19.nextFocus(); + var19.updateUI(); + var19.enableInputMethods(true); + var19.setSize((-1), 1); + SpaceWar.SpacePanel var30 = new SpaceWar.SpacePanel(); + var30.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var11.add((java.awt.Component)var19, (java.lang.Object)"SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + SpaceWar.SpacePanel var36 = new SpaceWar.SpacePanel(); + var36.setName(""); + java.awt.ComponentOrientation var39 = var36.getComponentOrientation(); + var11.applyComponentOrientation(var39); + var0.setComponentOrientation(var39); + java.util.Locale var42 = var0.getLocale(); + boolean var43 = var0.isPaintingForPrint(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var39); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var42); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var43 == false); + + } + + public void test41() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test41"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + var0.show(false); + java.awt.event.MouseWheelListener[] var8 = var0.getMouseWheelListeners(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.setVisible(false); + SpaceWar.SpacePanel var13 = new SpaceWar.SpacePanel(); + java.awt.Color var14 = var13.getBackground(); + var9.setForeground(var14); + SpaceWar.SpacePanel var16 = new SpaceWar.SpacePanel(); + float var17 = var16.getAlignmentX(); + var16.setVisible(false); + boolean var20 = var16.isDoubleBuffered(); + java.awt.dnd.DropTarget var21 = var16.getDropTarget(); + var16.show(false); + java.awt.Rectangle var24 = var16.getVisibleRect(); + var9.repaint(var24); + SpaceWar.SpacePanel var26 = new SpaceWar.SpacePanel(); + float var27 = var26.getAlignmentX(); + var26.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var32 = var26.getMouseListeners(); + java.awt.Dimension var33 = var26.getPreferredSize(); + java.util.Locale var34 = var26.getLocale(); + var9.setLocale(var34); + java.util.Locale var36 = var9.getLocale(); + var0.setLocale(var36); + float var38 = var0.getAlignmentX(); + SpaceWar.SpacePanel var39 = new SpaceWar.SpacePanel(); + float var40 = var39.getAlignmentX(); + var39.setVisible(false); + var39.nextFocus(); + var39.reshape((-1), 1, (-1), 10); + var39.disable(); + boolean var50 = var39.isFocusable(); + SpaceWar.SpacePanel var51 = new SpaceWar.SpacePanel(); + float var52 = var51.getAlignmentX(); + var51.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var57 = var51.getUI(); + java.awt.im.InputMethodRequests var58 = var51.getInputMethodRequests(); + SpaceWar.SpacePanel var59 = new SpaceWar.SpacePanel(); + float var60 = var59.getAlignmentX(); + var59.setVisible(false); + var59.nextFocus(); + var59.updateUI(); + var59.enableInputMethods(true); + var59.setSize((-1), 1); + SpaceWar.SpacePanel var70 = new SpaceWar.SpacePanel(); + var70.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var51.add((java.awt.Component)var59, (java.lang.Object)"SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + java.awt.event.KeyListener[] var76 = var51.getKeyListeners(); + java.awt.FocusTraversalPolicy var77 = var51.getFocusTraversalPolicy(); + SpaceWar.SpacePanel var78 = new SpaceWar.SpacePanel(); + var78.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + java.awt.Toolkit var83 = var78.getToolkit(); + var39.add((java.awt.Component)var51, (java.lang.Object)var78); + var51.transferFocusDownCycle(); + SpaceWar.SpacePanel var86 = new SpaceWar.SpacePanel(); + java.awt.Color var87 = var86.getBackground(); + var86.repaint(); + java.awt.im.InputMethodRequests var89 = var86.getInputMethodRequests(); + var86.setDoubleBuffered(true); + var86.setInheritsPopupMenu(false); + javax.swing.InputMap var94 = var86.getInputMap(); + var86.doLayout(); + java.awt.LayoutManager var96 = var86.getLayout(); + var51.setLayout(var96); + var0.setLayout(var96); + javax.swing.JRootPane var99 = var0.getRootPane(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var21); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var32); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var33); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var34); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var36); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var38 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var40 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var50 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var52 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var57); + + // Regression assertion (captures the current behavior of the code) + assertNull(var58); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var60 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var76); + + // Regression assertion (captures the current behavior of the code) + assertNull(var77); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var83); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var87); + + // Regression assertion (captures the current behavior of the code) + assertNull(var89); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var94); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var96); + + // Regression assertion (captures the current behavior of the code) + assertNull(var99); + + } + + public void test42() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test42"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + var0.list(); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + float var7 = var6.getAlignmentX(); + var6.setVisible(false); + boolean var10 = var6.isDoubleBuffered(); + java.awt.dnd.DropTarget var11 = var6.getDropTarget(); + var6.show(false); + java.awt.Rectangle var14 = var6.getVisibleRect(); + java.awt.Rectangle var15 = var0.getBounds(var14); + javax.swing.JToolTip var16 = var0.createToolTip(); + java.awt.Dimension var17 = var0.minimumSize(); + SpaceWar.SpacePanel var18 = new SpaceWar.SpacePanel(); + float var19 = var18.getAlignmentX(); + var18.setVisible(false); + var18.setInheritsPopupMenu(false); + var18.setFocusTraversalPolicyProvider(true); + java.awt.Container var26 = var18.getFocusCycleRootAncestor(); + SpaceWar.SpacePanel var27 = new SpaceWar.SpacePanel(); + float var28 = var27.getAlignmentX(); + var27.removeNotify(); + SpaceWar.SpacePanel var30 = new SpaceWar.SpacePanel(); + float var31 = var30.getAlignmentX(); + var30.setVisible(false); + boolean var34 = var30.isDoubleBuffered(); + var30.list(); + float var36 = var30.getAlignmentY(); + java.awt.Insets var37 = var30.getInsets(); + java.awt.Insets var38 = var27.getInsets(var37); + java.awt.Insets var39 = var18.getInsets(var38); + java.awt.Insets var40 = var0.getInsets(var38); + java.awt.ComponentOrientation var41 = var0.getComponentOrientation(); + java.awt.Container var42 = var0.getTopLevelAncestor(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var28 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var31 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var34 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var36 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var37); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var38); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var39); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var40); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var41); + + // Regression assertion (captures the current behavior of the code) + assertNull(var42); + + } + + public void test43() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test43"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.setInheritsPopupMenu(false); + var0.setFocusTraversalPolicyProvider(true); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + boolean var12 = var8.isDoubleBuffered(); + var8.list(); + SpaceWar.SpacePanel var14 = new SpaceWar.SpacePanel(); + float var15 = var14.getAlignmentX(); + var14.setVisible(false); + boolean var18 = var14.isDoubleBuffered(); + java.awt.dnd.DropTarget var19 = var14.getDropTarget(); + var14.show(false); + java.awt.Rectangle var22 = var14.getVisibleRect(); + java.awt.Rectangle var23 = var8.getBounds(var22); + javax.swing.JToolTip var24 = var8.createToolTip(); + var0.removeKeyListener((java.awt.event.KeyListener)var8); + var0.setFocusTraversalKeysEnabled(true); + var0.firePropertyChange("SpaceWar.SpacePanel[,-1,1,-1x10,invalid,hidden,disabled,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", (byte)10, (byte)10); + boolean var32 = var0.getAutoscrolls(); + javax.accessibility.AccessibleContext var33 = var0.getAccessibleContext(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var23); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var32 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var33); + + } + + public void test44() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test44"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var6 = var0.getUI(); + java.awt.im.InputMethodRequests var7 = var0.getInputMethodRequests(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + var8.nextFocus(); + var8.updateUI(); + var8.enableInputMethods(true); + var8.setSize((-1), 1); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + var19.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var0.add((java.awt.Component)var8, (java.lang.Object)"SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + java.awt.ComponentOrientation var25 = var8.getComponentOrientation(); + boolean var26 = var8.isMaximumSizeSet(); + SpaceWar.SpacePanel var27 = new SpaceWar.SpacePanel(); + float var28 = var27.getAlignmentX(); + var27.setVisible(false); + boolean var31 = var27.isDoubleBuffered(); + java.awt.dnd.DropTarget var32 = var27.getDropTarget(); + var27.show(false); + boolean var35 = var27.isPaintingForPrint(); + SpaceWar.SpacePanel var36 = new SpaceWar.SpacePanel(); + float var37 = var36.getAlignmentX(); + var36.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var42 = var36.getMouseListeners(); + int var43 = var36.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var44 = var36.getInputMethodRequests(); + var27.addKeyListener((java.awt.event.KeyListener)var36); + SpaceWar.SpacePanel var46 = new SpaceWar.SpacePanel(); + float var47 = var46.getAlignmentX(); + var46.setVisible(false); + boolean var50 = var46.isDoubleBuffered(); + var46.list(); + float var52 = var46.getAlignmentY(); + boolean var53 = var36.isFocusCycleRoot((java.awt.Container)var46); + boolean var54 = var46.isEnabled(); + java.awt.Dimension var55 = var46.getMaximumSize(); + var8.setMinimumSize(var55); + var8.disable(); + int var58 = var8.getComponentCount(); + var8.reshape((-1), (-1), 25, 2); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var25); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var28 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var31 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var32); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var35 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var42); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var43 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var44); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var47 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var50 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var52 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var53 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var54 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var55); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var58 == 0); + + } + + public void test45() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test45"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + boolean var6 = var0.isFocusCycleRoot(); + SpaceWar.SpacePanel var7 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + java.awt.Color var9 = var8.getBackground(); + SpaceWar.SpacePanel var10 = new SpaceWar.SpacePanel(); + float var11 = var10.getAlignmentX(); + var10.setVisible(false); + var10.nextFocus(); + var10.updateUI(); + var10.enableInputMethods(true); + var7.add((java.awt.Component)var8, (java.lang.Object)true); + java.awt.Dimension var19 = var8.getPreferredSize(); + var0.setSize(var19); + var0.updateUI(); + SpaceWar.SpacePanel var22 = new SpaceWar.SpacePanel(); + float var23 = var22.getAlignmentX(); + var22.setVisible(false); + java.awt.Dimension var26 = var22.getPreferredSize(); + java.awt.Toolkit var27 = var22.getToolkit(); + boolean var28 = var22.isFocusable(); + javax.swing.KeyStroke[] var29 = var22.getRegisteredKeyStrokes(); + SpaceWar.SpacePanel var30 = new SpaceWar.SpacePanel(); + float var31 = var30.getAlignmentX(); + SpaceWar.SpacePanel var32 = new SpaceWar.SpacePanel(); + float var33 = var32.getAlignmentX(); + var32.setVisible(false); + java.awt.Dimension var36 = var32.getPreferredSize(); + boolean var37 = var32.getVerifyInputWhenFocusTarget(); + java.awt.Component var40 = var32.findComponentAt(10, 1); + var30.addKeyListener((java.awt.event.KeyListener)var32); + var32.repaint(100, (-1), (-1), 1); + boolean var47 = var22.isAncestorOf((java.awt.Component)var32); + java.awt.Point var48 = var22.location(); + boolean var49 = var0.contains(var48); + var0.repaint(10L); + java.awt.event.MouseListener[] var52 = var0.getMouseListeners(); + java.awt.image.VolatileImage var55 = var0.createVolatileImage(25, 3); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var9); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var27); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var28 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var29); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var31 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var33 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var36); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var40); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var47 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var48); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var49 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var52); + + // Regression assertion (captures the current behavior of the code) + assertNull(var55); + + } + + public void test46() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test46"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + var0.list(); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + float var7 = var6.getAlignmentX(); + var6.setVisible(false); + boolean var10 = var6.isDoubleBuffered(); + java.awt.dnd.DropTarget var11 = var6.getDropTarget(); + var6.show(false); + java.awt.Rectangle var14 = var6.getVisibleRect(); + java.awt.Rectangle var15 = var0.getBounds(var14); + javax.swing.JToolTip var16 = var0.createToolTip(); + var0.firePropertyChange("", false, false); + var0.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", (-1L), (-1L)); + java.beans.VetoableChangeListener[] var25 = var0.getVetoableChangeListeners(); + SpaceWar.PowerUp var29 = new SpaceWar.PowerUp(100, (-1.0d), 0.0d); + double var30 = var29.getX(); + SpaceWar.Player var31 = new SpaceWar.Player(); + int var32 = var31.getR(); + var31.setRigth(false); + int var35 = var31.getY(); + var0.putClientProperty((java.lang.Object)var30, (java.lang.Object)var35); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var25); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var30 == (-1.0d)); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var32 == 25); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var35 == 500); + + } + + public void test47() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test47"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var1 = new SpaceWar.SpacePanel(); + java.awt.Color var2 = var1.getBackground(); + SpaceWar.SpacePanel var3 = new SpaceWar.SpacePanel(); + float var4 = var3.getAlignmentX(); + var3.setVisible(false); + var3.nextFocus(); + var3.updateUI(); + var3.enableInputMethods(true); + var0.add((java.awt.Component)var1, (java.lang.Object)true); + boolean var13 = var1.areFocusTraversalKeysSet(0); + SpaceWar.SpacePanel var14 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var15 = new SpaceWar.SpacePanel(); + java.awt.Color var16 = var15.getBackground(); + SpaceWar.SpacePanel var17 = new SpaceWar.SpacePanel(); + float var18 = var17.getAlignmentX(); + var17.setVisible(false); + var17.nextFocus(); + var17.updateUI(); + var17.enableInputMethods(true); + var14.add((java.awt.Component)var15, (java.lang.Object)true); + boolean var26 = var14.isMinimumSizeSet(); + java.awt.event.HierarchyListener[] var27 = var14.getHierarchyListeners(); + SpaceWar.SpacePanel var28 = new SpaceWar.SpacePanel(); + float var29 = var28.getAlignmentX(); + var28.setVisible(false); + SpaceWar.SpacePanel var32 = new SpaceWar.SpacePanel(); + java.awt.Color var33 = var32.getBackground(); + var28.setForeground(var33); + SpaceWar.SpacePanel var35 = new SpaceWar.SpacePanel(); + float var36 = var35.getAlignmentX(); + var35.setVisible(false); + boolean var39 = var35.isDoubleBuffered(); + java.awt.dnd.DropTarget var40 = var35.getDropTarget(); + var35.show(false); + java.awt.Rectangle var43 = var35.getVisibleRect(); + var28.repaint(var43); + java.awt.FocusTraversalPolicy var45 = var28.getFocusTraversalPolicy(); + java.awt.im.InputMethodRequests var46 = var28.getInputMethodRequests(); + var28.layout(); + boolean var48 = var28.isFocusTraversalPolicyProvider(); + java.lang.Object var49 = var14.getClientProperty((java.lang.Object)var48); + boolean var50 = var14.isFocusTraversable(); + var1.remove((java.awt.Component)var14); + SpaceWar.SpacePanel var52 = new SpaceWar.SpacePanel(); + float var53 = var52.getAlignmentX(); + var52.setVisible(false); + boolean var56 = var52.isDoubleBuffered(); + java.awt.dnd.DropTarget var57 = var52.getDropTarget(); + var52.show(false); + java.awt.Rectangle var60 = var52.getVisibleRect(); + boolean var61 = var52.isFocusTraversalPolicySet(); + SpaceWar.SpacePanel var62 = new SpaceWar.SpacePanel(); + float var63 = var62.getAlignmentX(); + var62.setVisible(false); + boolean var66 = var62.isDoubleBuffered(); + var62.enable(false); + boolean var69 = var62.getFocusTraversalKeysEnabled(); + SpaceWar.SpacePanel var70 = new SpaceWar.SpacePanel(); + float var71 = var70.getAlignmentX(); + var70.setVisible(false); + java.awt.Dimension var74 = var70.getPreferredSize(); + java.awt.Toolkit var75 = var70.getToolkit(); + boolean var76 = var70.isFocusable(); + javax.swing.KeyStroke[] var77 = var70.getRegisteredKeyStrokes(); + SpaceWar.SpacePanel var78 = new SpaceWar.SpacePanel(); + float var79 = var78.getAlignmentX(); + SpaceWar.SpacePanel var80 = new SpaceWar.SpacePanel(); + float var81 = var80.getAlignmentX(); + var80.setVisible(false); + java.awt.Dimension var84 = var80.getPreferredSize(); + boolean var85 = var80.getVerifyInputWhenFocusTarget(); + java.awt.Component var88 = var80.findComponentAt(10, 1); + var78.addKeyListener((java.awt.event.KeyListener)var80); + var80.repaint(100, (-1), (-1), 1); + boolean var95 = var70.isAncestorOf((java.awt.Component)var80); + var62.addKeyListener((java.awt.event.KeyListener)var80); + java.util.Locale var97 = var80.getLocale(); + var52.setLocale(var97); + var14.setLocale(var97); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var2); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var27); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var29 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var33); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var36 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var39 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var40); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var43); + + // Regression assertion (captures the current behavior of the code) + assertNull(var45); + + // Regression assertion (captures the current behavior of the code) + assertNull(var46); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var48 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var49); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var50 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var53 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var56 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var57); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var60); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var61 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var63 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var66 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var69 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var71 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var74); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var75); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var76 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var77); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var79 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var81 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var84); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var85 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var88); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var95 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var97); + + } + + public void test48() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test48"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + var0.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + javax.swing.plaf.PanelUI var5 = var0.getUI(); + java.awt.Container var6 = var0.getParent(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertNull(var6); + + } + + public void test49() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test49"); + + + SpaceWar.PowerUp var3 = new SpaceWar.PowerUp(10, 241.4584513263457d, 0.0d); + + } + + public void test50() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test50"); + + + SpaceWar.Player var0 = new SpaceWar.Player(); + int var1 = var0.getPower(); + var0.setLeft(true); + var0.increasePower(0); + boolean var6 = var0.isDead(); + var0.setFiring(true); + var0.setRigth(false); + var0.update(); + var0.loseLife(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == false); + + } + + public void test51() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test51"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.reshape((-1), 1, (-1), 10); + var0.disable(); + java.awt.LayoutManager var11 = var0.getLayout(); + java.awt.Container var12 = var0.getParent(); + boolean var13 = var0.isOptimizedDrawingEnabled(); + java.awt.Font var14 = var0.getFont(); + // The following exception was thrown during execution. + // This behavior will recorded for regression testing. + try { + boolean var16 = var0.areFocusTraversalKeysSet(500); + fail("Expected exception of type java.lang.IllegalArgumentException"); + } catch (java.lang.IllegalArgumentException e) { + // Expected exception. + } + + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + } + + public void test52() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test52"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + java.awt.im.InputMethodRequests var3 = var0.getInputMethodRequests(); + var0.setDoubleBuffered(true); + var0.show(false); + var0.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", (-1), 24); + boolean var12 = var0.isFocusOwner(); + boolean var13 = var0.isFontSet(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == true); + + } + + public void test53() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test53"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + var0.list(); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + float var7 = var6.getAlignmentX(); + var6.setVisible(false); + boolean var10 = var6.isDoubleBuffered(); + java.awt.dnd.DropTarget var11 = var6.getDropTarget(); + var6.show(false); + java.awt.Rectangle var14 = var6.getVisibleRect(); + java.awt.Rectangle var15 = var0.getBounds(var14); + javax.swing.JToolTip var16 = var0.createToolTip(); + java.awt.Graphics var17 = var0.getGraphics(); + java.beans.VetoableChangeListener[] var18 = var0.getVetoableChangeListeners(); + boolean var19 = var0.getVerifyInputWhenFocusTarget(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == true); + + } + + public void test54() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test54"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var6 = var0.getUI(); + SpaceWar.SpacePanel var7 = new SpaceWar.SpacePanel(); + float var8 = var7.getAlignmentX(); + var7.setVisible(false); + SpaceWar.SpacePanel var11 = new SpaceWar.SpacePanel(); + java.awt.Color var12 = var11.getBackground(); + var7.setForeground(var12); + SpaceWar.SpacePanel var14 = new SpaceWar.SpacePanel(); + float var15 = var14.getAlignmentX(); + var14.setVisible(false); + boolean var18 = var14.isDoubleBuffered(); + java.awt.dnd.DropTarget var19 = var14.getDropTarget(); + var14.show(false); + java.awt.Rectangle var22 = var14.getVisibleRect(); + var7.repaint(var22); + java.awt.FocusTraversalPolicy var24 = var7.getFocusTraversalPolicy(); + var7.resetKeyboardActions(); + SpaceWar.SpacePanel var26 = new SpaceWar.SpacePanel(); + float var27 = var26.getAlignmentX(); + var26.setVisible(false); + boolean var30 = var26.isDoubleBuffered(); + java.awt.dnd.DropTarget var31 = var26.getDropTarget(); + var26.show(false); + java.awt.Rectangle var34 = var26.getVisibleRect(); + var7.computeVisibleRect(var34); + javax.swing.ActionMap var36 = var7.getActionMap(); + var0.setActionMap(var36); + // The following exception was thrown during execution. + // This behavior will recorded for regression testing. + try { + boolean var39 = var0.areFocusTraversalKeysSet(24); + fail("Expected exception of type java.lang.IllegalArgumentException"); + } catch (java.lang.IllegalArgumentException e) { + // Expected exception. + } + + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var30 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var31); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var34); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var36); + + } + + public void test55() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test55"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.reshape((-1), 1, (-1), 10); + var0.disable(); + var0.show(); + SpaceWar.SpacePanel var12 = new SpaceWar.SpacePanel(); + float var13 = var12.getAlignmentX(); + var12.setVisible(false); + boolean var16 = var12.isDoubleBuffered(); + var12.list(); + SpaceWar.SpacePanel var18 = new SpaceWar.SpacePanel(); + float var19 = var18.getAlignmentX(); + var18.setVisible(false); + boolean var22 = var18.isDoubleBuffered(); + java.awt.dnd.DropTarget var23 = var18.getDropTarget(); + var18.show(false); + java.awt.Rectangle var26 = var18.getVisibleRect(); + java.awt.Rectangle var27 = var12.getBounds(var26); + javax.swing.JToolTip var28 = var12.createToolTip(); + var12.firePropertyChange("", false, false); + var12.validate(); + SpaceWar.SpacePanel var34 = new SpaceWar.SpacePanel(); + float var35 = var34.getAlignmentX(); + var34.setVisible(false); + boolean var38 = var34.isDoubleBuffered(); + java.awt.dnd.DropTarget var39 = var34.getDropTarget(); + var34.show(false); + boolean var42 = var34.isPaintingForPrint(); + SpaceWar.SpacePanel var43 = new SpaceWar.SpacePanel(); + float var44 = var43.getAlignmentX(); + var43.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var49 = var43.getMouseListeners(); + int var50 = var43.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var51 = var43.getInputMethodRequests(); + var34.addKeyListener((java.awt.event.KeyListener)var43); + var43.repaint(); + java.awt.Point var54 = var43.location(); + java.awt.Component var55 = var12.getComponentAt(var54); + java.awt.Point var56 = var0.getLocation(var54); + var0.setAlignmentY(0.5f); + SpaceWar.SpacePanel var59 = new SpaceWar.SpacePanel(); + java.awt.Color var60 = var59.getBackground(); + var59.repaint(); + java.awt.im.InputMethodRequests var62 = var59.getInputMethodRequests(); + var59.setDoubleBuffered(true); + SpaceWar.SpacePanel var65 = new SpaceWar.SpacePanel(); + float var66 = var65.getAlignmentX(); + boolean var67 = var65.hasFocus(); + java.awt.Insets var68 = var65.getInsets(); + java.awt.Insets var69 = var59.getInsets(var68); + java.awt.Insets var70 = var0.getInsets(var68); + java.awt.event.FocusListener[] var71 = var0.getFocusListeners(); + boolean var72 = var0.getVerifyInputWhenFocusTarget(); + var0.setSize(10, (-1)); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var22 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var23); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var27); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var28); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var35 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var38 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var39); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var42 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var44 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var49); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var50 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var51); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var54); + + // Regression assertion (captures the current behavior of the code) + assertNull(var55); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var56); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var60); + + // Regression assertion (captures the current behavior of the code) + assertNull(var62); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var66 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var67 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var68); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var69); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var70); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var71); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var72 == true); + + } + + public void test56() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test56"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.repaint(1L); + java.awt.image.VolatileImage var9 = var0.createVolatileImage(0, (-1)); + int var12 = var0.getBaseline(1, 3); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNull(var9); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == (-1)); + + } + + public void test57() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test57"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + SpaceWar.SpacePanel var4 = new SpaceWar.SpacePanel(); + java.awt.Color var5 = var4.getBackground(); + var0.setForeground(var5); + SpaceWar.SpacePanel var7 = new SpaceWar.SpacePanel(); + float var8 = var7.getAlignmentX(); + var7.setVisible(false); + boolean var11 = var7.isDoubleBuffered(); + java.awt.dnd.DropTarget var12 = var7.getDropTarget(); + var7.show(false); + java.awt.Rectangle var15 = var7.getVisibleRect(); + var0.repaint(var15); + java.awt.FocusTraversalPolicy var17 = var0.getFocusTraversalPolicy(); + var0.resetKeyboardActions(); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + float var20 = var19.getAlignmentX(); + var19.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var25 = var19.getMouseListeners(); + int var26 = var19.getDebugGraphicsOptions(); + SpaceWar.SpacePanel var27 = new SpaceWar.SpacePanel(); + float var28 = var27.getAlignmentX(); + var27.setVisible(false); + boolean var31 = var27.isDoubleBuffered(); + java.awt.dnd.DropTarget var32 = var27.getDropTarget(); + var27.show(false); + java.awt.Rectangle var35 = var27.getVisibleRect(); + var19.paintImmediately(var35); + var0.setBounds(var35); + boolean var38 = var0.getVerifyInputWhenFocusTarget(); + boolean var39 = var0.isOptimizedDrawingEnabled(); + boolean var40 = var0.isShowing(); + boolean var41 = var0.isEnabled(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var25); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var28 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var31 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var32); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var35); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var38 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var39 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var40 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var41 == true); + + } + + public void test58() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test58"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + java.awt.Point var6 = var0.getMousePosition(); + java.lang.String var7 = var0.getUIClassID(); + var0.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", '#', '4'); + boolean var12 = var0.isPreferredSizeSet(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var7 + "' != '" + "PanelUI"+ "'", var7.equals("PanelUI")); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == true); + + } + + public void test59() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test59"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + java.awt.Dimension var4 = var0.getPreferredSize(); + java.awt.Toolkit var5 = var0.getToolkit(); + boolean var6 = var0.isFocusable(); + javax.swing.KeyStroke[] var7 = var0.getRegisteredKeyStrokes(); + java.awt.Component var10 = var0.getComponentAt(100, 100); + java.lang.String var11 = var0.getUIClassID(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var4); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var11 + "' != '" + "PanelUI"+ "'", var11.equals("PanelUI")); + + } + + public void test60() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test60"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + var0.setName(""); + var0.enable(true); + var0.enable(); + java.awt.Point var6 = var0.location(); + var0.repaint(0, 3, (-1), 1); + java.awt.event.HierarchyBoundsListener[] var12 = var0.getHierarchyBoundsListeners(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var12); + + } + + public void test61() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test61"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.reshape((-1), 1, (-1), 10); + var0.disable(); + var0.show(); + SpaceWar.SpacePanel var12 = new SpaceWar.SpacePanel(); + float var13 = var12.getAlignmentX(); + var12.setVisible(false); + boolean var16 = var12.isDoubleBuffered(); + var12.list(); + SpaceWar.SpacePanel var18 = new SpaceWar.SpacePanel(); + float var19 = var18.getAlignmentX(); + var18.setVisible(false); + boolean var22 = var18.isDoubleBuffered(); + java.awt.dnd.DropTarget var23 = var18.getDropTarget(); + var18.show(false); + java.awt.Rectangle var26 = var18.getVisibleRect(); + java.awt.Rectangle var27 = var12.getBounds(var26); + javax.swing.JToolTip var28 = var12.createToolTip(); + var12.firePropertyChange("", false, false); + var12.validate(); + SpaceWar.SpacePanel var34 = new SpaceWar.SpacePanel(); + float var35 = var34.getAlignmentX(); + var34.setVisible(false); + boolean var38 = var34.isDoubleBuffered(); + java.awt.dnd.DropTarget var39 = var34.getDropTarget(); + var34.show(false); + boolean var42 = var34.isPaintingForPrint(); + SpaceWar.SpacePanel var43 = new SpaceWar.SpacePanel(); + float var44 = var43.getAlignmentX(); + var43.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var49 = var43.getMouseListeners(); + int var50 = var43.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var51 = var43.getInputMethodRequests(); + var34.addKeyListener((java.awt.event.KeyListener)var43); + var43.repaint(); + java.awt.Point var54 = var43.location(); + java.awt.Component var55 = var12.getComponentAt(var54); + java.awt.Point var56 = var0.getLocation(var54); + var0.setAlignmentY(0.5f); + boolean var59 = var0.getVerifyInputWhenFocusTarget(); + boolean var60 = var0.isBackgroundSet(); + java.awt.Dimension var61 = var0.getMinimumSize(); + java.awt.Toolkit var62 = var0.getToolkit(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var22 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var23); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var27); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var28); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var35 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var38 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var39); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var42 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var44 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var49); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var50 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var51); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var54); + + // Regression assertion (captures the current behavior of the code) + assertNull(var55); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var56); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var59 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var60 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var61); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var62); + + } + + public void test62() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test62"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + java.awt.Dimension var4 = var0.getPreferredSize(); + java.awt.Toolkit var5 = var0.getToolkit(); + boolean var6 = var0.isFocusable(); + javax.swing.KeyStroke[] var7 = var0.getRegisteredKeyStrokes(); + java.awt.Component var10 = var0.getComponentAt(100, 100); + java.lang.Object var11 = var0.getTreeLock(); + SpaceWar.SpacePanel var12 = new SpaceWar.SpacePanel(); + float var13 = var12.getAlignmentX(); + var12.setVisible(false); + boolean var16 = var12.isDoubleBuffered(); + java.awt.dnd.DropTarget var17 = var12.getDropTarget(); + java.awt.Point var18 = var12.getMousePosition(); + java.lang.String var19 = var12.getUIClassID(); + var0.setNextFocusableComponent((java.awt.Component)var12); + SpaceWar.SpacePanel var21 = new SpaceWar.SpacePanel(); + var21.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", 10.0d, 100.0d); + SpaceWar.SpacePanel var26 = new SpaceWar.SpacePanel(); + float var27 = var26.getAlignmentX(); + var26.setVisible(false); + boolean var30 = var26.isDoubleBuffered(); + java.awt.dnd.DropTarget var31 = var26.getDropTarget(); + boolean var32 = var26.isFocusCycleRoot(); + var26.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", 100, 0); + SpaceWar.SpacePanel var37 = new SpaceWar.SpacePanel(); + java.awt.Color var38 = var37.getBackground(); + var37.repaint(); + var37.setRequestFocusEnabled(false); + var37.reshape(100, 0, 100, 0); + javax.swing.event.AncestorListener[] var47 = var37.getAncestorListeners(); + var37.grabFocus(); + boolean var49 = var26.isFocusCycleRoot((java.awt.Container)var37); + javax.swing.ActionMap var50 = var37.getActionMap(); + var21.setActionMap(var50); + var0.setActionMap(var50); + java.awt.Dimension var53 = var0.minimumSize(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var4); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var19 + "' != '" + "PanelUI"+ "'", var19.equals("PanelUI")); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var30 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var31); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var32 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var38); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var47); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var49 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var50); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var53); + + } + + public void test63() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test63"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + SpaceWar.SpacePanel var4 = new SpaceWar.SpacePanel(); + java.awt.Color var5 = var4.getBackground(); + var0.setForeground(var5); + SpaceWar.SpacePanel var7 = new SpaceWar.SpacePanel(); + float var8 = var7.getAlignmentX(); + var7.setVisible(false); + boolean var11 = var7.isDoubleBuffered(); + java.awt.dnd.DropTarget var12 = var7.getDropTarget(); + var7.show(false); + java.awt.Rectangle var15 = var7.getVisibleRect(); + var0.repaint(var15); + SpaceWar.SpacePanel var17 = new SpaceWar.SpacePanel(); + float var18 = var17.getAlignmentX(); + var17.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var23 = var17.getMouseListeners(); + java.awt.Dimension var24 = var17.getPreferredSize(); + java.util.Locale var25 = var17.getLocale(); + var0.setLocale(var25); + java.util.Locale var27 = var0.getLocale(); + var0.transferFocusDownCycle(); + java.awt.event.MouseWheelListener[] var29 = var0.getMouseWheelListeners(); + // The following exception was thrown during execution. + // This behavior will recorded for regression testing. + try { + java.util.Set var31 = var0.getFocusTraversalKeys(24); + fail("Expected exception of type java.lang.IllegalArgumentException"); + } catch (java.lang.IllegalArgumentException e) { + // Expected exception. + } + + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var23); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var25); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var27); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var29); + + } + + public void test64() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test64"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + java.awt.Dimension var4 = var0.getPreferredSize(); + java.awt.Toolkit var5 = var0.getToolkit(); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + var6.setName(""); + int var9 = var6.getX(); + SpaceWar.SpacePanel var10 = new SpaceWar.SpacePanel(); + float var11 = var10.getAlignmentX(); + var10.setVisible(false); + var10.nextFocus(); + SpaceWar.SpacePanel var15 = new SpaceWar.SpacePanel(); + float var16 = var15.getAlignmentX(); + var15.setVisible(false); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + java.awt.Color var20 = var19.getBackground(); + var15.setForeground(var20); + var10.setBackground(var20); + var6.setBackground(var20); + var0.setForeground(var20); + javax.swing.ActionMap var25 = var0.getActionMap(); + java.awt.Graphics var26 = var0.getGraphics(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var4); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var25); + + // Regression assertion (captures the current behavior of the code) + assertNull(var26); + + } + + public void test65() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test65"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + var0.show(false); + boolean var8 = var0.isPaintingForPrint(); + boolean var9 = var0.getIgnoreRepaint(); + var0.repaint(100, 10, 100, 0); + SpaceWar.SpacePanel var15 = new SpaceWar.SpacePanel(); + float var16 = var15.getAlignmentX(); + var15.setVisible(false); + boolean var19 = var15.isDoubleBuffered(); + var15.list(); + SpaceWar.SpacePanel var21 = new SpaceWar.SpacePanel(); + float var22 = var21.getAlignmentX(); + var21.setVisible(false); + boolean var25 = var21.isDoubleBuffered(); + java.awt.dnd.DropTarget var26 = var21.getDropTarget(); + var21.show(false); + java.awt.Rectangle var29 = var21.getVisibleRect(); + java.awt.Rectangle var30 = var15.getBounds(var29); + javax.swing.JToolTip var31 = var15.createToolTip(); + var15.firePropertyChange("", false, false); + var15.validate(); + SpaceWar.SpacePanel var37 = new SpaceWar.SpacePanel(); + float var38 = var37.getAlignmentX(); + var37.setVisible(false); + boolean var41 = var37.isDoubleBuffered(); + java.awt.dnd.DropTarget var42 = var37.getDropTarget(); + var37.show(false); + boolean var45 = var37.isPaintingForPrint(); + SpaceWar.SpacePanel var46 = new SpaceWar.SpacePanel(); + float var47 = var46.getAlignmentX(); + var46.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var52 = var46.getMouseListeners(); + int var53 = var46.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var54 = var46.getInputMethodRequests(); + var37.addKeyListener((java.awt.event.KeyListener)var46); + var46.repaint(); + java.awt.Point var57 = var46.location(); + java.awt.Component var58 = var15.getComponentAt(var57); + var0.setLocation(var57); + SpaceWar.SpacePanel var60 = new SpaceWar.SpacePanel(); + float var61 = var60.getAlignmentX(); + var60.setVisible(false); + boolean var64 = var60.isDoubleBuffered(); + var60.enable(false); + SpaceWar.SpacePanel var67 = new SpaceWar.SpacePanel(); + float var68 = var67.getAlignmentX(); + boolean var69 = var67.hasFocus(); + java.awt.Insets var70 = var67.getInsets(); + java.awt.Rectangle var71 = var67.bounds(); + var60.repaint(var71); + var0.repaint(var71); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var22 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var29); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var30); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var31); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var38 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var41 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var42); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var45 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var47 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var52); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var53 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var54); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var57); + + // Regression assertion (captures the current behavior of the code) + assertNull(var58); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var61 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var64 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var68 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var69 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var70); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var71); + + } + + public void test66() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test66"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + boolean var5 = javax.swing.JComponent.isLightweightComponent((java.awt.Component)var0); + var0.removeAll(); + java.awt.Component.BaselineResizeBehavior var7 = var0.getBaselineResizeBehavior(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + boolean var12 = var8.isDoubleBuffered(); + var8.list(); + SpaceWar.SpacePanel var14 = new SpaceWar.SpacePanel(); + float var15 = var14.getAlignmentX(); + var14.setVisible(false); + boolean var18 = var14.isDoubleBuffered(); + java.awt.dnd.DropTarget var19 = var14.getDropTarget(); + var14.show(false); + java.awt.Rectangle var22 = var14.getVisibleRect(); + java.awt.image.BufferedImage var24 = var14.loadImg("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + boolean var25 = var8.isAncestorOf((java.awt.Component)var14); + javax.swing.InputVerifier var26 = var14.getInputVerifier(); + java.awt.Dimension var27 = var14.minimumSize(); + var0.addKeyListener((java.awt.event.KeyListener)var14); + SpaceWar.SpacePanel var29 = new SpaceWar.SpacePanel(); + float var30 = var29.getAlignmentX(); + var29.setVisible(false); + SpaceWar.SpacePanel var33 = new SpaceWar.SpacePanel(); + java.awt.Color var34 = var33.getBackground(); + var29.setForeground(var34); + SpaceWar.SpacePanel var36 = new SpaceWar.SpacePanel(); + float var37 = var36.getAlignmentX(); + var36.setVisible(false); + boolean var40 = var36.isDoubleBuffered(); + java.awt.dnd.DropTarget var41 = var36.getDropTarget(); + var36.show(false); + java.awt.Rectangle var44 = var36.getVisibleRect(); + var29.repaint(var44); + java.awt.FocusTraversalPolicy var46 = var29.getFocusTraversalPolicy(); + java.awt.im.InputMethodRequests var47 = var29.getInputMethodRequests(); + var29.layout(); + java.awt.Container var49 = var29.getFocusCycleRootAncestor(); + SpaceWar.SpacePanel var50 = new SpaceWar.SpacePanel(); + float var51 = var50.getAlignmentX(); + var50.setVisible(false); + boolean var54 = var50.isDoubleBuffered(); + var50.list(); + SpaceWar.SpacePanel var56 = new SpaceWar.SpacePanel(); + float var57 = var56.getAlignmentX(); + var56.setVisible(false); + boolean var60 = var56.isDoubleBuffered(); + java.awt.dnd.DropTarget var61 = var56.getDropTarget(); + var56.show(false); + java.awt.Rectangle var64 = var56.getVisibleRect(); + java.awt.Rectangle var65 = var50.getBounds(var64); + javax.swing.JToolTip var66 = var50.createToolTip(); + var50.firePropertyChange("", false, false); + var50.validate(); + SpaceWar.SpacePanel var72 = new SpaceWar.SpacePanel(); + float var73 = var72.getAlignmentX(); + var72.setVisible(false); + boolean var76 = var72.isDoubleBuffered(); + java.awt.dnd.DropTarget var77 = var72.getDropTarget(); + var72.show(false); + boolean var80 = var72.isPaintingForPrint(); + SpaceWar.SpacePanel var81 = new SpaceWar.SpacePanel(); + float var82 = var81.getAlignmentX(); + var81.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var87 = var81.getMouseListeners(); + int var88 = var81.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var89 = var81.getInputMethodRequests(); + var72.addKeyListener((java.awt.event.KeyListener)var81); + var81.repaint(); + java.awt.Point var92 = var81.location(); + java.awt.Component var93 = var50.getComponentAt(var92); + var29.setLocation(var92); + java.awt.Component var95 = var0.findComponentAt(var92); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var27); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var30 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var34); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var40 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var41); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var44); + + // Regression assertion (captures the current behavior of the code) + assertNull(var46); + + // Regression assertion (captures the current behavior of the code) + assertNull(var47); + + // Regression assertion (captures the current behavior of the code) + assertNull(var49); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var51 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var54 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var57 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var60 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var61); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var64); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var65); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var66); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var73 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var76 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var77); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var80 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var82 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var87); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var88 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var89); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var92); + + // Regression assertion (captures the current behavior of the code) + assertNull(var93); + + // Regression assertion (captures the current behavior of the code) + assertNull(var95); + + } + + public void test67() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test67"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + SpaceWar.SpacePanel var5 = new SpaceWar.SpacePanel(); + float var6 = var5.getAlignmentX(); + var5.setVisible(false); + var5.nextFocus(); + var5.reshape((-1), 1, (-1), 10); + var5.disable(); + boolean var16 = var5.isFocusable(); + int var17 = var5.getHeight(); + var0.setNextFocusableComponent((java.awt.Component)var5); + boolean var19 = var0.isMinimumSizeSet(); + // The following exception was thrown during execution. + // This behavior will recorded for regression testing. + try { + boolean var21 = var0.areFocusTraversalKeysSet(499); + fail("Expected exception of type java.lang.IllegalArgumentException"); + } catch (java.lang.IllegalArgumentException e) { + // Expected exception. + } + + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == 10); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == false); + + } + + public void test68() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test68"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + java.awt.Dimension var4 = var0.getPreferredSize(); + java.awt.Toolkit var5 = var0.getToolkit(); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + var6.setName(""); + int var9 = var6.getX(); + SpaceWar.SpacePanel var10 = new SpaceWar.SpacePanel(); + float var11 = var10.getAlignmentX(); + var10.setVisible(false); + var10.nextFocus(); + SpaceWar.SpacePanel var15 = new SpaceWar.SpacePanel(); + float var16 = var15.getAlignmentX(); + var15.setVisible(false); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + java.awt.Color var20 = var19.getBackground(); + var15.setForeground(var20); + var10.setBackground(var20); + var6.setBackground(var20); + var0.setForeground(var20); + SpaceWar.SpacePanel var25 = new SpaceWar.SpacePanel(); + float var26 = var25.getAlignmentX(); + var25.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var31 = new SpaceWar.SpacePanel(); + float var32 = var31.getAlignmentX(); + var31.setVisible(false); + java.awt.Dimension var35 = var31.getPreferredSize(); + var25.setMaximumSize(var35); + boolean var37 = var25.getVerifyInputWhenFocusTarget(); + javax.accessibility.AccessibleContext var38 = var25.getAccessibleContext(); + boolean var39 = var25.isDoubleBuffered(); + java.awt.Rectangle var40 = var25.getVisibleRect(); + var0.scrollRectToVisible(var40); + SpaceWar.SpacePanel var42 = new SpaceWar.SpacePanel(); + float var43 = var42.getAlignmentX(); + var42.setVisible(false); + java.awt.Dimension var46 = var42.getPreferredSize(); + java.awt.Toolkit var47 = var42.getToolkit(); + SpaceWar.SpacePanel var48 = new SpaceWar.SpacePanel(); + var48.setName(""); + int var51 = var48.getX(); + SpaceWar.SpacePanel var52 = new SpaceWar.SpacePanel(); + float var53 = var52.getAlignmentX(); + var52.setVisible(false); + var52.nextFocus(); + SpaceWar.SpacePanel var57 = new SpaceWar.SpacePanel(); + float var58 = var57.getAlignmentX(); + var57.setVisible(false); + SpaceWar.SpacePanel var61 = new SpaceWar.SpacePanel(); + java.awt.Color var62 = var61.getBackground(); + var57.setForeground(var62); + var52.setBackground(var62); + var48.setBackground(var62); + var42.setForeground(var62); + SpaceWar.SpacePanel var67 = new SpaceWar.SpacePanel(); + float var68 = var67.getAlignmentX(); + var67.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var73 = new SpaceWar.SpacePanel(); + float var74 = var73.getAlignmentX(); + var73.setVisible(false); + java.awt.Dimension var77 = var73.getPreferredSize(); + var67.setMaximumSize(var77); + boolean var79 = var67.getVerifyInputWhenFocusTarget(); + javax.accessibility.AccessibleContext var80 = var67.getAccessibleContext(); + boolean var81 = var67.isDoubleBuffered(); + java.awt.Rectangle var82 = var67.getVisibleRect(); + var42.scrollRectToVisible(var82); + var0.removeKeyListener((java.awt.event.KeyListener)var42); + var42.firePropertyChange("PanelUI", (short)1, (short)1); + java.lang.String var89 = var42.getToolTipText(); + int var90 = var42.getDebugGraphicsOptions(); + var42.transferFocusUpCycle(); + java.awt.Point var92 = var42.location(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var4); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var32 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var35); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var38); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var39 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var40); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var43 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var46); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var47); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var51 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var53 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var58 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var62); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var68 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var74 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var77); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var79 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var80); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var81 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var82); + + // Regression assertion (captures the current behavior of the code) + assertNull(var89); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var90 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var92); + + } + + public void test69() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test69"); + + + SpaceWar.Player var0 = new SpaceWar.Player(); + boolean var1 = var0.isRecovering(); + var0.loseLife(); + int var3 = var0.getR(); + var0.loseLife(); + java.awt.image.BufferedImage var6 = var0.loadImg("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + boolean var7 = var0.isDead(); + var0.setScore(3); + java.awt.image.BufferedImage var11 = var0.loadImg("SpaceWar.SpacePanel[,0,0,0x0,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + var0.loseLife(); + var0.loseLife(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == 25); + + // Regression assertion (captures the current behavior of the code) + assertNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var11); + + } + + public void test70() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test70"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + java.awt.im.InputMethodRequests var3 = var0.getInputMethodRequests(); + int var4 = var0.countComponents(); + java.awt.event.ComponentListener[] var5 = var0.getComponentListeners(); + var0.removeNotify(); + javax.swing.InputMap var7 = var0.getInputMap(); + int var8 = var0.getDebugGraphicsOptions(); + java.awt.Graphics var9 = var0.getGraphics(); + var0.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", (short)(-1), (short)100); + boolean var14 = var0.isEnabled(); + boolean var16 = var0.areFocusTraversalKeysSet(3); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var9); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == false); + + } + + public void test71() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test71"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + boolean var2 = var0.hasFocus(); + boolean var3 = var0.isPreferredSizeSet(); + var0.firePropertyChange("", (short)1, (short)0); + boolean var8 = var0.isMaximumSizeSet(); + java.awt.image.ColorModel var9 = var0.getColorModel(); + var0.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", (byte)10, (byte)0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var2 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var9); + + } + + public void test72() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test72"); + + + SpaceWar.Player var0 = new SpaceWar.Player(); + boolean var1 = var0.isRecovering(); + int var2 = var0.getRequiredPower(); + var0.increasePower(25); + int var5 = var0.getScore(); + int var6 = var0.getR(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var2 == 1); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == 25); + + } + + public void test73() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test73"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + var0.show(false); + boolean var8 = var0.isPaintingForPrint(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var15 = var9.getMouseListeners(); + int var16 = var9.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var17 = var9.getInputMethodRequests(); + var0.addKeyListener((java.awt.event.KeyListener)var9); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + float var20 = var19.getAlignmentX(); + var19.setVisible(false); + boolean var23 = var19.isDoubleBuffered(); + var19.list(); + float var25 = var19.getAlignmentY(); + boolean var26 = var9.isFocusCycleRoot((java.awt.Container)var19); + javax.swing.JPopupMenu var27 = var19.getComponentPopupMenu(); + var19.move((-1), 100); + var19.validate(); + java.awt.Toolkit var32 = var19.getToolkit(); + SpaceWar.SpacePanel var33 = new SpaceWar.SpacePanel(); + float var34 = var33.getAlignmentX(); + var33.setVisible(false); + boolean var37 = var33.isDoubleBuffered(); + SpaceWar.SpacePanel var38 = new SpaceWar.SpacePanel(); + java.awt.Color var39 = var38.getBackground(); + var38.repaint(); + java.lang.Object var41 = var33.getClientProperty((java.lang.Object)var38); + var38.repaint(10, 1, 25, 0); + var19.removeKeyListener((java.awt.event.KeyListener)var38); + boolean var48 = var38.isDoubleBuffered(); + int var51 = var38.getBaseline(24, 10); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var27); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var32); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var34 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var39); + + // Regression assertion (captures the current behavior of the code) + assertNull(var41); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var48 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var51 == (-1)); + + } + + public void test74() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test74"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.reshape((-1), 1, (-1), 10); + var0.disable(); + var0.show(); + SpaceWar.SpacePanel var12 = new SpaceWar.SpacePanel(); + float var13 = var12.getAlignmentX(); + var12.setVisible(false); + boolean var16 = var12.isDoubleBuffered(); + var12.list(); + SpaceWar.SpacePanel var18 = new SpaceWar.SpacePanel(); + float var19 = var18.getAlignmentX(); + var18.setVisible(false); + boolean var22 = var18.isDoubleBuffered(); + java.awt.dnd.DropTarget var23 = var18.getDropTarget(); + var18.show(false); + java.awt.Rectangle var26 = var18.getVisibleRect(); + java.awt.Rectangle var27 = var12.getBounds(var26); + javax.swing.JToolTip var28 = var12.createToolTip(); + var12.firePropertyChange("", false, false); + var12.validate(); + SpaceWar.SpacePanel var34 = new SpaceWar.SpacePanel(); + float var35 = var34.getAlignmentX(); + var34.setVisible(false); + boolean var38 = var34.isDoubleBuffered(); + java.awt.dnd.DropTarget var39 = var34.getDropTarget(); + var34.show(false); + boolean var42 = var34.isPaintingForPrint(); + SpaceWar.SpacePanel var43 = new SpaceWar.SpacePanel(); + float var44 = var43.getAlignmentX(); + var43.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var49 = var43.getMouseListeners(); + int var50 = var43.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var51 = var43.getInputMethodRequests(); + var34.addKeyListener((java.awt.event.KeyListener)var43); + var43.repaint(); + java.awt.Point var54 = var43.location(); + java.awt.Component var55 = var12.getComponentAt(var54); + java.awt.Point var56 = var0.getLocation(var54); + var0.setAlignmentY(0.5f); + boolean var59 = var0.getVerifyInputWhenFocusTarget(); + var0.invalidate(); + SpaceWar.SpacePanel var62 = new SpaceWar.SpacePanel(); + float var63 = var62.getAlignmentX(); + var62.setVisible(false); + SpaceWar.SpacePanel var66 = new SpaceWar.SpacePanel(); + java.awt.Color var67 = var66.getBackground(); + var62.setForeground(var67); + javax.swing.InputMap var69 = var62.getInputMap(); + // The following exception was thrown during execution. + // This behavior will recorded for regression testing. + try { + var0.setInputMap(3, var69); + fail("Expected exception of type java.lang.IllegalArgumentException"); + } catch (java.lang.IllegalArgumentException e) { + // Expected exception. + } + + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var22 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var23); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var27); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var28); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var35 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var38 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var39); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var42 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var44 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var49); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var50 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var51); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var54); + + // Regression assertion (captures the current behavior of the code) + assertNull(var55); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var56); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var59 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var63 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var67); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var69); + + } + + public void test75() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test75"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + var0.list(); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + float var7 = var6.getAlignmentX(); + var6.setVisible(false); + boolean var10 = var6.isDoubleBuffered(); + java.awt.dnd.DropTarget var11 = var6.getDropTarget(); + var6.show(false); + java.awt.Rectangle var14 = var6.getVisibleRect(); + java.awt.Rectangle var15 = var0.getBounds(var14); + javax.swing.JToolTip var16 = var0.createToolTip(); + var0.firePropertyChange("", false, false); + var0.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", (-1L), (-1L)); + var0.validate(); + boolean var26 = var0.isForegroundSet(); + int var27 = var0.getX(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == 0); + + } + + public void test76() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test76"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + var0.list(); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + float var7 = var6.getAlignmentX(); + var6.setVisible(false); + boolean var10 = var6.isDoubleBuffered(); + java.awt.dnd.DropTarget var11 = var6.getDropTarget(); + var6.show(false); + java.awt.Rectangle var14 = var6.getVisibleRect(); + java.awt.Rectangle var15 = var0.getBounds(var14); + javax.swing.JToolTip var16 = var0.createToolTip(); + java.awt.Graphics var17 = var0.getGraphics(); + var0.setAutoscrolls(false); + boolean var20 = var0.requestFocusInWindow(); + SpaceWar.SpacePanel var21 = new SpaceWar.SpacePanel(); + float var22 = var21.getAlignmentX(); + var21.setVisible(false); + var21.nextFocus(); + var21.reshape((-1), 1, (-1), 10); + var21.disable(); + java.awt.LayoutManager var32 = var21.getLayout(); + java.awt.Container var33 = var21.getParent(); + boolean var34 = var21.isOptimizedDrawingEnabled(); + java.awt.Font var35 = var21.getFont(); + java.awt.FontMetrics var36 = var0.getFontMetrics(var35); + javax.swing.InputMap var37 = var0.getInputMap(); + java.awt.Toolkit var38 = var0.getToolkit(); + java.awt.Dimension var39 = var0.getPreferredSize(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var22 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var32); + + // Regression assertion (captures the current behavior of the code) + assertNull(var33); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var34 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var35); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var36); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var37); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var38); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var39); + + } + + public void test77() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test77"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var6 = var0.getMouseListeners(); + int var7 = var0.getDebugGraphicsOptions(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + boolean var12 = var8.isDoubleBuffered(); + java.awt.dnd.DropTarget var13 = var8.getDropTarget(); + var8.show(false); + java.awt.Rectangle var16 = var8.getVisibleRect(); + var0.paintImmediately(var16); + boolean var18 = var0.isBackgroundSet(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == true); + + } + + public void test78() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test78"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var1 = new SpaceWar.SpacePanel(); + java.awt.Color var2 = var1.getBackground(); + SpaceWar.SpacePanel var3 = new SpaceWar.SpacePanel(); + float var4 = var3.getAlignmentX(); + var3.setVisible(false); + var3.nextFocus(); + var3.updateUI(); + var3.enableInputMethods(true); + var0.add((java.awt.Component)var1, (java.lang.Object)true); + java.awt.Image var14 = var1.createImage(1, (-1)); + java.awt.event.MouseListener[] var15 = var1.getMouseListeners(); + java.awt.Color var16 = var1.getBackground(); + boolean var17 = var1.getIgnoreRepaint(); + var1.enable(); + javax.swing.JToolTip var19 = var1.createToolTip(); + java.awt.Rectangle var20 = var19.bounds(); + var19.setBounds(3, 25, 24, 499); + java.beans.VetoableChangeListener[] var26 = var19.getVetoableChangeListeners(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var2); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var26); + + } + + public void test79() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test79"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + float var7 = var6.getAlignmentX(); + var6.setVisible(false); + java.awt.Dimension var10 = var6.getPreferredSize(); + var0.setMaximumSize(var10); + boolean var12 = var0.getVerifyInputWhenFocusTarget(); + boolean var13 = var0.isFontSet(); + boolean var14 = var0.getIgnoreRepaint(); + java.awt.Component var17 = var0.locate(1, 25); + java.awt.Dimension var18 = var0.getMinimumSize(); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + float var20 = var19.getAlignmentX(); + var19.setVisible(false); + boolean var23 = var19.isDoubleBuffered(); + java.awt.dnd.DropTarget var24 = var19.getDropTarget(); + var19.show(false); + java.awt.Rectangle var27 = var19.getVisibleRect(); + boolean var28 = var19.isFocusTraversalPolicySet(); + SpaceWar.SpacePanel var29 = new SpaceWar.SpacePanel(); + float var30 = var29.getAlignmentX(); + var29.setVisible(false); + boolean var33 = var29.isDoubleBuffered(); + var29.enable(false); + boolean var36 = var29.getFocusTraversalKeysEnabled(); + SpaceWar.SpacePanel var37 = new SpaceWar.SpacePanel(); + float var38 = var37.getAlignmentX(); + var37.setVisible(false); + java.awt.Dimension var41 = var37.getPreferredSize(); + java.awt.Toolkit var42 = var37.getToolkit(); + boolean var43 = var37.isFocusable(); + javax.swing.KeyStroke[] var44 = var37.getRegisteredKeyStrokes(); + SpaceWar.SpacePanel var45 = new SpaceWar.SpacePanel(); + float var46 = var45.getAlignmentX(); + SpaceWar.SpacePanel var47 = new SpaceWar.SpacePanel(); + float var48 = var47.getAlignmentX(); + var47.setVisible(false); + java.awt.Dimension var51 = var47.getPreferredSize(); + boolean var52 = var47.getVerifyInputWhenFocusTarget(); + java.awt.Component var55 = var47.findComponentAt(10, 1); + var45.addKeyListener((java.awt.event.KeyListener)var47); + var47.repaint(100, (-1), (-1), 1); + boolean var62 = var37.isAncestorOf((java.awt.Component)var47); + var29.addKeyListener((java.awt.event.KeyListener)var47); + java.util.Locale var64 = var47.getLocale(); + var19.setLocale(var64); + javax.swing.JComponent.setDefaultLocale(var64); + var0.setLocale(var64); + var0.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", 'a', '#'); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var27); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var28 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var30 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var33 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var36 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var38 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var41); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var42); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var43 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var44); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var46 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var48 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var51); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var52 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var55); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var62 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var64); + + } + + public void test80() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test80"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + var0.show(false); + boolean var8 = var0.isPaintingForPrint(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var15 = var9.getMouseListeners(); + int var16 = var9.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var17 = var9.getInputMethodRequests(); + var0.addKeyListener((java.awt.event.KeyListener)var9); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + float var20 = var19.getAlignmentX(); + var19.setVisible(false); + boolean var23 = var19.isDoubleBuffered(); + var19.list(); + float var25 = var19.getAlignmentY(); + boolean var26 = var9.isFocusCycleRoot((java.awt.Container)var19); + var19.firePropertyChange("", 1L, 1L); + var19.setVerifyInputWhenFocusTarget(true); + var19.resize(25, 400); + java.awt.event.ComponentListener[] var36 = var19.getComponentListeners(); + boolean var37 = var19.isBackgroundSet(); + boolean var38 = var19.isFontSet(); + boolean var39 = var19.getIgnoreRepaint(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var36); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var38 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var39 == false); + + } + + public void test81() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test81"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var1 = new SpaceWar.SpacePanel(); + java.awt.Color var2 = var1.getBackground(); + SpaceWar.SpacePanel var3 = new SpaceWar.SpacePanel(); + float var4 = var3.getAlignmentX(); + var3.setVisible(false); + var3.nextFocus(); + var3.updateUI(); + var3.enableInputMethods(true); + var0.add((java.awt.Component)var1, (java.lang.Object)true); + java.awt.Dimension var12 = var1.getPreferredSize(); + java.awt.Component[] var13 = var1.getComponents(); + var1.repaint(25, 25, 100, 1); + javax.swing.KeyStroke[] var19 = var1.getRegisteredKeyStrokes(); + var1.validate(); + boolean var21 = var1.isForegroundSet(); + SpaceWar.SpacePanel var22 = new SpaceWar.SpacePanel(); + float var23 = var22.getAlignmentX(); + var22.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var28 = new SpaceWar.SpacePanel(); + float var29 = var28.getAlignmentX(); + var28.setVisible(false); + java.awt.Dimension var32 = var28.getPreferredSize(); + var22.setMaximumSize(var32); + boolean var34 = var22.getVerifyInputWhenFocusTarget(); + boolean var35 = var22.isFontSet(); + boolean var36 = var22.getIgnoreRepaint(); + java.awt.Component var39 = var22.locate(1, 25); + java.awt.dnd.DropTarget var40 = var22.getDropTarget(); + boolean var41 = var1.isAncestorOf((java.awt.Component)var22); + // The following exception was thrown during execution. + // This behavior will recorded for regression testing. + try { + java.util.Set var43 = var22.getFocusTraversalKeys(25); + fail("Expected exception of type java.lang.IllegalArgumentException"); + } catch (java.lang.IllegalArgumentException e) { + // Expected exception. + } + + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var2); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var29 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var32); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var34 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var35 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var36 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var39); + + // Regression assertion (captures the current behavior of the code) + assertNull(var40); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var41 == false); + + } + + public void test82() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test82"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + SpaceWar.SpacePanel var4 = new SpaceWar.SpacePanel(); + java.awt.Color var5 = var4.getBackground(); + var0.setForeground(var5); + SpaceWar.SpacePanel var7 = new SpaceWar.SpacePanel(); + float var8 = var7.getAlignmentX(); + var7.setVisible(false); + boolean var11 = var7.isDoubleBuffered(); + java.awt.dnd.DropTarget var12 = var7.getDropTarget(); + var7.show(false); + java.awt.Rectangle var15 = var7.getVisibleRect(); + var0.repaint(var15); + java.awt.FocusTraversalPolicy var17 = var0.getFocusTraversalPolicy(); + var0.resetKeyboardActions(); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + float var20 = var19.getAlignmentX(); + var19.setVisible(false); + boolean var23 = var19.isDoubleBuffered(); + java.awt.dnd.DropTarget var24 = var19.getDropTarget(); + var19.show(false); + java.awt.Rectangle var27 = var19.getVisibleRect(); + var0.computeVisibleRect(var27); + var0.reshape(24, 3, 1, 0); + SpaceWar.SpacePanel var35 = new SpaceWar.SpacePanel(); + java.awt.Color var36 = var35.getBackground(); + var35.repaint(); + java.awt.im.InputMethodRequests var38 = var35.getInputMethodRequests(); + var35.setDoubleBuffered(true); + var35.setInheritsPopupMenu(false); + javax.swing.plaf.PanelUI var43 = var35.getUI(); + java.util.Set var45 = var35.getFocusTraversalKeys(3); + // The following exception was thrown during execution. + // This behavior will recorded for regression testing. + try { + var0.setFocusTraversalKeys(100, var45); + fail("Expected exception of type java.lang.IllegalArgumentException"); + } catch (java.lang.IllegalArgumentException e) { + // Expected exception. + } + + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var27); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var36); + + // Regression assertion (captures the current behavior of the code) + assertNull(var38); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var43); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var45); + + } + + public void test83() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test83"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var1 = new SpaceWar.SpacePanel(); + java.awt.Color var2 = var1.getBackground(); + SpaceWar.SpacePanel var3 = new SpaceWar.SpacePanel(); + float var4 = var3.getAlignmentX(); + var3.setVisible(false); + var3.nextFocus(); + var3.updateUI(); + var3.enableInputMethods(true); + var0.add((java.awt.Component)var1, (java.lang.Object)true); + boolean var13 = var1.areFocusTraversalKeysSet(0); + SpaceWar.SpacePanel var14 = new SpaceWar.SpacePanel(); + float var15 = var14.getAlignmentX(); + var14.setVisible(false); + SpaceWar.SpacePanel var18 = new SpaceWar.SpacePanel(); + java.awt.Color var19 = var18.getBackground(); + var14.setForeground(var19); + SpaceWar.SpacePanel var21 = new SpaceWar.SpacePanel(); + float var22 = var21.getAlignmentX(); + var21.setVisible(false); + boolean var25 = var21.isDoubleBuffered(); + java.awt.dnd.DropTarget var26 = var21.getDropTarget(); + var21.show(false); + java.awt.Rectangle var29 = var21.getVisibleRect(); + var14.repaint(var29); + java.awt.FocusTraversalPolicy var31 = var14.getFocusTraversalPolicy(); + SpaceWar.SpacePanel var32 = new SpaceWar.SpacePanel(); + float var33 = var32.getAlignmentX(); + var32.firePropertyChange("", (-1), 1); + boolean var38 = var32.isFocusOwner(); + SpaceWar.SpacePanel var40 = new SpaceWar.SpacePanel(); + float var41 = var40.getAlignmentX(); + var40.setVisible(false); + java.awt.Dimension var44 = var40.getPreferredSize(); + java.awt.Toolkit var45 = var40.getToolkit(); + SpaceWar.SpacePanel var46 = new SpaceWar.SpacePanel(); + var46.setName(""); + int var49 = var46.getX(); + SpaceWar.SpacePanel var50 = new SpaceWar.SpacePanel(); + float var51 = var50.getAlignmentX(); + var50.setVisible(false); + var50.nextFocus(); + SpaceWar.SpacePanel var55 = new SpaceWar.SpacePanel(); + float var56 = var55.getAlignmentX(); + var55.setVisible(false); + SpaceWar.SpacePanel var59 = new SpaceWar.SpacePanel(); + java.awt.Color var60 = var59.getBackground(); + var55.setForeground(var60); + var50.setBackground(var60); + var46.setBackground(var60); + var40.setForeground(var60); + var32.putClientProperty((java.lang.Object)(byte)100, (java.lang.Object)var60); + var14.setBackground(var60); + SpaceWar.SpacePanel var67 = new SpaceWar.SpacePanel(); + float var68 = var67.getAlignmentX(); + var67.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var73 = new SpaceWar.SpacePanel(); + float var74 = var73.getAlignmentX(); + var73.setVisible(false); + SpaceWar.SpacePanel var77 = new SpaceWar.SpacePanel(); + java.awt.Color var78 = var77.getBackground(); + var73.setForeground(var78); + var67.setBackground(var78); + java.awt.Point var81 = var67.location(); + java.awt.Point var82 = var14.getLocation(var81); + boolean var83 = var1.contains(var82); + java.awt.event.InputMethodListener[] var84 = var1.getInputMethodListeners(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var2); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var22 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var29); + + // Regression assertion (captures the current behavior of the code) + assertNull(var31); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var33 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var38 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var41 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var44); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var45); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var49 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var51 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var56 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var60); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var68 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var74 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var78); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var81); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var82); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var83 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var84); + + } + + public void test84() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test84"); + + + SpaceWar.Player var0 = new SpaceWar.Player(); + var0.loseLife(); + var0.loseLife(); + + } + + public void test85() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test85"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + var0.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + javax.swing.plaf.PanelUI var5 = var0.getUI(); + boolean var6 = var0.isDisplayable(); + SpaceWar.SpacePanel var7 = new SpaceWar.SpacePanel(); + float var8 = var7.getAlignmentX(); + var7.removeNotify(); + SpaceWar.SpacePanel var10 = new SpaceWar.SpacePanel(); + float var11 = var10.getAlignmentX(); + var10.setVisible(false); + boolean var14 = var10.isDoubleBuffered(); + var10.list(); + float var16 = var10.getAlignmentY(); + java.awt.Insets var17 = var10.getInsets(); + java.awt.Insets var18 = var7.getInsets(var17); + java.awt.Insets var19 = var0.getInsets(var18); + SpaceWar.SpacePanel var20 = new SpaceWar.SpacePanel(); + float var21 = var20.getAlignmentX(); + var20.setVisible(false); + boolean var24 = var20.isDoubleBuffered(); + var20.list(); + SpaceWar.SpacePanel var26 = new SpaceWar.SpacePanel(); + float var27 = var26.getAlignmentX(); + var26.setVisible(false); + boolean var30 = var26.isDoubleBuffered(); + java.awt.dnd.DropTarget var31 = var26.getDropTarget(); + var26.show(false); + java.awt.Rectangle var34 = var26.getVisibleRect(); + java.awt.Rectangle var35 = var20.getBounds(var34); + javax.swing.JToolTip var36 = var20.createToolTip(); + java.awt.Dimension var37 = var20.minimumSize(); + SpaceWar.SpacePanel var38 = new SpaceWar.SpacePanel(); + float var39 = var38.getAlignmentX(); + var38.setVisible(false); + var38.setInheritsPopupMenu(false); + var38.setFocusTraversalPolicyProvider(true); + java.awt.Container var46 = var38.getFocusCycleRootAncestor(); + SpaceWar.SpacePanel var47 = new SpaceWar.SpacePanel(); + float var48 = var47.getAlignmentX(); + var47.removeNotify(); + SpaceWar.SpacePanel var50 = new SpaceWar.SpacePanel(); + float var51 = var50.getAlignmentX(); + var50.setVisible(false); + boolean var54 = var50.isDoubleBuffered(); + var50.list(); + float var56 = var50.getAlignmentY(); + java.awt.Insets var57 = var50.getInsets(); + java.awt.Insets var58 = var47.getInsets(var57); + java.awt.Insets var59 = var38.getInsets(var58); + java.awt.Insets var60 = var20.getInsets(var58); + var20.setFocusCycleRoot(true); + SpaceWar.SpacePanel var63 = new SpaceWar.SpacePanel(); + java.awt.Color var64 = var63.getBackground(); + var63.repaint(); + java.awt.im.InputMethodRequests var66 = var63.getInputMethodRequests(); + int var67 = var63.countComponents(); + java.awt.Dimension var68 = var63.getSize(); + SpaceWar.SpacePanel var69 = new SpaceWar.SpacePanel(); + var69.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + javax.swing.plaf.PanelUI var74 = var69.getUI(); + java.awt.Color var75 = var69.getBackground(); + var63.setBackground(var75); + var20.setForeground(var75); + var0.setForeground(var75); + // The following exception was thrown during execution. + // This behavior will recorded for regression testing. + try { + java.util.Set var80 = var0.getFocusTraversalKeys(499); + fail("Expected exception of type java.lang.IllegalArgumentException"); + } catch (java.lang.IllegalArgumentException e) { + // Expected exception. + } + + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var24 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var30 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var31); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var34); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var35); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var36); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var37); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var39 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNull(var46); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var48 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var51 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var54 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var56 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var57); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var58); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var59); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var60); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var64); + + // Regression assertion (captures the current behavior of the code) + assertNull(var66); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var67 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var68); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var74); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var75); + + } + + public void test86() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test86"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + var0.show(false); + java.awt.Rectangle var8 = var0.getVisibleRect(); + java.awt.Toolkit var9 = var0.getToolkit(); + SpaceWar.SpacePanel var10 = new SpaceWar.SpacePanel(); + float var11 = var10.getAlignmentX(); + var10.setVisible(false); + boolean var14 = var10.isDoubleBuffered(); + var10.list(); + SpaceWar.SpacePanel var16 = new SpaceWar.SpacePanel(); + float var17 = var16.getAlignmentX(); + var16.setVisible(false); + boolean var20 = var16.isDoubleBuffered(); + java.awt.dnd.DropTarget var21 = var16.getDropTarget(); + var16.show(false); + java.awt.Rectangle var24 = var16.getVisibleRect(); + java.awt.Rectangle var25 = var10.getBounds(var24); + javax.swing.JToolTip var26 = var10.createToolTip(); + var10.firePropertyChange("", false, false); + var10.validate(); + SpaceWar.SpacePanel var32 = new SpaceWar.SpacePanel(); + float var33 = var32.getAlignmentX(); + var32.setVisible(false); + var32.nextFocus(); + var32.updateUI(); + var32.enableInputMethods(true); + java.lang.String var40 = var32.toString(); + var0.putClientProperty((java.lang.Object)var10, (java.lang.Object)var32); + SpaceWar.SpacePanel var42 = new SpaceWar.SpacePanel(); + float var43 = var42.getAlignmentX(); + var42.setVisible(false); + var42.setDoubleBuffered(true); + var42.repaint(0, 500, 2, 24); + java.awt.Cursor var53 = var42.getCursor(); + var10.setCursor(var53); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var9); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var21); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var25); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var33 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var40 + "' != '" + "SpaceWar.SpacePanel[,0,0,0var40,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"+ "'", var40.equals("SpaceWar.SpacePanel[,0,0,0var40,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]")); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var43 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var53); + + } + + public void test87() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test87"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.updateUI(); + var0.enableInputMethods(true); + java.lang.String var8 = var0.toString(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.setVisible(false); + boolean var13 = var9.isDoubleBuffered(); + java.awt.dnd.DropTarget var14 = var9.getDropTarget(); + var9.show(false); + java.awt.Rectangle var17 = var9.getVisibleRect(); + java.awt.image.BufferedImage var19 = var9.loadImg("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + java.awt.ComponentOrientation var20 = var9.getComponentOrientation(); + boolean var21 = var9.isPaintingTile(); + boolean var22 = var9.isOptimizedDrawingEnabled(); + int var23 = var0.getComponentZOrder((java.awt.Component)var9); + javax.swing.InputMap var24 = var9.getInputMap(); + java.awt.event.HierarchyListener[] var25 = var9.getHierarchyListeners(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var8 + "' != '" + "SpaceWar.SpacePanel[,0,0,0var8,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"+ "'", var8.equals("SpaceWar.SpacePanel[,0,0,0var8,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]")); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var22 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == (-1)); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var25); + + } + + public void test88() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test88"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.repaint(1L); + SpaceWar.SpacePanel var7 = new SpaceWar.SpacePanel(); + float var8 = var7.getAlignmentX(); + var7.setVisible(false); + boolean var11 = var7.isDoubleBuffered(); + var7.list(); + SpaceWar.SpacePanel var13 = new SpaceWar.SpacePanel(); + float var14 = var13.getAlignmentX(); + var13.setVisible(false); + boolean var17 = var13.isDoubleBuffered(); + java.awt.dnd.DropTarget var18 = var13.getDropTarget(); + var13.show(false); + java.awt.Rectangle var21 = var13.getVisibleRect(); + java.awt.Rectangle var22 = var7.getBounds(var21); + var0.setBounds(var22); + var0.resize(1, 25); + java.awt.Graphics var27 = var0.getGraphics(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var21); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertNull(var27); + + } + + public void test89() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test89"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + java.awt.Point var6 = var0.getMousePosition(); + java.lang.String var7 = var0.getUIClassID(); + var0.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", '#', '4'); + javax.accessibility.AccessibleContext var12 = var0.getAccessibleContext(); + var0.setEnabled(true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var7 + "' != '" + "PanelUI"+ "'", var7.equals("PanelUI")); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var12); + + } + + public void test90() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test90"); + + + SpaceWar.Player var0 = new SpaceWar.Player(); + int var1 = var0.getR(); + var0.setUp(false); + int var4 = var0.getLives(); + var0.setScore(0); + int var7 = var0.getPowerLevel(); + int var8 = var0.getR(); + int var9 = var0.getLives(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 25); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 3); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 25); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 3); + + } + + public void test91() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test91"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.reshape((-1), 1, (-1), 10); + var0.disable(); + java.awt.LayoutManager var11 = var0.getLayout(); + boolean var14 = var0.contains((-1), 0); + SpaceWar.SpacePanel var15 = new SpaceWar.SpacePanel(); + float var16 = var15.getAlignmentX(); + var15.setVisible(false); + var15.nextFocus(); + var15.updateUI(); + var15.enableInputMethods(true); + var15.setSize((-1), 1); + java.awt.Component var26 = var0.add((java.awt.Component)var15); + var15.nextFocus(); + boolean var28 = var15.hasFocus(); + javax.accessibility.AccessibleContext var29 = var15.getAccessibleContext(); + int var30 = var15.getComponentCount(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var28 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var29); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var30 == 0); + + } + + public void test92() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test92"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + var0.setRequestFocusEnabled(false); + var0.reshape(100, 0, 100, 0); + var0.requestFocus(); + var0.firePropertyChange("hi!", '4', ' '); + java.awt.Point var15 = var0.getLocation(); + java.awt.Dimension var16 = var0.size(); + java.awt.event.HierarchyBoundsListener[] var17 = var0.getHierarchyBoundsListeners(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var17); + + } + + public void test93() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test93"); + + + SpaceWar.Explosion var4 = new SpaceWar.Explosion(323.62099822147866d, 596.7541610319765d, 3, 100); + + } + + public void test94() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test94"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var1 = new SpaceWar.SpacePanel(); + java.awt.Color var2 = var1.getBackground(); + SpaceWar.SpacePanel var3 = new SpaceWar.SpacePanel(); + float var4 = var3.getAlignmentX(); + var3.setVisible(false); + var3.nextFocus(); + var3.updateUI(); + var3.enableInputMethods(true); + var0.add((java.awt.Component)var1, (java.lang.Object)true); + java.awt.Image var14 = var1.createImage(1, (-1)); + java.awt.event.MouseListener[] var15 = var1.getMouseListeners(); + var1.firePropertyChange("SpaceWar.SpacePanel[,-1,1,-1x10,invalid,hidden,disabled,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", 100.0d, 1.0d); + var1.setLocation(24, 3); + SpaceWar.SpacePanel var23 = new SpaceWar.SpacePanel(); + float var24 = var23.getAlignmentX(); + var23.setVisible(false); + boolean var27 = var23.isDoubleBuffered(); + java.awt.dnd.DropTarget var28 = var23.getDropTarget(); + var23.show(false); + boolean var31 = var23.isPaintingForPrint(); + SpaceWar.SpacePanel var32 = new SpaceWar.SpacePanel(); + float var33 = var32.getAlignmentX(); + var32.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var38 = var32.getMouseListeners(); + int var39 = var32.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var40 = var32.getInputMethodRequests(); + var23.addKeyListener((java.awt.event.KeyListener)var32); + SpaceWar.SpacePanel var42 = new SpaceWar.SpacePanel(); + float var43 = var42.getAlignmentX(); + var42.setVisible(false); + boolean var46 = var42.isDoubleBuffered(); + var42.list(); + float var48 = var42.getAlignmentY(); + boolean var49 = var32.isFocusCycleRoot((java.awt.Container)var42); + SpaceWar.SpacePanel var51 = new SpaceWar.SpacePanel(); + float var52 = var51.getAlignmentX(); + var51.setVisible(false); + var51.nextFocus(); + var51.updateUI(); + java.awt.Component var57 = var32.add("", (java.awt.Component)var51); + SpaceWar.SpacePanel var59 = new SpaceWar.SpacePanel(); + java.awt.Color var60 = var59.getBackground(); + var59.repaint(); + var59.setRequestFocusEnabled(false); + var59.reshape(100, 0, 100, 0); + var59.requestFocus(); + var59.firePropertyChange("hi!", '4', ' '); + java.awt.Point var74 = var59.getLocation(); + java.awt.Dimension var75 = var59.size(); + java.awt.Component var76 = var32.add("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", (java.awt.Component)var59); + java.awt.Point var77 = var76.getMousePosition(); + boolean var78 = var76.isValid(); + java.awt.Component var80 = var1.add(var76, 0); + java.awt.Cursor var81 = var80.getCursor(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var2); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var24 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var28); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var31 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var33 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var38); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var39 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var40); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var43 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var46 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var48 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var49 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var52 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var57); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var60); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var74); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var75); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var76); + + // Regression assertion (captures the current behavior of the code) + assertNull(var77); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var78 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var80); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var81); + + } + + public void test95() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test95"); + + + SpaceWar.Player var0 = new SpaceWar.Player(); + int var1 = var0.getR(); + int var2 = var0.getLives(); + var0.setUp(false); + int var5 = var0.getRequiredPower(); + int var6 = var0.getScore(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 25); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var2 == 3); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == 1); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == 0); + + } + + public void test96() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test96"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + var0.enable(false); + boolean var7 = var0.getFocusTraversalKeysEnabled(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + java.awt.Dimension var12 = var8.getPreferredSize(); + java.awt.Toolkit var13 = var8.getToolkit(); + boolean var14 = var8.isFocusable(); + javax.swing.KeyStroke[] var15 = var8.getRegisteredKeyStrokes(); + SpaceWar.SpacePanel var16 = new SpaceWar.SpacePanel(); + float var17 = var16.getAlignmentX(); + SpaceWar.SpacePanel var18 = new SpaceWar.SpacePanel(); + float var19 = var18.getAlignmentX(); + var18.setVisible(false); + java.awt.Dimension var22 = var18.getPreferredSize(); + boolean var23 = var18.getVerifyInputWhenFocusTarget(); + java.awt.Component var26 = var18.findComponentAt(10, 1); + var16.addKeyListener((java.awt.event.KeyListener)var18); + var18.repaint(100, (-1), (-1), 1); + boolean var33 = var8.isAncestorOf((java.awt.Component)var18); + var0.addKeyListener((java.awt.event.KeyListener)var18); + SpaceWar.SpacePanel var36 = new SpaceWar.SpacePanel(); + float var37 = var36.getAlignmentX(); + var36.setVisible(false); + boolean var40 = var36.isDoubleBuffered(); + java.awt.dnd.DropTarget var41 = var36.getDropTarget(); + var36.show(false); + boolean var44 = var36.isPaintingForPrint(); + SpaceWar.SpacePanel var45 = new SpaceWar.SpacePanel(); + float var46 = var45.getAlignmentX(); + var45.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var51 = var45.getMouseListeners(); + int var52 = var45.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var53 = var45.getInputMethodRequests(); + var36.addKeyListener((java.awt.event.KeyListener)var45); + SpaceWar.SpacePanel var55 = new SpaceWar.SpacePanel(); + float var56 = var55.getAlignmentX(); + var55.setVisible(false); + boolean var59 = var55.isDoubleBuffered(); + var55.list(); + float var61 = var55.getAlignmentY(); + boolean var62 = var45.isFocusCycleRoot((java.awt.Container)var55); + SpaceWar.SpacePanel var64 = new SpaceWar.SpacePanel(); + float var65 = var64.getAlignmentX(); + var64.setVisible(false); + var64.nextFocus(); + var64.updateUI(); + java.awt.Component var70 = var45.add("", (java.awt.Component)var64); + java.awt.Component var71 = var18.add("", (java.awt.Component)var64); + var18.layout(); + boolean var73 = var18.isOptimizedDrawingEnabled(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var33 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var40 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var41); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var44 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var46 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var51); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var52 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var53); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var56 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var59 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var61 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var62 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var65 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var70); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var71); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var73 == true); + + } + + public void test97() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test97"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + var0.setRequestFocusEnabled(false); + var0.reshape(100, 0, 100, 0); + java.beans.VetoableChangeListener[] var10 = var0.getVetoableChangeListeners(); + java.awt.Rectangle var11 = var0.getVisibleRect(); + SpaceWar.SpacePanel var12 = new SpaceWar.SpacePanel(); + float var13 = var12.getAlignmentX(); + var12.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var18 = var12.getUI(); + java.awt.im.InputMethodRequests var19 = var12.getInputMethodRequests(); + SpaceWar.SpacePanel var20 = new SpaceWar.SpacePanel(); + float var21 = var20.getAlignmentX(); + var20.setVisible(false); + var20.nextFocus(); + var20.updateUI(); + var20.enableInputMethods(true); + var20.setSize((-1), 1); + SpaceWar.SpacePanel var31 = new SpaceWar.SpacePanel(); + var31.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var12.add((java.awt.Component)var20, (java.lang.Object)"SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + SpaceWar.SpacePanel var37 = new SpaceWar.SpacePanel(); + var37.setName(""); + java.awt.ComponentOrientation var40 = var37.getComponentOrientation(); + var12.applyComponentOrientation(var40); + var0.applyComponentOrientation(var40); + SpaceWar.SpacePanel var43 = new SpaceWar.SpacePanel(); + float var44 = var43.getAlignmentX(); + var43.setVisible(false); + boolean var47 = var43.isDoubleBuffered(); + var43.list(); + SpaceWar.SpacePanel var49 = new SpaceWar.SpacePanel(); + float var50 = var49.getAlignmentX(); + var49.setVisible(false); + boolean var53 = var49.isDoubleBuffered(); + java.awt.dnd.DropTarget var54 = var49.getDropTarget(); + var49.show(false); + java.awt.Rectangle var57 = var49.getVisibleRect(); + java.awt.image.BufferedImage var59 = var49.loadImg("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + boolean var60 = var43.isAncestorOf((java.awt.Component)var49); + float var61 = var43.getAlignmentX(); + java.awt.image.VolatileImage var64 = var43.createVolatileImage(25, 1); + boolean var65 = var43.isPaintingForPrint(); + // The following exception was thrown during execution. + // This behavior will recorded for regression testing. + try { + var0.setComponentZOrder((java.awt.Component)var43, 25); + fail("Expected exception of type java.lang.IllegalArgumentException"); + } catch (java.lang.IllegalArgumentException e) { + // Expected exception. + } + + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var40); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var44 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var47 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var50 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var53 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var54); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var57); + + // Regression assertion (captures the current behavior of the code) + assertNull(var59); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var60 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var61 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNull(var64); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var65 == false); + + } + + public void test98() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test98"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + boolean var2 = var0.hasFocus(); + boolean var3 = var0.isPreferredSizeSet(); + var0.firePropertyChange("", (short)1, (short)0); + boolean var8 = var0.isMaximumSizeSet(); + boolean var9 = var0.getAutoscrolls(); + // The following exception was thrown during execution. + // This behavior will recorded for regression testing. + try { + boolean var11 = var0.areFocusTraversalKeysSet((-1)); + fail("Expected exception of type java.lang.IllegalArgumentException"); + } catch (java.lang.IllegalArgumentException e) { + // Expected exception. + } + + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var2 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == false); + + } + + public void test99() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test99"); + + + SpaceWar.Player var0 = new SpaceWar.Player(); + boolean var1 = var0.isRecovering(); + var0.loseLife(); + int var3 = var0.getR(); + var0.loseLife(); + java.awt.image.BufferedImage var6 = var0.loadImg("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + boolean var7 = var0.isDead(); + var0.setScore(3); + java.awt.image.BufferedImage var11 = var0.loadImg("SpaceWar.SpacePanel[,0,0,0x0,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + var0.setScore(24); + var0.loseLife(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == 25); + + // Regression assertion (captures the current behavior of the code) + assertNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var11); + + } + + public void test100() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test100"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + var0.list(); + float var6 = var0.getAlignmentY(); + java.awt.Insets var7 = var0.getInsets(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var14 = new SpaceWar.SpacePanel(); + float var15 = var14.getAlignmentX(); + var14.setVisible(false); + java.awt.Dimension var18 = var14.getPreferredSize(); + var8.setMaximumSize(var18); + java.awt.Dimension var20 = var0.getSize(var18); + // The following exception was thrown during execution. + // This behavior will recorded for regression testing. + try { + var0.remove((-1)); + fail("Expected exception of type java.lang.ArrayIndexOutOfBoundsException"); + } catch (java.lang.ArrayIndexOutOfBoundsException e) { + // Expected exception. + } + + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + } + + public void test101() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test101"); + + + SpaceWar.Explosion var4 = new SpaceWar.Explosion(370.79239132960686d, 75.48643960578549d, 2, 24); + boolean var5 = var4.update(); + boolean var6 = var4.update(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == false); + + } + + public void test102() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test102"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + var0.setName(""); + java.awt.Graphics var3 = var0.getGraphics(); + java.awt.event.MouseMotionListener[] var4 = var0.getMouseMotionListeners(); + boolean var5 = var0.getIgnoreRepaint(); + var0.transferFocusBackward(); + var0.move(100, 2); + java.awt.Container var10 = var0.getTopLevelAncestor(); + + // Regression assertion (captures the current behavior of the code) + assertNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var4); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var10); + + } + + public void test103() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test103"); + + + SpaceWar.Bullet var3 = new SpaceWar.Bullet(1.0d, 0, 499); + + } + + public void test104() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test104"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.updateUI(); + var0.enableInputMethods(true); + java.awt.Point var9 = var0.getMousePosition(false); + SpaceWar.SpacePanel var10 = new SpaceWar.SpacePanel(); + float var11 = var10.getAlignmentX(); + boolean var12 = var10.hasFocus(); + boolean var13 = var10.isPreferredSizeSet(); + var10.firePropertyChange("", (short)1, (short)0); + boolean var18 = var10.isMaximumSizeSet(); + var10.list(); + SpaceWar.SpacePanel var20 = new SpaceWar.SpacePanel(); + float var21 = var20.getAlignmentX(); + var20.setVisible(false); + boolean var24 = var20.isDoubleBuffered(); + java.awt.dnd.DropTarget var25 = var20.getDropTarget(); + var20.show(false); + java.awt.Rectangle var28 = var20.getVisibleRect(); + java.awt.image.BufferedImage var30 = var20.loadImg("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + java.awt.ComponentOrientation var31 = var20.getComponentOrientation(); + var20.transferFocusBackward(); + SpaceWar.SpacePanel var33 = new SpaceWar.SpacePanel(); + java.awt.Color var34 = var33.getBackground(); + var33.setFocusCycleRoot(true); + var10.add((java.awt.Component)var20, (java.lang.Object)true); + javax.swing.TransferHandler var38 = var10.getTransferHandler(); + SpaceWar.SpacePanel var39 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var40 = new SpaceWar.SpacePanel(); + java.awt.Color var41 = var40.getBackground(); + SpaceWar.SpacePanel var42 = new SpaceWar.SpacePanel(); + float var43 = var42.getAlignmentX(); + var42.setVisible(false); + var42.nextFocus(); + var42.updateUI(); + var42.enableInputMethods(true); + var39.add((java.awt.Component)var40, (java.lang.Object)true); + java.awt.Image var53 = var40.createImage(1, (-1)); + java.awt.event.MouseListener[] var54 = var40.getMouseListeners(); + java.awt.Color var55 = var40.getBackground(); + boolean var56 = var40.getIgnoreRepaint(); + var40.enable(); + var40.repaint(); + var0.add((java.awt.Component)var10, (java.lang.Object)var40); + var10.setVisible(true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNull(var9); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var24 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var25); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var28); + + // Regression assertion (captures the current behavior of the code) + assertNull(var30); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var31); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var34); + + // Regression assertion (captures the current behavior of the code) + assertNull(var38); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var41); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var43 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNull(var53); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var54); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var55); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var56 == false); + + } + + public void test105() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test105"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var1 = new SpaceWar.SpacePanel(); + java.awt.Color var2 = var1.getBackground(); + SpaceWar.SpacePanel var3 = new SpaceWar.SpacePanel(); + float var4 = var3.getAlignmentX(); + var3.setVisible(false); + var3.nextFocus(); + var3.updateUI(); + var3.enableInputMethods(true); + var0.add((java.awt.Component)var1, (java.lang.Object)true); + java.awt.Image var14 = var1.createImage(1, (-1)); + java.awt.event.MouseListener[] var15 = var1.getMouseListeners(); + java.awt.Color var16 = var1.getBackground(); + boolean var17 = var1.isValid(); + java.lang.String var18 = var1.getToolTipText(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var2); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var18); + + } + + public void test106() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test106"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + boolean var4 = var0.inside(0, (-1)); + var0.transferFocusUpCycle(); + java.awt.Container var6 = var0.getParent(); + boolean var7 = var0.isMaximumSizeSet(); + java.awt.event.InputMethodListener[] var8 = var0.getInputMethodListeners(); + javax.swing.TransferHandler var9 = var0.getTransferHandler(); + boolean var10 = var0.getFocusTraversalKeysEnabled(); + java.awt.dnd.DropTarget var11 = var0.getDropTarget(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertNull(var9); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var11); + + } + + public void test107() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test107"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + java.awt.im.InputMethodRequests var3 = var0.getInputMethodRequests(); + int var4 = var0.countComponents(); + java.awt.event.MouseMotionListener[] var5 = var0.getMouseMotionListeners(); + boolean var6 = var0.isLightweight(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == false); + + } + + public void test108() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test108"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + var0.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + javax.swing.plaf.PanelUI var5 = var0.getUI(); + java.awt.Color var6 = var0.getBackground(); + var0.removeAll(); + int var8 = var0.getHeight(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.removeNotify(); + SpaceWar.SpacePanel var12 = new SpaceWar.SpacePanel(); + float var13 = var12.getAlignmentX(); + var12.setVisible(false); + boolean var16 = var12.isDoubleBuffered(); + var12.list(); + float var18 = var12.getAlignmentY(); + java.awt.Insets var19 = var12.getInsets(); + java.awt.Insets var20 = var9.getInsets(var19); + boolean var21 = var9.isDoubleBuffered(); + java.awt.Component var22 = var0.add((java.awt.Component)var9); + boolean var23 = var0.isBackgroundSet(); + var0.repaint(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == true); + + } + + public void test109() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test109"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + boolean var4 = var0.inside(0, (-1)); + var0.transferFocusUpCycle(); + java.awt.Container var6 = var0.getParent(); + boolean var7 = var0.isMaximumSizeSet(); + java.awt.event.InputMethodListener[] var8 = var0.getInputMethodListeners(); + javax.swing.TransferHandler var9 = var0.getTransferHandler(); + boolean var10 = var0.getFocusTraversalKeysEnabled(); + boolean var11 = var0.isPreferredSizeSet(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertNull(var9); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == true); + + } + + public void test110() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test110"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + java.awt.im.InputMethodRequests var3 = var0.getInputMethodRequests(); + var0.setDoubleBuffered(true); + var0.show(false); + boolean var8 = var0.isPaintingForPrint(); + var0.setFocusable(true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + } + + public void test111() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test111"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + var0.show(false); + boolean var8 = var0.isPaintingForPrint(); + boolean var9 = var0.getIgnoreRepaint(); + var0.repaint(100, 10, 100, 0); + SpaceWar.SpacePanel var15 = new SpaceWar.SpacePanel(); + float var16 = var15.getAlignmentX(); + var15.setVisible(false); + boolean var19 = var15.isDoubleBuffered(); + var15.list(); + SpaceWar.SpacePanel var21 = new SpaceWar.SpacePanel(); + float var22 = var21.getAlignmentX(); + var21.setVisible(false); + boolean var25 = var21.isDoubleBuffered(); + java.awt.dnd.DropTarget var26 = var21.getDropTarget(); + var21.show(false); + java.awt.Rectangle var29 = var21.getVisibleRect(); + java.awt.Rectangle var30 = var15.getBounds(var29); + javax.swing.JToolTip var31 = var15.createToolTip(); + var15.firePropertyChange("", false, false); + var15.validate(); + SpaceWar.SpacePanel var37 = new SpaceWar.SpacePanel(); + float var38 = var37.getAlignmentX(); + var37.setVisible(false); + boolean var41 = var37.isDoubleBuffered(); + java.awt.dnd.DropTarget var42 = var37.getDropTarget(); + var37.show(false); + boolean var45 = var37.isPaintingForPrint(); + SpaceWar.SpacePanel var46 = new SpaceWar.SpacePanel(); + float var47 = var46.getAlignmentX(); + var46.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var52 = var46.getMouseListeners(); + int var53 = var46.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var54 = var46.getInputMethodRequests(); + var37.addKeyListener((java.awt.event.KeyListener)var46); + var46.repaint(); + java.awt.Point var57 = var46.location(); + java.awt.Component var58 = var15.getComponentAt(var57); + var0.setLocation(var57); + java.awt.peer.ComponentPeer var60 = var0.getPeer(); + var0.transferFocus(); + SpaceWar.SpacePanel var62 = new SpaceWar.SpacePanel(); + float var63 = var62.getAlignmentX(); + var62.setVisible(false); + boolean var66 = var62.isDoubleBuffered(); + SpaceWar.SpacePanel var67 = new SpaceWar.SpacePanel(); + float var68 = var67.getAlignmentX(); + var67.setVisible(false); + var67.nextFocus(); + var67.reshape((-1), 1, (-1), 10); + var67.disable(); + boolean var78 = var67.isFocusable(); + int var79 = var67.getHeight(); + var62.setNextFocusableComponent((java.awt.Component)var67); + java.util.Set var82 = var62.getFocusTraversalKeys(0); + var62.firePropertyChange("", (byte)0, (byte)1); + var0.addKeyListener((java.awt.event.KeyListener)var62); + java.awt.event.MouseWheelListener[] var88 = var62.getMouseWheelListeners(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var22 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var29); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var30); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var31); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var38 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var41 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var42); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var45 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var47 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var52); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var53 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var54); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var57); + + // Regression assertion (captures the current behavior of the code) + assertNull(var58); + + // Regression assertion (captures the current behavior of the code) + assertNull(var60); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var63 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var66 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var68 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var78 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var79 == 10); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var82); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var88); + + } + + public void test112() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test112"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + SpaceWar.SpacePanel var4 = new SpaceWar.SpacePanel(); + java.awt.Color var5 = var4.getBackground(); + var0.setForeground(var5); + SpaceWar.SpacePanel var7 = new SpaceWar.SpacePanel(); + float var8 = var7.getAlignmentX(); + var7.setVisible(false); + boolean var11 = var7.isDoubleBuffered(); + java.awt.dnd.DropTarget var12 = var7.getDropTarget(); + var7.show(false); + java.awt.Rectangle var15 = var7.getVisibleRect(); + var0.repaint(var15); + java.awt.FocusTraversalPolicy var17 = var0.getFocusTraversalPolicy(); + SpaceWar.SpacePanel var18 = new SpaceWar.SpacePanel(); + float var19 = var18.getAlignmentX(); + var18.firePropertyChange("", (-1), 1); + boolean var24 = var18.isFocusOwner(); + SpaceWar.SpacePanel var26 = new SpaceWar.SpacePanel(); + float var27 = var26.getAlignmentX(); + var26.setVisible(false); + java.awt.Dimension var30 = var26.getPreferredSize(); + java.awt.Toolkit var31 = var26.getToolkit(); + SpaceWar.SpacePanel var32 = new SpaceWar.SpacePanel(); + var32.setName(""); + int var35 = var32.getX(); + SpaceWar.SpacePanel var36 = new SpaceWar.SpacePanel(); + float var37 = var36.getAlignmentX(); + var36.setVisible(false); + var36.nextFocus(); + SpaceWar.SpacePanel var41 = new SpaceWar.SpacePanel(); + float var42 = var41.getAlignmentX(); + var41.setVisible(false); + SpaceWar.SpacePanel var45 = new SpaceWar.SpacePanel(); + java.awt.Color var46 = var45.getBackground(); + var41.setForeground(var46); + var36.setBackground(var46); + var32.setBackground(var46); + var26.setForeground(var46); + var18.putClientProperty((java.lang.Object)(byte)100, (java.lang.Object)var46); + var0.setBackground(var46); + javax.swing.JToolTip var53 = var0.createToolTip(); + var53.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, true); + SpaceWar.SpacePanel var58 = new SpaceWar.SpacePanel(); + var58.setName(""); + java.awt.Dimension var61 = var58.minimumSize(); + boolean var62 = var58.isDoubleBuffered(); + java.awt.event.HierarchyListener[] var63 = var58.getHierarchyListeners(); + java.awt.Font var64 = var58.getFont(); + java.awt.FontMetrics var65 = var53.getFontMetrics(var64); + // The following exception was thrown during execution. + // This behavior will recorded for regression testing. + try { + java.awt.Component var67 = var53.getComponent(400); + fail("Expected exception of type java.lang.ArrayIndexOutOfBoundsException"); + } catch (java.lang.ArrayIndexOutOfBoundsException e) { + // Expected exception. + } + + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var24 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var30); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var31); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var35 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var42 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var46); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var53); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var61); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var62 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var63); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var64); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var65); + + } + + public void test113() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test113"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + javax.swing.plaf.PanelUI var3 = var0.getUI(); + SpaceWar.SpacePanel var4 = new SpaceWar.SpacePanel(); + float var5 = var4.getAlignmentX(); + var4.setVisible(false); + boolean var8 = var4.isDoubleBuffered(); + java.awt.dnd.DropTarget var9 = var4.getDropTarget(); + var4.show(false); + boolean var12 = var4.isPaintingForPrint(); + SpaceWar.SpacePanel var13 = new SpaceWar.SpacePanel(); + float var14 = var13.getAlignmentX(); + var13.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var19 = var13.getMouseListeners(); + int var20 = var13.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var21 = var13.getInputMethodRequests(); + var4.addKeyListener((java.awt.event.KeyListener)var13); + SpaceWar.SpacePanel var23 = new SpaceWar.SpacePanel(); + float var24 = var23.getAlignmentX(); + var23.setVisible(false); + boolean var27 = var23.isDoubleBuffered(); + var23.list(); + float var29 = var23.getAlignmentY(); + boolean var30 = var13.isFocusCycleRoot((java.awt.Container)var23); + SpaceWar.SpacePanel var32 = new SpaceWar.SpacePanel(); + float var33 = var32.getAlignmentX(); + var32.setVisible(false); + var32.nextFocus(); + var32.updateUI(); + java.awt.Component var38 = var13.add("", (java.awt.Component)var32); + java.awt.ComponentOrientation var39 = var32.getComponentOrientation(); + boolean var40 = var32.isFocusable(); + var0.remove((java.awt.Component)var32); + java.awt.Insets var42 = var0.insets(); + boolean var43 = var0.isValidateRoot(); + boolean var44 = var0.requestFocusInWindow(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var9); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var21); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var24 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var29 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var30 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var33 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var38); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var39); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var40 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var42); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var43 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var44 == false); + + } + + public void test114() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test114"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + var0.setName(""); + int var3 = var0.getX(); + SpaceWar.SpacePanel var4 = new SpaceWar.SpacePanel(); + float var5 = var4.getAlignmentX(); + var4.setVisible(false); + var4.nextFocus(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.setVisible(false); + SpaceWar.SpacePanel var13 = new SpaceWar.SpacePanel(); + java.awt.Color var14 = var13.getBackground(); + var9.setForeground(var14); + var4.setBackground(var14); + var0.setBackground(var14); + boolean var18 = var0.isFocusTraversable(); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + var19.setName(""); + int var22 = var19.getX(); + SpaceWar.SpacePanel var23 = new SpaceWar.SpacePanel(); + float var24 = var23.getAlignmentX(); + var23.setVisible(false); + var23.nextFocus(); + SpaceWar.SpacePanel var28 = new SpaceWar.SpacePanel(); + float var29 = var28.getAlignmentX(); + var28.setVisible(false); + SpaceWar.SpacePanel var32 = new SpaceWar.SpacePanel(); + java.awt.Color var33 = var32.getBackground(); + var28.setForeground(var33); + var23.setBackground(var33); + var19.setBackground(var33); + var0.setBackground(var33); + java.awt.Component var40 = var0.getComponentAt(0, 25); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var22 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var24 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var29 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var33); + + // Regression assertion (captures the current behavior of the code) + assertNull(var40); + + } + + public void test115() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test115"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.reshape((-1), 1, (-1), 10); + var0.disable(); + java.awt.LayoutManager var11 = var0.getLayout(); + java.awt.Container var12 = var0.getParent(); + java.lang.String var13 = var0.getUIClassID(); + float var14 = var0.getAlignmentX(); + var0.enable(true); + boolean var17 = var0.isPaintingTile(); + javax.swing.ActionMap var18 = var0.getActionMap(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var13 + "' != '" + "PanelUI"+ "'", var13.equals("PanelUI")); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var18); + + } + + public void test116() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test116"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.reshape((-1), 1, (-1), 10); + java.util.Set var11 = var0.getFocusTraversalKeys(3); + var0.firePropertyChange("SpaceWar.SpacePanel[,-1,1,-1x10,invalid,hidden,disabled,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", '4', ' '); + var0.setIgnoreRepaint(false); + java.awt.GraphicsConfiguration var18 = var0.getGraphicsConfiguration(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNull(var18); + + } + + public void test117() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test117"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + var0.show(false); + java.awt.Rectangle var8 = var0.getVisibleRect(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.setVisible(false); + SpaceWar.SpacePanel var13 = new SpaceWar.SpacePanel(); + java.awt.Color var14 = var13.getBackground(); + var9.setForeground(var14); + SpaceWar.SpacePanel var16 = new SpaceWar.SpacePanel(); + float var17 = var16.getAlignmentX(); + var16.setVisible(false); + boolean var20 = var16.isDoubleBuffered(); + java.awt.dnd.DropTarget var21 = var16.getDropTarget(); + var16.show(false); + java.awt.Rectangle var24 = var16.getVisibleRect(); + var9.repaint(var24); + java.awt.FocusTraversalPolicy var26 = var9.getFocusTraversalPolicy(); + SpaceWar.SpacePanel var27 = new SpaceWar.SpacePanel(); + float var28 = var27.getAlignmentX(); + var27.firePropertyChange("", (-1), 1); + boolean var33 = var27.isFocusOwner(); + SpaceWar.SpacePanel var35 = new SpaceWar.SpacePanel(); + float var36 = var35.getAlignmentX(); + var35.setVisible(false); + java.awt.Dimension var39 = var35.getPreferredSize(); + java.awt.Toolkit var40 = var35.getToolkit(); + SpaceWar.SpacePanel var41 = new SpaceWar.SpacePanel(); + var41.setName(""); + int var44 = var41.getX(); + SpaceWar.SpacePanel var45 = new SpaceWar.SpacePanel(); + float var46 = var45.getAlignmentX(); + var45.setVisible(false); + var45.nextFocus(); + SpaceWar.SpacePanel var50 = new SpaceWar.SpacePanel(); + float var51 = var50.getAlignmentX(); + var50.setVisible(false); + SpaceWar.SpacePanel var54 = new SpaceWar.SpacePanel(); + java.awt.Color var55 = var54.getBackground(); + var50.setForeground(var55); + var45.setBackground(var55); + var41.setBackground(var55); + var35.setForeground(var55); + var27.putClientProperty((java.lang.Object)(byte)100, (java.lang.Object)var55); + var9.setBackground(var55); + java.awt.ComponentOrientation var62 = var9.getComponentOrientation(); + var0.setNextFocusableComponent((java.awt.Component)var9); + float var64 = var0.getAlignmentX(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var21); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var28 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var33 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var36 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var39); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var40); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var44 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var46 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var51 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var55); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var62); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var64 == 0.5f); + + } + + public void test118() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test118"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.repaint(1L); + SpaceWar.SpacePanel var7 = new SpaceWar.SpacePanel(); + float var8 = var7.getAlignmentX(); + var7.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var13 = new SpaceWar.SpacePanel(); + float var14 = var13.getAlignmentX(); + var13.setVisible(false); + java.awt.Dimension var17 = var13.getPreferredSize(); + var7.setMaximumSize(var17); + var0.setPreferredSize(var17); + javax.swing.plaf.PanelUI var20 = var0.getUI(); + SpaceWar.SpacePanel var21 = new SpaceWar.SpacePanel(); + float var22 = var21.getAlignmentX(); + var21.setVisible(false); + var21.nextFocus(); + var21.reshape((-1), 1, (-1), 10); + var21.disable(); + java.awt.LayoutManager var32 = var21.getLayout(); + java.awt.Container var33 = var21.getParent(); + java.lang.String var34 = var21.getUIClassID(); + SpaceWar.Enemy var37 = new SpaceWar.Enemy(0, 10); + var0.add((java.awt.Component)var21, (java.lang.Object)10); + javax.swing.JToolTip var39 = var0.createToolTip(); + var0.setBounds((-1), 25, 10, 400); + java.awt.Container var45 = var0.getParent(); + boolean var46 = var0.isPaintingForPrint(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var22 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var32); + + // Regression assertion (captures the current behavior of the code) + assertNull(var33); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var34 + "' != '" + "PanelUI"+ "'", var34.equals("PanelUI")); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var39); + + // Regression assertion (captures the current behavior of the code) + assertNull(var45); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var46 == false); + + } + + public void test119() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test119"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + float var7 = var6.getAlignmentX(); + var6.setVisible(false); + java.awt.Dimension var10 = var6.getPreferredSize(); + var0.setMaximumSize(var10); + boolean var12 = var0.getVerifyInputWhenFocusTarget(); + boolean var13 = var0.isFontSet(); + boolean var14 = var0.getIgnoreRepaint(); + java.awt.Component var17 = var0.locate(1, 25); + java.awt.Dimension var18 = var0.getMinimumSize(); + java.awt.Cursor var19 = var0.getCursor(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var19); + + } + + public void test120() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test120"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + java.awt.Dimension var4 = var0.getPreferredSize(); + java.awt.Toolkit var5 = var0.getToolkit(); + boolean var6 = var0.isFocusable(); + javax.swing.KeyStroke[] var7 = var0.getRegisteredKeyStrokes(); + java.awt.Component var10 = var0.getComponentAt(100, 100); + java.lang.Object var11 = var0.getTreeLock(); + var0.grabFocus(); + java.awt.Color var13 = var0.getBackground(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var4); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var13); + + } + + public void test121() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test121"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var6 = var0.getMouseListeners(); + java.awt.Dimension var7 = var0.getPreferredSize(); + java.util.Locale var8 = var0.getLocale(); + var0.setFocusable(true); + var0.transferFocusUpCycle(); + var0.setFocusable(false); + java.awt.Point var14 = var0.getMousePosition(); + var0.show(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertNull(var14); + + } + + public void test122() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test122"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var6 = var0.getMouseListeners(); + java.awt.Dimension var7 = var0.getPreferredSize(); + java.util.Locale var8 = var0.getLocale(); + var0.setFocusable(true); + var0.setSize(3, 10); + var0.invalidate(); + // The following exception was thrown during execution. + // This behavior will recorded for regression testing. + try { + var0.remove(24); + fail("Expected exception of type java.lang.ArrayIndexOutOfBoundsException"); + } catch (java.lang.ArrayIndexOutOfBoundsException e) { + // Expected exception. + } + + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var8); + + } + + public void test123() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test123"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.reshape((-1), 1, (-1), 10); + var0.disable(); + java.awt.LayoutManager var11 = var0.getLayout(); + java.awt.Container var12 = var0.getParent(); + java.beans.PropertyChangeListener[] var14 = var0.getPropertyChangeListeners("SpaceWar.SpacePanel[,0,0,0x0,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + java.awt.event.HierarchyBoundsListener[] var15 = var0.getHierarchyBoundsListeners(); + var0.nextFocus(); + var0.repaint((-1L), 500, 10, 3, 499); + // The following exception was thrown during execution. + // This behavior will recorded for regression testing. + try { + javax.swing.InputMap var24 = var0.getInputMap(25); + fail("Expected exception of type java.lang.IllegalArgumentException"); + } catch (java.lang.IllegalArgumentException e) { + // Expected exception. + } + + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + } + + public void test124() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test124"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + java.awt.Dimension var4 = var0.getPreferredSize(); + boolean var5 = var0.getVerifyInputWhenFocusTarget(); + java.awt.Component var8 = var0.findComponentAt(10, 1); + boolean var9 = var0.requestDefaultFocus(); + var0.firePropertyChange("hi!", false, true); + var0.repaint(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var4); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == false); + + } + + public void test125() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test125"); + + + SpaceWar.Player var0 = new SpaceWar.Player(); + var0.increasePower(25); + int var3 = var0.getR(); + int var4 = var0.getScore(); + var0.loseLife(); + boolean var6 = var0.isRecovering(); + var0.setFiring(false); + int var9 = var0.getScore(); + var0.setLeft(true); + var0.setDown(false); + int var14 = var0.getY(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == 25); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == 500); + + } + + public void test126() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test126"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + boolean var4 = var0.inside(0, (-1)); + SpaceWar.SpacePanel var5 = new SpaceWar.SpacePanel(); + float var6 = var5.getAlignmentX(); + var5.setVisible(false); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + java.awt.Color var10 = var9.getBackground(); + var5.setForeground(var10); + var0.setForeground(var10); + var0.setAutoscrolls(false); + SpaceWar.SpacePanel var15 = new SpaceWar.SpacePanel(); + float var16 = var15.getAlignmentX(); + var15.setVisible(false); + boolean var19 = var15.isDoubleBuffered(); + java.awt.dnd.DropTarget var20 = var15.getDropTarget(); + var15.show(false); + boolean var23 = var15.isPaintingForPrint(); + SpaceWar.SpacePanel var24 = new SpaceWar.SpacePanel(); + float var25 = var24.getAlignmentX(); + var24.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var30 = var24.getMouseListeners(); + int var31 = var24.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var32 = var24.getInputMethodRequests(); + var15.addKeyListener((java.awt.event.KeyListener)var24); + SpaceWar.SpacePanel var34 = new SpaceWar.SpacePanel(); + float var35 = var34.getAlignmentX(); + var34.setVisible(false); + boolean var38 = var34.isDoubleBuffered(); + var34.list(); + float var40 = var34.getAlignmentY(); + boolean var41 = var24.isFocusCycleRoot((java.awt.Container)var34); + var34.firePropertyChange("", 1L, 1L); + var34.setVerifyInputWhenFocusTarget(true); + SpaceWar.SpacePanel var48 = new SpaceWar.SpacePanel(); + var48.setName(""); + java.awt.Dimension var51 = var48.minimumSize(); + boolean var52 = var48.isDoubleBuffered(); + SpaceWar.SpacePanel var53 = new SpaceWar.SpacePanel(); + float var54 = var53.getAlignmentX(); + SpaceWar.SpacePanel var55 = new SpaceWar.SpacePanel(); + float var56 = var55.getAlignmentX(); + var55.setVisible(false); + java.awt.Dimension var59 = var55.getPreferredSize(); + boolean var60 = var55.getVerifyInputWhenFocusTarget(); + java.awt.Component var63 = var55.findComponentAt(10, 1); + var53.addKeyListener((java.awt.event.KeyListener)var55); + var55.repaint(100, (-1), (-1), 1); + SpaceWar.SpacePanel var70 = new SpaceWar.SpacePanel(); + java.awt.Color var71 = var70.getBackground(); + var70.repaint(); + java.awt.im.InputMethodRequests var73 = var70.getInputMethodRequests(); + java.awt.GraphicsConfiguration var74 = var70.getGraphicsConfiguration(); + var55.remove((java.awt.Component)var70); + java.awt.Font var76 = var70.getFont(); + java.awt.FontMetrics var77 = var48.getFontMetrics(var76); + java.awt.FontMetrics var78 = var34.getFontMetrics(var76); + var0.setFont(var76); + var0.setVerifyInputWhenFocusTarget(false); + java.awt.Container var82 = var0.getTopLevelAncestor(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var30); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var31 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var32); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var35 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var38 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var40 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var41 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var51); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var52 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var54 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var56 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var59); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var60 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var63); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var71); + + // Regression assertion (captures the current behavior of the code) + assertNull(var73); + + // Regression assertion (captures the current behavior of the code) + assertNull(var74); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var76); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var77); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var78); + + // Regression assertion (captures the current behavior of the code) + assertNull(var82); + + } + + public void test127() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test127"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.updateUI(); + var0.enableInputMethods(true); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + boolean var10 = var8.hasFocus(); + java.awt.Insets var11 = var8.getInsets(); + java.awt.Insets var12 = var0.getInsets(var11); + boolean var13 = var0.isManagingFocus(); + java.awt.Image var16 = var0.createImage(1, 10); + java.awt.Rectangle var17 = var0.bounds(); + var0.transferFocusBackward(); + var0.revalidate(); + java.awt.Component var22 = var0.findComponentAt(499, 1); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertNull(var22); + + } + + public void test128() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test128"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + boolean var5 = javax.swing.JComponent.isLightweightComponent((java.awt.Component)var0); + int var6 = var0.countComponents(); + var0.resize((-1), 3); + javax.swing.KeyStroke[] var10 = var0.getRegisteredKeyStrokes(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var10); + + } + + public void test129() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test129"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + var0.show(false); + boolean var8 = var0.isPaintingForPrint(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var15 = var9.getMouseListeners(); + int var16 = var9.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var17 = var9.getInputMethodRequests(); + var0.addKeyListener((java.awt.event.KeyListener)var9); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + float var20 = var19.getAlignmentX(); + var19.setVisible(false); + boolean var23 = var19.isDoubleBuffered(); + var19.list(); + float var25 = var19.getAlignmentY(); + boolean var26 = var9.isFocusCycleRoot((java.awt.Container)var19); + SpaceWar.SpacePanel var28 = new SpaceWar.SpacePanel(); + float var29 = var28.getAlignmentX(); + var28.setVisible(false); + var28.nextFocus(); + var28.updateUI(); + java.awt.Component var34 = var9.add("", (java.awt.Component)var28); + java.lang.Object var35 = var34.getTreeLock(); + java.awt.Image var38 = var34.createImage(100, 3); + var34.transferFocusBackward(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var29 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var34); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var35); + + // Regression assertion (captures the current behavior of the code) + assertNull(var38); + + } + + public void test130() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test130"); + + + SpaceWar.Player var0 = new SpaceWar.Player(); + var0.increasePower(25); + int var3 = var0.getScore(); + int var4 = var0.getX(); + var0.setRigth(true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 400); + + } + + public void test131() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test131"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + var0.show(false); + java.awt.Rectangle var8 = var0.getVisibleRect(); + boolean var9 = var0.isFocusTraversalPolicySet(); + SpaceWar.SpacePanel var10 = new SpaceWar.SpacePanel(); + float var11 = var10.getAlignmentX(); + var10.setVisible(false); + boolean var14 = var10.isDoubleBuffered(); + var10.enable(false); + boolean var17 = var10.getFocusTraversalKeysEnabled(); + SpaceWar.SpacePanel var18 = new SpaceWar.SpacePanel(); + float var19 = var18.getAlignmentX(); + var18.setVisible(false); + java.awt.Dimension var22 = var18.getPreferredSize(); + java.awt.Toolkit var23 = var18.getToolkit(); + boolean var24 = var18.isFocusable(); + javax.swing.KeyStroke[] var25 = var18.getRegisteredKeyStrokes(); + SpaceWar.SpacePanel var26 = new SpaceWar.SpacePanel(); + float var27 = var26.getAlignmentX(); + SpaceWar.SpacePanel var28 = new SpaceWar.SpacePanel(); + float var29 = var28.getAlignmentX(); + var28.setVisible(false); + java.awt.Dimension var32 = var28.getPreferredSize(); + boolean var33 = var28.getVerifyInputWhenFocusTarget(); + java.awt.Component var36 = var28.findComponentAt(10, 1); + var26.addKeyListener((java.awt.event.KeyListener)var28); + var28.repaint(100, (-1), (-1), 1); + boolean var43 = var18.isAncestorOf((java.awt.Component)var28); + var10.addKeyListener((java.awt.event.KeyListener)var28); + java.util.Locale var45 = var28.getLocale(); + var0.setLocale(var45); + javax.swing.JComponent.setDefaultLocale(var45); + javax.swing.JComponent.setDefaultLocale(var45); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var23); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var24 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var25); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var29 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var32); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var33 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var36); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var43 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var45); + + } + + public void test132() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test132"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + float var7 = var6.getAlignmentX(); + var6.setVisible(false); + SpaceWar.SpacePanel var10 = new SpaceWar.SpacePanel(); + java.awt.Color var11 = var10.getBackground(); + var6.setForeground(var11); + var0.setBackground(var11); + var0.grabFocus(); + SpaceWar.SpacePanel var15 = new SpaceWar.SpacePanel(); + float var16 = var15.getAlignmentX(); + var15.setVisible(false); + boolean var19 = var15.isDoubleBuffered(); + java.awt.dnd.DropTarget var20 = var15.getDropTarget(); + boolean var21 = var15.isFocusCycleRoot(); + SpaceWar.SpacePanel var22 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var23 = new SpaceWar.SpacePanel(); + java.awt.Color var24 = var23.getBackground(); + SpaceWar.SpacePanel var25 = new SpaceWar.SpacePanel(); + float var26 = var25.getAlignmentX(); + var25.setVisible(false); + var25.nextFocus(); + var25.updateUI(); + var25.enableInputMethods(true); + var22.add((java.awt.Component)var23, (java.lang.Object)true); + java.awt.Dimension var34 = var23.getPreferredSize(); + var15.setSize(var34); + var0.setMaximumSize(var34); + var0.enable(); + javax.swing.InputVerifier var38 = var0.getInputVerifier(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var34); + + // Regression assertion (captures the current behavior of the code) + assertNull(var38); + + } + + public void test133() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test133"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + java.lang.String var2 = var0.toString(); + java.awt.Dimension var3 = var0.size(); + var0.resetKeyboardActions(); + SpaceWar.SpacePanel var5 = new SpaceWar.SpacePanel(); + var5.setName(""); + java.awt.Dimension var8 = var5.minimumSize(); + boolean var9 = var5.isDoubleBuffered(); + SpaceWar.SpacePanel var10 = new SpaceWar.SpacePanel(); + float var11 = var10.getAlignmentX(); + var10.setVisible(false); + SpaceWar.SpacePanel var14 = new SpaceWar.SpacePanel(); + java.awt.Color var15 = var14.getBackground(); + var10.setForeground(var15); + SpaceWar.SpacePanel var17 = new SpaceWar.SpacePanel(); + float var18 = var17.getAlignmentX(); + var17.setVisible(false); + boolean var21 = var17.isDoubleBuffered(); + java.awt.dnd.DropTarget var22 = var17.getDropTarget(); + var17.show(false); + java.awt.Rectangle var25 = var17.getVisibleRect(); + var10.repaint(var25); + java.awt.FocusTraversalPolicy var27 = var10.getFocusTraversalPolicy(); + java.awt.im.InputMethodRequests var28 = var10.getInputMethodRequests(); + var10.layout(); + boolean var30 = var10.isFocusTraversalPolicyProvider(); + java.awt.Component var31 = var5.add((java.awt.Component)var10); + javax.swing.border.Border var32 = var10.getBorder(); + java.awt.Point var33 = var10.getLocation(); + java.awt.Rectangle var34 = var10.getBounds(); + var0.computeVisibleRect(var34); + boolean var36 = var0.isLightweight(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var2 + "' != '" + "SpaceWar.SpacePanel[,0,0,0var2,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"+ "'", var2.equals("SpaceWar.SpacePanel[,0,0,0var2,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]")); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var25); + + // Regression assertion (captures the current behavior of the code) + assertNull(var27); + + // Regression assertion (captures the current behavior of the code) + assertNull(var28); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var30 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var31); + + // Regression assertion (captures the current behavior of the code) + assertNull(var32); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var33); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var34); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var36 == false); + + } + + public void test134() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test134"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.updateUI(); + var0.enableInputMethods(true); + java.lang.String var8 = var0.toString(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.setVisible(false); + boolean var13 = var9.isDoubleBuffered(); + java.awt.dnd.DropTarget var14 = var9.getDropTarget(); + var9.show(false); + java.awt.Rectangle var17 = var9.getVisibleRect(); + java.awt.image.BufferedImage var19 = var9.loadImg("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + java.awt.ComponentOrientation var20 = var9.getComponentOrientation(); + boolean var21 = var9.isPaintingTile(); + boolean var22 = var9.isOptimizedDrawingEnabled(); + int var23 = var0.getComponentZOrder((java.awt.Component)var9); + var9.firePropertyChange("", 1.0f, 0.0f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var8 + "' != '" + "SpaceWar.SpacePanel[,0,0,0var8,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"+ "'", var8.equals("SpaceWar.SpacePanel[,0,0,0var8,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]")); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var22 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == (-1)); + + } + + public void test135() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test135"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var6 = var0.getUI(); + java.awt.im.InputMethodRequests var7 = var0.getInputMethodRequests(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + var8.nextFocus(); + var8.updateUI(); + var8.enableInputMethods(true); + var8.setSize((-1), 1); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + var19.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var0.add((java.awt.Component)var8, (java.lang.Object)"SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + java.awt.ComponentOrientation var25 = var8.getComponentOrientation(); + boolean var26 = var8.isMaximumSizeSet(); + SpaceWar.SpacePanel var27 = new SpaceWar.SpacePanel(); + float var28 = var27.getAlignmentX(); + var27.setVisible(false); + boolean var31 = var27.isDoubleBuffered(); + java.awt.dnd.DropTarget var32 = var27.getDropTarget(); + var27.show(false); + boolean var35 = var27.isPaintingForPrint(); + SpaceWar.SpacePanel var36 = new SpaceWar.SpacePanel(); + float var37 = var36.getAlignmentX(); + var36.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var42 = var36.getMouseListeners(); + int var43 = var36.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var44 = var36.getInputMethodRequests(); + var27.addKeyListener((java.awt.event.KeyListener)var36); + SpaceWar.SpacePanel var46 = new SpaceWar.SpacePanel(); + float var47 = var46.getAlignmentX(); + var46.setVisible(false); + boolean var50 = var46.isDoubleBuffered(); + var46.list(); + float var52 = var46.getAlignmentY(); + boolean var53 = var36.isFocusCycleRoot((java.awt.Container)var46); + boolean var54 = var46.isEnabled(); + java.awt.Dimension var55 = var46.getMaximumSize(); + var8.setMinimumSize(var55); + var8.disable(); + int var58 = var8.getComponentCount(); + var8.setAutoscrolls(true); + float var61 = var8.getAlignmentX(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var25); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var28 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var31 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var32); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var35 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var42); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var43 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var44); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var47 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var50 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var52 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var53 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var54 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var55); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var58 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var61 == 0.5f); + + } + + public void test136() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test136"); + + + SpaceWar.Bullet var3 = new SpaceWar.Bullet(10.0d, 400, 2); + + } + + public void test137() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test137"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + var0.setRequestFocusEnabled(false); + var0.reshape(100, 0, 100, 0); + var0.requestFocus(); + var0.firePropertyChange("hi!", '4', ' '); + java.awt.Point var15 = var0.getLocation(); + java.awt.Dimension var16 = var0.size(); + java.awt.Image var19 = var0.createImage((-1), (-1)); + java.awt.event.ComponentListener[] var20 = var0.getComponentListeners(); + SpaceWar.SpacePanel var21 = new SpaceWar.SpacePanel(); + var21.setName(""); + java.awt.ComponentOrientation var24 = var21.getComponentOrientation(); + var21.firePropertyChange("PanelUI", 1.0f, 0.5f); + int var29 = var0.getComponentZOrder((java.awt.Component)var21); + boolean var31 = var0.areFocusTraversalKeysSet(0); + javax.swing.TransferHandler var32 = var0.getTransferHandler(); + boolean var33 = var0.isValidateRoot(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var29 == (-1)); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var31 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var32); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var33 == false); + + } + + public void test138() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test138"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var6 = var0.getMouseListeners(); + int var7 = var0.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var8 = var0.getInputMethodRequests(); + var0.removeNotify(); + var0.enable(); + SpaceWar.SpacePanel var11 = new SpaceWar.SpacePanel(); + java.awt.Color var12 = var11.getBackground(); + boolean var15 = var11.inside(0, (-1)); + var11.transferFocusUpCycle(); + java.lang.String var17 = var11.getName(); + boolean var18 = var0.isFocusCycleRoot((java.awt.Container)var11); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + float var20 = var19.getAlignmentX(); + var19.setVisible(false); + SpaceWar.SpacePanel var23 = new SpaceWar.SpacePanel(); + java.awt.Color var24 = var23.getBackground(); + var19.setForeground(var24); + SpaceWar.SpacePanel var26 = new SpaceWar.SpacePanel(); + float var27 = var26.getAlignmentX(); + var26.setVisible(false); + boolean var30 = var26.isDoubleBuffered(); + java.awt.dnd.DropTarget var31 = var26.getDropTarget(); + var26.show(false); + java.awt.Rectangle var34 = var26.getVisibleRect(); + var19.repaint(var34); + java.awt.Component.BaselineResizeBehavior var36 = var19.getBaselineResizeBehavior(); + var11.addKeyListener((java.awt.event.KeyListener)var19); + SpaceWar.SpacePanel var38 = new SpaceWar.SpacePanel(); + float var39 = var38.getAlignmentX(); + var38.setVisible(false); + java.awt.Dimension var42 = var38.getPreferredSize(); + boolean var43 = var38.getVerifyInputWhenFocusTarget(); + java.awt.Component var46 = var38.findComponentAt(10, 1); + boolean var47 = var38.requestDefaultFocus(); + var38.setVerifyInputWhenFocusTarget(false); + java.awt.Point var50 = var38.getLocation(); + var19.setLocation(var50); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var30 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var31); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var34); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var36); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var39 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var42); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var43 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var46); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var47 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var50); + + } + + public void test139() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test139"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + var0.show(false); + java.awt.Rectangle var8 = var0.getVisibleRect(); + java.awt.Toolkit var9 = var0.getToolkit(); + javax.swing.InputVerifier var10 = var0.getInputVerifier(); + java.awt.Component var13 = var0.findComponentAt(25, 500); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var9); + + // Regression assertion (captures the current behavior of the code) + assertNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertNull(var13); + + } + + public void test140() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test140"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + var0.list(); + float var6 = var0.getAlignmentY(); + java.awt.GraphicsConfiguration var7 = var0.getGraphicsConfiguration(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNull(var7); + + } + + public void test141() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test141"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + var0.show(false); + java.awt.Rectangle var8 = var0.getVisibleRect(); + java.awt.Toolkit var9 = var0.getToolkit(); + java.beans.PropertyChangeListener[] var10 = var0.getPropertyChangeListeners(); + java.awt.FocusTraversalPolicy var11 = var0.getFocusTraversalPolicy(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var9); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertNull(var11); + + } + + public void test142() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test142"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + var0.list(); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + float var7 = var6.getAlignmentX(); + var6.setVisible(false); + boolean var10 = var6.isDoubleBuffered(); + java.awt.dnd.DropTarget var11 = var6.getDropTarget(); + var6.show(false); + java.awt.Rectangle var14 = var6.getVisibleRect(); + java.awt.image.BufferedImage var16 = var6.loadImg("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + boolean var17 = var0.isAncestorOf((java.awt.Component)var6); + float var18 = var0.getAlignmentX(); + int var19 = var0.getDebugGraphicsOptions(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == 0); + + } + + public void test143() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test143"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.updateUI(); + var0.enableInputMethods(true); + var0.enableInputMethods(true); + SpaceWar.SpacePanel var10 = new SpaceWar.SpacePanel(); + float var11 = var10.getAlignmentX(); + var10.setVisible(false); + var10.nextFocus(); + var10.reshape((-1), 1, (-1), 10); + var10.disable(); + var10.show(); + SpaceWar.SpacePanel var22 = new SpaceWar.SpacePanel(); + float var23 = var22.getAlignmentX(); + var22.setVisible(false); + boolean var26 = var22.isDoubleBuffered(); + var22.list(); + SpaceWar.SpacePanel var28 = new SpaceWar.SpacePanel(); + float var29 = var28.getAlignmentX(); + var28.setVisible(false); + boolean var32 = var28.isDoubleBuffered(); + java.awt.dnd.DropTarget var33 = var28.getDropTarget(); + var28.show(false); + java.awt.Rectangle var36 = var28.getVisibleRect(); + java.awt.Rectangle var37 = var22.getBounds(var36); + javax.swing.JToolTip var38 = var22.createToolTip(); + var22.firePropertyChange("", false, false); + var22.validate(); + SpaceWar.SpacePanel var44 = new SpaceWar.SpacePanel(); + float var45 = var44.getAlignmentX(); + var44.setVisible(false); + boolean var48 = var44.isDoubleBuffered(); + java.awt.dnd.DropTarget var49 = var44.getDropTarget(); + var44.show(false); + boolean var52 = var44.isPaintingForPrint(); + SpaceWar.SpacePanel var53 = new SpaceWar.SpacePanel(); + float var54 = var53.getAlignmentX(); + var53.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var59 = var53.getMouseListeners(); + int var60 = var53.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var61 = var53.getInputMethodRequests(); + var44.addKeyListener((java.awt.event.KeyListener)var53); + var53.repaint(); + java.awt.Point var64 = var53.location(); + java.awt.Component var65 = var22.getComponentAt(var64); + java.awt.Point var66 = var10.getLocation(var64); + java.awt.Point var67 = var0.getLocation(var64); + java.awt.Cursor var68 = var0.getCursor(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var29 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var32 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var33); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var36); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var37); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var38); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var45 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var48 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var49); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var52 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var54 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var59); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var60 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var61); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var64); + + // Regression assertion (captures the current behavior of the code) + assertNull(var65); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var66); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var67); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var68); + + } + + public void test144() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test144"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + boolean var2 = var0.hasFocus(); + SpaceWar.SpacePanel var3 = new SpaceWar.SpacePanel(); + float var4 = var3.getAlignmentX(); + var3.setVisible(false); + var3.nextFocus(); + var3.reshape((-1), 1, (-1), 10); + var3.disable(); + java.awt.LayoutManager var14 = var3.getLayout(); + var3.setVisible(false); + var0.remove((java.awt.Component)var3); + boolean var18 = var3.hasFocus(); + // The following exception was thrown during execution. + // This behavior will recorded for regression testing. + try { + javax.swing.InputMap var20 = var3.getInputMap((-1)); + fail("Expected exception of type java.lang.IllegalArgumentException"); + } catch (java.lang.IllegalArgumentException e) { + // Expected exception. + } + + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var2 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == false); + + } + + public void test145() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test145"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + SpaceWar.SpacePanel var5 = new SpaceWar.SpacePanel(); + float var6 = var5.getAlignmentX(); + var5.setVisible(false); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + java.awt.Color var10 = var9.getBackground(); + var5.setForeground(var10); + var0.setBackground(var10); + javax.swing.plaf.PanelUI var13 = var0.getUI(); + java.awt.event.HierarchyBoundsListener[] var14 = var0.getHierarchyBoundsListeners(); + java.beans.VetoableChangeListener[] var15 = var0.getVetoableChangeListeners(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + } + + public void test146() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test146"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + var0.list(); + float var6 = var0.getAlignmentY(); + java.awt.event.ComponentListener[] var7 = var0.getComponentListeners(); + java.awt.Component var8 = var0.getNextFocusableComponent(); + boolean var9 = var0.isManagingFocus(); + javax.swing.border.Border var10 = var0.getBorder(); + java.awt.Container var11 = var0.getFocusCycleRootAncestor(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertNull(var11); + + } + + public void test147() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test147"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var6 = var0.getUI(); + java.awt.im.InputMethodRequests var7 = var0.getInputMethodRequests(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + var8.nextFocus(); + var8.updateUI(); + var8.enableInputMethods(true); + var8.setSize((-1), 1); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + var19.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var0.add((java.awt.Component)var8, (java.lang.Object)"SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + java.awt.event.KeyListener[] var25 = var0.getKeyListeners(); + java.awt.FocusTraversalPolicy var26 = var0.getFocusTraversalPolicy(); + java.awt.Component var29 = var0.locate(3, 100); + SpaceWar.SpacePanel var30 = new SpaceWar.SpacePanel(); + float var31 = var30.getAlignmentX(); + var30.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var36 = var30.getMouseListeners(); + java.awt.Dimension var37 = var30.getPreferredSize(); + java.util.Locale var38 = var30.getLocale(); + var30.setFocusable(true); + var30.setSize(3, 10); + SpaceWar.SpacePanel var44 = new SpaceWar.SpacePanel(); + float var45 = var44.getAlignmentX(); + var44.setVisible(false); + java.awt.Dimension var48 = var44.getPreferredSize(); + boolean var49 = var44.getVerifyInputWhenFocusTarget(); + java.awt.Dimension var50 = var44.size(); + var30.setSize(var50); + var0.setMinimumSize(var50); + boolean var53 = var0.getIgnoreRepaint(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var25); + + // Regression assertion (captures the current behavior of the code) + assertNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertNull(var29); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var31 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var36); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var37); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var38); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var45 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var48); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var49 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var50); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var53 == false); + + } + + public void test148() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test148"); + + + SpaceWar.Player var0 = new SpaceWar.Player(); + int var1 = var0.getR(); + var0.setRigth(false); + int var4 = var0.getY(); + int var5 = var0.getPower(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 25); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 500); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == 0); + + } + + public void test149() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test149"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + boolean var4 = var0.inside(0, (-1)); + SpaceWar.SpacePanel var5 = new SpaceWar.SpacePanel(); + float var6 = var5.getAlignmentX(); + var5.setVisible(false); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + java.awt.Color var10 = var9.getBackground(); + var5.setForeground(var10); + var0.setForeground(var10); + java.awt.dnd.DropTarget var13 = var0.getDropTarget(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertNull(var13); + + } + + public void test150() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test150"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.updateUI(); + var0.enableInputMethods(true); + java.awt.Point var9 = var0.getMousePosition(false); + java.awt.Point var10 = var0.getMousePosition(); + var0.revalidate(); + java.awt.Insets var12 = var0.getInsets(); + SpaceWar.SpacePanel var13 = new SpaceWar.SpacePanel(); + float var14 = var13.getAlignmentX(); + var13.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var19 = var13.getUI(); + var13.disable(); + java.awt.FocusTraversalPolicy var21 = var13.getFocusTraversalPolicy(); + boolean var22 = var0.isFocusCycleRoot((java.awt.Container)var13); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNull(var9); + + // Regression assertion (captures the current behavior of the code) + assertNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertNull(var21); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var22 == false); + + } + + public void test151() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test151"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var6 = var0.getMouseListeners(); + java.awt.Dimension var7 = var0.getPreferredSize(); + java.util.Locale var8 = var0.getLocale(); + var0.setFocusable(true); + var0.setSize(3, 10); + var0.invalidate(); + boolean var15 = var0.isValid(); + boolean var16 = var0.getVerifyInputWhenFocusTarget(); + var0.enableInputMethods(false); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + float var20 = var19.getAlignmentX(); + boolean var21 = var19.hasFocus(); + java.awt.Insets var22 = var19.getInsets(); + java.awt.Dimension var23 = var19.getPreferredSize(); + var0.setMaximumSize(var23); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var23); + + } + + public void test152() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test152"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var6 = var0.getUI(); + java.awt.im.InputMethodRequests var7 = var0.getInputMethodRequests(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + var8.nextFocus(); + var8.updateUI(); + var8.enableInputMethods(true); + var8.setSize((-1), 1); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + var19.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var0.add((java.awt.Component)var8, (java.lang.Object)"SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + java.awt.event.KeyListener[] var25 = var0.getKeyListeners(); + java.awt.FocusTraversalPolicy var26 = var0.getFocusTraversalPolicy(); + var0.setEnabled(false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var25); + + // Regression assertion (captures the current behavior of the code) + assertNull(var26); + + } + + public void test153() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test153"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + SpaceWar.SpacePanel var2 = new SpaceWar.SpacePanel(); + float var3 = var2.getAlignmentX(); + var2.setVisible(false); + java.awt.Dimension var6 = var2.getPreferredSize(); + boolean var7 = var2.getVerifyInputWhenFocusTarget(); + java.awt.Component var10 = var2.findComponentAt(10, 1); + var0.addKeyListener((java.awt.event.KeyListener)var2); + boolean var12 = var2.getFocusTraversalKeysEnabled(); + int var13 = var2.getWidth(); + var2.setAlignmentY(100.0f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == 0); + + } + + public void test154() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test154"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.reshape((-1), 1, (-1), 10); + var0.disable(); + java.awt.LayoutManager var11 = var0.getLayout(); + java.awt.Container var12 = var0.getParent(); + boolean var13 = var0.isOptimizedDrawingEnabled(); + var0.enableInputMethods(true); + java.awt.Graphics var16 = var0.getGraphics(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var16); + + } + + public void test155() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test155"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + var0.show(false); + boolean var8 = var0.isPaintingForPrint(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var15 = var9.getMouseListeners(); + int var16 = var9.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var17 = var9.getInputMethodRequests(); + var0.addKeyListener((java.awt.event.KeyListener)var9); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + float var20 = var19.getAlignmentX(); + var19.setVisible(false); + boolean var23 = var19.isDoubleBuffered(); + var19.list(); + float var25 = var19.getAlignmentY(); + boolean var26 = var9.isFocusCycleRoot((java.awt.Container)var19); + boolean var27 = var19.isEnabled(); + java.awt.Dimension var28 = var19.getMaximumSize(); + var19.setFocusCycleRoot(false); + java.awt.event.ComponentListener[] var31 = var19.getComponentListeners(); + var19.paintImmediately(100, 100, 100, 499); + var19.repaint(100L, 25, (-1), 100, (-1)); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var28); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var31); + + } + + public void test156() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test156"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + var0.list(); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + float var7 = var6.getAlignmentX(); + var6.setVisible(false); + boolean var10 = var6.isDoubleBuffered(); + java.awt.dnd.DropTarget var11 = var6.getDropTarget(); + var6.show(false); + java.awt.Rectangle var14 = var6.getVisibleRect(); + java.awt.Rectangle var15 = var0.getBounds(var14); + javax.swing.JToolTip var16 = var0.createToolTip(); + var0.firePropertyChange("", false, false); + var0.setFocusTraversalKeysEnabled(false); + boolean var23 = var0.isValid(); + var0.requestFocus(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == false); + + } + + public void test157() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test157"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + var0.setRequestFocusEnabled(false); + var0.setIgnoreRepaint(false); + boolean var7 = var0.requestFocusInWindow(); + var0.setVisible(true); + java.awt.Container var10 = var0.getParent(); + var0.setLocation(400, 24); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var10); + + } + + public void test158() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test158"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + java.awt.Dimension var4 = var0.getPreferredSize(); + java.awt.Toolkit var5 = var0.getToolkit(); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + var6.setName(""); + int var9 = var6.getX(); + SpaceWar.SpacePanel var10 = new SpaceWar.SpacePanel(); + float var11 = var10.getAlignmentX(); + var10.setVisible(false); + var10.nextFocus(); + SpaceWar.SpacePanel var15 = new SpaceWar.SpacePanel(); + float var16 = var15.getAlignmentX(); + var15.setVisible(false); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + java.awt.Color var20 = var19.getBackground(); + var15.setForeground(var20); + var10.setBackground(var20); + var6.setBackground(var20); + var0.setForeground(var20); + SpaceWar.SpacePanel var25 = new SpaceWar.SpacePanel(); + float var26 = var25.getAlignmentX(); + var25.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var31 = new SpaceWar.SpacePanel(); + float var32 = var31.getAlignmentX(); + var31.setVisible(false); + java.awt.Dimension var35 = var31.getPreferredSize(); + var25.setMaximumSize(var35); + boolean var37 = var25.getVerifyInputWhenFocusTarget(); + javax.accessibility.AccessibleContext var38 = var25.getAccessibleContext(); + boolean var39 = var25.isDoubleBuffered(); + java.awt.Rectangle var40 = var25.getVisibleRect(); + var0.scrollRectToVisible(var40); + SpaceWar.SpacePanel var42 = new SpaceWar.SpacePanel(); + float var43 = var42.getAlignmentX(); + var42.setVisible(false); + java.awt.Dimension var46 = var42.getPreferredSize(); + java.awt.Toolkit var47 = var42.getToolkit(); + SpaceWar.SpacePanel var48 = new SpaceWar.SpacePanel(); + var48.setName(""); + int var51 = var48.getX(); + SpaceWar.SpacePanel var52 = new SpaceWar.SpacePanel(); + float var53 = var52.getAlignmentX(); + var52.setVisible(false); + var52.nextFocus(); + SpaceWar.SpacePanel var57 = new SpaceWar.SpacePanel(); + float var58 = var57.getAlignmentX(); + var57.setVisible(false); + SpaceWar.SpacePanel var61 = new SpaceWar.SpacePanel(); + java.awt.Color var62 = var61.getBackground(); + var57.setForeground(var62); + var52.setBackground(var62); + var48.setBackground(var62); + var42.setForeground(var62); + SpaceWar.SpacePanel var67 = new SpaceWar.SpacePanel(); + float var68 = var67.getAlignmentX(); + var67.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var73 = new SpaceWar.SpacePanel(); + float var74 = var73.getAlignmentX(); + var73.setVisible(false); + java.awt.Dimension var77 = var73.getPreferredSize(); + var67.setMaximumSize(var77); + boolean var79 = var67.getVerifyInputWhenFocusTarget(); + javax.accessibility.AccessibleContext var80 = var67.getAccessibleContext(); + boolean var81 = var67.isDoubleBuffered(); + java.awt.Rectangle var82 = var67.getVisibleRect(); + var42.scrollRectToVisible(var82); + var0.removeKeyListener((java.awt.event.KeyListener)var42); + var42.firePropertyChange("PanelUI", (short)1, (short)1); + java.lang.String var89 = var42.getToolTipText(); + int var90 = var42.getY(); + java.awt.Graphics var91 = var42.getGraphics(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var4); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var32 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var35); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var38); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var39 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var40); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var43 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var46); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var47); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var51 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var53 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var58 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var62); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var68 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var74 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var77); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var79 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var80); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var81 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var82); + + // Regression assertion (captures the current behavior of the code) + assertNull(var89); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var90 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var91); + + } + + public void test159() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test159"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + java.awt.Dimension var4 = var0.getPreferredSize(); + boolean var5 = var0.getVerifyInputWhenFocusTarget(); + java.awt.Component var8 = var0.findComponentAt(10, 1); + boolean var9 = var0.isCursorSet(); + var0.repaint((-1), 400, 100, 100); + boolean var15 = var0.isValid(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var4); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == false); + + } + + public void test160() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test160"); + + + SpaceWar.PowerUp var3 = new SpaceWar.PowerUp(100, (-1.0d), 0.0d); + double var4 = var3.getX(); + double var5 = var3.getY(); + boolean var6 = var3.update(); + int var7 = var3.getType(); + double var8 = var3.getX(); + boolean var9 = var3.update(); + double var10 = var3.getX(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == (-1.0d)); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == 0.0d); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 100); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == (-1.0d)); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == (-1.0d)); + + } + + public void test161() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test161"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + var0.setRequestFocusEnabled(false); + var0.reshape(100, 0, 100, 0); + var0.requestFocus(); + var0.firePropertyChange("hi!", '4', ' '); + java.awt.Point var15 = var0.getLocation(); + java.awt.Dimension var16 = var0.size(); + java.awt.Image var19 = var0.createImage((-1), (-1)); + java.awt.event.ComponentListener[] var20 = var0.getComponentListeners(); + SpaceWar.SpacePanel var21 = new SpaceWar.SpacePanel(); + var21.setName(""); + java.awt.ComponentOrientation var24 = var21.getComponentOrientation(); + var21.firePropertyChange("PanelUI", 1.0f, 0.5f); + int var29 = var0.getComponentZOrder((java.awt.Component)var21); + var0.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", 100.0f, 0.0f); + boolean var34 = var0.getFocusTraversalKeysEnabled(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var29 == (-1)); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var34 == true); + + } + + public void test162() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test162"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var6 = var0.getUI(); + java.awt.im.InputMethodRequests var7 = var0.getInputMethodRequests(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + var8.nextFocus(); + var8.updateUI(); + var8.enableInputMethods(true); + var8.setSize((-1), 1); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + var19.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var0.add((java.awt.Component)var8, (java.lang.Object)"SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + var8.setAutoscrolls(true); + SpaceWar.SpacePanel var27 = new SpaceWar.SpacePanel(); + float var28 = var27.getAlignmentX(); + var27.setVisible(false); + var27.nextFocus(); + var27.reshape((-1), 1, (-1), 10); + var27.disable(); + java.awt.Component var40 = var27.findComponentAt(0, (-1)); + SpaceWar.SpacePanel var41 = new SpaceWar.SpacePanel(); + var41.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + javax.swing.plaf.PanelUI var46 = var41.getUI(); + SpaceWar.SpacePanel var47 = new SpaceWar.SpacePanel(); + float var48 = var47.getAlignmentX(); + var47.setVisible(false); + var47.nextFocus(); + var47.repaint(1L); + SpaceWar.SpacePanel var54 = new SpaceWar.SpacePanel(); + float var55 = var54.getAlignmentX(); + var54.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var60 = new SpaceWar.SpacePanel(); + float var61 = var60.getAlignmentX(); + var60.setVisible(false); + java.awt.Dimension var64 = var60.getPreferredSize(); + var54.setMaximumSize(var64); + var47.setPreferredSize(var64); + var41.setMaximumSize(var64); + var27.setSize(var64); + var8.setMaximumSize(var64); + int var70 = var8.getHeight(); + var8.setAlignmentY(1.0f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var28 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNull(var40); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var46); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var48 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var55 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var61 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var64); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var70 == 1); + + } + + public void test163() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test163"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + float var6 = var0.getAlignmentY(); + var0.repaint((-1L)); + boolean var9 = var0.isEnabled(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == true); + + } + + public void test164() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test164"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + SpaceWar.SpacePanel var5 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + java.awt.Color var7 = var6.getBackground(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + var8.nextFocus(); + var8.updateUI(); + var8.enableInputMethods(true); + var5.add((java.awt.Component)var6, (java.lang.Object)true); + java.awt.Dimension var17 = var6.getPreferredSize(); + var0.setMaximumSize(var17); + javax.swing.InputVerifier var19 = var0.getInputVerifier(); + SpaceWar.SpacePanel var20 = new SpaceWar.SpacePanel(); + float var21 = var20.getAlignmentX(); + var20.setVisible(false); + var20.nextFocus(); + var20.reshape((-1), 1, (-1), 10); + java.util.Set var31 = var20.getFocusTraversalKeys(3); + java.awt.Point var32 = var20.getLocation(); + boolean var33 = var0.contains(var32); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var31); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var32); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var33 == false); + + } + + public void test165() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test165"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var6 = var0.getMouseListeners(); + int var7 = var0.getDebugGraphicsOptions(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + boolean var12 = var8.isDoubleBuffered(); + java.awt.dnd.DropTarget var13 = var8.getDropTarget(); + var8.show(false); + java.awt.Rectangle var16 = var8.getVisibleRect(); + var0.paintImmediately(var16); + SpaceWar.SpacePanel var18 = new SpaceWar.SpacePanel(); + float var19 = var18.getAlignmentX(); + var18.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var24 = var18.getMouseListeners(); + int var25 = var18.getDebugGraphicsOptions(); + SpaceWar.SpacePanel var26 = new SpaceWar.SpacePanel(); + float var27 = var26.getAlignmentX(); + var26.setVisible(false); + boolean var30 = var26.isDoubleBuffered(); + java.awt.dnd.DropTarget var31 = var26.getDropTarget(); + var26.show(false); + java.awt.Rectangle var34 = var26.getVisibleRect(); + var18.paintImmediately(var34); + java.awt.Rectangle var36 = var18.getBounds(); + var0.scrollRectToVisible(var36); + var0.setFocusTraversalPolicyProvider(true); + boolean var40 = var0.requestDefaultFocus(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var30 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var31); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var34); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var36); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var40 == false); + + } + + public void test166() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test166"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + var0.enable(false); + java.awt.Container var7 = var0.getTopLevelAncestor(); + java.awt.Rectangle var8 = var0.getVisibleRect(); + java.awt.Dimension var9 = var0.getMaximumSize(); + javax.swing.InputMap var10 = var0.getInputMap(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var9); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var10); + + } + + public void test167() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test167"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + boolean var2 = var0.hasFocus(); + boolean var3 = var0.isPreferredSizeSet(); + SpaceWar.SpacePanel var4 = new SpaceWar.SpacePanel(); + java.awt.Color var5 = var4.getBackground(); + var4.repaint(); + var4.setRequestFocusEnabled(false); + int var9 = var0.getComponentZOrder((java.awt.Component)var4); + int var10 = var0.getDebugGraphicsOptions(); + java.awt.Component.BaselineResizeBehavior var11 = var0.getBaselineResizeBehavior(); + boolean var12 = var0.isShowing(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var2 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == (-1)); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == false); + + } + + public void test168() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test168"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + var0.setRequestFocusEnabled(false); + var0.setIgnoreRepaint(false); + java.lang.String var7 = var0.toString(); + java.awt.Color var8 = var0.getBackground(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.setVisible(false); + java.awt.Dimension var13 = var9.getPreferredSize(); + java.awt.Toolkit var14 = var9.getToolkit(); + java.awt.Toolkit var15 = var9.getToolkit(); + SpaceWar.Player var16 = new SpaceWar.Player(); + var16.increasePower(25); + int var19 = var16.getScore(); + var16.setRigth(true); + var16.loseLife(); + var0.putClientProperty((java.lang.Object)var9, (java.lang.Object)var16); + SpaceWar.SpacePanel var24 = new SpaceWar.SpacePanel(); + float var25 = var24.getAlignmentX(); + var24.setVisible(false); + var24.setInheritsPopupMenu(false); + var24.move(10, 10); + var24.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + java.awt.event.KeyListener[] var37 = var24.getKeyListeners(); + var9.removeKeyListener((java.awt.event.KeyListener)var24); + java.lang.Object var39 = var9.getTreeLock(); + boolean var40 = var9.getIgnoreRepaint(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var7 + "' != '" + "SpaceWar.SpacePanel[,0,0,0var7,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"+ "'", var7.equals("SpaceWar.SpacePanel[,0,0,0var7,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]")); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var37); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var39); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var40 == false); + + } + + public void test169() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test169"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + var0.setName(""); + java.awt.Graphics var3 = var0.getGraphics(); + java.awt.event.MouseMotionListener[] var4 = var0.getMouseMotionListeners(); + boolean var5 = var0.getIgnoreRepaint(); + var0.transferFocusBackward(); + var0.enable(); + boolean var8 = var0.isFocusable(); + // The following exception was thrown during execution. + // This behavior will recorded for regression testing. + try { + java.awt.Point var9 = var0.getLocationOnScreen(); + fail("Expected exception of type java.awt.IllegalComponentStateException"); + } catch (java.awt.IllegalComponentStateException e) { + // Expected exception. + } + + + // Regression assertion (captures the current behavior of the code) + assertNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var4); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == true); + + } + + public void test170() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test170"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + boolean var2 = var0.hasFocus(); + boolean var3 = var0.isPreferredSizeSet(); + var0.firePropertyChange("", (short)1, (short)0); + boolean var8 = var0.isMaximumSizeSet(); + var0.list(); + java.awt.Rectangle var10 = var0.getBounds(); + java.awt.Font var11 = var0.getFont(); + java.awt.Component.BaselineResizeBehavior var12 = var0.getBaselineResizeBehavior(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var2 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var12); + + } + + public void test171() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test171"); + + + SpaceWar.Player var0 = new SpaceWar.Player(); + var0.increasePower(25); + int var3 = var0.getScore(); + var0.setRigth(true); + int var6 = var0.getRequiredPower(); + var0.setLeft(false); + var0.setLife(1); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == 2); + + } + + public void test172() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test172"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + SpaceWar.SpacePanel var4 = new SpaceWar.SpacePanel(); + java.awt.Color var5 = var4.getBackground(); + var0.setForeground(var5); + SpaceWar.SpacePanel var7 = new SpaceWar.SpacePanel(); + float var8 = var7.getAlignmentX(); + var7.setVisible(false); + boolean var11 = var7.isDoubleBuffered(); + java.awt.dnd.DropTarget var12 = var7.getDropTarget(); + var7.show(false); + java.awt.Rectangle var15 = var7.getVisibleRect(); + var0.repaint(var15); + java.awt.FocusTraversalPolicy var17 = var0.getFocusTraversalPolicy(); + SpaceWar.SpacePanel var18 = new SpaceWar.SpacePanel(); + float var19 = var18.getAlignmentX(); + var18.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var24 = var18.getUI(); + java.awt.im.InputMethodRequests var25 = var18.getInputMethodRequests(); + SpaceWar.SpacePanel var26 = new SpaceWar.SpacePanel(); + float var27 = var26.getAlignmentX(); + var26.setVisible(false); + var26.nextFocus(); + var26.updateUI(); + var26.enableInputMethods(true); + var26.setSize((-1), 1); + SpaceWar.SpacePanel var37 = new SpaceWar.SpacePanel(); + var37.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var18.add((java.awt.Component)var26, (java.lang.Object)"SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + java.awt.ComponentOrientation var43 = var26.getComponentOrientation(); + java.beans.VetoableChangeListener[] var44 = var26.getVetoableChangeListeners(); + int var45 = var26.getHeight(); + javax.swing.ActionMap var46 = var26.getActionMap(); + var0.setActionMap(var46); + java.awt.Font var48 = var0.getFont(); + java.awt.Rectangle var49 = var0.getVisibleRect(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertNull(var25); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var43); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var44); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var45 == 1); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var46); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var48); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var49); + + } + + public void test173() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test173"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var6 = var0.getUI(); + java.awt.im.InputMethodRequests var7 = var0.getInputMethodRequests(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + var8.nextFocus(); + var8.updateUI(); + var8.enableInputMethods(true); + var8.setSize((-1), 1); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + var19.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var0.add((java.awt.Component)var8, (java.lang.Object)"SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + var8.setAutoscrolls(true); + SpaceWar.SpacePanel var27 = new SpaceWar.SpacePanel(); + float var28 = var27.getAlignmentX(); + boolean var29 = var27.hasFocus(); + boolean var30 = var27.isPreferredSizeSet(); + var27.firePropertyChange("", (short)1, (short)0); + boolean var35 = var27.isMaximumSizeSet(); + java.awt.peer.ComponentPeer var36 = var27.getPeer(); + java.awt.ComponentOrientation var37 = var27.getComponentOrientation(); + var8.setComponentOrientation(var37); + SpaceWar.SpacePanel var39 = new SpaceWar.SpacePanel(); + float var40 = var39.getAlignmentX(); + var39.setVisible(false); + boolean var43 = var39.isDoubleBuffered(); + var39.list(); + SpaceWar.SpacePanel var45 = new SpaceWar.SpacePanel(); + float var46 = var45.getAlignmentX(); + var45.setVisible(false); + boolean var49 = var45.isDoubleBuffered(); + java.awt.dnd.DropTarget var50 = var45.getDropTarget(); + var45.show(false); + java.awt.Rectangle var53 = var45.getVisibleRect(); + java.awt.image.BufferedImage var55 = var45.loadImg("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + boolean var56 = var39.isAncestorOf((java.awt.Component)var45); + java.awt.GraphicsConfiguration var57 = var45.getGraphicsConfiguration(); + java.awt.Font var58 = var45.getFont(); + javax.swing.InputMap var59 = var45.getInputMap(); + SpaceWar.SpacePanel var60 = new SpaceWar.SpacePanel(); + float var61 = var60.getAlignmentX(); + var60.setVisible(false); + java.awt.Dimension var64 = var60.getPreferredSize(); + boolean var65 = var60.getVerifyInputWhenFocusTarget(); + java.awt.event.MouseWheelListener[] var66 = var60.getMouseWheelListeners(); + java.awt.event.MouseWheelListener[] var67 = var60.getMouseWheelListeners(); + boolean var69 = var60.requestFocus(false); + // The following exception was thrown during execution. + // This behavior will recorded for regression testing. + try { + var8.add((java.awt.Component)var45, (java.lang.Object)var60, 3); + fail("Expected exception of type java.lang.IllegalArgumentException"); + } catch (java.lang.IllegalArgumentException e) { + // Expected exception. + } + + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var28 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var29 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var30 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var35 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var36); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var37); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var40 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var43 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var46 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var49 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var50); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var53); + + // Regression assertion (captures the current behavior of the code) + assertNull(var55); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var56 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var57); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var58); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var59); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var61 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var64); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var65 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var66); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var67); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var69 == false); + + } + + public void test174() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test174"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + var0.setRequestFocusEnabled(false); + var0.reshape(100, 0, 100, 0); + javax.swing.event.AncestorListener[] var10 = var0.getAncestorListeners(); + var0.setOpaque(true); + var0.show(); + java.awt.Cursor var14 = var0.getCursor(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + } + + public void test175() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test175"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + SpaceWar.SpacePanel var4 = new SpaceWar.SpacePanel(); + java.awt.Color var5 = var4.getBackground(); + var0.setForeground(var5); + SpaceWar.SpacePanel var7 = new SpaceWar.SpacePanel(); + float var8 = var7.getAlignmentX(); + var7.setVisible(false); + boolean var11 = var7.isDoubleBuffered(); + java.awt.dnd.DropTarget var12 = var7.getDropTarget(); + var7.show(false); + java.awt.Rectangle var15 = var7.getVisibleRect(); + var0.repaint(var15); + SpaceWar.SpacePanel var17 = new SpaceWar.SpacePanel(); + float var18 = var17.getAlignmentX(); + var17.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var23 = var17.getMouseListeners(); + java.awt.Dimension var24 = var17.getPreferredSize(); + java.util.Locale var25 = var17.getLocale(); + var0.setLocale(var25); + java.util.Locale var27 = var0.getLocale(); + SpaceWar.SpacePanel var28 = new SpaceWar.SpacePanel(); + float var29 = var28.getAlignmentX(); + var28.setVisible(false); + boolean var32 = var28.isDoubleBuffered(); + java.awt.dnd.DropTarget var33 = var28.getDropTarget(); + boolean var34 = var28.isFocusCycleRoot(); + var28.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", 100, 0); + SpaceWar.SpacePanel var39 = new SpaceWar.SpacePanel(); + float var40 = var39.getAlignmentX(); + var39.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var45 = var39.getUI(); + var28.add((java.awt.Component)var39, (java.lang.Object)(short)0); + java.awt.event.InputMethodListener[] var48 = var39.getInputMethodListeners(); + java.awt.Toolkit var49 = var39.getToolkit(); + boolean var50 = var39.isDoubleBuffered(); + boolean var51 = var0.isAncestorOf((java.awt.Component)var39); + boolean var52 = var0.isValid(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var23); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var25); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var27); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var29 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var32 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var33); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var34 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var40 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var45); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var48); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var49); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var50 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var51 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var52 == false); + + } + + public void test176() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test176"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + var0.list(); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + float var7 = var6.getAlignmentX(); + var6.setVisible(false); + boolean var10 = var6.isDoubleBuffered(); + java.awt.dnd.DropTarget var11 = var6.getDropTarget(); + var6.show(false); + java.awt.Rectangle var14 = var6.getVisibleRect(); + java.awt.image.BufferedImage var16 = var6.loadImg("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + boolean var17 = var0.isAncestorOf((java.awt.Component)var6); + java.awt.GraphicsConfiguration var18 = var6.getGraphicsConfiguration(); + java.awt.Font var19 = var6.getFont(); + var6.setDebugGraphicsOptions(400); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var19); + + } + + public void test177() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test177"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + var0.setRequestFocusEnabled(false); + var0.removeAll(); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + float var7 = var6.getAlignmentX(); + var6.setVisible(false); + boolean var10 = var6.isDoubleBuffered(); + java.awt.dnd.DropTarget var11 = var6.getDropTarget(); + var6.show(false); + boolean var14 = var6.isPaintingForPrint(); + SpaceWar.SpacePanel var15 = new SpaceWar.SpacePanel(); + float var16 = var15.getAlignmentX(); + var15.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var21 = var15.getMouseListeners(); + int var22 = var15.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var23 = var15.getInputMethodRequests(); + var6.addKeyListener((java.awt.event.KeyListener)var15); + SpaceWar.SpacePanel var25 = new SpaceWar.SpacePanel(); + float var26 = var25.getAlignmentX(); + var25.setVisible(false); + boolean var29 = var25.isDoubleBuffered(); + var25.list(); + float var31 = var25.getAlignmentY(); + boolean var32 = var15.isFocusCycleRoot((java.awt.Container)var25); + SpaceWar.SpacePanel var34 = new SpaceWar.SpacePanel(); + float var35 = var34.getAlignmentX(); + var34.setVisible(false); + var34.nextFocus(); + var34.updateUI(); + java.awt.Component var40 = var15.add("", (java.awt.Component)var34); + boolean var41 = var0.isAncestorOf((java.awt.Component)var34); + var34.transferFocusBackward(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var21); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var22 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var23); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var29 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var31 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var32 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var35 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var40); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var41 == false); + + } + + public void test178() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test178"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + SpaceWar.SpacePanel var4 = new SpaceWar.SpacePanel(); + java.awt.Color var5 = var4.getBackground(); + var0.setForeground(var5); + SpaceWar.SpacePanel var7 = new SpaceWar.SpacePanel(); + float var8 = var7.getAlignmentX(); + var7.setVisible(false); + boolean var11 = var7.isDoubleBuffered(); + java.awt.dnd.DropTarget var12 = var7.getDropTarget(); + var7.show(false); + java.awt.Rectangle var15 = var7.getVisibleRect(); + var0.repaint(var15); + java.awt.FocusTraversalPolicy var17 = var0.getFocusTraversalPolicy(); + java.awt.im.InputMethodRequests var18 = var0.getInputMethodRequests(); + var0.layout(); + boolean var20 = var0.isFocusTraversalPolicyProvider(); + java.awt.Insets var21 = var0.insets(); + boolean var22 = var0.isFocusCycleRoot(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var21); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var22 == false); + + } + + public void test179() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test179"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.updateUI(); + var0.enableInputMethods(true); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + boolean var10 = var8.hasFocus(); + java.awt.Insets var11 = var8.getInsets(); + java.awt.Insets var12 = var0.getInsets(var11); + var0.enable(true); + var0.nextFocus(); + // The following exception was thrown during execution. + // This behavior will recorded for regression testing. + try { + javax.swing.InputMap var17 = var0.getInputMap(400); + fail("Expected exception of type java.lang.IllegalArgumentException"); + } catch (java.lang.IllegalArgumentException e) { + // Expected exception. + } + + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var12); + + } + + public void test180() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test180"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var6 = var0.getMouseListeners(); + int var7 = var0.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var8 = var0.getInputMethodRequests(); + var0.removeNotify(); + var0.enable(); + SpaceWar.SpacePanel var11 = new SpaceWar.SpacePanel(); + java.awt.Color var12 = var11.getBackground(); + boolean var15 = var11.inside(0, (-1)); + var11.transferFocusUpCycle(); + java.lang.String var17 = var11.getName(); + boolean var18 = var0.isFocusCycleRoot((java.awt.Container)var11); + boolean var19 = var11.isCursorSet(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == false); + + } + + public void test181() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test181"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + java.awt.Dimension var4 = var0.getPreferredSize(); + boolean var5 = var0.getVerifyInputWhenFocusTarget(); + java.awt.Component var8 = var0.findComponentAt(10, 1); + boolean var9 = var0.requestDefaultFocus(); + var0.firePropertyChange("hi!", false, true); + boolean var14 = var0.isManagingFocus(); + SpaceWar.SpacePanel var15 = new SpaceWar.SpacePanel(); + float var16 = var15.getAlignmentX(); + var15.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var21 = var15.getUI(); + java.awt.im.InputMethodRequests var22 = var15.getInputMethodRequests(); + SpaceWar.SpacePanel var23 = new SpaceWar.SpacePanel(); + float var24 = var23.getAlignmentX(); + var23.setVisible(false); + var23.nextFocus(); + var23.updateUI(); + var23.enableInputMethods(true); + var23.setSize((-1), 1); + SpaceWar.SpacePanel var34 = new SpaceWar.SpacePanel(); + var34.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var15.add((java.awt.Component)var23, (java.lang.Object)"SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + SpaceWar.SpacePanel var40 = new SpaceWar.SpacePanel(); + float var41 = var40.getAlignmentX(); + var40.setVisible(false); + java.awt.Dimension var44 = var40.getPreferredSize(); + java.awt.Toolkit var45 = var40.getToolkit(); + java.awt.Toolkit var46 = var40.getToolkit(); + java.awt.Component var47 = var23.add((java.awt.Component)var40); + var47.firePropertyChange("", 0.5f, 10.0f); + SpaceWar.SpacePanel var52 = new SpaceWar.SpacePanel(); + float var53 = var52.getAlignmentX(); + var52.setVisible(false); + var52.setInheritsPopupMenu(false); + var52.move(10, 10); + var52.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + java.awt.Rectangle var65 = var52.bounds(); + var47.setBounds(var65); + java.awt.Rectangle var67 = var0.getBounds(var65); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var4); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var21); + + // Regression assertion (captures the current behavior of the code) + assertNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var24 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var41 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var44); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var45); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var46); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var47); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var53 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var65); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var67); + + } + + public void test182() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test182"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + var0.setRequestFocusEnabled(false); + var0.setIgnoreRepaint(false); + java.lang.String var7 = var0.toString(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var14 = var8.getUI(); + java.awt.im.InputMethodRequests var15 = var8.getInputMethodRequests(); + SpaceWar.SpacePanel var16 = new SpaceWar.SpacePanel(); + float var17 = var16.getAlignmentX(); + var16.setVisible(false); + var16.nextFocus(); + var16.updateUI(); + var16.enableInputMethods(true); + var16.setSize((-1), 1); + SpaceWar.SpacePanel var27 = new SpaceWar.SpacePanel(); + var27.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var8.add((java.awt.Component)var16, (java.lang.Object)"SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + java.awt.ComponentOrientation var33 = var16.getComponentOrientation(); + var0.setComponentOrientation(var33); + boolean var35 = var0.isFocusTraversable(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var7 + "' != '" + "SpaceWar.SpacePanel[,0,0,0var7,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"+ "'", var7.equals("SpaceWar.SpacePanel[,0,0,0var7,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]")); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var33); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var35 == true); + + } + + public void test183() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test183"); + + + SpaceWar.Enemy var2 = new SpaceWar.Enemy(0, 10); + int var3 = var2.getRank(); + int var4 = var2.getR(); + int var5 = var2.getType(); + int var6 = var2.getType(); + java.awt.image.BufferedImage var8 = var2.loadImg("SpaceWar.SpacePanel[,0,0,0x0,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + boolean var9 = var2.isDead(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == 10); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == false); + + } + + public void test184() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test184"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + float var7 = var6.getAlignmentX(); + var6.setVisible(false); + java.awt.Dimension var10 = var6.getPreferredSize(); + var0.setMaximumSize(var10); + boolean var12 = var0.getVerifyInputWhenFocusTarget(); + int var13 = var0.getX(); + SpaceWar.SpacePanel var14 = new SpaceWar.SpacePanel(); + float var15 = var14.getAlignmentX(); + SpaceWar.SpacePanel var16 = new SpaceWar.SpacePanel(); + float var17 = var16.getAlignmentX(); + var16.setVisible(false); + java.awt.Dimension var20 = var16.getPreferredSize(); + boolean var21 = var16.getVerifyInputWhenFocusTarget(); + java.awt.Component var24 = var16.findComponentAt(10, 1); + var14.addKeyListener((java.awt.event.KeyListener)var16); + var16.repaint(100, (-1), (-1), 1); + SpaceWar.SpacePanel var31 = new SpaceWar.SpacePanel(); + java.awt.Color var32 = var31.getBackground(); + var31.repaint(); + java.awt.im.InputMethodRequests var34 = var31.getInputMethodRequests(); + java.awt.GraphicsConfiguration var35 = var31.getGraphicsConfiguration(); + var16.remove((java.awt.Component)var31); + java.awt.Font var37 = var31.getFont(); + var0.setFont(var37); + var0.revalidate(); + SpaceWar.SpacePanel var40 = new SpaceWar.SpacePanel(); + float var41 = var40.getAlignmentX(); + var40.setVisible(false); + boolean var44 = var40.isDoubleBuffered(); + var40.list(); + SpaceWar.SpacePanel var46 = new SpaceWar.SpacePanel(); + float var47 = var46.getAlignmentX(); + var46.setVisible(false); + boolean var50 = var46.isDoubleBuffered(); + java.awt.dnd.DropTarget var51 = var46.getDropTarget(); + var46.show(false); + java.awt.Rectangle var54 = var46.getVisibleRect(); + java.awt.image.BufferedImage var56 = var46.loadImg("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + boolean var57 = var40.isAncestorOf((java.awt.Component)var46); + SpaceWar.SpacePanel var58 = new SpaceWar.SpacePanel(); + java.awt.Color var59 = var58.getBackground(); + var58.repaint(); + var58.setRequestFocusEnabled(false); + var58.setIgnoreRepaint(false); + java.lang.String var65 = var58.toString(); + java.awt.Color var66 = var58.getBackground(); + SpaceWar.SpacePanel var67 = new SpaceWar.SpacePanel(); + float var68 = var67.getAlignmentX(); + var67.setVisible(false); + java.awt.Dimension var71 = var67.getPreferredSize(); + java.awt.Toolkit var72 = var67.getToolkit(); + java.awt.Toolkit var73 = var67.getToolkit(); + SpaceWar.Player var74 = new SpaceWar.Player(); + var74.increasePower(25); + int var77 = var74.getScore(); + var74.setRigth(true); + var74.loseLife(); + var58.putClientProperty((java.lang.Object)var67, (java.lang.Object)var74); + java.awt.Rectangle var82 = var67.bounds(); + java.awt.Rectangle var83 = var46.getBounds(var82); + var0.repaint(var83); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var32); + + // Regression assertion (captures the current behavior of the code) + assertNull(var34); + + // Regression assertion (captures the current behavior of the code) + assertNull(var35); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var37); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var41 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var44 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var47 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var50 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var51); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var54); + + // Regression assertion (captures the current behavior of the code) + assertNull(var56); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var57 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var59); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var65 + "' != '" + "SpaceWar.SpacePanel[,0,0,0var65,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"+ "'", var65.equals("SpaceWar.SpacePanel[,0,0,0var65,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]")); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var66); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var68 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var71); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var72); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var73); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var77 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var82); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var83); + + } + + public void test185() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test185"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + var0.show(false); + boolean var8 = var0.isPaintingForPrint(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var15 = var9.getMouseListeners(); + int var16 = var9.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var17 = var9.getInputMethodRequests(); + var0.addKeyListener((java.awt.event.KeyListener)var9); + var9.firePropertyChange("", (short)0, (short)0); + java.awt.event.MouseMotionListener[] var23 = var9.getMouseMotionListeners(); + int var26 = var9.getBaseline(400, 10); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var23); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == (-1)); + + } + + public void test186() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test186"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var6 = var0.getMouseListeners(); + java.awt.Dimension var7 = var0.getPreferredSize(); + java.util.Locale var8 = var0.getLocale(); + var0.setFocusable(true); + var0.setSize(3, 10); + var0.invalidate(); + boolean var15 = var0.isValid(); + boolean var16 = var0.getVerifyInputWhenFocusTarget(); + var0.enableInputMethods(false); + javax.accessibility.AccessibleContext var19 = var0.getAccessibleContext(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var19); + + } + + public void test187() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test187"); + + + SpaceWar.PowerUp var3 = new SpaceWar.PowerUp(100, (-1.0d), 0.0d); + double var4 = var3.getY(); + double var5 = var3.getX(); + double var6 = var3.getY(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0.0d); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == (-1.0d)); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == 0.0d); + + } + + public void test188() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test188"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + java.awt.im.InputMethodRequests var3 = var0.getInputMethodRequests(); + var0.setDoubleBuffered(true); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + float var7 = var6.getAlignmentX(); + boolean var8 = var6.hasFocus(); + java.awt.Insets var9 = var6.getInsets(); + java.awt.Insets var10 = var0.getInsets(var9); + SpaceWar.SpacePanel var11 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var12 = new SpaceWar.SpacePanel(); + java.awt.Color var13 = var12.getBackground(); + SpaceWar.SpacePanel var14 = new SpaceWar.SpacePanel(); + float var15 = var14.getAlignmentX(); + var14.setVisible(false); + var14.nextFocus(); + var14.updateUI(); + var14.enableInputMethods(true); + var11.add((java.awt.Component)var12, (java.lang.Object)true); + java.awt.Image var25 = var12.createImage(1, (-1)); + SpaceWar.SpacePanel var26 = new SpaceWar.SpacePanel(); + float var27 = var26.getAlignmentX(); + var26.setVisible(false); + var26.nextFocus(); + var26.updateUI(); + var26.enableInputMethods(true); + SpaceWar.SpacePanel var34 = new SpaceWar.SpacePanel(); + float var35 = var34.getAlignmentX(); + boolean var36 = var34.hasFocus(); + java.awt.Insets var37 = var34.getInsets(); + java.awt.Insets var38 = var26.getInsets(var37); + java.awt.Insets var39 = var12.getInsets(var37); + java.awt.Insets var40 = var0.getInsets(var37); + boolean var41 = var0.isPreferredSizeSet(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var9); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNull(var25); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var35 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var36 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var37); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var38); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var39); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var40); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var41 == true); + + } + + public void test189() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test189"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var6 = var0.getUI(); + java.awt.im.InputMethodRequests var7 = var0.getInputMethodRequests(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + var8.nextFocus(); + var8.updateUI(); + var8.enableInputMethods(true); + var8.setSize((-1), 1); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + var19.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var0.add((java.awt.Component)var8, (java.lang.Object)"SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + java.awt.event.KeyListener[] var25 = var0.getKeyListeners(); + var0.repaint(3, 1, 25, 0); + java.awt.Color var31 = var0.getForeground(); + var0.enableInputMethods(false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var25); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var31); + + } + + public void test190() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test190"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.requestFocus(); + boolean var6 = var0.getInheritsPopupMenu(); + boolean var7 = var0.isShowing(); + boolean var8 = var0.isCursorSet(); + boolean var9 = var0.isVisible(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == false); + + } + + public void test191() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test191"); + + + SpaceWar.Player var0 = new SpaceWar.Player(); + int var1 = var0.getR(); + var0.setUp(false); + int var4 = var0.getLives(); + var0.setScore(0); + int var7 = var0.getPowerLevel(); + int var8 = var0.getR(); + int var9 = var0.getY(); + var0.setDown(true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 25); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 3); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 25); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 500); + + } + + public void test192() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test192"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + boolean var4 = var0.inside(0, (-1)); + SpaceWar.SpacePanel var5 = new SpaceWar.SpacePanel(); + float var6 = var5.getAlignmentX(); + var5.setVisible(false); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + java.awt.Color var10 = var9.getBackground(); + var5.setForeground(var10); + var0.setForeground(var10); + var0.setAutoscrolls(false); + java.awt.event.HierarchyListener[] var15 = var0.getHierarchyListeners(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + } + + public void test193() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test193"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.setDoubleBuffered(true); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + float var7 = var6.getAlignmentX(); + var6.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var12 = var6.getMouseListeners(); + java.awt.Dimension var13 = var6.getPreferredSize(); + java.util.Locale var14 = var6.getLocale(); + var6.setFocusable(true); + var6.setSize(3, 10); + SpaceWar.SpacePanel var20 = new SpaceWar.SpacePanel(); + float var21 = var20.getAlignmentX(); + var20.setVisible(false); + java.awt.Dimension var24 = var20.getPreferredSize(); + boolean var25 = var20.getVerifyInputWhenFocusTarget(); + java.awt.Dimension var26 = var20.size(); + var6.setSize(var26); + var0.setSize(var26); + java.lang.String var29 = var0.getUIClassID(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var29 + "' != '" + "PanelUI"+ "'", var29.equals("PanelUI")); + + } + + public void test194() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test194"); + + + SpaceWar.Text var4 = new SpaceWar.Text(3.0d, 596.7541610319765d, 1L, "hi!"); + + } + + public void test195() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test195"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var6 = var0.getUI(); + java.awt.im.InputMethodRequests var7 = var0.getInputMethodRequests(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + var8.nextFocus(); + var8.updateUI(); + var8.enableInputMethods(true); + var8.setSize((-1), 1); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + var19.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var0.add((java.awt.Component)var8, (java.lang.Object)"SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + SpaceWar.SpacePanel var25 = new SpaceWar.SpacePanel(); + float var26 = var25.getAlignmentX(); + var25.setVisible(false); + java.awt.Dimension var29 = var25.getPreferredSize(); + java.awt.Toolkit var30 = var25.getToolkit(); + java.awt.Toolkit var31 = var25.getToolkit(); + java.awt.Component var32 = var8.add((java.awt.Component)var25); + var8.setDebugGraphicsOptions(0); + java.awt.im.InputMethodRequests var35 = var8.getInputMethodRequests(); + SpaceWar.SpacePanel var36 = new SpaceWar.SpacePanel(); + java.awt.Color var37 = var36.getBackground(); + var8.setForeground(var37); + SpaceWar.SpacePanel var39 = new SpaceWar.SpacePanel(); + java.awt.Color var40 = var39.getBackground(); + var39.repaint(); + java.awt.im.InputMethodRequests var42 = var39.getInputMethodRequests(); + int var43 = var39.countComponents(); + java.awt.event.ComponentListener[] var44 = var39.getComponentListeners(); + var39.removeNotify(); + javax.swing.InputMap var46 = var39.getInputMap(); + SpaceWar.SpacePanel var47 = new SpaceWar.SpacePanel(); + float var48 = var47.getAlignmentX(); + var47.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var53 = new SpaceWar.SpacePanel(); + float var54 = var53.getAlignmentX(); + var53.setVisible(false); + SpaceWar.SpacePanel var57 = new SpaceWar.SpacePanel(); + java.awt.Color var58 = var57.getBackground(); + var53.setForeground(var58); + var47.setBackground(var58); + java.awt.Point var61 = var47.location(); + var39.setLocation(var61); + boolean var63 = var8.contains(var61); + var8.transferFocusUpCycle(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var29); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var30); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var31); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var32); + + // Regression assertion (captures the current behavior of the code) + assertNull(var35); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var37); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var40); + + // Regression assertion (captures the current behavior of the code) + assertNull(var42); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var43 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var44); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var46); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var48 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var54 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var58); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var61); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var63 == false); + + } + + public void test196() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test196"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var6 = var0.getMouseListeners(); + int var7 = var0.getDebugGraphicsOptions(); + boolean var8 = var0.getAutoscrolls(); + SpaceWar.SpacePanel var10 = new SpaceWar.SpacePanel(); + float var11 = var10.getAlignmentX(); + var10.setVisible(false); + boolean var14 = var10.isDoubleBuffered(); + var10.list(); + SpaceWar.SpacePanel var16 = new SpaceWar.SpacePanel(); + float var17 = var16.getAlignmentX(); + var16.setVisible(false); + boolean var20 = var16.isDoubleBuffered(); + java.awt.dnd.DropTarget var21 = var16.getDropTarget(); + var16.show(false); + java.awt.Rectangle var24 = var16.getVisibleRect(); + java.awt.Rectangle var25 = var10.getBounds(var24); + javax.swing.JToolTip var26 = var10.createToolTip(); + java.awt.Graphics var27 = var10.getGraphics(); + var10.setAutoscrolls(false); + boolean var30 = var10.requestFocusInWindow(); + SpaceWar.SpacePanel var31 = new SpaceWar.SpacePanel(); + float var32 = var31.getAlignmentX(); + var31.setVisible(false); + var31.nextFocus(); + var31.reshape((-1), 1, (-1), 10); + var31.disable(); + java.awt.LayoutManager var42 = var31.getLayout(); + java.awt.Container var43 = var31.getParent(); + boolean var44 = var31.isOptimizedDrawingEnabled(); + java.awt.Font var45 = var31.getFont(); + java.awt.FontMetrics var46 = var10.getFontMetrics(var45); + javax.swing.InputMap var47 = var10.getInputMap(); + // The following exception was thrown during execution. + // This behavior will recorded for regression testing. + try { + var0.setInputMap((-1), var47); + fail("Expected exception of type java.lang.IllegalArgumentException"); + } catch (java.lang.IllegalArgumentException e) { + // Expected exception. + } + + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var21); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var25); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertNull(var27); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var30 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var32 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var42); + + // Regression assertion (captures the current behavior of the code) + assertNull(var43); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var44 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var45); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var46); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var47); + + } + + public void test197() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test197"); + + + SpaceWar.Enemy var2 = new SpaceWar.Enemy(500, 3); + var2.update(); + + } + + public void test198() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test198"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + boolean var2 = var0.hasFocus(); + boolean var3 = var0.isPreferredSizeSet(); + var0.setLocation((-1), 499); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var2 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == true); + + } + + public void test199() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test199"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.updateUI(); + var0.enableInputMethods(true); + int var8 = var0.getY(); + boolean var9 = var0.isDisplayable(); + SpaceWar.SpacePanel var10 = new SpaceWar.SpacePanel(); + java.awt.Color var11 = var10.getBackground(); + var10.repaint(); + java.awt.im.InputMethodRequests var13 = var10.getInputMethodRequests(); + var10.setDoubleBuffered(true); + var10.setInheritsPopupMenu(false); + javax.swing.InputMap var18 = var10.getInputMap(); + java.awt.Point var19 = var10.location(); + SpaceWar.SpacePanel var20 = new SpaceWar.SpacePanel(); + float var21 = var20.getAlignmentX(); + var20.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var26 = var20.getUI(); + java.awt.im.InputMethodRequests var27 = var20.getInputMethodRequests(); + SpaceWar.SpacePanel var28 = new SpaceWar.SpacePanel(); + float var29 = var28.getAlignmentX(); + var28.setVisible(false); + var28.nextFocus(); + var28.updateUI(); + var28.enableInputMethods(true); + var28.setSize((-1), 1); + SpaceWar.SpacePanel var39 = new SpaceWar.SpacePanel(); + var39.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var20.add((java.awt.Component)var28, (java.lang.Object)"SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + var28.setAutoscrolls(true); + SpaceWar.SpacePanel var47 = new SpaceWar.SpacePanel(); + float var48 = var47.getAlignmentX(); + var47.setVisible(false); + var47.nextFocus(); + var47.reshape((-1), 1, (-1), 10); + var47.disable(); + java.awt.Component var60 = var47.findComponentAt(0, (-1)); + SpaceWar.SpacePanel var61 = new SpaceWar.SpacePanel(); + var61.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + javax.swing.plaf.PanelUI var66 = var61.getUI(); + SpaceWar.SpacePanel var67 = new SpaceWar.SpacePanel(); + float var68 = var67.getAlignmentX(); + var67.setVisible(false); + var67.nextFocus(); + var67.repaint(1L); + SpaceWar.SpacePanel var74 = new SpaceWar.SpacePanel(); + float var75 = var74.getAlignmentX(); + var74.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var80 = new SpaceWar.SpacePanel(); + float var81 = var80.getAlignmentX(); + var80.setVisible(false); + java.awt.Dimension var84 = var80.getPreferredSize(); + var74.setMaximumSize(var84); + var67.setPreferredSize(var84); + var61.setMaximumSize(var84); + var47.setSize(var84); + var28.setMaximumSize(var84); + var10.setMinimumSize(var84); + var0.setMaximumSize(var84); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertNull(var27); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var29 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var48 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNull(var60); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var66); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var68 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var75 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var81 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var84); + + } + + public void test200() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test200"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var6 = var0.getUI(); + java.awt.im.InputMethodRequests var7 = var0.getInputMethodRequests(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + var8.nextFocus(); + var8.updateUI(); + var8.enableInputMethods(true); + var8.setSize((-1), 1); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + var19.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var0.add((java.awt.Component)var8, (java.lang.Object)"SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + var8.doLayout(); + SpaceWar.SpacePanel var26 = new SpaceWar.SpacePanel(); + float var27 = var26.getAlignmentX(); + var26.setVisible(false); + SpaceWar.SpacePanel var30 = new SpaceWar.SpacePanel(); + java.awt.Color var31 = var30.getBackground(); + var26.setForeground(var31); + SpaceWar.SpacePanel var33 = new SpaceWar.SpacePanel(); + float var34 = var33.getAlignmentX(); + var33.setVisible(false); + boolean var37 = var33.isDoubleBuffered(); + java.awt.dnd.DropTarget var38 = var33.getDropTarget(); + var33.show(false); + java.awt.Rectangle var41 = var33.getVisibleRect(); + var26.repaint(var41); + java.awt.FocusTraversalPolicy var43 = var26.getFocusTraversalPolicy(); + var26.resetKeyboardActions(); + SpaceWar.SpacePanel var45 = new SpaceWar.SpacePanel(); + float var46 = var45.getAlignmentX(); + var45.setVisible(false); + boolean var49 = var45.isDoubleBuffered(); + java.awt.dnd.DropTarget var50 = var45.getDropTarget(); + var45.show(false); + java.awt.Rectangle var53 = var45.getVisibleRect(); + var26.computeVisibleRect(var53); + javax.swing.ActionMap var55 = var26.getActionMap(); + var8.setActionMap(var55); + java.lang.Object var57 = var8.getTreeLock(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var31); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var34 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var38); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var41); + + // Regression assertion (captures the current behavior of the code) + assertNull(var43); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var46 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var49 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var50); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var53); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var55); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var57); + + } + + public void test201() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test201"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.reshape((-1), 1, (-1), 10); + var0.disable(); + java.awt.Component var13 = var0.findComponentAt(0, (-1)); + SpaceWar.SpacePanel var14 = new SpaceWar.SpacePanel(); + var14.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + javax.swing.plaf.PanelUI var19 = var14.getUI(); + SpaceWar.SpacePanel var20 = new SpaceWar.SpacePanel(); + float var21 = var20.getAlignmentX(); + var20.setVisible(false); + var20.nextFocus(); + var20.repaint(1L); + SpaceWar.SpacePanel var27 = new SpaceWar.SpacePanel(); + float var28 = var27.getAlignmentX(); + var27.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var33 = new SpaceWar.SpacePanel(); + float var34 = var33.getAlignmentX(); + var33.setVisible(false); + java.awt.Dimension var37 = var33.getPreferredSize(); + var27.setMaximumSize(var37); + var20.setPreferredSize(var37); + var14.setMaximumSize(var37); + var0.setSize(var37); + var0.show(); + int var43 = var0.getDebugGraphicsOptions(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var28 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var34 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var37); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var43 == 0); + + } + + public void test202() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test202"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + java.awt.im.InputMethodRequests var3 = var0.getInputMethodRequests(); + var0.setDoubleBuffered(true); + var0.setInheritsPopupMenu(false); + boolean var8 = var0.isFocusTraversalPolicySet(); + var0.transferFocusUpCycle(); + SpaceWar.SpacePanel var10 = new SpaceWar.SpacePanel(); + float var11 = var10.getAlignmentX(); + var10.setVisible(false); + boolean var14 = var10.isDoubleBuffered(); + java.awt.dnd.DropTarget var15 = var10.getDropTarget(); + var10.show(false); + java.awt.Rectangle var18 = var10.getVisibleRect(); + java.awt.image.BufferedImage var20 = var10.loadImg("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + java.awt.ComponentOrientation var21 = var10.getComponentOrientation(); + java.awt.Component var22 = var0.add((java.awt.Component)var10); + var10.setVerifyInputWhenFocusTarget(true); + java.lang.Object var25 = var10.getTreeLock(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var21); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var25); + + } + + public void test203() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test203"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + SpaceWar.SpacePanel var4 = new SpaceWar.SpacePanel(); + java.awt.Color var5 = var4.getBackground(); + var0.setForeground(var5); + SpaceWar.SpacePanel var7 = new SpaceWar.SpacePanel(); + float var8 = var7.getAlignmentX(); + var7.setVisible(false); + boolean var11 = var7.isDoubleBuffered(); + java.awt.dnd.DropTarget var12 = var7.getDropTarget(); + var7.show(false); + java.awt.Rectangle var15 = var7.getVisibleRect(); + var0.repaint(var15); + java.awt.FocusTraversalPolicy var17 = var0.getFocusTraversalPolicy(); + SpaceWar.SpacePanel var18 = new SpaceWar.SpacePanel(); + float var19 = var18.getAlignmentX(); + var18.firePropertyChange("", (-1), 1); + boolean var24 = var18.isFocusOwner(); + SpaceWar.SpacePanel var26 = new SpaceWar.SpacePanel(); + float var27 = var26.getAlignmentX(); + var26.setVisible(false); + java.awt.Dimension var30 = var26.getPreferredSize(); + java.awt.Toolkit var31 = var26.getToolkit(); + SpaceWar.SpacePanel var32 = new SpaceWar.SpacePanel(); + var32.setName(""); + int var35 = var32.getX(); + SpaceWar.SpacePanel var36 = new SpaceWar.SpacePanel(); + float var37 = var36.getAlignmentX(); + var36.setVisible(false); + var36.nextFocus(); + SpaceWar.SpacePanel var41 = new SpaceWar.SpacePanel(); + float var42 = var41.getAlignmentX(); + var41.setVisible(false); + SpaceWar.SpacePanel var45 = new SpaceWar.SpacePanel(); + java.awt.Color var46 = var45.getBackground(); + var41.setForeground(var46); + var36.setBackground(var46); + var32.setBackground(var46); + var26.setForeground(var46); + var18.putClientProperty((java.lang.Object)(byte)100, (java.lang.Object)var46); + var0.setBackground(var46); + SpaceWar.SpacePanel var53 = new SpaceWar.SpacePanel(); + float var54 = var53.getAlignmentX(); + var53.setVisible(false); + boolean var57 = var53.isDoubleBuffered(); + java.awt.dnd.DropTarget var58 = var53.getDropTarget(); + var53.show(false); + boolean var61 = var53.isPaintingForPrint(); + SpaceWar.SpacePanel var62 = new SpaceWar.SpacePanel(); + float var63 = var62.getAlignmentX(); + SpaceWar.SpacePanel var64 = new SpaceWar.SpacePanel(); + float var65 = var64.getAlignmentX(); + var64.setVisible(false); + java.awt.Dimension var68 = var64.getPreferredSize(); + boolean var69 = var64.getVerifyInputWhenFocusTarget(); + java.awt.Component var72 = var64.findComponentAt(10, 1); + var62.addKeyListener((java.awt.event.KeyListener)var64); + java.awt.Dimension var74 = var64.getMinimumSize(); + var53.setMinimumSize(var74); + java.awt.Dimension var76 = var0.getSize(var74); + java.awt.im.InputMethodRequests var77 = var0.getInputMethodRequests(); + java.awt.Color var78 = var0.getBackground(); + java.awt.event.HierarchyBoundsListener[] var79 = var0.getHierarchyBoundsListeners(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var24 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var30); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var31); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var35 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var42 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var46); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var54 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var57 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var58); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var61 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var63 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var65 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var68); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var69 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var72); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var74); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var76); + + // Regression assertion (captures the current behavior of the code) + assertNull(var77); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var78); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var79); + + } + + public void test204() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test204"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var6 = var0.getUI(); + java.awt.im.InputMethodRequests var7 = var0.getInputMethodRequests(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + var8.nextFocus(); + var8.updateUI(); + var8.enableInputMethods(true); + var8.setSize((-1), 1); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + var19.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var0.add((java.awt.Component)var8, (java.lang.Object)"SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + SpaceWar.SpacePanel var25 = new SpaceWar.SpacePanel(); + float var26 = var25.getAlignmentX(); + var25.setVisible(false); + java.awt.Dimension var29 = var25.getPreferredSize(); + java.awt.Toolkit var30 = var25.getToolkit(); + java.awt.Toolkit var31 = var25.getToolkit(); + java.awt.Component var32 = var8.add((java.awt.Component)var25); + var25.nextFocus(); + java.awt.event.FocusListener[] var34 = var25.getFocusListeners(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var29); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var30); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var31); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var32); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var34); + + } + + public void test205() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test205"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + boolean var6 = var0.isFocusCycleRoot(); + var0.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", 100, 0); + SpaceWar.SpacePanel var11 = new SpaceWar.SpacePanel(); + float var12 = var11.getAlignmentX(); + var11.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var17 = var11.getUI(); + var0.setNextFocusableComponent((java.awt.Component)var11); + java.awt.Component var21 = var0.locate(500, 3); + var0.setVisible(true); + SpaceWar.SpacePanel var24 = new SpaceWar.SpacePanel(); + float var25 = var24.getAlignmentX(); + var24.setVisible(false); + java.awt.Dimension var28 = var24.getPreferredSize(); + java.awt.Toolkit var29 = var24.getToolkit(); + java.awt.Toolkit var30 = var24.getToolkit(); + var24.enable(false); + java.awt.Color var33 = var24.getForeground(); + var0.setForeground(var33); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertNull(var21); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var28); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var29); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var30); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var33); + + } + + public void test206() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test206"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + boolean var2 = var0.hasFocus(); + boolean var3 = var0.isPreferredSizeSet(); + var0.firePropertyChange("", (short)1, (short)0); + boolean var8 = var0.isMaximumSizeSet(); + java.awt.peer.ComponentPeer var9 = var0.getPeer(); + java.awt.ComponentOrientation var10 = var0.getComponentOrientation(); + SpaceWar.SpacePanel var11 = new SpaceWar.SpacePanel(); + float var12 = var11.getAlignmentX(); + var11.setVisible(false); + SpaceWar.SpacePanel var15 = new SpaceWar.SpacePanel(); + java.awt.Color var16 = var15.getBackground(); + var11.setForeground(var16); + SpaceWar.SpacePanel var18 = new SpaceWar.SpacePanel(); + float var19 = var18.getAlignmentX(); + var18.setVisible(false); + boolean var22 = var18.isDoubleBuffered(); + java.awt.dnd.DropTarget var23 = var18.getDropTarget(); + var18.show(false); + java.awt.Rectangle var26 = var18.getVisibleRect(); + var11.repaint(var26); + java.awt.FocusTraversalPolicy var28 = var11.getFocusTraversalPolicy(); + java.awt.im.InputMethodRequests var29 = var11.getInputMethodRequests(); + var11.layout(); + var11.setDebugGraphicsOptions(10); + SpaceWar.SpacePanel var33 = new SpaceWar.SpacePanel(); + float var34 = var33.getAlignmentX(); + var33.setVisible(false); + var33.nextFocus(); + var33.reshape((-1), 1, (-1), 10); + SpaceWar.SpacePanel var43 = new SpaceWar.SpacePanel(); + java.awt.Color var44 = var43.getBackground(); + var43.repaint(); + var43.setRequestFocusEnabled(false); + var43.reshape(100, 0, 100, 0); + java.awt.Component var53 = var33.add((java.awt.Component)var43); + SpaceWar.SpacePanel var54 = new SpaceWar.SpacePanel(); + var54.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + javax.swing.plaf.PanelUI var59 = var54.getUI(); + SpaceWar.SpacePanel var60 = new SpaceWar.SpacePanel(); + float var61 = var60.getAlignmentX(); + var60.setVisible(false); + var60.nextFocus(); + var60.repaint(1L); + SpaceWar.SpacePanel var67 = new SpaceWar.SpacePanel(); + float var68 = var67.getAlignmentX(); + var67.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var73 = new SpaceWar.SpacePanel(); + float var74 = var73.getAlignmentX(); + var73.setVisible(false); + java.awt.Dimension var77 = var73.getPreferredSize(); + var67.setMaximumSize(var77); + var60.setPreferredSize(var77); + var54.setMaximumSize(var77); + java.awt.Dimension var81 = var43.getSize(var77); + var11.setSize(var81); + SpaceWar.SpacePanel var83 = new SpaceWar.SpacePanel(); + var83.setName(""); + var83.enable(true); + var83.enable(); + java.awt.Point var89 = var83.location(); + boolean var90 = var11.contains(var89); + java.awt.Component var91 = var0.findComponentAt(var89); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var2 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var9); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var22 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var23); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertNull(var28); + + // Regression assertion (captures the current behavior of the code) + assertNull(var29); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var34 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var44); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var53); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var59); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var61 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var68 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var74 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var77); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var81); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var89); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var90 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var91); + + } + + public void test207() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test207"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + SpaceWar.SpacePanel var2 = new SpaceWar.SpacePanel(); + float var3 = var2.getAlignmentX(); + var2.setVisible(false); + java.awt.Dimension var6 = var2.getPreferredSize(); + boolean var7 = var2.getVerifyInputWhenFocusTarget(); + java.awt.Component var10 = var2.findComponentAt(10, 1); + var0.addKeyListener((java.awt.event.KeyListener)var2); + SpaceWar.SpacePanel var12 = new SpaceWar.SpacePanel(); + float var13 = var12.getAlignmentX(); + SpaceWar.SpacePanel var14 = new SpaceWar.SpacePanel(); + float var15 = var14.getAlignmentX(); + var14.setVisible(false); + java.awt.Dimension var18 = var14.getPreferredSize(); + boolean var19 = var14.getVerifyInputWhenFocusTarget(); + java.awt.Component var22 = var14.findComponentAt(10, 1); + var12.addKeyListener((java.awt.event.KeyListener)var14); + var14.repaint(100, (-1), (-1), 1); + java.awt.image.ColorModel var29 = var14.getColorModel(); + SpaceWar.SpacePanel var30 = new SpaceWar.SpacePanel(); + float var31 = var30.getAlignmentX(); + var30.setVisible(false); + boolean var34 = var30.isDoubleBuffered(); + var30.list(); + SpaceWar.SpacePanel var36 = new SpaceWar.SpacePanel(); + float var37 = var36.getAlignmentX(); + var36.setVisible(false); + boolean var40 = var36.isDoubleBuffered(); + java.awt.dnd.DropTarget var41 = var36.getDropTarget(); + var36.show(false); + java.awt.Rectangle var44 = var36.getVisibleRect(); + java.awt.image.BufferedImage var46 = var36.loadImg("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + boolean var47 = var30.isAncestorOf((java.awt.Component)var36); + javax.swing.InputVerifier var48 = var36.getInputVerifier(); + var2.putClientProperty((java.lang.Object)var14, (java.lang.Object)var36); + javax.swing.JToolTip var50 = var2.createToolTip(); + boolean var51 = var50.isFocusTraversable(); + boolean var52 = var50.isEnabled(); + float var53 = var50.getAlignmentX(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var29); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var31 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var34 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var40 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var41); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var44); + + // Regression assertion (captures the current behavior of the code) + assertNull(var46); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var47 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var48); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var50); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var51 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var52 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var53 == 0.5f); + + } + + public void test208() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test208"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + var0.setRequestFocusEnabled(false); + var0.setIgnoreRepaint(false); + var0.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", (byte)0, (byte)10); + java.awt.event.ContainerListener[] var11 = var0.getContainerListeners(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + } + + public void test209() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test209"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var1 = new SpaceWar.SpacePanel(); + java.awt.Color var2 = var1.getBackground(); + SpaceWar.SpacePanel var3 = new SpaceWar.SpacePanel(); + float var4 = var3.getAlignmentX(); + var3.setVisible(false); + var3.nextFocus(); + var3.updateUI(); + var3.enableInputMethods(true); + var0.add((java.awt.Component)var1, (java.lang.Object)true); + boolean var13 = var1.areFocusTraversalKeysSet(0); + SpaceWar.SpacePanel var14 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var15 = new SpaceWar.SpacePanel(); + java.awt.Color var16 = var15.getBackground(); + SpaceWar.SpacePanel var17 = new SpaceWar.SpacePanel(); + float var18 = var17.getAlignmentX(); + var17.setVisible(false); + var17.nextFocus(); + var17.updateUI(); + var17.enableInputMethods(true); + var14.add((java.awt.Component)var15, (java.lang.Object)true); + boolean var26 = var14.isMinimumSizeSet(); + java.awt.event.HierarchyListener[] var27 = var14.getHierarchyListeners(); + SpaceWar.SpacePanel var28 = new SpaceWar.SpacePanel(); + float var29 = var28.getAlignmentX(); + var28.setVisible(false); + SpaceWar.SpacePanel var32 = new SpaceWar.SpacePanel(); + java.awt.Color var33 = var32.getBackground(); + var28.setForeground(var33); + SpaceWar.SpacePanel var35 = new SpaceWar.SpacePanel(); + float var36 = var35.getAlignmentX(); + var35.setVisible(false); + boolean var39 = var35.isDoubleBuffered(); + java.awt.dnd.DropTarget var40 = var35.getDropTarget(); + var35.show(false); + java.awt.Rectangle var43 = var35.getVisibleRect(); + var28.repaint(var43); + java.awt.FocusTraversalPolicy var45 = var28.getFocusTraversalPolicy(); + java.awt.im.InputMethodRequests var46 = var28.getInputMethodRequests(); + var28.layout(); + boolean var48 = var28.isFocusTraversalPolicyProvider(); + java.lang.Object var49 = var14.getClientProperty((java.lang.Object)var48); + boolean var50 = var14.isFocusTraversable(); + var1.remove((java.awt.Component)var14); + SpaceWar.SpacePanel var52 = new SpaceWar.SpacePanel(); + float var53 = var52.getAlignmentX(); + var52.setVisible(false); + var52.setEnabled(false); + java.awt.Image var60 = var52.createImage(10, 100); + SpaceWar.SpacePanel var61 = new SpaceWar.SpacePanel(); + java.awt.Color var62 = var61.getBackground(); + var52.setForeground(var62); + var14.setForeground(var62); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var2); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var27); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var29 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var33); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var36 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var39 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var40); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var43); + + // Regression assertion (captures the current behavior of the code) + assertNull(var45); + + // Regression assertion (captures the current behavior of the code) + assertNull(var46); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var48 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var49); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var50 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var53 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNull(var60); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var62); + + } + + public void test210() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test210"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + var0.setRequestFocusEnabled(false); + var0.setIgnoreRepaint(false); + java.lang.String var7 = var0.toString(); + java.awt.Color var8 = var0.getBackground(); + javax.swing.KeyStroke[] var9 = var0.getRegisteredKeyStrokes(); + java.awt.Component var12 = var0.locate(400, 499); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var7 + "' != '" + "SpaceWar.SpacePanel[,0,0,0var7,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"+ "'", var7.equals("SpaceWar.SpacePanel[,0,0,0var7,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]")); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var9); + + // Regression assertion (captures the current behavior of the code) + assertNull(var12); + + } + + public void test211() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test211"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + java.awt.event.KeyListener[] var3 = var0.getKeyListeners(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var3); + + } + + public void test212() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test212"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + var0.list(); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + float var7 = var6.getAlignmentX(); + var6.setVisible(false); + boolean var10 = var6.isDoubleBuffered(); + java.awt.dnd.DropTarget var11 = var6.getDropTarget(); + var6.show(false); + java.awt.Rectangle var14 = var6.getVisibleRect(); + java.awt.Rectangle var15 = var0.getBounds(var14); + javax.swing.JToolTip var16 = var0.createToolTip(); + boolean var18 = var16.areFocusTraversalKeysSet(2); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == false); + + } + + public void test213() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test213"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.updateUI(); + var0.enableInputMethods(true); + java.awt.Point var9 = var0.getMousePosition(false); + boolean var10 = var0.isShowing(); + java.awt.event.MouseMotionListener[] var11 = var0.getMouseMotionListeners(); + boolean var12 = var0.isBackgroundSet(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNull(var9); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == true); + + } + + public void test214() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test214"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + javax.swing.TransferHandler var1 = var0.getTransferHandler(); + var0.requestFocus(); + SpaceWar.SpacePanel var4 = new SpaceWar.SpacePanel(); + float var5 = var4.getAlignmentX(); + var4.setVisible(false); + var4.setEnabled(false); + java.awt.Image var12 = var4.createImage(10, 100); + SpaceWar.SpacePanel var13 = new SpaceWar.SpacePanel(); + java.awt.Color var14 = var13.getBackground(); + var4.setForeground(var14); + var4.setFocusTraversalPolicyProvider(true); + java.util.Set var19 = var4.getFocusTraversalKeys(2); + // The following exception was thrown during execution. + // This behavior will recorded for regression testing. + try { + var0.setFocusTraversalKeys(24, var19); + fail("Expected exception of type java.lang.IllegalArgumentException"); + } catch (java.lang.IllegalArgumentException e) { + // Expected exception. + } + + + // Regression assertion (captures the current behavior of the code) + assertNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var19); + + } + + public void test215() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test215"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + boolean var6 = var0.isFocusOwner(); + java.awt.Dimension var7 = var0.getMinimumSize(); + boolean var8 = var0.requestFocusInWindow(); + java.awt.Component[] var9 = var0.getComponents(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var9); + + } + + public void test216() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test216"); + + + SpaceWar.Enemy var2 = new SpaceWar.Enemy(0, 10); + var2.update(); + double var4 = var2.getX(); + var2.explode(); + double var6 = var2.getY(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 561.355847267745d); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == 0.0d); + + } + + public void test217() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test217"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var6 = var0.getMouseListeners(); + int var7 = var0.getDebugGraphicsOptions(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + boolean var12 = var8.isDoubleBuffered(); + java.awt.dnd.DropTarget var13 = var8.getDropTarget(); + var8.show(false); + java.awt.Rectangle var16 = var8.getVisibleRect(); + var0.paintImmediately(var16); + var0.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", '#', '#'); + var0.resetKeyboardActions(); + var0.setName("SpaceWar.SpacePanel[,0,0,0x0,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + javax.accessibility.AccessibleContext var25 = var0.getAccessibleContext(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var25); + + } + + public void test218() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test218"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + java.awt.im.InputMethodRequests var3 = var0.getInputMethodRequests(); + int var4 = var0.countComponents(); + java.awt.event.ComponentListener[] var5 = var0.getComponentListeners(); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + float var7 = var6.getAlignmentX(); + var6.removeNotify(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.setVisible(false); + boolean var13 = var9.isDoubleBuffered(); + var9.list(); + float var15 = var9.getAlignmentY(); + java.awt.Insets var16 = var9.getInsets(); + java.awt.Insets var17 = var6.getInsets(var16); + java.awt.Insets var18 = var0.getInsets(var17); + var0.removeAll(); + boolean var20 = var0.getIgnoreRepaint(); + int var21 = var0.getY(); + // The following exception was thrown during execution. + // This behavior will recorded for regression testing. + try { + var0.remove(3); + fail("Expected exception of type java.lang.ArrayIndexOutOfBoundsException"); + } catch (java.lang.ArrayIndexOutOfBoundsException e) { + // Expected exception. + } + + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == 0); + + } + + public void test219() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test219"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.setInheritsPopupMenu(false); + var0.setFocusTraversalPolicyProvider(true); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + boolean var12 = var8.isDoubleBuffered(); + var8.list(); + SpaceWar.SpacePanel var14 = new SpaceWar.SpacePanel(); + float var15 = var14.getAlignmentX(); + var14.setVisible(false); + boolean var18 = var14.isDoubleBuffered(); + java.awt.dnd.DropTarget var19 = var14.getDropTarget(); + var14.show(false); + java.awt.Rectangle var22 = var14.getVisibleRect(); + java.awt.Rectangle var23 = var8.getBounds(var22); + javax.swing.JToolTip var24 = var8.createToolTip(); + var0.removeKeyListener((java.awt.event.KeyListener)var8); + javax.swing.TransferHandler var26 = var0.getTransferHandler(); + var0.transferFocus(); + java.awt.Dimension var28 = var0.preferredSize(); + var0.enable(false); + SpaceWar.SpacePanel var31 = new SpaceWar.SpacePanel(); + float var32 = var31.getAlignmentX(); + var31.setVisible(false); + boolean var35 = var31.isDoubleBuffered(); + java.awt.dnd.DropTarget var36 = var31.getDropTarget(); + var31.show(false); + java.awt.Rectangle var39 = var31.getVisibleRect(); + java.awt.Toolkit var40 = var31.getToolkit(); + SpaceWar.SpacePanel var41 = new SpaceWar.SpacePanel(); + float var42 = var41.getAlignmentX(); + var41.setVisible(false); + boolean var45 = var41.isDoubleBuffered(); + var41.list(); + SpaceWar.SpacePanel var47 = new SpaceWar.SpacePanel(); + float var48 = var47.getAlignmentX(); + var47.setVisible(false); + boolean var51 = var47.isDoubleBuffered(); + java.awt.dnd.DropTarget var52 = var47.getDropTarget(); + var47.show(false); + java.awt.Rectangle var55 = var47.getVisibleRect(); + java.awt.Rectangle var56 = var41.getBounds(var55); + javax.swing.JToolTip var57 = var41.createToolTip(); + var41.firePropertyChange("", false, false); + var41.validate(); + SpaceWar.SpacePanel var63 = new SpaceWar.SpacePanel(); + float var64 = var63.getAlignmentX(); + var63.setVisible(false); + var63.nextFocus(); + var63.updateUI(); + var63.enableInputMethods(true); + java.lang.String var71 = var63.toString(); + var31.putClientProperty((java.lang.Object)var41, (java.lang.Object)var63); + java.awt.Dimension var73 = var41.size(); + java.awt.Dimension var74 = var0.getSize(var73); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var23); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var28); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var32 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var35 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var36); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var39); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var40); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var42 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var45 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var48 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var51 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var52); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var55); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var56); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var57); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var64 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var71 + "' != '" + "SpaceWar.SpacePanel[,0,0,0var71,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"+ "'", var71.equals("SpaceWar.SpacePanel[,0,0,0var71,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]")); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var73); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var74); + + } + + public void test220() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test220"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.reshape((-1), 1, (-1), 10); + var0.disable(); + var0.show(); + SpaceWar.SpacePanel var12 = new SpaceWar.SpacePanel(); + float var13 = var12.getAlignmentX(); + var12.setVisible(false); + boolean var16 = var12.isDoubleBuffered(); + var12.list(); + SpaceWar.SpacePanel var18 = new SpaceWar.SpacePanel(); + float var19 = var18.getAlignmentX(); + var18.setVisible(false); + boolean var22 = var18.isDoubleBuffered(); + java.awt.dnd.DropTarget var23 = var18.getDropTarget(); + var18.show(false); + java.awt.Rectangle var26 = var18.getVisibleRect(); + java.awt.Rectangle var27 = var12.getBounds(var26); + javax.swing.JToolTip var28 = var12.createToolTip(); + var12.firePropertyChange("", false, false); + var12.validate(); + SpaceWar.SpacePanel var34 = new SpaceWar.SpacePanel(); + float var35 = var34.getAlignmentX(); + var34.setVisible(false); + boolean var38 = var34.isDoubleBuffered(); + java.awt.dnd.DropTarget var39 = var34.getDropTarget(); + var34.show(false); + boolean var42 = var34.isPaintingForPrint(); + SpaceWar.SpacePanel var43 = new SpaceWar.SpacePanel(); + float var44 = var43.getAlignmentX(); + var43.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var49 = var43.getMouseListeners(); + int var50 = var43.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var51 = var43.getInputMethodRequests(); + var34.addKeyListener((java.awt.event.KeyListener)var43); + var43.repaint(); + java.awt.Point var54 = var43.location(); + java.awt.Component var55 = var12.getComponentAt(var54); + java.awt.Point var56 = var0.getLocation(var54); + var0.setAlignmentY(0.5f); + boolean var59 = var0.getVerifyInputWhenFocusTarget(); + boolean var60 = var0.isBackgroundSet(); + SpaceWar.SpacePanel var61 = new SpaceWar.SpacePanel(); + float var62 = var61.getAlignmentX(); + var61.setVisible(false); + boolean var65 = var61.isDoubleBuffered(); + java.awt.dnd.DropTarget var66 = var61.getDropTarget(); + var61.show(false); + java.awt.Rectangle var69 = var61.getVisibleRect(); + java.awt.image.BufferedImage var71 = var61.loadImg("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + java.awt.ComponentOrientation var72 = var61.getComponentOrientation(); + boolean var73 = var0.isAncestorOf((java.awt.Component)var61); + // The following exception was thrown during execution. + // This behavior will recorded for regression testing. + try { + boolean var75 = var61.areFocusTraversalKeysSet(10); + fail("Expected exception of type java.lang.IllegalArgumentException"); + } catch (java.lang.IllegalArgumentException e) { + // Expected exception. + } + + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var22 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var23); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var27); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var28); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var35 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var38 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var39); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var42 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var44 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var49); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var50 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var51); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var54); + + // Regression assertion (captures the current behavior of the code) + assertNull(var55); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var56); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var59 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var60 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var62 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var65 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var66); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var69); + + // Regression assertion (captures the current behavior of the code) + assertNull(var71); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var72); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var73 == false); + + } + + public void test221() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test221"); + + + SpaceWar.PowerUp var3 = new SpaceWar.PowerUp(24, 19.998476951563912d, 1.0d); + double var4 = var3.getX(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 19.998476951563912d); + + } + + public void test222() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test222"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var1 = new SpaceWar.SpacePanel(); + java.awt.Color var2 = var1.getBackground(); + SpaceWar.SpacePanel var3 = new SpaceWar.SpacePanel(); + float var4 = var3.getAlignmentX(); + var3.setVisible(false); + var3.nextFocus(); + var3.updateUI(); + var3.enableInputMethods(true); + var0.add((java.awt.Component)var1, (java.lang.Object)true); + java.awt.Insets var12 = var0.getInsets(); + java.lang.String var13 = var0.getUIClassID(); + var0.firePropertyChange("hi!", 1L, 100L); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var2); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var13 + "' != '" + "PanelUI"+ "'", var13.equals("PanelUI")); + + } + + public void test223() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test223"); + + + SpaceWar.Enemy var2 = new SpaceWar.Enemy(0, 100); + boolean var3 = var2.isDead(); + var2.hit(); + double var5 = var2.getY(); + var2.hit(); + double var7 = var2.getY(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == 0.0d); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.0d); + + } + + public void test224() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test224"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + SpaceWar.SpacePanel var4 = new SpaceWar.SpacePanel(); + java.awt.Color var5 = var4.getBackground(); + var0.setForeground(var5); + SpaceWar.SpacePanel var7 = new SpaceWar.SpacePanel(); + float var8 = var7.getAlignmentX(); + var7.setVisible(false); + boolean var11 = var7.isDoubleBuffered(); + java.awt.dnd.DropTarget var12 = var7.getDropTarget(); + var7.show(false); + java.awt.Rectangle var15 = var7.getVisibleRect(); + var0.repaint(var15); + java.awt.FocusTraversalPolicy var17 = var0.getFocusTraversalPolicy(); + java.awt.im.InputMethodRequests var18 = var0.getInputMethodRequests(); + javax.swing.JToolTip var19 = var0.createToolTip(); + javax.swing.JPopupMenu var20 = var19.getComponentPopupMenu(); + var19.setInheritsPopupMenu(true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertNull(var20); + + } + + public void test225() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test225"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.updateUI(); + java.util.Locale var6 = var0.getLocale(); + var0.paintImmediately(25, 100, 3, 0); + SpaceWar.SpacePanel var12 = new SpaceWar.SpacePanel(); + float var13 = var12.getAlignmentX(); + var12.setVisible(false); + var12.setInheritsPopupMenu(false); + var12.setFocusTraversalPolicyProvider(true); + boolean var22 = var12.inside(25, 3); + SpaceWar.SpacePanel var23 = new SpaceWar.SpacePanel(); + float var24 = var23.getAlignmentX(); + var23.setVisible(false); + boolean var27 = var23.isDoubleBuffered(); + java.awt.dnd.DropTarget var28 = var23.getDropTarget(); + var23.show(false); + boolean var31 = var23.isPaintingForPrint(); + SpaceWar.SpacePanel var32 = new SpaceWar.SpacePanel(); + float var33 = var32.getAlignmentX(); + SpaceWar.SpacePanel var34 = new SpaceWar.SpacePanel(); + float var35 = var34.getAlignmentX(); + var34.setVisible(false); + java.awt.Dimension var38 = var34.getPreferredSize(); + boolean var39 = var34.getVerifyInputWhenFocusTarget(); + java.awt.Component var42 = var34.findComponentAt(10, 1); + var32.addKeyListener((java.awt.event.KeyListener)var34); + java.awt.Dimension var44 = var34.getMinimumSize(); + var23.setMinimumSize(var44); + var12.setPreferredSize(var44); + var0.setMinimumSize(var44); + SpaceWar.SpacePanel var48 = new SpaceWar.SpacePanel(); + float var49 = var48.getAlignmentX(); + var48.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var54 = var48.getUI(); + java.awt.im.InputMethodRequests var55 = var48.getInputMethodRequests(); + SpaceWar.SpacePanel var56 = new SpaceWar.SpacePanel(); + float var57 = var56.getAlignmentX(); + var56.setVisible(false); + var56.nextFocus(); + var56.updateUI(); + var56.enableInputMethods(true); + var56.setSize((-1), 1); + SpaceWar.SpacePanel var67 = new SpaceWar.SpacePanel(); + var67.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var48.add((java.awt.Component)var56, (java.lang.Object)"SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + var56.setAutoscrolls(true); + java.awt.Image var77 = var56.createImage(400, 400); + // The following exception was thrown during execution. + // This behavior will recorded for regression testing. + try { + java.awt.Component var79 = var0.add((java.awt.Component)var56, 499); + fail("Expected exception of type java.lang.IllegalArgumentException"); + } catch (java.lang.IllegalArgumentException e) { + // Expected exception. + } + + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var22 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var24 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var28); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var31 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var33 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var35 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var38); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var39 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var42); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var44); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var49 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var54); + + // Regression assertion (captures the current behavior of the code) + assertNull(var55); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var57 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNull(var77); + + } + + public void test226() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test226"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + SpaceWar.SpacePanel var2 = new SpaceWar.SpacePanel(); + float var3 = var2.getAlignmentX(); + var2.setVisible(false); + java.awt.Dimension var6 = var2.getPreferredSize(); + boolean var7 = var2.getVerifyInputWhenFocusTarget(); + java.awt.Component var10 = var2.findComponentAt(10, 1); + var0.addKeyListener((java.awt.event.KeyListener)var2); + SpaceWar.SpacePanel var13 = new SpaceWar.SpacePanel(); + float var14 = var13.getAlignmentX(); + var13.setVisible(false); + boolean var17 = var13.isDoubleBuffered(); + var13.list(); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + float var20 = var19.getAlignmentX(); + var19.setVisible(false); + boolean var23 = var19.isDoubleBuffered(); + java.awt.dnd.DropTarget var24 = var19.getDropTarget(); + var19.show(false); + java.awt.Rectangle var27 = var19.getVisibleRect(); + java.awt.Rectangle var28 = var13.getBounds(var27); + javax.swing.JToolTip var29 = var13.createToolTip(); + java.awt.Graphics var30 = var13.getGraphics(); + var13.setAutoscrolls(false); + boolean var33 = var13.requestFocusInWindow(); + SpaceWar.SpacePanel var34 = new SpaceWar.SpacePanel(); + float var35 = var34.getAlignmentX(); + var34.setVisible(false); + var34.nextFocus(); + var34.reshape((-1), 1, (-1), 10); + var34.disable(); + java.awt.LayoutManager var45 = var34.getLayout(); + java.awt.Container var46 = var34.getParent(); + boolean var47 = var34.isOptimizedDrawingEnabled(); + java.awt.Font var48 = var34.getFont(); + java.awt.FontMetrics var49 = var13.getFontMetrics(var48); + javax.swing.InputMap var50 = var13.getInputMap(); + // The following exception was thrown during execution. + // This behavior will recorded for regression testing. + try { + var2.setInputMap(3, var50); + fail("Expected exception of type java.lang.IllegalArgumentException"); + } catch (java.lang.IllegalArgumentException e) { + // Expected exception. + } + + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var27); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var28); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var29); + + // Regression assertion (captures the current behavior of the code) + assertNull(var30); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var33 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var35 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var45); + + // Regression assertion (captures the current behavior of the code) + assertNull(var46); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var47 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var48); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var49); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var50); + + } + + public void test227() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test227"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var1 = new SpaceWar.SpacePanel(); + java.awt.Color var2 = var1.getBackground(); + SpaceWar.SpacePanel var3 = new SpaceWar.SpacePanel(); + float var4 = var3.getAlignmentX(); + var3.setVisible(false); + var3.nextFocus(); + var3.updateUI(); + var3.enableInputMethods(true); + var0.add((java.awt.Component)var1, (java.lang.Object)true); + java.awt.Image var14 = var1.createImage(1, (-1)); + java.awt.event.MouseListener[] var15 = var1.getMouseListeners(); + java.awt.Color var16 = var1.getBackground(); + boolean var17 = var1.getIgnoreRepaint(); + var1.enable(); + javax.swing.JToolTip var19 = var1.createToolTip(); + SpaceWar.SpacePanel var20 = new SpaceWar.SpacePanel(); + var20.setName(""); + java.awt.Graphics var23 = var20.getGraphics(); + SpaceWar.SpacePanel var24 = new SpaceWar.SpacePanel(); + float var25 = var24.getAlignmentX(); + var24.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var30 = new SpaceWar.SpacePanel(); + float var31 = var30.getAlignmentX(); + var30.setVisible(false); + java.awt.Dimension var34 = var30.getPreferredSize(); + var24.setMaximumSize(var34); + boolean var36 = var24.getVerifyInputWhenFocusTarget(); + int var37 = var24.getX(); + SpaceWar.SpacePanel var38 = new SpaceWar.SpacePanel(); + float var39 = var38.getAlignmentX(); + SpaceWar.SpacePanel var40 = new SpaceWar.SpacePanel(); + float var41 = var40.getAlignmentX(); + var40.setVisible(false); + java.awt.Dimension var44 = var40.getPreferredSize(); + boolean var45 = var40.getVerifyInputWhenFocusTarget(); + java.awt.Component var48 = var40.findComponentAt(10, 1); + var38.addKeyListener((java.awt.event.KeyListener)var40); + var40.repaint(100, (-1), (-1), 1); + SpaceWar.SpacePanel var55 = new SpaceWar.SpacePanel(); + java.awt.Color var56 = var55.getBackground(); + var55.repaint(); + java.awt.im.InputMethodRequests var58 = var55.getInputMethodRequests(); + java.awt.GraphicsConfiguration var59 = var55.getGraphicsConfiguration(); + var40.remove((java.awt.Component)var55); + java.awt.Font var61 = var55.getFont(); + var24.setFont(var61); + var20.setFont(var61); + java.awt.FontMetrics var64 = var1.getFontMetrics(var61); + java.awt.event.MouseWheelListener[] var65 = var1.getMouseWheelListeners(); + SpaceWar.SpacePanel var67 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var68 = new SpaceWar.SpacePanel(); + java.awt.Color var69 = var68.getBackground(); + SpaceWar.SpacePanel var70 = new SpaceWar.SpacePanel(); + float var71 = var70.getAlignmentX(); + var70.setVisible(false); + var70.nextFocus(); + var70.updateUI(); + var70.enableInputMethods(true); + var67.add((java.awt.Component)var68, (java.lang.Object)true); + java.awt.Image var81 = var68.createImage(1, (-1)); + SpaceWar.SpacePanel var82 = new SpaceWar.SpacePanel(); + float var83 = var82.getAlignmentX(); + var82.setVisible(false); + var82.nextFocus(); + var82.updateUI(); + var82.enableInputMethods(true); + SpaceWar.SpacePanel var90 = new SpaceWar.SpacePanel(); + float var91 = var90.getAlignmentX(); + boolean var92 = var90.hasFocus(); + java.awt.Insets var93 = var90.getInsets(); + java.awt.Insets var94 = var82.getInsets(var93); + java.awt.Insets var95 = var68.getInsets(var93); + java.awt.Point var96 = var68.getMousePosition(); + javax.swing.InputMap var97 = var68.getInputMap(); + // The following exception was thrown during execution. + // This behavior will recorded for regression testing. + try { + var1.setInputMap(499, var97); + fail("Expected exception of type java.lang.IllegalArgumentException"); + } catch (java.lang.IllegalArgumentException e) { + // Expected exception. + } + + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var2); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertNull(var23); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var31 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var34); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var36 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var39 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var41 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var44); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var45 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var48); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var56); + + // Regression assertion (captures the current behavior of the code) + assertNull(var58); + + // Regression assertion (captures the current behavior of the code) + assertNull(var59); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var61); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var64); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var65); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var69); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var71 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNull(var81); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var83 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var91 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var92 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var93); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var94); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var95); + + // Regression assertion (captures the current behavior of the code) + assertNull(var96); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var97); + + } + + public void test228() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test228"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.setInheritsPopupMenu(false); + var0.setFocusTraversalPolicyProvider(true); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + boolean var12 = var8.isDoubleBuffered(); + var8.list(); + SpaceWar.SpacePanel var14 = new SpaceWar.SpacePanel(); + float var15 = var14.getAlignmentX(); + var14.setVisible(false); + boolean var18 = var14.isDoubleBuffered(); + java.awt.dnd.DropTarget var19 = var14.getDropTarget(); + var14.show(false); + java.awt.Rectangle var22 = var14.getVisibleRect(); + java.awt.Rectangle var23 = var8.getBounds(var22); + javax.swing.JToolTip var24 = var8.createToolTip(); + var0.removeKeyListener((java.awt.event.KeyListener)var8); + javax.swing.TransferHandler var26 = var0.getTransferHandler(); + boolean var27 = var0.isPaintingForPrint(); + var0.enable(false); + var0.setLocation(500, 24); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var23); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == false); + + } + + public void test229() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test229"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + SpaceWar.SpacePanel var4 = new SpaceWar.SpacePanel(); + java.awt.Color var5 = var4.getBackground(); + var0.setForeground(var5); + SpaceWar.SpacePanel var7 = new SpaceWar.SpacePanel(); + float var8 = var7.getAlignmentX(); + var7.setVisible(false); + boolean var11 = var7.isDoubleBuffered(); + java.awt.dnd.DropTarget var12 = var7.getDropTarget(); + var7.show(false); + java.awt.Rectangle var15 = var7.getVisibleRect(); + var0.repaint(var15); + java.awt.FocusTraversalPolicy var17 = var0.getFocusTraversalPolicy(); + SpaceWar.SpacePanel var18 = new SpaceWar.SpacePanel(); + float var19 = var18.getAlignmentX(); + var18.firePropertyChange("", (-1), 1); + boolean var24 = var18.isFocusOwner(); + SpaceWar.SpacePanel var26 = new SpaceWar.SpacePanel(); + float var27 = var26.getAlignmentX(); + var26.setVisible(false); + java.awt.Dimension var30 = var26.getPreferredSize(); + java.awt.Toolkit var31 = var26.getToolkit(); + SpaceWar.SpacePanel var32 = new SpaceWar.SpacePanel(); + var32.setName(""); + int var35 = var32.getX(); + SpaceWar.SpacePanel var36 = new SpaceWar.SpacePanel(); + float var37 = var36.getAlignmentX(); + var36.setVisible(false); + var36.nextFocus(); + SpaceWar.SpacePanel var41 = new SpaceWar.SpacePanel(); + float var42 = var41.getAlignmentX(); + var41.setVisible(false); + SpaceWar.SpacePanel var45 = new SpaceWar.SpacePanel(); + java.awt.Color var46 = var45.getBackground(); + var41.setForeground(var46); + var36.setBackground(var46); + var32.setBackground(var46); + var26.setForeground(var46); + var18.putClientProperty((java.lang.Object)(byte)100, (java.lang.Object)var46); + var0.setBackground(var46); + SpaceWar.SpacePanel var53 = new SpaceWar.SpacePanel(); + float var54 = var53.getAlignmentX(); + var53.setVisible(false); + boolean var57 = var53.isDoubleBuffered(); + java.awt.dnd.DropTarget var58 = var53.getDropTarget(); + var53.show(false); + boolean var61 = var53.isPaintingForPrint(); + SpaceWar.SpacePanel var62 = new SpaceWar.SpacePanel(); + float var63 = var62.getAlignmentX(); + SpaceWar.SpacePanel var64 = new SpaceWar.SpacePanel(); + float var65 = var64.getAlignmentX(); + var64.setVisible(false); + java.awt.Dimension var68 = var64.getPreferredSize(); + boolean var69 = var64.getVerifyInputWhenFocusTarget(); + java.awt.Component var72 = var64.findComponentAt(10, 1); + var62.addKeyListener((java.awt.event.KeyListener)var64); + java.awt.Dimension var74 = var64.getMinimumSize(); + var53.setMinimumSize(var74); + java.awt.Dimension var76 = var0.getSize(var74); + java.awt.Rectangle var77 = var0.getVisibleRect(); + java.awt.image.BufferedImage var79 = var0.loadImg("SpaceWar.SpacePanel[,-1,1,-1x10,invalid,hidden,disabled,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var24 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var30); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var31); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var35 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var42 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var46); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var54 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var57 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var58); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var61 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var63 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var65 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var68); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var69 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var72); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var74); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var76); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var77); + + // Regression assertion (captures the current behavior of the code) + assertNull(var79); + + } + + public void test230() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test230"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.updateUI(); + var0.enableInputMethods(true); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + boolean var10 = var8.hasFocus(); + java.awt.Insets var11 = var8.getInsets(); + java.awt.Insets var12 = var0.getInsets(var11); + java.awt.Image var15 = var0.createImage(2, 100); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNull(var15); + + } + + public void test231() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test231"); + + + SpaceWar.Enemy var2 = new SpaceWar.Enemy(0, 100); + int var3 = var2.getR(); + var2.explode(); + var2.hit(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == 0); + + } + + public void test232() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test232"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.setInheritsPopupMenu(false); + boolean var6 = var0.isDoubleBuffered(); + boolean var7 = var0.isMinimumSizeSet(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var14 = new SpaceWar.SpacePanel(); + float var15 = var14.getAlignmentX(); + var14.setVisible(false); + java.awt.Dimension var18 = var14.getPreferredSize(); + var8.setMaximumSize(var18); + boolean var20 = var8.getVerifyInputWhenFocusTarget(); + javax.accessibility.AccessibleContext var21 = var8.getAccessibleContext(); + boolean var22 = var8.isDoubleBuffered(); + java.awt.Rectangle var23 = var8.getVisibleRect(); + var0.setBounds(var23); + SpaceWar.SpacePanel var25 = new SpaceWar.SpacePanel(); + float var26 = var25.getAlignmentX(); + var25.firePropertyChange("", (-1), 1); + java.awt.Rectangle var31 = var25.getVisibleRect(); + java.awt.Rectangle var32 = var0.getBounds(var31); + java.awt.Container var33 = var0.getParent(); + int var34 = var0.getHeight(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var21); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var22 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var23); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var31); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var32); + + // Regression assertion (captures the current behavior of the code) + assertNull(var33); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var34 == 0); + + } + + public void test233() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test233"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var6 = var0.getMouseListeners(); + int var7 = var0.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var8 = var0.getInputMethodRequests(); + var0.removeNotify(); + var0.enable(); + SpaceWar.SpacePanel var11 = new SpaceWar.SpacePanel(); + java.awt.Color var12 = var11.getBackground(); + boolean var15 = var11.inside(0, (-1)); + var11.transferFocusUpCycle(); + java.lang.String var17 = var11.getName(); + boolean var18 = var0.isFocusCycleRoot((java.awt.Container)var11); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + java.awt.Color var20 = var19.getBackground(); + var19.repaint(); + var19.setRequestFocusEnabled(false); + var19.reshape(100, 0, 100, 0); + var19.requestFocus(); + var19.firePropertyChange("hi!", '4', ' '); + java.awt.Point var34 = var19.getLocation(); + java.awt.Component var35 = var11.getComponentAt(var34); + java.beans.VetoableChangeListener[] var36 = var11.getVetoableChangeListeners(); + boolean var37 = var11.isPaintingForPrint(); + javax.swing.ActionMap var38 = var11.getActionMap(); + var11.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", (byte)0, (byte)(-1)); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var34); + + // Regression assertion (captures the current behavior of the code) + assertNull(var35); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var36); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var38); + + } + + public void test234() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test234"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.updateUI(); + var0.enableInputMethods(true); + java.awt.Point var9 = var0.getMousePosition(false); + java.awt.Point var10 = var0.getMousePosition(); + SpaceWar.SpacePanel var11 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var12 = new SpaceWar.SpacePanel(); + java.awt.Color var13 = var12.getBackground(); + SpaceWar.SpacePanel var14 = new SpaceWar.SpacePanel(); + float var15 = var14.getAlignmentX(); + var14.setVisible(false); + var14.nextFocus(); + var14.updateUI(); + var14.enableInputMethods(true); + var11.add((java.awt.Component)var12, (java.lang.Object)true); + boolean var23 = var11.isMinimumSizeSet(); + java.awt.event.HierarchyListener[] var24 = var11.getHierarchyListeners(); + SpaceWar.SpacePanel var25 = new SpaceWar.SpacePanel(); + float var26 = var25.getAlignmentX(); + var25.setVisible(false); + SpaceWar.SpacePanel var29 = new SpaceWar.SpacePanel(); + java.awt.Color var30 = var29.getBackground(); + var25.setForeground(var30); + SpaceWar.SpacePanel var32 = new SpaceWar.SpacePanel(); + float var33 = var32.getAlignmentX(); + var32.setVisible(false); + boolean var36 = var32.isDoubleBuffered(); + java.awt.dnd.DropTarget var37 = var32.getDropTarget(); + var32.show(false); + java.awt.Rectangle var40 = var32.getVisibleRect(); + var25.repaint(var40); + java.awt.FocusTraversalPolicy var42 = var25.getFocusTraversalPolicy(); + java.awt.im.InputMethodRequests var43 = var25.getInputMethodRequests(); + var25.layout(); + boolean var45 = var25.isFocusTraversalPolicyProvider(); + java.lang.Object var46 = var11.getClientProperty((java.lang.Object)var45); + java.awt.Dimension var47 = var11.getSize(); + var0.resize(var47); + var0.setFocusable(true); + // The following exception was thrown during execution. + // This behavior will recorded for regression testing. + try { + java.awt.Component var52 = var0.getComponent(25); + fail("Expected exception of type java.lang.ArrayIndexOutOfBoundsException"); + } catch (java.lang.ArrayIndexOutOfBoundsException e) { + // Expected exception. + } + + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNull(var9); + + // Regression assertion (captures the current behavior of the code) + assertNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var30); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var33 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var36 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var37); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var40); + + // Regression assertion (captures the current behavior of the code) + assertNull(var42); + + // Regression assertion (captures the current behavior of the code) + assertNull(var43); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var45 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var46); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var47); + + } + + public void test235() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test235"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + boolean var2 = var0.hasFocus(); + boolean var3 = var0.isPreferredSizeSet(); + SpaceWar.SpacePanel var4 = new SpaceWar.SpacePanel(); + java.awt.Color var5 = var4.getBackground(); + var4.repaint(); + var4.setRequestFocusEnabled(false); + int var9 = var0.getComponentZOrder((java.awt.Component)var4); + java.awt.Dimension var10 = var4.getPreferredSize(); + boolean var11 = var4.isShowing(); + boolean var12 = var4.isManagingFocus(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var2 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == (-1)); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == false); + + } + + public void test236() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test236"); + + + SpaceWar.Text var4 = new SpaceWar.Text(475.3294093279198d, 2.0d, 10L, "SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + + } + + public void test237() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test237"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + var0.list(); + float var6 = var0.getAlignmentY(); + boolean var7 = var0.isOpaque(); + var0.resetKeyboardActions(); + boolean var9 = var0.isFocusTraversalPolicyProvider(); + java.awt.im.InputContext var10 = var0.getInputContext(); + var0.setFocusTraversalKeysEnabled(true); + boolean var13 = var0.isMinimumSizeSet(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == false); + + } + + public void test238() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test238"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + var0.list(); + float var6 = var0.getAlignmentY(); + java.awt.Insets var7 = var0.getInsets(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var14 = new SpaceWar.SpacePanel(); + float var15 = var14.getAlignmentX(); + var14.setVisible(false); + java.awt.Dimension var18 = var14.getPreferredSize(); + var8.setMaximumSize(var18); + java.awt.Dimension var20 = var0.getSize(var18); + var0.setFocusTraversalKeysEnabled(false); + var0.enable(true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + } + + public void test239() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test239"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var6 = var0.getMouseListeners(); + java.awt.Dimension var7 = var0.getPreferredSize(); + java.util.Locale var8 = var0.getLocale(); + float var9 = var0.getAlignmentY(); + boolean var10 = javax.swing.JComponent.isLightweightComponent((java.awt.Component)var0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == false); + + } + + public void test240() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test240"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + java.awt.im.InputMethodRequests var3 = var0.getInputMethodRequests(); + int var4 = var0.countComponents(); + java.awt.Dimension var5 = var0.getSize(); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + var6.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + javax.swing.plaf.PanelUI var11 = var6.getUI(); + java.awt.Color var12 = var6.getBackground(); + var0.setBackground(var12); + var0.setAlignmentY(0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var12); + + } + + public void test241() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test241"); + + + SpaceWar.Player var0 = new SpaceWar.Player(); + int var1 = var0.getPower(); + int var2 = var0.getX(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var2 == 400); + + } + + public void test242() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test242"); + + + SpaceWar.Explosion var4 = new SpaceWar.Explosion((-14.294084445243069d), 19.998476951563912d, 0, (-1)); + + } + + public void test243() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test243"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + java.awt.Dimension var4 = var0.getPreferredSize(); + boolean var5 = var0.getVerifyInputWhenFocusTarget(); + java.awt.Component var8 = var0.findComponentAt(10, 1); + boolean var9 = var0.requestDefaultFocus(); + java.awt.Insets var10 = var0.getInsets(); + var0.setDoubleBuffered(false); + SpaceWar.SpacePanel var13 = new SpaceWar.SpacePanel(); + float var14 = var13.getAlignmentX(); + var13.setVisible(false); + boolean var17 = var13.isDoubleBuffered(); + java.awt.dnd.DropTarget var18 = var13.getDropTarget(); + var13.show(false); + java.awt.Rectangle var21 = var13.getVisibleRect(); + java.awt.Toolkit var22 = var13.getToolkit(); + java.awt.event.MouseMotionListener[] var23 = var13.getMouseMotionListeners(); + SpaceWar.SpacePanel var24 = new SpaceWar.SpacePanel(); + float var25 = var24.getAlignmentX(); + var24.setVisible(false); + SpaceWar.SpacePanel var28 = new SpaceWar.SpacePanel(); + java.awt.Color var29 = var28.getBackground(); + var24.setForeground(var29); + SpaceWar.SpacePanel var31 = new SpaceWar.SpacePanel(); + float var32 = var31.getAlignmentX(); + var31.setVisible(false); + boolean var35 = var31.isDoubleBuffered(); + java.awt.dnd.DropTarget var36 = var31.getDropTarget(); + var31.show(false); + java.awt.Rectangle var39 = var31.getVisibleRect(); + var24.repaint(var39); + java.awt.Component.BaselineResizeBehavior var41 = var24.getBaselineResizeBehavior(); + SpaceWar.SpacePanel var42 = new SpaceWar.SpacePanel(); + float var43 = var42.getAlignmentX(); + var42.setVisible(false); + var42.nextFocus(); + var42.repaint(1L); + SpaceWar.SpacePanel var49 = new SpaceWar.SpacePanel(); + float var50 = var49.getAlignmentX(); + var49.setVisible(false); + boolean var53 = var49.isDoubleBuffered(); + var49.list(); + SpaceWar.SpacePanel var55 = new SpaceWar.SpacePanel(); + float var56 = var55.getAlignmentX(); + var55.setVisible(false); + boolean var59 = var55.isDoubleBuffered(); + java.awt.dnd.DropTarget var60 = var55.getDropTarget(); + var55.show(false); + java.awt.Rectangle var63 = var55.getVisibleRect(); + java.awt.Rectangle var64 = var49.getBounds(var63); + var42.setBounds(var64); + var24.paintImmediately(var64); + var13.setBounds(var64); + SpaceWar.SpacePanel var68 = new SpaceWar.SpacePanel(); + float var69 = var68.getAlignmentX(); + var68.setVisible(false); + SpaceWar.SpacePanel var72 = new SpaceWar.SpacePanel(); + java.awt.Color var73 = var72.getBackground(); + var68.setForeground(var73); + SpaceWar.SpacePanel var75 = new SpaceWar.SpacePanel(); + float var76 = var75.getAlignmentX(); + var75.setVisible(false); + boolean var79 = var75.isDoubleBuffered(); + java.awt.dnd.DropTarget var80 = var75.getDropTarget(); + var75.show(false); + java.awt.Rectangle var83 = var75.getVisibleRect(); + var68.repaint(var83); + java.awt.Component.BaselineResizeBehavior var85 = var68.getBaselineResizeBehavior(); + var0.add((java.awt.Component)var13, (java.lang.Object)var85); + var0.setVerifyInputWhenFocusTarget(false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var4); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var21); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var23); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var29); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var32 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var35 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var36); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var39); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var41); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var43 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var50 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var53 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var56 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var59 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var60); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var63); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var64); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var69 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var73); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var76 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var79 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var80); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var83); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var85); + + } + + public void test244() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test244"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + java.awt.Dimension var4 = var0.getPreferredSize(); + java.awt.Toolkit var5 = var0.getToolkit(); + boolean var6 = var0.isFocusable(); + javax.swing.KeyStroke[] var7 = var0.getRegisteredKeyStrokes(); + java.awt.Component var10 = var0.getComponentAt(100, 100); + java.lang.Object var11 = var0.getTreeLock(); + boolean var14 = var0.inside(400, 0); + java.awt.event.MouseWheelListener[] var15 = var0.getMouseWheelListeners(); + var0.enableInputMethods(true); + var0.list(); + var0.firePropertyChange("hi!", 10.0f, 0.5f); + java.awt.Component var25 = var0.getComponentAt(10, 24); + var0.resetKeyboardActions(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var4); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNull(var25); + + } + + public void test245() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test245"); + + + SpaceWar.Player var0 = new SpaceWar.Player(); + int var1 = var0.getR(); + var0.setRigth(false); + int var4 = var0.getY(); + int var5 = var0.getX(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 25); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 500); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == 400); + + } + + public void test246() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test246"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + var0.setRequestFocusEnabled(false); + var0.reshape(100, 0, 100, 0); + var0.firePropertyChange("PanelUI", 10, 10); + java.util.Locale var14 = var0.getLocale(); + javax.swing.JComponent.setDefaultLocale(var14); + javax.swing.JComponent.setDefaultLocale(var14); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + } + + public void test247() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test247"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + var0.show(false); + boolean var8 = var0.isPaintingForPrint(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var15 = var9.getMouseListeners(); + int var16 = var9.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var17 = var9.getInputMethodRequests(); + var0.addKeyListener((java.awt.event.KeyListener)var9); + var9.repaint(); + var9.setFocusCycleRoot(true); + java.awt.LayoutManager var22 = var9.getLayout(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var22); + + } + + public void test248() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test248"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.setInheritsPopupMenu(false); + var0.setFocusTraversalPolicyProvider(true); + boolean var10 = var0.inside(25, 3); + SpaceWar.SpacePanel var11 = new SpaceWar.SpacePanel(); + float var12 = var11.getAlignmentX(); + var11.setVisible(false); + boolean var15 = var11.isDoubleBuffered(); + java.awt.dnd.DropTarget var16 = var11.getDropTarget(); + var11.show(false); + boolean var19 = var11.isPaintingForPrint(); + SpaceWar.SpacePanel var20 = new SpaceWar.SpacePanel(); + float var21 = var20.getAlignmentX(); + SpaceWar.SpacePanel var22 = new SpaceWar.SpacePanel(); + float var23 = var22.getAlignmentX(); + var22.setVisible(false); + java.awt.Dimension var26 = var22.getPreferredSize(); + boolean var27 = var22.getVerifyInputWhenFocusTarget(); + java.awt.Component var30 = var22.findComponentAt(10, 1); + var20.addKeyListener((java.awt.event.KeyListener)var22); + java.awt.Dimension var32 = var22.getMinimumSize(); + var11.setMinimumSize(var32); + var0.setPreferredSize(var32); + boolean var36 = var0.requestFocus(true); + java.awt.Dimension var37 = var0.getMinimumSize(); + var0.firePropertyChange("SpaceWar.SpacePanel[,-1,1,-1x10,invalid,hidden,disabled,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", (-8.529389630162045d), (-20.05877926032409d)); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var30); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var32); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var36 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var37); + + } + + public void test249() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test249"); + + + SpaceWar.Player var0 = new SpaceWar.Player(); + var0.increasePower(25); + int var3 = var0.getScore(); + var0.setRigth(true); + var0.loseLife(); + int var7 = var0.getPower(); + int var8 = var0.getX(); + int var9 = var0.getPower(); + int var10 = var0.getY(); + var0.setScore(500); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 24); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 400); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 24); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 500); + + } + + public void test250() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test250"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + float var7 = var6.getAlignmentX(); + var6.setVisible(false); + java.awt.Dimension var10 = var6.getPreferredSize(); + var0.setMaximumSize(var10); + boolean var12 = var0.getVerifyInputWhenFocusTarget(); + javax.accessibility.AccessibleContext var13 = var0.getAccessibleContext(); + boolean var14 = var0.isDoubleBuffered(); + boolean var15 = var0.getAutoscrolls(); + var0.repaint(10L, (-1), 25, (-1), 100); + var0.updateUI(); + boolean var23 = var0.isBackgroundSet(); + boolean var24 = var0.isPreferredSizeSet(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var24 == true); + + } + + public void test251() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test251"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + SpaceWar.SpacePanel var2 = new SpaceWar.SpacePanel(); + float var3 = var2.getAlignmentX(); + var2.setVisible(false); + java.awt.Dimension var6 = var2.getPreferredSize(); + boolean var7 = var2.getVerifyInputWhenFocusTarget(); + java.awt.Component var10 = var2.findComponentAt(10, 1); + var0.addKeyListener((java.awt.event.KeyListener)var2); + java.awt.Dimension var12 = var2.getMinimumSize(); + javax.swing.JToolTip var13 = var2.createToolTip(); + // The following exception was thrown during execution. + // This behavior will recorded for regression testing. + try { + java.awt.Point var14 = var2.getLocationOnScreen(); + fail("Expected exception of type java.awt.IllegalComponentStateException"); + } catch (java.awt.IllegalComponentStateException e) { + // Expected exception. + } + + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var13); + + } + + public void test252() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test252"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.updateUI(); + var0.enableInputMethods(true); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + boolean var10 = var8.hasFocus(); + java.awt.Insets var11 = var8.getInsets(); + java.awt.Insets var12 = var0.getInsets(var11); + javax.swing.JRootPane var13 = var0.getRootPane(); + int var14 = var0.getY(); + var0.setLocation(2, 2); + SpaceWar.SpacePanel var18 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + java.awt.Color var20 = var19.getBackground(); + SpaceWar.SpacePanel var21 = new SpaceWar.SpacePanel(); + float var22 = var21.getAlignmentX(); + var21.setVisible(false); + var21.nextFocus(); + var21.updateUI(); + var21.enableInputMethods(true); + var18.add((java.awt.Component)var19, (java.lang.Object)true); + java.awt.Image var32 = var19.createImage(1, (-1)); + SpaceWar.SpacePanel var33 = new SpaceWar.SpacePanel(); + float var34 = var33.getAlignmentX(); + var33.setVisible(false); + var33.nextFocus(); + var33.updateUI(); + var33.enableInputMethods(true); + SpaceWar.SpacePanel var41 = new SpaceWar.SpacePanel(); + float var42 = var41.getAlignmentX(); + boolean var43 = var41.hasFocus(); + java.awt.Insets var44 = var41.getInsets(); + java.awt.Insets var45 = var33.getInsets(var44); + java.awt.Insets var46 = var19.getInsets(var44); + java.awt.Insets var47 = var0.getInsets(var44); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var22 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNull(var32); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var34 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var42 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var43 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var44); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var45); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var46); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var47); + + } + + public void test253() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test253"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.reshape((-1), 1, (-1), 10); + var0.disable(); + java.awt.LayoutManager var11 = var0.getLayout(); + java.awt.Container var12 = var0.getParent(); + boolean var13 = var0.isOptimizedDrawingEnabled(); + java.awt.Font var14 = var0.getFont(); + java.beans.PropertyChangeListener[] var16 = var0.getPropertyChangeListeners("SpaceWar.SpacePanel[,0,0,0x0,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + } + + public void test254() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test254"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var6 = var0.getMouseListeners(); + java.awt.Dimension var7 = var0.getPreferredSize(); + int var10 = var0.getBaseline(1, 1); + SpaceWar.SpacePanel var11 = new SpaceWar.SpacePanel(); + float var12 = var11.getAlignmentX(); + SpaceWar.SpacePanel var13 = new SpaceWar.SpacePanel(); + float var14 = var13.getAlignmentX(); + var13.setVisible(false); + java.awt.Dimension var17 = var13.getPreferredSize(); + boolean var18 = var13.getVerifyInputWhenFocusTarget(); + java.awt.Component var21 = var13.findComponentAt(10, 1); + var11.addKeyListener((java.awt.event.KeyListener)var13); + var13.repaint(100, (-1), (-1), 1); + SpaceWar.SpacePanel var28 = new SpaceWar.SpacePanel(); + java.awt.Color var29 = var28.getBackground(); + var28.repaint(); + java.awt.im.InputMethodRequests var31 = var28.getInputMethodRequests(); + java.awt.GraphicsConfiguration var32 = var28.getGraphicsConfiguration(); + var13.remove((java.awt.Component)var28); + java.awt.Font var34 = var28.getFont(); + var0.setFont(var34); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == (-1)); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var21); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var29); + + // Regression assertion (captures the current behavior of the code) + assertNull(var31); + + // Regression assertion (captures the current behavior of the code) + assertNull(var32); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var34); + + } + + public void test255() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test255"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + var0.list(); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + float var7 = var6.getAlignmentX(); + var6.setVisible(false); + boolean var10 = var6.isDoubleBuffered(); + java.awt.dnd.DropTarget var11 = var6.getDropTarget(); + var6.show(false); + java.awt.Rectangle var14 = var6.getVisibleRect(); + java.awt.Rectangle var15 = var0.getBounds(var14); + javax.swing.JToolTip var16 = var0.createToolTip(); + var0.firePropertyChange("", false, false); + var0.setFocusTraversalKeysEnabled(false); + boolean var23 = var0.isValid(); + SpaceWar.SpacePanel var24 = new SpaceWar.SpacePanel(); + float var25 = var24.getAlignmentX(); + var24.setVisible(false); + boolean var28 = var24.isDoubleBuffered(); + java.awt.dnd.DropTarget var29 = var24.getDropTarget(); + SpaceWar.SpacePanel var30 = new SpaceWar.SpacePanel(); + java.awt.Color var31 = var30.getBackground(); + var30.repaint(); + var30.setRequestFocusEnabled(false); + var30.reshape(100, 0, 100, 0); + var30.requestFocus(); + SpaceWar.SpacePanel var41 = new SpaceWar.SpacePanel(); + float var42 = var41.getAlignmentX(); + var41.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var47 = var41.getUI(); + java.awt.im.InputMethodRequests var48 = var41.getInputMethodRequests(); + SpaceWar.SpacePanel var49 = new SpaceWar.SpacePanel(); + float var50 = var49.getAlignmentX(); + var49.setVisible(false); + var49.nextFocus(); + var49.updateUI(); + var49.enableInputMethods(true); + var49.setSize((-1), 1); + SpaceWar.SpacePanel var60 = new SpaceWar.SpacePanel(); + var60.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var41.add((java.awt.Component)var49, (java.lang.Object)"SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + SpaceWar.SpacePanel var66 = new SpaceWar.SpacePanel(); + var66.setName(""); + java.awt.ComponentOrientation var69 = var66.getComponentOrientation(); + var41.applyComponentOrientation(var69); + var30.setComponentOrientation(var69); + var24.applyComponentOrientation(var69); + var0.setComponentOrientation(var69); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var28 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var29); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var31); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var42 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var47); + + // Regression assertion (captures the current behavior of the code) + assertNull(var48); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var50 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var69); + + } + + public void test256() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test256"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.requestFocus(); + boolean var6 = var0.getInheritsPopupMenu(); + boolean var7 = var0.isFocusOwner(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + var8.nextFocus(); + var8.updateUI(); + var8.enableInputMethods(true); + java.awt.Point var17 = var8.getMousePosition(false); + java.awt.Component.BaselineResizeBehavior var18 = var8.getBaselineResizeBehavior(); + boolean var19 = var8.isMaximumSizeSet(); + SpaceWar.SpacePanel var20 = new SpaceWar.SpacePanel(); + float var21 = var20.getAlignmentX(); + var20.setVisible(false); + boolean var24 = var20.isDoubleBuffered(); + var20.list(); + SpaceWar.SpacePanel var26 = new SpaceWar.SpacePanel(); + float var27 = var26.getAlignmentX(); + var26.setVisible(false); + boolean var30 = var26.isDoubleBuffered(); + java.awt.dnd.DropTarget var31 = var26.getDropTarget(); + var26.show(false); + java.awt.Rectangle var34 = var26.getVisibleRect(); + java.awt.Rectangle var35 = var20.getBounds(var34); + javax.swing.JToolTip var36 = var20.createToolTip(); + java.awt.Dimension var37 = var20.minimumSize(); + boolean var39 = var20.requestFocus(false); + java.awt.Dimension var40 = var20.getMaximumSize(); + var0.putClientProperty((java.lang.Object)var8, (java.lang.Object)var20); + javax.swing.JToolTip var42 = var20.createToolTip(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var24 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var30 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var31); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var34); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var35); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var36); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var37); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var39 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var40); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var42); + + } + + public void test257() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test257"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + var0.setName(""); + java.awt.Graphics var3 = var0.getGraphics(); + java.awt.event.MouseMotionListener[] var4 = var0.getMouseMotionListeners(); + boolean var5 = var0.getIgnoreRepaint(); + var0.transferFocusBackward(); + var0.enable(); + java.awt.Container var8 = var0.getTopLevelAncestor(); + var0.invalidate(); + SpaceWar.SpacePanel var10 = new SpaceWar.SpacePanel(); + float var11 = var10.getAlignmentX(); + var10.setVisible(false); + var10.nextFocus(); + var10.updateUI(); + var10.enableInputMethods(true); + java.lang.String var18 = var10.toString(); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + float var20 = var19.getAlignmentX(); + var19.setVisible(false); + boolean var23 = var19.isDoubleBuffered(); + java.awt.dnd.DropTarget var24 = var19.getDropTarget(); + var19.show(false); + java.awt.Rectangle var27 = var19.getVisibleRect(); + java.awt.image.BufferedImage var29 = var19.loadImg("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + java.awt.ComponentOrientation var30 = var19.getComponentOrientation(); + boolean var31 = var19.isPaintingTile(); + boolean var32 = var19.isOptimizedDrawingEnabled(); + int var33 = var10.getComponentZOrder((java.awt.Component)var19); + javax.swing.InputMap var34 = var19.getInputMap(); + SpaceWar.SpacePanel var35 = new SpaceWar.SpacePanel(); + float var36 = var35.getAlignmentX(); + boolean var37 = var35.hasFocus(); + SpaceWar.SpacePanel var38 = new SpaceWar.SpacePanel(); + float var39 = var38.getAlignmentX(); + var38.setVisible(false); + var38.nextFocus(); + var38.reshape((-1), 1, (-1), 10); + var38.disable(); + java.awt.LayoutManager var49 = var38.getLayout(); + var38.setVisible(false); + var35.remove((java.awt.Component)var38); + java.beans.VetoableChangeListener[] var53 = var35.getVetoableChangeListeners(); + var0.putClientProperty((java.lang.Object)var34, (java.lang.Object)var35); + SpaceWar.SpacePanel var55 = new SpaceWar.SpacePanel(); + float var56 = var55.getAlignmentX(); + var55.setVisible(false); + var55.nextFocus(); + var55.updateUI(); + var55.enableInputMethods(true); + java.awt.Point var64 = var55.getMousePosition(false); + java.awt.Component.BaselineResizeBehavior var65 = var55.getBaselineResizeBehavior(); + java.awt.Dimension var66 = var55.getPreferredSize(); + var35.resize(var66); + + // Regression assertion (captures the current behavior of the code) + assertNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var4); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var18 + "' != '" + "SpaceWar.SpacePanel[,0,0,0var18,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"+ "'", var18.equals("SpaceWar.SpacePanel[,0,0,0var18,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]")); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var27); + + // Regression assertion (captures the current behavior of the code) + assertNull(var29); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var30); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var31 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var32 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var33 == (-1)); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var34); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var36 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var39 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var49); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var53); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var56 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNull(var64); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var65); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var66); + + } + + public void test258() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test258"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var6 = var0.getUI(); + java.awt.im.InputMethodRequests var7 = var0.getInputMethodRequests(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + var8.nextFocus(); + var8.updateUI(); + var8.enableInputMethods(true); + var8.setSize((-1), 1); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + var19.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var0.add((java.awt.Component)var8, (java.lang.Object)"SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + var8.setAutoscrolls(true); + SpaceWar.SpacePanel var27 = new SpaceWar.SpacePanel(); + float var28 = var27.getAlignmentX(); + boolean var29 = var27.hasFocus(); + boolean var30 = var27.isPreferredSizeSet(); + var27.firePropertyChange("", (short)1, (short)0); + boolean var35 = var27.isMaximumSizeSet(); + java.awt.peer.ComponentPeer var36 = var27.getPeer(); + java.awt.ComponentOrientation var37 = var27.getComponentOrientation(); + var8.setComponentOrientation(var37); + SpaceWar.SpacePanel var39 = new SpaceWar.SpacePanel(); + float var40 = var39.getAlignmentX(); + var39.setVisible(false); + boolean var43 = var39.isDoubleBuffered(); + java.awt.dnd.DropTarget var44 = var39.getDropTarget(); + SpaceWar.SpacePanel var45 = new SpaceWar.SpacePanel(); + java.awt.Color var46 = var45.getBackground(); + var45.repaint(); + var45.setRequestFocusEnabled(false); + var45.reshape(100, 0, 100, 0); + var45.requestFocus(); + SpaceWar.SpacePanel var56 = new SpaceWar.SpacePanel(); + float var57 = var56.getAlignmentX(); + var56.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var62 = var56.getUI(); + java.awt.im.InputMethodRequests var63 = var56.getInputMethodRequests(); + SpaceWar.SpacePanel var64 = new SpaceWar.SpacePanel(); + float var65 = var64.getAlignmentX(); + var64.setVisible(false); + var64.nextFocus(); + var64.updateUI(); + var64.enableInputMethods(true); + var64.setSize((-1), 1); + SpaceWar.SpacePanel var75 = new SpaceWar.SpacePanel(); + var75.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var56.add((java.awt.Component)var64, (java.lang.Object)"SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + SpaceWar.SpacePanel var81 = new SpaceWar.SpacePanel(); + var81.setName(""); + java.awt.ComponentOrientation var84 = var81.getComponentOrientation(); + var56.applyComponentOrientation(var84); + var45.setComponentOrientation(var84); + var39.applyComponentOrientation(var84); + var8.setComponentOrientation(var84); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var28 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var29 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var30 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var35 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var36); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var37); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var40 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var43 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var44); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var46); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var57 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var62); + + // Regression assertion (captures the current behavior of the code) + assertNull(var63); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var65 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var84); + + } + + public void test259() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test259"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + float var7 = var6.getAlignmentX(); + var6.setVisible(false); + SpaceWar.SpacePanel var10 = new SpaceWar.SpacePanel(); + java.awt.Color var11 = var10.getBackground(); + var6.setForeground(var11); + var0.setBackground(var11); + java.awt.Point var14 = var0.location(); + SpaceWar.SpacePanel var15 = new SpaceWar.SpacePanel(); + var15.setName(""); + var15.enable(true); + var15.enable(); + java.awt.Point var21 = var15.location(); + var0.setLocation(var21); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var21); + + } + + public void test260() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test260"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var6 = var0.getUI(); + java.awt.im.InputMethodRequests var7 = var0.getInputMethodRequests(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + var8.nextFocus(); + var8.updateUI(); + var8.enableInputMethods(true); + var8.setSize((-1), 1); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + var19.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var0.add((java.awt.Component)var8, (java.lang.Object)"SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + SpaceWar.SpacePanel var25 = new SpaceWar.SpacePanel(); + float var26 = var25.getAlignmentX(); + var25.setVisible(false); + java.awt.Dimension var29 = var25.getPreferredSize(); + java.awt.Toolkit var30 = var25.getToolkit(); + java.awt.Toolkit var31 = var25.getToolkit(); + java.awt.Component var32 = var8.add((java.awt.Component)var25); + int var33 = var8.getY(); + int var36 = var8.getBaseline(25, 10); + java.awt.im.InputMethodRequests var37 = var8.getInputMethodRequests(); + java.awt.Point var39 = var8.getMousePosition(true); + SpaceWar.SpacePanel var40 = new SpaceWar.SpacePanel(); + float var41 = var40.getAlignmentX(); + var40.setVisible(false); + var40.nextFocus(); + var40.updateUI(); + java.util.Locale var46 = var40.getLocale(); + var40.paintImmediately(25, 100, 3, 0); + SpaceWar.SpacePanel var52 = new SpaceWar.SpacePanel(); + float var53 = var52.getAlignmentX(); + var52.setVisible(false); + var52.setInheritsPopupMenu(false); + var52.setFocusTraversalPolicyProvider(true); + boolean var62 = var52.inside(25, 3); + SpaceWar.SpacePanel var63 = new SpaceWar.SpacePanel(); + float var64 = var63.getAlignmentX(); + var63.setVisible(false); + boolean var67 = var63.isDoubleBuffered(); + java.awt.dnd.DropTarget var68 = var63.getDropTarget(); + var63.show(false); + boolean var71 = var63.isPaintingForPrint(); + SpaceWar.SpacePanel var72 = new SpaceWar.SpacePanel(); + float var73 = var72.getAlignmentX(); + SpaceWar.SpacePanel var74 = new SpaceWar.SpacePanel(); + float var75 = var74.getAlignmentX(); + var74.setVisible(false); + java.awt.Dimension var78 = var74.getPreferredSize(); + boolean var79 = var74.getVerifyInputWhenFocusTarget(); + java.awt.Component var82 = var74.findComponentAt(10, 1); + var72.addKeyListener((java.awt.event.KeyListener)var74); + java.awt.Dimension var84 = var74.getMinimumSize(); + var63.setMinimumSize(var84); + var52.setPreferredSize(var84); + var40.setMinimumSize(var84); + java.awt.Dimension var88 = var8.getSize(var84); + java.awt.Dimension var89 = var8.getMaximumSize(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var29); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var30); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var31); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var32); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var33 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var36 == (-1)); + + // Regression assertion (captures the current behavior of the code) + assertNull(var37); + + // Regression assertion (captures the current behavior of the code) + assertNull(var39); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var41 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var46); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var53 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var62 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var64 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var67 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var68); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var71 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var73 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var75 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var78); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var79 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var82); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var84); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var88); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var89); + + } + + public void test261() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test261"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.reshape((-1), 1, (-1), 10); + var0.disable(); + java.awt.LayoutManager var11 = var0.getLayout(); + boolean var14 = var0.contains((-1), 0); + SpaceWar.SpacePanel var15 = new SpaceWar.SpacePanel(); + float var16 = var15.getAlignmentX(); + var15.setVisible(false); + var15.nextFocus(); + var15.updateUI(); + var15.enableInputMethods(true); + var15.setSize((-1), 1); + java.awt.Component var26 = var0.add((java.awt.Component)var15); + SpaceWar.SpacePanel var27 = new SpaceWar.SpacePanel(); + float var28 = var27.getAlignmentX(); + var27.setVisible(false); + var27.nextFocus(); + var27.updateUI(); + var27.enableInputMethods(true); + java.lang.String var35 = var27.toString(); + java.awt.FocusTraversalPolicy var36 = var27.getFocusTraversalPolicy(); + var15.removeKeyListener((java.awt.event.KeyListener)var27); + boolean var38 = var27.isShowing(); + java.awt.GraphicsConfiguration var39 = var27.getGraphicsConfiguration(); + java.awt.Image var42 = var27.createImage(0, 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var28 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var35 + "' != '" + "SpaceWar.SpacePanel[,0,0,0var35,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"+ "'", var35.equals("SpaceWar.SpacePanel[,0,0,0var35,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]")); + + // Regression assertion (captures the current behavior of the code) + assertNull(var36); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var38 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var39); + + // Regression assertion (captures the current behavior of the code) + assertNull(var42); + + } + + public void test262() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test262"); + + + SpaceWar.Text var4 = new SpaceWar.Text(0.0d, 241.4584513263457d, 100L, "SpaceWar.SpacePanel[,0,0,0x0,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=java.awt.Dimension[width=800,height=600],minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + + } + + public void test263() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test263"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + java.lang.String var2 = var0.toString(); + boolean var3 = var0.isValidateRoot(); + var0.firePropertyChange("hi!", true, true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var2 + "' != '" + "SpaceWar.SpacePanel[,0,0,0var2,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"+ "'", var2.equals("SpaceWar.SpacePanel[,0,0,0var2,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]")); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == false); + + } + + public void test264() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test264"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + var0.setRequestFocusEnabled(false); + var0.reshape(100, 0, 100, 0); + javax.swing.event.AncestorListener[] var10 = var0.getAncestorListeners(); + boolean var13 = var0.inside(24, 2); + java.awt.Component[] var14 = var0.getComponents(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + } + + public void test265() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test265"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + var0.list(); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + float var7 = var6.getAlignmentX(); + var6.setVisible(false); + boolean var10 = var6.isDoubleBuffered(); + java.awt.dnd.DropTarget var11 = var6.getDropTarget(); + var6.show(false); + java.awt.Rectangle var14 = var6.getVisibleRect(); + java.awt.image.BufferedImage var16 = var6.loadImg("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + boolean var17 = var0.isAncestorOf((java.awt.Component)var6); + javax.swing.InputVerifier var18 = var6.getInputVerifier(); + java.awt.ComponentOrientation var19 = var6.getComponentOrientation(); + SpaceWar.SpacePanel var20 = new SpaceWar.SpacePanel(); + float var21 = var20.getAlignmentX(); + var20.setVisible(false); + var20.nextFocus(); + var20.reshape((-1), 1, (-1), 10); + var20.disable(); + boolean var31 = var20.isFocusable(); + SpaceWar.SpacePanel var32 = new SpaceWar.SpacePanel(); + float var33 = var32.getAlignmentX(); + var32.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var38 = var32.getUI(); + java.awt.im.InputMethodRequests var39 = var32.getInputMethodRequests(); + SpaceWar.SpacePanel var40 = new SpaceWar.SpacePanel(); + float var41 = var40.getAlignmentX(); + var40.setVisible(false); + var40.nextFocus(); + var40.updateUI(); + var40.enableInputMethods(true); + var40.setSize((-1), 1); + SpaceWar.SpacePanel var51 = new SpaceWar.SpacePanel(); + var51.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var32.add((java.awt.Component)var40, (java.lang.Object)"SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + java.awt.event.KeyListener[] var57 = var32.getKeyListeners(); + java.awt.FocusTraversalPolicy var58 = var32.getFocusTraversalPolicy(); + SpaceWar.SpacePanel var59 = new SpaceWar.SpacePanel(); + var59.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + java.awt.Toolkit var64 = var59.getToolkit(); + var20.add((java.awt.Component)var32, (java.lang.Object)var59); + var20.layout(); + boolean var67 = var20.isVisible(); + SpaceWar.SpacePanel var68 = new SpaceWar.SpacePanel(); + java.awt.Color var69 = var68.getBackground(); + var68.repaint(); + var68.setRequestFocusEnabled(false); + var68.setIgnoreRepaint(false); + boolean var75 = var68.requestFocusInWindow(); + float var76 = var68.getAlignmentY(); + java.awt.LayoutManager var77 = var68.getLayout(); + var20.setLayout(var77); + // The following exception was thrown during execution. + // This behavior will recorded for regression testing. + try { + var6.add((java.awt.Component)var20, (java.lang.Object)(-1L), 25); + fail("Expected exception of type java.lang.IllegalArgumentException"); + } catch (java.lang.IllegalArgumentException e) { + // Expected exception. + } + + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var31 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var33 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var38); + + // Regression assertion (captures the current behavior of the code) + assertNull(var39); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var41 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var57); + + // Regression assertion (captures the current behavior of the code) + assertNull(var58); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var64); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var67 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var69); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var75 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var76 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var77); + + } + + public void test266() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test266"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + SpaceWar.SpacePanel var2 = new SpaceWar.SpacePanel(); + float var3 = var2.getAlignmentX(); + var2.setVisible(false); + java.awt.Dimension var6 = var2.getPreferredSize(); + boolean var7 = var2.getVerifyInputWhenFocusTarget(); + java.awt.Component var10 = var2.findComponentAt(10, 1); + var0.addKeyListener((java.awt.event.KeyListener)var2); + var2.repaint(100, (-1), (-1), 1); + SpaceWar.SpacePanel var17 = new SpaceWar.SpacePanel(); + java.awt.Color var18 = var17.getBackground(); + var17.repaint(); + java.awt.im.InputMethodRequests var20 = var17.getInputMethodRequests(); + java.awt.GraphicsConfiguration var21 = var17.getGraphicsConfiguration(); + var2.remove((java.awt.Component)var17); + java.awt.event.HierarchyBoundsListener[] var23 = var2.getHierarchyBoundsListeners(); + java.awt.im.InputContext var24 = var2.getInputContext(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertNull(var21); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var23); + + // Regression assertion (captures the current behavior of the code) + assertNull(var24); + + } + + public void test267() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test267"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.updateUI(); + var0.enableInputMethods(true); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + boolean var10 = var8.hasFocus(); + java.awt.Insets var11 = var8.getInsets(); + java.awt.Insets var12 = var0.getInsets(var11); + boolean var13 = var0.isManagingFocus(); + java.awt.Image var16 = var0.createImage(1, 10); + boolean var17 = var0.isOptimizedDrawingEnabled(); + java.awt.peer.ComponentPeer var18 = var0.getPeer(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var18); + + } + + public void test268() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test268"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + SpaceWar.SpacePanel var4 = new SpaceWar.SpacePanel(); + java.awt.Color var5 = var4.getBackground(); + var0.setForeground(var5); + SpaceWar.SpacePanel var7 = new SpaceWar.SpacePanel(); + float var8 = var7.getAlignmentX(); + var7.setVisible(false); + boolean var11 = var7.isDoubleBuffered(); + java.awt.dnd.DropTarget var12 = var7.getDropTarget(); + var7.show(false); + java.awt.Rectangle var15 = var7.getVisibleRect(); + var0.repaint(var15); + java.awt.FocusTraversalPolicy var17 = var0.getFocusTraversalPolicy(); + java.awt.im.InputMethodRequests var18 = var0.getInputMethodRequests(); + var0.layout(); + java.awt.Point var20 = var0.getMousePosition(); + java.awt.Dimension var21 = var0.getPreferredSize(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var21); + + } + + public void test269() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test269"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + var0.setRequestFocusEnabled(false); + var0.reshape(100, 0, 100, 0); + var0.requestFocus(); + var0.firePropertyChange("hi!", '4', ' '); + java.awt.Point var15 = var0.getLocation(); + java.awt.Dimension var16 = var0.size(); + java.awt.Image var19 = var0.createImage((-1), (-1)); + java.awt.event.ComponentListener[] var20 = var0.getComponentListeners(); + SpaceWar.SpacePanel var21 = new SpaceWar.SpacePanel(); + var21.setName(""); + java.awt.ComponentOrientation var24 = var21.getComponentOrientation(); + var21.firePropertyChange("PanelUI", 1.0f, 0.5f); + int var29 = var0.getComponentZOrder((java.awt.Component)var21); + boolean var31 = var0.areFocusTraversalKeysSet(0); + java.awt.event.MouseWheelListener[] var32 = var0.getMouseWheelListeners(); + SpaceWar.SpacePanel var33 = new SpaceWar.SpacePanel(); + java.awt.Color var34 = var33.getBackground(); + boolean var37 = var33.inside(0, (-1)); + var33.transferFocusUpCycle(); + java.awt.Container var39 = var33.getParent(); + java.awt.Color var40 = var33.getForeground(); + var0.setBackground(var40); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var29 == (-1)); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var31 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var32); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var34); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var39); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var40); + + } + + public void test270() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test270"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + SpaceWar.SpacePanel var4 = new SpaceWar.SpacePanel(); + java.awt.Color var5 = var4.getBackground(); + var0.setForeground(var5); + SpaceWar.SpacePanel var7 = new SpaceWar.SpacePanel(); + float var8 = var7.getAlignmentX(); + var7.setVisible(false); + boolean var11 = var7.isDoubleBuffered(); + java.awt.dnd.DropTarget var12 = var7.getDropTarget(); + var7.show(false); + java.awt.Rectangle var15 = var7.getVisibleRect(); + var0.repaint(var15); + java.awt.FocusTraversalPolicy var17 = var0.getFocusTraversalPolicy(); + SpaceWar.SpacePanel var18 = new SpaceWar.SpacePanel(); + float var19 = var18.getAlignmentX(); + var18.firePropertyChange("", (-1), 1); + boolean var24 = var18.isFocusOwner(); + SpaceWar.SpacePanel var26 = new SpaceWar.SpacePanel(); + float var27 = var26.getAlignmentX(); + var26.setVisible(false); + java.awt.Dimension var30 = var26.getPreferredSize(); + java.awt.Toolkit var31 = var26.getToolkit(); + SpaceWar.SpacePanel var32 = new SpaceWar.SpacePanel(); + var32.setName(""); + int var35 = var32.getX(); + SpaceWar.SpacePanel var36 = new SpaceWar.SpacePanel(); + float var37 = var36.getAlignmentX(); + var36.setVisible(false); + var36.nextFocus(); + SpaceWar.SpacePanel var41 = new SpaceWar.SpacePanel(); + float var42 = var41.getAlignmentX(); + var41.setVisible(false); + SpaceWar.SpacePanel var45 = new SpaceWar.SpacePanel(); + java.awt.Color var46 = var45.getBackground(); + var41.setForeground(var46); + var36.setBackground(var46); + var32.setBackground(var46); + var26.setForeground(var46); + var18.putClientProperty((java.lang.Object)(byte)100, (java.lang.Object)var46); + var0.setBackground(var46); + SpaceWar.SpacePanel var53 = new SpaceWar.SpacePanel(); + float var54 = var53.getAlignmentX(); + var53.setVisible(false); + boolean var57 = var53.isDoubleBuffered(); + java.awt.dnd.DropTarget var58 = var53.getDropTarget(); + var53.show(false); + boolean var61 = var53.isPaintingForPrint(); + SpaceWar.SpacePanel var62 = new SpaceWar.SpacePanel(); + float var63 = var62.getAlignmentX(); + SpaceWar.SpacePanel var64 = new SpaceWar.SpacePanel(); + float var65 = var64.getAlignmentX(); + var64.setVisible(false); + java.awt.Dimension var68 = var64.getPreferredSize(); + boolean var69 = var64.getVerifyInputWhenFocusTarget(); + java.awt.Component var72 = var64.findComponentAt(10, 1); + var62.addKeyListener((java.awt.event.KeyListener)var64); + java.awt.Dimension var74 = var64.getMinimumSize(); + var53.setMinimumSize(var74); + java.awt.Dimension var76 = var0.getSize(var74); + boolean var77 = var0.isValid(); + int var78 = var0.getWidth(); + java.awt.event.HierarchyListener[] var79 = var0.getHierarchyListeners(); + var0.firePropertyChange("", 'a', '#'); + var0.grabFocus(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var24 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var30); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var31); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var35 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var42 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var46); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var54 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var57 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var58); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var61 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var63 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var65 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var68); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var69 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var72); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var74); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var76); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var77 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var78 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var79); + + } + + public void test271() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test271"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + SpaceWar.SpacePanel var4 = new SpaceWar.SpacePanel(); + java.awt.Color var5 = var4.getBackground(); + var0.setForeground(var5); + SpaceWar.SpacePanel var7 = new SpaceWar.SpacePanel(); + float var8 = var7.getAlignmentX(); + var7.setVisible(false); + boolean var11 = var7.isDoubleBuffered(); + java.awt.dnd.DropTarget var12 = var7.getDropTarget(); + var7.show(false); + java.awt.Rectangle var15 = var7.getVisibleRect(); + var0.repaint(var15); + java.awt.FocusTraversalPolicy var17 = var0.getFocusTraversalPolicy(); + SpaceWar.SpacePanel var18 = new SpaceWar.SpacePanel(); + float var19 = var18.getAlignmentX(); + var18.firePropertyChange("", (-1), 1); + boolean var24 = var18.isFocusOwner(); + SpaceWar.SpacePanel var26 = new SpaceWar.SpacePanel(); + float var27 = var26.getAlignmentX(); + var26.setVisible(false); + java.awt.Dimension var30 = var26.getPreferredSize(); + java.awt.Toolkit var31 = var26.getToolkit(); + SpaceWar.SpacePanel var32 = new SpaceWar.SpacePanel(); + var32.setName(""); + int var35 = var32.getX(); + SpaceWar.SpacePanel var36 = new SpaceWar.SpacePanel(); + float var37 = var36.getAlignmentX(); + var36.setVisible(false); + var36.nextFocus(); + SpaceWar.SpacePanel var41 = new SpaceWar.SpacePanel(); + float var42 = var41.getAlignmentX(); + var41.setVisible(false); + SpaceWar.SpacePanel var45 = new SpaceWar.SpacePanel(); + java.awt.Color var46 = var45.getBackground(); + var41.setForeground(var46); + var36.setBackground(var46); + var32.setBackground(var46); + var26.setForeground(var46); + var18.putClientProperty((java.lang.Object)(byte)100, (java.lang.Object)var46); + var0.setBackground(var46); + SpaceWar.SpacePanel var53 = new SpaceWar.SpacePanel(); + float var54 = var53.getAlignmentX(); + var53.setVisible(false); + boolean var57 = var53.isDoubleBuffered(); + java.awt.dnd.DropTarget var58 = var53.getDropTarget(); + var53.show(false); + boolean var61 = var53.isPaintingForPrint(); + SpaceWar.SpacePanel var62 = new SpaceWar.SpacePanel(); + float var63 = var62.getAlignmentX(); + SpaceWar.SpacePanel var64 = new SpaceWar.SpacePanel(); + float var65 = var64.getAlignmentX(); + var64.setVisible(false); + java.awt.Dimension var68 = var64.getPreferredSize(); + boolean var69 = var64.getVerifyInputWhenFocusTarget(); + java.awt.Component var72 = var64.findComponentAt(10, 1); + var62.addKeyListener((java.awt.event.KeyListener)var64); + java.awt.Dimension var74 = var64.getMinimumSize(); + var53.setMinimumSize(var74); + java.awt.Dimension var76 = var0.getSize(var74); + boolean var77 = var0.isValid(); + int var78 = var0.getWidth(); + java.awt.event.HierarchyListener[] var79 = var0.getHierarchyListeners(); + java.awt.Component var82 = var0.locate(1, 1); + boolean var83 = var0.isRequestFocusEnabled(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var24 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var30); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var31); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var35 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var42 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var46); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var54 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var57 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var58); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var61 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var63 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var65 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var68); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var69 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var72); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var74); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var76); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var77 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var78 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var79); + + // Regression assertion (captures the current behavior of the code) + assertNull(var82); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var83 == true); + + } + + public void test272() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test272"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var6 = var0.getMouseListeners(); + var0.firePropertyChange("", 0.5f, 100.0f); + var0.enable(false); + int var13 = var0.getDebugGraphicsOptions(); + java.awt.ComponentOrientation var14 = var0.getComponentOrientation(); + var0.reshape(25, 400, 400, 0); + boolean var20 = var0.isOptimizedDrawingEnabled(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == true); + + } + + public void test273() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test273"); + + + SpaceWar.Enemy var2 = new SpaceWar.Enemy(25, (-1)); + boolean var3 = var2.isDead(); + var2.update(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == false); + + } + + public void test274() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test274"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + SpaceWar.SpacePanel var4 = new SpaceWar.SpacePanel(); + java.awt.Color var5 = var4.getBackground(); + var0.setForeground(var5); + SpaceWar.SpacePanel var7 = new SpaceWar.SpacePanel(); + float var8 = var7.getAlignmentX(); + var7.setVisible(false); + boolean var11 = var7.isDoubleBuffered(); + java.awt.dnd.DropTarget var12 = var7.getDropTarget(); + var7.show(false); + java.awt.Rectangle var15 = var7.getVisibleRect(); + var0.repaint(var15); + java.awt.FocusTraversalPolicy var17 = var0.getFocusTraversalPolicy(); + SpaceWar.SpacePanel var18 = new SpaceWar.SpacePanel(); + float var19 = var18.getAlignmentX(); + var18.firePropertyChange("", (-1), 1); + boolean var24 = var18.isFocusOwner(); + SpaceWar.SpacePanel var26 = new SpaceWar.SpacePanel(); + float var27 = var26.getAlignmentX(); + var26.setVisible(false); + java.awt.Dimension var30 = var26.getPreferredSize(); + java.awt.Toolkit var31 = var26.getToolkit(); + SpaceWar.SpacePanel var32 = new SpaceWar.SpacePanel(); + var32.setName(""); + int var35 = var32.getX(); + SpaceWar.SpacePanel var36 = new SpaceWar.SpacePanel(); + float var37 = var36.getAlignmentX(); + var36.setVisible(false); + var36.nextFocus(); + SpaceWar.SpacePanel var41 = new SpaceWar.SpacePanel(); + float var42 = var41.getAlignmentX(); + var41.setVisible(false); + SpaceWar.SpacePanel var45 = new SpaceWar.SpacePanel(); + java.awt.Color var46 = var45.getBackground(); + var41.setForeground(var46); + var36.setBackground(var46); + var32.setBackground(var46); + var26.setForeground(var46); + var18.putClientProperty((java.lang.Object)(byte)100, (java.lang.Object)var46); + var0.setBackground(var46); + SpaceWar.SpacePanel var53 = new SpaceWar.SpacePanel(); + float var54 = var53.getAlignmentX(); + var53.setVisible(false); + boolean var57 = var53.isDoubleBuffered(); + java.awt.dnd.DropTarget var58 = var53.getDropTarget(); + var53.show(false); + boolean var61 = var53.isPaintingForPrint(); + SpaceWar.SpacePanel var62 = new SpaceWar.SpacePanel(); + float var63 = var62.getAlignmentX(); + SpaceWar.SpacePanel var64 = new SpaceWar.SpacePanel(); + float var65 = var64.getAlignmentX(); + var64.setVisible(false); + java.awt.Dimension var68 = var64.getPreferredSize(); + boolean var69 = var64.getVerifyInputWhenFocusTarget(); + java.awt.Component var72 = var64.findComponentAt(10, 1); + var62.addKeyListener((java.awt.event.KeyListener)var64); + java.awt.Dimension var74 = var64.getMinimumSize(); + var53.setMinimumSize(var74); + java.awt.Dimension var76 = var0.getSize(var74); + java.awt.Rectangle var77 = var0.getVisibleRect(); + javax.swing.InputMap var78 = var0.getInputMap(); + java.util.Locale var79 = var0.getLocale(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var24 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var30); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var31); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var35 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var42 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var46); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var54 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var57 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var58); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var61 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var63 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var65 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var68); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var69 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var72); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var74); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var76); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var77); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var78); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var79); + + } + + public void test275() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test275"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + var0.show(false); + boolean var8 = var0.isPaintingForPrint(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var15 = var9.getMouseListeners(); + int var16 = var9.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var17 = var9.getInputMethodRequests(); + var0.addKeyListener((java.awt.event.KeyListener)var9); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + float var20 = var19.getAlignmentX(); + var19.setVisible(false); + boolean var23 = var19.isDoubleBuffered(); + var19.list(); + float var25 = var19.getAlignmentY(); + boolean var26 = var9.isFocusCycleRoot((java.awt.Container)var19); + boolean var27 = var19.isEnabled(); + java.awt.Dimension var28 = var19.getMaximumSize(); + var19.setFocusCycleRoot(false); + SpaceWar.SpacePanel var32 = new SpaceWar.SpacePanel(); + java.awt.Color var33 = var32.getBackground(); + var32.repaint(); + java.awt.im.InputMethodRequests var35 = var32.getInputMethodRequests(); + int var36 = var32.countComponents(); + java.awt.event.ComponentListener[] var37 = var32.getComponentListeners(); + var32.removeNotify(); + javax.swing.InputMap var39 = var32.getInputMap(); + SpaceWar.SpacePanel var40 = new SpaceWar.SpacePanel(); + float var41 = var40.getAlignmentX(); + var40.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var46 = new SpaceWar.SpacePanel(); + float var47 = var46.getAlignmentX(); + var46.setVisible(false); + SpaceWar.SpacePanel var50 = new SpaceWar.SpacePanel(); + java.awt.Color var51 = var50.getBackground(); + var46.setForeground(var51); + var40.setBackground(var51); + java.awt.Point var54 = var40.location(); + var32.setLocation(var54); + SpaceWar.SpacePanel var56 = new SpaceWar.SpacePanel(); + float var57 = var56.getAlignmentX(); + var56.setVisible(false); + var56.nextFocus(); + var56.reshape((-1), 1, (-1), 10); + SpaceWar.SpacePanel var66 = new SpaceWar.SpacePanel(); + java.awt.Color var67 = var66.getBackground(); + var66.repaint(); + var66.setRequestFocusEnabled(false); + var66.reshape(100, 0, 100, 0); + java.awt.Component var76 = var56.add((java.awt.Component)var66); + var56.enable(); + SpaceWar.SpacePanel var78 = new SpaceWar.SpacePanel(); + float var79 = var78.getAlignmentX(); + boolean var80 = var78.hasFocus(); + boolean var81 = var78.isPreferredSizeSet(); + var32.putClientProperty((java.lang.Object)var56, (java.lang.Object)var78); + java.awt.Component var83 = var19.add("PanelUI", (java.awt.Component)var78); + java.awt.Rectangle var84 = var78.getBounds(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var28); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var33); + + // Regression assertion (captures the current behavior of the code) + assertNull(var35); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var36 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var37); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var39); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var41 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var47 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var51); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var54); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var57 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var67); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var76); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var79 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var80 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var81 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var83); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var84); + + } + + public void test276() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test276"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var6 = var0.getUI(); + java.awt.im.InputMethodRequests var7 = var0.getInputMethodRequests(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + var8.nextFocus(); + var8.updateUI(); + var8.enableInputMethods(true); + var8.setSize((-1), 1); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + var19.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var0.add((java.awt.Component)var8, (java.lang.Object)"SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + SpaceWar.SpacePanel var25 = new SpaceWar.SpacePanel(); + float var26 = var25.getAlignmentX(); + var25.setVisible(false); + java.awt.Dimension var29 = var25.getPreferredSize(); + java.awt.Toolkit var30 = var25.getToolkit(); + java.awt.Toolkit var31 = var25.getToolkit(); + java.awt.Component var32 = var8.add((java.awt.Component)var25); + int var33 = var8.getY(); + int var36 = var8.getBaseline(25, 10); + java.awt.im.InputMethodRequests var37 = var8.getInputMethodRequests(); + java.awt.Container var38 = var8.getTopLevelAncestor(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var29); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var30); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var31); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var32); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var33 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var36 == (-1)); + + // Regression assertion (captures the current behavior of the code) + assertNull(var37); + + // Regression assertion (captures the current behavior of the code) + assertNull(var38); + + } + + public void test277() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test277"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + SpaceWar.SpacePanel var4 = new SpaceWar.SpacePanel(); + java.awt.Color var5 = var4.getBackground(); + var0.setForeground(var5); + SpaceWar.SpacePanel var7 = new SpaceWar.SpacePanel(); + float var8 = var7.getAlignmentX(); + var7.setVisible(false); + boolean var11 = var7.isDoubleBuffered(); + java.awt.dnd.DropTarget var12 = var7.getDropTarget(); + var7.show(false); + java.awt.Rectangle var15 = var7.getVisibleRect(); + var0.repaint(var15); + java.awt.Component.BaselineResizeBehavior var17 = var0.getBaselineResizeBehavior(); + SpaceWar.SpacePanel var18 = new SpaceWar.SpacePanel(); + float var19 = var18.getAlignmentX(); + var18.setVisible(false); + var18.nextFocus(); + var18.repaint(1L); + SpaceWar.SpacePanel var25 = new SpaceWar.SpacePanel(); + float var26 = var25.getAlignmentX(); + var25.setVisible(false); + boolean var29 = var25.isDoubleBuffered(); + var25.list(); + SpaceWar.SpacePanel var31 = new SpaceWar.SpacePanel(); + float var32 = var31.getAlignmentX(); + var31.setVisible(false); + boolean var35 = var31.isDoubleBuffered(); + java.awt.dnd.DropTarget var36 = var31.getDropTarget(); + var31.show(false); + java.awt.Rectangle var39 = var31.getVisibleRect(); + java.awt.Rectangle var40 = var25.getBounds(var39); + var18.setBounds(var40); + var0.paintImmediately(var40); + java.awt.Dimension var43 = var0.getMaximumSize(); + boolean var44 = javax.swing.JComponent.isLightweightComponent((java.awt.Component)var0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var29 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var32 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var35 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var36); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var39); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var40); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var43); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var44 == false); + + } + + public void test278() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test278"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var6 = var0.getUI(); + java.awt.im.InputMethodRequests var7 = var0.getInputMethodRequests(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + var8.nextFocus(); + var8.updateUI(); + var8.enableInputMethods(true); + var8.setSize((-1), 1); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + var19.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var0.add((java.awt.Component)var8, (java.lang.Object)"SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + java.awt.ComponentOrientation var25 = var8.getComponentOrientation(); + java.beans.VetoableChangeListener[] var26 = var8.getVetoableChangeListeners(); + int var27 = var8.getHeight(); + var8.enable(true); + java.awt.Component var30 = var8.getNextFocusableComponent(); + java.awt.Point var31 = var8.getMousePosition(); + SpaceWar.SpacePanel var32 = new SpaceWar.SpacePanel(); + float var33 = var32.getAlignmentX(); + var32.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var38 = var32.getUI(); + java.awt.im.InputMethodRequests var39 = var32.getInputMethodRequests(); + SpaceWar.SpacePanel var40 = new SpaceWar.SpacePanel(); + float var41 = var40.getAlignmentX(); + var40.setVisible(false); + var40.nextFocus(); + var40.updateUI(); + var40.enableInputMethods(true); + var40.setSize((-1), 1); + SpaceWar.SpacePanel var51 = new SpaceWar.SpacePanel(); + var51.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var32.add((java.awt.Component)var40, (java.lang.Object)"SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + SpaceWar.SpacePanel var57 = new SpaceWar.SpacePanel(); + var57.setName(""); + java.awt.ComponentOrientation var60 = var57.getComponentOrientation(); + var32.applyComponentOrientation(var60); + var8.applyComponentOrientation(var60); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var25); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == 1); + + // Regression assertion (captures the current behavior of the code) + assertNull(var30); + + // Regression assertion (captures the current behavior of the code) + assertNull(var31); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var33 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var38); + + // Regression assertion (captures the current behavior of the code) + assertNull(var39); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var41 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var60); + + } + + public void test279() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test279"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + boolean var2 = var0.hasFocus(); + java.beans.VetoableChangeListener[] var3 = var0.getVetoableChangeListeners(); + var0.paintImmediately(10, 0, (-1), 25); + boolean var9 = var0.getInheritsPopupMenu(); + var0.resize(500, 10); + SpaceWar.SpacePanel var13 = new SpaceWar.SpacePanel(); + float var14 = var13.getAlignmentX(); + var13.setVisible(false); + boolean var17 = var13.isDoubleBuffered(); + SpaceWar.SpacePanel var18 = new SpaceWar.SpacePanel(); + float var19 = var18.getAlignmentX(); + var18.setVisible(false); + var18.nextFocus(); + var18.reshape((-1), 1, (-1), 10); + var18.disable(); + boolean var29 = var18.isFocusable(); + int var30 = var18.getHeight(); + var13.setNextFocusableComponent((java.awt.Component)var18); + SpaceWar.SpacePanel var32 = new SpaceWar.SpacePanel(); + float var33 = var32.getAlignmentX(); + var32.setVisible(false); + var32.nextFocus(); + SpaceWar.SpacePanel var37 = new SpaceWar.SpacePanel(); + float var38 = var37.getAlignmentX(); + var37.setVisible(false); + SpaceWar.SpacePanel var41 = new SpaceWar.SpacePanel(); + java.awt.Color var42 = var41.getBackground(); + var37.setForeground(var42); + var32.setBackground(var42); + java.awt.Component var45 = var32.getNextFocusableComponent(); + float var46 = var32.getAlignmentY(); + java.awt.event.MouseListener[] var47 = var32.getMouseListeners(); + java.awt.Point var48 = var32.location(); + java.awt.Point var49 = var13.getLocation(var48); + var0.setLocation(var49); + var0.setSize(2, 3); + SpaceWar.Player var54 = new SpaceWar.Player(); + boolean var55 = var54.isRecovering(); + var54.setRigth(false); + int var58 = var54.getPower(); + boolean var59 = var54.isDead(); + SpaceWar.SpacePanel var60 = new SpaceWar.SpacePanel(); + java.awt.Color var61 = var60.getBackground(); + var60.repaint(); + java.awt.im.InputMethodRequests var63 = var60.getInputMethodRequests(); + var60.setDoubleBuffered(true); + var60.setInheritsPopupMenu(false); + boolean var68 = var60.isFocusTraversalPolicySet(); + var0.putClientProperty((java.lang.Object)var54, (java.lang.Object)var68); + javax.swing.TransferHandler var70 = var0.getTransferHandler(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var2 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var29 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var30 == 10); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var33 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var38 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var42); + + // Regression assertion (captures the current behavior of the code) + assertNull(var45); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var46 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var47); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var48); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var49); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var55 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var58 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var59 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var61); + + // Regression assertion (captures the current behavior of the code) + assertNull(var63); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var68 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var70); + + } + + public void test280() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test280"); + + + SpaceWar.Text var4 = new SpaceWar.Text(2.0d, 323.62099822147866d, 0L, "SpaceWar.SpacePanel[,-1,1,-1x10,invalid,hidden,disabled,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + + } + + public void test281() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test281"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + java.awt.Dimension var4 = var0.getPreferredSize(); + boolean var5 = var0.getVerifyInputWhenFocusTarget(); + java.awt.Component var8 = var0.findComponentAt(10, 1); + boolean var9 = var0.requestDefaultFocus(); + var0.setVerifyInputWhenFocusTarget(false); + boolean var12 = var0.isPaintingForPrint(); + boolean var13 = var0.getIgnoreRepaint(); + java.awt.FocusTraversalPolicy var14 = var0.getFocusTraversalPolicy(); + var0.setRequestFocusEnabled(true); + // The following exception was thrown during execution. + // This behavior will recorded for regression testing. + try { + javax.swing.InputMap var18 = var0.getInputMap(3); + fail("Expected exception of type java.lang.IllegalArgumentException"); + } catch (java.lang.IllegalArgumentException e) { + // Expected exception. + } + + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var4); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var14); + + } + + public void test282() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test282"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.setEnabled(false); + java.awt.Image var8 = var0.createImage(10, 100); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + java.awt.Color var10 = var9.getBackground(); + var0.setForeground(var10); + var0.setFocusTraversalPolicyProvider(true); + java.util.Set var15 = var0.getFocusTraversalKeys(2); + boolean var16 = var0.getFocusTraversalKeysEnabled(); + javax.swing.JToolTip var17 = var0.createToolTip(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var17); + + } + + public void test283() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test283"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var6 = var0.getMouseListeners(); + int var7 = var0.getDebugGraphicsOptions(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + boolean var12 = var8.isDoubleBuffered(); + java.awt.dnd.DropTarget var13 = var8.getDropTarget(); + var8.show(false); + java.awt.Rectangle var16 = var8.getVisibleRect(); + var0.paintImmediately(var16); + java.awt.Rectangle var18 = var0.getBounds(); + java.awt.Component var21 = var0.getComponentAt((-1), 25); + java.awt.Insets var22 = var0.getInsets(); + SpaceWar.SpacePanel var23 = new SpaceWar.SpacePanel(); + float var24 = var23.getAlignmentX(); + var23.setVisible(false); + var23.nextFocus(); + var23.repaint(1L); + SpaceWar.SpacePanel var30 = new SpaceWar.SpacePanel(); + float var31 = var30.getAlignmentX(); + var30.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var36 = new SpaceWar.SpacePanel(); + float var37 = var36.getAlignmentX(); + var36.setVisible(false); + java.awt.Dimension var40 = var36.getPreferredSize(); + var30.setMaximumSize(var40); + var23.setPreferredSize(var40); + javax.swing.plaf.PanelUI var43 = var23.getUI(); + SpaceWar.SpacePanel var44 = new SpaceWar.SpacePanel(); + float var45 = var44.getAlignmentX(); + var44.setVisible(false); + SpaceWar.SpacePanel var48 = new SpaceWar.SpacePanel(); + java.awt.Color var49 = var48.getBackground(); + var44.setForeground(var49); + SpaceWar.SpacePanel var51 = new SpaceWar.SpacePanel(); + float var52 = var51.getAlignmentX(); + var51.setVisible(false); + boolean var55 = var51.isDoubleBuffered(); + java.awt.dnd.DropTarget var56 = var51.getDropTarget(); + var51.show(false); + java.awt.Rectangle var59 = var51.getVisibleRect(); + var44.repaint(var59); + java.awt.FocusTraversalPolicy var61 = var44.getFocusTraversalPolicy(); + var44.resetKeyboardActions(); + SpaceWar.SpacePanel var63 = new SpaceWar.SpacePanel(); + float var64 = var63.getAlignmentX(); + var63.setVisible(false); + boolean var67 = var63.isDoubleBuffered(); + java.awt.dnd.DropTarget var68 = var63.getDropTarget(); + var63.show(false); + java.awt.Rectangle var71 = var63.getVisibleRect(); + var44.computeVisibleRect(var71); + javax.swing.ActionMap var73 = var44.getActionMap(); + var23.setActionMap(var73); + java.awt.Point var75 = var23.getMousePosition(); + SpaceWar.SpacePanel var76 = new SpaceWar.SpacePanel(); + float var77 = var76.getAlignmentX(); + var76.setVisible(false); + var76.setInheritsPopupMenu(false); + var76.setFocusTraversalPolicyProvider(true); + java.awt.Container var84 = var76.getFocusCycleRootAncestor(); + SpaceWar.SpacePanel var85 = new SpaceWar.SpacePanel(); + float var86 = var85.getAlignmentX(); + var85.removeNotify(); + SpaceWar.SpacePanel var88 = new SpaceWar.SpacePanel(); + float var89 = var88.getAlignmentX(); + var88.setVisible(false); + boolean var92 = var88.isDoubleBuffered(); + var88.list(); + float var94 = var88.getAlignmentY(); + java.awt.Insets var95 = var88.getInsets(); + java.awt.Insets var96 = var85.getInsets(var95); + java.awt.Insets var97 = var76.getInsets(var96); + var0.add((java.awt.Component)var23, (java.lang.Object)var76); + java.awt.Dimension var99 = var76.getPreferredSize(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertNull(var21); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var24 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var31 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var40); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var43); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var45 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var49); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var52 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var55 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var56); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var59); + + // Regression assertion (captures the current behavior of the code) + assertNull(var61); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var64 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var67 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var68); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var71); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var73); + + // Regression assertion (captures the current behavior of the code) + assertNull(var75); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var77 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNull(var84); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var86 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var89 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var92 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var94 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var95); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var96); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var97); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var99); + + } + + public void test284() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test284"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.reshape((-1), 1, (-1), 10); + var0.disable(); + java.awt.LayoutManager var11 = var0.getLayout(); + java.awt.Container var12 = var0.getParent(); + boolean var13 = var0.isPaintingForPrint(); + SpaceWar.SpacePanel var14 = new SpaceWar.SpacePanel(); + float var15 = var14.getAlignmentX(); + var14.setVisible(false); + var14.nextFocus(); + var14.reshape((-1), 1, (-1), 10); + SpaceWar.SpacePanel var24 = new SpaceWar.SpacePanel(); + java.awt.Color var25 = var24.getBackground(); + var24.repaint(); + var24.setRequestFocusEnabled(false); + var24.reshape(100, 0, 100, 0); + java.awt.Component var34 = var14.add((java.awt.Component)var24); + SpaceWar.SpacePanel var35 = new SpaceWar.SpacePanel(); + var35.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + javax.swing.plaf.PanelUI var40 = var35.getUI(); + SpaceWar.SpacePanel var41 = new SpaceWar.SpacePanel(); + float var42 = var41.getAlignmentX(); + var41.setVisible(false); + var41.nextFocus(); + var41.repaint(1L); + SpaceWar.SpacePanel var48 = new SpaceWar.SpacePanel(); + float var49 = var48.getAlignmentX(); + var48.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var54 = new SpaceWar.SpacePanel(); + float var55 = var54.getAlignmentX(); + var54.setVisible(false); + java.awt.Dimension var58 = var54.getPreferredSize(); + var48.setMaximumSize(var58); + var41.setPreferredSize(var58); + var35.setMaximumSize(var58); + java.awt.Dimension var62 = var24.getSize(var58); + var0.setSize(var62); + SpaceWar.SpacePanel var64 = new SpaceWar.SpacePanel(); + float var65 = var64.getAlignmentX(); + var64.setVisible(false); + boolean var68 = var64.isDoubleBuffered(); + var64.enable(false); + var0.removeKeyListener((java.awt.event.KeyListener)var64); + boolean var72 = var64.getInheritsPopupMenu(); + java.awt.Toolkit var73 = var64.getToolkit(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var25); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var34); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var40); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var42 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var49 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var55 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var58); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var62); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var65 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var68 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var72 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var73); + + } + + public void test285() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test285"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + var0.list(); + boolean var6 = var0.isVisible(); + int var7 = var0.getX(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0); + + } + + public void test286() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test286"); + + + SpaceWar.Player var0 = new SpaceWar.Player(); + boolean var1 = var0.isRecovering(); + var0.loseLife(); + int var3 = var0.getR(); + var0.loseLife(); + var0.setDown(true); + int var7 = var0.getRequiredPower(); + int var8 = var0.getScore(); + int var9 = var0.getRequiredPower(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == 25); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 1); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 1); + + } + + public void test287() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test287"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.requestFocus(); + boolean var6 = var0.isBackgroundSet(); + SpaceWar.SpacePanel var7 = new SpaceWar.SpacePanel(); + java.awt.Color var8 = var7.getBackground(); + var7.repaint(); + var7.setRequestFocusEnabled(false); + var7.reshape(100, 0, 100, 0); + SpaceWar.SpacePanel var17 = new SpaceWar.SpacePanel(); + float var18 = var17.getAlignmentX(); + var17.setVisible(false); + var17.setInheritsPopupMenu(false); + boolean var23 = var17.isDoubleBuffered(); + SpaceWar.SpacePanel var24 = new SpaceWar.SpacePanel(); + float var25 = var24.getAlignmentX(); + var24.setVisible(false); + var24.nextFocus(); + var24.reshape((-1), 1, (-1), 10); + var24.disable(); + java.awt.LayoutManager var35 = var24.getLayout(); + var17.setLayout(var35); + var0.add((java.awt.Component)var7, (java.lang.Object)var35); + var7.hide(); + java.awt.dnd.DropTarget var39 = var7.getDropTarget(); + java.awt.event.FocusListener[] var40 = var7.getFocusListeners(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var35); + + // Regression assertion (captures the current behavior of the code) + assertNull(var39); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var40); + + } + + public void test288() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test288"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.updateUI(); + var0.enableInputMethods(true); + var0.enableInputMethods(true); + java.awt.Component var10 = var0.getNextFocusableComponent(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNull(var10); + + } + + public void test289() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test289"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.updateUI(); + var0.enableInputMethods(true); + var0.enableInputMethods(true); + var0.setDebugGraphicsOptions(400); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + } + + public void test290() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test290"); + + + SpaceWar.Player var0 = new SpaceWar.Player(); + boolean var1 = var0.isRecovering(); + var0.loseLife(); + int var3 = var0.getR(); + var0.loseLife(); + java.awt.image.BufferedImage var6 = var0.loadImg("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + int var7 = var0.getPower(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == 25); + + // Regression assertion (captures the current behavior of the code) + assertNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0); + + } + + public void test291() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test291"); + + + SpaceWar.Player var0 = new SpaceWar.Player(); + boolean var1 = var0.isRecovering(); + var0.loseLife(); + int var3 = var0.getR(); + var0.loseLife(); + var0.setDown(true); + int var7 = var0.getRequiredPower(); + var0.setUp(true); + int var10 = var0.getRequiredPower(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == 25); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 1); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 1); + + } + + public void test292() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test292"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + var0.setRequestFocusEnabled(false); + var0.reshape(100, 0, 100, 0); + var0.requestFocus(); + var0.firePropertyChange("hi!", '4', ' '); + java.awt.Point var15 = var0.getLocation(); + java.awt.Dimension var16 = var0.size(); + java.awt.Image var19 = var0.createImage((-1), (-1)); + java.awt.event.ComponentListener[] var20 = var0.getComponentListeners(); + java.awt.Component var23 = var0.findComponentAt((-1), 500); + java.awt.Toolkit var24 = var0.getToolkit(); + SpaceWar.SpacePanel var26 = new SpaceWar.SpacePanel(); + float var27 = var26.getAlignmentX(); + var26.setVisible(false); + boolean var30 = var26.isDoubleBuffered(); + java.awt.dnd.DropTarget var31 = var26.getDropTarget(); + var26.show(false); + boolean var34 = var26.isPaintingForPrint(); + SpaceWar.SpacePanel var35 = new SpaceWar.SpacePanel(); + float var36 = var35.getAlignmentX(); + SpaceWar.SpacePanel var37 = new SpaceWar.SpacePanel(); + float var38 = var37.getAlignmentX(); + var37.setVisible(false); + java.awt.Dimension var41 = var37.getPreferredSize(); + boolean var42 = var37.getVerifyInputWhenFocusTarget(); + java.awt.Component var45 = var37.findComponentAt(10, 1); + var35.addKeyListener((java.awt.event.KeyListener)var37); + java.awt.Dimension var47 = var37.getMinimumSize(); + var26.setMinimumSize(var47); + SpaceWar.SpacePanel var50 = new SpaceWar.SpacePanel(); + float var51 = var50.getAlignmentX(); + var50.setVisible(false); + var50.nextFocus(); + var50.repaint(1L); + SpaceWar.SpacePanel var57 = new SpaceWar.SpacePanel(); + float var58 = var57.getAlignmentX(); + var57.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var63 = new SpaceWar.SpacePanel(); + float var64 = var63.getAlignmentX(); + var63.setVisible(false); + java.awt.Dimension var67 = var63.getPreferredSize(); + var57.setMaximumSize(var67); + var50.setPreferredSize(var67); + SpaceWar.SpacePanel var71 = new SpaceWar.SpacePanel(); + float var72 = var71.getAlignmentX(); + var71.setVisible(false); + SpaceWar.SpacePanel var75 = new SpaceWar.SpacePanel(); + java.awt.Color var76 = var75.getBackground(); + var71.setForeground(var76); + javax.swing.InputMap var78 = var71.getInputMap(); + var50.setInputMap(1, var78); + var26.setInputMap(1, var78); + // The following exception was thrown during execution. + // This behavior will recorded for regression testing. + try { + var0.setInputMap(10, var78); + fail("Expected exception of type java.lang.IllegalArgumentException"); + } catch (java.lang.IllegalArgumentException e) { + // Expected exception. + } + + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertNull(var23); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var30 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var31); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var34 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var36 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var38 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var41); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var42 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var45); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var47); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var51 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var58 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var64 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var67); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var72 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var76); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var78); + + } + + public void test293() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test293"); + + + SpaceWar.Player var0 = new SpaceWar.Player(); + var0.increasePower(25); + int var3 = var0.getScore(); + var0.setRigth(true); + var0.update(); + var0.setDown(false); + var0.loseLife(); + var0.loseLife(); + boolean var11 = var0.isDead(); + var0.setLife(24); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == false); + + } + + public void test294() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test294"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + boolean var6 = var0.isFocusCycleRoot(); + var0.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", 100, 0); + SpaceWar.SpacePanel var11 = new SpaceWar.SpacePanel(); + float var12 = var11.getAlignmentX(); + var11.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var17 = var11.getUI(); + var0.add((java.awt.Component)var11, (java.lang.Object)(short)0); + var11.firePropertyChange("hi!", '4', '#'); + java.awt.event.ContainerListener[] var24 = var11.getContainerListeners(); + var11.setLocation(0, 25); + var11.setAlignmentX(1.0f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var24); + + } + + public void test295() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test295"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + float var7 = var6.getAlignmentX(); + var6.setVisible(false); + java.awt.Dimension var10 = var6.getPreferredSize(); + var0.setMaximumSize(var10); + boolean var12 = var0.getVerifyInputWhenFocusTarget(); + boolean var13 = var0.isFontSet(); + boolean var14 = var0.getIgnoreRepaint(); + boolean var15 = var0.isPaintingForPrint(); + var0.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", (-1L), 10L); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == false); + + } + + public void test296() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test296"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + java.awt.Point var6 = var0.getMousePosition(); + var0.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", (short)100, (short)(-1)); + var0.list(); + java.awt.Graphics var12 = var0.getGraphics(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertNull(var12); + + } + + public void test297() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test297"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.repaint(1L); + SpaceWar.SpacePanel var7 = new SpaceWar.SpacePanel(); + float var8 = var7.getAlignmentX(); + var7.setVisible(false); + var7.nextFocus(); + var7.updateUI(); + var7.enableInputMethods(true); + var7.enableInputMethods(true); + var0.addKeyListener((java.awt.event.KeyListener)var7); + java.awt.event.MouseMotionListener[] var18 = var0.getMouseMotionListeners(); + var0.transferFocus(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var18); + + } + + public void test298() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test298"); + + + SpaceWar.Text var4 = new SpaceWar.Text(525.4439481651533d, 365.5281187817767d, 10L, "SpaceWar.SpacePanel[,0,0,0x0,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + + } + + public void test299() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test299"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + java.awt.im.InputMethodRequests var3 = var0.getInputMethodRequests(); + var0.setDoubleBuffered(true); + var0.setInheritsPopupMenu(false); + javax.swing.plaf.PanelUI var8 = var0.getUI(); + boolean var9 = var0.isCursorSet(); + var0.repaint(10L); + float var12 = var0.getAlignmentX(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == 0.5f); + + } + + public void test300() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test300"); + + + SpaceWar.Bullet var3 = new SpaceWar.Bullet(241.4584513263457d, 100, 3); + + } + + public void test301() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test301"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var6 = var0.getUI(); + java.awt.im.InputMethodRequests var7 = var0.getInputMethodRequests(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + var8.nextFocus(); + var8.updateUI(); + var8.enableInputMethods(true); + var8.setSize((-1), 1); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + var19.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var0.add((java.awt.Component)var8, (java.lang.Object)"SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + var8.setAutoscrolls(true); + javax.swing.InputVerifier var27 = var8.getInputVerifier(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNull(var27); + + } + + public void test302() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test302"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + java.awt.Point var6 = var0.getMousePosition(); + var0.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", (short)100, (short)(-1)); + var0.list(); + java.awt.Insets var12 = var0.getInsets(); + boolean var13 = var0.isForegroundSet(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == true); + + } + + public void test303() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test303"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + SpaceWar.SpacePanel var5 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + java.awt.Color var7 = var6.getBackground(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + var8.nextFocus(); + var8.updateUI(); + var8.enableInputMethods(true); + var5.add((java.awt.Component)var6, (java.lang.Object)true); + java.awt.Dimension var17 = var6.getPreferredSize(); + var0.setMaximumSize(var17); + javax.swing.InputVerifier var19 = var0.getInputVerifier(); + var0.invalidate(); + boolean var21 = var0.isFocusCycleRoot(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == false); + + } + + public void test304() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test304"); + + + SpaceWar.PowerUp var3 = new SpaceWar.PowerUp(100, (-1.0d), 0.0d); + double var4 = var3.getX(); + double var5 = var3.getY(); + double var6 = var3.getY(); + double var7 = var3.getY(); + double var8 = var3.getY(); + double var9 = var3.getR(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == (-1.0d)); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == 0.0d); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == 0.0d); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.0d); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 0.0d); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.0d); + + } + + public void test305() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test305"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + SpaceWar.SpacePanel var4 = new SpaceWar.SpacePanel(); + java.awt.Color var5 = var4.getBackground(); + var0.setForeground(var5); + SpaceWar.SpacePanel var7 = new SpaceWar.SpacePanel(); + float var8 = var7.getAlignmentX(); + var7.setVisible(false); + boolean var11 = var7.isDoubleBuffered(); + java.awt.dnd.DropTarget var12 = var7.getDropTarget(); + var7.show(false); + java.awt.Rectangle var15 = var7.getVisibleRect(); + var0.repaint(var15); + java.awt.FocusTraversalPolicy var17 = var0.getFocusTraversalPolicy(); + java.awt.im.InputMethodRequests var18 = var0.getInputMethodRequests(); + var0.layout(); + boolean var20 = var0.isFocusTraversalPolicyProvider(); + java.awt.Insets var21 = var0.insets(); + java.awt.Dimension var22 = var0.getMinimumSize(); + java.awt.event.HierarchyListener[] var23 = var0.getHierarchyListeners(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var21); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var23); + + } + + public void test306() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test306"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var6 = var0.getUI(); + java.awt.im.InputMethodRequests var7 = var0.getInputMethodRequests(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + var8.nextFocus(); + var8.updateUI(); + var8.enableInputMethods(true); + var8.setSize((-1), 1); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + var19.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var0.add((java.awt.Component)var8, (java.lang.Object)"SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + SpaceWar.SpacePanel var25 = new SpaceWar.SpacePanel(); + var25.setName(""); + java.awt.ComponentOrientation var28 = var25.getComponentOrientation(); + var0.applyComponentOrientation(var28); + boolean var30 = var0.getVerifyInputWhenFocusTarget(); + var0.setRequestFocusEnabled(true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var28); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var30 == true); + + } + + public void test307() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test307"); + + + SpaceWar.PowerUp var3 = new SpaceWar.PowerUp(100, (-1.0d), 0.0d); + double var4 = var3.getR(); + double var5 = var3.getY(); + boolean var6 = var3.update(); + int var7 = var3.getType(); + double var8 = var3.getX(); + boolean var9 = var3.update(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0.0d); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == 0.0d); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 100); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == (-1.0d)); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == false); + + } + + public void test308() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test308"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var6 = var0.getUI(); + java.awt.im.InputMethodRequests var7 = var0.getInputMethodRequests(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + var8.nextFocus(); + var8.updateUI(); + var8.enableInputMethods(true); + var8.setSize((-1), 1); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + var19.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var0.add((java.awt.Component)var8, (java.lang.Object)"SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + java.awt.event.KeyListener[] var25 = var0.getKeyListeners(); + SpaceWar.SpacePanel var26 = new SpaceWar.SpacePanel(); + float var27 = var26.getAlignmentX(); + var26.setVisible(false); + boolean var30 = var26.isDoubleBuffered(); + var26.list(); + SpaceWar.SpacePanel var32 = new SpaceWar.SpacePanel(); + float var33 = var32.getAlignmentX(); + var32.setVisible(false); + boolean var36 = var32.isDoubleBuffered(); + java.awt.dnd.DropTarget var37 = var32.getDropTarget(); + var32.show(false); + java.awt.Rectangle var40 = var32.getVisibleRect(); + java.awt.image.BufferedImage var42 = var32.loadImg("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + boolean var43 = var26.isAncestorOf((java.awt.Component)var32); + java.awt.GraphicsConfiguration var44 = var32.getGraphicsConfiguration(); + java.awt.Font var45 = var32.getFont(); + var0.setFont(var45); + var0.setFocusTraversalKeysEnabled(true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var25); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var30 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var33 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var36 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var37); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var40); + + // Regression assertion (captures the current behavior of the code) + assertNull(var42); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var43 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var44); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var45); + + } + + public void test309() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test309"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.setEnabled(false); + var0.invalidate(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + var8.nextFocus(); + var8.updateUI(); + var8.enableInputMethods(true); + SpaceWar.SpacePanel var16 = new SpaceWar.SpacePanel(); + float var17 = var16.getAlignmentX(); + boolean var18 = var16.hasFocus(); + java.awt.Insets var19 = var16.getInsets(); + java.awt.Insets var20 = var8.getInsets(var19); + boolean var21 = var8.isManagingFocus(); + java.awt.Image var24 = var8.createImage(1, 10); + SpaceWar.SpacePanel var25 = new SpaceWar.SpacePanel(); + float var26 = var25.getAlignmentX(); + var25.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var31 = new SpaceWar.SpacePanel(); + float var32 = var31.getAlignmentX(); + var31.setVisible(false); + java.awt.Dimension var35 = var31.getPreferredSize(); + var25.setMaximumSize(var35); + boolean var37 = var25.getVerifyInputWhenFocusTarget(); + int var38 = var25.getX(); + SpaceWar.SpacePanel var39 = new SpaceWar.SpacePanel(); + float var40 = var39.getAlignmentX(); + var39.setVisible(false); + var39.setEnabled(false); + var8.add((java.awt.Component)var25, (java.lang.Object)false); + boolean var46 = var8.isForegroundSet(); + java.awt.Component var47 = var0.add("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", (java.awt.Component)var8); + var8.revalidate(); + var8.reshape(2, 400, 1, 499); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var32 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var35); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var38 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var40 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var46 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var47); + + } + + public void test310() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test310"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + java.lang.String var2 = var0.toString(); + var0.setAlignmentX(0.5f); + SpaceWar.SpacePanel var5 = new SpaceWar.SpacePanel(); + float var6 = var5.getAlignmentX(); + var5.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var11 = var5.getUI(); + java.awt.im.InputMethodRequests var12 = var5.getInputMethodRequests(); + SpaceWar.SpacePanel var13 = new SpaceWar.SpacePanel(); + float var14 = var13.getAlignmentX(); + var13.setVisible(false); + var13.nextFocus(); + var13.updateUI(); + var13.enableInputMethods(true); + var13.setSize((-1), 1); + SpaceWar.SpacePanel var24 = new SpaceWar.SpacePanel(); + var24.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var5.add((java.awt.Component)var13, (java.lang.Object)"SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + SpaceWar.SpacePanel var30 = new SpaceWar.SpacePanel(); + float var31 = var30.getAlignmentX(); + var30.setVisible(false); + java.awt.Dimension var34 = var30.getPreferredSize(); + java.awt.Toolkit var35 = var30.getToolkit(); + java.awt.Toolkit var36 = var30.getToolkit(); + java.awt.Component var37 = var13.add((java.awt.Component)var30); + int var38 = var13.getY(); + int var41 = var13.getBaseline(25, 10); + var0.setComponentZOrder((java.awt.Component)var13, 0); + javax.accessibility.AccessibleContext var44 = var0.getAccessibleContext(); + var0.repaint(10L, 2, 0, (-1), 499); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var2 + "' != '" + "SpaceWar.SpacePanel[,0,0,0var2,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"+ "'", var2.equals("SpaceWar.SpacePanel[,0,0,0var2,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]")); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var31 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var34); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var35); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var36); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var37); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var38 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var41 == (-1)); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var44); + + } + + public void test311() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test311"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + SpaceWar.SpacePanel var4 = new SpaceWar.SpacePanel(); + java.awt.Color var5 = var4.getBackground(); + var0.setForeground(var5); + SpaceWar.SpacePanel var7 = new SpaceWar.SpacePanel(); + float var8 = var7.getAlignmentX(); + var7.setVisible(false); + boolean var11 = var7.isDoubleBuffered(); + java.awt.dnd.DropTarget var12 = var7.getDropTarget(); + var7.show(false); + java.awt.Rectangle var15 = var7.getVisibleRect(); + var0.repaint(var15); + java.awt.FocusTraversalPolicy var17 = var0.getFocusTraversalPolicy(); + java.awt.im.InputMethodRequests var18 = var0.getInputMethodRequests(); + var0.layout(); + java.awt.Point var20 = var0.getMousePosition(); + java.awt.Graphics var21 = var0.getGraphics(); + boolean var22 = var0.requestFocusInWindow(); + java.awt.image.ColorModel var23 = var0.getColorModel(); + java.awt.event.MouseListener[] var24 = var0.getMouseListeners(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertNull(var21); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var22 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var23); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var24); + + } + + public void test312() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test312"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + var0.list(); + float var6 = var0.getAlignmentY(); + boolean var7 = var0.isOpaque(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + java.awt.Color var9 = var8.getBackground(); + var8.repaint(); + java.awt.im.InputMethodRequests var11 = var8.getInputMethodRequests(); + int var12 = var8.countComponents(); + java.awt.event.ComponentListener[] var13 = var8.getComponentListeners(); + SpaceWar.SpacePanel var14 = new SpaceWar.SpacePanel(); + float var15 = var14.getAlignmentX(); + var14.removeNotify(); + SpaceWar.SpacePanel var17 = new SpaceWar.SpacePanel(); + float var18 = var17.getAlignmentX(); + var17.setVisible(false); + boolean var21 = var17.isDoubleBuffered(); + var17.list(); + float var23 = var17.getAlignmentY(); + java.awt.Insets var24 = var17.getInsets(); + java.awt.Insets var25 = var14.getInsets(var24); + java.awt.Insets var26 = var8.getInsets(var25); + java.awt.Dimension var27 = var8.preferredSize(); + var0.removeKeyListener((java.awt.event.KeyListener)var8); + SpaceWar.SpacePanel var29 = new SpaceWar.SpacePanel(); + float var30 = var29.getAlignmentX(); + var29.setVisible(false); + boolean var33 = var29.isDoubleBuffered(); + var29.list(); + SpaceWar.SpacePanel var35 = new SpaceWar.SpacePanel(); + float var36 = var35.getAlignmentX(); + var35.setVisible(false); + boolean var39 = var35.isDoubleBuffered(); + java.awt.dnd.DropTarget var40 = var35.getDropTarget(); + var35.show(false); + java.awt.Rectangle var43 = var35.getVisibleRect(); + java.awt.Rectangle var44 = var29.getBounds(var43); + java.awt.Rectangle var45 = var0.getBounds(var43); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var9); + + // Regression assertion (captures the current behavior of the code) + assertNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var25); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var27); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var30 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var33 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var36 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var39 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var40); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var43); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var44); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var45); + + } + + public void test313() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test313"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + var0.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + javax.swing.plaf.PanelUI var5 = var0.getUI(); + java.awt.Color var6 = var0.getBackground(); + var0.removeAll(); + int var8 = var0.getHeight(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.removeNotify(); + SpaceWar.SpacePanel var12 = new SpaceWar.SpacePanel(); + float var13 = var12.getAlignmentX(); + var12.setVisible(false); + boolean var16 = var12.isDoubleBuffered(); + var12.list(); + float var18 = var12.getAlignmentY(); + java.awt.Insets var19 = var12.getInsets(); + java.awt.Insets var20 = var9.getInsets(var19); + boolean var21 = var9.isDoubleBuffered(); + java.awt.Component var22 = var0.add((java.awt.Component)var9); + boolean var23 = var0.isBackgroundSet(); + var0.setAutoscrolls(false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == true); + + } + + public void test314() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test314"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.setInheritsPopupMenu(false); + var0.setFocusTraversalPolicyProvider(true); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + boolean var12 = var8.isDoubleBuffered(); + var8.list(); + SpaceWar.SpacePanel var14 = new SpaceWar.SpacePanel(); + float var15 = var14.getAlignmentX(); + var14.setVisible(false); + boolean var18 = var14.isDoubleBuffered(); + java.awt.dnd.DropTarget var19 = var14.getDropTarget(); + var14.show(false); + java.awt.Rectangle var22 = var14.getVisibleRect(); + java.awt.Rectangle var23 = var8.getBounds(var22); + javax.swing.JToolTip var24 = var8.createToolTip(); + var0.removeKeyListener((java.awt.event.KeyListener)var8); + javax.swing.TransferHandler var26 = var0.getTransferHandler(); + boolean var27 = var0.requestFocusInWindow(); + var0.setFocusTraversalKeysEnabled(false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var23); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == false); + + } + + public void test315() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test315"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + var0.setRequestFocusEnabled(false); + var0.reshape(100, 0, 100, 0); + var0.requestFocus(); + java.awt.Rectangle var11 = var0.getVisibleRect(); + java.awt.Rectangle var12 = var0.getBounds(); + java.awt.im.InputMethodRequests var13 = var0.getInputMethodRequests(); + boolean var14 = var0.requestFocusInWindow(); + java.awt.Rectangle var15 = var0.bounds(); + var0.transferFocus(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + } + + public void test316() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test316"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + var0.setRequestFocusEnabled(false); + var0.reshape(100, 0, 100, 0); + var0.requestFocus(); + java.awt.Rectangle var11 = var0.getVisibleRect(); + java.awt.Rectangle var12 = var0.getBounds(); + java.awt.im.InputMethodRequests var13 = var0.getInputMethodRequests(); + boolean var14 = var0.requestFocusInWindow(); + java.awt.Rectangle var15 = var0.bounds(); + var0.setAutoscrolls(true); + SpaceWar.SpacePanel var18 = new SpaceWar.SpacePanel(); + float var19 = var18.getAlignmentX(); + var18.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var24 = var18.getUI(); + java.awt.im.InputMethodRequests var25 = var18.getInputMethodRequests(); + SpaceWar.SpacePanel var26 = new SpaceWar.SpacePanel(); + float var27 = var26.getAlignmentX(); + var26.setVisible(false); + var26.nextFocus(); + var26.updateUI(); + var26.enableInputMethods(true); + var26.setSize((-1), 1); + SpaceWar.SpacePanel var37 = new SpaceWar.SpacePanel(); + var37.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var18.add((java.awt.Component)var26, (java.lang.Object)"SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + boolean var43 = var18.isCursorSet(); + javax.swing.TransferHandler var44 = var18.getTransferHandler(); + java.awt.Point var45 = var18.location(); + java.awt.Point var46 = var0.getLocation(var45); + boolean var47 = var0.isMinimumSizeSet(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertNull(var25); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var43 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var44); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var45); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var46); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var47 == false); + + } + + public void test317() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test317"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.reshape((-1), 1, (-1), 10); + var0.disable(); + java.awt.LayoutManager var11 = var0.getLayout(); + java.awt.Container var12 = var0.getParent(); + boolean var13 = var0.isOptimizedDrawingEnabled(); + var0.enableInputMethods(true); + var0.setFocusTraversalKeysEnabled(false); + boolean var18 = var0.requestFocusInWindow(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == false); + + } + + public void test318() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test318"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.updateUI(); + var0.enableInputMethods(true); + int var8 = var0.getY(); + boolean var9 = var0.isDisplayable(); + var0.resetKeyboardActions(); + var0.setVerifyInputWhenFocusTarget(true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == false); + + } + + public void test319() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test319"); + + + SpaceWar.PowerUp var3 = new SpaceWar.PowerUp(2, 509.27513824562607d, (-8.529389630162045d)); + + } + + public void test320() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test320"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.updateUI(); + var0.enableInputMethods(true); + java.lang.String var8 = var0.toString(); + java.awt.FocusTraversalPolicy var9 = var0.getFocusTraversalPolicy(); + var0.firePropertyChange("PanelUI", (byte)0, (byte)100); + SpaceWar.SpacePanel var14 = new SpaceWar.SpacePanel(); + float var15 = var14.getAlignmentX(); + var14.setVisible(false); + var14.nextFocus(); + var14.updateUI(); + var14.enableInputMethods(true); + var14.setSize((-1), 1); + boolean var27 = var14.contains(1, 1); + java.awt.Component var30 = var14.getComponentAt(100, 3); + SpaceWar.SpacePanel var31 = new SpaceWar.SpacePanel(); + float var32 = var31.getAlignmentX(); + var31.setVisible(false); + boolean var35 = var31.isDoubleBuffered(); + java.awt.dnd.DropTarget var36 = var31.getDropTarget(); + var31.show(false); + boolean var39 = var31.isPaintingForPrint(); + SpaceWar.SpacePanel var40 = new SpaceWar.SpacePanel(); + float var41 = var40.getAlignmentX(); + var40.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var46 = var40.getMouseListeners(); + int var47 = var40.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var48 = var40.getInputMethodRequests(); + var31.addKeyListener((java.awt.event.KeyListener)var40); + var40.repaint(); + java.awt.Point var51 = var40.location(); + java.awt.Point var52 = var14.getLocation(var51); + java.awt.Component var53 = var0.getComponentAt(var51); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var8 + "' != '" + "SpaceWar.SpacePanel[,0,0,0var8,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"+ "'", var8.equals("SpaceWar.SpacePanel[,0,0,0var8,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]")); + + // Regression assertion (captures the current behavior of the code) + assertNull(var9); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var30); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var32 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var35 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var36); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var39 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var41 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var46); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var47 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var48); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var51); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var52); + + // Regression assertion (captures the current behavior of the code) + assertNull(var53); + + } + + public void test321() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test321"); + + + SpaceWar.PowerUp var3 = new SpaceWar.PowerUp(100, (-1.0d), 0.0d); + double var4 = var3.getR(); + int var5 = var3.getType(); + double var6 = var3.getX(); + double var7 = var3.getR(); + double var8 = var3.getY(); + double var9 = var3.getR(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0.0d); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == 100); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == (-1.0d)); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.0d); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 0.0d); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.0d); + + } + + public void test322() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test322"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.setInheritsPopupMenu(false); + var0.setFocusTraversalPolicyProvider(true); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + boolean var12 = var8.isDoubleBuffered(); + var8.list(); + SpaceWar.SpacePanel var14 = new SpaceWar.SpacePanel(); + float var15 = var14.getAlignmentX(); + var14.setVisible(false); + boolean var18 = var14.isDoubleBuffered(); + java.awt.dnd.DropTarget var19 = var14.getDropTarget(); + var14.show(false); + java.awt.Rectangle var22 = var14.getVisibleRect(); + java.awt.Rectangle var23 = var8.getBounds(var22); + javax.swing.JToolTip var24 = var8.createToolTip(); + var0.removeKeyListener((java.awt.event.KeyListener)var8); + javax.swing.TransferHandler var26 = var0.getTransferHandler(); + boolean var27 = var0.isPaintingForPrint(); + int var28 = var0.getComponentCount(); + SpaceWar.SpacePanel var29 = new SpaceWar.SpacePanel(); + float var30 = var29.getAlignmentX(); + var29.setVisible(false); + var29.nextFocus(); + var29.updateUI(); + var29.enableInputMethods(true); + var29.enableInputMethods(true); + SpaceWar.SpacePanel var39 = new SpaceWar.SpacePanel(); + float var40 = var39.getAlignmentX(); + var39.setVisible(false); + var39.nextFocus(); + var39.reshape((-1), 1, (-1), 10); + var39.disable(); + var39.show(); + SpaceWar.SpacePanel var51 = new SpaceWar.SpacePanel(); + float var52 = var51.getAlignmentX(); + var51.setVisible(false); + boolean var55 = var51.isDoubleBuffered(); + var51.list(); + SpaceWar.SpacePanel var57 = new SpaceWar.SpacePanel(); + float var58 = var57.getAlignmentX(); + var57.setVisible(false); + boolean var61 = var57.isDoubleBuffered(); + java.awt.dnd.DropTarget var62 = var57.getDropTarget(); + var57.show(false); + java.awt.Rectangle var65 = var57.getVisibleRect(); + java.awt.Rectangle var66 = var51.getBounds(var65); + javax.swing.JToolTip var67 = var51.createToolTip(); + var51.firePropertyChange("", false, false); + var51.validate(); + SpaceWar.SpacePanel var73 = new SpaceWar.SpacePanel(); + float var74 = var73.getAlignmentX(); + var73.setVisible(false); + boolean var77 = var73.isDoubleBuffered(); + java.awt.dnd.DropTarget var78 = var73.getDropTarget(); + var73.show(false); + boolean var81 = var73.isPaintingForPrint(); + SpaceWar.SpacePanel var82 = new SpaceWar.SpacePanel(); + float var83 = var82.getAlignmentX(); + var82.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var88 = var82.getMouseListeners(); + int var89 = var82.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var90 = var82.getInputMethodRequests(); + var73.addKeyListener((java.awt.event.KeyListener)var82); + var82.repaint(); + java.awt.Point var93 = var82.location(); + java.awt.Component var94 = var51.getComponentAt(var93); + java.awt.Point var95 = var39.getLocation(var93); + java.awt.Point var96 = var29.getLocation(var93); + java.awt.Point var97 = var0.getLocation(var96); + // The following exception was thrown during execution. + // This behavior will recorded for regression testing. + try { + var0.remove(400); + fail("Expected exception of type java.lang.ArrayIndexOutOfBoundsException"); + } catch (java.lang.ArrayIndexOutOfBoundsException e) { + // Expected exception. + } + + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var23); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var28 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var30 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var40 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var52 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var55 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var58 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var61 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var62); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var65); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var66); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var67); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var74 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var77 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var78); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var81 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var83 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var88); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var89 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var90); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var93); + + // Regression assertion (captures the current behavior of the code) + assertNull(var94); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var95); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var96); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var97); + + } + + public void test323() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test323"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.repaint(1L); + SpaceWar.SpacePanel var7 = new SpaceWar.SpacePanel(); + float var8 = var7.getAlignmentX(); + var7.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var13 = new SpaceWar.SpacePanel(); + float var14 = var13.getAlignmentX(); + var13.setVisible(false); + java.awt.Dimension var17 = var13.getPreferredSize(); + var7.setMaximumSize(var17); + var0.setPreferredSize(var17); + SpaceWar.SpacePanel var21 = new SpaceWar.SpacePanel(); + float var22 = var21.getAlignmentX(); + var21.setVisible(false); + SpaceWar.SpacePanel var25 = new SpaceWar.SpacePanel(); + java.awt.Color var26 = var25.getBackground(); + var21.setForeground(var26); + javax.swing.InputMap var28 = var21.getInputMap(); + var0.setInputMap(1, var28); + var0.setVisible(false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var22 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var28); + + } + + public void test324() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test324"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.setInheritsPopupMenu(false); + java.awt.Component var8 = var0.findComponentAt((-1), 1); + var0.setToolTipText("SpaceWar.SpacePanel[,0,0,0x0,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=java.awt.Dimension[width=800,height=600],minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNull(var8); + + } + + public void test325() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test325"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var1 = new SpaceWar.SpacePanel(); + java.awt.Color var2 = var1.getBackground(); + SpaceWar.SpacePanel var3 = new SpaceWar.SpacePanel(); + float var4 = var3.getAlignmentX(); + var3.setVisible(false); + var3.nextFocus(); + var3.updateUI(); + var3.enableInputMethods(true); + var0.add((java.awt.Component)var1, (java.lang.Object)true); + java.awt.Dimension var12 = var1.getPreferredSize(); + var1.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", (-1.0f), 100.0f); + SpaceWar.SpacePanel var17 = new SpaceWar.SpacePanel(); + float var18 = var17.getAlignmentX(); + var17.setVisible(false); + boolean var21 = var17.isDoubleBuffered(); + SpaceWar.SpacePanel var22 = new SpaceWar.SpacePanel(); + java.awt.Color var23 = var22.getBackground(); + var22.repaint(); + java.lang.Object var25 = var17.getClientProperty((java.lang.Object)var22); + var1.remove((java.awt.Component)var17); + var1.enable(); + java.awt.event.KeyListener[] var28 = var1.getKeyListeners(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var2); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var23); + + // Regression assertion (captures the current behavior of the code) + assertNull(var25); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var28); + + } + + public void test326() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test326"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.updateUI(); + var0.enableInputMethods(true); + java.awt.Point var8 = var0.location(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.setVisible(false); + var9.nextFocus(); + java.awt.Component var14 = var0.add((java.awt.Component)var9); + SpaceWar.SpacePanel var15 = new SpaceWar.SpacePanel(); + float var16 = var15.getAlignmentX(); + var15.setVisible(false); + var15.nextFocus(); + var15.updateUI(); + var15.enableInputMethods(true); + java.awt.Point var24 = var15.getMousePosition(false); + SpaceWar.SpacePanel var25 = new SpaceWar.SpacePanel(); + float var26 = var25.getAlignmentX(); + SpaceWar.SpacePanel var27 = new SpaceWar.SpacePanel(); + float var28 = var27.getAlignmentX(); + var27.setVisible(false); + java.awt.Dimension var31 = var27.getPreferredSize(); + boolean var32 = var27.getVerifyInputWhenFocusTarget(); + java.awt.Component var35 = var27.findComponentAt(10, 1); + var25.addKeyListener((java.awt.event.KeyListener)var27); + var27.repaint(100, (-1), (-1), 1); + SpaceWar.SpacePanel var42 = new SpaceWar.SpacePanel(); + java.awt.Color var43 = var42.getBackground(); + var42.repaint(); + java.awt.im.InputMethodRequests var45 = var42.getInputMethodRequests(); + java.awt.GraphicsConfiguration var46 = var42.getGraphicsConfiguration(); + var27.remove((java.awt.Component)var42); + java.awt.Font var48 = var42.getFont(); + var15.setFont(var48); + var9.setFont(var48); + boolean var51 = var9.isFocusable(); + java.awt.Insets var52 = var9.getInsets(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var28 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var31); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var32 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var35); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var43); + + // Regression assertion (captures the current behavior of the code) + assertNull(var45); + + // Regression assertion (captures the current behavior of the code) + assertNull(var46); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var48); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var51 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var52); + + } + + public void test327() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test327"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + SpaceWar.SpacePanel var2 = new SpaceWar.SpacePanel(); + float var3 = var2.getAlignmentX(); + var2.setVisible(false); + java.awt.Dimension var6 = var2.getPreferredSize(); + boolean var7 = var2.getVerifyInputWhenFocusTarget(); + java.awt.Component var10 = var2.findComponentAt(10, 1); + var0.addKeyListener((java.awt.event.KeyListener)var2); + var2.repaint(100, (-1), (-1), 1); + SpaceWar.SpacePanel var17 = new SpaceWar.SpacePanel(); + java.awt.Color var18 = var17.getBackground(); + var17.repaint(); + java.awt.im.InputMethodRequests var20 = var17.getInputMethodRequests(); + java.awt.GraphicsConfiguration var21 = var17.getGraphicsConfiguration(); + var2.remove((java.awt.Component)var17); + java.awt.Image var25 = var2.createImage(10, 400); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertNull(var21); + + // Regression assertion (captures the current behavior of the code) + assertNull(var25); + + } + + public void test328() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test328"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var6 = var0.getMouseListeners(); + var0.firePropertyChange("", 0.5f, 100.0f); + var0.enable(false); + SpaceWar.SpacePanel var13 = new SpaceWar.SpacePanel(); + float var14 = var13.getAlignmentX(); + SpaceWar.SpacePanel var15 = new SpaceWar.SpacePanel(); + float var16 = var15.getAlignmentX(); + var15.setVisible(false); + java.awt.Dimension var19 = var15.getPreferredSize(); + boolean var20 = var15.getVerifyInputWhenFocusTarget(); + java.awt.Component var23 = var15.findComponentAt(10, 1); + var13.addKeyListener((java.awt.event.KeyListener)var15); + java.awt.Cursor var25 = var13.getCursor(); + java.awt.Dimension var26 = var13.getMinimumSize(); + var0.setSize(var26); + var0.transferFocusDownCycle(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var23); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var25); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var26); + + } + + public void test329() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test329"); + + + SpaceWar.Text var4 = new SpaceWar.Text((-1.0d), 10.0d, (-1L), "SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + boolean var5 = var4.update(); + boolean var6 = var4.update(); + boolean var7 = var4.update(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == true); + + } + + public void test330() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test330"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + SpaceWar.SpacePanel var4 = new SpaceWar.SpacePanel(); + java.awt.Color var5 = var4.getBackground(); + var0.setForeground(var5); + SpaceWar.SpacePanel var7 = new SpaceWar.SpacePanel(); + float var8 = var7.getAlignmentX(); + var7.setVisible(false); + boolean var11 = var7.isDoubleBuffered(); + java.awt.dnd.DropTarget var12 = var7.getDropTarget(); + var7.show(false); + java.awt.Rectangle var15 = var7.getVisibleRect(); + var0.repaint(var15); + java.awt.FocusTraversalPolicy var17 = var0.getFocusTraversalPolicy(); + SpaceWar.SpacePanel var18 = new SpaceWar.SpacePanel(); + float var19 = var18.getAlignmentX(); + var18.firePropertyChange("", (-1), 1); + boolean var24 = var18.isFocusOwner(); + SpaceWar.SpacePanel var26 = new SpaceWar.SpacePanel(); + float var27 = var26.getAlignmentX(); + var26.setVisible(false); + java.awt.Dimension var30 = var26.getPreferredSize(); + java.awt.Toolkit var31 = var26.getToolkit(); + SpaceWar.SpacePanel var32 = new SpaceWar.SpacePanel(); + var32.setName(""); + int var35 = var32.getX(); + SpaceWar.SpacePanel var36 = new SpaceWar.SpacePanel(); + float var37 = var36.getAlignmentX(); + var36.setVisible(false); + var36.nextFocus(); + SpaceWar.SpacePanel var41 = new SpaceWar.SpacePanel(); + float var42 = var41.getAlignmentX(); + var41.setVisible(false); + SpaceWar.SpacePanel var45 = new SpaceWar.SpacePanel(); + java.awt.Color var46 = var45.getBackground(); + var41.setForeground(var46); + var36.setBackground(var46); + var32.setBackground(var46); + var26.setForeground(var46); + var18.putClientProperty((java.lang.Object)(byte)100, (java.lang.Object)var46); + var0.setBackground(var46); + SpaceWar.SpacePanel var53 = new SpaceWar.SpacePanel(); + float var54 = var53.getAlignmentX(); + var53.setVisible(false); + boolean var57 = var53.isDoubleBuffered(); + java.awt.dnd.DropTarget var58 = var53.getDropTarget(); + var53.show(false); + boolean var61 = var53.isPaintingForPrint(); + SpaceWar.SpacePanel var62 = new SpaceWar.SpacePanel(); + float var63 = var62.getAlignmentX(); + SpaceWar.SpacePanel var64 = new SpaceWar.SpacePanel(); + float var65 = var64.getAlignmentX(); + var64.setVisible(false); + java.awt.Dimension var68 = var64.getPreferredSize(); + boolean var69 = var64.getVerifyInputWhenFocusTarget(); + java.awt.Component var72 = var64.findComponentAt(10, 1); + var62.addKeyListener((java.awt.event.KeyListener)var64); + java.awt.Dimension var74 = var64.getMinimumSize(); + var53.setMinimumSize(var74); + java.awt.Dimension var76 = var0.getSize(var74); + boolean var77 = var0.isValid(); + int var78 = var0.getWidth(); + float var79 = var0.getAlignmentY(); + boolean var80 = var0.getIgnoreRepaint(); + java.awt.Point var81 = var0.location(); + SpaceWar.SpacePanel var82 = new SpaceWar.SpacePanel(); + float var83 = var82.getAlignmentX(); + var82.setVisible(false); + var82.setInheritsPopupMenu(false); + var82.move(10, 10); + var82.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var82.removeAll(); + java.awt.Point var96 = var82.location(); + java.awt.Component var97 = var0.findComponentAt(var96); + int var98 = var0.countComponents(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var24 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var30); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var31); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var35 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var42 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var46); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var54 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var57 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var58); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var61 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var63 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var65 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var68); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var69 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var72); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var74); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var76); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var77 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var78 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var79 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var80 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var81); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var83 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var96); + + // Regression assertion (captures the current behavior of the code) + assertNull(var97); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var98 == 0); + + } + + public void test331() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test331"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + SpaceWar.SpacePanel var4 = new SpaceWar.SpacePanel(); + java.awt.Color var5 = var4.getBackground(); + var0.setForeground(var5); + SpaceWar.SpacePanel var7 = new SpaceWar.SpacePanel(); + float var8 = var7.getAlignmentX(); + var7.setVisible(false); + boolean var11 = var7.isDoubleBuffered(); + java.awt.dnd.DropTarget var12 = var7.getDropTarget(); + var7.show(false); + java.awt.Rectangle var15 = var7.getVisibleRect(); + var0.repaint(var15); + java.awt.FocusTraversalPolicy var17 = var0.getFocusTraversalPolicy(); + SpaceWar.SpacePanel var18 = new SpaceWar.SpacePanel(); + float var19 = var18.getAlignmentX(); + var18.firePropertyChange("", (-1), 1); + boolean var24 = var18.isFocusOwner(); + SpaceWar.SpacePanel var26 = new SpaceWar.SpacePanel(); + float var27 = var26.getAlignmentX(); + var26.setVisible(false); + java.awt.Dimension var30 = var26.getPreferredSize(); + java.awt.Toolkit var31 = var26.getToolkit(); + SpaceWar.SpacePanel var32 = new SpaceWar.SpacePanel(); + var32.setName(""); + int var35 = var32.getX(); + SpaceWar.SpacePanel var36 = new SpaceWar.SpacePanel(); + float var37 = var36.getAlignmentX(); + var36.setVisible(false); + var36.nextFocus(); + SpaceWar.SpacePanel var41 = new SpaceWar.SpacePanel(); + float var42 = var41.getAlignmentX(); + var41.setVisible(false); + SpaceWar.SpacePanel var45 = new SpaceWar.SpacePanel(); + java.awt.Color var46 = var45.getBackground(); + var41.setForeground(var46); + var36.setBackground(var46); + var32.setBackground(var46); + var26.setForeground(var46); + var18.putClientProperty((java.lang.Object)(byte)100, (java.lang.Object)var46); + var0.setBackground(var46); + javax.swing.JToolTip var53 = var0.createToolTip(); + var0.repaint(25, 25, 24, 10); + SpaceWar.SpacePanel var59 = new SpaceWar.SpacePanel(); + float var60 = var59.getAlignmentX(); + var59.setVisible(false); + var59.setInheritsPopupMenu(false); + var59.move(10, 10); + var59.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var59.removeAll(); + java.awt.Point var73 = var59.location(); + java.awt.Point var74 = var59.location(); + java.awt.Component var75 = var0.findComponentAt(var74); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var24 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var30); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var31); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var35 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var42 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var46); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var53); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var60 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var73); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var74); + + // Regression assertion (captures the current behavior of the code) + assertNull(var75); + + } + + public void test332() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test332"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.updateUI(); + var0.enableInputMethods(true); + var0.show(); + var0.setBounds(24, 25, 100, 25); + boolean var15 = var0.requestFocus(true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == false); + + } + + public void test333() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test333"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.reshape((-1), 1, (-1), 10); + var0.disable(); + var0.show(); + SpaceWar.SpacePanel var12 = new SpaceWar.SpacePanel(); + float var13 = var12.getAlignmentX(); + var12.setVisible(false); + boolean var16 = var12.isDoubleBuffered(); + var12.list(); + SpaceWar.SpacePanel var18 = new SpaceWar.SpacePanel(); + float var19 = var18.getAlignmentX(); + var18.setVisible(false); + boolean var22 = var18.isDoubleBuffered(); + java.awt.dnd.DropTarget var23 = var18.getDropTarget(); + var18.show(false); + java.awt.Rectangle var26 = var18.getVisibleRect(); + java.awt.Rectangle var27 = var12.getBounds(var26); + javax.swing.JToolTip var28 = var12.createToolTip(); + var12.firePropertyChange("", false, false); + var12.validate(); + SpaceWar.SpacePanel var34 = new SpaceWar.SpacePanel(); + float var35 = var34.getAlignmentX(); + var34.setVisible(false); + boolean var38 = var34.isDoubleBuffered(); + java.awt.dnd.DropTarget var39 = var34.getDropTarget(); + var34.show(false); + boolean var42 = var34.isPaintingForPrint(); + SpaceWar.SpacePanel var43 = new SpaceWar.SpacePanel(); + float var44 = var43.getAlignmentX(); + var43.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var49 = var43.getMouseListeners(); + int var50 = var43.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var51 = var43.getInputMethodRequests(); + var34.addKeyListener((java.awt.event.KeyListener)var43); + var43.repaint(); + java.awt.Point var54 = var43.location(); + java.awt.Component var55 = var12.getComponentAt(var54); + java.awt.Point var56 = var0.getLocation(var54); + var0.setAlignmentY(0.5f); + java.awt.event.InputMethodListener[] var59 = var0.getInputMethodListeners(); + float var60 = var0.getAlignmentX(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var22 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var23); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var27); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var28); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var35 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var38 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var39); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var42 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var44 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var49); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var50 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var51); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var54); + + // Regression assertion (captures the current behavior of the code) + assertNull(var55); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var56); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var59); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var60 == 0.5f); + + } + + public void test334() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test334"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + var0.show(false); + boolean var8 = var0.isPaintingForPrint(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var15 = var9.getMouseListeners(); + int var16 = var9.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var17 = var9.getInputMethodRequests(); + var0.addKeyListener((java.awt.event.KeyListener)var9); + boolean var19 = var9.isShowing(); + var9.layout(); + SpaceWar.SpacePanel var21 = new SpaceWar.SpacePanel(); + float var22 = var21.getAlignmentX(); + var21.setVisible(false); + SpaceWar.SpacePanel var25 = new SpaceWar.SpacePanel(); + java.awt.Color var26 = var25.getBackground(); + var21.setForeground(var26); + SpaceWar.SpacePanel var28 = new SpaceWar.SpacePanel(); + float var29 = var28.getAlignmentX(); + var28.setVisible(false); + boolean var32 = var28.isDoubleBuffered(); + java.awt.dnd.DropTarget var33 = var28.getDropTarget(); + var28.show(false); + java.awt.Rectangle var36 = var28.getVisibleRect(); + var21.repaint(var36); + java.awt.FocusTraversalPolicy var38 = var21.getFocusTraversalPolicy(); + SpaceWar.SpacePanel var39 = new SpaceWar.SpacePanel(); + float var40 = var39.getAlignmentX(); + var39.firePropertyChange("", (-1), 1); + boolean var45 = var39.isFocusOwner(); + SpaceWar.SpacePanel var47 = new SpaceWar.SpacePanel(); + float var48 = var47.getAlignmentX(); + var47.setVisible(false); + java.awt.Dimension var51 = var47.getPreferredSize(); + java.awt.Toolkit var52 = var47.getToolkit(); + SpaceWar.SpacePanel var53 = new SpaceWar.SpacePanel(); + var53.setName(""); + int var56 = var53.getX(); + SpaceWar.SpacePanel var57 = new SpaceWar.SpacePanel(); + float var58 = var57.getAlignmentX(); + var57.setVisible(false); + var57.nextFocus(); + SpaceWar.SpacePanel var62 = new SpaceWar.SpacePanel(); + float var63 = var62.getAlignmentX(); + var62.setVisible(false); + SpaceWar.SpacePanel var66 = new SpaceWar.SpacePanel(); + java.awt.Color var67 = var66.getBackground(); + var62.setForeground(var67); + var57.setBackground(var67); + var53.setBackground(var67); + var47.setForeground(var67); + var39.putClientProperty((java.lang.Object)(byte)100, (java.lang.Object)var67); + var21.setBackground(var67); + SpaceWar.SpacePanel var74 = new SpaceWar.SpacePanel(); + float var75 = var74.getAlignmentX(); + var74.setVisible(false); + boolean var78 = var74.isDoubleBuffered(); + java.awt.dnd.DropTarget var79 = var74.getDropTarget(); + var74.show(false); + boolean var82 = var74.isPaintingForPrint(); + SpaceWar.SpacePanel var83 = new SpaceWar.SpacePanel(); + float var84 = var83.getAlignmentX(); + SpaceWar.SpacePanel var85 = new SpaceWar.SpacePanel(); + float var86 = var85.getAlignmentX(); + var85.setVisible(false); + java.awt.Dimension var89 = var85.getPreferredSize(); + boolean var90 = var85.getVerifyInputWhenFocusTarget(); + java.awt.Component var93 = var85.findComponentAt(10, 1); + var83.addKeyListener((java.awt.event.KeyListener)var85); + java.awt.Dimension var95 = var85.getMinimumSize(); + var74.setMinimumSize(var95); + java.awt.Dimension var97 = var21.getSize(var95); + java.awt.Rectangle var98 = var21.getVisibleRect(); + var9.setBounds(var98); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var22 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var29 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var32 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var33); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var36); + + // Regression assertion (captures the current behavior of the code) + assertNull(var38); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var40 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var45 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var48 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var51); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var52); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var56 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var58 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var63 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var67); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var75 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var78 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var79); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var82 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var84 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var86 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var89); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var90 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var93); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var95); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var97); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var98); + + } + + public void test335() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test335"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var6 = var0.getUI(); + java.awt.im.InputMethodRequests var7 = var0.getInputMethodRequests(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + var8.nextFocus(); + var8.updateUI(); + var8.enableInputMethods(true); + var8.setSize((-1), 1); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + var19.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var0.add((java.awt.Component)var8, (java.lang.Object)"SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + var8.setAutoscrolls(true); + SpaceWar.SpacePanel var27 = new SpaceWar.SpacePanel(); + float var28 = var27.getAlignmentX(); + var27.setVisible(false); + var27.nextFocus(); + var27.reshape((-1), 1, (-1), 10); + var27.disable(); + java.awt.Component var40 = var27.findComponentAt(0, (-1)); + SpaceWar.SpacePanel var41 = new SpaceWar.SpacePanel(); + var41.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + javax.swing.plaf.PanelUI var46 = var41.getUI(); + SpaceWar.SpacePanel var47 = new SpaceWar.SpacePanel(); + float var48 = var47.getAlignmentX(); + var47.setVisible(false); + var47.nextFocus(); + var47.repaint(1L); + SpaceWar.SpacePanel var54 = new SpaceWar.SpacePanel(); + float var55 = var54.getAlignmentX(); + var54.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var60 = new SpaceWar.SpacePanel(); + float var61 = var60.getAlignmentX(); + var60.setVisible(false); + java.awt.Dimension var64 = var60.getPreferredSize(); + var54.setMaximumSize(var64); + var47.setPreferredSize(var64); + var41.setMaximumSize(var64); + var27.setSize(var64); + var8.setMaximumSize(var64); + int var70 = var8.getHeight(); + java.awt.image.VolatileImage var73 = var8.createVolatileImage(1, 10); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var28 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNull(var40); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var46); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var48 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var55 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var61 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var64); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var70 == 1); + + // Regression assertion (captures the current behavior of the code) + assertNull(var73); + + } + + public void test336() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test336"); + + + SpaceWar.Player var0 = new SpaceWar.Player(); + boolean var1 = var0.isRecovering(); + var0.loseLife(); + int var3 = var0.getR(); + var0.loseLife(); + var0.setDown(true); + int var7 = var0.getRequiredPower(); + int var8 = var0.getScore(); + boolean var9 = var0.isRecovering(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == 25); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 1); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == true); + + } + + public void test337() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test337"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + java.awt.im.InputMethodRequests var3 = var0.getInputMethodRequests(); + var0.setDoubleBuffered(true); + var0.setInheritsPopupMenu(false); + javax.swing.plaf.PanelUI var8 = var0.getUI(); + var0.setOpaque(true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var8); + + } + + public void test338() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test338"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + SpaceWar.SpacePanel var4 = new SpaceWar.SpacePanel(); + java.awt.Color var5 = var4.getBackground(); + var0.setForeground(var5); + SpaceWar.SpacePanel var7 = new SpaceWar.SpacePanel(); + float var8 = var7.getAlignmentX(); + var7.setVisible(false); + boolean var11 = var7.isDoubleBuffered(); + java.awt.dnd.DropTarget var12 = var7.getDropTarget(); + var7.show(false); + java.awt.Rectangle var15 = var7.getVisibleRect(); + var0.repaint(var15); + java.awt.FocusTraversalPolicy var17 = var0.getFocusTraversalPolicy(); + SpaceWar.SpacePanel var18 = new SpaceWar.SpacePanel(); + float var19 = var18.getAlignmentX(); + var18.firePropertyChange("", (-1), 1); + boolean var24 = var18.isFocusOwner(); + SpaceWar.SpacePanel var26 = new SpaceWar.SpacePanel(); + float var27 = var26.getAlignmentX(); + var26.setVisible(false); + java.awt.Dimension var30 = var26.getPreferredSize(); + java.awt.Toolkit var31 = var26.getToolkit(); + SpaceWar.SpacePanel var32 = new SpaceWar.SpacePanel(); + var32.setName(""); + int var35 = var32.getX(); + SpaceWar.SpacePanel var36 = new SpaceWar.SpacePanel(); + float var37 = var36.getAlignmentX(); + var36.setVisible(false); + var36.nextFocus(); + SpaceWar.SpacePanel var41 = new SpaceWar.SpacePanel(); + float var42 = var41.getAlignmentX(); + var41.setVisible(false); + SpaceWar.SpacePanel var45 = new SpaceWar.SpacePanel(); + java.awt.Color var46 = var45.getBackground(); + var41.setForeground(var46); + var36.setBackground(var46); + var32.setBackground(var46); + var26.setForeground(var46); + var18.putClientProperty((java.lang.Object)(byte)100, (java.lang.Object)var46); + var0.setBackground(var46); + SpaceWar.SpacePanel var53 = new SpaceWar.SpacePanel(); + float var54 = var53.getAlignmentX(); + var53.setVisible(false); + boolean var57 = var53.isDoubleBuffered(); + java.awt.dnd.DropTarget var58 = var53.getDropTarget(); + var53.show(false); + boolean var61 = var53.isPaintingForPrint(); + SpaceWar.SpacePanel var62 = new SpaceWar.SpacePanel(); + float var63 = var62.getAlignmentX(); + SpaceWar.SpacePanel var64 = new SpaceWar.SpacePanel(); + float var65 = var64.getAlignmentX(); + var64.setVisible(false); + java.awt.Dimension var68 = var64.getPreferredSize(); + boolean var69 = var64.getVerifyInputWhenFocusTarget(); + java.awt.Component var72 = var64.findComponentAt(10, 1); + var62.addKeyListener((java.awt.event.KeyListener)var64); + java.awt.Dimension var74 = var64.getMinimumSize(); + var53.setMinimumSize(var74); + java.awt.Dimension var76 = var0.getSize(var74); + java.awt.Rectangle var77 = var0.getVisibleRect(); + javax.swing.InputMap var78 = var0.getInputMap(); + java.lang.String var79 = var0.getName(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var24 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var30); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var31); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var35 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var42 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var46); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var54 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var57 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var58); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var61 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var63 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var65 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var68); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var69 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var72); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var74); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var76); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var77); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var78); + + // Regression assertion (captures the current behavior of the code) + assertNull(var79); + + } + + public void test339() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test339"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.repaint(1L); + SpaceWar.SpacePanel var7 = new SpaceWar.SpacePanel(); + float var8 = var7.getAlignmentX(); + var7.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var13 = new SpaceWar.SpacePanel(); + float var14 = var13.getAlignmentX(); + var13.setVisible(false); + java.awt.Dimension var17 = var13.getPreferredSize(); + var7.setMaximumSize(var17); + var0.setPreferredSize(var17); + javax.swing.plaf.PanelUI var20 = var0.getUI(); + SpaceWar.SpacePanel var21 = new SpaceWar.SpacePanel(); + float var22 = var21.getAlignmentX(); + var21.setVisible(false); + var21.nextFocus(); + var21.reshape((-1), 1, (-1), 10); + var21.disable(); + java.awt.LayoutManager var32 = var21.getLayout(); + java.awt.Container var33 = var21.getParent(); + java.lang.String var34 = var21.getUIClassID(); + SpaceWar.Enemy var37 = new SpaceWar.Enemy(0, 10); + var0.add((java.awt.Component)var21, (java.lang.Object)10); + boolean var39 = var21.getInheritsPopupMenu(); + java.awt.image.BufferedImage var41 = var21.loadImg("hi!"); + boolean var42 = var21.isManagingFocus(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var22 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var32); + + // Regression assertion (captures the current behavior of the code) + assertNull(var33); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var34 + "' != '" + "PanelUI"+ "'", var34.equals("PanelUI")); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var39 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var41); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var42 == false); + + } + + public void test340() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test340"); + + + SpaceWar.Enemy var2 = new SpaceWar.Enemy(0, 100); + var2.explode(); + java.awt.image.BufferedImage var5 = var2.loadImg("SpaceWar.SpacePanel[,-1,1,-1x10,invalid,hidden,disabled,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + var2.hit(); + double var7 = var2.getY(); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.0d); + + } + + public void test341() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test341"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + java.awt.im.InputMethodRequests var3 = var0.getInputMethodRequests(); + var0.setDoubleBuffered(true); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + float var7 = var6.getAlignmentX(); + boolean var8 = var6.hasFocus(); + java.awt.Insets var9 = var6.getInsets(); + java.awt.Insets var10 = var0.getInsets(var9); + SpaceWar.SpacePanel var11 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var12 = new SpaceWar.SpacePanel(); + java.awt.Color var13 = var12.getBackground(); + SpaceWar.SpacePanel var14 = new SpaceWar.SpacePanel(); + float var15 = var14.getAlignmentX(); + var14.setVisible(false); + var14.nextFocus(); + var14.updateUI(); + var14.enableInputMethods(true); + var11.add((java.awt.Component)var12, (java.lang.Object)true); + java.awt.Image var25 = var12.createImage(1, (-1)); + SpaceWar.SpacePanel var26 = new SpaceWar.SpacePanel(); + float var27 = var26.getAlignmentX(); + var26.setVisible(false); + var26.nextFocus(); + var26.updateUI(); + var26.enableInputMethods(true); + SpaceWar.SpacePanel var34 = new SpaceWar.SpacePanel(); + float var35 = var34.getAlignmentX(); + boolean var36 = var34.hasFocus(); + java.awt.Insets var37 = var34.getInsets(); + java.awt.Insets var38 = var26.getInsets(var37); + java.awt.Insets var39 = var12.getInsets(var37); + java.awt.Insets var40 = var0.getInsets(var37); + var0.updateUI(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var9); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNull(var25); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var35 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var36 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var37); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var38); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var39); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var40); + + } + + public void test342() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test342"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + java.awt.Dimension var4 = var0.getPreferredSize(); + java.awt.Toolkit var5 = var0.getToolkit(); + boolean var6 = var0.isFocusable(); + javax.swing.KeyStroke[] var7 = var0.getRegisteredKeyStrokes(); + java.awt.Component var10 = var0.getComponentAt(100, 100); + java.lang.Object var11 = var0.getTreeLock(); + SpaceWar.SpacePanel var12 = new SpaceWar.SpacePanel(); + float var13 = var12.getAlignmentX(); + var12.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var18 = new SpaceWar.SpacePanel(); + float var19 = var18.getAlignmentX(); + var18.setVisible(false); + java.awt.Dimension var22 = var18.getPreferredSize(); + var12.setMaximumSize(var22); + boolean var24 = var12.getVerifyInputWhenFocusTarget(); + int var25 = var12.getX(); + SpaceWar.SpacePanel var26 = new SpaceWar.SpacePanel(); + float var27 = var26.getAlignmentX(); + SpaceWar.SpacePanel var28 = new SpaceWar.SpacePanel(); + float var29 = var28.getAlignmentX(); + var28.setVisible(false); + java.awt.Dimension var32 = var28.getPreferredSize(); + boolean var33 = var28.getVerifyInputWhenFocusTarget(); + java.awt.Component var36 = var28.findComponentAt(10, 1); + var26.addKeyListener((java.awt.event.KeyListener)var28); + var28.repaint(100, (-1), (-1), 1); + SpaceWar.SpacePanel var43 = new SpaceWar.SpacePanel(); + java.awt.Color var44 = var43.getBackground(); + var43.repaint(); + java.awt.im.InputMethodRequests var46 = var43.getInputMethodRequests(); + java.awt.GraphicsConfiguration var47 = var43.getGraphicsConfiguration(); + var28.remove((java.awt.Component)var43); + java.awt.Font var49 = var43.getFont(); + var12.setFont(var49); + SpaceWar.SpacePanel var51 = new SpaceWar.SpacePanel(); + float var52 = var51.getAlignmentX(); + var51.setVisible(false); + var51.nextFocus(); + var51.reshape((-1), 1, (-1), 10); + var51.disable(); + java.awt.LayoutManager var62 = var51.getLayout(); + var12.setLayout(var62); + var0.setLayout(var62); + var0.setToolTipText("PanelUI"); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var4); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var24 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var29 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var32); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var33 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var36); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var44); + + // Regression assertion (captures the current behavior of the code) + assertNull(var46); + + // Regression assertion (captures the current behavior of the code) + assertNull(var47); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var49); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var52 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var62); + + } + + public void test343() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test343"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var6 = var0.getMouseListeners(); + int var7 = var0.getDebugGraphicsOptions(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + boolean var12 = var8.isDoubleBuffered(); + java.awt.dnd.DropTarget var13 = var8.getDropTarget(); + var8.show(false); + java.awt.Rectangle var16 = var8.getVisibleRect(); + var0.paintImmediately(var16); + java.awt.Rectangle var18 = var0.getBounds(); + java.awt.Component var21 = var0.getComponentAt((-1), 25); + java.awt.Insets var22 = var0.getInsets(); + javax.accessibility.AccessibleContext var23 = var0.getAccessibleContext(); + var0.setBounds((-1), 0, 499, 100); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertNull(var21); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var23); + + } + + public void test344() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test344"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + SpaceWar.SpacePanel var4 = new SpaceWar.SpacePanel(); + java.awt.Color var5 = var4.getBackground(); + var0.setForeground(var5); + SpaceWar.SpacePanel var7 = new SpaceWar.SpacePanel(); + float var8 = var7.getAlignmentX(); + var7.setVisible(false); + boolean var11 = var7.isDoubleBuffered(); + java.awt.dnd.DropTarget var12 = var7.getDropTarget(); + var7.show(false); + java.awt.Rectangle var15 = var7.getVisibleRect(); + var0.repaint(var15); + java.awt.FocusTraversalPolicy var17 = var0.getFocusTraversalPolicy(); + java.awt.im.InputMethodRequests var18 = var0.getInputMethodRequests(); + var0.layout(); + var0.setDebugGraphicsOptions(10); + java.awt.event.FocusListener[] var22 = var0.getFocusListeners(); + javax.swing.border.Border var23 = var0.getBorder(); + var0.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=1.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", (-1.0f), 1.0f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertNull(var23); + + } + + public void test345() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test345"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.updateUI(); + var0.enableInputMethods(true); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + boolean var10 = var8.hasFocus(); + java.awt.Insets var11 = var8.getInsets(); + java.awt.Insets var12 = var0.getInsets(var11); + javax.swing.JRootPane var13 = var0.getRootPane(); + int var14 = var0.getY(); + javax.swing.JPopupMenu var15 = var0.getComponentPopupMenu(); + SpaceWar.SpacePanel var16 = new SpaceWar.SpacePanel(); + float var17 = var16.getAlignmentX(); + var16.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var22 = new SpaceWar.SpacePanel(); + float var23 = var22.getAlignmentX(); + var22.setVisible(false); + java.awt.Dimension var26 = var22.getPreferredSize(); + var16.setMaximumSize(var26); + boolean var28 = var16.getVerifyInputWhenFocusTarget(); + javax.accessibility.AccessibleContext var29 = var16.getAccessibleContext(); + boolean var30 = var16.isDoubleBuffered(); + java.awt.Rectangle var31 = var16.getVisibleRect(); + var0.paintImmediately(var31); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var28 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var29); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var30 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var31); + + } + + public void test346() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test346"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + boolean var4 = var0.inside(0, (-1)); + var0.transferFocusUpCycle(); + javax.swing.JToolTip var6 = var0.createToolTip(); + SpaceWar.SpacePanel var7 = new SpaceWar.SpacePanel(); + float var8 = var7.getAlignmentX(); + var7.setVisible(false); + var7.nextFocus(); + var7.reshape((-1), 1, (-1), 10); + SpaceWar.SpacePanel var17 = new SpaceWar.SpacePanel(); + java.awt.Color var18 = var17.getBackground(); + var17.repaint(); + var17.setRequestFocusEnabled(false); + var17.reshape(100, 0, 100, 0); + java.awt.Component var27 = var7.add((java.awt.Component)var17); + SpaceWar.SpacePanel var28 = new SpaceWar.SpacePanel(); + var28.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + javax.swing.plaf.PanelUI var33 = var28.getUI(); + SpaceWar.SpacePanel var34 = new SpaceWar.SpacePanel(); + float var35 = var34.getAlignmentX(); + var34.setVisible(false); + var34.nextFocus(); + var34.repaint(1L); + SpaceWar.SpacePanel var41 = new SpaceWar.SpacePanel(); + float var42 = var41.getAlignmentX(); + var41.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var47 = new SpaceWar.SpacePanel(); + float var48 = var47.getAlignmentX(); + var47.setVisible(false); + java.awt.Dimension var51 = var47.getPreferredSize(); + var41.setMaximumSize(var51); + var34.setPreferredSize(var51); + var28.setMaximumSize(var51); + java.awt.Dimension var55 = var17.getSize(var51); + java.awt.event.ContainerListener[] var56 = var17.getContainerListeners(); + // The following exception was thrown during execution. + // This behavior will recorded for regression testing. + try { + java.awt.Component var58 = var6.add((java.awt.Component)var17, 25); + fail("Expected exception of type java.lang.IllegalArgumentException"); + } catch (java.lang.IllegalArgumentException e) { + // Expected exception. + } + + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var27); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var33); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var35 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var42 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var48 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var51); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var55); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var56); + + } + + public void test347() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test347"); + + + SpaceWar.Player var0 = new SpaceWar.Player(); + var0.increasePower(25); + int var3 = var0.getScore(); + var0.setRigth(true); + var0.loseLife(); + int var7 = var0.getPower(); + int var8 = var0.getX(); + int var9 = var0.getPower(); + int var10 = var0.getRequiredPower(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 24); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 400); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 24); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 2); + + } + + public void test348() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test348"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.reshape((-1), 1, (-1), 10); + var0.disable(); + java.awt.LayoutManager var11 = var0.getLayout(); + java.awt.Container var12 = var0.getParent(); + java.lang.String var13 = var0.getUIClassID(); + float var14 = var0.getAlignmentX(); + var0.enable(true); + boolean var17 = var0.isPaintingTile(); + var0.setVisible(false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var13 + "' != '" + "PanelUI"+ "'", var13.equals("PanelUI")); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == false); + + } + + public void test349() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test349"); + + + SpaceWar.Enemy var2 = new SpaceWar.Enemy(0, 100); + boolean var3 = var2.isDead(); + var2.hit(); + double var5 = var2.getY(); + var2.hit(); + var2.update(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == 0.0d); + + } + + public void test350() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test350"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.updateUI(); + java.util.Locale var6 = var0.getLocale(); + var0.paintImmediately(25, 100, 3, 0); + boolean var12 = var0.isCursorSet(); + boolean var13 = var0.isCursorSet(); + boolean var14 = var0.getFocusTraversalKeysEnabled(); + var0.setVerifyInputWhenFocusTarget(false); + boolean var18 = var0.requestFocus(true); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + float var20 = var19.getAlignmentX(); + SpaceWar.SpacePanel var21 = new SpaceWar.SpacePanel(); + float var22 = var21.getAlignmentX(); + var21.setVisible(false); + java.awt.Dimension var25 = var21.getPreferredSize(); + boolean var26 = var21.getVerifyInputWhenFocusTarget(); + java.awt.Component var29 = var21.findComponentAt(10, 1); + var19.addKeyListener((java.awt.event.KeyListener)var21); + SpaceWar.SpacePanel var31 = new SpaceWar.SpacePanel(); + float var32 = var31.getAlignmentX(); + SpaceWar.SpacePanel var33 = new SpaceWar.SpacePanel(); + float var34 = var33.getAlignmentX(); + var33.setVisible(false); + java.awt.Dimension var37 = var33.getPreferredSize(); + boolean var38 = var33.getVerifyInputWhenFocusTarget(); + java.awt.Component var41 = var33.findComponentAt(10, 1); + var31.addKeyListener((java.awt.event.KeyListener)var33); + var33.repaint(100, (-1), (-1), 1); + java.awt.image.ColorModel var48 = var33.getColorModel(); + SpaceWar.SpacePanel var49 = new SpaceWar.SpacePanel(); + float var50 = var49.getAlignmentX(); + var49.setVisible(false); + boolean var53 = var49.isDoubleBuffered(); + var49.list(); + SpaceWar.SpacePanel var55 = new SpaceWar.SpacePanel(); + float var56 = var55.getAlignmentX(); + var55.setVisible(false); + boolean var59 = var55.isDoubleBuffered(); + java.awt.dnd.DropTarget var60 = var55.getDropTarget(); + var55.show(false); + java.awt.Rectangle var63 = var55.getVisibleRect(); + java.awt.image.BufferedImage var65 = var55.loadImg("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + boolean var66 = var49.isAncestorOf((java.awt.Component)var55); + javax.swing.InputVerifier var67 = var55.getInputVerifier(); + var21.putClientProperty((java.lang.Object)var33, (java.lang.Object)var55); + javax.swing.JToolTip var69 = var21.createToolTip(); + SpaceWar.SpacePanel var70 = new SpaceWar.SpacePanel(); + float var71 = var70.getAlignmentX(); + var70.setVisible(false); + var70.nextFocus(); + SpaceWar.SpacePanel var75 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var76 = new SpaceWar.SpacePanel(); + java.awt.Color var77 = var76.getBackground(); + SpaceWar.SpacePanel var78 = new SpaceWar.SpacePanel(); + float var79 = var78.getAlignmentX(); + var78.setVisible(false); + var78.nextFocus(); + var78.updateUI(); + var78.enableInputMethods(true); + var75.add((java.awt.Component)var76, (java.lang.Object)true); + java.awt.Dimension var87 = var76.getPreferredSize(); + var70.setMaximumSize(var87); + var21.setMinimumSize(var87); + var0.resize(var87); + java.util.Set var92 = var0.getFocusTraversalKeys(1); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var22 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var25); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var29); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var32 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var34 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var37); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var38 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var41); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var48); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var50 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var53 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var56 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var59 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var60); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var63); + + // Regression assertion (captures the current behavior of the code) + assertNull(var65); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var66 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var67); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var69); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var71 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var77); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var79 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var87); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var92); + + } + + public void test351() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test351"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + var0.list(); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + float var7 = var6.getAlignmentX(); + var6.setVisible(false); + boolean var10 = var6.isDoubleBuffered(); + java.awt.dnd.DropTarget var11 = var6.getDropTarget(); + var6.show(false); + java.awt.Rectangle var14 = var6.getVisibleRect(); + java.awt.Rectangle var15 = var0.getBounds(var14); + javax.swing.JToolTip var16 = var0.createToolTip(); + java.awt.Dimension var17 = var0.minimumSize(); + boolean var19 = var0.requestFocus(false); + java.awt.Dimension var20 = var0.minimumSize(); + SpaceWar.SpacePanel var21 = new SpaceWar.SpacePanel(); + float var22 = var21.getAlignmentX(); + var21.setVisible(false); + SpaceWar.SpacePanel var25 = new SpaceWar.SpacePanel(); + java.awt.Color var26 = var25.getBackground(); + var21.setForeground(var26); + SpaceWar.SpacePanel var28 = new SpaceWar.SpacePanel(); + float var29 = var28.getAlignmentX(); + var28.setVisible(false); + boolean var32 = var28.isDoubleBuffered(); + java.awt.dnd.DropTarget var33 = var28.getDropTarget(); + var28.show(false); + java.awt.Rectangle var36 = var28.getVisibleRect(); + var21.repaint(var36); + java.awt.FocusTraversalPolicy var38 = var21.getFocusTraversalPolicy(); + java.awt.im.InputMethodRequests var39 = var21.getInputMethodRequests(); + var21.layout(); + var21.setDebugGraphicsOptions(10); + SpaceWar.SpacePanel var43 = new SpaceWar.SpacePanel(); + float var44 = var43.getAlignmentX(); + var43.setVisible(false); + var43.nextFocus(); + var43.reshape((-1), 1, (-1), 10); + SpaceWar.SpacePanel var53 = new SpaceWar.SpacePanel(); + java.awt.Color var54 = var53.getBackground(); + var53.repaint(); + var53.setRequestFocusEnabled(false); + var53.reshape(100, 0, 100, 0); + java.awt.Component var63 = var43.add((java.awt.Component)var53); + SpaceWar.SpacePanel var64 = new SpaceWar.SpacePanel(); + var64.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + javax.swing.plaf.PanelUI var69 = var64.getUI(); + SpaceWar.SpacePanel var70 = new SpaceWar.SpacePanel(); + float var71 = var70.getAlignmentX(); + var70.setVisible(false); + var70.nextFocus(); + var70.repaint(1L); + SpaceWar.SpacePanel var77 = new SpaceWar.SpacePanel(); + float var78 = var77.getAlignmentX(); + var77.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var83 = new SpaceWar.SpacePanel(); + float var84 = var83.getAlignmentX(); + var83.setVisible(false); + java.awt.Dimension var87 = var83.getPreferredSize(); + var77.setMaximumSize(var87); + var70.setPreferredSize(var87); + var64.setMaximumSize(var87); + java.awt.Dimension var91 = var53.getSize(var87); + var21.setSize(var91); + var0.resize(var91); + boolean var95 = var0.requestFocus(true); + var0.nextFocus(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var22 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var29 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var32 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var33); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var36); + + // Regression assertion (captures the current behavior of the code) + assertNull(var38); + + // Regression assertion (captures the current behavior of the code) + assertNull(var39); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var44 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var54); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var63); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var69); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var71 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var78 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var84 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var87); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var91); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var95 == false); + + } + + public void test352() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test352"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.reshape((-1), 1, (-1), 10); + var0.disable(); + boolean var11 = var0.isFocusable(); + int var12 = var0.getHeight(); + javax.swing.InputVerifier var13 = var0.getInputVerifier(); + boolean var16 = var0.inside(25, (-1)); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == 10); + + // Regression assertion (captures the current behavior of the code) + assertNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == false); + + } + + public void test353() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test353"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + var0.enable(false); + boolean var7 = var0.getFocusTraversalKeysEnabled(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + java.awt.Dimension var12 = var8.getPreferredSize(); + java.awt.Toolkit var13 = var8.getToolkit(); + boolean var14 = var8.isFocusable(); + javax.swing.KeyStroke[] var15 = var8.getRegisteredKeyStrokes(); + SpaceWar.SpacePanel var16 = new SpaceWar.SpacePanel(); + float var17 = var16.getAlignmentX(); + SpaceWar.SpacePanel var18 = new SpaceWar.SpacePanel(); + float var19 = var18.getAlignmentX(); + var18.setVisible(false); + java.awt.Dimension var22 = var18.getPreferredSize(); + boolean var23 = var18.getVerifyInputWhenFocusTarget(); + java.awt.Component var26 = var18.findComponentAt(10, 1); + var16.addKeyListener((java.awt.event.KeyListener)var18); + var18.repaint(100, (-1), (-1), 1); + boolean var33 = var8.isAncestorOf((java.awt.Component)var18); + var0.addKeyListener((java.awt.event.KeyListener)var18); + java.awt.Component var37 = var0.findComponentAt(1, 25); + var0.setFocusable(true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var33 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var37); + + } + + public void test354() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test354"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var1 = new SpaceWar.SpacePanel(); + java.awt.Color var2 = var1.getBackground(); + SpaceWar.SpacePanel var3 = new SpaceWar.SpacePanel(); + float var4 = var3.getAlignmentX(); + var3.setVisible(false); + var3.nextFocus(); + var3.updateUI(); + var3.enableInputMethods(true); + var0.add((java.awt.Component)var1, (java.lang.Object)true); + java.awt.Image var14 = var1.createImage(1, (-1)); + java.awt.event.MouseListener[] var15 = var1.getMouseListeners(); + java.awt.Color var16 = var1.getBackground(); + boolean var17 = var1.getIgnoreRepaint(); + var1.enable(); + var1.repaint(); + SpaceWar.SpacePanel var20 = new SpaceWar.SpacePanel(); + float var21 = var20.getAlignmentX(); + var20.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var26 = var20.getMouseListeners(); + var20.firePropertyChange("", 0.5f, 100.0f); + var20.enable(false); + SpaceWar.SpacePanel var33 = new SpaceWar.SpacePanel(); + float var34 = var33.getAlignmentX(); + SpaceWar.SpacePanel var35 = new SpaceWar.SpacePanel(); + float var36 = var35.getAlignmentX(); + var35.setVisible(false); + java.awt.Dimension var39 = var35.getPreferredSize(); + boolean var40 = var35.getVerifyInputWhenFocusTarget(); + java.awt.Component var43 = var35.findComponentAt(10, 1); + var33.addKeyListener((java.awt.event.KeyListener)var35); + java.awt.Cursor var45 = var33.getCursor(); + java.awt.Dimension var46 = var33.getMinimumSize(); + var20.setSize(var46); + var1.setMaximumSize(var46); + boolean var49 = var1.isLightweight(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var2); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var34 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var36 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var39); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var40 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var43); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var45); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var46); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var49 == false); + + } + + public void test355() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test355"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + var0.setRequestFocusEnabled(false); + var0.reshape(100, 0, 100, 0); + var0.requestFocus(); + var0.firePropertyChange("hi!", '4', ' '); + SpaceWar.Enemy var17 = new SpaceWar.Enemy(0, 100); + int var18 = var17.getR(); + var17.explode(); + var0.putClientProperty((java.lang.Object)var17, (java.lang.Object)(short)10); + var17.hit(); + int var23 = var17.getR(); + int var24 = var17.getType(); + var17.hit(); + double var26 = var17.getY(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var24 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == 0.0d); + + } + + public void test356() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test356"); + + + SpaceWar.PowerUp var3 = new SpaceWar.PowerUp(100, (-1.0d), 0.0d); + int var4 = var3.getType(); + boolean var5 = var3.update(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 100); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == false); + + } + + public void test357() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test357"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var1 = new SpaceWar.SpacePanel(); + java.awt.Color var2 = var1.getBackground(); + SpaceWar.SpacePanel var3 = new SpaceWar.SpacePanel(); + float var4 = var3.getAlignmentX(); + var3.setVisible(false); + var3.nextFocus(); + var3.updateUI(); + var3.enableInputMethods(true); + var0.add((java.awt.Component)var1, (java.lang.Object)true); + java.awt.Dimension var12 = var1.getPreferredSize(); + java.awt.Component[] var13 = var1.getComponents(); + boolean var14 = var1.isFocusTraversable(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var2); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == true); + + } + + public void test358() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test358"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + var0.setRequestFocusEnabled(false); + var0.reshape(100, 0, 100, 0); + var0.requestFocus(); + var0.firePropertyChange("hi!", '4', ' '); + SpaceWar.Enemy var17 = new SpaceWar.Enemy(0, 100); + int var18 = var17.getR(); + var17.explode(); + var0.putClientProperty((java.lang.Object)var17, (java.lang.Object)(short)10); + var17.hit(); + int var23 = var17.getType(); + int var24 = var17.getR(); + double var25 = var17.getY(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var24 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == 0.0d); + + } + + public void test359() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test359"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + var0.enable(false); + boolean var7 = var0.getFocusTraversalKeysEnabled(); + var0.setAlignmentX(1.0f); + SpaceWar.SpacePanel var10 = new SpaceWar.SpacePanel(); + float var11 = var10.getAlignmentX(); + SpaceWar.SpacePanel var12 = new SpaceWar.SpacePanel(); + float var13 = var12.getAlignmentX(); + var12.setVisible(false); + java.awt.Dimension var16 = var12.getPreferredSize(); + boolean var17 = var12.getVerifyInputWhenFocusTarget(); + java.awt.Component var20 = var12.findComponentAt(10, 1); + var10.addKeyListener((java.awt.event.KeyListener)var12); + java.awt.Dimension var22 = var12.getMinimumSize(); + javax.swing.JToolTip var23 = var12.createToolTip(); + // The following exception was thrown during execution. + // This behavior will recorded for regression testing. + try { + java.awt.Component var25 = var0.add((java.awt.Component)var12, 25); + fail("Expected exception of type java.lang.IllegalArgumentException"); + } catch (java.lang.IllegalArgumentException e) { + // Expected exception. + } + + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var23); + + } + + public void test360() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test360"); + + + SpaceWar.Player var0 = new SpaceWar.Player(); + var0.increasePower(25); + int var3 = var0.getR(); + int var4 = var0.getScore(); + var0.loseLife(); + boolean var6 = var0.isRecovering(); + var0.setFiring(false); + var0.setLife(2); + var0.setRigth(false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == 25); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == true); + + } + + public void test361() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test361"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + java.awt.im.InputMethodRequests var3 = var0.getInputMethodRequests(); + int var4 = var0.countComponents(); + java.awt.event.ComponentListener[] var5 = var0.getComponentListeners(); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + float var7 = var6.getAlignmentX(); + var6.removeNotify(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.setVisible(false); + boolean var13 = var9.isDoubleBuffered(); + var9.list(); + float var15 = var9.getAlignmentY(); + java.awt.Insets var16 = var9.getInsets(); + java.awt.Insets var17 = var6.getInsets(var16); + java.awt.Insets var18 = var0.getInsets(var17); + javax.swing.JPopupMenu var19 = var0.getComponentPopupMenu(); + java.awt.image.BufferedImage var21 = var0.loadImg("PanelUI"); + var0.setVerifyInputWhenFocusTarget(false); + SpaceWar.SpacePanel var24 = new SpaceWar.SpacePanel(); + java.awt.Color var25 = var24.getBackground(); + boolean var28 = var24.inside(0, (-1)); + SpaceWar.SpacePanel var30 = new SpaceWar.SpacePanel(); + float var31 = var30.getAlignmentX(); + var30.setVisible(false); + var30.nextFocus(); + var30.reshape((-1), 1, (-1), 10); + var30.disable(); + boolean var41 = var30.isFocusable(); + SpaceWar.SpacePanel var42 = new SpaceWar.SpacePanel(); + float var43 = var42.getAlignmentX(); + var42.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var48 = var42.getUI(); + java.awt.im.InputMethodRequests var49 = var42.getInputMethodRequests(); + SpaceWar.SpacePanel var50 = new SpaceWar.SpacePanel(); + float var51 = var50.getAlignmentX(); + var50.setVisible(false); + var50.nextFocus(); + var50.updateUI(); + var50.enableInputMethods(true); + var50.setSize((-1), 1); + SpaceWar.SpacePanel var61 = new SpaceWar.SpacePanel(); + var61.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var42.add((java.awt.Component)var50, (java.lang.Object)"SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + java.awt.event.KeyListener[] var67 = var42.getKeyListeners(); + java.awt.FocusTraversalPolicy var68 = var42.getFocusTraversalPolicy(); + SpaceWar.SpacePanel var69 = new SpaceWar.SpacePanel(); + var69.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + java.awt.Toolkit var74 = var69.getToolkit(); + var30.add((java.awt.Component)var42, (java.lang.Object)var69); + var30.layout(); + java.awt.Component var77 = var24.add("", (java.awt.Component)var30); + java.lang.Object var78 = var0.getClientProperty((java.lang.Object)var77); + boolean var79 = var77.isFocusable(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertNull(var21); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var25); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var28 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var31 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var41 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var43 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var48); + + // Regression assertion (captures the current behavior of the code) + assertNull(var49); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var51 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var67); + + // Regression assertion (captures the current behavior of the code) + assertNull(var68); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var74); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var77); + + // Regression assertion (captures the current behavior of the code) + assertNull(var78); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var79 == true); + + } + + public void test362() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test362"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + boolean var2 = var0.hasFocus(); + SpaceWar.SpacePanel var3 = new SpaceWar.SpacePanel(); + float var4 = var3.getAlignmentX(); + var3.setVisible(false); + var3.nextFocus(); + var3.reshape((-1), 1, (-1), 10); + var3.disable(); + java.awt.LayoutManager var14 = var3.getLayout(); + var3.setVisible(false); + var0.remove((java.awt.Component)var3); + var3.repaint(); + var3.repaint(); + var3.transferFocusUpCycle(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var2 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + } + + public void test363() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test363"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + SpaceWar.SpacePanel var4 = new SpaceWar.SpacePanel(); + java.awt.Color var5 = var4.getBackground(); + var0.setForeground(var5); + var0.setVerifyInputWhenFocusTarget(true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + } + + public void test364() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test364"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + java.awt.Dimension var4 = var0.getPreferredSize(); + boolean var5 = var0.getVerifyInputWhenFocusTarget(); + java.awt.Dimension var6 = var0.size(); + java.awt.GraphicsConfiguration var7 = var0.getGraphicsConfiguration(); + boolean var8 = var0.isFocusCycleRoot(); + java.awt.im.InputContext var9 = var0.getInputContext(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var4); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var9); + + } + + public void test365() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test365"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + var0.show(false); + boolean var8 = var0.isPaintingForPrint(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var15 = var9.getMouseListeners(); + int var16 = var9.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var17 = var9.getInputMethodRequests(); + var0.addKeyListener((java.awt.event.KeyListener)var9); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + float var20 = var19.getAlignmentX(); + var19.setVisible(false); + boolean var23 = var19.isDoubleBuffered(); + var19.list(); + float var25 = var19.getAlignmentY(); + boolean var26 = var9.isFocusCycleRoot((java.awt.Container)var19); + javax.swing.JPopupMenu var27 = var19.getComponentPopupMenu(); + var19.move((-1), 100); + var19.validate(); + java.awt.Toolkit var32 = var19.getToolkit(); + SpaceWar.SpacePanel var33 = new SpaceWar.SpacePanel(); + float var34 = var33.getAlignmentX(); + var33.setVisible(false); + boolean var37 = var33.isDoubleBuffered(); + SpaceWar.SpacePanel var38 = new SpaceWar.SpacePanel(); + java.awt.Color var39 = var38.getBackground(); + var38.repaint(); + java.lang.Object var41 = var33.getClientProperty((java.lang.Object)var38); + var38.repaint(10, 1, 25, 0); + var19.removeKeyListener((java.awt.event.KeyListener)var38); + var38.grabFocus(); + java.awt.dnd.DropTarget var49 = var38.getDropTarget(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var27); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var32); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var34 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var39); + + // Regression assertion (captures the current behavior of the code) + assertNull(var41); + + // Regression assertion (captures the current behavior of the code) + assertNull(var49); + + } + + public void test366() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test366"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var6 = var0.getMouseListeners(); + int var7 = var0.getDebugGraphicsOptions(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + boolean var12 = var8.isDoubleBuffered(); + java.awt.dnd.DropTarget var13 = var8.getDropTarget(); + var8.show(false); + java.awt.Rectangle var16 = var8.getVisibleRect(); + var0.paintImmediately(var16); + java.awt.Rectangle var18 = var0.getBounds(); + java.awt.Component var21 = var0.getComponentAt((-1), 25); + java.awt.Insets var22 = var0.getInsets(); + boolean var23 = var0.requestDefaultFocus(); + var0.setFocusable(true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertNull(var21); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == false); + + } + + public void test367() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test367"); + + + SpaceWar.Player var0 = new SpaceWar.Player(); + int var1 = var0.getPower(); + int var2 = var0.getPowerLevel(); + var0.setLeft(false); + var0.setScore(400); + int var7 = var0.getLives(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var2 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 3); + + } + + public void test368() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test368"); + + + SpaceWar.Player var0 = new SpaceWar.Player(); + int var1 = var0.getPower(); + var0.setFiring(true); + var0.loseLife(); + boolean var5 = var0.isRecovering(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == true); + + } + + public void test369() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test369"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + var0.enable(false); + boolean var7 = var0.getFocusTraversalKeysEnabled(); + var0.setToolTipText("PanelUI"); + SpaceWar.SpacePanel var10 = new SpaceWar.SpacePanel(); + float var11 = var10.getAlignmentX(); + var10.setVisible(false); + boolean var14 = var10.isDoubleBuffered(); + java.awt.dnd.DropTarget var15 = var10.getDropTarget(); + var10.show(false); + boolean var18 = var10.isPaintingForPrint(); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + float var20 = var19.getAlignmentX(); + var19.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var25 = var19.getMouseListeners(); + int var26 = var19.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var27 = var19.getInputMethodRequests(); + var10.addKeyListener((java.awt.event.KeyListener)var19); + SpaceWar.SpacePanel var29 = new SpaceWar.SpacePanel(); + float var30 = var29.getAlignmentX(); + var29.setVisible(false); + boolean var33 = var29.isDoubleBuffered(); + var29.list(); + float var35 = var29.getAlignmentY(); + boolean var36 = var19.isFocusCycleRoot((java.awt.Container)var29); + var29.firePropertyChange("", 1L, 1L); + var29.setVerifyInputWhenFocusTarget(true); + SpaceWar.SpacePanel var43 = new SpaceWar.SpacePanel(); + var43.setName(""); + java.awt.Dimension var46 = var43.minimumSize(); + boolean var47 = var43.isDoubleBuffered(); + SpaceWar.SpacePanel var48 = new SpaceWar.SpacePanel(); + float var49 = var48.getAlignmentX(); + SpaceWar.SpacePanel var50 = new SpaceWar.SpacePanel(); + float var51 = var50.getAlignmentX(); + var50.setVisible(false); + java.awt.Dimension var54 = var50.getPreferredSize(); + boolean var55 = var50.getVerifyInputWhenFocusTarget(); + java.awt.Component var58 = var50.findComponentAt(10, 1); + var48.addKeyListener((java.awt.event.KeyListener)var50); + var50.repaint(100, (-1), (-1), 1); + SpaceWar.SpacePanel var65 = new SpaceWar.SpacePanel(); + java.awt.Color var66 = var65.getBackground(); + var65.repaint(); + java.awt.im.InputMethodRequests var68 = var65.getInputMethodRequests(); + java.awt.GraphicsConfiguration var69 = var65.getGraphicsConfiguration(); + var50.remove((java.awt.Component)var65); + java.awt.Font var71 = var65.getFont(); + java.awt.FontMetrics var72 = var43.getFontMetrics(var71); + java.awt.FontMetrics var73 = var29.getFontMetrics(var71); + var0.setFont(var71); + var0.setAutoscrolls(true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var25); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var27); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var30 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var33 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var35 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var36 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var46); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var47 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var49 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var51 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var54); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var55 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var58); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var66); + + // Regression assertion (captures the current behavior of the code) + assertNull(var68); + + // Regression assertion (captures the current behavior of the code) + assertNull(var69); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var71); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var72); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var73); + + } + + public void test370() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test370"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var6 = var0.getMouseListeners(); + var0.firePropertyChange("", 0.5f, 100.0f); + var0.enable(false); + int var13 = var0.getDebugGraphicsOptions(); + java.awt.Dimension var14 = var0.getSize(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + } + + public void test371() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test371"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + SpaceWar.SpacePanel var2 = new SpaceWar.SpacePanel(); + float var3 = var2.getAlignmentX(); + var2.setVisible(false); + java.awt.Dimension var6 = var2.getPreferredSize(); + boolean var7 = var2.getVerifyInputWhenFocusTarget(); + java.awt.Component var10 = var2.findComponentAt(10, 1); + var0.addKeyListener((java.awt.event.KeyListener)var2); + java.lang.Object var12 = var2.getTreeLock(); + java.awt.event.HierarchyBoundsListener[] var13 = var2.getHierarchyBoundsListeners(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var13); + + } + + public void test372() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test372"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + boolean var2 = var0.hasFocus(); + boolean var3 = var0.isPreferredSizeSet(); + SpaceWar.SpacePanel var4 = new SpaceWar.SpacePanel(); + java.awt.Color var5 = var4.getBackground(); + var4.repaint(); + var4.setRequestFocusEnabled(false); + int var9 = var0.getComponentZOrder((java.awt.Component)var4); + java.awt.Dimension var10 = var4.getPreferredSize(); + boolean var11 = var4.isShowing(); + boolean var12 = var4.isMaximumSizeSet(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var2 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == (-1)); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == false); + + } + + public void test373() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test373"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var6 = var0.getMouseListeners(); + int var7 = var0.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var8 = var0.getInputMethodRequests(); + var0.removeNotify(); + var0.enable(); + java.lang.Object var11 = var0.getTreeLock(); + var0.firePropertyChange("", (byte)10, (byte)0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + } + + public void test374() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test374"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + SpaceWar.SpacePanel var4 = new SpaceWar.SpacePanel(); + java.awt.Color var5 = var4.getBackground(); + var0.setForeground(var5); + SpaceWar.SpacePanel var7 = new SpaceWar.SpacePanel(); + float var8 = var7.getAlignmentX(); + var7.setVisible(false); + boolean var11 = var7.isDoubleBuffered(); + java.awt.dnd.DropTarget var12 = var7.getDropTarget(); + var7.show(false); + java.awt.Rectangle var15 = var7.getVisibleRect(); + var0.repaint(var15); + java.awt.FocusTraversalPolicy var17 = var0.getFocusTraversalPolicy(); + java.awt.im.InputMethodRequests var18 = var0.getInputMethodRequests(); + var0.layout(); + boolean var20 = var0.isCursorSet(); + java.awt.Dimension var21 = var0.size(); + var0.transferFocus(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var21); + + } + + public void test375() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test375"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + var0.show(false); + boolean var8 = var0.isPaintingForPrint(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var15 = var9.getMouseListeners(); + int var16 = var9.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var17 = var9.getInputMethodRequests(); + var0.addKeyListener((java.awt.event.KeyListener)var9); + boolean var19 = var0.isDisplayable(); + java.awt.Insets var20 = var0.getInsets(); + SpaceWar.SpacePanel var21 = new SpaceWar.SpacePanel(); + float var22 = var21.getAlignmentX(); + var21.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var27 = new SpaceWar.SpacePanel(); + float var28 = var27.getAlignmentX(); + var27.setVisible(false); + SpaceWar.SpacePanel var31 = new SpaceWar.SpacePanel(); + java.awt.Color var32 = var31.getBackground(); + var27.setForeground(var32); + var21.setBackground(var32); + java.awt.Point var35 = var21.location(); + java.awt.Point var36 = var0.getLocation(var35); + // The following exception was thrown during execution. + // This behavior will recorded for regression testing. + try { + java.awt.Point var37 = var0.getLocationOnScreen(); + fail("Expected exception of type java.awt.IllegalComponentStateException"); + } catch (java.awt.IllegalComponentStateException e) { + // Expected exception. + } + + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var22 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var28 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var32); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var35); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var36); + + } + + public void test376() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test376"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + var0.setName(""); + int var3 = var0.getX(); + SpaceWar.SpacePanel var4 = new SpaceWar.SpacePanel(); + float var5 = var4.getAlignmentX(); + var4.setVisible(false); + var4.nextFocus(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.setVisible(false); + SpaceWar.SpacePanel var13 = new SpaceWar.SpacePanel(); + java.awt.Color var14 = var13.getBackground(); + var9.setForeground(var14); + var4.setBackground(var14); + var0.setBackground(var14); + boolean var18 = var0.isFocusTraversable(); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + var19.setName(""); + int var22 = var19.getX(); + SpaceWar.SpacePanel var23 = new SpaceWar.SpacePanel(); + float var24 = var23.getAlignmentX(); + var23.setVisible(false); + var23.nextFocus(); + SpaceWar.SpacePanel var28 = new SpaceWar.SpacePanel(); + float var29 = var28.getAlignmentX(); + var28.setVisible(false); + SpaceWar.SpacePanel var32 = new SpaceWar.SpacePanel(); + java.awt.Color var33 = var32.getBackground(); + var28.setForeground(var33); + var23.setBackground(var33); + var19.setBackground(var33); + var0.setBackground(var33); + SpaceWar.SpacePanel var38 = new SpaceWar.SpacePanel(); + java.awt.Color var39 = var38.getBackground(); + var38.repaint(); + var38.setRequestFocusEnabled(false); + var38.setIgnoreRepaint(false); + java.lang.String var45 = var38.toString(); + java.awt.Color var46 = var38.getBackground(); + SpaceWar.SpacePanel var47 = new SpaceWar.SpacePanel(); + float var48 = var47.getAlignmentX(); + var47.setVisible(false); + java.awt.Dimension var51 = var47.getPreferredSize(); + java.awt.Toolkit var52 = var47.getToolkit(); + java.awt.Toolkit var53 = var47.getToolkit(); + SpaceWar.Player var54 = new SpaceWar.Player(); + var54.increasePower(25); + int var57 = var54.getScore(); + var54.setRigth(true); + var54.loseLife(); + var38.putClientProperty((java.lang.Object)var47, (java.lang.Object)var54); + SpaceWar.SpacePanel var62 = new SpaceWar.SpacePanel(); + float var63 = var62.getAlignmentX(); + var62.setVisible(false); + var62.setInheritsPopupMenu(false); + var62.move(10, 10); + var62.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + java.awt.event.KeyListener[] var75 = var62.getKeyListeners(); + var47.removeKeyListener((java.awt.event.KeyListener)var62); + boolean var77 = var47.isCursorSet(); + boolean var78 = var0.isFocusCycleRoot((java.awt.Container)var47); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var22 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var24 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var29 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var33); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var39); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var45 + "' != '" + "SpaceWar.SpacePanel[,0,0,0var45,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"+ "'", var45.equals("SpaceWar.SpacePanel[,0,0,0var45,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]")); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var46); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var48 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var51); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var52); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var53); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var57 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var63 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var75); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var77 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var78 == false); + + } + + public void test377() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test377"); + + + SpaceWar.Enemy var2 = new SpaceWar.Enemy(0, 100); + boolean var3 = var2.isDead(); + var2.hit(); + double var5 = var2.getX(); + var2.explode(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == 370.2289277239558d); + + } + + public void test378() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test378"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.reshape((-1), 1, (-1), 10); + SpaceWar.SpacePanel var10 = new SpaceWar.SpacePanel(); + java.awt.Color var11 = var10.getBackground(); + var10.repaint(); + var10.setRequestFocusEnabled(false); + var10.reshape(100, 0, 100, 0); + java.awt.Component var20 = var0.add((java.awt.Component)var10); + java.awt.im.InputContext var21 = var10.getInputContext(); + SpaceWar.SpacePanel var22 = new SpaceWar.SpacePanel(); + var22.setName(""); + java.awt.Dimension var25 = var22.minimumSize(); + var10.setPreferredSize(var25); + var10.transferFocus(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertNull(var21); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var25); + + } + + public void test379() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test379"); + + + SpaceWar.Player var0 = new SpaceWar.Player(); + int var1 = var0.getPower(); + var0.setLeft(true); + var0.increasePower(0); + int var6 = var0.getR(); + var0.setDown(false); + java.awt.image.BufferedImage var10 = var0.loadImg("hi!"); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == 25); + + // Regression assertion (captures the current behavior of the code) + assertNull(var10); + + } + + public void test380() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test380"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var1 = new SpaceWar.SpacePanel(); + java.awt.Color var2 = var1.getBackground(); + SpaceWar.SpacePanel var3 = new SpaceWar.SpacePanel(); + float var4 = var3.getAlignmentX(); + var3.setVisible(false); + var3.nextFocus(); + var3.updateUI(); + var3.enableInputMethods(true); + var0.add((java.awt.Component)var1, (java.lang.Object)true); + boolean var13 = var1.areFocusTraversalKeysSet(0); + boolean var14 = var1.isFocusCycleRoot(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var2); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == false); + + } + + public void test381() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test381"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + SpaceWar.SpacePanel var2 = new SpaceWar.SpacePanel(); + float var3 = var2.getAlignmentX(); + var2.setVisible(false); + java.awt.Dimension var6 = var2.getPreferredSize(); + boolean var7 = var2.getVerifyInputWhenFocusTarget(); + java.awt.Component var10 = var2.findComponentAt(10, 1); + var0.addKeyListener((java.awt.event.KeyListener)var2); + SpaceWar.SpacePanel var12 = new SpaceWar.SpacePanel(); + float var13 = var12.getAlignmentX(); + SpaceWar.SpacePanel var14 = new SpaceWar.SpacePanel(); + float var15 = var14.getAlignmentX(); + var14.setVisible(false); + java.awt.Dimension var18 = var14.getPreferredSize(); + boolean var19 = var14.getVerifyInputWhenFocusTarget(); + java.awt.Component var22 = var14.findComponentAt(10, 1); + var12.addKeyListener((java.awt.event.KeyListener)var14); + var14.repaint(100, (-1), (-1), 1); + java.awt.image.ColorModel var29 = var14.getColorModel(); + SpaceWar.SpacePanel var30 = new SpaceWar.SpacePanel(); + float var31 = var30.getAlignmentX(); + var30.setVisible(false); + boolean var34 = var30.isDoubleBuffered(); + var30.list(); + SpaceWar.SpacePanel var36 = new SpaceWar.SpacePanel(); + float var37 = var36.getAlignmentX(); + var36.setVisible(false); + boolean var40 = var36.isDoubleBuffered(); + java.awt.dnd.DropTarget var41 = var36.getDropTarget(); + var36.show(false); + java.awt.Rectangle var44 = var36.getVisibleRect(); + java.awt.image.BufferedImage var46 = var36.loadImg("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + boolean var47 = var30.isAncestorOf((java.awt.Component)var36); + javax.swing.InputVerifier var48 = var36.getInputVerifier(); + var2.putClientProperty((java.lang.Object)var14, (java.lang.Object)var36); + int var50 = var36.getComponentCount(); + boolean var53 = var36.inside(10, 400); + int var54 = var36.getX(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var29); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var31 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var34 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var40 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var41); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var44); + + // Regression assertion (captures the current behavior of the code) + assertNull(var46); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var47 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var48); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var50 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var53 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var54 == 0); + + } + + public void test382() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test382"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + var0.list(); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + float var7 = var6.getAlignmentX(); + var6.setVisible(false); + boolean var10 = var6.isDoubleBuffered(); + java.awt.dnd.DropTarget var11 = var6.getDropTarget(); + var6.show(false); + java.awt.Rectangle var14 = var6.getVisibleRect(); + java.awt.image.BufferedImage var16 = var6.loadImg("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + boolean var17 = var0.isAncestorOf((java.awt.Component)var6); + float var18 = var0.getAlignmentX(); + java.awt.image.VolatileImage var21 = var0.createVolatileImage(25, 1); + java.beans.PropertyChangeListener[] var23 = var0.getPropertyChangeListeners("PanelUI"); + boolean var24 = var0.isPaintingForPrint(); + boolean var25 = var0.isPreferredSizeSet(); + int var26 = var0.getComponentCount(); + boolean var27 = var0.isPreferredSizeSet(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNull(var21); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var23); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var24 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == true); + + } + + public void test383() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test383"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.updateUI(); + var0.enableInputMethods(true); + java.awt.Point var9 = var0.getMousePosition(false); + java.awt.Point var10 = var0.getMousePosition(); + var0.revalidate(); + java.awt.Insets var12 = var0.getInsets(); + SpaceWar.SpacePanel var13 = new SpaceWar.SpacePanel(); + float var14 = var13.getAlignmentX(); + var13.setVisible(false); + var13.setInheritsPopupMenu(false); + boolean var19 = var13.isDoubleBuffered(); + java.awt.Rectangle var20 = var13.getBounds(); + java.awt.Rectangle var21 = var0.getBounds(var20); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNull(var9); + + // Regression assertion (captures the current behavior of the code) + assertNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var21); + + } + + public void test384() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test384"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var1 = new SpaceWar.SpacePanel(); + java.awt.Color var2 = var1.getBackground(); + SpaceWar.SpacePanel var3 = new SpaceWar.SpacePanel(); + float var4 = var3.getAlignmentX(); + var3.setVisible(false); + var3.nextFocus(); + var3.updateUI(); + var3.enableInputMethods(true); + var0.add((java.awt.Component)var1, (java.lang.Object)true); + java.awt.Image var14 = var1.createImage(1, (-1)); + java.awt.event.MouseListener[] var15 = var1.getMouseListeners(); + java.awt.Color var16 = var1.getBackground(); + boolean var17 = var1.getIgnoreRepaint(); + var1.enable(); + javax.swing.JToolTip var19 = var1.createToolTip(); + int var20 = var1.getY(); + java.awt.Point var22 = var1.getMousePosition(true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var2); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var22); + + } + + public void test385() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test385"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + java.awt.im.InputMethodRequests var3 = var0.getInputMethodRequests(); + var0.setDoubleBuffered(true); + var0.show(false); + var0.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", (-1), 24); + java.awt.Point var12 = var0.location(); + java.awt.Dimension var13 = var0.getMinimumSize(); + var0.firePropertyChange("", 514.6637810615505d, 83.657626403857d); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var13); + + } + + public void test386() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test386"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + java.awt.im.InputMethodRequests var3 = var0.getInputMethodRequests(); + var0.setDoubleBuffered(true); + var0.setInheritsPopupMenu(false); + javax.swing.InputMap var8 = var0.getInputMap(); + var0.doLayout(); + SpaceWar.SpacePanel var10 = new SpaceWar.SpacePanel(); + java.awt.Color var11 = var10.getBackground(); + var10.repaint(); + java.awt.im.InputMethodRequests var13 = var10.getInputMethodRequests(); + var10.setDoubleBuffered(true); + SpaceWar.SpacePanel var16 = new SpaceWar.SpacePanel(); + float var17 = var16.getAlignmentX(); + boolean var18 = var16.hasFocus(); + java.awt.Insets var19 = var16.getInsets(); + java.awt.Insets var20 = var10.getInsets(var19); + SpaceWar.SpacePanel var21 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var22 = new SpaceWar.SpacePanel(); + java.awt.Color var23 = var22.getBackground(); + SpaceWar.SpacePanel var24 = new SpaceWar.SpacePanel(); + float var25 = var24.getAlignmentX(); + var24.setVisible(false); + var24.nextFocus(); + var24.updateUI(); + var24.enableInputMethods(true); + var21.add((java.awt.Component)var22, (java.lang.Object)true); + java.awt.Image var35 = var22.createImage(1, (-1)); + SpaceWar.SpacePanel var36 = new SpaceWar.SpacePanel(); + float var37 = var36.getAlignmentX(); + var36.setVisible(false); + var36.nextFocus(); + var36.updateUI(); + var36.enableInputMethods(true); + SpaceWar.SpacePanel var44 = new SpaceWar.SpacePanel(); + float var45 = var44.getAlignmentX(); + boolean var46 = var44.hasFocus(); + java.awt.Insets var47 = var44.getInsets(); + java.awt.Insets var48 = var36.getInsets(var47); + java.awt.Insets var49 = var22.getInsets(var47); + java.awt.Insets var50 = var10.getInsets(var47); + java.awt.Insets var51 = var0.getInsets(var47); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var23); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNull(var35); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var45 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var46 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var47); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var48); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var49); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var50); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var51); + + } + + public void test387() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test387"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.Graphics var5 = var0.getGraphics(); + boolean var6 = var0.isMinimumSizeSet(); + var0.grabFocus(); + java.beans.PropertyChangeListener[] var9 = var0.getPropertyChangeListeners("PanelUI"); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var9); + + } + + public void test388() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test388"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var6 = var0.getMouseListeners(); + int var7 = var0.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var8 = var0.getInputMethodRequests(); + var0.removeNotify(); + java.awt.Container var10 = var0.getParent(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertNull(var10); + + } + + public void test389() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test389"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.setInheritsPopupMenu(false); + boolean var6 = var0.isDoubleBuffered(); + boolean var7 = var0.isMinimumSizeSet(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var14 = new SpaceWar.SpacePanel(); + float var15 = var14.getAlignmentX(); + var14.setVisible(false); + java.awt.Dimension var18 = var14.getPreferredSize(); + var8.setMaximumSize(var18); + boolean var20 = var8.getVerifyInputWhenFocusTarget(); + javax.accessibility.AccessibleContext var21 = var8.getAccessibleContext(); + boolean var22 = var8.isDoubleBuffered(); + java.awt.Rectangle var23 = var8.getVisibleRect(); + var0.setBounds(var23); + SpaceWar.SpacePanel var25 = new SpaceWar.SpacePanel(); + float var26 = var25.getAlignmentX(); + var25.firePropertyChange("", (-1), 1); + java.awt.Rectangle var31 = var25.getVisibleRect(); + java.awt.Rectangle var32 = var0.getBounds(var31); + var0.show(false); + java.awt.Dimension var35 = var0.getMaximumSize(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var21); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var22 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var23); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var31); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var32); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var35); + + } + + public void test390() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test390"); + + + SpaceWar.Bullet var3 = new SpaceWar.Bullet(10.0d, 1, 499); + + } + + public void test391() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test391"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.setInheritsPopupMenu(false); + var0.move(10, 10); + var0.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var0.removeAll(); + var0.setOpaque(false); + java.awt.event.HierarchyBoundsListener[] var16 = var0.getHierarchyBoundsListeners(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + } + + public void test392() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test392"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + var0.list(); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + float var7 = var6.getAlignmentX(); + var6.setVisible(false); + boolean var10 = var6.isDoubleBuffered(); + java.awt.dnd.DropTarget var11 = var6.getDropTarget(); + var6.show(false); + java.awt.Rectangle var14 = var6.getVisibleRect(); + java.awt.Rectangle var15 = var0.getBounds(var14); + javax.swing.JToolTip var16 = var0.createToolTip(); + var0.firePropertyChange("", false, false); + java.lang.String var21 = var0.getUIClassID(); + SpaceWar.SpacePanel var22 = new SpaceWar.SpacePanel(); + float var23 = var22.getAlignmentX(); + var22.firePropertyChange("", (-1), 1); + boolean var28 = var22.isFocusOwner(); + SpaceWar.SpacePanel var30 = new SpaceWar.SpacePanel(); + float var31 = var30.getAlignmentX(); + var30.setVisible(false); + java.awt.Dimension var34 = var30.getPreferredSize(); + java.awt.Toolkit var35 = var30.getToolkit(); + SpaceWar.SpacePanel var36 = new SpaceWar.SpacePanel(); + var36.setName(""); + int var39 = var36.getX(); + SpaceWar.SpacePanel var40 = new SpaceWar.SpacePanel(); + float var41 = var40.getAlignmentX(); + var40.setVisible(false); + var40.nextFocus(); + SpaceWar.SpacePanel var45 = new SpaceWar.SpacePanel(); + float var46 = var45.getAlignmentX(); + var45.setVisible(false); + SpaceWar.SpacePanel var49 = new SpaceWar.SpacePanel(); + java.awt.Color var50 = var49.getBackground(); + var45.setForeground(var50); + var40.setBackground(var50); + var36.setBackground(var50); + var30.setForeground(var50); + var22.putClientProperty((java.lang.Object)(byte)100, (java.lang.Object)var50); + boolean var56 = var22.isEnabled(); + var22.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", (-1), 1); + int var61 = var0.getComponentZOrder((java.awt.Component)var22); + var0.show(); + java.awt.Point var63 = var0.getLocation(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var21 + "' != '" + "PanelUI"+ "'", var21.equals("PanelUI")); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var28 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var31 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var34); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var35); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var39 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var41 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var46 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var50); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var56 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var61 == (-1)); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var63); + + } + + public void test393() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test393"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + var0.list(); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + float var7 = var6.getAlignmentX(); + var6.setVisible(false); + boolean var10 = var6.isDoubleBuffered(); + java.awt.dnd.DropTarget var11 = var6.getDropTarget(); + var6.show(false); + java.awt.Rectangle var14 = var6.getVisibleRect(); + java.awt.image.BufferedImage var16 = var6.loadImg("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + boolean var17 = var0.isAncestorOf((java.awt.Component)var6); + javax.swing.InputVerifier var18 = var6.getInputVerifier(); + java.awt.ComponentOrientation var19 = var6.getComponentOrientation(); + var6.removeAll(); + java.awt.Insets var21 = var6.getInsets(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var21); + + } + + public void test394() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test394"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + var0.setRequestFocusEnabled(false); + var0.setIgnoreRepaint(false); + var0.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", (byte)0, (byte)10); + // The following exception was thrown during execution. + // This behavior will recorded for regression testing. + try { + var0.remove(25); + fail("Expected exception of type java.lang.ArrayIndexOutOfBoundsException"); + } catch (java.lang.ArrayIndexOutOfBoundsException e) { + // Expected exception. + } + + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + } + + public void test395() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test395"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + boolean var6 = var0.isFocusOwner(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + java.awt.Dimension var12 = var8.getPreferredSize(); + java.awt.Toolkit var13 = var8.getToolkit(); + SpaceWar.SpacePanel var14 = new SpaceWar.SpacePanel(); + var14.setName(""); + int var17 = var14.getX(); + SpaceWar.SpacePanel var18 = new SpaceWar.SpacePanel(); + float var19 = var18.getAlignmentX(); + var18.setVisible(false); + var18.nextFocus(); + SpaceWar.SpacePanel var23 = new SpaceWar.SpacePanel(); + float var24 = var23.getAlignmentX(); + var23.setVisible(false); + SpaceWar.SpacePanel var27 = new SpaceWar.SpacePanel(); + java.awt.Color var28 = var27.getBackground(); + var23.setForeground(var28); + var18.setBackground(var28); + var14.setBackground(var28); + var8.setForeground(var28); + var0.putClientProperty((java.lang.Object)(byte)100, (java.lang.Object)var28); + boolean var34 = var0.isEnabled(); + var0.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", (-1), 1); + boolean var39 = var0.requestDefaultFocus(); + // The following exception was thrown during execution. + // This behavior will recorded for regression testing. + try { + java.util.Set var41 = var0.getFocusTraversalKeys(10); + fail("Expected exception of type java.lang.IllegalArgumentException"); + } catch (java.lang.IllegalArgumentException e) { + // Expected exception. + } + + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var24 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var28); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var34 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var39 == false); + + } + + public void test396() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test396"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + var0.setRequestFocusEnabled(false); + var0.reshape(100, 0, 100, 0); + var0.requestFocus(); + var0.firePropertyChange("hi!", '4', ' '); + java.awt.Point var15 = var0.getLocation(); + java.awt.event.MouseWheelListener[] var16 = var0.getMouseWheelListeners(); + java.awt.Component var17 = var0.getNextFocusableComponent(); + boolean var18 = var0.requestDefaultFocus(); + java.lang.String var19 = var0.getName(); + SpaceWar.SpacePanel var20 = new SpaceWar.SpacePanel(); + var20.setName(""); + int var23 = var20.getX(); + SpaceWar.SpacePanel var24 = new SpaceWar.SpacePanel(); + float var25 = var24.getAlignmentX(); + var24.setVisible(false); + var24.nextFocus(); + SpaceWar.SpacePanel var29 = new SpaceWar.SpacePanel(); + float var30 = var29.getAlignmentX(); + var29.setVisible(false); + SpaceWar.SpacePanel var33 = new SpaceWar.SpacePanel(); + java.awt.Color var34 = var33.getBackground(); + var29.setForeground(var34); + var24.setBackground(var34); + var20.setBackground(var34); + boolean var38 = var20.isFocusTraversable(); + SpaceWar.SpacePanel var39 = new SpaceWar.SpacePanel(); + var39.setName(""); + int var42 = var39.getX(); + SpaceWar.SpacePanel var43 = new SpaceWar.SpacePanel(); + float var44 = var43.getAlignmentX(); + var43.setVisible(false); + var43.nextFocus(); + SpaceWar.SpacePanel var48 = new SpaceWar.SpacePanel(); + float var49 = var48.getAlignmentX(); + var48.setVisible(false); + SpaceWar.SpacePanel var52 = new SpaceWar.SpacePanel(); + java.awt.Color var53 = var52.getBackground(); + var48.setForeground(var53); + var43.setBackground(var53); + var39.setBackground(var53); + var20.setBackground(var53); + SpaceWar.SpacePanel var58 = new SpaceWar.SpacePanel(); + float var59 = var58.getAlignmentX(); + var58.setVisible(false); + var58.nextFocus(); + var58.updateUI(); + var58.enableInputMethods(true); + java.awt.Point var67 = var58.getMousePosition(false); + SpaceWar.SpacePanel var68 = new SpaceWar.SpacePanel(); + float var69 = var68.getAlignmentX(); + var68.setVisible(false); + boolean var72 = var68.isDoubleBuffered(); + var68.list(); + SpaceWar.SpacePanel var74 = new SpaceWar.SpacePanel(); + float var75 = var74.getAlignmentX(); + var74.setVisible(false); + boolean var78 = var74.isDoubleBuffered(); + java.awt.dnd.DropTarget var79 = var74.getDropTarget(); + var74.show(false); + java.awt.Rectangle var82 = var74.getVisibleRect(); + java.awt.Rectangle var83 = var68.getBounds(var82); + var58.scrollRectToVisible(var82); + var20.paintImmediately(var82); + var0.paintImmediately(var82); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var30 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var34); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var38 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var42 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var44 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var49 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var53); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var59 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNull(var67); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var69 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var72 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var75 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var78 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var79); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var82); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var83); + + } + + public void test397() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test397"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.reshape((-1), 1, (-1), 10); + SpaceWar.SpacePanel var10 = new SpaceWar.SpacePanel(); + java.awt.Color var11 = var10.getBackground(); + var10.repaint(); + var10.setRequestFocusEnabled(false); + var10.reshape(100, 0, 100, 0); + java.awt.Component var20 = var0.add((java.awt.Component)var10); + boolean var21 = var10.isCursorSet(); + boolean var22 = var10.isShowing(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var22 == false); + + } + + public void test398() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test398"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + var0.list(); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + float var7 = var6.getAlignmentX(); + var6.setVisible(false); + boolean var10 = var6.isDoubleBuffered(); + java.awt.dnd.DropTarget var11 = var6.getDropTarget(); + var6.show(false); + java.awt.Rectangle var14 = var6.getVisibleRect(); + java.awt.Rectangle var15 = var0.getBounds(var14); + javax.swing.JToolTip var16 = var0.createToolTip(); + java.awt.Dimension var17 = var0.minimumSize(); + SpaceWar.SpacePanel var18 = new SpaceWar.SpacePanel(); + float var19 = var18.getAlignmentX(); + var18.setVisible(false); + var18.setInheritsPopupMenu(false); + var18.setFocusTraversalPolicyProvider(true); + java.awt.Container var26 = var18.getFocusCycleRootAncestor(); + SpaceWar.SpacePanel var27 = new SpaceWar.SpacePanel(); + float var28 = var27.getAlignmentX(); + var27.removeNotify(); + SpaceWar.SpacePanel var30 = new SpaceWar.SpacePanel(); + float var31 = var30.getAlignmentX(); + var30.setVisible(false); + boolean var34 = var30.isDoubleBuffered(); + var30.list(); + float var36 = var30.getAlignmentY(); + java.awt.Insets var37 = var30.getInsets(); + java.awt.Insets var38 = var27.getInsets(var37); + java.awt.Insets var39 = var18.getInsets(var38); + java.awt.Insets var40 = var0.getInsets(var38); + java.awt.image.VolatileImage var43 = var0.createVolatileImage(3, 0); + java.awt.image.BufferedImage var45 = var0.loadImg("SpaceWar.SpacePanel[,0,0,0x0,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var28 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var31 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var34 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var36 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var37); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var38); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var39); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var40); + + // Regression assertion (captures the current behavior of the code) + assertNull(var43); + + // Regression assertion (captures the current behavior of the code) + assertNull(var45); + + } + + public void test399() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test399"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + java.awt.im.InputMethodRequests var3 = var0.getInputMethodRequests(); + int var4 = var0.countComponents(); + java.awt.event.ComponentListener[] var5 = var0.getComponentListeners(); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + float var7 = var6.getAlignmentX(); + var6.removeNotify(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.setVisible(false); + boolean var13 = var9.isDoubleBuffered(); + var9.list(); + float var15 = var9.getAlignmentY(); + java.awt.Insets var16 = var9.getInsets(); + java.awt.Insets var17 = var6.getInsets(var16); + java.awt.Insets var18 = var0.getInsets(var17); + javax.swing.JPopupMenu var19 = var0.getComponentPopupMenu(); + java.awt.image.BufferedImage var21 = var0.loadImg("PanelUI"); + var0.setVerifyInputWhenFocusTarget(false); + SpaceWar.SpacePanel var24 = new SpaceWar.SpacePanel(); + java.awt.Color var25 = var24.getBackground(); + boolean var28 = var24.inside(0, (-1)); + SpaceWar.SpacePanel var30 = new SpaceWar.SpacePanel(); + float var31 = var30.getAlignmentX(); + var30.setVisible(false); + var30.nextFocus(); + var30.reshape((-1), 1, (-1), 10); + var30.disable(); + boolean var41 = var30.isFocusable(); + SpaceWar.SpacePanel var42 = new SpaceWar.SpacePanel(); + float var43 = var42.getAlignmentX(); + var42.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var48 = var42.getUI(); + java.awt.im.InputMethodRequests var49 = var42.getInputMethodRequests(); + SpaceWar.SpacePanel var50 = new SpaceWar.SpacePanel(); + float var51 = var50.getAlignmentX(); + var50.setVisible(false); + var50.nextFocus(); + var50.updateUI(); + var50.enableInputMethods(true); + var50.setSize((-1), 1); + SpaceWar.SpacePanel var61 = new SpaceWar.SpacePanel(); + var61.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var42.add((java.awt.Component)var50, (java.lang.Object)"SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + java.awt.event.KeyListener[] var67 = var42.getKeyListeners(); + java.awt.FocusTraversalPolicy var68 = var42.getFocusTraversalPolicy(); + SpaceWar.SpacePanel var69 = new SpaceWar.SpacePanel(); + var69.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + java.awt.Toolkit var74 = var69.getToolkit(); + var30.add((java.awt.Component)var42, (java.lang.Object)var69); + var30.layout(); + java.awt.Component var77 = var24.add("", (java.awt.Component)var30); + java.lang.Object var78 = var0.getClientProperty((java.lang.Object)var77); + var77.move(0, 0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertNull(var21); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var25); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var28 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var31 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var41 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var43 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var48); + + // Regression assertion (captures the current behavior of the code) + assertNull(var49); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var51 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var67); + + // Regression assertion (captures the current behavior of the code) + assertNull(var68); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var74); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var77); + + // Regression assertion (captures the current behavior of the code) + assertNull(var78); + + } + + public void test400() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test400"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + var0.setName(""); + java.awt.Graphics var3 = var0.getGraphics(); + SpaceWar.SpacePanel var4 = new SpaceWar.SpacePanel(); + float var5 = var4.getAlignmentX(); + var4.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var10 = new SpaceWar.SpacePanel(); + float var11 = var10.getAlignmentX(); + var10.setVisible(false); + java.awt.Dimension var14 = var10.getPreferredSize(); + var4.setMaximumSize(var14); + boolean var16 = var4.getVerifyInputWhenFocusTarget(); + int var17 = var4.getX(); + SpaceWar.SpacePanel var18 = new SpaceWar.SpacePanel(); + float var19 = var18.getAlignmentX(); + SpaceWar.SpacePanel var20 = new SpaceWar.SpacePanel(); + float var21 = var20.getAlignmentX(); + var20.setVisible(false); + java.awt.Dimension var24 = var20.getPreferredSize(); + boolean var25 = var20.getVerifyInputWhenFocusTarget(); + java.awt.Component var28 = var20.findComponentAt(10, 1); + var18.addKeyListener((java.awt.event.KeyListener)var20); + var20.repaint(100, (-1), (-1), 1); + SpaceWar.SpacePanel var35 = new SpaceWar.SpacePanel(); + java.awt.Color var36 = var35.getBackground(); + var35.repaint(); + java.awt.im.InputMethodRequests var38 = var35.getInputMethodRequests(); + java.awt.GraphicsConfiguration var39 = var35.getGraphicsConfiguration(); + var20.remove((java.awt.Component)var35); + java.awt.Font var41 = var35.getFont(); + var4.setFont(var41); + var0.setFont(var41); + SpaceWar.SpacePanel var44 = new SpaceWar.SpacePanel(); + float var45 = var44.getAlignmentX(); + var44.setVisible(false); + boolean var48 = var44.isDoubleBuffered(); + java.awt.dnd.DropTarget var49 = var44.getDropTarget(); + boolean var50 = var44.isFocusCycleRoot(); + var44.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", 100, 0); + SpaceWar.SpacePanel var55 = new SpaceWar.SpacePanel(); + java.awt.Color var56 = var55.getBackground(); + var55.repaint(); + var55.setRequestFocusEnabled(false); + var55.reshape(100, 0, 100, 0); + javax.swing.event.AncestorListener[] var65 = var55.getAncestorListeners(); + var55.grabFocus(); + boolean var67 = var44.isFocusCycleRoot((java.awt.Container)var55); + SpaceWar.SpacePanel var68 = new SpaceWar.SpacePanel(); + float var69 = var68.getAlignmentX(); + var68.setVisible(false); + var68.nextFocus(); + SpaceWar.SpacePanel var73 = new SpaceWar.SpacePanel(); + float var74 = var73.getAlignmentX(); + var73.setVisible(false); + SpaceWar.SpacePanel var77 = new SpaceWar.SpacePanel(); + java.awt.Color var78 = var77.getBackground(); + var73.setForeground(var78); + var68.setBackground(var78); + java.awt.Component var81 = var68.getNextFocusableComponent(); + float var82 = var68.getAlignmentY(); + java.awt.event.MouseListener[] var83 = var68.getMouseListeners(); + java.awt.Point var84 = var68.location(); + var55.setLocation(var84); + boolean var86 = var0.contains(var84); + + // Regression assertion (captures the current behavior of the code) + assertNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var28); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var36); + + // Regression assertion (captures the current behavior of the code) + assertNull(var38); + + // Regression assertion (captures the current behavior of the code) + assertNull(var39); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var41); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var45 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var48 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var49); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var50 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var56); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var65); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var67 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var69 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var74 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var78); + + // Regression assertion (captures the current behavior of the code) + assertNull(var81); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var82 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var83); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var84); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var86 == false); + + } + + public void test401() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test401"); + + + SpaceWar.Player var0 = new SpaceWar.Player(); + var0.increasePower(25); + int var3 = var0.getR(); + var0.setRigth(true); + boolean var6 = var0.isDead(); + boolean var7 = var0.isDead(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == 25); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == false); + + } + + public void test402() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test402"); + + + SpaceWar.Enemy var2 = new SpaceWar.Enemy(0, 100); + int var3 = var2.getR(); + var2.explode(); + var2.update(); + var2.explode(); + var2.explode(); + int var8 = var2.getType(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 0); + + } + + public void test403() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test403"); + + + SpaceWar.Player var0 = new SpaceWar.Player(); + int var1 = var0.getPower(); + int var2 = var0.getY(); + var0.update(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var2 == 500); + + } + + public void test404() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test404"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + boolean var2 = var0.hasFocus(); + SpaceWar.SpacePanel var3 = new SpaceWar.SpacePanel(); + float var4 = var3.getAlignmentX(); + var3.setVisible(false); + var3.nextFocus(); + var3.reshape((-1), 1, (-1), 10); + var3.disable(); + java.awt.LayoutManager var14 = var3.getLayout(); + var3.setVisible(false); + var0.remove((java.awt.Component)var3); + java.beans.VetoableChangeListener[] var18 = var0.getVetoableChangeListeners(); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + float var20 = var19.getAlignmentX(); + var19.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var25 = var19.getUI(); + java.awt.im.InputMethodRequests var26 = var19.getInputMethodRequests(); + SpaceWar.SpacePanel var27 = new SpaceWar.SpacePanel(); + float var28 = var27.getAlignmentX(); + var27.setVisible(false); + var27.nextFocus(); + var27.updateUI(); + var27.enableInputMethods(true); + var27.setSize((-1), 1); + SpaceWar.SpacePanel var38 = new SpaceWar.SpacePanel(); + var38.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var19.add((java.awt.Component)var27, (java.lang.Object)"SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + SpaceWar.SpacePanel var44 = new SpaceWar.SpacePanel(); + float var45 = var44.getAlignmentX(); + var44.setVisible(false); + var44.setInheritsPopupMenu(false); + boolean var50 = var44.isDoubleBuffered(); + boolean var51 = var44.isMinimumSizeSet(); + SpaceWar.SpacePanel var52 = new SpaceWar.SpacePanel(); + float var53 = var52.getAlignmentX(); + var52.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var58 = new SpaceWar.SpacePanel(); + float var59 = var58.getAlignmentX(); + var58.setVisible(false); + java.awt.Dimension var62 = var58.getPreferredSize(); + var52.setMaximumSize(var62); + boolean var64 = var52.getVerifyInputWhenFocusTarget(); + javax.accessibility.AccessibleContext var65 = var52.getAccessibleContext(); + boolean var66 = var52.isDoubleBuffered(); + java.awt.Rectangle var67 = var52.getVisibleRect(); + var44.setBounds(var67); + java.awt.Rectangle var69 = var19.getBounds(var67); + var0.repaint(var69); + java.util.Locale var71 = var0.getLocale(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var2 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var25); + + // Regression assertion (captures the current behavior of the code) + assertNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var28 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var45 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var50 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var51 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var53 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var59 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var62); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var64 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var65); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var66 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var67); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var69); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var71); + + } + + public void test405() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test405"); + + + SpaceWar.Enemy var2 = new SpaceWar.Enemy(25, (-1)); + var2.update(); + var2.hit(); + var2.hit(); + + } + + public void test406() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test406"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + var0.setRequestFocusEnabled(false); + var0.reshape(100, 0, 100, 0); + var0.requestFocus(); + java.awt.Rectangle var11 = var0.getVisibleRect(); + java.awt.Rectangle var12 = var0.getBounds(); + java.awt.im.InputMethodRequests var13 = var0.getInputMethodRequests(); + boolean var14 = var0.requestFocusInWindow(); + java.awt.Rectangle var15 = var0.bounds(); + boolean var16 = var0.isFocusCycleRoot(); + java.awt.Point var17 = var0.getMousePosition(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + } + + public void test407() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test407"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var1 = new SpaceWar.SpacePanel(); + java.awt.Color var2 = var1.getBackground(); + SpaceWar.SpacePanel var3 = new SpaceWar.SpacePanel(); + float var4 = var3.getAlignmentX(); + var3.setVisible(false); + var3.nextFocus(); + var3.updateUI(); + var3.enableInputMethods(true); + var0.add((java.awt.Component)var1, (java.lang.Object)true); + java.awt.Dimension var12 = var1.getPreferredSize(); + var1.move(100, 10); + java.awt.Dimension var16 = var1.preferredSize(); + java.awt.Toolkit var17 = var1.getToolkit(); + var1.setLocation(1, 2); + var1.grabFocus(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var2); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var17); + + } + + public void test408() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test408"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.reshape((-1), 1, (-1), 10); + SpaceWar.SpacePanel var10 = new SpaceWar.SpacePanel(); + java.awt.Color var11 = var10.getBackground(); + var10.repaint(); + var10.setRequestFocusEnabled(false); + var10.reshape(100, 0, 100, 0); + java.awt.Component var20 = var0.add((java.awt.Component)var10); + boolean var21 = var10.isEnabled(); + var10.requestFocus(); + boolean var23 = var10.isMinimumSizeSet(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == false); + + } + + public void test409() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test409"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + boolean var2 = var0.hasFocus(); + boolean var3 = var0.isDisplayable(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var2 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == false); + + } + + public void test410() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test410"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + SpaceWar.SpacePanel var2 = new SpaceWar.SpacePanel(); + float var3 = var2.getAlignmentX(); + var2.setVisible(false); + java.awt.Dimension var6 = var2.getPreferredSize(); + boolean var7 = var2.getVerifyInputWhenFocusTarget(); + java.awt.Component var10 = var2.findComponentAt(10, 1); + var0.addKeyListener((java.awt.event.KeyListener)var2); + java.lang.Object var12 = var2.getTreeLock(); + // The following exception was thrown during execution. + // This behavior will recorded for regression testing. + try { + var2.remove(499); + fail("Expected exception of type java.lang.ArrayIndexOutOfBoundsException"); + } catch (java.lang.ArrayIndexOutOfBoundsException e) { + // Expected exception. + } + + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var12); + + } + + public void test411() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test411"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + java.awt.Dimension var4 = var0.getPreferredSize(); + boolean var5 = var0.getVerifyInputWhenFocusTarget(); + java.awt.Component var8 = var0.findComponentAt(10, 1); + boolean var9 = var0.requestDefaultFocus(); + java.awt.image.VolatileImage var12 = var0.createVolatileImage(0, 3); + var0.resize(25, 25); + SpaceWar.SpacePanel var16 = new SpaceWar.SpacePanel(); + float var17 = var16.getAlignmentX(); + var16.setVisible(false); + java.awt.Dimension var20 = var16.getPreferredSize(); + boolean var21 = var16.getVerifyInputWhenFocusTarget(); + java.awt.Component var24 = var16.findComponentAt(10, 1); + boolean var25 = var16.isCursorSet(); + SpaceWar.SpacePanel var26 = new SpaceWar.SpacePanel(); + float var27 = var26.getAlignmentX(); + var26.setVisible(false); + var26.nextFocus(); + var26.updateUI(); + var26.enableInputMethods(true); + java.awt.Point var34 = var26.location(); + SpaceWar.SpacePanel var35 = new SpaceWar.SpacePanel(); + float var36 = var35.getAlignmentX(); + var35.setVisible(false); + var35.nextFocus(); + var35.reshape((-1), 1, (-1), 10); + SpaceWar.SpacePanel var45 = new SpaceWar.SpacePanel(); + java.awt.Color var46 = var45.getBackground(); + var45.repaint(); + var45.setRequestFocusEnabled(false); + var45.reshape(100, 0, 100, 0); + java.awt.Component var55 = var35.add((java.awt.Component)var45); + SpaceWar.SpacePanel var56 = new SpaceWar.SpacePanel(); + var56.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + javax.swing.plaf.PanelUI var61 = var56.getUI(); + SpaceWar.SpacePanel var62 = new SpaceWar.SpacePanel(); + float var63 = var62.getAlignmentX(); + var62.setVisible(false); + var62.nextFocus(); + var62.repaint(1L); + SpaceWar.SpacePanel var69 = new SpaceWar.SpacePanel(); + float var70 = var69.getAlignmentX(); + var69.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var75 = new SpaceWar.SpacePanel(); + float var76 = var75.getAlignmentX(); + var75.setVisible(false); + java.awt.Dimension var79 = var75.getPreferredSize(); + var69.setMaximumSize(var79); + var62.setPreferredSize(var79); + var56.setMaximumSize(var79); + java.awt.Dimension var83 = var45.getSize(var79); + var26.setMaximumSize(var79); + var16.setMinimumSize(var79); + var0.setMaximumSize(var79); + var0.show(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var4); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var34); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var36 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var46); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var55); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var61); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var63 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var70 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var76 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var79); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var83); + + } + + public void test412() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test412"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.setInheritsPopupMenu(false); + var0.setFocusTraversalPolicyProvider(true); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + boolean var12 = var8.isDoubleBuffered(); + var8.list(); + SpaceWar.SpacePanel var14 = new SpaceWar.SpacePanel(); + float var15 = var14.getAlignmentX(); + var14.setVisible(false); + boolean var18 = var14.isDoubleBuffered(); + java.awt.dnd.DropTarget var19 = var14.getDropTarget(); + var14.show(false); + java.awt.Rectangle var22 = var14.getVisibleRect(); + java.awt.Rectangle var23 = var8.getBounds(var22); + javax.swing.JToolTip var24 = var8.createToolTip(); + var0.removeKeyListener((java.awt.event.KeyListener)var8); + var0.setFocusTraversalKeysEnabled(true); + javax.swing.KeyStroke[] var28 = var0.getRegisteredKeyStrokes(); + SpaceWar.SpacePanel var29 = new SpaceWar.SpacePanel(); + float var30 = var29.getAlignmentX(); + var29.setVisible(false); + java.awt.Dimension var33 = var29.getPreferredSize(); + java.awt.Toolkit var34 = var29.getToolkit(); + boolean var35 = var29.isFocusable(); + javax.swing.KeyStroke[] var36 = var29.getRegisteredKeyStrokes(); + java.awt.Component var39 = var29.getComponentAt(100, 100); + java.lang.Object var40 = var29.getTreeLock(); + boolean var43 = var29.inside(400, 0); + java.awt.event.MouseWheelListener[] var44 = var29.getMouseWheelListeners(); + var29.enableInputMethods(true); + boolean var47 = var0.isAncestorOf((java.awt.Component)var29); + var29.invalidate(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var23); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var28); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var30 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var33); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var34); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var35 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var36); + + // Regression assertion (captures the current behavior of the code) + assertNull(var39); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var40); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var43 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var44); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var47 == false); + + } + + public void test413() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test413"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + boolean var6 = var0.isFocusCycleRoot(); + var0.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", 100, 0); + SpaceWar.SpacePanel var11 = new SpaceWar.SpacePanel(); + float var12 = var11.getAlignmentX(); + var11.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var17 = var11.getUI(); + var0.setNextFocusableComponent((java.awt.Component)var11); + java.awt.Component var21 = var0.locate(500, 3); + var0.setVisible(true); + javax.swing.TransferHandler var24 = var0.getTransferHandler(); + java.awt.image.VolatileImage var27 = var0.createVolatileImage(0, 24); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertNull(var21); + + // Regression assertion (captures the current behavior of the code) + assertNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertNull(var27); + + } + + public void test414() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test414"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.setInheritsPopupMenu(false); + var0.move(10, 10); + var0.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var0.removeAll(); + javax.accessibility.AccessibleContext var14 = var0.getAccessibleContext(); + javax.swing.InputVerifier var15 = var0.getInputVerifier(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertNull(var15); + + } + + public void test415() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test415"); + + + SpaceWar.Enemy var2 = new SpaceWar.Enemy((-1), 10); + int var3 = var2.getRank(); + java.awt.image.BufferedImage var5 = var2.loadImg("SpaceWar.SpacePanel[,-1,1,-1x10,invalid,hidden,disabled,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + var2.explode(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == 10); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + } + + public void test416() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test416"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var6 = var0.getMouseListeners(); + int var7 = var0.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var8 = var0.getInputMethodRequests(); + var0.removeNotify(); + var0.enable(); + SpaceWar.SpacePanel var11 = new SpaceWar.SpacePanel(); + java.awt.Color var12 = var11.getBackground(); + boolean var15 = var11.inside(0, (-1)); + var11.transferFocusUpCycle(); + java.lang.String var17 = var11.getName(); + boolean var18 = var0.isFocusCycleRoot((java.awt.Container)var11); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + java.awt.Color var20 = var19.getBackground(); + var19.repaint(); + var19.setRequestFocusEnabled(false); + var19.reshape(100, 0, 100, 0); + var19.requestFocus(); + var19.firePropertyChange("hi!", '4', ' '); + java.awt.Point var34 = var19.getLocation(); + java.awt.Component var35 = var11.getComponentAt(var34); + java.beans.VetoableChangeListener[] var36 = var11.getVetoableChangeListeners(); + var11.removeAll(); + java.awt.Component[] var38 = var11.getComponents(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var34); + + // Regression assertion (captures the current behavior of the code) + assertNull(var35); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var36); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var38); + + } + + public void test417() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test417"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + SpaceWar.SpacePanel var4 = new SpaceWar.SpacePanel(); + java.awt.Color var5 = var4.getBackground(); + var0.setForeground(var5); + SpaceWar.SpacePanel var7 = new SpaceWar.SpacePanel(); + float var8 = var7.getAlignmentX(); + var7.setVisible(false); + boolean var11 = var7.isDoubleBuffered(); + java.awt.dnd.DropTarget var12 = var7.getDropTarget(); + var7.show(false); + java.awt.Rectangle var15 = var7.getVisibleRect(); + var0.repaint(var15); + java.awt.FocusTraversalPolicy var17 = var0.getFocusTraversalPolicy(); + var0.resetKeyboardActions(); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + float var20 = var19.getAlignmentX(); + var19.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var25 = var19.getMouseListeners(); + int var26 = var19.getDebugGraphicsOptions(); + SpaceWar.SpacePanel var27 = new SpaceWar.SpacePanel(); + float var28 = var27.getAlignmentX(); + var27.setVisible(false); + boolean var31 = var27.isDoubleBuffered(); + java.awt.dnd.DropTarget var32 = var27.getDropTarget(); + var27.show(false); + java.awt.Rectangle var35 = var27.getVisibleRect(); + var19.paintImmediately(var35); + var0.setBounds(var35); + boolean var38 = var0.getVerifyInputWhenFocusTarget(); + SpaceWar.SpacePanel var39 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var40 = new SpaceWar.SpacePanel(); + java.awt.Color var41 = var40.getBackground(); + SpaceWar.SpacePanel var42 = new SpaceWar.SpacePanel(); + float var43 = var42.getAlignmentX(); + var42.setVisible(false); + var42.nextFocus(); + var42.updateUI(); + var42.enableInputMethods(true); + var39.add((java.awt.Component)var40, (java.lang.Object)true); + boolean var51 = var39.isMinimumSizeSet(); + java.awt.event.HierarchyListener[] var52 = var39.getHierarchyListeners(); + SpaceWar.SpacePanel var53 = new SpaceWar.SpacePanel(); + float var54 = var53.getAlignmentX(); + var53.setVisible(false); + SpaceWar.SpacePanel var57 = new SpaceWar.SpacePanel(); + java.awt.Color var58 = var57.getBackground(); + var53.setForeground(var58); + SpaceWar.SpacePanel var60 = new SpaceWar.SpacePanel(); + float var61 = var60.getAlignmentX(); + var60.setVisible(false); + boolean var64 = var60.isDoubleBuffered(); + java.awt.dnd.DropTarget var65 = var60.getDropTarget(); + var60.show(false); + java.awt.Rectangle var68 = var60.getVisibleRect(); + var53.repaint(var68); + java.awt.FocusTraversalPolicy var70 = var53.getFocusTraversalPolicy(); + java.awt.im.InputMethodRequests var71 = var53.getInputMethodRequests(); + var53.layout(); + boolean var73 = var53.isFocusTraversalPolicyProvider(); + java.lang.Object var74 = var39.getClientProperty((java.lang.Object)var73); + java.awt.Dimension var75 = var39.getSize(); + boolean var76 = var39.isFocusTraversable(); + var39.show(false); + SpaceWar.SpacePanel var79 = new SpaceWar.SpacePanel(); + float var80 = var79.getAlignmentX(); + var79.setVisible(false); + var79.setInheritsPopupMenu(false); + boolean var85 = var79.isDoubleBuffered(); + java.awt.Rectangle var86 = var79.getBounds(); + var39.scrollRectToVisible(var86); + var0.scrollRectToVisible(var86); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var25); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var28 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var31 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var32); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var35); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var38 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var41); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var43 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var51 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var52); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var54 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var58); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var61 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var64 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var65); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var68); + + // Regression assertion (captures the current behavior of the code) + assertNull(var70); + + // Regression assertion (captures the current behavior of the code) + assertNull(var71); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var73 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var74); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var75); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var76 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var80 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var85 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var86); + + } + + public void test418() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test418"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + java.awt.im.InputMethodRequests var3 = var0.getInputMethodRequests(); + var0.setDoubleBuffered(true); + var0.show(false); + var0.setAlignmentY(100.0f); + SpaceWar.SpacePanel var10 = new SpaceWar.SpacePanel(); + float var11 = var10.getAlignmentX(); + var10.setVisible(false); + SpaceWar.SpacePanel var14 = new SpaceWar.SpacePanel(); + java.awt.Color var15 = var14.getBackground(); + var10.setForeground(var15); + SpaceWar.SpacePanel var17 = new SpaceWar.SpacePanel(); + float var18 = var17.getAlignmentX(); + var17.setVisible(false); + boolean var21 = var17.isDoubleBuffered(); + java.awt.dnd.DropTarget var22 = var17.getDropTarget(); + var17.show(false); + java.awt.Rectangle var25 = var17.getVisibleRect(); + var10.repaint(var25); + java.awt.FocusTraversalPolicy var27 = var10.getFocusTraversalPolicy(); + java.awt.im.InputMethodRequests var28 = var10.getInputMethodRequests(); + var10.layout(); + boolean var30 = var10.isFocusTraversalPolicyProvider(); + java.awt.Insets var31 = var10.insets(); + java.awt.Dimension var32 = var10.getMinimumSize(); + java.awt.Dimension var33 = var0.getSize(var32); + SpaceWar.SpacePanel var34 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var35 = new SpaceWar.SpacePanel(); + java.awt.Color var36 = var35.getBackground(); + SpaceWar.SpacePanel var37 = new SpaceWar.SpacePanel(); + float var38 = var37.getAlignmentX(); + var37.setVisible(false); + var37.nextFocus(); + var37.updateUI(); + var37.enableInputMethods(true); + var34.add((java.awt.Component)var35, (java.lang.Object)true); + boolean var47 = var35.areFocusTraversalKeysSet(0); + SpaceWar.SpacePanel var48 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var49 = new SpaceWar.SpacePanel(); + java.awt.Color var50 = var49.getBackground(); + SpaceWar.SpacePanel var51 = new SpaceWar.SpacePanel(); + float var52 = var51.getAlignmentX(); + var51.setVisible(false); + var51.nextFocus(); + var51.updateUI(); + var51.enableInputMethods(true); + var48.add((java.awt.Component)var49, (java.lang.Object)true); + boolean var60 = var48.isMinimumSizeSet(); + java.awt.event.HierarchyListener[] var61 = var48.getHierarchyListeners(); + SpaceWar.SpacePanel var62 = new SpaceWar.SpacePanel(); + float var63 = var62.getAlignmentX(); + var62.setVisible(false); + SpaceWar.SpacePanel var66 = new SpaceWar.SpacePanel(); + java.awt.Color var67 = var66.getBackground(); + var62.setForeground(var67); + SpaceWar.SpacePanel var69 = new SpaceWar.SpacePanel(); + float var70 = var69.getAlignmentX(); + var69.setVisible(false); + boolean var73 = var69.isDoubleBuffered(); + java.awt.dnd.DropTarget var74 = var69.getDropTarget(); + var69.show(false); + java.awt.Rectangle var77 = var69.getVisibleRect(); + var62.repaint(var77); + java.awt.FocusTraversalPolicy var79 = var62.getFocusTraversalPolicy(); + java.awt.im.InputMethodRequests var80 = var62.getInputMethodRequests(); + var62.layout(); + boolean var82 = var62.isFocusTraversalPolicyProvider(); + java.lang.Object var83 = var48.getClientProperty((java.lang.Object)var82); + boolean var84 = var48.isFocusTraversable(); + var35.remove((java.awt.Component)var48); + SpaceWar.SpacePanel var86 = new SpaceWar.SpacePanel(); + java.awt.Color var87 = var86.getBackground(); + var86.repaint(); + var86.setRequestFocusEnabled(false); + var86.reshape(100, 0, 100, 0); + var86.requestFocus(); + java.awt.Rectangle var97 = var86.getVisibleRect(); + var48.repaint(var97); + var0.scrollRectToVisible(var97); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var25); + + // Regression assertion (captures the current behavior of the code) + assertNull(var27); + + // Regression assertion (captures the current behavior of the code) + assertNull(var28); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var30 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var31); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var32); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var33); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var36); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var38 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var47 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var50); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var52 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var60 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var61); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var63 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var67); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var70 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var73 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var74); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var77); + + // Regression assertion (captures the current behavior of the code) + assertNull(var79); + + // Regression assertion (captures the current behavior of the code) + assertNull(var80); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var82 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var83); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var84 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var87); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var97); + + } + + public void test419() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test419"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + var0.enable(false); + boolean var7 = var0.getFocusTraversalKeysEnabled(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + java.awt.Dimension var12 = var8.getPreferredSize(); + java.awt.Toolkit var13 = var8.getToolkit(); + boolean var14 = var8.isFocusable(); + javax.swing.KeyStroke[] var15 = var8.getRegisteredKeyStrokes(); + SpaceWar.SpacePanel var16 = new SpaceWar.SpacePanel(); + float var17 = var16.getAlignmentX(); + SpaceWar.SpacePanel var18 = new SpaceWar.SpacePanel(); + float var19 = var18.getAlignmentX(); + var18.setVisible(false); + java.awt.Dimension var22 = var18.getPreferredSize(); + boolean var23 = var18.getVerifyInputWhenFocusTarget(); + java.awt.Component var26 = var18.findComponentAt(10, 1); + var16.addKeyListener((java.awt.event.KeyListener)var18); + var18.repaint(100, (-1), (-1), 1); + boolean var33 = var8.isAncestorOf((java.awt.Component)var18); + var0.addKeyListener((java.awt.event.KeyListener)var18); + var18.hide(); + java.awt.event.MouseWheelListener[] var36 = var18.getMouseWheelListeners(); + var18.setBounds(24, 400, (-1), 2); + SpaceWar.SpacePanel var42 = new SpaceWar.SpacePanel(); + float var43 = var42.getAlignmentX(); + var42.setVisible(false); + java.awt.Dimension var46 = var42.getPreferredSize(); + java.awt.Toolkit var47 = var42.getToolkit(); + boolean var48 = var42.isFocusable(); + javax.swing.KeyStroke[] var49 = var42.getRegisteredKeyStrokes(); + var42.setFocusCycleRoot(false); + SpaceWar.SpacePanel var52 = new SpaceWar.SpacePanel(); + float var53 = var52.getAlignmentX(); + var52.setVisible(false); + var52.nextFocus(); + var52.reshape((-1), 1, (-1), 10); + var52.disable(); + boolean var63 = var52.isFocusable(); + int var64 = var52.getHeight(); + javax.swing.InputVerifier var65 = var52.getInputVerifier(); + java.awt.Graphics var66 = var52.getGraphics(); + java.awt.Color var67 = var52.getForeground(); + var42.setBackground(var67); + var18.setForeground(var67); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var33 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var36); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var43 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var46); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var47); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var48 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var49); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var53 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var63 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var64 == 10); + + // Regression assertion (captures the current behavior of the code) + assertNull(var65); + + // Regression assertion (captures the current behavior of the code) + assertNull(var66); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var67); + + } + + public void test420() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test420"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.setInheritsPopupMenu(false); + var0.move(10, 10); + var0.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var0.resetKeyboardActions(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + } + + public void test421() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test421"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + var0.list(); + var0.setAutoscrolls(false); + java.awt.Component.BaselineResizeBehavior var8 = var0.getBaselineResizeBehavior(); + javax.swing.event.AncestorListener[] var9 = var0.getAncestorListeners(); + SpaceWar.SpacePanel var10 = new SpaceWar.SpacePanel(); + float var11 = var10.getAlignmentX(); + var10.setVisible(false); + SpaceWar.SpacePanel var14 = new SpaceWar.SpacePanel(); + java.awt.Color var15 = var14.getBackground(); + var10.setForeground(var15); + SpaceWar.SpacePanel var17 = new SpaceWar.SpacePanel(); + float var18 = var17.getAlignmentX(); + var17.setVisible(false); + boolean var21 = var17.isDoubleBuffered(); + java.awt.dnd.DropTarget var22 = var17.getDropTarget(); + var17.show(false); + java.awt.Rectangle var25 = var17.getVisibleRect(); + var10.repaint(var25); + java.awt.FocusTraversalPolicy var27 = var10.getFocusTraversalPolicy(); + SpaceWar.SpacePanel var28 = new SpaceWar.SpacePanel(); + float var29 = var28.getAlignmentX(); + var28.firePropertyChange("", (-1), 1); + boolean var34 = var28.isFocusOwner(); + SpaceWar.SpacePanel var36 = new SpaceWar.SpacePanel(); + float var37 = var36.getAlignmentX(); + var36.setVisible(false); + java.awt.Dimension var40 = var36.getPreferredSize(); + java.awt.Toolkit var41 = var36.getToolkit(); + SpaceWar.SpacePanel var42 = new SpaceWar.SpacePanel(); + var42.setName(""); + int var45 = var42.getX(); + SpaceWar.SpacePanel var46 = new SpaceWar.SpacePanel(); + float var47 = var46.getAlignmentX(); + var46.setVisible(false); + var46.nextFocus(); + SpaceWar.SpacePanel var51 = new SpaceWar.SpacePanel(); + float var52 = var51.getAlignmentX(); + var51.setVisible(false); + SpaceWar.SpacePanel var55 = new SpaceWar.SpacePanel(); + java.awt.Color var56 = var55.getBackground(); + var51.setForeground(var56); + var46.setBackground(var56); + var42.setBackground(var56); + var36.setForeground(var56); + var28.putClientProperty((java.lang.Object)(byte)100, (java.lang.Object)var56); + var10.setBackground(var56); + SpaceWar.SpacePanel var63 = new SpaceWar.SpacePanel(); + java.awt.Color var64 = var63.getBackground(); + var63.repaint(); + java.awt.im.InputMethodRequests var66 = var63.getInputMethodRequests(); + int var67 = var63.countComponents(); + java.awt.event.ComponentListener[] var68 = var63.getComponentListeners(); + var63.removeNotify(); + var0.add((java.awt.Component)var10, (java.lang.Object)var63); + java.awt.image.BufferedImage var72 = var10.loadImg("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + // The following exception was thrown during execution. + // This behavior will recorded for regression testing. + try { + int var75 = var10.getBaseline(10, (-1)); + fail("Expected exception of type java.lang.IllegalArgumentException"); + } catch (java.lang.IllegalArgumentException e) { + // Expected exception. + } + + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var9); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var25); + + // Regression assertion (captures the current behavior of the code) + assertNull(var27); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var29 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var34 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var40); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var41); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var45 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var47 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var52 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var56); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var64); + + // Regression assertion (captures the current behavior of the code) + assertNull(var66); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var67 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var68); + + // Regression assertion (captures the current behavior of the code) + assertNull(var72); + + } + + public void test422() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test422"); + + + SpaceWar.Enemy var2 = new SpaceWar.Enemy(0, 100); + var2.explode(); + java.awt.image.BufferedImage var5 = var2.loadImg("SpaceWar.SpacePanel[,-1,1,-1x10,invalid,hidden,disabled,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + double var6 = var2.getY(); + var2.hit(); + double var8 = var2.getX(); + int var9 = var2.getType(); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == 0.0d); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 236.64219853193276d); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0); + + } + + public void test423() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test423"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + SpaceWar.SpacePanel var4 = new SpaceWar.SpacePanel(); + java.awt.Color var5 = var4.getBackground(); + var0.setForeground(var5); + SpaceWar.SpacePanel var7 = new SpaceWar.SpacePanel(); + float var8 = var7.getAlignmentX(); + var7.setVisible(false); + boolean var11 = var7.isDoubleBuffered(); + java.awt.dnd.DropTarget var12 = var7.getDropTarget(); + var7.show(false); + java.awt.Rectangle var15 = var7.getVisibleRect(); + var0.repaint(var15); + java.awt.Component.BaselineResizeBehavior var17 = var0.getBaselineResizeBehavior(); + var0.firePropertyChange("SpaceWar.SpacePanel[,-1,1,-1x10,invalid,hidden,disabled,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", 1L, 1L); + boolean var22 = var0.isFocusTraversable(); + var0.setOpaque(false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var22 == true); + + } + + public void test424() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test424"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.setInheritsPopupMenu(false); + boolean var6 = var0.isMinimumSizeSet(); + java.awt.Point var8 = var0.getMousePosition(true); + var0.setFocusTraversalPolicyProvider(false); + var0.doLayout(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var8); + + } + + public void test425() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test425"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + boolean var5 = javax.swing.JComponent.isLightweightComponent((java.awt.Component)var0); + java.awt.event.MouseWheelListener[] var6 = var0.getMouseWheelListeners(); + boolean var7 = var0.isValid(); + java.awt.Component var8 = var0.getNextFocusableComponent(); + boolean var11 = var0.contains(3, (-1)); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == false); + + } + + public void test426() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test426"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + var0.list(); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + float var7 = var6.getAlignmentX(); + var6.setVisible(false); + boolean var10 = var6.isDoubleBuffered(); + java.awt.dnd.DropTarget var11 = var6.getDropTarget(); + var6.show(false); + java.awt.Rectangle var14 = var6.getVisibleRect(); + java.awt.Rectangle var15 = var0.getBounds(var14); + javax.swing.JToolTip var16 = var0.createToolTip(); + var0.firePropertyChange("", false, false); + var0.validate(); + boolean var22 = var0.isEnabled(); + var0.repaint(3, 400, 10, 1); + java.awt.Cursor var28 = var0.getCursor(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var22 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var28); + + } + + public void test427() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test427"); + + + SpaceWar.Player var0 = new SpaceWar.Player(); + int var1 = var0.getPower(); + var0.setLeft(true); + var0.increasePower(0); + boolean var6 = var0.isDead(); + var0.setFiring(true); + var0.setRigth(false); + var0.setDown(false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == false); + + } + + public void test428() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test428"); + + + SpaceWar.Enemy var2 = new SpaceWar.Enemy(10, 1); + double var3 = var2.getX(); + boolean var4 = var2.isDead(); + int var5 = var2.getType(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == 240.9713786093358d); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == 10); + + } + + public void test429() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test429"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var1 = new SpaceWar.SpacePanel(); + java.awt.Color var2 = var1.getBackground(); + SpaceWar.SpacePanel var3 = new SpaceWar.SpacePanel(); + float var4 = var3.getAlignmentX(); + var3.setVisible(false); + var3.nextFocus(); + var3.updateUI(); + var3.enableInputMethods(true); + var0.add((java.awt.Component)var1, (java.lang.Object)true); + java.awt.Dimension var12 = var1.getPreferredSize(); + java.awt.Component[] var13 = var1.getComponents(); + var1.repaint(25, 25, 100, 1); + javax.swing.KeyStroke[] var19 = var1.getRegisteredKeyStrokes(); + var1.validate(); + boolean var21 = var1.isForegroundSet(); + SpaceWar.SpacePanel var22 = new SpaceWar.SpacePanel(); + float var23 = var22.getAlignmentX(); + var22.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var28 = new SpaceWar.SpacePanel(); + float var29 = var28.getAlignmentX(); + var28.setVisible(false); + java.awt.Dimension var32 = var28.getPreferredSize(); + var22.setMaximumSize(var32); + boolean var34 = var22.getVerifyInputWhenFocusTarget(); + boolean var35 = var22.isFontSet(); + boolean var36 = var22.getIgnoreRepaint(); + java.awt.Component var39 = var22.locate(1, 25); + java.awt.dnd.DropTarget var40 = var22.getDropTarget(); + boolean var41 = var1.isAncestorOf((java.awt.Component)var22); + boolean var43 = var1.areFocusTraversalKeysSet(1); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var2); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var29 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var32); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var34 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var35 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var36 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var39); + + // Regression assertion (captures the current behavior of the code) + assertNull(var40); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var41 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var43 == false); + + } + + public void test430() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test430"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + java.awt.Dimension var4 = var0.getPreferredSize(); + boolean var5 = var0.getVerifyInputWhenFocusTarget(); + java.awt.Component var8 = var0.findComponentAt(10, 1); + boolean var9 = var0.isCursorSet(); + java.awt.Dimension var10 = var0.getMinimumSize(); + javax.swing.InputMap var11 = var0.getInputMap(); + boolean var12 = var0.isValidateRoot(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var4); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == false); + + } + + public void test431() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test431"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.setInheritsPopupMenu(false); + var0.setFocusTraversalPolicyProvider(true); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + boolean var12 = var8.isDoubleBuffered(); + var8.list(); + SpaceWar.SpacePanel var14 = new SpaceWar.SpacePanel(); + float var15 = var14.getAlignmentX(); + var14.setVisible(false); + boolean var18 = var14.isDoubleBuffered(); + java.awt.dnd.DropTarget var19 = var14.getDropTarget(); + var14.show(false); + java.awt.Rectangle var22 = var14.getVisibleRect(); + java.awt.Rectangle var23 = var8.getBounds(var22); + javax.swing.JToolTip var24 = var8.createToolTip(); + var0.removeKeyListener((java.awt.event.KeyListener)var8); + var0.setFocusTraversalKeysEnabled(true); + javax.swing.KeyStroke[] var28 = var0.getRegisteredKeyStrokes(); + SpaceWar.SpacePanel var29 = new SpaceWar.SpacePanel(); + float var30 = var29.getAlignmentX(); + var29.setVisible(false); + java.awt.Dimension var33 = var29.getPreferredSize(); + java.awt.Toolkit var34 = var29.getToolkit(); + boolean var35 = var29.isFocusable(); + javax.swing.KeyStroke[] var36 = var29.getRegisteredKeyStrokes(); + java.awt.Component var39 = var29.getComponentAt(100, 100); + java.lang.Object var40 = var29.getTreeLock(); + boolean var43 = var29.inside(400, 0); + java.awt.event.MouseWheelListener[] var44 = var29.getMouseWheelListeners(); + var29.enableInputMethods(true); + boolean var47 = var0.isAncestorOf((java.awt.Component)var29); + java.awt.event.HierarchyListener[] var48 = var29.getHierarchyListeners(); + boolean var49 = var29.isMinimumSizeSet(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var23); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var28); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var30 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var33); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var34); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var35 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var36); + + // Regression assertion (captures the current behavior of the code) + assertNull(var39); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var40); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var43 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var44); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var47 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var48); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var49 == false); + + } + + public void test432() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test432"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.setInheritsPopupMenu(false); + var0.setFocusTraversalPolicyProvider(true); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + boolean var12 = var8.isDoubleBuffered(); + var8.list(); + SpaceWar.SpacePanel var14 = new SpaceWar.SpacePanel(); + float var15 = var14.getAlignmentX(); + var14.setVisible(false); + boolean var18 = var14.isDoubleBuffered(); + java.awt.dnd.DropTarget var19 = var14.getDropTarget(); + var14.show(false); + java.awt.Rectangle var22 = var14.getVisibleRect(); + java.awt.Rectangle var23 = var8.getBounds(var22); + javax.swing.JToolTip var24 = var8.createToolTip(); + var0.removeKeyListener((java.awt.event.KeyListener)var8); + var0.setFocusTraversalKeysEnabled(true); + javax.swing.KeyStroke[] var28 = var0.getRegisteredKeyStrokes(); + boolean var29 = var0.getFocusTraversalKeysEnabled(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var23); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var28); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var29 == true); + + } + + public void test433() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test433"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var6 = var0.getMouseListeners(); + int var7 = var0.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var8 = var0.getInputMethodRequests(); + var0.removeNotify(); + var0.enable(); + boolean var11 = var0.isShowing(); + var0.firePropertyChange("hi!", 10.0f, 100.0f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == false); + + } + + public void test434() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test434"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + var0.list(); + float var6 = var0.getAlignmentY(); + boolean var7 = var0.isFocusable(); + javax.swing.JRootPane var8 = var0.getRootPane(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var8); + + } + + public void test435() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test435"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + java.awt.Dimension var4 = var0.getPreferredSize(); + java.awt.Toolkit var5 = var0.getToolkit(); + boolean var6 = var0.isFocusable(); + var0.setVerifyInputWhenFocusTarget(true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var4); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == true); + + } + + public void test436() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test436"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.updateUI(); + var0.enableInputMethods(true); + var0.setSize((-1), 1); + boolean var13 = var0.contains(1, 1); + java.awt.Dimension var14 = var0.getMinimumSize(); + SpaceWar.SpacePanel var15 = new SpaceWar.SpacePanel(); + float var16 = var15.getAlignmentX(); + var15.setVisible(false); + var15.nextFocus(); + var15.reshape((-1), 1, (-1), 10); + var15.disable(); + var15.show(); + SpaceWar.SpacePanel var27 = new SpaceWar.SpacePanel(); + float var28 = var27.getAlignmentX(); + var27.setVisible(false); + boolean var31 = var27.isDoubleBuffered(); + var27.list(); + SpaceWar.SpacePanel var33 = new SpaceWar.SpacePanel(); + float var34 = var33.getAlignmentX(); + var33.setVisible(false); + boolean var37 = var33.isDoubleBuffered(); + java.awt.dnd.DropTarget var38 = var33.getDropTarget(); + var33.show(false); + java.awt.Rectangle var41 = var33.getVisibleRect(); + java.awt.Rectangle var42 = var27.getBounds(var41); + javax.swing.JToolTip var43 = var27.createToolTip(); + var27.firePropertyChange("", false, false); + var27.validate(); + SpaceWar.SpacePanel var49 = new SpaceWar.SpacePanel(); + float var50 = var49.getAlignmentX(); + var49.setVisible(false); + boolean var53 = var49.isDoubleBuffered(); + java.awt.dnd.DropTarget var54 = var49.getDropTarget(); + var49.show(false); + boolean var57 = var49.isPaintingForPrint(); + SpaceWar.SpacePanel var58 = new SpaceWar.SpacePanel(); + float var59 = var58.getAlignmentX(); + var58.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var64 = var58.getMouseListeners(); + int var65 = var58.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var66 = var58.getInputMethodRequests(); + var49.addKeyListener((java.awt.event.KeyListener)var58); + var58.repaint(); + java.awt.Point var69 = var58.location(); + java.awt.Component var70 = var27.getComponentAt(var69); + java.awt.Point var71 = var15.getLocation(var69); + var15.setAlignmentY(0.5f); + boolean var74 = var15.getVerifyInputWhenFocusTarget(); + boolean var75 = var15.isBackgroundSet(); + java.awt.Point var76 = var15.location(); + java.awt.Component var77 = var0.findComponentAt(var76); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var28 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var31 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var34 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var38); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var41); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var42); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var43); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var50 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var53 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var54); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var57 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var59 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var64); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var65 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var66); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var69); + + // Regression assertion (captures the current behavior of the code) + assertNull(var70); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var71); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var74 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var75 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var76); + + // Regression assertion (captures the current behavior of the code) + assertNull(var77); + + } + + public void test437() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test437"); + + + SpaceWar.Enemy var2 = new SpaceWar.Enemy(10, 1); + int var3 = var2.getRank(); + int var4 = var2.getType(); + double var5 = var2.getY(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == 1); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 10); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == 0.0d); + + } + + public void test438() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test438"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var1 = new SpaceWar.SpacePanel(); + java.awt.Color var2 = var1.getBackground(); + SpaceWar.SpacePanel var3 = new SpaceWar.SpacePanel(); + float var4 = var3.getAlignmentX(); + var3.setVisible(false); + var3.nextFocus(); + var3.updateUI(); + var3.enableInputMethods(true); + var0.add((java.awt.Component)var1, (java.lang.Object)true); + java.awt.Dimension var12 = var1.getPreferredSize(); + java.awt.Component[] var13 = var1.getComponents(); + var1.repaint(25, 25, 100, 1); + javax.swing.KeyStroke[] var19 = var1.getRegisteredKeyStrokes(); + var1.setDebugGraphicsOptions((-1)); + java.awt.LayoutManager var22 = var1.getLayout(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var2); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var22); + + } + + public void test439() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test439"); + + + SpaceWar.Player var0 = new SpaceWar.Player(); + var0.increasePower(25); + int var3 = var0.getScore(); + int var4 = var0.getX(); + var0.setLife(100); + int var7 = var0.getR(); + boolean var8 = var0.isDead(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 400); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 25); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + } + + public void test440() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test440"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + java.awt.Dimension var4 = var0.getPreferredSize(); + java.awt.Toolkit var5 = var0.getToolkit(); + boolean var6 = var0.isFocusable(); + javax.swing.KeyStroke[] var7 = var0.getRegisteredKeyStrokes(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + SpaceWar.SpacePanel var10 = new SpaceWar.SpacePanel(); + float var11 = var10.getAlignmentX(); + var10.setVisible(false); + java.awt.Dimension var14 = var10.getPreferredSize(); + boolean var15 = var10.getVerifyInputWhenFocusTarget(); + java.awt.Component var18 = var10.findComponentAt(10, 1); + var8.addKeyListener((java.awt.event.KeyListener)var10); + var10.repaint(100, (-1), (-1), 1); + boolean var25 = var0.isAncestorOf((java.awt.Component)var10); + var0.nextFocus(); + var0.disable(); + SpaceWar.SpacePanel var28 = new SpaceWar.SpacePanel(); + float var29 = var28.getAlignmentX(); + var28.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var34 = new SpaceWar.SpacePanel(); + float var35 = var34.getAlignmentX(); + var34.setVisible(false); + SpaceWar.SpacePanel var38 = new SpaceWar.SpacePanel(); + java.awt.Color var39 = var38.getBackground(); + var34.setForeground(var39); + var28.setBackground(var39); + var0.setBackground(var39); + SpaceWar.SpacePanel var43 = new SpaceWar.SpacePanel(); + float var44 = var43.getAlignmentX(); + var43.setVisible(false); + boolean var47 = var43.isDoubleBuffered(); + java.awt.dnd.DropTarget var48 = var43.getDropTarget(); + var43.show(false); + java.awt.Rectangle var51 = var43.getVisibleRect(); + java.awt.Toolkit var52 = var43.getToolkit(); + java.awt.event.MouseMotionListener[] var53 = var43.getMouseMotionListeners(); + SpaceWar.SpacePanel var54 = new SpaceWar.SpacePanel(); + float var55 = var54.getAlignmentX(); + var54.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var60 = var54.getMouseListeners(); + int var61 = var54.getDebugGraphicsOptions(); + SpaceWar.SpacePanel var62 = new SpaceWar.SpacePanel(); + float var63 = var62.getAlignmentX(); + var62.setVisible(false); + boolean var66 = var62.isDoubleBuffered(); + java.awt.dnd.DropTarget var67 = var62.getDropTarget(); + var62.show(false); + java.awt.Rectangle var70 = var62.getVisibleRect(); + var54.paintImmediately(var70); + var43.setBounds(var70); + var0.scrollRectToVisible(var70); + var0.updateUI(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var4); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var29 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var35 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var39); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var44 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var47 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var48); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var51); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var52); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var53); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var55 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var60); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var61 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var63 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var66 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var67); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var70); + + } + + public void test441() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test441"); + + + SpaceWar.Player var0 = new SpaceWar.Player(); + var0.increasePower(25); + int var3 = var0.getScore(); + var0.setFiring(false); + var0.setUp(false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == 0); + + } + + public void test442() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test442"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.requestFocus(); + boolean var6 = var0.isBackgroundSet(); + boolean var7 = var0.isRequestFocusEnabled(); + var0.disable(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == true); + + } + + public void test443() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test443"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var6 = var0.getUI(); + java.awt.im.InputMethodRequests var7 = var0.getInputMethodRequests(); + boolean var8 = var0.isBackgroundSet(); + boolean var9 = var0.isPreferredSizeSet(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == true); + + } + + public void test444() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test444"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + var0.show(false); + java.awt.Rectangle var8 = var0.getVisibleRect(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var15 = var9.getMouseListeners(); + int var16 = var9.getDebugGraphicsOptions(); + SpaceWar.SpacePanel var17 = new SpaceWar.SpacePanel(); + float var18 = var17.getAlignmentX(); + var17.setVisible(false); + boolean var21 = var17.isDoubleBuffered(); + java.awt.dnd.DropTarget var22 = var17.getDropTarget(); + var17.show(false); + java.awt.Rectangle var25 = var17.getVisibleRect(); + var9.paintImmediately(var25); + java.awt.Rectangle var27 = var9.getBounds(); + var0.scrollRectToVisible(var27); + boolean var29 = var0.getIgnoreRepaint(); + var0.setToolTipText("SpaceWar.SpacePanel[,-1,1,-1x10,invalid,hidden,disabled,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var25); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var27); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var29 == false); + + } + + public void test445() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test445"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + SpaceWar.SpacePanel var4 = new SpaceWar.SpacePanel(); + java.awt.Color var5 = var4.getBackground(); + var0.setForeground(var5); + SpaceWar.SpacePanel var7 = new SpaceWar.SpacePanel(); + float var8 = var7.getAlignmentX(); + var7.setVisible(false); + boolean var11 = var7.isDoubleBuffered(); + java.awt.dnd.DropTarget var12 = var7.getDropTarget(); + var7.show(false); + java.awt.Rectangle var15 = var7.getVisibleRect(); + var0.repaint(var15); + SpaceWar.SpacePanel var17 = new SpaceWar.SpacePanel(); + float var18 = var17.getAlignmentX(); + var17.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var23 = var17.getMouseListeners(); + java.awt.Dimension var24 = var17.getPreferredSize(); + java.util.Locale var25 = var17.getLocale(); + var0.setLocale(var25); + java.util.Locale var27 = var0.getLocale(); + var0.transferFocusDownCycle(); + java.awt.Dimension var29 = var0.size(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var23); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var25); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var27); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var29); + + } + + public void test446() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test446"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + var0.list(); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + float var7 = var6.getAlignmentX(); + var6.setVisible(false); + boolean var10 = var6.isDoubleBuffered(); + java.awt.dnd.DropTarget var11 = var6.getDropTarget(); + var6.show(false); + java.awt.Rectangle var14 = var6.getVisibleRect(); + java.awt.Rectangle var15 = var0.getBounds(var14); + javax.swing.JToolTip var16 = var0.createToolTip(); + var0.firePropertyChange("", false, false); + var0.revalidate(); + int var22 = var0.getComponentCount(); + java.awt.Toolkit var23 = var0.getToolkit(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var22 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var23); + + } + + public void test447() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test447"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var1 = new SpaceWar.SpacePanel(); + java.awt.Color var2 = var1.getBackground(); + SpaceWar.SpacePanel var3 = new SpaceWar.SpacePanel(); + float var4 = var3.getAlignmentX(); + var3.setVisible(false); + var3.nextFocus(); + var3.updateUI(); + var3.enableInputMethods(true); + var0.add((java.awt.Component)var1, (java.lang.Object)true); + java.awt.Dimension var12 = var1.getPreferredSize(); + var1.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", (-1.0f), 100.0f); + var1.removeNotify(); + java.awt.Dimension var18 = var1.size(); + java.awt.LayoutManager var19 = var1.getLayout(); + java.awt.event.HierarchyListener[] var20 = var1.getHierarchyListeners(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var2); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + } + + public void test448() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test448"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.reshape((-1), 1, (-1), 10); + // The following exception was thrown during execution. + // This behavior will recorded for regression testing. + try { + javax.swing.InputMap var11 = var0.getInputMap(400); + fail("Expected exception of type java.lang.IllegalArgumentException"); + } catch (java.lang.IllegalArgumentException e) { + // Expected exception. + } + + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + } + + public void test449() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test449"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + java.awt.Point var6 = var0.getMousePosition(); + var0.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", (short)100, (short)(-1)); + var0.list(); + int var12 = var0.getHeight(); + SpaceWar.SpacePanel var13 = new SpaceWar.SpacePanel(); + float var14 = var13.getAlignmentX(); + var13.setVisible(false); + boolean var17 = var13.isDoubleBuffered(); + java.awt.dnd.DropTarget var18 = var13.getDropTarget(); + boolean var19 = var13.isFocusCycleRoot(); + SpaceWar.SpacePanel var20 = new SpaceWar.SpacePanel(); + float var21 = var20.getAlignmentX(); + var20.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var26 = new SpaceWar.SpacePanel(); + float var27 = var26.getAlignmentX(); + var26.setVisible(false); + java.awt.Dimension var30 = var26.getPreferredSize(); + var20.setMaximumSize(var30); + boolean var32 = var20.getVerifyInputWhenFocusTarget(); + javax.accessibility.AccessibleContext var33 = var20.getAccessibleContext(); + boolean var34 = var20.isDoubleBuffered(); + boolean var35 = var20.getAutoscrolls(); + var20.repaint(10L, (-1), 25, (-1), 100); + var20.updateUI(); + boolean var43 = var20.requestDefaultFocus(); + SpaceWar.SpacePanel var44 = new SpaceWar.SpacePanel(); + float var45 = var44.getAlignmentX(); + SpaceWar.SpacePanel var46 = new SpaceWar.SpacePanel(); + float var47 = var46.getAlignmentX(); + var46.setVisible(false); + java.awt.Dimension var50 = var46.getPreferredSize(); + boolean var51 = var46.getVerifyInputWhenFocusTarget(); + java.awt.Component var54 = var46.findComponentAt(10, 1); + var44.addKeyListener((java.awt.event.KeyListener)var46); + java.awt.Cursor var56 = var44.getCursor(); + var20.setCursor(var56); + var13.setCursor(var56); + var0.setCursor(var56); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var30); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var32 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var33); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var34 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var35 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var43 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var45 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var47 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var50); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var51 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var54); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var56); + + } + + public void test450() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test450"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.requestFocus(); + boolean var6 = var0.isBackgroundSet(); + SpaceWar.SpacePanel var7 = new SpaceWar.SpacePanel(); + java.awt.Color var8 = var7.getBackground(); + var7.repaint(); + var7.setRequestFocusEnabled(false); + var7.reshape(100, 0, 100, 0); + SpaceWar.SpacePanel var17 = new SpaceWar.SpacePanel(); + float var18 = var17.getAlignmentX(); + var17.setVisible(false); + var17.setInheritsPopupMenu(false); + boolean var23 = var17.isDoubleBuffered(); + SpaceWar.SpacePanel var24 = new SpaceWar.SpacePanel(); + float var25 = var24.getAlignmentX(); + var24.setVisible(false); + var24.nextFocus(); + var24.reshape((-1), 1, (-1), 10); + var24.disable(); + java.awt.LayoutManager var35 = var24.getLayout(); + var17.setLayout(var35); + var0.add((java.awt.Component)var7, (java.lang.Object)var35); + SpaceWar.SpacePanel var38 = new SpaceWar.SpacePanel(); + float var39 = var38.getAlignmentX(); + var38.setVisible(false); + java.awt.Dimension var42 = var38.getPreferredSize(); + java.awt.Toolkit var43 = var38.getToolkit(); + boolean var44 = var38.isFocusable(); + javax.swing.KeyStroke[] var45 = var38.getRegisteredKeyStrokes(); + SpaceWar.SpacePanel var46 = new SpaceWar.SpacePanel(); + float var47 = var46.getAlignmentX(); + SpaceWar.SpacePanel var48 = new SpaceWar.SpacePanel(); + float var49 = var48.getAlignmentX(); + var48.setVisible(false); + java.awt.Dimension var52 = var48.getPreferredSize(); + boolean var53 = var48.getVerifyInputWhenFocusTarget(); + java.awt.Component var56 = var48.findComponentAt(10, 1); + var46.addKeyListener((java.awt.event.KeyListener)var48); + var48.repaint(100, (-1), (-1), 1); + boolean var63 = var38.isAncestorOf((java.awt.Component)var48); + var38.setFocusable(false); + boolean var66 = var7.isAncestorOf((java.awt.Component)var38); + boolean var67 = var7.getFocusTraversalKeysEnabled(); + // The following exception was thrown during execution. + // This behavior will recorded for regression testing. + try { + java.awt.Point var68 = var7.getLocationOnScreen(); + fail("Expected exception of type java.awt.IllegalComponentStateException"); + } catch (java.awt.IllegalComponentStateException e) { + // Expected exception. + } + + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var35); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var39 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var42); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var43); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var44 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var45); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var47 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var49 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var52); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var53 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var56); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var63 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var66 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var67 == true); + + } + + public void test451() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test451"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + boolean var2 = var0.hasFocus(); + boolean var3 = var0.isPreferredSizeSet(); + SpaceWar.SpacePanel var4 = new SpaceWar.SpacePanel(); + java.awt.Color var5 = var4.getBackground(); + var4.repaint(); + var4.setRequestFocusEnabled(false); + int var9 = var0.getComponentZOrder((java.awt.Component)var4); + int var10 = var0.getDebugGraphicsOptions(); + var0.enableInputMethods(true); + var0.setFocusTraversalPolicyProvider(true); + var0.requestFocus(); + boolean var16 = var0.getVerifyInputWhenFocusTarget(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var2 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == (-1)); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == true); + + } + + public void test452() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test452"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + boolean var4 = var0.inside(0, (-1)); + SpaceWar.SpacePanel var5 = new SpaceWar.SpacePanel(); + float var6 = var5.getAlignmentX(); + var5.setVisible(false); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + java.awt.Color var10 = var9.getBackground(); + var5.setForeground(var10); + var0.setForeground(var10); + var0.setAutoscrolls(false); + SpaceWar.SpacePanel var15 = new SpaceWar.SpacePanel(); + float var16 = var15.getAlignmentX(); + var15.setVisible(false); + boolean var19 = var15.isDoubleBuffered(); + java.awt.dnd.DropTarget var20 = var15.getDropTarget(); + var15.show(false); + boolean var23 = var15.isPaintingForPrint(); + SpaceWar.SpacePanel var24 = new SpaceWar.SpacePanel(); + float var25 = var24.getAlignmentX(); + var24.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var30 = var24.getMouseListeners(); + int var31 = var24.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var32 = var24.getInputMethodRequests(); + var15.addKeyListener((java.awt.event.KeyListener)var24); + SpaceWar.SpacePanel var34 = new SpaceWar.SpacePanel(); + float var35 = var34.getAlignmentX(); + var34.setVisible(false); + boolean var38 = var34.isDoubleBuffered(); + var34.list(); + float var40 = var34.getAlignmentY(); + boolean var41 = var24.isFocusCycleRoot((java.awt.Container)var34); + var34.firePropertyChange("", 1L, 1L); + var34.setVerifyInputWhenFocusTarget(true); + SpaceWar.SpacePanel var48 = new SpaceWar.SpacePanel(); + var48.setName(""); + java.awt.Dimension var51 = var48.minimumSize(); + boolean var52 = var48.isDoubleBuffered(); + SpaceWar.SpacePanel var53 = new SpaceWar.SpacePanel(); + float var54 = var53.getAlignmentX(); + SpaceWar.SpacePanel var55 = new SpaceWar.SpacePanel(); + float var56 = var55.getAlignmentX(); + var55.setVisible(false); + java.awt.Dimension var59 = var55.getPreferredSize(); + boolean var60 = var55.getVerifyInputWhenFocusTarget(); + java.awt.Component var63 = var55.findComponentAt(10, 1); + var53.addKeyListener((java.awt.event.KeyListener)var55); + var55.repaint(100, (-1), (-1), 1); + SpaceWar.SpacePanel var70 = new SpaceWar.SpacePanel(); + java.awt.Color var71 = var70.getBackground(); + var70.repaint(); + java.awt.im.InputMethodRequests var73 = var70.getInputMethodRequests(); + java.awt.GraphicsConfiguration var74 = var70.getGraphicsConfiguration(); + var55.remove((java.awt.Component)var70); + java.awt.Font var76 = var70.getFont(); + java.awt.FontMetrics var77 = var48.getFontMetrics(var76); + java.awt.FontMetrics var78 = var34.getFontMetrics(var76); + var0.setFont(var76); + java.util.Locale var80 = javax.swing.JComponent.getDefaultLocale(); + javax.swing.JComponent.setDefaultLocale(var80); + javax.swing.JComponent.setDefaultLocale(var80); + javax.swing.JComponent.setDefaultLocale(var80); + var0.setLocale(var80); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var30); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var31 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var32); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var35 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var38 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var40 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var41 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var51); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var52 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var54 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var56 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var59); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var60 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var63); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var71); + + // Regression assertion (captures the current behavior of the code) + assertNull(var73); + + // Regression assertion (captures the current behavior of the code) + assertNull(var74); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var76); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var77); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var78); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var80); + + } + + public void test453() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test453"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + var0.list(); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + float var7 = var6.getAlignmentX(); + var6.setVisible(false); + boolean var10 = var6.isDoubleBuffered(); + java.awt.dnd.DropTarget var11 = var6.getDropTarget(); + var6.show(false); + java.awt.Rectangle var14 = var6.getVisibleRect(); + java.awt.Rectangle var15 = var0.getBounds(var14); + javax.swing.JToolTip var16 = var0.createToolTip(); + java.awt.Dimension var17 = var0.minimumSize(); + boolean var19 = var0.requestFocus(false); + java.awt.Dimension var20 = var0.minimumSize(); + java.awt.image.VolatileImage var23 = var0.createVolatileImage(24, 10); + SpaceWar.SpacePanel var24 = new SpaceWar.SpacePanel(); + float var25 = var24.getAlignmentX(); + var24.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var30 = new SpaceWar.SpacePanel(); + float var31 = var30.getAlignmentX(); + var30.setVisible(false); + java.awt.Dimension var34 = var30.getPreferredSize(); + var24.setMaximumSize(var34); + boolean var36 = var24.getVerifyInputWhenFocusTarget(); + int var37 = var24.getX(); + java.awt.Rectangle var38 = var24.bounds(); + var0.repaint(var38); + java.awt.Container var40 = var0.getFocusCycleRootAncestor(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertNull(var23); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var31 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var34); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var36 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var38); + + // Regression assertion (captures the current behavior of the code) + assertNull(var40); + + } + + public void test454() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test454"); + + + SpaceWar.Player var0 = new SpaceWar.Player(); + var0.increasePower(25); + int var3 = var0.getScore(); + int var4 = var0.getX(); + var0.setLife(400); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 400); + + } + + public void test455() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test455"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + java.awt.im.InputMethodRequests var3 = var0.getInputMethodRequests(); + int var4 = var0.countComponents(); + java.awt.event.ComponentListener[] var5 = var0.getComponentListeners(); + var0.removeNotify(); + javax.swing.InputMap var7 = var0.getInputMap(); + int var8 = var0.getDebugGraphicsOptions(); + java.awt.Rectangle var9 = var0.getBounds(); + boolean var12 = var0.inside(100, 499); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var9); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == false); + + } + + public void test456() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test456"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var6 = var0.getUI(); + java.awt.im.InputMethodRequests var7 = var0.getInputMethodRequests(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + var8.nextFocus(); + var8.updateUI(); + var8.enableInputMethods(true); + var8.setSize((-1), 1); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + var19.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var0.add((java.awt.Component)var8, (java.lang.Object)"SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + java.awt.ComponentOrientation var25 = var8.getComponentOrientation(); + boolean var26 = var8.isMaximumSizeSet(); + SpaceWar.SpacePanel var27 = new SpaceWar.SpacePanel(); + float var28 = var27.getAlignmentX(); + var27.setVisible(false); + boolean var31 = var27.isDoubleBuffered(); + java.awt.dnd.DropTarget var32 = var27.getDropTarget(); + var27.show(false); + boolean var35 = var27.isPaintingForPrint(); + SpaceWar.SpacePanel var36 = new SpaceWar.SpacePanel(); + float var37 = var36.getAlignmentX(); + var36.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var42 = var36.getMouseListeners(); + int var43 = var36.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var44 = var36.getInputMethodRequests(); + var27.addKeyListener((java.awt.event.KeyListener)var36); + SpaceWar.SpacePanel var46 = new SpaceWar.SpacePanel(); + float var47 = var46.getAlignmentX(); + var46.setVisible(false); + boolean var50 = var46.isDoubleBuffered(); + var46.list(); + float var52 = var46.getAlignmentY(); + boolean var53 = var36.isFocusCycleRoot((java.awt.Container)var46); + boolean var54 = var46.isEnabled(); + java.awt.Dimension var55 = var46.getMaximumSize(); + var8.setMinimumSize(var55); + var8.disable(); + int var58 = var8.getComponentCount(); + var8.resetKeyboardActions(); + var8.disable(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var25); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var28 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var31 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var32); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var35 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var42); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var43 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var44); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var47 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var50 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var52 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var53 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var54 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var55); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var58 == 0); + + } + + public void test457() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test457"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var1 = new SpaceWar.SpacePanel(); + java.awt.Color var2 = var1.getBackground(); + SpaceWar.SpacePanel var3 = new SpaceWar.SpacePanel(); + float var4 = var3.getAlignmentX(); + var3.setVisible(false); + var3.nextFocus(); + var3.updateUI(); + var3.enableInputMethods(true); + var0.add((java.awt.Component)var1, (java.lang.Object)true); + java.awt.Image var14 = var1.createImage(1, (-1)); + SpaceWar.SpacePanel var15 = new SpaceWar.SpacePanel(); + float var16 = var15.getAlignmentX(); + var15.setVisible(false); + var15.nextFocus(); + var15.updateUI(); + var15.enableInputMethods(true); + SpaceWar.SpacePanel var23 = new SpaceWar.SpacePanel(); + float var24 = var23.getAlignmentX(); + boolean var25 = var23.hasFocus(); + java.awt.Insets var26 = var23.getInsets(); + java.awt.Insets var27 = var15.getInsets(var26); + java.awt.Insets var28 = var1.getInsets(var26); + java.awt.Point var29 = var1.getMousePosition(); + java.awt.Container var30 = var1.getParent(); + java.lang.String var31 = var1.getName(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var2); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var24 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var27); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var28); + + // Regression assertion (captures the current behavior of the code) + assertNull(var29); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var30); + + // Regression assertion (captures the current behavior of the code) + assertNull(var31); + + } + + public void test458() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test458"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + java.awt.Dimension var4 = var0.getPreferredSize(); + java.awt.Toolkit var5 = var0.getToolkit(); + boolean var6 = var0.isFocusable(); + javax.swing.KeyStroke[] var7 = var0.getRegisteredKeyStrokes(); + var0.setFocusCycleRoot(false); + SpaceWar.SpacePanel var10 = new SpaceWar.SpacePanel(); + java.awt.Color var11 = var10.getBackground(); + var10.repaint(); + java.awt.im.InputMethodRequests var13 = var10.getInputMethodRequests(); + var10.setDoubleBuffered(true); + var10.show(false); + var10.setAlignmentY(100.0f); + SpaceWar.SpacePanel var20 = new SpaceWar.SpacePanel(); + float var21 = var20.getAlignmentX(); + var20.setVisible(false); + SpaceWar.SpacePanel var24 = new SpaceWar.SpacePanel(); + java.awt.Color var25 = var24.getBackground(); + var20.setForeground(var25); + SpaceWar.SpacePanel var27 = new SpaceWar.SpacePanel(); + float var28 = var27.getAlignmentX(); + var27.setVisible(false); + boolean var31 = var27.isDoubleBuffered(); + java.awt.dnd.DropTarget var32 = var27.getDropTarget(); + var27.show(false); + java.awt.Rectangle var35 = var27.getVisibleRect(); + var20.repaint(var35); + java.awt.FocusTraversalPolicy var37 = var20.getFocusTraversalPolicy(); + java.awt.im.InputMethodRequests var38 = var20.getInputMethodRequests(); + var20.layout(); + boolean var40 = var20.isFocusTraversalPolicyProvider(); + java.awt.Insets var41 = var20.insets(); + java.awt.Dimension var42 = var20.getMinimumSize(); + java.awt.Dimension var43 = var10.getSize(var42); + boolean var44 = var0.isAncestorOf((java.awt.Component)var10); + java.awt.Dimension var45 = var0.getSize(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var4); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var25); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var28 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var31 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var32); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var35); + + // Regression assertion (captures the current behavior of the code) + assertNull(var37); + + // Regression assertion (captures the current behavior of the code) + assertNull(var38); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var40 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var41); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var42); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var43); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var44 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var45); + + } + + public void test459() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test459"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.setInheritsPopupMenu(false); + var0.setFocusTraversalPolicyProvider(true); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + boolean var12 = var8.isDoubleBuffered(); + var8.list(); + SpaceWar.SpacePanel var14 = new SpaceWar.SpacePanel(); + float var15 = var14.getAlignmentX(); + var14.setVisible(false); + boolean var18 = var14.isDoubleBuffered(); + java.awt.dnd.DropTarget var19 = var14.getDropTarget(); + var14.show(false); + java.awt.Rectangle var22 = var14.getVisibleRect(); + java.awt.Rectangle var23 = var8.getBounds(var22); + javax.swing.JToolTip var24 = var8.createToolTip(); + var0.removeKeyListener((java.awt.event.KeyListener)var8); + boolean var26 = var0.isMaximumSizeSet(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var23); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == false); + + } + + public void test460() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test460"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + SpaceWar.SpacePanel var4 = new SpaceWar.SpacePanel(); + java.awt.Color var5 = var4.getBackground(); + var0.setForeground(var5); + SpaceWar.SpacePanel var7 = new SpaceWar.SpacePanel(); + float var8 = var7.getAlignmentX(); + var7.setVisible(false); + boolean var11 = var7.isDoubleBuffered(); + java.awt.dnd.DropTarget var12 = var7.getDropTarget(); + var7.show(false); + java.awt.Rectangle var15 = var7.getVisibleRect(); + var0.repaint(var15); + java.awt.FocusTraversalPolicy var17 = var0.getFocusTraversalPolicy(); + SpaceWar.SpacePanel var18 = new SpaceWar.SpacePanel(); + float var19 = var18.getAlignmentX(); + var18.firePropertyChange("", (-1), 1); + boolean var24 = var18.isFocusOwner(); + SpaceWar.SpacePanel var26 = new SpaceWar.SpacePanel(); + float var27 = var26.getAlignmentX(); + var26.setVisible(false); + java.awt.Dimension var30 = var26.getPreferredSize(); + java.awt.Toolkit var31 = var26.getToolkit(); + SpaceWar.SpacePanel var32 = new SpaceWar.SpacePanel(); + var32.setName(""); + int var35 = var32.getX(); + SpaceWar.SpacePanel var36 = new SpaceWar.SpacePanel(); + float var37 = var36.getAlignmentX(); + var36.setVisible(false); + var36.nextFocus(); + SpaceWar.SpacePanel var41 = new SpaceWar.SpacePanel(); + float var42 = var41.getAlignmentX(); + var41.setVisible(false); + SpaceWar.SpacePanel var45 = new SpaceWar.SpacePanel(); + java.awt.Color var46 = var45.getBackground(); + var41.setForeground(var46); + var36.setBackground(var46); + var32.setBackground(var46); + var26.setForeground(var46); + var18.putClientProperty((java.lang.Object)(byte)100, (java.lang.Object)var46); + var0.setBackground(var46); + SpaceWar.SpacePanel var53 = new SpaceWar.SpacePanel(); + float var54 = var53.getAlignmentX(); + var53.setVisible(false); + boolean var57 = var53.isDoubleBuffered(); + java.awt.dnd.DropTarget var58 = var53.getDropTarget(); + var53.show(false); + boolean var61 = var53.isPaintingForPrint(); + SpaceWar.SpacePanel var62 = new SpaceWar.SpacePanel(); + float var63 = var62.getAlignmentX(); + SpaceWar.SpacePanel var64 = new SpaceWar.SpacePanel(); + float var65 = var64.getAlignmentX(); + var64.setVisible(false); + java.awt.Dimension var68 = var64.getPreferredSize(); + boolean var69 = var64.getVerifyInputWhenFocusTarget(); + java.awt.Component var72 = var64.findComponentAt(10, 1); + var62.addKeyListener((java.awt.event.KeyListener)var64); + java.awt.Dimension var74 = var64.getMinimumSize(); + var53.setMinimumSize(var74); + java.awt.Dimension var76 = var0.getSize(var74); + java.awt.im.InputMethodRequests var77 = var0.getInputMethodRequests(); + boolean var78 = var0.isLightweight(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var24 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var30); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var31); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var35 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var42 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var46); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var54 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var57 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var58); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var61 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var63 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var65 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var68); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var69 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var72); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var74); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var76); + + // Regression assertion (captures the current behavior of the code) + assertNull(var77); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var78 == false); + + } + + public void test461() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test461"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + var0.list(); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + float var7 = var6.getAlignmentX(); + var6.setVisible(false); + boolean var10 = var6.isDoubleBuffered(); + java.awt.dnd.DropTarget var11 = var6.getDropTarget(); + var6.show(false); + java.awt.Rectangle var14 = var6.getVisibleRect(); + java.awt.Rectangle var15 = var0.getBounds(var14); + javax.swing.JToolTip var16 = var0.createToolTip(); + java.awt.Dimension var17 = var0.minimumSize(); + boolean var19 = var0.requestFocus(false); + java.awt.Dimension var20 = var0.getMaximumSize(); + SpaceWar.SpacePanel var21 = new SpaceWar.SpacePanel(); + var21.setName(""); + var21.enable(true); + var21.enable(); + java.awt.Point var27 = var21.location(); + var21.repaint(0, 3, (-1), 1); + var21.setBounds(25, 100, 1, 0); + java.awt.Insets var38 = var21.getInsets(); + java.awt.Insets var39 = var0.getInsets(var38); + SpaceWar.SpacePanel var40 = new SpaceWar.SpacePanel(); + var40.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + // The following exception was thrown during execution. + // This behavior will recorded for regression testing. + try { + java.awt.Component var46 = var0.add((java.awt.Component)var40, 25); + fail("Expected exception of type java.lang.IllegalArgumentException"); + } catch (java.lang.IllegalArgumentException e) { + // Expected exception. + } + + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var27); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var38); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var39); + + } + + public void test462() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test462"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.reshape((-1), 1, (-1), 10); + SpaceWar.SpacePanel var10 = new SpaceWar.SpacePanel(); + java.awt.Color var11 = var10.getBackground(); + var10.repaint(); + var10.setRequestFocusEnabled(false); + var10.reshape(100, 0, 100, 0); + java.awt.Component var20 = var0.add((java.awt.Component)var10); + boolean var21 = var10.isCursorSet(); + boolean var22 = var10.isForegroundSet(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var22 == true); + + } + + public void test463() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test463"); + + + SpaceWar.PowerUp var3 = new SpaceWar.PowerUp(100, (-1.0d), 0.0d); + double var4 = var3.getR(); + int var5 = var3.getType(); + double var6 = var3.getX(); + int var7 = var3.getType(); + boolean var8 = var3.update(); + double var9 = var3.getX(); + boolean var10 = var3.update(); + double var11 = var3.getX(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0.0d); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == 100); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == (-1.0d)); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 100); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == (-1.0d)); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == (-1.0d)); + + } + + public void test464() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test464"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.reshape((-1), 1, (-1), 10); + var0.disable(); + java.awt.Component var13 = var0.findComponentAt(0, (-1)); + SpaceWar.SpacePanel var14 = new SpaceWar.SpacePanel(); + var14.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + javax.swing.plaf.PanelUI var19 = var14.getUI(); + SpaceWar.SpacePanel var20 = new SpaceWar.SpacePanel(); + float var21 = var20.getAlignmentX(); + var20.setVisible(false); + var20.nextFocus(); + var20.repaint(1L); + SpaceWar.SpacePanel var27 = new SpaceWar.SpacePanel(); + float var28 = var27.getAlignmentX(); + var27.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var33 = new SpaceWar.SpacePanel(); + float var34 = var33.getAlignmentX(); + var33.setVisible(false); + java.awt.Dimension var37 = var33.getPreferredSize(); + var27.setMaximumSize(var37); + var20.setPreferredSize(var37); + var14.setMaximumSize(var37); + var0.setSize(var37); + SpaceWar.SpacePanel var42 = new SpaceWar.SpacePanel(); + float var43 = var42.getAlignmentX(); + boolean var44 = var42.hasFocus(); + boolean var45 = var42.isPreferredSizeSet(); + SpaceWar.SpacePanel var46 = new SpaceWar.SpacePanel(); + java.awt.Color var47 = var46.getBackground(); + var46.repaint(); + var46.setRequestFocusEnabled(false); + int var51 = var42.getComponentZOrder((java.awt.Component)var46); + boolean var52 = var42.requestDefaultFocus(); + javax.swing.border.Border var53 = var42.getBorder(); + int var54 = var0.getComponentZOrder((java.awt.Component)var42); + javax.accessibility.AccessibleContext var55 = var42.getAccessibleContext(); + var42.setFocusCycleRoot(false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var28 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var34 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var37); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var43 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var44 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var45 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var47); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var51 == (-1)); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var52 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var53); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var54 == (-1)); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var55); + + } + + public void test465() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test465"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + var0.setName(""); + var0.enable(true); + var0.enable(); + java.awt.Point var6 = var0.location(); + var0.repaint(0, 3, (-1), 1); + var0.setBounds(25, 100, 1, 0); + java.awt.Insets var17 = var0.getInsets(); + java.awt.peer.ComponentPeer var18 = var0.getPeer(); + javax.swing.KeyStroke[] var19 = var0.getRegisteredKeyStrokes(); + var0.setFocusable(false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var19); + + } + + public void test466() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test466"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.setInheritsPopupMenu(false); + var0.setFocusTraversalPolicyProvider(true); + boolean var10 = var0.inside(25, 3); + SpaceWar.SpacePanel var11 = new SpaceWar.SpacePanel(); + float var12 = var11.getAlignmentX(); + var11.setVisible(false); + boolean var15 = var11.isDoubleBuffered(); + java.awt.dnd.DropTarget var16 = var11.getDropTarget(); + var11.show(false); + boolean var19 = var11.isPaintingForPrint(); + SpaceWar.SpacePanel var20 = new SpaceWar.SpacePanel(); + float var21 = var20.getAlignmentX(); + SpaceWar.SpacePanel var22 = new SpaceWar.SpacePanel(); + float var23 = var22.getAlignmentX(); + var22.setVisible(false); + java.awt.Dimension var26 = var22.getPreferredSize(); + boolean var27 = var22.getVerifyInputWhenFocusTarget(); + java.awt.Component var30 = var22.findComponentAt(10, 1); + var20.addKeyListener((java.awt.event.KeyListener)var22); + java.awt.Dimension var32 = var22.getMinimumSize(); + var11.setMinimumSize(var32); + var0.setPreferredSize(var32); + boolean var36 = var0.requestFocus(true); + java.awt.Dimension var37 = var0.getMinimumSize(); + java.beans.PropertyChangeListener[] var39 = var0.getPropertyChangeListeners("SpaceWar.SpacePanel[,0,0,0x0,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + javax.swing.KeyStroke[] var40 = var0.getRegisteredKeyStrokes(); + var0.transferFocus(); + java.awt.event.MouseListener[] var42 = var0.getMouseListeners(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var30); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var32); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var36 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var37); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var39); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var40); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var42); + + } + + public void test467() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test467"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + var0.setName(""); + java.awt.Dimension var3 = var0.minimumSize(); + boolean var4 = var0.isDoubleBuffered(); + java.awt.event.HierarchyListener[] var5 = var0.getHierarchyListeners(); + var0.reshape(499, 2, 3, (-1)); + java.awt.event.ComponentListener[] var11 = var0.getComponentListeners(); + var0.hide(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + } + + public void test468() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test468"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + SpaceWar.SpacePanel var2 = new SpaceWar.SpacePanel(); + float var3 = var2.getAlignmentX(); + var2.setVisible(false); + java.awt.Dimension var6 = var2.getPreferredSize(); + boolean var7 = var2.getVerifyInputWhenFocusTarget(); + java.awt.Component var10 = var2.findComponentAt(10, 1); + var0.addKeyListener((java.awt.event.KeyListener)var2); + java.awt.Dimension var12 = var2.getMinimumSize(); + java.util.Locale var13 = var2.getLocale(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var13); + + } + + public void test469() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test469"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + var0.show(false); + boolean var8 = var0.isPaintingForPrint(); + boolean var9 = var0.getIgnoreRepaint(); + var0.repaint(100, 10, 100, 0); + boolean var17 = var0.inside(0, 10); + var0.resize(3, 400); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == false); + + } + + public void test470() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test470"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var1 = new SpaceWar.SpacePanel(); + java.awt.Color var2 = var1.getBackground(); + SpaceWar.SpacePanel var3 = new SpaceWar.SpacePanel(); + float var4 = var3.getAlignmentX(); + var3.setVisible(false); + var3.nextFocus(); + var3.updateUI(); + var3.enableInputMethods(true); + var0.add((java.awt.Component)var1, (java.lang.Object)true); + java.awt.Dimension var12 = var1.getPreferredSize(); + var1.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", (-1.0f), 100.0f); + var1.removeNotify(); + java.awt.Dimension var18 = var1.size(); + java.awt.LayoutManager var19 = var1.getLayout(); + java.awt.event.ComponentListener[] var20 = var1.getComponentListeners(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var2); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + } + + public void test471() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test471"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.setInheritsPopupMenu(false); + var0.setFocusTraversalPolicyProvider(true); + java.awt.Container var8 = var0.getFocusCycleRootAncestor(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.removeNotify(); + SpaceWar.SpacePanel var12 = new SpaceWar.SpacePanel(); + float var13 = var12.getAlignmentX(); + var12.setVisible(false); + boolean var16 = var12.isDoubleBuffered(); + var12.list(); + float var18 = var12.getAlignmentY(); + java.awt.Insets var19 = var12.getInsets(); + java.awt.Insets var20 = var9.getInsets(var19); + java.awt.Insets var21 = var0.getInsets(var20); + boolean var22 = var0.isFocusTraversalPolicyProvider(); + SpaceWar.SpacePanel var23 = new SpaceWar.SpacePanel(); + float var24 = var23.getAlignmentX(); + var23.setVisible(false); + var23.nextFocus(); + var23.updateUI(); + java.util.Locale var29 = var23.getLocale(); + SpaceWar.SpacePanel var30 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var31 = new SpaceWar.SpacePanel(); + java.awt.Color var32 = var31.getBackground(); + SpaceWar.SpacePanel var33 = new SpaceWar.SpacePanel(); + float var34 = var33.getAlignmentX(); + var33.setVisible(false); + var33.nextFocus(); + var33.updateUI(); + var33.enableInputMethods(true); + var30.add((java.awt.Component)var31, (java.lang.Object)true); + boolean var42 = var30.isMinimumSizeSet(); + java.awt.event.HierarchyListener[] var43 = var30.getHierarchyListeners(); + int var44 = var30.getComponentCount(); + SpaceWar.SpacePanel var45 = new SpaceWar.SpacePanel(); + java.awt.Color var46 = var45.getBackground(); + var45.repaint(); + var45.setRequestFocusEnabled(false); + var45.removeAll(); + var30.setNextFocusableComponent((java.awt.Component)var45); + java.awt.event.KeyListener[] var52 = var45.getKeyListeners(); + javax.swing.event.AncestorListener[] var53 = var45.getAncestorListeners(); + var0.add((java.awt.Component)var23, (java.lang.Object)var45); + SpaceWar.SpacePanel var55 = new SpaceWar.SpacePanel(); + float var56 = var55.getAlignmentX(); + SpaceWar.SpacePanel var57 = new SpaceWar.SpacePanel(); + float var58 = var57.getAlignmentX(); + var57.setVisible(false); + java.awt.Dimension var61 = var57.getPreferredSize(); + boolean var62 = var57.getVerifyInputWhenFocusTarget(); + java.awt.Component var65 = var57.findComponentAt(10, 1); + var55.addKeyListener((java.awt.event.KeyListener)var57); + java.awt.Dimension var67 = var57.getMinimumSize(); + javax.swing.JToolTip var68 = var57.createToolTip(); + var57.setAutoscrolls(false); + // The following exception was thrown during execution. + // This behavior will recorded for regression testing. + try { + var45.setComponentZOrder((java.awt.Component)var57, 10); + fail("Expected exception of type java.lang.IllegalArgumentException"); + } catch (java.lang.IllegalArgumentException e) { + // Expected exception. + } + + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var21); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var22 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var24 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var29); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var32); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var34 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var42 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var43); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var44 == 1); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var46); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var52); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var53); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var56 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var58 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var61); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var62 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var65); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var67); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var68); + + } + + public void test472() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test472"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var6 = var0.getUI(); + java.awt.im.InputMethodRequests var7 = var0.getInputMethodRequests(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + var8.nextFocus(); + var8.updateUI(); + var8.enableInputMethods(true); + var8.setSize((-1), 1); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + var19.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var0.add((java.awt.Component)var8, (java.lang.Object)"SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + SpaceWar.SpacePanel var25 = new SpaceWar.SpacePanel(); + float var26 = var25.getAlignmentX(); + var25.setVisible(false); + var25.setInheritsPopupMenu(false); + boolean var31 = var25.isDoubleBuffered(); + boolean var32 = var25.isMinimumSizeSet(); + SpaceWar.SpacePanel var33 = new SpaceWar.SpacePanel(); + float var34 = var33.getAlignmentX(); + var33.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var39 = new SpaceWar.SpacePanel(); + float var40 = var39.getAlignmentX(); + var39.setVisible(false); + java.awt.Dimension var43 = var39.getPreferredSize(); + var33.setMaximumSize(var43); + boolean var45 = var33.getVerifyInputWhenFocusTarget(); + javax.accessibility.AccessibleContext var46 = var33.getAccessibleContext(); + boolean var47 = var33.isDoubleBuffered(); + java.awt.Rectangle var48 = var33.getVisibleRect(); + var25.setBounds(var48); + java.awt.Rectangle var50 = var0.getBounds(var48); + SpaceWar.SpacePanel var51 = new SpaceWar.SpacePanel(); + float var52 = var51.getAlignmentX(); + var51.setVisible(false); + boolean var55 = var51.isDoubleBuffered(); + java.awt.dnd.DropTarget var56 = var51.getDropTarget(); + var51.show(false); + boolean var59 = var51.isPaintingForPrint(); + SpaceWar.SpacePanel var60 = new SpaceWar.SpacePanel(); + float var61 = var60.getAlignmentX(); + var60.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var66 = var60.getMouseListeners(); + int var67 = var60.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var68 = var60.getInputMethodRequests(); + var51.addKeyListener((java.awt.event.KeyListener)var60); + SpaceWar.SpacePanel var70 = new SpaceWar.SpacePanel(); + float var71 = var70.getAlignmentX(); + var70.setVisible(false); + boolean var74 = var70.isDoubleBuffered(); + var70.list(); + float var76 = var70.getAlignmentY(); + boolean var77 = var60.isFocusCycleRoot((java.awt.Container)var70); + SpaceWar.SpacePanel var79 = new SpaceWar.SpacePanel(); + float var80 = var79.getAlignmentX(); + var79.setVisible(false); + var79.nextFocus(); + var79.updateUI(); + java.awt.Component var85 = var60.add("", (java.awt.Component)var79); + java.awt.ComponentOrientation var86 = var79.getComponentOrientation(); + var0.applyComponentOrientation(var86); + var0.requestFocus(); + java.awt.FocusTraversalPolicy var89 = var0.getFocusTraversalPolicy(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var31 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var32 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var34 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var40 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var43); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var45 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var46); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var47 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var48); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var50); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var52 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var55 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var56); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var59 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var61 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var66); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var67 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var68); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var71 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var74 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var76 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var77 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var80 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var85); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var86); + + // Regression assertion (captures the current behavior of the code) + assertNull(var89); + + } + + public void test473() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test473"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.reshape((-1), 1, (-1), 10); + SpaceWar.SpacePanel var10 = new SpaceWar.SpacePanel(); + java.awt.Color var11 = var10.getBackground(); + var10.repaint(); + var10.setRequestFocusEnabled(false); + var10.reshape(100, 0, 100, 0); + java.awt.Component var20 = var0.add((java.awt.Component)var10); + boolean var21 = var10.isEnabled(); + var10.requestFocus(); + var10.setFocusTraversalPolicyProvider(true); + var10.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", 0L, 1L); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == true); + + } + + public void test474() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test474"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + var0.show(false); + boolean var8 = var0.isPaintingForPrint(); + boolean var9 = var0.getIgnoreRepaint(); + var0.repaint(100, 10, 100, 0); + SpaceWar.SpacePanel var15 = new SpaceWar.SpacePanel(); + float var16 = var15.getAlignmentX(); + var15.setVisible(false); + boolean var19 = var15.isDoubleBuffered(); + var15.list(); + SpaceWar.SpacePanel var21 = new SpaceWar.SpacePanel(); + float var22 = var21.getAlignmentX(); + var21.setVisible(false); + boolean var25 = var21.isDoubleBuffered(); + java.awt.dnd.DropTarget var26 = var21.getDropTarget(); + var21.show(false); + java.awt.Rectangle var29 = var21.getVisibleRect(); + java.awt.Rectangle var30 = var15.getBounds(var29); + javax.swing.JToolTip var31 = var15.createToolTip(); + var15.firePropertyChange("", false, false); + var15.validate(); + SpaceWar.SpacePanel var37 = new SpaceWar.SpacePanel(); + float var38 = var37.getAlignmentX(); + var37.setVisible(false); + boolean var41 = var37.isDoubleBuffered(); + java.awt.dnd.DropTarget var42 = var37.getDropTarget(); + var37.show(false); + boolean var45 = var37.isPaintingForPrint(); + SpaceWar.SpacePanel var46 = new SpaceWar.SpacePanel(); + float var47 = var46.getAlignmentX(); + var46.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var52 = var46.getMouseListeners(); + int var53 = var46.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var54 = var46.getInputMethodRequests(); + var37.addKeyListener((java.awt.event.KeyListener)var46); + var46.repaint(); + java.awt.Point var57 = var46.location(); + java.awt.Component var58 = var15.getComponentAt(var57); + var0.setLocation(var57); + java.awt.peer.ComponentPeer var60 = var0.getPeer(); + var0.transferFocus(); + SpaceWar.SpacePanel var62 = new SpaceWar.SpacePanel(); + var62.setName(""); + java.awt.Dimension var65 = var62.minimumSize(); + boolean var66 = var62.isDoubleBuffered(); + SpaceWar.SpacePanel var67 = new SpaceWar.SpacePanel(); + float var68 = var67.getAlignmentX(); + var67.setVisible(false); + SpaceWar.SpacePanel var71 = new SpaceWar.SpacePanel(); + java.awt.Color var72 = var71.getBackground(); + var67.setForeground(var72); + SpaceWar.SpacePanel var74 = new SpaceWar.SpacePanel(); + float var75 = var74.getAlignmentX(); + var74.setVisible(false); + boolean var78 = var74.isDoubleBuffered(); + java.awt.dnd.DropTarget var79 = var74.getDropTarget(); + var74.show(false); + java.awt.Rectangle var82 = var74.getVisibleRect(); + var67.repaint(var82); + java.awt.FocusTraversalPolicy var84 = var67.getFocusTraversalPolicy(); + java.awt.im.InputMethodRequests var85 = var67.getInputMethodRequests(); + var67.layout(); + boolean var87 = var67.isFocusTraversalPolicyProvider(); + java.awt.Component var88 = var62.add((java.awt.Component)var67); + var0.removeKeyListener((java.awt.event.KeyListener)var67); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var22 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var29); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var30); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var31); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var38 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var41 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var42); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var45 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var47 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var52); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var53 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var54); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var57); + + // Regression assertion (captures the current behavior of the code) + assertNull(var58); + + // Regression assertion (captures the current behavior of the code) + assertNull(var60); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var65); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var66 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var68 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var72); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var75 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var78 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var79); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var82); + + // Regression assertion (captures the current behavior of the code) + assertNull(var84); + + // Regression assertion (captures the current behavior of the code) + assertNull(var85); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var87 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var88); + + } + + public void test475() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test475"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.setInheritsPopupMenu(false); + var0.setFocusTraversalPolicyProvider(true); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + boolean var12 = var8.isDoubleBuffered(); + var8.list(); + SpaceWar.SpacePanel var14 = new SpaceWar.SpacePanel(); + float var15 = var14.getAlignmentX(); + var14.setVisible(false); + boolean var18 = var14.isDoubleBuffered(); + java.awt.dnd.DropTarget var19 = var14.getDropTarget(); + var14.show(false); + java.awt.Rectangle var22 = var14.getVisibleRect(); + java.awt.Rectangle var23 = var8.getBounds(var22); + javax.swing.JToolTip var24 = var8.createToolTip(); + var0.removeKeyListener((java.awt.event.KeyListener)var8); + var0.setFocusTraversalKeysEnabled(true); + javax.swing.KeyStroke[] var28 = var0.getRegisteredKeyStrokes(); + java.lang.String var29 = var0.getName(); + var0.repaint(1L); + SpaceWar.SpacePanel var32 = new SpaceWar.SpacePanel(); + float var33 = var32.getAlignmentX(); + var32.setVisible(false); + boolean var36 = var32.isDoubleBuffered(); + java.awt.dnd.DropTarget var37 = var32.getDropTarget(); + boolean var38 = var32.isFocusCycleRoot(); + var32.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", 100, 0); + SpaceWar.SpacePanel var43 = new SpaceWar.SpacePanel(); + float var44 = var43.getAlignmentX(); + var43.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var49 = var43.getUI(); + var32.add((java.awt.Component)var43, (java.lang.Object)(short)0); + java.awt.event.InputMethodListener[] var52 = var43.getInputMethodListeners(); + java.awt.Toolkit var53 = var43.getToolkit(); + var43.setSize(24, 2); + java.awt.Container var57 = var43.getTopLevelAncestor(); + SpaceWar.SpacePanel var58 = new SpaceWar.SpacePanel(); + float var59 = var58.getAlignmentX(); + var58.setVisible(false); + var58.nextFocus(); + SpaceWar.SpacePanel var63 = new SpaceWar.SpacePanel(); + float var64 = var63.getAlignmentX(); + var63.setVisible(false); + SpaceWar.SpacePanel var67 = new SpaceWar.SpacePanel(); + java.awt.Color var68 = var67.getBackground(); + var63.setForeground(var68); + var58.setBackground(var68); + javax.swing.plaf.PanelUI var71 = var58.getUI(); + var43.setUI(var71); + var0.setUI(var71); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var23); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var28); + + // Regression assertion (captures the current behavior of the code) + assertNull(var29); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var33 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var36 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var37); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var38 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var44 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var49); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var52); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var53); + + // Regression assertion (captures the current behavior of the code) + assertNull(var57); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var59 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var64 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var68); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var71); + + } + + public void test476() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test476"); + + + SpaceWar.Enemy var2 = new SpaceWar.Enemy((-1), 499); + + } + + public void test477() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test477"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.setInheritsPopupMenu(false); + var0.setFocusTraversalPolicyProvider(true); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + boolean var12 = var8.isDoubleBuffered(); + var8.list(); + SpaceWar.SpacePanel var14 = new SpaceWar.SpacePanel(); + float var15 = var14.getAlignmentX(); + var14.setVisible(false); + boolean var18 = var14.isDoubleBuffered(); + java.awt.dnd.DropTarget var19 = var14.getDropTarget(); + var14.show(false); + java.awt.Rectangle var22 = var14.getVisibleRect(); + java.awt.Rectangle var23 = var8.getBounds(var22); + javax.swing.JToolTip var24 = var8.createToolTip(); + var0.removeKeyListener((java.awt.event.KeyListener)var8); + var0.setFocusTraversalKeysEnabled(true); + javax.swing.KeyStroke[] var28 = var0.getRegisteredKeyStrokes(); + java.lang.String var29 = var0.getName(); + var0.repaint(1L); + SpaceWar.SpacePanel var32 = new SpaceWar.SpacePanel(); + float var33 = var32.getAlignmentX(); + var32.firePropertyChange("", (-1), 1); + boolean var38 = var32.isFocusOwner(); + java.awt.Dimension var39 = var32.getMinimumSize(); + java.awt.Point var40 = var32.location(); + boolean var41 = var0.contains(var40); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var23); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var28); + + // Regression assertion (captures the current behavior of the code) + assertNull(var29); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var33 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var38 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var39); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var40); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var41 == false); + + } + + public void test478() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test478"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var6 = var0.getMouseListeners(); + int var7 = var0.getDebugGraphicsOptions(); + java.awt.Color var8 = var0.getBackground(); + java.awt.event.HierarchyListener[] var9 = var0.getHierarchyListeners(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var9); + + } + + public void test479() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test479"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + java.awt.im.InputMethodRequests var3 = var0.getInputMethodRequests(); + var0.list(); + int var5 = var0.getHeight(); + var0.disable(); + var0.setLocation(2, 24); + int var10 = var0.getWidth(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0); + + } + + public void test480() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test480"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + java.awt.Dimension var4 = var0.getPreferredSize(); + boolean var5 = var0.getVerifyInputWhenFocusTarget(); + java.awt.Component var8 = var0.findComponentAt(10, 1); + boolean var9 = var0.isCursorSet(); + boolean var10 = var0.isFocusTraversalPolicyProvider(); + java.lang.String var11 = var0.getName(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var4); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var11); + + } + + public void test481() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test481"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var6 = var0.getMouseListeners(); + java.awt.Dimension var7 = var0.getPreferredSize(); + int var10 = var0.getBaseline(1, 1); + var0.setFocusTraversalPolicyProvider(false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == (-1)); + + } + + public void test482() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test482"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.repaint(1L); + var0.firePropertyChange("", (short)(-1), (short)(-1)); + var0.setBounds(400, 1, (-1), 10); + var0.reshape(25, 3, 100, 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + } + + public void test483() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test483"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + SpaceWar.SpacePanel var4 = new SpaceWar.SpacePanel(); + java.awt.Color var5 = var4.getBackground(); + var0.setForeground(var5); + SpaceWar.SpacePanel var7 = new SpaceWar.SpacePanel(); + float var8 = var7.getAlignmentX(); + var7.setVisible(false); + boolean var11 = var7.isDoubleBuffered(); + java.awt.dnd.DropTarget var12 = var7.getDropTarget(); + var7.show(false); + java.awt.Rectangle var15 = var7.getVisibleRect(); + var0.repaint(var15); + java.awt.FocusTraversalPolicy var17 = var0.getFocusTraversalPolicy(); + java.awt.im.InputMethodRequests var18 = var0.getInputMethodRequests(); + var0.layout(); + var0.setDebugGraphicsOptions(10); + java.awt.event.FocusListener[] var22 = var0.getFocusListeners(); + javax.swing.border.Border var23 = var0.getBorder(); + boolean var24 = var0.isShowing(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertNull(var23); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var24 == false); + + } + + public void test484() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test484"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.updateUI(); + java.util.Locale var6 = var0.getLocale(); + var0.paintImmediately(25, 100, 3, 0); + boolean var12 = var0.isCursorSet(); + boolean var13 = var0.isCursorSet(); + boolean var14 = var0.getFocusTraversalKeysEnabled(); + var0.setVerifyInputWhenFocusTarget(false); + boolean var18 = var0.requestFocus(true); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + float var20 = var19.getAlignmentX(); + SpaceWar.SpacePanel var21 = new SpaceWar.SpacePanel(); + float var22 = var21.getAlignmentX(); + var21.setVisible(false); + java.awt.Dimension var25 = var21.getPreferredSize(); + boolean var26 = var21.getVerifyInputWhenFocusTarget(); + java.awt.Component var29 = var21.findComponentAt(10, 1); + var19.addKeyListener((java.awt.event.KeyListener)var21); + SpaceWar.SpacePanel var31 = new SpaceWar.SpacePanel(); + float var32 = var31.getAlignmentX(); + SpaceWar.SpacePanel var33 = new SpaceWar.SpacePanel(); + float var34 = var33.getAlignmentX(); + var33.setVisible(false); + java.awt.Dimension var37 = var33.getPreferredSize(); + boolean var38 = var33.getVerifyInputWhenFocusTarget(); + java.awt.Component var41 = var33.findComponentAt(10, 1); + var31.addKeyListener((java.awt.event.KeyListener)var33); + var33.repaint(100, (-1), (-1), 1); + java.awt.image.ColorModel var48 = var33.getColorModel(); + SpaceWar.SpacePanel var49 = new SpaceWar.SpacePanel(); + float var50 = var49.getAlignmentX(); + var49.setVisible(false); + boolean var53 = var49.isDoubleBuffered(); + var49.list(); + SpaceWar.SpacePanel var55 = new SpaceWar.SpacePanel(); + float var56 = var55.getAlignmentX(); + var55.setVisible(false); + boolean var59 = var55.isDoubleBuffered(); + java.awt.dnd.DropTarget var60 = var55.getDropTarget(); + var55.show(false); + java.awt.Rectangle var63 = var55.getVisibleRect(); + java.awt.image.BufferedImage var65 = var55.loadImg("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + boolean var66 = var49.isAncestorOf((java.awt.Component)var55); + javax.swing.InputVerifier var67 = var55.getInputVerifier(); + var21.putClientProperty((java.lang.Object)var33, (java.lang.Object)var55); + javax.swing.JToolTip var69 = var21.createToolTip(); + SpaceWar.SpacePanel var70 = new SpaceWar.SpacePanel(); + float var71 = var70.getAlignmentX(); + var70.setVisible(false); + var70.nextFocus(); + SpaceWar.SpacePanel var75 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var76 = new SpaceWar.SpacePanel(); + java.awt.Color var77 = var76.getBackground(); + SpaceWar.SpacePanel var78 = new SpaceWar.SpacePanel(); + float var79 = var78.getAlignmentX(); + var78.setVisible(false); + var78.nextFocus(); + var78.updateUI(); + var78.enableInputMethods(true); + var75.add((java.awt.Component)var76, (java.lang.Object)true); + java.awt.Dimension var87 = var76.getPreferredSize(); + var70.setMaximumSize(var87); + var21.setMinimumSize(var87); + var0.resize(var87); + java.awt.image.BufferedImage var92 = var0.loadImg("PanelUI"); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var22 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var25); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var29); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var32 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var34 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var37); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var38 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var41); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var48); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var50 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var53 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var56 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var59 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var60); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var63); + + // Regression assertion (captures the current behavior of the code) + assertNull(var65); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var66 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var67); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var69); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var71 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var77); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var79 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var87); + + // Regression assertion (captures the current behavior of the code) + assertNull(var92); + + } + + public void test485() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test485"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + SpaceWar.SpacePanel var2 = new SpaceWar.SpacePanel(); + float var3 = var2.getAlignmentX(); + var2.setVisible(false); + java.awt.Dimension var6 = var2.getPreferredSize(); + boolean var7 = var2.getVerifyInputWhenFocusTarget(); + java.awt.Component var10 = var2.findComponentAt(10, 1); + var0.addKeyListener((java.awt.event.KeyListener)var2); + var2.repaint(100, (-1), (-1), 1); + SpaceWar.SpacePanel var17 = new SpaceWar.SpacePanel(); + java.awt.Color var18 = var17.getBackground(); + var17.repaint(); + java.awt.im.InputMethodRequests var20 = var17.getInputMethodRequests(); + java.awt.GraphicsConfiguration var21 = var17.getGraphicsConfiguration(); + var2.remove((java.awt.Component)var17); + java.awt.Font var23 = var17.getFont(); + boolean var25 = var17.requestFocus(false); + SpaceWar.SpacePanel var26 = new SpaceWar.SpacePanel(); + float var27 = var26.getAlignmentX(); + var26.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var32 = var26.getUI(); + java.awt.im.InputMethodRequests var33 = var26.getInputMethodRequests(); + SpaceWar.SpacePanel var34 = new SpaceWar.SpacePanel(); + float var35 = var34.getAlignmentX(); + var34.setVisible(false); + var34.nextFocus(); + var34.updateUI(); + var34.enableInputMethods(true); + var34.setSize((-1), 1); + SpaceWar.SpacePanel var45 = new SpaceWar.SpacePanel(); + var45.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var26.add((java.awt.Component)var34, (java.lang.Object)"SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + java.awt.ComponentOrientation var51 = var34.getComponentOrientation(); + java.beans.VetoableChangeListener[] var52 = var34.getVetoableChangeListeners(); + java.awt.Rectangle var53 = var34.bounds(); + var17.setNextFocusableComponent((java.awt.Component)var34); + java.awt.Rectangle var55 = var17.getVisibleRect(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertNull(var21); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var23); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var32); + + // Regression assertion (captures the current behavior of the code) + assertNull(var33); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var35 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var51); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var52); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var53); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var55); + + } + + public void test486() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test486"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var6 = var0.getMouseListeners(); + var0.firePropertyChange("", 0.5f, 100.0f); + var0.enable(false); + int var13 = var0.getDebugGraphicsOptions(); + SpaceWar.SpacePanel var14 = new SpaceWar.SpacePanel(); + float var15 = var14.getAlignmentX(); + var14.setVisible(false); + var14.nextFocus(); + var14.repaint(1L); + SpaceWar.SpacePanel var21 = new SpaceWar.SpacePanel(); + float var22 = var21.getAlignmentX(); + var21.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var27 = new SpaceWar.SpacePanel(); + float var28 = var27.getAlignmentX(); + var27.setVisible(false); + java.awt.Dimension var31 = var27.getPreferredSize(); + var21.setMaximumSize(var31); + var14.setPreferredSize(var31); + java.awt.Container var34 = var14.getFocusCycleRootAncestor(); + java.awt.image.ColorModel var35 = var14.getColorModel(); + int var36 = var14.getComponentCount(); + java.awt.Component var37 = var0.add((java.awt.Component)var14); + SpaceWar.SpacePanel var39 = new SpaceWar.SpacePanel(); + float var40 = var39.getAlignmentX(); + var39.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var45 = var39.getUI(); + SpaceWar.SpacePanel var46 = new SpaceWar.SpacePanel(); + float var47 = var46.getAlignmentX(); + var46.setVisible(false); + SpaceWar.SpacePanel var50 = new SpaceWar.SpacePanel(); + java.awt.Color var51 = var50.getBackground(); + var46.setForeground(var51); + SpaceWar.SpacePanel var53 = new SpaceWar.SpacePanel(); + float var54 = var53.getAlignmentX(); + var53.setVisible(false); + boolean var57 = var53.isDoubleBuffered(); + java.awt.dnd.DropTarget var58 = var53.getDropTarget(); + var53.show(false); + java.awt.Rectangle var61 = var53.getVisibleRect(); + var46.repaint(var61); + java.awt.FocusTraversalPolicy var63 = var46.getFocusTraversalPolicy(); + var46.resetKeyboardActions(); + SpaceWar.SpacePanel var65 = new SpaceWar.SpacePanel(); + float var66 = var65.getAlignmentX(); + var65.setVisible(false); + boolean var69 = var65.isDoubleBuffered(); + java.awt.dnd.DropTarget var70 = var65.getDropTarget(); + var65.show(false); + java.awt.Rectangle var73 = var65.getVisibleRect(); + var46.computeVisibleRect(var73); + javax.swing.ActionMap var75 = var46.getActionMap(); + var39.setActionMap(var75); + javax.swing.InputMap var77 = var39.getInputMap(); + // The following exception was thrown during execution. + // This behavior will recorded for regression testing. + try { + var0.setInputMap(100, var77); + fail("Expected exception of type java.lang.IllegalArgumentException"); + } catch (java.lang.IllegalArgumentException e) { + // Expected exception. + } + + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var22 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var28 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var31); + + // Regression assertion (captures the current behavior of the code) + assertNull(var34); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var35); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var36 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var37); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var40 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var45); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var47 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var51); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var54 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var57 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var58); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var61); + + // Regression assertion (captures the current behavior of the code) + assertNull(var63); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var66 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var69 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var70); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var73); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var75); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var77); + + } + + public void test487() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test487"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.updateUI(); + var0.enableInputMethods(true); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + boolean var10 = var8.hasFocus(); + java.awt.Insets var11 = var8.getInsets(); + java.awt.Insets var12 = var0.getInsets(var11); + var0.enable(true); + var0.nextFocus(); + SpaceWar.SpacePanel var16 = new SpaceWar.SpacePanel(); + float var17 = var16.getAlignmentX(); + var16.setVisible(false); + SpaceWar.SpacePanel var20 = new SpaceWar.SpacePanel(); + java.awt.Color var21 = var20.getBackground(); + var16.setForeground(var21); + SpaceWar.SpacePanel var23 = new SpaceWar.SpacePanel(); + float var24 = var23.getAlignmentX(); + var23.setVisible(false); + boolean var27 = var23.isDoubleBuffered(); + java.awt.dnd.DropTarget var28 = var23.getDropTarget(); + var23.show(false); + java.awt.Rectangle var31 = var23.getVisibleRect(); + var16.repaint(var31); + java.awt.FocusTraversalPolicy var33 = var16.getFocusTraversalPolicy(); + SpaceWar.SpacePanel var34 = new SpaceWar.SpacePanel(); + float var35 = var34.getAlignmentX(); + var34.firePropertyChange("", (-1), 1); + boolean var40 = var34.isFocusOwner(); + SpaceWar.SpacePanel var42 = new SpaceWar.SpacePanel(); + float var43 = var42.getAlignmentX(); + var42.setVisible(false); + java.awt.Dimension var46 = var42.getPreferredSize(); + java.awt.Toolkit var47 = var42.getToolkit(); + SpaceWar.SpacePanel var48 = new SpaceWar.SpacePanel(); + var48.setName(""); + int var51 = var48.getX(); + SpaceWar.SpacePanel var52 = new SpaceWar.SpacePanel(); + float var53 = var52.getAlignmentX(); + var52.setVisible(false); + var52.nextFocus(); + SpaceWar.SpacePanel var57 = new SpaceWar.SpacePanel(); + float var58 = var57.getAlignmentX(); + var57.setVisible(false); + SpaceWar.SpacePanel var61 = new SpaceWar.SpacePanel(); + java.awt.Color var62 = var61.getBackground(); + var57.setForeground(var62); + var52.setBackground(var62); + var48.setBackground(var62); + var42.setForeground(var62); + var34.putClientProperty((java.lang.Object)(byte)100, (java.lang.Object)var62); + var16.setBackground(var62); + SpaceWar.SpacePanel var69 = new SpaceWar.SpacePanel(); + float var70 = var69.getAlignmentX(); + var69.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var75 = new SpaceWar.SpacePanel(); + float var76 = var75.getAlignmentX(); + var75.setVisible(false); + SpaceWar.SpacePanel var79 = new SpaceWar.SpacePanel(); + java.awt.Color var80 = var79.getBackground(); + var75.setForeground(var80); + var69.setBackground(var80); + java.awt.Point var83 = var69.location(); + java.awt.Point var84 = var16.getLocation(var83); + java.awt.Component var85 = var0.getComponentAt(var84); + java.awt.event.HierarchyBoundsListener[] var86 = var0.getHierarchyBoundsListeners(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var21); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var24 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var28); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var31); + + // Regression assertion (captures the current behavior of the code) + assertNull(var33); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var35 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var40 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var43 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var46); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var47); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var51 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var53 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var58 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var62); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var70 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var76 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var80); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var83); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var84); + + // Regression assertion (captures the current behavior of the code) + assertNull(var85); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var86); + + } + + public void test488() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test488"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + boolean var6 = var0.isFocusCycleRoot(); + SpaceWar.SpacePanel var7 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + java.awt.Color var9 = var8.getBackground(); + SpaceWar.SpacePanel var10 = new SpaceWar.SpacePanel(); + float var11 = var10.getAlignmentX(); + var10.setVisible(false); + var10.nextFocus(); + var10.updateUI(); + var10.enableInputMethods(true); + var7.add((java.awt.Component)var8, (java.lang.Object)true); + java.awt.Dimension var19 = var8.getPreferredSize(); + var0.setSize(var19); + var0.updateUI(); + SpaceWar.SpacePanel var22 = new SpaceWar.SpacePanel(); + float var23 = var22.getAlignmentX(); + var22.setVisible(false); + java.awt.Dimension var26 = var22.getPreferredSize(); + java.awt.Toolkit var27 = var22.getToolkit(); + boolean var28 = var22.isFocusable(); + javax.swing.KeyStroke[] var29 = var22.getRegisteredKeyStrokes(); + SpaceWar.SpacePanel var30 = new SpaceWar.SpacePanel(); + float var31 = var30.getAlignmentX(); + SpaceWar.SpacePanel var32 = new SpaceWar.SpacePanel(); + float var33 = var32.getAlignmentX(); + var32.setVisible(false); + java.awt.Dimension var36 = var32.getPreferredSize(); + boolean var37 = var32.getVerifyInputWhenFocusTarget(); + java.awt.Component var40 = var32.findComponentAt(10, 1); + var30.addKeyListener((java.awt.event.KeyListener)var32); + var32.repaint(100, (-1), (-1), 1); + boolean var47 = var22.isAncestorOf((java.awt.Component)var32); + java.awt.Point var48 = var22.location(); + boolean var49 = var0.contains(var48); + boolean var50 = var0.isRequestFocusEnabled(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var9); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var27); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var28 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var29); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var31 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var33 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var36); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var40); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var47 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var48); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var49 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var50 == true); + + } + + public void test489() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test489"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + java.awt.Dimension var4 = var0.getPreferredSize(); + boolean var5 = var0.getVerifyInputWhenFocusTarget(); + java.awt.Component var8 = var0.findComponentAt(10, 1); + boolean var9 = var0.requestDefaultFocus(); + var0.setVerifyInputWhenFocusTarget(false); + java.awt.Point var12 = var0.getLocation(); + java.awt.Dimension var13 = var0.size(); + SpaceWar.SpacePanel var14 = new SpaceWar.SpacePanel(); + float var15 = var14.getAlignmentX(); + var14.setVisible(false); + var14.setInheritsPopupMenu(false); + var14.setFocusTraversalPolicyProvider(true); + boolean var24 = var14.inside(25, 3); + SpaceWar.SpacePanel var25 = new SpaceWar.SpacePanel(); + float var26 = var25.getAlignmentX(); + var25.setVisible(false); + boolean var29 = var25.isDoubleBuffered(); + java.awt.dnd.DropTarget var30 = var25.getDropTarget(); + var25.show(false); + boolean var33 = var25.isPaintingForPrint(); + SpaceWar.SpacePanel var34 = new SpaceWar.SpacePanel(); + float var35 = var34.getAlignmentX(); + SpaceWar.SpacePanel var36 = new SpaceWar.SpacePanel(); + float var37 = var36.getAlignmentX(); + var36.setVisible(false); + java.awt.Dimension var40 = var36.getPreferredSize(); + boolean var41 = var36.getVerifyInputWhenFocusTarget(); + java.awt.Component var44 = var36.findComponentAt(10, 1); + var34.addKeyListener((java.awt.event.KeyListener)var36); + java.awt.Dimension var46 = var36.getMinimumSize(); + var25.setMinimumSize(var46); + var14.setPreferredSize(var46); + boolean var50 = var14.requestFocus(true); + var14.reshape((-1), 10, 24, 0); + java.awt.event.MouseWheelListener[] var56 = var14.getMouseWheelListeners(); + java.awt.Dimension var57 = var14.minimumSize(); + var0.setSize(var57); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var4); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var24 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var29 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var30); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var33 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var35 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var40); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var41 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var44); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var46); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var50 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var56); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var57); + + } + + public void test490() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test490"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var6 = var0.getUI(); + java.awt.im.InputMethodRequests var7 = var0.getInputMethodRequests(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + var8.nextFocus(); + var8.updateUI(); + var8.enableInputMethods(true); + var8.setSize((-1), 1); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + var19.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var0.add((java.awt.Component)var8, (java.lang.Object)"SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + SpaceWar.SpacePanel var25 = new SpaceWar.SpacePanel(); + float var26 = var25.getAlignmentX(); + var25.setVisible(false); + java.awt.Dimension var29 = var25.getPreferredSize(); + java.awt.Toolkit var30 = var25.getToolkit(); + java.awt.Toolkit var31 = var25.getToolkit(); + java.awt.Component var32 = var8.add((java.awt.Component)var25); + var25.nextFocus(); + var25.transferFocus(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var29); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var30); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var31); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var32); + + } + + public void test491() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test491"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + var0.show(false); + java.awt.Rectangle var8 = var0.getVisibleRect(); + java.awt.Toolkit var9 = var0.getToolkit(); + SpaceWar.SpacePanel var10 = new SpaceWar.SpacePanel(); + float var11 = var10.getAlignmentX(); + boolean var12 = var10.hasFocus(); + boolean var13 = var10.isPreferredSizeSet(); + var10.firePropertyChange("", (short)1, (short)0); + boolean var18 = var10.isMaximumSizeSet(); + java.awt.peer.ComponentPeer var19 = var10.getPeer(); + SpaceWar.SpacePanel var20 = new SpaceWar.SpacePanel(); + float var21 = var20.getAlignmentX(); + var20.setVisible(false); + boolean var24 = var20.isDoubleBuffered(); + java.awt.dnd.DropTarget var25 = var20.getDropTarget(); + var20.show(false); + SpaceWar.SpacePanel var28 = new SpaceWar.SpacePanel(); + float var29 = var28.getAlignmentX(); + var28.setVisible(false); + SpaceWar.SpacePanel var32 = new SpaceWar.SpacePanel(); + java.awt.Color var33 = var32.getBackground(); + var28.setForeground(var33); + SpaceWar.SpacePanel var35 = new SpaceWar.SpacePanel(); + float var36 = var35.getAlignmentX(); + var35.setVisible(false); + boolean var39 = var35.isDoubleBuffered(); + java.awt.dnd.DropTarget var40 = var35.getDropTarget(); + var35.show(false); + java.awt.Rectangle var43 = var35.getVisibleRect(); + var28.repaint(var43); + java.awt.FocusTraversalPolicy var45 = var28.getFocusTraversalPolicy(); + java.awt.im.InputMethodRequests var46 = var28.getInputMethodRequests(); + var28.layout(); + SpaceWar.SpacePanel var48 = new SpaceWar.SpacePanel(); + float var49 = var48.getAlignmentX(); + var48.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var54 = new SpaceWar.SpacePanel(); + float var55 = var54.getAlignmentX(); + var54.setVisible(false); + SpaceWar.SpacePanel var58 = new SpaceWar.SpacePanel(); + java.awt.Color var59 = var58.getBackground(); + var54.setForeground(var59); + var48.setBackground(var59); + var28.setForeground(var59); + int var63 = var28.getWidth(); + javax.swing.plaf.PanelUI var64 = var28.getUI(); + var20.setUI(var64); + var10.setUI(var64); + java.awt.event.MouseListener[] var67 = var10.getMouseListeners(); + javax.swing.plaf.PanelUI var68 = var10.getUI(); + boolean var69 = var0.isAncestorOf((java.awt.Component)var10); + boolean var70 = var0.isEnabled(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var9); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var24 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var25); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var29 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var33); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var36 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var39 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var40); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var43); + + // Regression assertion (captures the current behavior of the code) + assertNull(var45); + + // Regression assertion (captures the current behavior of the code) + assertNull(var46); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var49 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var55 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var59); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var63 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var64); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var67); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var68); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var69 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var70 == true); + + } + + public void test492() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test492"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + float var7 = var6.getAlignmentX(); + var6.setVisible(false); + java.awt.Dimension var10 = var6.getPreferredSize(); + var0.setMaximumSize(var10); + boolean var12 = var0.getVerifyInputWhenFocusTarget(); + boolean var13 = var0.isFontSet(); + boolean var14 = var0.getIgnoreRepaint(); + java.awt.Component var17 = var0.locate(1, 25); + boolean var18 = var0.isLightweight(); + var0.move(100, 500); + SpaceWar.SpacePanel var22 = new SpaceWar.SpacePanel(); + float var23 = var22.getAlignmentX(); + var22.setVisible(false); + var22.nextFocus(); + SpaceWar.SpacePanel var27 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var28 = new SpaceWar.SpacePanel(); + java.awt.Color var29 = var28.getBackground(); + SpaceWar.SpacePanel var30 = new SpaceWar.SpacePanel(); + float var31 = var30.getAlignmentX(); + var30.setVisible(false); + var30.nextFocus(); + var30.updateUI(); + var30.enableInputMethods(true); + var27.add((java.awt.Component)var28, (java.lang.Object)true); + java.awt.Dimension var39 = var28.getPreferredSize(); + var22.setMaximumSize(var39); + java.awt.Dimension var41 = var22.preferredSize(); + java.lang.String var42 = var22.getToolTipText(); + var0.removeKeyListener((java.awt.event.KeyListener)var22); + var22.setOpaque(false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var29); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var31 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var39); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var41); + + // Regression assertion (captures the current behavior of the code) + assertNull(var42); + + } + + public void test493() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test493"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + SpaceWar.SpacePanel var4 = new SpaceWar.SpacePanel(); + java.awt.Color var5 = var4.getBackground(); + var0.setForeground(var5); + SpaceWar.SpacePanel var7 = new SpaceWar.SpacePanel(); + float var8 = var7.getAlignmentX(); + var7.setVisible(false); + boolean var11 = var7.isDoubleBuffered(); + java.awt.dnd.DropTarget var12 = var7.getDropTarget(); + var7.show(false); + java.awt.Rectangle var15 = var7.getVisibleRect(); + var0.repaint(var15); + java.awt.FocusTraversalPolicy var17 = var0.getFocusTraversalPolicy(); + SpaceWar.SpacePanel var18 = new SpaceWar.SpacePanel(); + float var19 = var18.getAlignmentX(); + var18.firePropertyChange("", (-1), 1); + boolean var24 = var18.isFocusOwner(); + SpaceWar.SpacePanel var26 = new SpaceWar.SpacePanel(); + float var27 = var26.getAlignmentX(); + var26.setVisible(false); + java.awt.Dimension var30 = var26.getPreferredSize(); + java.awt.Toolkit var31 = var26.getToolkit(); + SpaceWar.SpacePanel var32 = new SpaceWar.SpacePanel(); + var32.setName(""); + int var35 = var32.getX(); + SpaceWar.SpacePanel var36 = new SpaceWar.SpacePanel(); + float var37 = var36.getAlignmentX(); + var36.setVisible(false); + var36.nextFocus(); + SpaceWar.SpacePanel var41 = new SpaceWar.SpacePanel(); + float var42 = var41.getAlignmentX(); + var41.setVisible(false); + SpaceWar.SpacePanel var45 = new SpaceWar.SpacePanel(); + java.awt.Color var46 = var45.getBackground(); + var41.setForeground(var46); + var36.setBackground(var46); + var32.setBackground(var46); + var26.setForeground(var46); + var18.putClientProperty((java.lang.Object)(byte)100, (java.lang.Object)var46); + var0.setBackground(var46); + SpaceWar.SpacePanel var53 = new SpaceWar.SpacePanel(); + float var54 = var53.getAlignmentX(); + var53.setVisible(false); + boolean var57 = var53.isDoubleBuffered(); + java.awt.dnd.DropTarget var58 = var53.getDropTarget(); + var53.show(false); + boolean var61 = var53.isPaintingForPrint(); + SpaceWar.SpacePanel var62 = new SpaceWar.SpacePanel(); + float var63 = var62.getAlignmentX(); + SpaceWar.SpacePanel var64 = new SpaceWar.SpacePanel(); + float var65 = var64.getAlignmentX(); + var64.setVisible(false); + java.awt.Dimension var68 = var64.getPreferredSize(); + boolean var69 = var64.getVerifyInputWhenFocusTarget(); + java.awt.Component var72 = var64.findComponentAt(10, 1); + var62.addKeyListener((java.awt.event.KeyListener)var64); + java.awt.Dimension var74 = var64.getMinimumSize(); + var53.setMinimumSize(var74); + java.awt.Dimension var76 = var0.getSize(var74); + boolean var77 = var0.isValid(); + int var78 = var0.getWidth(); + var0.removeNotify(); + java.awt.Rectangle var80 = var0.bounds(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var24 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var30); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var31); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var35 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var42 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var46); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var54 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var57 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var58); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var61 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var63 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var65 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var68); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var69 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var72); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var74); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var76); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var77 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var78 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var80); + + } + + public void test494() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test494"); + + + SpaceWar.Player var0 = new SpaceWar.Player(); + int var1 = var0.getPower(); + var0.setLeft(true); + boolean var4 = var0.isRecovering(); + var0.setLife(499); + var0.setRigth(true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == false); + + } + + public void test495() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test495"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + java.awt.Dimension var4 = var0.getPreferredSize(); + java.awt.Toolkit var5 = var0.getToolkit(); + java.awt.Toolkit var6 = var0.getToolkit(); + var0.enable(false); + var0.invalidate(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var4); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + } + + public void test496() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test496"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var1 = new SpaceWar.SpacePanel(); + java.awt.Color var2 = var1.getBackground(); + SpaceWar.SpacePanel var3 = new SpaceWar.SpacePanel(); + float var4 = var3.getAlignmentX(); + var3.setVisible(false); + var3.nextFocus(); + var3.updateUI(); + var3.enableInputMethods(true); + var0.add((java.awt.Component)var1, (java.lang.Object)true); + java.awt.Dimension var12 = var1.getPreferredSize(); + var1.move(100, 10); + java.awt.Graphics var16 = var1.getGraphics(); + boolean var17 = var1.getInheritsPopupMenu(); + java.awt.Color var18 = var1.getForeground(); + boolean var19 = var1.isLightweight(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var2); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == false); + + } + + public void test497() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test497"); + + + SpaceWar.Player var0 = new SpaceWar.Player(); + var0.increasePower(25); + int var3 = var0.getScore(); + var0.setRigth(true); + var0.update(); + var0.setDown(false); + var0.update(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == 0); + + } + + public void test498() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test498"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.repaint(1L); + java.awt.image.VolatileImage var9 = var0.createVolatileImage(0, (-1)); + var0.transferFocusUpCycle(); + var0.setEnabled(false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNull(var9); + + } + + public void test499() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test499"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + var0.list(); + float var6 = var0.getAlignmentY(); + java.awt.event.ComponentListener[] var7 = var0.getComponentListeners(); + java.awt.Component var8 = var0.getNextFocusableComponent(); + boolean var9 = var0.isManagingFocus(); + javax.swing.border.Border var10 = var0.getBorder(); + var0.repaint(1L, 400, 100, 400, 500); + int var17 = var0.getComponentCount(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == 0); + + } + + public void test500() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest1.test500"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + java.awt.Dimension var4 = var0.getPreferredSize(); + boolean var5 = var0.getVerifyInputWhenFocusTarget(); + java.awt.Component var8 = var0.findComponentAt(10, 1); + boolean var9 = var0.requestDefaultFocus(); + java.awt.image.VolatileImage var12 = var0.createVolatileImage(0, 3); + var0.resize(25, 25); + SpaceWar.SpacePanel var16 = new SpaceWar.SpacePanel(); + float var17 = var16.getAlignmentX(); + var16.setVisible(false); + java.awt.Dimension var20 = var16.getPreferredSize(); + boolean var21 = var16.getVerifyInputWhenFocusTarget(); + java.awt.Component var24 = var16.findComponentAt(10, 1); + boolean var25 = var16.isCursorSet(); + SpaceWar.SpacePanel var26 = new SpaceWar.SpacePanel(); + float var27 = var26.getAlignmentX(); + var26.setVisible(false); + var26.nextFocus(); + var26.updateUI(); + var26.enableInputMethods(true); + java.awt.Point var34 = var26.location(); + SpaceWar.SpacePanel var35 = new SpaceWar.SpacePanel(); + float var36 = var35.getAlignmentX(); + var35.setVisible(false); + var35.nextFocus(); + var35.reshape((-1), 1, (-1), 10); + SpaceWar.SpacePanel var45 = new SpaceWar.SpacePanel(); + java.awt.Color var46 = var45.getBackground(); + var45.repaint(); + var45.setRequestFocusEnabled(false); + var45.reshape(100, 0, 100, 0); + java.awt.Component var55 = var35.add((java.awt.Component)var45); + SpaceWar.SpacePanel var56 = new SpaceWar.SpacePanel(); + var56.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + javax.swing.plaf.PanelUI var61 = var56.getUI(); + SpaceWar.SpacePanel var62 = new SpaceWar.SpacePanel(); + float var63 = var62.getAlignmentX(); + var62.setVisible(false); + var62.nextFocus(); + var62.repaint(1L); + SpaceWar.SpacePanel var69 = new SpaceWar.SpacePanel(); + float var70 = var69.getAlignmentX(); + var69.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var75 = new SpaceWar.SpacePanel(); + float var76 = var75.getAlignmentX(); + var75.setVisible(false); + java.awt.Dimension var79 = var75.getPreferredSize(); + var69.setMaximumSize(var79); + var62.setPreferredSize(var79); + var56.setMaximumSize(var79); + java.awt.Dimension var83 = var45.getSize(var79); + var26.setMaximumSize(var79); + var16.setMinimumSize(var79); + var0.setMaximumSize(var79); + var0.setVerifyInputWhenFocusTarget(false); + // The following exception was thrown during execution. + // This behavior will recorded for regression testing. + try { + javax.swing.InputMap var90 = var0.getInputMap((-1)); + fail("Expected exception of type java.lang.IllegalArgumentException"); + } catch (java.lang.IllegalArgumentException e) { + // Expected exception. + } + + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var4); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var34); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var36 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var46); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var55); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var61); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var63 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var70 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var76 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var79); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var83); + + } + +} diff --git a/test/randoop/RandoopTest10.java b/test/randoop/RandoopTest10.java new file mode 100644 index 0000000..4f56f9c --- /dev/null +++ b/test/randoop/RandoopTest10.java @@ -0,0 +1,862 @@ +package randoop; + +import junit.framework.*; + +public class RandoopTest10 extends TestCase { + + public static boolean debug = false; + + public void test1() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest10.test1"); + + + SpaceWar.PowerUp var3 = new SpaceWar.PowerUp(10, 240.9713786093358d, 579.3282808260785d); + + } + + public void test2() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest10.test2"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.updateUI(); + var0.enableInputMethods(true); + java.lang.String var8 = var0.toString(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.setVisible(false); + boolean var13 = var9.isDoubleBuffered(); + java.awt.dnd.DropTarget var14 = var9.getDropTarget(); + var9.show(false); + java.awt.Rectangle var17 = var9.getVisibleRect(); + java.awt.image.BufferedImage var19 = var9.loadImg("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + java.awt.ComponentOrientation var20 = var9.getComponentOrientation(); + boolean var21 = var9.isPaintingTile(); + boolean var22 = var9.isOptimizedDrawingEnabled(); + int var23 = var0.getComponentZOrder((java.awt.Component)var9); + javax.swing.JRootPane var24 = var0.getRootPane(); + boolean var25 = var0.isMaximumSizeSet(); + java.lang.String var26 = var0.getName(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var8 + "' != '" + "SpaceWar.SpacePanel[,0,0,0var8,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"+ "'", var8.equals("SpaceWar.SpacePanel[,0,0,0var8,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]")); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var22 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == (-1)); + + // Regression assertion (captures the current behavior of the code) + assertNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var26); + + } + + public void test3() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest10.test3"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + SpaceWar.SpacePanel var4 = new SpaceWar.SpacePanel(); + java.awt.Color var5 = var4.getBackground(); + var0.setForeground(var5); + SpaceWar.SpacePanel var7 = new SpaceWar.SpacePanel(); + float var8 = var7.getAlignmentX(); + var7.setVisible(false); + boolean var11 = var7.isDoubleBuffered(); + java.awt.dnd.DropTarget var12 = var7.getDropTarget(); + var7.show(false); + java.awt.Rectangle var15 = var7.getVisibleRect(); + var0.repaint(var15); + java.awt.FocusTraversalPolicy var17 = var0.getFocusTraversalPolicy(); + java.awt.im.InputMethodRequests var18 = var0.getInputMethodRequests(); + var0.layout(); + java.awt.Point var20 = var0.getMousePosition(); + java.awt.Container var21 = var0.getTopLevelAncestor(); + var0.setOpaque(true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertNull(var21); + + } + + public void test4() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest10.test4"); + + + SpaceWar.Player var0 = new SpaceWar.Player(); + int var1 = var0.getPower(); + var0.setLeft(true); + var0.increasePower(0); + int var6 = var0.getR(); + int var7 = var0.getLives(); + var0.setRigth(false); + int var10 = var0.getScore(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == 25); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 3); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0); + + } + + public void test5() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest10.test5"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + var0.enable(false); + boolean var7 = var0.requestDefaultFocus(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var14 = var8.getMouseListeners(); + int var15 = var8.getDebugGraphicsOptions(); + SpaceWar.SpacePanel var16 = new SpaceWar.SpacePanel(); + float var17 = var16.getAlignmentX(); + var16.setVisible(false); + boolean var20 = var16.isDoubleBuffered(); + java.awt.dnd.DropTarget var21 = var16.getDropTarget(); + var16.show(false); + java.awt.Rectangle var24 = var16.getVisibleRect(); + var8.paintImmediately(var24); + var8.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", '#', '#'); + var8.list(); + java.awt.Rectangle var31 = var8.getBounds(); + var0.scrollRectToVisible(var31); + SpaceWar.Player var33 = new SpaceWar.Player(); + boolean var34 = var33.isRecovering(); + var33.setRigth(false); + int var37 = var33.getPowerLevel(); + var33.increasePower((-1)); + java.lang.Object var40 = var0.getClientProperty((java.lang.Object)(-1)); + var0.setFocusable(true); + java.awt.peer.ComponentPeer var43 = var0.getPeer(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var21); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var31); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var34 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var40); + + // Regression assertion (captures the current behavior of the code) + assertNull(var43); + + } + + public void test6() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest10.test6"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + java.awt.Dimension var4 = var0.getPreferredSize(); + boolean var5 = var0.getVerifyInputWhenFocusTarget(); + java.awt.Component var8 = var0.findComponentAt(10, 1); + boolean var9 = var0.requestDefaultFocus(); + java.awt.Insets var10 = var0.getInsets(); + var0.setDoubleBuffered(false); + java.awt.Toolkit var13 = var0.getToolkit(); + java.awt.Dimension var14 = var0.getMinimumSize(); + java.awt.event.MouseListener[] var15 = var0.getMouseListeners(); + javax.swing.plaf.PanelUI var16 = var0.getUI(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var4); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + } + + public void test7() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest10.test7"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.setInheritsPopupMenu(false); + var0.move(10, 10); + var0.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var0.removeAll(); + java.awt.Point var14 = var0.location(); + SpaceWar.SpacePanel var15 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var16 = new SpaceWar.SpacePanel(); + java.awt.Color var17 = var16.getBackground(); + SpaceWar.SpacePanel var18 = new SpaceWar.SpacePanel(); + float var19 = var18.getAlignmentX(); + var18.setVisible(false); + var18.nextFocus(); + var18.updateUI(); + var18.enableInputMethods(true); + var15.add((java.awt.Component)var16, (java.lang.Object)true); + java.awt.Dimension var27 = var16.getPreferredSize(); + var16.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", (-1.0f), 100.0f); + SpaceWar.SpacePanel var32 = new SpaceWar.SpacePanel(); + float var33 = var32.getAlignmentX(); + var32.setVisible(false); + boolean var36 = var32.isDoubleBuffered(); + SpaceWar.SpacePanel var37 = new SpaceWar.SpacePanel(); + java.awt.Color var38 = var37.getBackground(); + var37.repaint(); + java.lang.Object var40 = var32.getClientProperty((java.lang.Object)var37); + var16.remove((java.awt.Component)var32); + SpaceWar.SpacePanel var42 = new SpaceWar.SpacePanel(); + float var43 = var42.getAlignmentX(); + var42.firePropertyChange("", (-1), 1); + java.awt.event.MouseMotionListener[] var48 = var42.getMouseMotionListeners(); + java.awt.Dimension var49 = var42.getMinimumSize(); + var16.setMaximumSize(var49); + var0.setMinimumSize(var49); + java.awt.event.FocusListener[] var52 = var0.getFocusListeners(); + SpaceWar.SpacePanel var53 = new SpaceWar.SpacePanel(); + float var54 = var53.getAlignmentX(); + var53.setVisible(false); + var53.nextFocus(); + var53.updateUI(); + var53.enableInputMethods(true); + java.awt.Image var63 = var53.createImage(25, 500); + boolean var64 = var0.isFocusCycleRoot((java.awt.Container)var53); + boolean var65 = var53.isManagingFocus(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var27); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var33 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var36 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var38); + + // Regression assertion (captures the current behavior of the code) + assertNull(var40); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var43 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var48); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var49); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var52); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var54 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNull(var63); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var64 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var65 == false); + + } + + public void test8() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest10.test8"); + + + SpaceWar.PowerUp var3 = new SpaceWar.PowerUp(100, (-1.0d), 0.0d); + double var4 = var3.getR(); + int var5 = var3.getType(); + double var6 = var3.getX(); + int var7 = var3.getType(); + boolean var8 = var3.update(); + double var9 = var3.getY(); + double var10 = var3.getX(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0.0d); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == 100); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == (-1.0d)); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 100); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 2.0d); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == (-1.0d)); + + } + + public void test9() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest10.test9"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var1 = new SpaceWar.SpacePanel(); + java.awt.Color var2 = var1.getBackground(); + SpaceWar.SpacePanel var3 = new SpaceWar.SpacePanel(); + float var4 = var3.getAlignmentX(); + var3.setVisible(false); + var3.nextFocus(); + var3.updateUI(); + var3.enableInputMethods(true); + var0.add((java.awt.Component)var1, (java.lang.Object)true); + java.awt.Insets var12 = var0.getInsets(); + java.lang.String var13 = var0.getUIClassID(); + boolean var14 = var0.isFocusable(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var2); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var13 + "' != '" + "PanelUI"+ "'", var13.equals("PanelUI")); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == true); + + } + + public void test10() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest10.test10"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var6 = var0.getMouseListeners(); + int var7 = var0.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var8 = var0.getInputMethodRequests(); + var0.removeNotify(); + var0.enable(); + boolean var11 = var0.isValidateRoot(); + javax.swing.ActionMap var12 = var0.getActionMap(); + int var13 = var0.getY(); + var0.enableInputMethods(false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == 0); + + } + + public void test11() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest10.test11"); + + + SpaceWar.Player var0 = new SpaceWar.Player(); + var0.increasePower(25); + int var3 = var0.getScore(); + var0.setRigth(true); + var0.update(); + var0.setDown(false); + var0.loseLife(); + var0.loseLife(); + boolean var11 = var0.isDead(); + int var12 = var0.getPowerLevel(); + var0.setLife(99); + var0.setLeft(false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == 1); + + } + + public void test12() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest10.test12"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + var0.enable(false); + java.awt.Container var7 = var0.getTopLevelAncestor(); + javax.swing.InputMap var9 = var0.getInputMap(1); + SpaceWar.SpacePanel var10 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var11 = new SpaceWar.SpacePanel(); + java.awt.Color var12 = var11.getBackground(); + SpaceWar.SpacePanel var13 = new SpaceWar.SpacePanel(); + float var14 = var13.getAlignmentX(); + var13.setVisible(false); + var13.nextFocus(); + var13.updateUI(); + var13.enableInputMethods(true); + var10.add((java.awt.Component)var11, (java.lang.Object)true); + java.awt.Image var24 = var11.createImage(1, (-1)); + java.awt.event.MouseListener[] var25 = var11.getMouseListeners(); + java.awt.Color var26 = var11.getBackground(); + var11.grabFocus(); + boolean var28 = var0.isAncestorOf((java.awt.Component)var11); + var11.layout(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var9); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var25); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var28 == false); + + } + + public void test13() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest10.test13"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + boolean var4 = var0.inside(0, (-1)); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + float var7 = var6.getAlignmentX(); + var6.setVisible(false); + var6.nextFocus(); + var6.reshape((-1), 1, (-1), 10); + var6.disable(); + boolean var17 = var6.isFocusable(); + SpaceWar.SpacePanel var18 = new SpaceWar.SpacePanel(); + float var19 = var18.getAlignmentX(); + var18.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var24 = var18.getUI(); + java.awt.im.InputMethodRequests var25 = var18.getInputMethodRequests(); + SpaceWar.SpacePanel var26 = new SpaceWar.SpacePanel(); + float var27 = var26.getAlignmentX(); + var26.setVisible(false); + var26.nextFocus(); + var26.updateUI(); + var26.enableInputMethods(true); + var26.setSize((-1), 1); + SpaceWar.SpacePanel var37 = new SpaceWar.SpacePanel(); + var37.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var18.add((java.awt.Component)var26, (java.lang.Object)"SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + java.awt.event.KeyListener[] var43 = var18.getKeyListeners(); + java.awt.FocusTraversalPolicy var44 = var18.getFocusTraversalPolicy(); + SpaceWar.SpacePanel var45 = new SpaceWar.SpacePanel(); + var45.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + java.awt.Toolkit var50 = var45.getToolkit(); + var6.add((java.awt.Component)var18, (java.lang.Object)var45); + var6.layout(); + java.awt.Component var53 = var0.add("", (java.awt.Component)var6); + java.awt.image.BufferedImage var55 = var0.loadImg("PanelUI"); + java.awt.Color var56 = var0.getForeground(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertNull(var25); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var43); + + // Regression assertion (captures the current behavior of the code) + assertNull(var44); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var50); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var53); + + // Regression assertion (captures the current behavior of the code) + assertNull(var55); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var56); + + } + + public void test14() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest10.test14"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + var0.setSize(1, (-1)); + SpaceWar.SpacePanel var4 = new SpaceWar.SpacePanel(); + float var5 = var4.getAlignmentX(); + var4.setVisible(false); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + java.awt.Color var9 = var8.getBackground(); + var4.setForeground(var9); + SpaceWar.SpacePanel var11 = new SpaceWar.SpacePanel(); + float var12 = var11.getAlignmentX(); + var11.setVisible(false); + boolean var15 = var11.isDoubleBuffered(); + java.awt.dnd.DropTarget var16 = var11.getDropTarget(); + var11.show(false); + java.awt.Rectangle var19 = var11.getVisibleRect(); + var4.repaint(var19); + java.awt.FocusTraversalPolicy var21 = var4.getFocusTraversalPolicy(); + SpaceWar.SpacePanel var22 = new SpaceWar.SpacePanel(); + float var23 = var22.getAlignmentX(); + var22.firePropertyChange("", (-1), 1); + boolean var28 = var22.isFocusOwner(); + SpaceWar.SpacePanel var30 = new SpaceWar.SpacePanel(); + float var31 = var30.getAlignmentX(); + var30.setVisible(false); + java.awt.Dimension var34 = var30.getPreferredSize(); + java.awt.Toolkit var35 = var30.getToolkit(); + SpaceWar.SpacePanel var36 = new SpaceWar.SpacePanel(); + var36.setName(""); + int var39 = var36.getX(); + SpaceWar.SpacePanel var40 = new SpaceWar.SpacePanel(); + float var41 = var40.getAlignmentX(); + var40.setVisible(false); + var40.nextFocus(); + SpaceWar.SpacePanel var45 = new SpaceWar.SpacePanel(); + float var46 = var45.getAlignmentX(); + var45.setVisible(false); + SpaceWar.SpacePanel var49 = new SpaceWar.SpacePanel(); + java.awt.Color var50 = var49.getBackground(); + var45.setForeground(var50); + var40.setBackground(var50); + var36.setBackground(var50); + var30.setForeground(var50); + var22.putClientProperty((java.lang.Object)(byte)100, (java.lang.Object)var50); + var4.setBackground(var50); + SpaceWar.SpacePanel var57 = new SpaceWar.SpacePanel(); + float var58 = var57.getAlignmentX(); + var57.setVisible(false); + boolean var61 = var57.isDoubleBuffered(); + java.awt.dnd.DropTarget var62 = var57.getDropTarget(); + var57.show(false); + boolean var65 = var57.isPaintingForPrint(); + SpaceWar.SpacePanel var66 = new SpaceWar.SpacePanel(); + float var67 = var66.getAlignmentX(); + SpaceWar.SpacePanel var68 = new SpaceWar.SpacePanel(); + float var69 = var68.getAlignmentX(); + var68.setVisible(false); + java.awt.Dimension var72 = var68.getPreferredSize(); + boolean var73 = var68.getVerifyInputWhenFocusTarget(); + java.awt.Component var76 = var68.findComponentAt(10, 1); + var66.addKeyListener((java.awt.event.KeyListener)var68); + java.awt.Dimension var78 = var68.getMinimumSize(); + var57.setMinimumSize(var78); + java.awt.Dimension var80 = var4.getSize(var78); + var0.setMaximumSize(var78); + java.lang.String var82 = var0.getUIClassID(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var9); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertNull(var21); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var28 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var31 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var34); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var35); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var39 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var41 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var46 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var50); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var58 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var61 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var62); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var65 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var67 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var69 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var72); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var73 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var76); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var78); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var80); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var82 + "' != '" + "PanelUI"+ "'", var82.equals("PanelUI")); + + } + +} diff --git a/test/randoop/RandoopTest2.java b/test/randoop/RandoopTest2.java new file mode 100644 index 0000000..4c7eba9 --- /dev/null +++ b/test/randoop/RandoopTest2.java @@ -0,0 +1,33467 @@ +package randoop; + +import junit.framework.*; + +public class RandoopTest2 extends TestCase { + + public static boolean debug = false; + + public void test1() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test1"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + var0.enable(false); + boolean var7 = var0.getFocusTraversalKeysEnabled(); + var0.setToolTipText("PanelUI"); + SpaceWar.SpacePanel var10 = new SpaceWar.SpacePanel(); + float var11 = var10.getAlignmentX(); + var10.setVisible(false); + boolean var14 = var10.isDoubleBuffered(); + java.awt.dnd.DropTarget var15 = var10.getDropTarget(); + var10.show(false); + boolean var18 = var10.isPaintingForPrint(); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + float var20 = var19.getAlignmentX(); + var19.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var25 = var19.getMouseListeners(); + int var26 = var19.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var27 = var19.getInputMethodRequests(); + var10.addKeyListener((java.awt.event.KeyListener)var19); + SpaceWar.SpacePanel var29 = new SpaceWar.SpacePanel(); + float var30 = var29.getAlignmentX(); + var29.setVisible(false); + boolean var33 = var29.isDoubleBuffered(); + var29.list(); + float var35 = var29.getAlignmentY(); + boolean var36 = var19.isFocusCycleRoot((java.awt.Container)var29); + var29.firePropertyChange("", 1L, 1L); + var29.setVerifyInputWhenFocusTarget(true); + SpaceWar.SpacePanel var43 = new SpaceWar.SpacePanel(); + var43.setName(""); + java.awt.Dimension var46 = var43.minimumSize(); + boolean var47 = var43.isDoubleBuffered(); + SpaceWar.SpacePanel var48 = new SpaceWar.SpacePanel(); + float var49 = var48.getAlignmentX(); + SpaceWar.SpacePanel var50 = new SpaceWar.SpacePanel(); + float var51 = var50.getAlignmentX(); + var50.setVisible(false); + java.awt.Dimension var54 = var50.getPreferredSize(); + boolean var55 = var50.getVerifyInputWhenFocusTarget(); + java.awt.Component var58 = var50.findComponentAt(10, 1); + var48.addKeyListener((java.awt.event.KeyListener)var50); + var50.repaint(100, (-1), (-1), 1); + SpaceWar.SpacePanel var65 = new SpaceWar.SpacePanel(); + java.awt.Color var66 = var65.getBackground(); + var65.repaint(); + java.awt.im.InputMethodRequests var68 = var65.getInputMethodRequests(); + java.awt.GraphicsConfiguration var69 = var65.getGraphicsConfiguration(); + var50.remove((java.awt.Component)var65); + java.awt.Font var71 = var65.getFont(); + java.awt.FontMetrics var72 = var43.getFontMetrics(var71); + java.awt.FontMetrics var73 = var29.getFontMetrics(var71); + var0.setFont(var71); + java.awt.Insets var75 = var0.insets(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var25); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var27); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var30 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var33 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var35 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var36 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var46); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var47 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var49 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var51 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var54); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var55 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var58); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var66); + + // Regression assertion (captures the current behavior of the code) + assertNull(var68); + + // Regression assertion (captures the current behavior of the code) + assertNull(var69); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var71); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var72); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var73); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var75); + + } + + public void test2() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test2"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + var0.setName(""); + java.awt.ComponentOrientation var3 = var0.getComponentOrientation(); + int var4 = var0.getComponentCount(); + java.awt.Dimension var5 = var0.getMaximumSize(); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + float var7 = var6.getAlignmentX(); + var6.setVisible(false); + boolean var10 = var6.isDoubleBuffered(); + var6.list(); + SpaceWar.SpacePanel var12 = new SpaceWar.SpacePanel(); + float var13 = var12.getAlignmentX(); + var12.setVisible(false); + boolean var16 = var12.isDoubleBuffered(); + java.awt.dnd.DropTarget var17 = var12.getDropTarget(); + var12.show(false); + java.awt.Rectangle var20 = var12.getVisibleRect(); + java.awt.Rectangle var21 = var6.getBounds(var20); + javax.swing.JToolTip var22 = var6.createToolTip(); + var6.firePropertyChange("", false, false); + boolean var27 = var6.isFocusTraversalPolicySet(); + SpaceWar.SpacePanel var28 = new SpaceWar.SpacePanel(); + float var29 = var28.getAlignmentX(); + var28.setVisible(false); + java.awt.Dimension var32 = var28.getPreferredSize(); + boolean var33 = var28.getVerifyInputWhenFocusTarget(); + java.awt.Component var36 = var28.findComponentAt(10, 1); + boolean var37 = var28.requestDefaultFocus(); + var28.setVerifyInputWhenFocusTarget(false); + java.awt.Point var40 = var28.getLocation(); + java.awt.Point var41 = var6.getLocation(var40); + SpaceWar.SpacePanel var42 = new SpaceWar.SpacePanel(); + float var43 = var42.getAlignmentX(); + var42.setVisible(false); + boolean var46 = var42.isDoubleBuffered(); + var42.list(); + SpaceWar.SpacePanel var48 = new SpaceWar.SpacePanel(); + float var49 = var48.getAlignmentX(); + var48.setVisible(false); + boolean var52 = var48.isDoubleBuffered(); + java.awt.dnd.DropTarget var53 = var48.getDropTarget(); + var48.show(false); + java.awt.Rectangle var56 = var48.getVisibleRect(); + java.awt.image.BufferedImage var58 = var48.loadImg("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + boolean var59 = var42.isAncestorOf((java.awt.Component)var48); + SpaceWar.SpacePanel var60 = new SpaceWar.SpacePanel(); + java.awt.Color var61 = var60.getBackground(); + var60.repaint(); + var60.setRequestFocusEnabled(false); + var60.setIgnoreRepaint(false); + java.lang.String var67 = var60.toString(); + java.awt.Color var68 = var60.getBackground(); + SpaceWar.SpacePanel var69 = new SpaceWar.SpacePanel(); + float var70 = var69.getAlignmentX(); + var69.setVisible(false); + java.awt.Dimension var73 = var69.getPreferredSize(); + java.awt.Toolkit var74 = var69.getToolkit(); + java.awt.Toolkit var75 = var69.getToolkit(); + SpaceWar.Player var76 = new SpaceWar.Player(); + var76.increasePower(25); + int var79 = var76.getScore(); + var76.setRigth(true); + var76.loseLife(); + var60.putClientProperty((java.lang.Object)var69, (java.lang.Object)var76); + java.awt.Rectangle var84 = var69.bounds(); + java.awt.Rectangle var85 = var48.getBounds(var84); + var6.paintImmediately(var85); + var0.computeVisibleRect(var85); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var21); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var29 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var32); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var33 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var36); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var40); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var41); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var43 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var46 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var49 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var52 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var53); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var56); + + // Regression assertion (captures the current behavior of the code) + assertNull(var58); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var59 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var61); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var67 + "' != '" + "SpaceWar.SpacePanel[,0,0,0var67,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"+ "'", var67.equals("SpaceWar.SpacePanel[,0,0,0var67,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]")); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var68); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var70 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var73); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var74); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var75); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var79 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var84); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var85); + + } + + public void test3() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test3"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + float var7 = var6.getAlignmentX(); + var6.setVisible(false); + SpaceWar.SpacePanel var10 = new SpaceWar.SpacePanel(); + java.awt.Color var11 = var10.getBackground(); + var6.setForeground(var11); + var0.setBackground(var11); + var0.grabFocus(); + SpaceWar.SpacePanel var15 = new SpaceWar.SpacePanel(); + float var16 = var15.getAlignmentX(); + var15.setVisible(false); + boolean var19 = var15.isDoubleBuffered(); + java.awt.dnd.DropTarget var20 = var15.getDropTarget(); + boolean var21 = var15.isFocusCycleRoot(); + SpaceWar.SpacePanel var22 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var23 = new SpaceWar.SpacePanel(); + java.awt.Color var24 = var23.getBackground(); + SpaceWar.SpacePanel var25 = new SpaceWar.SpacePanel(); + float var26 = var25.getAlignmentX(); + var25.setVisible(false); + var25.nextFocus(); + var25.updateUI(); + var25.enableInputMethods(true); + var22.add((java.awt.Component)var23, (java.lang.Object)true); + java.awt.Dimension var34 = var23.getPreferredSize(); + var15.setSize(var34); + var0.setMaximumSize(var34); + SpaceWar.SpacePanel var37 = new SpaceWar.SpacePanel(); + float var38 = var37.getAlignmentX(); + var37.setVisible(false); + boolean var41 = var37.isDoubleBuffered(); + var37.list(); + SpaceWar.SpacePanel var43 = new SpaceWar.SpacePanel(); + float var44 = var43.getAlignmentX(); + var43.setVisible(false); + boolean var47 = var43.isDoubleBuffered(); + java.awt.dnd.DropTarget var48 = var43.getDropTarget(); + var43.show(false); + java.awt.Rectangle var51 = var43.getVisibleRect(); + java.awt.image.BufferedImage var53 = var43.loadImg("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + boolean var54 = var37.isAncestorOf((java.awt.Component)var43); + SpaceWar.SpacePanel var55 = new SpaceWar.SpacePanel(); + java.awt.Color var56 = var55.getBackground(); + var55.repaint(); + var55.setRequestFocusEnabled(false); + var55.setIgnoreRepaint(false); + java.lang.String var62 = var55.toString(); + java.awt.Color var63 = var55.getBackground(); + SpaceWar.SpacePanel var64 = new SpaceWar.SpacePanel(); + float var65 = var64.getAlignmentX(); + var64.setVisible(false); + java.awt.Dimension var68 = var64.getPreferredSize(); + java.awt.Toolkit var69 = var64.getToolkit(); + java.awt.Toolkit var70 = var64.getToolkit(); + SpaceWar.Player var71 = new SpaceWar.Player(); + var71.increasePower(25); + int var74 = var71.getScore(); + var71.setRigth(true); + var71.loseLife(); + var55.putClientProperty((java.lang.Object)var64, (java.lang.Object)var71); + java.awt.Rectangle var79 = var64.bounds(); + java.awt.Rectangle var80 = var43.getBounds(var79); + var0.repaint(var79); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var34); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var38 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var41 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var44 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var47 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var48); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var51); + + // Regression assertion (captures the current behavior of the code) + assertNull(var53); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var54 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var56); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var62 + "' != '" + "SpaceWar.SpacePanel[,0,0,0var62,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"+ "'", var62.equals("SpaceWar.SpacePanel[,0,0,0var62,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]")); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var63); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var65 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var68); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var69); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var70); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var74 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var79); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var80); + + } + + public void test4() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test4"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + float var7 = var6.getAlignmentX(); + var6.setVisible(false); + java.awt.Dimension var10 = var6.getPreferredSize(); + var0.setMaximumSize(var10); + boolean var12 = var0.getVerifyInputWhenFocusTarget(); + var0.transferFocusUpCycle(); + java.awt.Point var14 = var0.location(); + SpaceWar.SpacePanel var15 = new SpaceWar.SpacePanel(); + java.awt.Color var16 = var15.getBackground(); + var15.repaint(); + java.awt.im.InputMethodRequests var18 = var15.getInputMethodRequests(); + var15.setDoubleBuffered(true); + SpaceWar.SpacePanel var21 = new SpaceWar.SpacePanel(); + float var22 = var21.getAlignmentX(); + boolean var23 = var21.hasFocus(); + java.awt.Insets var24 = var21.getInsets(); + java.awt.Insets var25 = var15.getInsets(var24); + SpaceWar.SpacePanel var26 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var27 = new SpaceWar.SpacePanel(); + java.awt.Color var28 = var27.getBackground(); + SpaceWar.SpacePanel var29 = new SpaceWar.SpacePanel(); + float var30 = var29.getAlignmentX(); + var29.setVisible(false); + var29.nextFocus(); + var29.updateUI(); + var29.enableInputMethods(true); + var26.add((java.awt.Component)var27, (java.lang.Object)true); + java.awt.Image var40 = var27.createImage(1, (-1)); + SpaceWar.SpacePanel var41 = new SpaceWar.SpacePanel(); + float var42 = var41.getAlignmentX(); + var41.setVisible(false); + var41.nextFocus(); + var41.updateUI(); + var41.enableInputMethods(true); + SpaceWar.SpacePanel var49 = new SpaceWar.SpacePanel(); + float var50 = var49.getAlignmentX(); + boolean var51 = var49.hasFocus(); + java.awt.Insets var52 = var49.getInsets(); + java.awt.Insets var53 = var41.getInsets(var52); + java.awt.Insets var54 = var27.getInsets(var52); + java.awt.Insets var55 = var15.getInsets(var52); + java.awt.Component var56 = var0.add((java.awt.Component)var15); + var15.removeNotify(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var22 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var25); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var28); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var30 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNull(var40); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var42 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var50 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var51 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var52); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var53); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var54); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var55); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var56); + + } + + public void test5() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test5"); + + + SpaceWar.Enemy var2 = new SpaceWar.Enemy(0, 100); + boolean var3 = var2.isDead(); + double var4 = var2.getY(); + int var5 = var2.getType(); + java.awt.image.BufferedImage var7 = var2.loadImg("PanelUI"); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0.0d); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var7); + + } + + public void test6() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test6"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.setEnabled(false); + var0.invalidate(); + var0.resetKeyboardActions(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + } + + public void test7() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test7"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + var0.setName(""); + java.awt.Graphics var3 = var0.getGraphics(); + java.awt.event.MouseMotionListener[] var4 = var0.getMouseMotionListeners(); + boolean var5 = var0.getIgnoreRepaint(); + var0.transferFocusBackward(); + var0.enable(); + java.awt.Container var8 = var0.getTopLevelAncestor(); + var0.invalidate(); + SpaceWar.SpacePanel var10 = new SpaceWar.SpacePanel(); + float var11 = var10.getAlignmentX(); + var10.setVisible(false); + var10.nextFocus(); + var10.updateUI(); + var10.enableInputMethods(true); + java.awt.Point var18 = var10.location(); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + float var20 = var19.getAlignmentX(); + var19.setVisible(false); + var19.nextFocus(); + java.awt.Component var24 = var10.add((java.awt.Component)var19); + SpaceWar.SpacePanel var25 = new SpaceWar.SpacePanel(); + float var26 = var25.getAlignmentX(); + var25.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var31 = var25.getMouseListeners(); + java.awt.Dimension var32 = var25.getPreferredSize(); + java.util.Locale var33 = var25.getLocale(); + var25.setFocusable(true); + var25.setSize(3, 10); + SpaceWar.SpacePanel var39 = new SpaceWar.SpacePanel(); + float var40 = var39.getAlignmentX(); + var39.setVisible(false); + java.awt.Dimension var43 = var39.getPreferredSize(); + boolean var44 = var39.getVerifyInputWhenFocusTarget(); + java.awt.Dimension var45 = var39.size(); + var25.setSize(var45); + var10.resize(var45); + SpaceWar.SpacePanel var48 = new SpaceWar.SpacePanel(); + float var49 = var48.getAlignmentX(); + var48.setVisible(false); + SpaceWar.SpacePanel var52 = new SpaceWar.SpacePanel(); + java.awt.Color var53 = var52.getBackground(); + var48.setForeground(var53); + SpaceWar.SpacePanel var55 = new SpaceWar.SpacePanel(); + float var56 = var55.getAlignmentX(); + var55.setVisible(false); + boolean var59 = var55.isDoubleBuffered(); + java.awt.dnd.DropTarget var60 = var55.getDropTarget(); + var55.show(false); + java.awt.Rectangle var63 = var55.getVisibleRect(); + var48.repaint(var63); + java.awt.FocusTraversalPolicy var65 = var48.getFocusTraversalPolicy(); + var48.resetKeyboardActions(); + SpaceWar.SpacePanel var67 = new SpaceWar.SpacePanel(); + float var68 = var67.getAlignmentX(); + var67.setVisible(false); + boolean var71 = var67.isDoubleBuffered(); + java.awt.dnd.DropTarget var72 = var67.getDropTarget(); + var67.show(false); + java.awt.Rectangle var75 = var67.getVisibleRect(); + var48.computeVisibleRect(var75); + var10.setBounds(var75); + var0.repaint(var75); + + // Regression assertion (captures the current behavior of the code) + assertNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var4); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var31); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var32); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var33); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var40 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var43); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var44 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var45); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var49 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var53); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var56 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var59 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var60); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var63); + + // Regression assertion (captures the current behavior of the code) + assertNull(var65); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var68 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var71 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var72); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var75); + + } + + public void test8() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test8"); + + + SpaceWar.Enemy var2 = new SpaceWar.Enemy(0, 100); + var2.explode(); + boolean var4 = var2.isDead(); + double var5 = var2.getX(); + double var6 = var2.getY(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == 579.3282808260785d); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == 0.0d); + + } + + public void test9() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test9"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.removeNotify(); + java.awt.dnd.DropTarget var3 = var0.getDropTarget(); + SpaceWar.SpacePanel var4 = new SpaceWar.SpacePanel(); + float var5 = var4.getAlignmentX(); + var4.firePropertyChange("", (-1), 1); + java.awt.Rectangle var10 = var4.getVisibleRect(); + var0.repaint(var10); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var10); + + } + + public void test10() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test10"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + var0.show(false); + boolean var8 = var0.isPaintingForPrint(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var15 = var9.getMouseListeners(); + int var16 = var9.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var17 = var9.getInputMethodRequests(); + var0.addKeyListener((java.awt.event.KeyListener)var9); + boolean var19 = var0.isDisplayable(); + java.awt.Insets var20 = var0.getInsets(); + SpaceWar.SpacePanel var21 = new SpaceWar.SpacePanel(); + float var22 = var21.getAlignmentX(); + var21.setVisible(false); + var21.nextFocus(); + var21.updateUI(); + var21.enableInputMethods(true); + java.awt.Point var29 = var21.location(); + SpaceWar.SpacePanel var30 = new SpaceWar.SpacePanel(); + float var31 = var30.getAlignmentX(); + var30.setVisible(false); + var30.nextFocus(); + java.awt.Component var35 = var21.add((java.awt.Component)var30); + SpaceWar.SpacePanel var36 = new SpaceWar.SpacePanel(); + float var37 = var36.getAlignmentX(); + var36.setVisible(false); + var36.nextFocus(); + var36.updateUI(); + var36.enableInputMethods(true); + java.awt.Point var45 = var36.getMousePosition(false); + SpaceWar.SpacePanel var46 = new SpaceWar.SpacePanel(); + float var47 = var46.getAlignmentX(); + SpaceWar.SpacePanel var48 = new SpaceWar.SpacePanel(); + float var49 = var48.getAlignmentX(); + var48.setVisible(false); + java.awt.Dimension var52 = var48.getPreferredSize(); + boolean var53 = var48.getVerifyInputWhenFocusTarget(); + java.awt.Component var56 = var48.findComponentAt(10, 1); + var46.addKeyListener((java.awt.event.KeyListener)var48); + var48.repaint(100, (-1), (-1), 1); + SpaceWar.SpacePanel var63 = new SpaceWar.SpacePanel(); + java.awt.Color var64 = var63.getBackground(); + var63.repaint(); + java.awt.im.InputMethodRequests var66 = var63.getInputMethodRequests(); + java.awt.GraphicsConfiguration var67 = var63.getGraphicsConfiguration(); + var48.remove((java.awt.Component)var63); + java.awt.Font var69 = var63.getFont(); + var36.setFont(var69); + var30.setFont(var69); + java.awt.FontMetrics var72 = var0.getFontMetrics(var69); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var22 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var29); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var31 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var35); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNull(var45); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var47 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var49 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var52); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var53 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var56); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var64); + + // Regression assertion (captures the current behavior of the code) + assertNull(var66); + + // Regression assertion (captures the current behavior of the code) + assertNull(var67); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var69); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var72); + + } + + public void test11() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test11"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + java.awt.Dimension var4 = var0.getPreferredSize(); + java.awt.Toolkit var5 = var0.getToolkit(); + boolean var6 = var0.isFocusable(); + javax.swing.KeyStroke[] var7 = var0.getRegisteredKeyStrokes(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + SpaceWar.SpacePanel var10 = new SpaceWar.SpacePanel(); + float var11 = var10.getAlignmentX(); + var10.setVisible(false); + java.awt.Dimension var14 = var10.getPreferredSize(); + boolean var15 = var10.getVerifyInputWhenFocusTarget(); + java.awt.Component var18 = var10.findComponentAt(10, 1); + var8.addKeyListener((java.awt.event.KeyListener)var10); + var10.repaint(100, (-1), (-1), 1); + boolean var25 = var0.isAncestorOf((java.awt.Component)var10); + java.awt.image.VolatileImage var28 = var10.createVolatileImage(499, (-1)); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var4); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var28); + + } + + public void test12() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test12"); + + + SpaceWar.Player var0 = new SpaceWar.Player(); + int var1 = var0.getR(); + var0.setUp(false); + var0.update(); + java.awt.image.BufferedImage var6 = var0.loadImg("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + int var7 = var0.getX(); + var0.setUp(true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 25); + + // Regression assertion (captures the current behavior of the code) + assertNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 400); + + } + + public void test13() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test13"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + var0.show(false); + boolean var8 = var0.isPaintingForPrint(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var15 = var9.getMouseListeners(); + int var16 = var9.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var17 = var9.getInputMethodRequests(); + var0.addKeyListener((java.awt.event.KeyListener)var9); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + float var20 = var19.getAlignmentX(); + var19.setVisible(false); + boolean var23 = var19.isDoubleBuffered(); + var19.list(); + float var25 = var19.getAlignmentY(); + boolean var26 = var9.isFocusCycleRoot((java.awt.Container)var19); + javax.swing.JPopupMenu var27 = var19.getComponentPopupMenu(); + var19.move((-1), 100); + var19.validate(); + java.awt.Rectangle var32 = var19.getVisibleRect(); + java.awt.image.BufferedImage var34 = var19.loadImg(""); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var27); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var32); + + // Regression assertion (captures the current behavior of the code) + assertNull(var34); + + } + + public void test14() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test14"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + SpaceWar.SpacePanel var2 = new SpaceWar.SpacePanel(); + float var3 = var2.getAlignmentX(); + var2.setVisible(false); + java.awt.Dimension var6 = var2.getPreferredSize(); + boolean var7 = var2.getVerifyInputWhenFocusTarget(); + java.awt.Component var10 = var2.findComponentAt(10, 1); + var0.addKeyListener((java.awt.event.KeyListener)var2); + var2.repaint(100, (-1), (-1), 1); + java.awt.image.ColorModel var17 = var2.getColorModel(); + boolean var18 = var2.isFocusTraversalPolicyProvider(); + var2.setVerifyInputWhenFocusTarget(true); + java.awt.Point var22 = var2.getMousePosition(false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var22); + + } + + public void test15() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test15"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var1 = new SpaceWar.SpacePanel(); + java.awt.Color var2 = var1.getBackground(); + SpaceWar.SpacePanel var3 = new SpaceWar.SpacePanel(); + float var4 = var3.getAlignmentX(); + var3.setVisible(false); + var3.nextFocus(); + var3.updateUI(); + var3.enableInputMethods(true); + var0.add((java.awt.Component)var1, (java.lang.Object)true); + boolean var12 = var0.isMinimumSizeSet(); + java.awt.event.HierarchyListener[] var13 = var0.getHierarchyListeners(); + SpaceWar.SpacePanel var14 = new SpaceWar.SpacePanel(); + float var15 = var14.getAlignmentX(); + var14.setVisible(false); + SpaceWar.SpacePanel var18 = new SpaceWar.SpacePanel(); + java.awt.Color var19 = var18.getBackground(); + var14.setForeground(var19); + SpaceWar.SpacePanel var21 = new SpaceWar.SpacePanel(); + float var22 = var21.getAlignmentX(); + var21.setVisible(false); + boolean var25 = var21.isDoubleBuffered(); + java.awt.dnd.DropTarget var26 = var21.getDropTarget(); + var21.show(false); + java.awt.Rectangle var29 = var21.getVisibleRect(); + var14.repaint(var29); + java.awt.FocusTraversalPolicy var31 = var14.getFocusTraversalPolicy(); + java.awt.im.InputMethodRequests var32 = var14.getInputMethodRequests(); + var14.layout(); + boolean var34 = var14.isFocusTraversalPolicyProvider(); + java.lang.Object var35 = var0.getClientProperty((java.lang.Object)var34); + var0.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", true, true); + boolean var40 = var0.requestDefaultFocus(); + SpaceWar.SpacePanel var41 = new SpaceWar.SpacePanel(); + float var42 = var41.getAlignmentX(); + var41.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var47 = var41.getMouseListeners(); + int var48 = var41.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var49 = var41.getInputMethodRequests(); + var41.removeNotify(); + var41.enable(); + java.lang.Object var52 = var41.getTreeLock(); + var41.setAlignmentY(0.0f); + java.awt.Rectangle var55 = var41.getVisibleRect(); + java.lang.Object var56 = var0.getClientProperty((java.lang.Object)var41); + // The following exception was thrown during execution. + // This behavior will recorded for regression testing. + try { + java.awt.Component var58 = var41.getComponent(100); + fail("Expected exception of type java.lang.ArrayIndexOutOfBoundsException"); + } catch (java.lang.ArrayIndexOutOfBoundsException e) { + // Expected exception. + } + + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var2); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var22 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var29); + + // Regression assertion (captures the current behavior of the code) + assertNull(var31); + + // Regression assertion (captures the current behavior of the code) + assertNull(var32); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var34 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var35); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var40 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var42 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var47); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var48 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var49); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var52); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var55); + + // Regression assertion (captures the current behavior of the code) + assertNull(var56); + + } + + public void test16() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test16"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + SpaceWar.SpacePanel var2 = new SpaceWar.SpacePanel(); + float var3 = var2.getAlignmentX(); + var2.setVisible(false); + java.awt.Dimension var6 = var2.getPreferredSize(); + boolean var7 = var2.getVerifyInputWhenFocusTarget(); + java.awt.Component var10 = var2.findComponentAt(10, 1); + var0.addKeyListener((java.awt.event.KeyListener)var2); + var2.repaint(100, (-1), (-1), 1); + SpaceWar.SpacePanel var17 = new SpaceWar.SpacePanel(); + java.awt.Color var18 = var17.getBackground(); + var17.repaint(); + java.awt.im.InputMethodRequests var20 = var17.getInputMethodRequests(); + java.awt.GraphicsConfiguration var21 = var17.getGraphicsConfiguration(); + var2.remove((java.awt.Component)var17); + var17.setName(""); + java.awt.Component[] var25 = var17.getComponents(); + SpaceWar.SpacePanel var26 = new SpaceWar.SpacePanel(); + float var27 = var26.getAlignmentX(); + var26.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var32 = var26.getMouseListeners(); + java.awt.Dimension var33 = var26.getPreferredSize(); + java.util.Locale var34 = var26.getLocale(); + var26.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=1.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", true, true); + // The following exception was thrown during execution. + // This behavior will recorded for regression testing. + try { + java.awt.Component var40 = var17.add((java.awt.Component)var26, 1); + fail("Expected exception of type java.lang.IllegalArgumentException"); + } catch (java.lang.IllegalArgumentException e) { + // Expected exception. + } + + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertNull(var21); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var25); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var32); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var33); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var34); + + } + + public void test17() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test17"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + java.lang.String var2 = var0.toString(); + var0.setAlignmentX(0.5f); + SpaceWar.SpacePanel var5 = new SpaceWar.SpacePanel(); + float var6 = var5.getAlignmentX(); + var5.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var11 = var5.getUI(); + java.awt.im.InputMethodRequests var12 = var5.getInputMethodRequests(); + SpaceWar.SpacePanel var13 = new SpaceWar.SpacePanel(); + float var14 = var13.getAlignmentX(); + var13.setVisible(false); + var13.nextFocus(); + var13.updateUI(); + var13.enableInputMethods(true); + var13.setSize((-1), 1); + SpaceWar.SpacePanel var24 = new SpaceWar.SpacePanel(); + var24.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var5.add((java.awt.Component)var13, (java.lang.Object)"SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + SpaceWar.SpacePanel var30 = new SpaceWar.SpacePanel(); + float var31 = var30.getAlignmentX(); + var30.setVisible(false); + java.awt.Dimension var34 = var30.getPreferredSize(); + java.awt.Toolkit var35 = var30.getToolkit(); + java.awt.Toolkit var36 = var30.getToolkit(); + java.awt.Component var37 = var13.add((java.awt.Component)var30); + int var38 = var13.getY(); + int var41 = var13.getBaseline(25, 10); + var0.setComponentZOrder((java.awt.Component)var13, 0); + var0.setBounds(499, 3, 25, 400); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var2 + "' != '" + "SpaceWar.SpacePanel[,0,0,0var2,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"+ "'", var2.equals("SpaceWar.SpacePanel[,0,0,0var2,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]")); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var31 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var34); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var35); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var36); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var37); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var38 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var41 == (-1)); + + } + + public void test18() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test18"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.repaint(1L); + SpaceWar.SpacePanel var7 = new SpaceWar.SpacePanel(); + float var8 = var7.getAlignmentX(); + var7.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var13 = new SpaceWar.SpacePanel(); + float var14 = var13.getAlignmentX(); + var13.setVisible(false); + java.awt.Dimension var17 = var13.getPreferredSize(); + var7.setMaximumSize(var17); + var0.setPreferredSize(var17); + javax.swing.plaf.PanelUI var20 = var0.getUI(); + SpaceWar.SpacePanel var21 = new SpaceWar.SpacePanel(); + float var22 = var21.getAlignmentX(); + var21.setVisible(false); + var21.nextFocus(); + var21.reshape((-1), 1, (-1), 10); + var21.disable(); + java.awt.LayoutManager var32 = var21.getLayout(); + java.awt.Container var33 = var21.getParent(); + java.lang.String var34 = var21.getUIClassID(); + SpaceWar.Enemy var37 = new SpaceWar.Enemy(0, 10); + var0.add((java.awt.Component)var21, (java.lang.Object)10); + java.awt.event.MouseListener[] var39 = var0.getMouseListeners(); + // The following exception was thrown during execution. + // This behavior will recorded for regression testing. + try { + java.awt.Component var41 = var0.getComponent(25); + fail("Expected exception of type java.lang.ArrayIndexOutOfBoundsException"); + } catch (java.lang.ArrayIndexOutOfBoundsException e) { + // Expected exception. + } + + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var22 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var32); + + // Regression assertion (captures the current behavior of the code) + assertNull(var33); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var34 + "' != '" + "PanelUI"+ "'", var34.equals("PanelUI")); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var39); + + } + + public void test19() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test19"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.setInheritsPopupMenu(false); + boolean var6 = var0.isDoubleBuffered(); + boolean var7 = var0.isMinimumSizeSet(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var14 = new SpaceWar.SpacePanel(); + float var15 = var14.getAlignmentX(); + var14.setVisible(false); + java.awt.Dimension var18 = var14.getPreferredSize(); + var8.setMaximumSize(var18); + boolean var20 = var8.getVerifyInputWhenFocusTarget(); + javax.accessibility.AccessibleContext var21 = var8.getAccessibleContext(); + boolean var22 = var8.isDoubleBuffered(); + java.awt.Rectangle var23 = var8.getVisibleRect(); + var0.setBounds(var23); + SpaceWar.SpacePanel var25 = new SpaceWar.SpacePanel(); + float var26 = var25.getAlignmentX(); + var25.firePropertyChange("", (-1), 1); + java.awt.Rectangle var31 = var25.getVisibleRect(); + java.awt.Rectangle var32 = var0.getBounds(var31); + java.awt.Container var33 = var0.getParent(); + boolean var34 = var0.isFocusOwner(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var21); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var22 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var23); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var31); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var32); + + // Regression assertion (captures the current behavior of the code) + assertNull(var33); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var34 == false); + + } + + public void test20() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test20"); + + + SpaceWar.Text var4 = new SpaceWar.Text(296.18869876326414d, 0.0d, 1L, "SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + + } + + public void test21() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test21"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.reshape((-1), 1, (-1), 10); + var0.disable(); + java.awt.LayoutManager var11 = var0.getLayout(); + java.awt.Container var12 = var0.getParent(); + boolean var13 = var0.isPaintingForPrint(); + SpaceWar.SpacePanel var14 = new SpaceWar.SpacePanel(); + float var15 = var14.getAlignmentX(); + var14.setVisible(false); + var14.nextFocus(); + var14.reshape((-1), 1, (-1), 10); + SpaceWar.SpacePanel var24 = new SpaceWar.SpacePanel(); + java.awt.Color var25 = var24.getBackground(); + var24.repaint(); + var24.setRequestFocusEnabled(false); + var24.reshape(100, 0, 100, 0); + java.awt.Component var34 = var14.add((java.awt.Component)var24); + SpaceWar.SpacePanel var35 = new SpaceWar.SpacePanel(); + var35.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + javax.swing.plaf.PanelUI var40 = var35.getUI(); + SpaceWar.SpacePanel var41 = new SpaceWar.SpacePanel(); + float var42 = var41.getAlignmentX(); + var41.setVisible(false); + var41.nextFocus(); + var41.repaint(1L); + SpaceWar.SpacePanel var48 = new SpaceWar.SpacePanel(); + float var49 = var48.getAlignmentX(); + var48.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var54 = new SpaceWar.SpacePanel(); + float var55 = var54.getAlignmentX(); + var54.setVisible(false); + java.awt.Dimension var58 = var54.getPreferredSize(); + var48.setMaximumSize(var58); + var41.setPreferredSize(var58); + var35.setMaximumSize(var58); + java.awt.Dimension var62 = var24.getSize(var58); + var0.setSize(var62); + SpaceWar.SpacePanel var64 = new SpaceWar.SpacePanel(); + float var65 = var64.getAlignmentX(); + var64.setVisible(false); + boolean var68 = var64.isDoubleBuffered(); + var64.enable(false); + var0.removeKeyListener((java.awt.event.KeyListener)var64); + var0.setRequestFocusEnabled(true); + SpaceWar.SpacePanel var75 = new SpaceWar.SpacePanel(); + var75.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + java.awt.event.ContainerListener[] var80 = var75.getContainerListeners(); + var75.enableInputMethods(true); + java.awt.Component var83 = var0.add("", (java.awt.Component)var75); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var25); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var34); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var40); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var42 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var49 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var55 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var58); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var62); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var65 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var68 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var80); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var83); + + } + + public void test22() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test22"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + var0.setRequestFocusEnabled(false); + var0.reshape(100, 0, 100, 0); + var0.requestFocus(); + var0.firePropertyChange("hi!", '4', ' '); + java.awt.Point var15 = var0.getLocation(); + java.awt.Dimension var16 = var0.size(); + java.awt.Image var19 = var0.createImage((-1), (-1)); + java.awt.event.ComponentListener[] var20 = var0.getComponentListeners(); + SpaceWar.SpacePanel var21 = new SpaceWar.SpacePanel(); + var21.setName(""); + java.awt.ComponentOrientation var24 = var21.getComponentOrientation(); + var21.firePropertyChange("PanelUI", 1.0f, 0.5f); + int var29 = var0.getComponentZOrder((java.awt.Component)var21); + boolean var31 = var0.areFocusTraversalKeysSet(0); + java.lang.String var32 = var0.toString(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var29 == (-1)); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var31 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var32 + "' != '" + "SpaceWar.SpacePanel[,100,0,100var32,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"+ "'", var32.equals("SpaceWar.SpacePanel[,100,0,100var32,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]")); + + } + + public void test23() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test23"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + java.awt.Point var6 = var0.getMousePosition(); + java.lang.String var7 = var0.getUIClassID(); + var0.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", '#', '4'); + javax.accessibility.AccessibleContext var12 = var0.getAccessibleContext(); + java.lang.String var13 = var0.getUIClassID(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var7 + "' != '" + "PanelUI"+ "'", var7.equals("PanelUI")); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var13 + "' != '" + "PanelUI"+ "'", var13.equals("PanelUI")); + + } + + public void test24() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test24"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + var0.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + java.awt.event.ContainerListener[] var5 = var0.getContainerListeners(); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + float var7 = var6.getAlignmentX(); + var6.setVisible(false); + var6.setInheritsPopupMenu(false); + boolean var12 = var6.isDoubleBuffered(); + SpaceWar.SpacePanel var13 = new SpaceWar.SpacePanel(); + float var14 = var13.getAlignmentX(); + var13.setVisible(false); + var13.nextFocus(); + var13.reshape((-1), 1, (-1), 10); + var13.disable(); + java.awt.LayoutManager var24 = var13.getLayout(); + var6.setLayout(var24); + var0.setLayout(var24); + var0.removeNotify(); + boolean var28 = var0.isPaintingTile(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var28 == false); + + } + + public void test25() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test25"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + boolean var2 = var0.hasFocus(); + boolean var3 = var0.isPreferredSizeSet(); + var0.firePropertyChange("", (short)1, (short)0); + boolean var8 = var0.isMaximumSizeSet(); + var0.list(); + java.awt.Rectangle var10 = var0.getBounds(); + var0.repaint(10L, 100, 10, 3, 10); + boolean var17 = javax.swing.JComponent.isLightweightComponent((java.awt.Component)var0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var2 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == false); + + } + + public void test26() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test26"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + var0.setName(""); + java.awt.Graphics var3 = var0.getGraphics(); + SpaceWar.SpacePanel var4 = new SpaceWar.SpacePanel(); + float var5 = var4.getAlignmentX(); + var4.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var10 = new SpaceWar.SpacePanel(); + float var11 = var10.getAlignmentX(); + var10.setVisible(false); + java.awt.Dimension var14 = var10.getPreferredSize(); + var4.setMaximumSize(var14); + boolean var16 = var4.getVerifyInputWhenFocusTarget(); + int var17 = var4.getX(); + SpaceWar.SpacePanel var18 = new SpaceWar.SpacePanel(); + float var19 = var18.getAlignmentX(); + SpaceWar.SpacePanel var20 = new SpaceWar.SpacePanel(); + float var21 = var20.getAlignmentX(); + var20.setVisible(false); + java.awt.Dimension var24 = var20.getPreferredSize(); + boolean var25 = var20.getVerifyInputWhenFocusTarget(); + java.awt.Component var28 = var20.findComponentAt(10, 1); + var18.addKeyListener((java.awt.event.KeyListener)var20); + var20.repaint(100, (-1), (-1), 1); + SpaceWar.SpacePanel var35 = new SpaceWar.SpacePanel(); + java.awt.Color var36 = var35.getBackground(); + var35.repaint(); + java.awt.im.InputMethodRequests var38 = var35.getInputMethodRequests(); + java.awt.GraphicsConfiguration var39 = var35.getGraphicsConfiguration(); + var20.remove((java.awt.Component)var35); + java.awt.Font var41 = var35.getFont(); + var4.setFont(var41); + var0.setFont(var41); + var0.move(10, 499); + + // Regression assertion (captures the current behavior of the code) + assertNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var28); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var36); + + // Regression assertion (captures the current behavior of the code) + assertNull(var38); + + // Regression assertion (captures the current behavior of the code) + assertNull(var39); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var41); + + } + + public void test27() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test27"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + var0.setRequestFocusEnabled(false); + var0.setIgnoreRepaint(false); + java.lang.String var7 = var0.toString(); + boolean var9 = var0.requestFocus(false); + var0.setDebugGraphicsOptions(25); + var0.setEnabled(true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var7 + "' != '" + "SpaceWar.SpacePanel[,0,0,0var7,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"+ "'", var7.equals("SpaceWar.SpacePanel[,0,0,0var7,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]")); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == false); + + } + + public void test28() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test28"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + var0.setRequestFocusEnabled(false); + var0.reshape(100, 0, 100, 0); + var0.requestFocus(); + var0.firePropertyChange("hi!", '4', ' '); + var0.setFocusable(false); + // The following exception was thrown during execution. + // This behavior will recorded for regression testing. + try { + var0.remove((-1)); + fail("Expected exception of type java.lang.ArrayIndexOutOfBoundsException"); + } catch (java.lang.ArrayIndexOutOfBoundsException e) { + // Expected exception. + } + + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + } + + public void test29() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test29"); + + + SpaceWar.Explosion var4 = new SpaceWar.Explosion(1.0d, 0.0d, (-1), (-1)); + boolean var5 = var4.update(); + boolean var6 = var4.update(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == true); + + } + + public void test30() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test30"); + + + SpaceWar.Player var0 = new SpaceWar.Player(); + var0.increasePower(25); + int var3 = var0.getScore(); + var0.setRigth(true); + var0.loseLife(); + int var7 = var0.getPower(); + var0.setLife(0); + int var10 = var0.getX(); + var0.setLeft(false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 24); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 400); + + } + + public void test31() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test31"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + java.awt.im.InputMethodRequests var3 = var0.getInputMethodRequests(); + var0.setDoubleBuffered(true); + var0.setInheritsPopupMenu(false); + javax.swing.plaf.PanelUI var8 = var0.getUI(); + boolean var9 = var0.isCursorSet(); + SpaceWar.SpacePanel var11 = new SpaceWar.SpacePanel(); + float var12 = var11.getAlignmentX(); + var11.setVisible(false); + var11.nextFocus(); + var11.reshape((-1), 1, (-1), 10); + java.util.Set var22 = var11.getFocusTraversalKeys(3); + var0.setFocusTraversalKeys(2, var22); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var22); + + } + + public void test32() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test32"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + var0.list(); + java.awt.Point var6 = var0.location(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + } + + public void test33() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test33"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + SpaceWar.SpacePanel var4 = new SpaceWar.SpacePanel(); + java.awt.Color var5 = var4.getBackground(); + var0.setForeground(var5); + SpaceWar.SpacePanel var7 = new SpaceWar.SpacePanel(); + float var8 = var7.getAlignmentX(); + var7.setVisible(false); + boolean var11 = var7.isDoubleBuffered(); + java.awt.dnd.DropTarget var12 = var7.getDropTarget(); + var7.show(false); + java.awt.Rectangle var15 = var7.getVisibleRect(); + var0.repaint(var15); + java.awt.FocusTraversalPolicy var17 = var0.getFocusTraversalPolicy(); + java.awt.Component.BaselineResizeBehavior var18 = var0.getBaselineResizeBehavior(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var18); + + } + + public void test34() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test34"); + + + SpaceWar.Bullet var3 = new SpaceWar.Bullet(594.7973940347722d, 3, 100); + boolean var4 = var3.update(); + boolean var5 = var3.update(); + double var6 = var3.getR(); + boolean var7 = var3.update(); + double var8 = var3.getR(); + double var9 = var3.getR(); + boolean var10 = var3.update(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == 5.0d); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 5.0d); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 5.0d); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == true); + + } + + public void test35() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test35"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + var0.setRequestFocusEnabled(false); + var0.reshape(100, 0, 100, 0); + javax.swing.event.AncestorListener[] var10 = var0.getAncestorListeners(); + java.awt.Color var11 = var0.getBackground(); + java.awt.event.ComponentListener[] var12 = var0.getComponentListeners(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var12); + + } + + public void test36() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test36"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + java.awt.event.MouseMotionListener[] var6 = var0.getMouseMotionListeners(); + java.awt.event.ComponentListener[] var7 = var0.getComponentListeners(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + var8.nextFocus(); + var8.repaint(1L); + SpaceWar.SpacePanel var15 = new SpaceWar.SpacePanel(); + float var16 = var15.getAlignmentX(); + var15.setVisible(false); + boolean var19 = var15.isDoubleBuffered(); + var15.list(); + SpaceWar.SpacePanel var21 = new SpaceWar.SpacePanel(); + float var22 = var21.getAlignmentX(); + var21.setVisible(false); + boolean var25 = var21.isDoubleBuffered(); + java.awt.dnd.DropTarget var26 = var21.getDropTarget(); + var21.show(false); + java.awt.Rectangle var29 = var21.getVisibleRect(); + java.awt.Rectangle var30 = var15.getBounds(var29); + var8.setBounds(var30); + var0.paintImmediately(var30); + java.awt.Point var33 = var0.getMousePosition(); + java.awt.image.VolatileImage var36 = var0.createVolatileImage(0, 499); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var22 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var29); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var30); + + // Regression assertion (captures the current behavior of the code) + assertNull(var33); + + // Regression assertion (captures the current behavior of the code) + assertNull(var36); + + } + + public void test37() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test37"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + SpaceWar.SpacePanel var2 = new SpaceWar.SpacePanel(); + float var3 = var2.getAlignmentX(); + var2.setVisible(false); + java.awt.Dimension var6 = var2.getPreferredSize(); + boolean var7 = var2.getVerifyInputWhenFocusTarget(); + java.awt.Component var10 = var2.findComponentAt(10, 1); + var0.addKeyListener((java.awt.event.KeyListener)var2); + var2.repaint(100, (-1), (-1), 1); + SpaceWar.SpacePanel var17 = new SpaceWar.SpacePanel(); + java.awt.Color var18 = var17.getBackground(); + var17.repaint(); + java.awt.im.InputMethodRequests var20 = var17.getInputMethodRequests(); + java.awt.GraphicsConfiguration var21 = var17.getGraphicsConfiguration(); + var2.remove((java.awt.Component)var17); + var2.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", 0.0f, 1.0f); + SpaceWar.SpacePanel var27 = new SpaceWar.SpacePanel(); + float var28 = var27.getAlignmentX(); + var27.setVisible(false); + java.awt.Dimension var31 = var27.getPreferredSize(); + boolean var32 = var27.getVerifyInputWhenFocusTarget(); + SpaceWar.SpacePanel var33 = new SpaceWar.SpacePanel(); + var33.setName(""); + int var36 = var33.getX(); + SpaceWar.SpacePanel var37 = new SpaceWar.SpacePanel(); + float var38 = var37.getAlignmentX(); + var37.setVisible(false); + var37.nextFocus(); + SpaceWar.SpacePanel var42 = new SpaceWar.SpacePanel(); + float var43 = var42.getAlignmentX(); + var42.setVisible(false); + SpaceWar.SpacePanel var46 = new SpaceWar.SpacePanel(); + java.awt.Color var47 = var46.getBackground(); + var42.setForeground(var47); + var37.setBackground(var47); + var33.setBackground(var47); + var2.add((java.awt.Component)var27, (java.lang.Object)var33); + java.awt.Point var52 = var27.location(); + var27.enableInputMethods(false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertNull(var21); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var28 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var31); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var32 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var36 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var38 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var43 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var47); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var52); + + } + + public void test38() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test38"); + + + SpaceWar.PowerUp var3 = new SpaceWar.PowerUp((-1), 400.17452406437286d, 370.2289277239558d); + + } + + public void test39() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test39"); + + + SpaceWar.Bullet var3 = new SpaceWar.Bullet(514.6637810615505d, 25, 100); + double var4 = var3.getX(); + double var5 = var3.getR(); + boolean var6 = var3.update(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 25.0d); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == 5.0d); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == false); + + } + + public void test40() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test40"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + float var7 = var6.getAlignmentX(); + var6.setVisible(false); + java.awt.Dimension var10 = var6.getPreferredSize(); + var0.setMaximumSize(var10); + boolean var12 = var0.getVerifyInputWhenFocusTarget(); + int var13 = var0.getX(); + boolean var14 = var0.isValidateRoot(); + var0.firePropertyChange("SpaceWar.SpacePanel[,-1,1,-1x10,invalid,hidden,disabled,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", (short)(-1), (short)100); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + float var20 = var19.getAlignmentX(); + var19.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var25 = new SpaceWar.SpacePanel(); + float var26 = var25.getAlignmentX(); + var25.setVisible(false); + java.awt.Dimension var29 = var25.getPreferredSize(); + var19.setMaximumSize(var29); + boolean var31 = var19.getVerifyInputWhenFocusTarget(); + var19.transferFocusUpCycle(); + java.awt.Point var33 = var19.location(); + SpaceWar.SpacePanel var34 = new SpaceWar.SpacePanel(); + float var35 = var34.getAlignmentX(); + var34.setVisible(false); + var34.nextFocus(); + var34.reshape((-1), 1, (-1), 10); + var34.disable(); + var34.show(); + SpaceWar.SpacePanel var46 = new SpaceWar.SpacePanel(); + float var47 = var46.getAlignmentX(); + var46.setVisible(false); + boolean var50 = var46.isDoubleBuffered(); + var46.list(); + SpaceWar.SpacePanel var52 = new SpaceWar.SpacePanel(); + float var53 = var52.getAlignmentX(); + var52.setVisible(false); + boolean var56 = var52.isDoubleBuffered(); + java.awt.dnd.DropTarget var57 = var52.getDropTarget(); + var52.show(false); + java.awt.Rectangle var60 = var52.getVisibleRect(); + java.awt.Rectangle var61 = var46.getBounds(var60); + javax.swing.JToolTip var62 = var46.createToolTip(); + var46.firePropertyChange("", false, false); + var46.validate(); + SpaceWar.SpacePanel var68 = new SpaceWar.SpacePanel(); + float var69 = var68.getAlignmentX(); + var68.setVisible(false); + boolean var72 = var68.isDoubleBuffered(); + java.awt.dnd.DropTarget var73 = var68.getDropTarget(); + var68.show(false); + boolean var76 = var68.isPaintingForPrint(); + SpaceWar.SpacePanel var77 = new SpaceWar.SpacePanel(); + float var78 = var77.getAlignmentX(); + var77.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var83 = var77.getMouseListeners(); + int var84 = var77.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var85 = var77.getInputMethodRequests(); + var68.addKeyListener((java.awt.event.KeyListener)var77); + var77.repaint(); + java.awt.Point var88 = var77.location(); + java.awt.Component var89 = var46.getComponentAt(var88); + java.awt.Point var90 = var34.getLocation(var88); + java.awt.Point var91 = var19.getLocation(var88); + java.awt.Point var92 = var0.getLocation(var88); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var29); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var31 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var33); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var35 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var47 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var50 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var53 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var56 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var57); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var60); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var61); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var62); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var69 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var72 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var73); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var76 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var78 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var83); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var84 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var85); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var88); + + // Regression assertion (captures the current behavior of the code) + assertNull(var89); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var90); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var91); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var92); + + } + + public void test41() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test41"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + var0.setName(""); + java.awt.Graphics var3 = var0.getGraphics(); + java.awt.event.MouseMotionListener[] var4 = var0.getMouseMotionListeners(); + boolean var5 = var0.getIgnoreRepaint(); + var0.transferFocusBackward(); + var0.move(100, 2); + SpaceWar.SpacePanel var10 = new SpaceWar.SpacePanel(); + float var11 = var10.getAlignmentX(); + var10.setVisible(false); + var10.setInheritsPopupMenu(false); + boolean var16 = var10.isDoubleBuffered(); + boolean var17 = var10.isMinimumSizeSet(); + SpaceWar.SpacePanel var18 = new SpaceWar.SpacePanel(); + float var19 = var18.getAlignmentX(); + var18.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var24 = new SpaceWar.SpacePanel(); + float var25 = var24.getAlignmentX(); + var24.setVisible(false); + java.awt.Dimension var28 = var24.getPreferredSize(); + var18.setMaximumSize(var28); + boolean var30 = var18.getVerifyInputWhenFocusTarget(); + javax.accessibility.AccessibleContext var31 = var18.getAccessibleContext(); + boolean var32 = var18.isDoubleBuffered(); + java.awt.Rectangle var33 = var18.getVisibleRect(); + var10.setBounds(var33); + SpaceWar.SpacePanel var35 = new SpaceWar.SpacePanel(); + float var36 = var35.getAlignmentX(); + var35.firePropertyChange("", (-1), 1); + java.awt.Rectangle var41 = var35.getVisibleRect(); + java.awt.Rectangle var42 = var10.getBounds(var41); + var0.repaint(var41); + + // Regression assertion (captures the current behavior of the code) + assertNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var4); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var28); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var30 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var31); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var32 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var33); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var36 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var41); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var42); + + } + + public void test42() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test42"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + SpaceWar.SpacePanel var2 = new SpaceWar.SpacePanel(); + float var3 = var2.getAlignmentX(); + var2.setVisible(false); + java.awt.Dimension var6 = var2.getPreferredSize(); + boolean var7 = var2.getVerifyInputWhenFocusTarget(); + java.awt.Component var10 = var2.findComponentAt(10, 1); + var0.addKeyListener((java.awt.event.KeyListener)var2); + SpaceWar.SpacePanel var12 = new SpaceWar.SpacePanel(); + float var13 = var12.getAlignmentX(); + SpaceWar.SpacePanel var14 = new SpaceWar.SpacePanel(); + float var15 = var14.getAlignmentX(); + var14.setVisible(false); + java.awt.Dimension var18 = var14.getPreferredSize(); + boolean var19 = var14.getVerifyInputWhenFocusTarget(); + java.awt.Component var22 = var14.findComponentAt(10, 1); + var12.addKeyListener((java.awt.event.KeyListener)var14); + var14.repaint(100, (-1), (-1), 1); + java.awt.image.ColorModel var29 = var14.getColorModel(); + SpaceWar.SpacePanel var30 = new SpaceWar.SpacePanel(); + float var31 = var30.getAlignmentX(); + var30.setVisible(false); + boolean var34 = var30.isDoubleBuffered(); + var30.list(); + SpaceWar.SpacePanel var36 = new SpaceWar.SpacePanel(); + float var37 = var36.getAlignmentX(); + var36.setVisible(false); + boolean var40 = var36.isDoubleBuffered(); + java.awt.dnd.DropTarget var41 = var36.getDropTarget(); + var36.show(false); + java.awt.Rectangle var44 = var36.getVisibleRect(); + java.awt.image.BufferedImage var46 = var36.loadImg("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + boolean var47 = var30.isAncestorOf((java.awt.Component)var36); + javax.swing.InputVerifier var48 = var36.getInputVerifier(); + var2.putClientProperty((java.lang.Object)var14, (java.lang.Object)var36); + javax.swing.JToolTip var50 = var2.createToolTip(); + boolean var51 = var50.isFocusTraversable(); + var50.layout(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var29); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var31 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var34 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var40 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var41); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var44); + + // Regression assertion (captures the current behavior of the code) + assertNull(var46); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var47 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var48); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var50); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var51 == true); + + } + + public void test43() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test43"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + java.awt.im.InputMethodRequests var3 = var0.getInputMethodRequests(); + var0.setDoubleBuffered(true); + var0.setInheritsPopupMenu(false); + var0.invalidate(); + boolean var9 = var0.isFocusTraversalPolicySet(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == false); + + } + + public void test44() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test44"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + var0.list(); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + float var7 = var6.getAlignmentX(); + var6.setVisible(false); + boolean var10 = var6.isDoubleBuffered(); + java.awt.dnd.DropTarget var11 = var6.getDropTarget(); + var6.show(false); + java.awt.Rectangle var14 = var6.getVisibleRect(); + java.awt.Rectangle var15 = var0.getBounds(var14); + javax.swing.JToolTip var16 = var0.createToolTip(); + var0.firePropertyChange("", false, false); + var0.revalidate(); + int var22 = var0.getComponentCount(); + var0.setAlignmentX(0.0f); + var0.doLayout(); + javax.swing.InputMap var26 = var0.getInputMap(); + boolean var27 = var0.isFocusCycleRoot(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var22 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == false); + + } + + public void test45() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test45"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + var0.show(false); + boolean var8 = var0.isPaintingForPrint(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var15 = var9.getMouseListeners(); + int var16 = var9.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var17 = var9.getInputMethodRequests(); + var0.addKeyListener((java.awt.event.KeyListener)var9); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + float var20 = var19.getAlignmentX(); + var19.setVisible(false); + boolean var23 = var19.isDoubleBuffered(); + var19.list(); + float var25 = var19.getAlignmentY(); + boolean var26 = var9.isFocusCycleRoot((java.awt.Container)var19); + var9.setName("SpaceWar.SpacePanel[,0,0,0x0,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == false); + + } + + public void test46() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test46"); + + + SpaceWar.Bullet var3 = new SpaceWar.Bullet(594.7973940347722d, 3, 100); + double var4 = var3.getR(); + double var5 = var3.getX(); + boolean var6 = var3.update(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 5.0d); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == 3.0d); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == false); + + } + + public void test47() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test47"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.repaint(1L); + var0.firePropertyChange("", (short)(-1), (short)(-1)); + javax.swing.border.Border var11 = var0.getBorder(); + java.awt.im.InputContext var12 = var0.getInputContext(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNull(var12); + + } + + public void test48() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test48"); + + + SpaceWar.Enemy var2 = new SpaceWar.Enemy(25, (-1)); + var2.update(); + var2.explode(); + + } + + public void test49() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test49"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + float var7 = var6.getAlignmentX(); + var6.setVisible(false); + SpaceWar.SpacePanel var10 = new SpaceWar.SpacePanel(); + java.awt.Color var11 = var10.getBackground(); + var6.setForeground(var11); + var0.setBackground(var11); + var0.grabFocus(); + boolean var15 = var0.requestDefaultFocus(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == false); + + } + + public void test50() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test50"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + SpaceWar.SpacePanel var4 = new SpaceWar.SpacePanel(); + java.awt.Color var5 = var4.getBackground(); + var0.setForeground(var5); + javax.swing.InputMap var7 = var0.getInputMap(); + boolean var8 = var0.isEnabled(); + java.awt.Toolkit var9 = var0.getToolkit(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var9); + + } + + public void test51() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test51"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + SpaceWar.SpacePanel var2 = new SpaceWar.SpacePanel(); + float var3 = var2.getAlignmentX(); + var2.setVisible(false); + java.awt.Dimension var6 = var2.getPreferredSize(); + boolean var7 = var2.getVerifyInputWhenFocusTarget(); + java.awt.Component var10 = var2.findComponentAt(10, 1); + var0.addKeyListener((java.awt.event.KeyListener)var2); + var2.repaint(100, (-1), (-1), 1); + SpaceWar.SpacePanel var17 = new SpaceWar.SpacePanel(); + java.awt.Color var18 = var17.getBackground(); + var17.repaint(); + java.awt.im.InputMethodRequests var20 = var17.getInputMethodRequests(); + java.awt.GraphicsConfiguration var21 = var17.getGraphicsConfiguration(); + var2.remove((java.awt.Component)var17); + java.awt.event.HierarchyBoundsListener[] var23 = var2.getHierarchyBoundsListeners(); + boolean var26 = var2.contains(25, 3); + var2.doLayout(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertNull(var21); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var23); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == false); + + } + + public void test52() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test52"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + float var7 = var6.getAlignmentX(); + var6.setVisible(false); + java.awt.Dimension var10 = var6.getPreferredSize(); + var0.setMaximumSize(var10); + boolean var12 = var0.getVerifyInputWhenFocusTarget(); + javax.accessibility.AccessibleContext var13 = var0.getAccessibleContext(); + boolean var14 = var0.isDoubleBuffered(); + boolean var15 = var0.getAutoscrolls(); + var0.repaint(10L, (-1), 25, (-1), 100); + var0.updateUI(); + boolean var23 = var0.isBackgroundSet(); + boolean var24 = var0.isValidateRoot(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var24 == false); + + } + + public void test53() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test53"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + java.awt.Dimension var4 = var0.getPreferredSize(); + boolean var5 = var0.getVerifyInputWhenFocusTarget(); + boolean var6 = var0.isShowing(); + boolean var7 = var0.isBackgroundSet(); + var0.layout(); + java.awt.image.BufferedImage var10 = var0.loadImg("SpaceWar.SpacePanel[,-1,1,-1x10,invalid,hidden,disabled,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var4); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var10); + + } + + public void test54() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test54"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.requestFocus(); + boolean var6 = var0.isBackgroundSet(); + SpaceWar.SpacePanel var7 = new SpaceWar.SpacePanel(); + java.awt.Color var8 = var7.getBackground(); + var7.repaint(); + var7.setRequestFocusEnabled(false); + var7.reshape(100, 0, 100, 0); + SpaceWar.SpacePanel var17 = new SpaceWar.SpacePanel(); + float var18 = var17.getAlignmentX(); + var17.setVisible(false); + var17.setInheritsPopupMenu(false); + boolean var23 = var17.isDoubleBuffered(); + SpaceWar.SpacePanel var24 = new SpaceWar.SpacePanel(); + float var25 = var24.getAlignmentX(); + var24.setVisible(false); + var24.nextFocus(); + var24.reshape((-1), 1, (-1), 10); + var24.disable(); + java.awt.LayoutManager var35 = var24.getLayout(); + var17.setLayout(var35); + var0.add((java.awt.Component)var7, (java.lang.Object)var35); + var7.hide(); + var7.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", 241.4584513263457d, 323.62099822147866d); + float var43 = var7.getAlignmentY(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var35); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var43 == 0.5f); + + } + + public void test55() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test55"); + + + SpaceWar.Player var0 = new SpaceWar.Player(); + boolean var1 = var0.isRecovering(); + int var2 = var0.getRequiredPower(); + int var3 = var0.getY(); + int var4 = var0.getX(); + var0.setLeft(false); + var0.setLeft(false); + var0.setLeft(false); + var0.loseLife(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var2 == 1); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == 500); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 400); + + } + + public void test56() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test56"); + + + SpaceWar.Player var0 = new SpaceWar.Player(); + int var1 = var0.getR(); + var0.setRigth(false); + var0.setLife(100); + var0.setDown(false); + var0.setFiring(true); + var0.increasePower(400); + var0.loseLife(); + var0.setScore(10); + int var15 = var0.getPower(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 25); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == 399); + + } + + public void test57() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test57"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + var0.setRequestFocusEnabled(false); + var0.removeAll(); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + float var7 = var6.getAlignmentX(); + var6.setVisible(false); + boolean var10 = var6.isDoubleBuffered(); + java.awt.dnd.DropTarget var11 = var6.getDropTarget(); + var6.show(false); + boolean var14 = var6.isPaintingForPrint(); + SpaceWar.SpacePanel var15 = new SpaceWar.SpacePanel(); + float var16 = var15.getAlignmentX(); + var15.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var21 = var15.getMouseListeners(); + int var22 = var15.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var23 = var15.getInputMethodRequests(); + var6.addKeyListener((java.awt.event.KeyListener)var15); + SpaceWar.SpacePanel var25 = new SpaceWar.SpacePanel(); + float var26 = var25.getAlignmentX(); + var25.setVisible(false); + boolean var29 = var25.isDoubleBuffered(); + var25.list(); + float var31 = var25.getAlignmentY(); + boolean var32 = var15.isFocusCycleRoot((java.awt.Container)var25); + SpaceWar.SpacePanel var34 = new SpaceWar.SpacePanel(); + float var35 = var34.getAlignmentX(); + var34.setVisible(false); + var34.nextFocus(); + var34.updateUI(); + java.awt.Component var40 = var15.add("", (java.awt.Component)var34); + boolean var41 = var0.isAncestorOf((java.awt.Component)var34); + boolean var43 = var34.requestFocus(true); + var34.reshape(2, 400, 2, 10); + var34.repaint(500, 100, 399, 1); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var21); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var22 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var23); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var29 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var31 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var32 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var35 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var40); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var41 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var43 == false); + + } + + public void test58() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test58"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + var0.show(false); + boolean var8 = var0.isPaintingForPrint(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var15 = var9.getMouseListeners(); + int var16 = var9.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var17 = var9.getInputMethodRequests(); + var0.addKeyListener((java.awt.event.KeyListener)var9); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + float var20 = var19.getAlignmentX(); + var19.setVisible(false); + boolean var23 = var19.isDoubleBuffered(); + var19.list(); + float var25 = var19.getAlignmentY(); + boolean var26 = var9.isFocusCycleRoot((java.awt.Container)var19); + var19.firePropertyChange("", 1L, 1L); + var19.setAutoscrolls(false); + var19.setEnabled(true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == false); + + } + + public void test59() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test59"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + var0.enable(false); + boolean var7 = var0.getFocusTraversalKeysEnabled(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + java.awt.Dimension var12 = var8.getPreferredSize(); + java.awt.Toolkit var13 = var8.getToolkit(); + boolean var14 = var8.isFocusable(); + javax.swing.KeyStroke[] var15 = var8.getRegisteredKeyStrokes(); + SpaceWar.SpacePanel var16 = new SpaceWar.SpacePanel(); + float var17 = var16.getAlignmentX(); + SpaceWar.SpacePanel var18 = new SpaceWar.SpacePanel(); + float var19 = var18.getAlignmentX(); + var18.setVisible(false); + java.awt.Dimension var22 = var18.getPreferredSize(); + boolean var23 = var18.getVerifyInputWhenFocusTarget(); + java.awt.Component var26 = var18.findComponentAt(10, 1); + var16.addKeyListener((java.awt.event.KeyListener)var18); + var18.repaint(100, (-1), (-1), 1); + boolean var33 = var8.isAncestorOf((java.awt.Component)var18); + var0.addKeyListener((java.awt.event.KeyListener)var18); + java.lang.Object var35 = var18.getTreeLock(); + javax.swing.InputVerifier var36 = var18.getInputVerifier(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var33 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var35); + + // Regression assertion (captures the current behavior of the code) + assertNull(var36); + + } + + public void test60() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test60"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + var0.show(false); + java.awt.event.MouseWheelListener[] var8 = var0.getMouseWheelListeners(); + boolean var9 = var0.isForegroundSet(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == true); + + } + + public void test61() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test61"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.repaint(1L); + SpaceWar.SpacePanel var7 = new SpaceWar.SpacePanel(); + float var8 = var7.getAlignmentX(); + var7.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var13 = new SpaceWar.SpacePanel(); + float var14 = var13.getAlignmentX(); + var13.setVisible(false); + java.awt.Dimension var17 = var13.getPreferredSize(); + var7.setMaximumSize(var17); + var0.setPreferredSize(var17); + javax.swing.plaf.PanelUI var20 = var0.getUI(); + var0.setAutoscrolls(false); + java.awt.Cursor var23 = var0.getCursor(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var23); + + } + + public void test62() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test62"); + + + SpaceWar.Explosion var4 = new SpaceWar.Explosion(0.0d, 10.0d, (-1), 1); + boolean var5 = var4.update(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == false); + + } + + public void test63() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test63"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + var0.setRequestFocusEnabled(false); + var0.setIgnoreRepaint(false); + java.lang.String var7 = var0.toString(); + boolean var9 = var0.requestFocus(false); + var0.hide(); + var0.setToolTipText("PanelUI"); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var7 + "' != '" + "SpaceWar.SpacePanel[,0,0,0var7,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"+ "'", var7.equals("SpaceWar.SpacePanel[,0,0,0var7,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]")); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == false); + + } + + public void test64() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test64"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.reshape((-1), 1, (-1), 10); + var0.disable(); + boolean var11 = var0.isFocusable(); + int var12 = var0.getHeight(); + javax.swing.InputVerifier var13 = var0.getInputVerifier(); + java.awt.Graphics var14 = var0.getGraphics(); + SpaceWar.SpacePanel var15 = new SpaceWar.SpacePanel(); + float var16 = var15.getAlignmentX(); + var15.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var21 = var15.getMouseListeners(); + java.awt.Dimension var22 = var15.getPreferredSize(); + java.util.Locale var23 = var15.getLocale(); + java.awt.Font var24 = var15.getFont(); + java.awt.Color var25 = var15.getForeground(); + var0.setForeground(var25); + var0.validate(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == 10); + + // Regression assertion (captures the current behavior of the code) + assertNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var21); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var23); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var25); + + } + + public void test65() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test65"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + boolean var6 = var0.isFocusCycleRoot(); + var0.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", 100, 0); + SpaceWar.SpacePanel var11 = new SpaceWar.SpacePanel(); + float var12 = var11.getAlignmentX(); + var11.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var17 = var11.getUI(); + var0.add((java.awt.Component)var11, (java.lang.Object)(short)0); + java.awt.event.InputMethodListener[] var20 = var11.getInputMethodListeners(); + boolean var23 = var11.contains(2, 3); + SpaceWar.SpacePanel var24 = new SpaceWar.SpacePanel(); + float var25 = var24.getAlignmentX(); + var24.setVisible(false); + var24.nextFocus(); + var24.reshape((-1), 1, (-1), 10); + var24.disable(); + boolean var35 = var24.isFocusable(); + SpaceWar.SpacePanel var36 = new SpaceWar.SpacePanel(); + float var37 = var36.getAlignmentX(); + var36.setVisible(false); + var36.nextFocus(); + var36.reshape((-1), 1, (-1), 10); + SpaceWar.SpacePanel var46 = new SpaceWar.SpacePanel(); + java.awt.Color var47 = var46.getBackground(); + var46.repaint(); + var46.setRequestFocusEnabled(false); + var46.reshape(100, 0, 100, 0); + java.awt.Component var56 = var36.add((java.awt.Component)var46); + SpaceWar.SpacePanel var57 = new SpaceWar.SpacePanel(); + var57.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + javax.swing.plaf.PanelUI var62 = var57.getUI(); + SpaceWar.SpacePanel var63 = new SpaceWar.SpacePanel(); + float var64 = var63.getAlignmentX(); + var63.setVisible(false); + var63.nextFocus(); + var63.repaint(1L); + SpaceWar.SpacePanel var70 = new SpaceWar.SpacePanel(); + float var71 = var70.getAlignmentX(); + var70.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var76 = new SpaceWar.SpacePanel(); + float var77 = var76.getAlignmentX(); + var76.setVisible(false); + java.awt.Dimension var80 = var76.getPreferredSize(); + var70.setMaximumSize(var80); + var63.setPreferredSize(var80); + var57.setMaximumSize(var80); + java.awt.Dimension var84 = var46.getSize(var80); + // The following exception was thrown during execution. + // This behavior will recorded for regression testing. + try { + var11.add((java.awt.Component)var24, (java.lang.Object)var80, 24); + fail("Expected exception of type java.lang.IllegalArgumentException"); + } catch (java.lang.IllegalArgumentException e) { + // Expected exception. + } + + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var35 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var47); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var56); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var62); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var64 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var71 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var77 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var80); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var84); + + } + + public void test66() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test66"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + float var7 = var6.getAlignmentX(); + var6.setVisible(false); + SpaceWar.SpacePanel var10 = new SpaceWar.SpacePanel(); + java.awt.Color var11 = var10.getBackground(); + var6.setForeground(var11); + var0.setBackground(var11); + var0.grabFocus(); + SpaceWar.SpacePanel var15 = new SpaceWar.SpacePanel(); + float var16 = var15.getAlignmentX(); + var15.setVisible(false); + boolean var19 = var15.isDoubleBuffered(); + java.awt.dnd.DropTarget var20 = var15.getDropTarget(); + boolean var21 = var15.isFocusCycleRoot(); + SpaceWar.SpacePanel var22 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var23 = new SpaceWar.SpacePanel(); + java.awt.Color var24 = var23.getBackground(); + SpaceWar.SpacePanel var25 = new SpaceWar.SpacePanel(); + float var26 = var25.getAlignmentX(); + var25.setVisible(false); + var25.nextFocus(); + var25.updateUI(); + var25.enableInputMethods(true); + var22.add((java.awt.Component)var23, (java.lang.Object)true); + java.awt.Dimension var34 = var23.getPreferredSize(); + var15.setSize(var34); + var0.setMaximumSize(var34); + var0.enable(); + SpaceWar.SpacePanel var38 = new SpaceWar.SpacePanel(); + float var39 = var38.getAlignmentX(); + var38.setVisible(false); + var38.nextFocus(); + var38.reshape((-1), 1, (-1), 10); + var38.disable(); + java.awt.LayoutManager var49 = var38.getLayout(); + boolean var52 = var38.contains((-1), 0); + SpaceWar.SpacePanel var53 = new SpaceWar.SpacePanel(); + float var54 = var53.getAlignmentX(); + var53.setVisible(false); + var53.nextFocus(); + var53.updateUI(); + var53.enableInputMethods(true); + var53.setSize((-1), 1); + java.awt.Component var64 = var38.add((java.awt.Component)var53); + SpaceWar.SpacePanel var65 = new SpaceWar.SpacePanel(); + float var66 = var65.getAlignmentX(); + var65.setVisible(false); + var65.nextFocus(); + var65.updateUI(); + var65.enableInputMethods(true); + java.lang.String var73 = var65.toString(); + java.awt.FocusTraversalPolicy var74 = var65.getFocusTraversalPolicy(); + var53.removeKeyListener((java.awt.event.KeyListener)var65); + var0.addKeyListener((java.awt.event.KeyListener)var65); + var65.setRequestFocusEnabled(true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var34); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var39 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var49); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var52 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var54 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var64); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var66 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var73 + "' != '" + "SpaceWar.SpacePanel[,0,0,0var73,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"+ "'", var73.equals("SpaceWar.SpacePanel[,0,0,0var73,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]")); + + // Regression assertion (captures the current behavior of the code) + assertNull(var74); + + } + + public void test67() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test67"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.reshape((-1), 1, (-1), 10); + SpaceWar.SpacePanel var10 = new SpaceWar.SpacePanel(); + java.awt.Color var11 = var10.getBackground(); + var10.repaint(); + var10.setRequestFocusEnabled(false); + var10.reshape(100, 0, 100, 0); + java.awt.Component var20 = var0.add((java.awt.Component)var10); + SpaceWar.SpacePanel var21 = new SpaceWar.SpacePanel(); + var21.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + javax.swing.plaf.PanelUI var26 = var21.getUI(); + SpaceWar.SpacePanel var27 = new SpaceWar.SpacePanel(); + float var28 = var27.getAlignmentX(); + var27.setVisible(false); + var27.nextFocus(); + var27.repaint(1L); + SpaceWar.SpacePanel var34 = new SpaceWar.SpacePanel(); + float var35 = var34.getAlignmentX(); + var34.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var40 = new SpaceWar.SpacePanel(); + float var41 = var40.getAlignmentX(); + var40.setVisible(false); + java.awt.Dimension var44 = var40.getPreferredSize(); + var34.setMaximumSize(var44); + var27.setPreferredSize(var44); + var21.setMaximumSize(var44); + java.awt.Dimension var48 = var10.getSize(var44); + var10.transferFocusUpCycle(); + java.lang.String var50 = var10.getUIClassID(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var28 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var35 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var41 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var44); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var48); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var50 + "' != '" + "PanelUI"+ "'", var50.equals("PanelUI")); + + } + + public void test68() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test68"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + var0.setName(""); + java.awt.ComponentOrientation var3 = var0.getComponentOrientation(); + var0.enable(); + int var5 = var0.getHeight(); + var0.setDebugGraphicsOptions(24); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == 0); + + } + + public void test69() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test69"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var6 = var0.getMouseListeners(); + int var7 = var0.getDebugGraphicsOptions(); + java.awt.Color var8 = var0.getBackground(); + java.awt.Container var9 = var0.getParent(); + SpaceWar.SpacePanel var10 = new SpaceWar.SpacePanel(); + java.awt.Color var11 = var10.getBackground(); + var10.repaint(); + var10.setRequestFocusEnabled(false); + var10.setIgnoreRepaint(false); + java.lang.String var17 = var10.toString(); + java.awt.Color var18 = var10.getBackground(); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + float var20 = var19.getAlignmentX(); + var19.setVisible(false); + java.awt.Dimension var23 = var19.getPreferredSize(); + java.awt.Toolkit var24 = var19.getToolkit(); + java.awt.Toolkit var25 = var19.getToolkit(); + SpaceWar.Player var26 = new SpaceWar.Player(); + var26.increasePower(25); + int var29 = var26.getScore(); + var26.setRigth(true); + var26.loseLife(); + var10.putClientProperty((java.lang.Object)var19, (java.lang.Object)var26); + java.awt.Rectangle var34 = var19.bounds(); + var0.repaint(var34); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertNull(var9); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var17 + "' != '" + "SpaceWar.SpacePanel[,0,0,0var17,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"+ "'", var17.equals("SpaceWar.SpacePanel[,0,0,0var17,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]")); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var23); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var25); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var29 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var34); + + } + + public void test70() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test70"); + + + SpaceWar.Player var0 = new SpaceWar.Player(); + int var1 = var0.getPower(); + int var2 = var0.getY(); + int var3 = var0.getY(); + var0.setRigth(false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var2 == 500); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == 500); + + } + + public void test71() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test71"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + java.awt.im.InputMethodRequests var3 = var0.getInputMethodRequests(); + var0.setDoubleBuffered(true); + var0.show(false); + var0.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", (-1), 24); + java.awt.Point var12 = var0.location(); + java.awt.FocusTraversalPolicy var13 = var0.getFocusTraversalPolicy(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNull(var13); + + } + + public void test72() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test72"); + + + SpaceWar.Player var0 = new SpaceWar.Player(); + boolean var1 = var0.isRecovering(); + var0.loseLife(); + int var3 = var0.getR(); + int var4 = var0.getPower(); + var0.loseLife(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == 25); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0); + + } + + public void test73() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test73"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + java.awt.Dimension var4 = var0.getPreferredSize(); + java.awt.Toolkit var5 = var0.getToolkit(); + java.awt.im.InputMethodRequests var6 = var0.getInputMethodRequests(); + float var7 = var0.getAlignmentX(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var4); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.5f); + + } + + public void test74() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test74"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + java.awt.Dimension var4 = var0.getPreferredSize(); + java.awt.Toolkit var5 = var0.getToolkit(); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + var6.setName(""); + int var9 = var6.getX(); + SpaceWar.SpacePanel var10 = new SpaceWar.SpacePanel(); + float var11 = var10.getAlignmentX(); + var10.setVisible(false); + var10.nextFocus(); + SpaceWar.SpacePanel var15 = new SpaceWar.SpacePanel(); + float var16 = var15.getAlignmentX(); + var15.setVisible(false); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + java.awt.Color var20 = var19.getBackground(); + var15.setForeground(var20); + var10.setBackground(var20); + var6.setBackground(var20); + var0.setForeground(var20); + SpaceWar.SpacePanel var25 = new SpaceWar.SpacePanel(); + float var26 = var25.getAlignmentX(); + var25.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var31 = new SpaceWar.SpacePanel(); + float var32 = var31.getAlignmentX(); + var31.setVisible(false); + java.awt.Dimension var35 = var31.getPreferredSize(); + var25.setMaximumSize(var35); + boolean var37 = var25.getVerifyInputWhenFocusTarget(); + javax.accessibility.AccessibleContext var38 = var25.getAccessibleContext(); + boolean var39 = var25.isDoubleBuffered(); + java.awt.Rectangle var40 = var25.getVisibleRect(); + var0.scrollRectToVisible(var40); + SpaceWar.SpacePanel var42 = new SpaceWar.SpacePanel(); + float var43 = var42.getAlignmentX(); + var42.setVisible(false); + java.awt.Dimension var46 = var42.getPreferredSize(); + java.awt.Toolkit var47 = var42.getToolkit(); + SpaceWar.SpacePanel var48 = new SpaceWar.SpacePanel(); + var48.setName(""); + int var51 = var48.getX(); + SpaceWar.SpacePanel var52 = new SpaceWar.SpacePanel(); + float var53 = var52.getAlignmentX(); + var52.setVisible(false); + var52.nextFocus(); + SpaceWar.SpacePanel var57 = new SpaceWar.SpacePanel(); + float var58 = var57.getAlignmentX(); + var57.setVisible(false); + SpaceWar.SpacePanel var61 = new SpaceWar.SpacePanel(); + java.awt.Color var62 = var61.getBackground(); + var57.setForeground(var62); + var52.setBackground(var62); + var48.setBackground(var62); + var42.setForeground(var62); + SpaceWar.SpacePanel var67 = new SpaceWar.SpacePanel(); + float var68 = var67.getAlignmentX(); + var67.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var73 = new SpaceWar.SpacePanel(); + float var74 = var73.getAlignmentX(); + var73.setVisible(false); + java.awt.Dimension var77 = var73.getPreferredSize(); + var67.setMaximumSize(var77); + boolean var79 = var67.getVerifyInputWhenFocusTarget(); + javax.accessibility.AccessibleContext var80 = var67.getAccessibleContext(); + boolean var81 = var67.isDoubleBuffered(); + java.awt.Rectangle var82 = var67.getVisibleRect(); + var42.scrollRectToVisible(var82); + var0.removeKeyListener((java.awt.event.KeyListener)var42); + javax.swing.InputVerifier var85 = var0.getInputVerifier(); + var0.firePropertyChange("SpaceWar.SpacePanel[,-1,1,-1x10,invalid,hidden,disabled,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", (-1L), (-1L)); + var0.revalidate(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var4); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var32 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var35); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var38); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var39 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var40); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var43 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var46); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var47); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var51 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var53 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var58 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var62); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var68 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var74 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var77); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var79 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var80); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var81 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var82); + + // Regression assertion (captures the current behavior of the code) + assertNull(var85); + + } + + public void test75() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test75"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + var0.show(false); + boolean var8 = var0.isPaintingForPrint(); + boolean var9 = var0.getIgnoreRepaint(); + var0.repaint(100, 10, 100, 0); + SpaceWar.SpacePanel var15 = new SpaceWar.SpacePanel(); + float var16 = var15.getAlignmentX(); + var15.setVisible(false); + boolean var19 = var15.isDoubleBuffered(); + var15.list(); + SpaceWar.SpacePanel var21 = new SpaceWar.SpacePanel(); + float var22 = var21.getAlignmentX(); + var21.setVisible(false); + boolean var25 = var21.isDoubleBuffered(); + java.awt.dnd.DropTarget var26 = var21.getDropTarget(); + var21.show(false); + java.awt.Rectangle var29 = var21.getVisibleRect(); + java.awt.Rectangle var30 = var15.getBounds(var29); + javax.swing.JToolTip var31 = var15.createToolTip(); + var15.firePropertyChange("", false, false); + var15.validate(); + SpaceWar.SpacePanel var37 = new SpaceWar.SpacePanel(); + float var38 = var37.getAlignmentX(); + var37.setVisible(false); + boolean var41 = var37.isDoubleBuffered(); + java.awt.dnd.DropTarget var42 = var37.getDropTarget(); + var37.show(false); + boolean var45 = var37.isPaintingForPrint(); + SpaceWar.SpacePanel var46 = new SpaceWar.SpacePanel(); + float var47 = var46.getAlignmentX(); + var46.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var52 = var46.getMouseListeners(); + int var53 = var46.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var54 = var46.getInputMethodRequests(); + var37.addKeyListener((java.awt.event.KeyListener)var46); + var46.repaint(); + java.awt.Point var57 = var46.location(); + java.awt.Component var58 = var15.getComponentAt(var57); + var0.setLocation(var57); + java.awt.peer.ComponentPeer var60 = var0.getPeer(); + boolean var61 = var0.isForegroundSet(); + var0.resize(499, 25); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var22 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var29); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var30); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var31); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var38 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var41 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var42); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var45 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var47 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var52); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var53 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var54); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var57); + + // Regression assertion (captures the current behavior of the code) + assertNull(var58); + + // Regression assertion (captures the current behavior of the code) + assertNull(var60); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var61 == true); + + } + + public void test76() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test76"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var6 = var0.getMouseListeners(); + var0.firePropertyChange("", 0.5f, 100.0f); + var0.enable(false); + var0.transferFocusDownCycle(); + var0.firePropertyChange("SpaceWar.SpacePanel[,-1,1,-1x10,invalid,hidden,disabled,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", (-1.0f), 1.0f); + java.awt.Dimension var18 = var0.minimumSize(); + java.awt.event.FocusListener[] var19 = var0.getFocusListeners(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var19); + + } + + public void test77() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test77"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.updateUI(); + var0.enableInputMethods(true); + java.awt.Point var9 = var0.getMousePosition(false); + java.awt.Component.BaselineResizeBehavior var10 = var0.getBaselineResizeBehavior(); + boolean var11 = var0.isFocusTraversalPolicyProvider(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNull(var9); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == false); + + } + + public void test78() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test78"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var6 = var0.getUI(); + java.awt.im.InputMethodRequests var7 = var0.getInputMethodRequests(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + var8.nextFocus(); + var8.updateUI(); + var8.enableInputMethods(true); + var8.setSize((-1), 1); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + var19.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var0.add((java.awt.Component)var8, (java.lang.Object)"SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + java.awt.ComponentOrientation var25 = var8.getComponentOrientation(); + boolean var26 = var8.isMaximumSizeSet(); + SpaceWar.SpacePanel var27 = new SpaceWar.SpacePanel(); + float var28 = var27.getAlignmentX(); + var27.setVisible(false); + boolean var31 = var27.isDoubleBuffered(); + java.awt.dnd.DropTarget var32 = var27.getDropTarget(); + var27.show(false); + boolean var35 = var27.isPaintingForPrint(); + SpaceWar.SpacePanel var36 = new SpaceWar.SpacePanel(); + float var37 = var36.getAlignmentX(); + var36.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var42 = var36.getMouseListeners(); + int var43 = var36.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var44 = var36.getInputMethodRequests(); + var27.addKeyListener((java.awt.event.KeyListener)var36); + SpaceWar.SpacePanel var46 = new SpaceWar.SpacePanel(); + float var47 = var46.getAlignmentX(); + var46.setVisible(false); + boolean var50 = var46.isDoubleBuffered(); + var46.list(); + float var52 = var46.getAlignmentY(); + boolean var53 = var36.isFocusCycleRoot((java.awt.Container)var46); + boolean var54 = var46.isEnabled(); + java.awt.Dimension var55 = var46.getMaximumSize(); + var8.setMinimumSize(var55); + var8.disable(); + int var58 = var8.getComponentCount(); + var8.firePropertyChange("hi!", 514.6637810615505d, 241.4584513263457d); + var8.setName("SpaceWar.SpacePanel[,0,0,0x0,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var25); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var28 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var31 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var32); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var35 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var42); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var43 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var44); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var47 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var50 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var52 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var53 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var54 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var55); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var58 == 0); + + } + + public void test79() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test79"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.reshape((-1), 1, (-1), 10); + var0.disable(); + java.awt.LayoutManager var11 = var0.getLayout(); + java.awt.Container var12 = var0.getParent(); + boolean var13 = var0.isPaintingForPrint(); + SpaceWar.SpacePanel var14 = new SpaceWar.SpacePanel(); + float var15 = var14.getAlignmentX(); + var14.setVisible(false); + var14.nextFocus(); + var14.reshape((-1), 1, (-1), 10); + SpaceWar.SpacePanel var24 = new SpaceWar.SpacePanel(); + java.awt.Color var25 = var24.getBackground(); + var24.repaint(); + var24.setRequestFocusEnabled(false); + var24.reshape(100, 0, 100, 0); + java.awt.Component var34 = var14.add((java.awt.Component)var24); + SpaceWar.SpacePanel var35 = new SpaceWar.SpacePanel(); + var35.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + javax.swing.plaf.PanelUI var40 = var35.getUI(); + SpaceWar.SpacePanel var41 = new SpaceWar.SpacePanel(); + float var42 = var41.getAlignmentX(); + var41.setVisible(false); + var41.nextFocus(); + var41.repaint(1L); + SpaceWar.SpacePanel var48 = new SpaceWar.SpacePanel(); + float var49 = var48.getAlignmentX(); + var48.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var54 = new SpaceWar.SpacePanel(); + float var55 = var54.getAlignmentX(); + var54.setVisible(false); + java.awt.Dimension var58 = var54.getPreferredSize(); + var48.setMaximumSize(var58); + var41.setPreferredSize(var58); + var35.setMaximumSize(var58); + java.awt.Dimension var62 = var24.getSize(var58); + var0.setSize(var62); + SpaceWar.SpacePanel var64 = new SpaceWar.SpacePanel(); + float var65 = var64.getAlignmentX(); + var64.setVisible(false); + boolean var68 = var64.isDoubleBuffered(); + var64.enable(false); + var0.removeKeyListener((java.awt.event.KeyListener)var64); + boolean var72 = var64.getInheritsPopupMenu(); + boolean var73 = var64.isValidateRoot(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var25); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var34); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var40); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var42 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var49 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var55 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var58); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var62); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var65 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var68 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var72 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var73 == false); + + } + + public void test80() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test80"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + var0.setRequestFocusEnabled(false); + var0.reshape(100, 0, 100, 0); + var0.requestFocus(); + java.awt.Rectangle var11 = var0.getVisibleRect(); + java.awt.Rectangle var12 = var0.getBounds(); + java.awt.im.InputMethodRequests var13 = var0.getInputMethodRequests(); + SpaceWar.SpacePanel var14 = new SpaceWar.SpacePanel(); + var14.setName(""); + java.awt.Dimension var17 = var14.minimumSize(); + boolean var18 = var14.isDoubleBuffered(); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + float var20 = var19.getAlignmentX(); + var19.setVisible(false); + SpaceWar.SpacePanel var23 = new SpaceWar.SpacePanel(); + java.awt.Color var24 = var23.getBackground(); + var19.setForeground(var24); + SpaceWar.SpacePanel var26 = new SpaceWar.SpacePanel(); + float var27 = var26.getAlignmentX(); + var26.setVisible(false); + boolean var30 = var26.isDoubleBuffered(); + java.awt.dnd.DropTarget var31 = var26.getDropTarget(); + var26.show(false); + java.awt.Rectangle var34 = var26.getVisibleRect(); + var19.repaint(var34); + java.awt.FocusTraversalPolicy var36 = var19.getFocusTraversalPolicy(); + java.awt.im.InputMethodRequests var37 = var19.getInputMethodRequests(); + var19.layout(); + boolean var39 = var19.isFocusTraversalPolicyProvider(); + java.awt.Component var40 = var14.add((java.awt.Component)var19); + var14.transferFocusUpCycle(); + var0.remove((java.awt.Component)var14); + var14.repaint(1L, 1, 0, 3, 10); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var30 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var31); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var34); + + // Regression assertion (captures the current behavior of the code) + assertNull(var36); + + // Regression assertion (captures the current behavior of the code) + assertNull(var37); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var39 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var40); + + } + + public void test81() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test81"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.updateUI(); + var0.enableInputMethods(true); + var0.enableInputMethods(true); + java.awt.Component.BaselineResizeBehavior var10 = var0.getBaselineResizeBehavior(); + SpaceWar.SpacePanel var11 = new SpaceWar.SpacePanel(); + float var12 = var11.getAlignmentX(); + var11.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var17 = var11.getUI(); + java.awt.im.InputMethodRequests var18 = var11.getInputMethodRequests(); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + float var20 = var19.getAlignmentX(); + var19.setVisible(false); + var19.nextFocus(); + var19.updateUI(); + var19.enableInputMethods(true); + var19.setSize((-1), 1); + SpaceWar.SpacePanel var30 = new SpaceWar.SpacePanel(); + var30.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var11.add((java.awt.Component)var19, (java.lang.Object)"SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + SpaceWar.SpacePanel var36 = new SpaceWar.SpacePanel(); + var36.setName(""); + java.awt.ComponentOrientation var39 = var36.getComponentOrientation(); + var11.applyComponentOrientation(var39); + var0.setComponentOrientation(var39); + java.awt.Rectangle var42 = var0.getVisibleRect(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var39); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var42); + + } + + public void test82() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test82"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.setInheritsPopupMenu(false); + boolean var6 = var0.isDoubleBuffered(); + SpaceWar.SpacePanel var7 = new SpaceWar.SpacePanel(); + float var8 = var7.getAlignmentX(); + var7.setVisible(false); + var7.nextFocus(); + var7.reshape((-1), 1, (-1), 10); + var7.disable(); + java.awt.LayoutManager var18 = var7.getLayout(); + var0.setLayout(var18); + java.awt.event.MouseMotionListener[] var20 = var0.getMouseMotionListeners(); + java.awt.Graphics var21 = var0.getGraphics(); + // The following exception was thrown during execution. + // This behavior will recorded for regression testing. + try { + javax.swing.InputMap var23 = var0.getInputMap(10); + fail("Expected exception of type java.lang.IllegalArgumentException"); + } catch (java.lang.IllegalArgumentException e) { + // Expected exception. + } + + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertNull(var21); + + } + + public void test83() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test83"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var6 = var0.getUI(); + java.awt.im.InputMethodRequests var7 = var0.getInputMethodRequests(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + var8.nextFocus(); + var8.updateUI(); + var8.enableInputMethods(true); + var8.setSize((-1), 1); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + var19.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var0.add((java.awt.Component)var8, (java.lang.Object)"SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + java.awt.ComponentOrientation var25 = var8.getComponentOrientation(); + boolean var26 = var8.isMaximumSizeSet(); + SpaceWar.SpacePanel var27 = new SpaceWar.SpacePanel(); + float var28 = var27.getAlignmentX(); + var27.setVisible(false); + boolean var31 = var27.isDoubleBuffered(); + java.awt.dnd.DropTarget var32 = var27.getDropTarget(); + var27.show(false); + boolean var35 = var27.isPaintingForPrint(); + SpaceWar.SpacePanel var36 = new SpaceWar.SpacePanel(); + float var37 = var36.getAlignmentX(); + var36.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var42 = var36.getMouseListeners(); + int var43 = var36.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var44 = var36.getInputMethodRequests(); + var27.addKeyListener((java.awt.event.KeyListener)var36); + SpaceWar.SpacePanel var46 = new SpaceWar.SpacePanel(); + float var47 = var46.getAlignmentX(); + var46.setVisible(false); + boolean var50 = var46.isDoubleBuffered(); + var46.list(); + float var52 = var46.getAlignmentY(); + boolean var53 = var36.isFocusCycleRoot((java.awt.Container)var46); + boolean var54 = var46.isEnabled(); + java.awt.Dimension var55 = var46.getMaximumSize(); + var8.setMinimumSize(var55); + var8.disable(); + int var58 = var8.getComponentCount(); + var8.resetKeyboardActions(); + var8.setFocusTraversalPolicyProvider(false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var25); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var28 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var31 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var32); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var35 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var42); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var43 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var44); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var47 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var50 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var52 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var53 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var54 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var55); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var58 == 0); + + } + + public void test84() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test84"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + boolean var5 = javax.swing.JComponent.isLightweightComponent((java.awt.Component)var0); + java.awt.event.MouseWheelListener[] var6 = var0.getMouseWheelListeners(); + boolean var7 = var0.isValid(); + var0.list(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == false); + + } + + public void test85() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test85"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + var0.show(false); + boolean var8 = var0.isPaintingForPrint(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var15 = var9.getMouseListeners(); + int var16 = var9.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var17 = var9.getInputMethodRequests(); + var0.addKeyListener((java.awt.event.KeyListener)var9); + java.awt.Container var19 = var9.getFocusCycleRootAncestor(); + SpaceWar.SpacePanel var20 = new SpaceWar.SpacePanel(); + float var21 = var20.getAlignmentX(); + var20.setVisible(false); + var20.nextFocus(); + var20.updateUI(); + var20.enableInputMethods(true); + var20.setSize((-1), 1); + boolean var33 = var20.contains(1, 1); + java.awt.Component var36 = var20.getComponentAt(100, 3); + SpaceWar.SpacePanel var37 = new SpaceWar.SpacePanel(); + float var38 = var37.getAlignmentX(); + var37.setVisible(false); + boolean var41 = var37.isDoubleBuffered(); + var37.enable(false); + boolean var44 = var37.getFocusTraversalKeysEnabled(); + SpaceWar.SpacePanel var45 = new SpaceWar.SpacePanel(); + float var46 = var45.getAlignmentX(); + var45.setVisible(false); + java.awt.Dimension var49 = var45.getPreferredSize(); + java.awt.Toolkit var50 = var45.getToolkit(); + boolean var51 = var45.isFocusable(); + javax.swing.KeyStroke[] var52 = var45.getRegisteredKeyStrokes(); + SpaceWar.SpacePanel var53 = new SpaceWar.SpacePanel(); + float var54 = var53.getAlignmentX(); + SpaceWar.SpacePanel var55 = new SpaceWar.SpacePanel(); + float var56 = var55.getAlignmentX(); + var55.setVisible(false); + java.awt.Dimension var59 = var55.getPreferredSize(); + boolean var60 = var55.getVerifyInputWhenFocusTarget(); + java.awt.Component var63 = var55.findComponentAt(10, 1); + var53.addKeyListener((java.awt.event.KeyListener)var55); + var55.repaint(100, (-1), (-1), 1); + boolean var70 = var45.isAncestorOf((java.awt.Component)var55); + var37.addKeyListener((java.awt.event.KeyListener)var55); + java.awt.ComponentOrientation var72 = var37.getComponentOrientation(); + var20.setComponentOrientation(var72); + var9.setComponentOrientation(var72); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var33 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var36); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var38 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var41 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var44 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var46 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var49); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var50); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var51 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var52); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var54 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var56 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var59); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var60 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var63); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var70 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var72); + + } + + public void test86() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test86"); + + + SpaceWar.Player var0 = new SpaceWar.Player(); + boolean var1 = var0.isRecovering(); + var0.setRigth(false); + int var4 = var0.getPowerLevel(); + var0.setDown(true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0); + + } + + public void test87() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test87"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + var0.show(false); + boolean var8 = var0.isPaintingForPrint(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var15 = var9.getMouseListeners(); + int var16 = var9.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var17 = var9.getInputMethodRequests(); + var0.addKeyListener((java.awt.event.KeyListener)var9); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + float var20 = var19.getAlignmentX(); + var19.setVisible(false); + boolean var23 = var19.isDoubleBuffered(); + var19.list(); + float var25 = var19.getAlignmentY(); + boolean var26 = var9.isFocusCycleRoot((java.awt.Container)var19); + SpaceWar.SpacePanel var28 = new SpaceWar.SpacePanel(); + float var29 = var28.getAlignmentX(); + var28.setVisible(false); + var28.nextFocus(); + var28.updateUI(); + java.awt.Component var34 = var9.add("", (java.awt.Component)var28); + java.awt.ComponentOrientation var35 = var28.getComponentOrientation(); + var28.setAlignmentX(10.0f); + boolean var38 = var28.isDisplayable(); + // The following exception was thrown during execution. + // This behavior will recorded for regression testing. + try { + java.util.Set var40 = var28.getFocusTraversalKeys(399); + fail("Expected exception of type java.lang.IllegalArgumentException"); + } catch (java.lang.IllegalArgumentException e) { + // Expected exception. + } + + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var29 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var34); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var35); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var38 == false); + + } + + public void test88() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test88"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + var0.enable(false); + java.awt.Container var7 = var0.getTopLevelAncestor(); + java.awt.Dimension var8 = var0.minimumSize(); + java.awt.Point var9 = var0.getMousePosition(); + java.awt.image.ColorModel var10 = var0.getColorModel(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertNull(var9); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var10); + + } + + public void test89() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test89"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + var0.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + javax.swing.plaf.PanelUI var5 = var0.getUI(); + boolean var6 = var0.isDisplayable(); + SpaceWar.SpacePanel var7 = new SpaceWar.SpacePanel(); + float var8 = var7.getAlignmentX(); + var7.removeNotify(); + SpaceWar.SpacePanel var10 = new SpaceWar.SpacePanel(); + float var11 = var10.getAlignmentX(); + var10.setVisible(false); + boolean var14 = var10.isDoubleBuffered(); + var10.list(); + float var16 = var10.getAlignmentY(); + java.awt.Insets var17 = var10.getInsets(); + java.awt.Insets var18 = var7.getInsets(var17); + java.awt.Insets var19 = var0.getInsets(var18); + var0.validate(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var19); + + } + + public void test90() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test90"); + + + SpaceWar.Player var0 = new SpaceWar.Player(); + int var1 = var0.getR(); + boolean var2 = var0.isRecovering(); + var0.update(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 25); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var2 == false); + + } + + public void test91() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test91"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var6 = var0.getMouseListeners(); + var0.firePropertyChange("", 0.5f, 100.0f); + var0.enable(false); + int var13 = var0.getDebugGraphicsOptions(); + SpaceWar.SpacePanel var14 = new SpaceWar.SpacePanel(); + float var15 = var14.getAlignmentX(); + var14.setVisible(false); + var14.nextFocus(); + var14.repaint(1L); + SpaceWar.SpacePanel var21 = new SpaceWar.SpacePanel(); + float var22 = var21.getAlignmentX(); + var21.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var27 = new SpaceWar.SpacePanel(); + float var28 = var27.getAlignmentX(); + var27.setVisible(false); + java.awt.Dimension var31 = var27.getPreferredSize(); + var21.setMaximumSize(var31); + var14.setPreferredSize(var31); + java.awt.Container var34 = var14.getFocusCycleRootAncestor(); + java.awt.image.ColorModel var35 = var14.getColorModel(); + int var36 = var14.getComponentCount(); + java.awt.Component var37 = var0.add((java.awt.Component)var14); + var14.setBounds((-1), 25, 10, (-1)); + var14.setToolTipText("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var22 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var28 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var31); + + // Regression assertion (captures the current behavior of the code) + assertNull(var34); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var35); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var36 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var37); + + } + + public void test92() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test92"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var6 = var0.getMouseListeners(); + int var7 = var0.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var8 = var0.getInputMethodRequests(); + var0.removeNotify(); + var0.enable(); + boolean var11 = var0.isShowing(); + SpaceWar.SpacePanel var12 = new SpaceWar.SpacePanel(); + float var13 = var12.getAlignmentX(); + var12.setVisible(false); + SpaceWar.SpacePanel var16 = new SpaceWar.SpacePanel(); + java.awt.Color var17 = var16.getBackground(); + var12.setForeground(var17); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + float var20 = var19.getAlignmentX(); + var19.setVisible(false); + boolean var23 = var19.isDoubleBuffered(); + java.awt.dnd.DropTarget var24 = var19.getDropTarget(); + var19.show(false); + java.awt.Rectangle var27 = var19.getVisibleRect(); + var12.repaint(var27); + java.awt.FocusTraversalPolicy var29 = var12.getFocusTraversalPolicy(); + SpaceWar.SpacePanel var30 = new SpaceWar.SpacePanel(); + float var31 = var30.getAlignmentX(); + var30.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var36 = var30.getUI(); + java.awt.im.InputMethodRequests var37 = var30.getInputMethodRequests(); + SpaceWar.SpacePanel var38 = new SpaceWar.SpacePanel(); + float var39 = var38.getAlignmentX(); + var38.setVisible(false); + var38.nextFocus(); + var38.updateUI(); + var38.enableInputMethods(true); + var38.setSize((-1), 1); + SpaceWar.SpacePanel var49 = new SpaceWar.SpacePanel(); + var49.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var30.add((java.awt.Component)var38, (java.lang.Object)"SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + java.awt.ComponentOrientation var55 = var38.getComponentOrientation(); + java.beans.VetoableChangeListener[] var56 = var38.getVetoableChangeListeners(); + int var57 = var38.getHeight(); + javax.swing.ActionMap var58 = var38.getActionMap(); + var12.setActionMap(var58); + var0.setActionMap(var58); + boolean var61 = var0.isMaximumSizeSet(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var27); + + // Regression assertion (captures the current behavior of the code) + assertNull(var29); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var31 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var36); + + // Regression assertion (captures the current behavior of the code) + assertNull(var37); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var39 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var55); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var56); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var57 == 1); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var58); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var61 == false); + + } + + public void test93() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test93"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + float var7 = var6.getAlignmentX(); + var6.setVisible(false); + java.awt.Dimension var10 = var6.getPreferredSize(); + var0.setMaximumSize(var10); + boolean var12 = var0.getVerifyInputWhenFocusTarget(); + boolean var13 = var0.isFontSet(); + boolean var14 = var0.getIgnoreRepaint(); + java.awt.Component var17 = var0.locate(1, 25); + boolean var18 = var0.isLightweight(); + var0.move(100, 500); + SpaceWar.SpacePanel var22 = new SpaceWar.SpacePanel(); + float var23 = var22.getAlignmentX(); + var22.setVisible(false); + var22.nextFocus(); + SpaceWar.SpacePanel var27 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var28 = new SpaceWar.SpacePanel(); + java.awt.Color var29 = var28.getBackground(); + SpaceWar.SpacePanel var30 = new SpaceWar.SpacePanel(); + float var31 = var30.getAlignmentX(); + var30.setVisible(false); + var30.nextFocus(); + var30.updateUI(); + var30.enableInputMethods(true); + var27.add((java.awt.Component)var28, (java.lang.Object)true); + java.awt.Dimension var39 = var28.getPreferredSize(); + var22.setMaximumSize(var39); + java.awt.Dimension var41 = var22.preferredSize(); + java.lang.String var42 = var22.getToolTipText(); + var0.removeKeyListener((java.awt.event.KeyListener)var22); + var22.removeAll(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var29); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var31 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var39); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var41); + + // Regression assertion (captures the current behavior of the code) + assertNull(var42); + + } + + public void test94() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test94"); + + + SpaceWar.Player var0 = new SpaceWar.Player(); + var0.increasePower(25); + int var3 = var0.getR(); + int var4 = var0.getScore(); + boolean var5 = var0.isDead(); + var0.increasePower(400); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == 25); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == false); + + } + + public void test95() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test95"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + java.awt.Rectangle var6 = var0.getVisibleRect(); + java.awt.event.MouseListener[] var7 = var0.getMouseListeners(); + int var8 = var0.getDebugGraphicsOptions(); + int var9 = var0.getY(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0); + + } + + public void test96() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test96"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.updateUI(); + var0.enableInputMethods(true); + var0.setSize((-1), 1); + boolean var13 = var0.contains(1, 1); + java.awt.Component var16 = var0.getComponentAt(100, 3); + var0.revalidate(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var16); + + } + + public void test97() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test97"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + float var7 = var6.getAlignmentX(); + var6.setVisible(false); + java.awt.Dimension var10 = var6.getPreferredSize(); + var0.setMaximumSize(var10); + boolean var12 = var0.getVerifyInputWhenFocusTarget(); + javax.accessibility.AccessibleContext var13 = var0.getAccessibleContext(); + boolean var14 = var0.isDoubleBuffered(); + boolean var15 = var0.getAutoscrolls(); + var0.enable(); + boolean var17 = var0.isOpaque(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == true); + + } + + public void test98() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test98"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var6 = var0.getMouseListeners(); + int var7 = var0.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var8 = var0.getInputMethodRequests(); + var0.setToolTipText(""); + var0.enable(); + java.awt.dnd.DropTarget var12 = var0.getDropTarget(); + var0.setSize(0, 3); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertNull(var12); + + } + + public void test99() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test99"); + + + SpaceWar.Player var0 = new SpaceWar.Player(); + int var1 = var0.getPower(); + var0.setLeft(true); + var0.increasePower(0); + int var6 = var0.getR(); + int var7 = var0.getLives(); + int var8 = var0.getPowerLevel(); + int var9 = var0.getPower(); + var0.setUp(true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == 25); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 3); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0); + + } + + public void test100() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test100"); + + + SpaceWar.Enemy var2 = new SpaceWar.Enemy(0, 100); + var2.explode(); + java.awt.image.BufferedImage var5 = var2.loadImg("SpaceWar.SpacePanel[,-1,1,-1x10,invalid,hidden,disabled,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + var2.hit(); + double var7 = var2.getX(); + int var8 = var2.getR(); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 203.2601655108183d); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 0); + + } + + public void test101() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test101"); + + + SpaceWar.Player var0 = new SpaceWar.Player(); + boolean var1 = var0.isRecovering(); + int var2 = var0.getRequiredPower(); + int var3 = var0.getY(); + int var4 = var0.getX(); + int var5 = var0.getR(); + int var6 = var0.getX(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var2 == 1); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == 500); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 400); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == 25); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == 400); + + } + + public void test102() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test102"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + java.awt.im.InputMethodRequests var3 = var0.getInputMethodRequests(); + var0.setDoubleBuffered(true); + var0.show(false); + var0.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", (-1), 24); + boolean var12 = var0.requestFocusInWindow(); + var0.removeNotify(); + java.lang.String var14 = var0.toString(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var14 + "' != '" + "SpaceWar.SpacePanel[,0,0,0var14,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"+ "'", var14.equals("SpaceWar.SpacePanel[,0,0,0var14,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]")); + + } + + public void test103() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test103"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + java.awt.im.InputMethodRequests var3 = var0.getInputMethodRequests(); + int var4 = var0.countComponents(); + java.awt.event.ComponentListener[] var5 = var0.getComponentListeners(); + var0.removeNotify(); + javax.swing.InputMap var7 = var0.getInputMap(); + java.awt.Cursor var8 = var0.getCursor(); + var0.firePropertyChange("PanelUI", 499, 0); + SpaceWar.SpacePanel var14 = new SpaceWar.SpacePanel(); + java.awt.Color var15 = var14.getBackground(); + var14.repaint(); + var14.setRequestFocusEnabled(false); + var14.setIgnoreRepaint(false); + java.lang.String var21 = var14.toString(); + java.awt.Color var22 = var14.getBackground(); + SpaceWar.SpacePanel var23 = new SpaceWar.SpacePanel(); + float var24 = var23.getAlignmentX(); + var23.setVisible(false); + java.awt.Dimension var27 = var23.getPreferredSize(); + java.awt.Toolkit var28 = var23.getToolkit(); + java.awt.Toolkit var29 = var23.getToolkit(); + SpaceWar.Player var30 = new SpaceWar.Player(); + var30.increasePower(25); + int var33 = var30.getScore(); + var30.setRigth(true); + var30.loseLife(); + var14.putClientProperty((java.lang.Object)var23, (java.lang.Object)var30); + SpaceWar.SpacePanel var39 = new SpaceWar.SpacePanel(); + java.awt.Color var40 = var39.getBackground(); + var39.repaint(); + java.awt.im.InputMethodRequests var42 = var39.getInputMethodRequests(); + var39.setDoubleBuffered(true); + var39.setInheritsPopupMenu(false); + javax.swing.plaf.PanelUI var47 = var39.getUI(); + java.util.Set var49 = var39.getFocusTraversalKeys(3); + var14.setFocusTraversalKeys(0, var49); + var0.setFocusTraversalKeys(0, var49); + var0.updateUI(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var21 + "' != '" + "SpaceWar.SpacePanel[,0,0,0var21,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"+ "'", var21.equals("SpaceWar.SpacePanel[,0,0,0var21,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]")); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var24 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var27); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var28); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var29); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var33 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var40); + + // Regression assertion (captures the current behavior of the code) + assertNull(var42); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var47); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var49); + + } + + public void test104() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test104"); + + + SpaceWar.Bullet var3 = new SpaceWar.Bullet(579.3282808260785d, 1, 400); + + } + + public void test105() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test105"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var1 = new SpaceWar.SpacePanel(); + java.awt.Color var2 = var1.getBackground(); + SpaceWar.SpacePanel var3 = new SpaceWar.SpacePanel(); + float var4 = var3.getAlignmentX(); + var3.setVisible(false); + var3.nextFocus(); + var3.updateUI(); + var3.enableInputMethods(true); + var0.add((java.awt.Component)var1, (java.lang.Object)true); + java.awt.Image var14 = var1.createImage(1, (-1)); + SpaceWar.SpacePanel var15 = new SpaceWar.SpacePanel(); + float var16 = var15.getAlignmentX(); + var15.setVisible(false); + var15.nextFocus(); + var15.updateUI(); + var15.enableInputMethods(true); + SpaceWar.SpacePanel var23 = new SpaceWar.SpacePanel(); + float var24 = var23.getAlignmentX(); + boolean var25 = var23.hasFocus(); + java.awt.Insets var26 = var23.getInsets(); + java.awt.Insets var27 = var15.getInsets(var26); + java.awt.Insets var28 = var1.getInsets(var26); + boolean var29 = var1.requestFocusInWindow(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var2); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var24 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var27); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var28); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var29 == false); + + } + + public void test106() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test106"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.reshape((-1), 1, (-1), 10); + var0.disable(); + java.awt.LayoutManager var11 = var0.getLayout(); + boolean var14 = var0.contains((-1), 0); + SpaceWar.SpacePanel var15 = new SpaceWar.SpacePanel(); + float var16 = var15.getAlignmentX(); + var15.setVisible(false); + var15.nextFocus(); + var15.updateUI(); + var15.enableInputMethods(true); + var15.setSize((-1), 1); + java.awt.Component var26 = var0.add((java.awt.Component)var15); + SpaceWar.SpacePanel var27 = new SpaceWar.SpacePanel(); + float var28 = var27.getAlignmentX(); + var27.setVisible(false); + var27.nextFocus(); + var27.updateUI(); + var27.enableInputMethods(true); + java.lang.String var35 = var27.toString(); + java.awt.FocusTraversalPolicy var36 = var27.getFocusTraversalPolicy(); + var15.removeKeyListener((java.awt.event.KeyListener)var27); + int var38 = var15.getY(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var28 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var35 + "' != '" + "SpaceWar.SpacePanel[,0,0,0var35,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"+ "'", var35.equals("SpaceWar.SpacePanel[,0,0,0var35,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]")); + + // Regression assertion (captures the current behavior of the code) + assertNull(var36); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var38 == 0); + + } + + public void test107() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test107"); + + + SpaceWar.Enemy var2 = new SpaceWar.Enemy(0, 100); + var2.explode(); + boolean var4 = var2.isDead(); + double var5 = var2.getX(); + boolean var6 = var2.isDead(); + boolean var7 = var2.isDead(); + var2.hit(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == 226.53068162065512d); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == false); + + } + + public void test108() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test108"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + boolean var2 = var0.hasFocus(); + boolean var3 = var0.isPreferredSizeSet(); + var0.firePropertyChange("", (short)1, (short)0); + boolean var8 = var0.isMaximumSizeSet(); + java.awt.peer.ComponentPeer var9 = var0.getPeer(); + SpaceWar.SpacePanel var10 = new SpaceWar.SpacePanel(); + float var11 = var10.getAlignmentX(); + var10.setVisible(false); + boolean var14 = var10.isDoubleBuffered(); + java.awt.dnd.DropTarget var15 = var10.getDropTarget(); + var10.show(false); + SpaceWar.SpacePanel var18 = new SpaceWar.SpacePanel(); + float var19 = var18.getAlignmentX(); + var18.setVisible(false); + SpaceWar.SpacePanel var22 = new SpaceWar.SpacePanel(); + java.awt.Color var23 = var22.getBackground(); + var18.setForeground(var23); + SpaceWar.SpacePanel var25 = new SpaceWar.SpacePanel(); + float var26 = var25.getAlignmentX(); + var25.setVisible(false); + boolean var29 = var25.isDoubleBuffered(); + java.awt.dnd.DropTarget var30 = var25.getDropTarget(); + var25.show(false); + java.awt.Rectangle var33 = var25.getVisibleRect(); + var18.repaint(var33); + java.awt.FocusTraversalPolicy var35 = var18.getFocusTraversalPolicy(); + java.awt.im.InputMethodRequests var36 = var18.getInputMethodRequests(); + var18.layout(); + SpaceWar.SpacePanel var38 = new SpaceWar.SpacePanel(); + float var39 = var38.getAlignmentX(); + var38.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var44 = new SpaceWar.SpacePanel(); + float var45 = var44.getAlignmentX(); + var44.setVisible(false); + SpaceWar.SpacePanel var48 = new SpaceWar.SpacePanel(); + java.awt.Color var49 = var48.getBackground(); + var44.setForeground(var49); + var38.setBackground(var49); + var18.setForeground(var49); + int var53 = var18.getWidth(); + javax.swing.plaf.PanelUI var54 = var18.getUI(); + var10.setUI(var54); + var0.setUI(var54); + javax.swing.ActionMap var57 = var0.getActionMap(); + javax.swing.KeyStroke[] var58 = var0.getRegisteredKeyStrokes(); + java.awt.Point var60 = var0.getMousePosition(true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var2 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var9); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var23); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var29 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var30); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var33); + + // Regression assertion (captures the current behavior of the code) + assertNull(var35); + + // Regression assertion (captures the current behavior of the code) + assertNull(var36); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var39 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var45 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var49); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var53 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var54); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var57); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var58); + + // Regression assertion (captures the current behavior of the code) + assertNull(var60); + + } + + public void test109() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test109"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + var0.show(false); + boolean var8 = var0.isPaintingForPrint(); + boolean var9 = var0.getIgnoreRepaint(); + java.awt.Component[] var10 = var0.getComponents(); + java.awt.Color var11 = var0.getBackground(); + java.awt.Cursor var12 = var0.getCursor(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var12); + + } + + public void test110() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test110"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + var0.setRequestFocusEnabled(false); + var0.setIgnoreRepaint(false); + boolean var7 = var0.isFocusable(); + boolean var8 = var0.isPaintingForPrint(); + java.awt.Dimension var9 = var0.preferredSize(); + var0.setFocusTraversalPolicyProvider(true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var9); + + } + + public void test111() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test111"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + var0.enable(false); + boolean var7 = var0.requestFocusInWindow(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == false); + + } + + public void test112() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test112"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + java.awt.Dimension var4 = var0.getPreferredSize(); + boolean var5 = var0.getVerifyInputWhenFocusTarget(); + java.awt.Component var8 = var0.findComponentAt(10, 1); + boolean var9 = var0.requestDefaultFocus(); + java.awt.Insets var10 = var0.getInsets(); + var0.setDoubleBuffered(false); + java.awt.Toolkit var13 = var0.getToolkit(); + SpaceWar.SpacePanel var14 = new SpaceWar.SpacePanel(); + float var15 = var14.getAlignmentX(); + var14.setVisible(false); + SpaceWar.SpacePanel var18 = new SpaceWar.SpacePanel(); + java.awt.Color var19 = var18.getBackground(); + var14.setForeground(var19); + SpaceWar.SpacePanel var21 = new SpaceWar.SpacePanel(); + float var22 = var21.getAlignmentX(); + var21.setVisible(false); + boolean var25 = var21.isDoubleBuffered(); + java.awt.dnd.DropTarget var26 = var21.getDropTarget(); + var21.show(false); + java.awt.Rectangle var29 = var21.getVisibleRect(); + var14.repaint(var29); + java.awt.FocusTraversalPolicy var31 = var14.getFocusTraversalPolicy(); + var14.resetKeyboardActions(); + SpaceWar.SpacePanel var33 = new SpaceWar.SpacePanel(); + float var34 = var33.getAlignmentX(); + var33.setVisible(false); + boolean var37 = var33.isDoubleBuffered(); + java.awt.dnd.DropTarget var38 = var33.getDropTarget(); + var33.show(false); + java.awt.Rectangle var41 = var33.getVisibleRect(); + var14.computeVisibleRect(var41); + SpaceWar.SpacePanel var43 = new SpaceWar.SpacePanel(); + java.awt.Color var44 = var43.getBackground(); + var43.repaint(); + java.awt.im.InputMethodRequests var46 = var43.getInputMethodRequests(); + var43.setDoubleBuffered(true); + var43.show(false); + var43.setAlignmentY(100.0f); + SpaceWar.SpacePanel var53 = new SpaceWar.SpacePanel(); + float var54 = var53.getAlignmentX(); + var53.setVisible(false); + SpaceWar.SpacePanel var57 = new SpaceWar.SpacePanel(); + java.awt.Color var58 = var57.getBackground(); + var53.setForeground(var58); + SpaceWar.SpacePanel var60 = new SpaceWar.SpacePanel(); + float var61 = var60.getAlignmentX(); + var60.setVisible(false); + boolean var64 = var60.isDoubleBuffered(); + java.awt.dnd.DropTarget var65 = var60.getDropTarget(); + var60.show(false); + java.awt.Rectangle var68 = var60.getVisibleRect(); + var53.repaint(var68); + java.awt.FocusTraversalPolicy var70 = var53.getFocusTraversalPolicy(); + java.awt.im.InputMethodRequests var71 = var53.getInputMethodRequests(); + var53.layout(); + boolean var73 = var53.isFocusTraversalPolicyProvider(); + java.awt.Insets var74 = var53.insets(); + java.awt.Dimension var75 = var53.getMinimumSize(); + java.awt.Dimension var76 = var43.getSize(var75); + var14.resize(var76); + var0.setSize(var76); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var4); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var22 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var29); + + // Regression assertion (captures the current behavior of the code) + assertNull(var31); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var34 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var38); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var41); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var44); + + // Regression assertion (captures the current behavior of the code) + assertNull(var46); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var54 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var58); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var61 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var64 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var65); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var68); + + // Regression assertion (captures the current behavior of the code) + assertNull(var70); + + // Regression assertion (captures the current behavior of the code) + assertNull(var71); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var73 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var74); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var75); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var76); + + } + + public void test113() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test113"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + var0.show(false); + boolean var8 = var0.isPaintingForPrint(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var15 = var9.getMouseListeners(); + int var16 = var9.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var17 = var9.getInputMethodRequests(); + var0.addKeyListener((java.awt.event.KeyListener)var9); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + float var20 = var19.getAlignmentX(); + var19.setVisible(false); + boolean var23 = var19.isDoubleBuffered(); + var19.list(); + float var25 = var19.getAlignmentY(); + boolean var26 = var9.isFocusCycleRoot((java.awt.Container)var19); + var19.firePropertyChange("", 1L, 1L); + var19.setVerifyInputWhenFocusTarget(true); + SpaceWar.SpacePanel var33 = new SpaceWar.SpacePanel(); + var33.setName(""); + java.awt.Dimension var36 = var33.minimumSize(); + boolean var37 = var33.isDoubleBuffered(); + SpaceWar.SpacePanel var38 = new SpaceWar.SpacePanel(); + float var39 = var38.getAlignmentX(); + SpaceWar.SpacePanel var40 = new SpaceWar.SpacePanel(); + float var41 = var40.getAlignmentX(); + var40.setVisible(false); + java.awt.Dimension var44 = var40.getPreferredSize(); + boolean var45 = var40.getVerifyInputWhenFocusTarget(); + java.awt.Component var48 = var40.findComponentAt(10, 1); + var38.addKeyListener((java.awt.event.KeyListener)var40); + var40.repaint(100, (-1), (-1), 1); + SpaceWar.SpacePanel var55 = new SpaceWar.SpacePanel(); + java.awt.Color var56 = var55.getBackground(); + var55.repaint(); + java.awt.im.InputMethodRequests var58 = var55.getInputMethodRequests(); + java.awt.GraphicsConfiguration var59 = var55.getGraphicsConfiguration(); + var40.remove((java.awt.Component)var55); + java.awt.Font var61 = var55.getFont(); + java.awt.FontMetrics var62 = var33.getFontMetrics(var61); + java.awt.FontMetrics var63 = var19.getFontMetrics(var61); + java.awt.Component[] var64 = var19.getComponents(); + var19.requestFocus(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var36); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var39 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var41 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var44); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var45 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var48); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var56); + + // Regression assertion (captures the current behavior of the code) + assertNull(var58); + + // Regression assertion (captures the current behavior of the code) + assertNull(var59); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var61); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var62); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var63); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var64); + + } + + public void test114() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test114"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + var0.show(false); + java.awt.Rectangle var8 = var0.getVisibleRect(); + java.awt.image.BufferedImage var10 = var0.loadImg("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + java.awt.ComponentOrientation var11 = var0.getComponentOrientation(); + boolean var12 = var0.isPaintingTile(); + boolean var13 = var0.isOptimizedDrawingEnabled(); + // The following exception was thrown during execution. + // This behavior will recorded for regression testing. + try { + var0.remove(400); + fail("Expected exception of type java.lang.ArrayIndexOutOfBoundsException"); + } catch (java.lang.ArrayIndexOutOfBoundsException e) { + // Expected exception. + } + + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == true); + + } + + public void test115() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test115"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + java.awt.Dimension var4 = var0.getPreferredSize(); + java.awt.Toolkit var5 = var0.getToolkit(); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + var6.setName(""); + int var9 = var6.getX(); + SpaceWar.SpacePanel var10 = new SpaceWar.SpacePanel(); + float var11 = var10.getAlignmentX(); + var10.setVisible(false); + var10.nextFocus(); + SpaceWar.SpacePanel var15 = new SpaceWar.SpacePanel(); + float var16 = var15.getAlignmentX(); + var15.setVisible(false); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + java.awt.Color var20 = var19.getBackground(); + var15.setForeground(var20); + var10.setBackground(var20); + var6.setBackground(var20); + var0.setForeground(var20); + SpaceWar.SpacePanel var25 = new SpaceWar.SpacePanel(); + float var26 = var25.getAlignmentX(); + var25.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var31 = new SpaceWar.SpacePanel(); + float var32 = var31.getAlignmentX(); + var31.setVisible(false); + java.awt.Dimension var35 = var31.getPreferredSize(); + var25.setMaximumSize(var35); + boolean var37 = var25.getVerifyInputWhenFocusTarget(); + javax.accessibility.AccessibleContext var38 = var25.getAccessibleContext(); + boolean var39 = var25.isDoubleBuffered(); + java.awt.Rectangle var40 = var25.getVisibleRect(); + var0.scrollRectToVisible(var40); + SpaceWar.SpacePanel var42 = new SpaceWar.SpacePanel(); + float var43 = var42.getAlignmentX(); + var42.setVisible(false); + java.awt.Dimension var46 = var42.getPreferredSize(); + java.awt.Toolkit var47 = var42.getToolkit(); + SpaceWar.SpacePanel var48 = new SpaceWar.SpacePanel(); + var48.setName(""); + int var51 = var48.getX(); + SpaceWar.SpacePanel var52 = new SpaceWar.SpacePanel(); + float var53 = var52.getAlignmentX(); + var52.setVisible(false); + var52.nextFocus(); + SpaceWar.SpacePanel var57 = new SpaceWar.SpacePanel(); + float var58 = var57.getAlignmentX(); + var57.setVisible(false); + SpaceWar.SpacePanel var61 = new SpaceWar.SpacePanel(); + java.awt.Color var62 = var61.getBackground(); + var57.setForeground(var62); + var52.setBackground(var62); + var48.setBackground(var62); + var42.setForeground(var62); + SpaceWar.SpacePanel var67 = new SpaceWar.SpacePanel(); + float var68 = var67.getAlignmentX(); + var67.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var73 = new SpaceWar.SpacePanel(); + float var74 = var73.getAlignmentX(); + var73.setVisible(false); + java.awt.Dimension var77 = var73.getPreferredSize(); + var67.setMaximumSize(var77); + boolean var79 = var67.getVerifyInputWhenFocusTarget(); + javax.accessibility.AccessibleContext var80 = var67.getAccessibleContext(); + boolean var81 = var67.isDoubleBuffered(); + java.awt.Rectangle var82 = var67.getVisibleRect(); + var42.scrollRectToVisible(var82); + var0.removeKeyListener((java.awt.event.KeyListener)var42); + boolean var85 = var0.isValidateRoot(); + java.awt.Point var86 = var0.location(); + javax.swing.border.Border var87 = var0.getBorder(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var4); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var32 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var35); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var38); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var39 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var40); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var43 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var46); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var47); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var51 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var53 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var58 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var62); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var68 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var74 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var77); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var79 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var80); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var81 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var82); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var85 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var86); + + // Regression assertion (captures the current behavior of the code) + assertNull(var87); + + } + + public void test116() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test116"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + boolean var2 = var0.hasFocus(); + boolean var3 = var0.isPreferredSizeSet(); + var0.firePropertyChange("", (short)1, (short)0); + boolean var8 = var0.isMaximumSizeSet(); + java.awt.image.ColorModel var9 = var0.getColorModel(); + var0.enableInputMethods(true); + var0.reshape(400, 3, 10, 2); + java.awt.Toolkit var17 = var0.getToolkit(); + int var18 = var0.getY(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var2 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var9); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == 3); + + } + + public void test117() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test117"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + java.awt.Dimension var4 = var0.getPreferredSize(); + java.awt.Toolkit var5 = var0.getToolkit(); + boolean var6 = var0.isFocusable(); + javax.swing.KeyStroke[] var7 = var0.getRegisteredKeyStrokes(); + java.awt.Component var10 = var0.getComponentAt(100, 100); + java.lang.Object var11 = var0.getTreeLock(); + boolean var14 = var0.inside(400, 0); + boolean var15 = var0.isFocusCycleRoot(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var4); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == false); + + } + + public void test118() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test118"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + java.awt.Color var7 = var6.getBackground(); + var6.repaint(); + var6.setRequestFocusEnabled(false); + var6.reshape(100, 0, 100, 0); + var6.requestFocus(); + SpaceWar.SpacePanel var17 = new SpaceWar.SpacePanel(); + float var18 = var17.getAlignmentX(); + var17.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var23 = var17.getUI(); + java.awt.im.InputMethodRequests var24 = var17.getInputMethodRequests(); + SpaceWar.SpacePanel var25 = new SpaceWar.SpacePanel(); + float var26 = var25.getAlignmentX(); + var25.setVisible(false); + var25.nextFocus(); + var25.updateUI(); + var25.enableInputMethods(true); + var25.setSize((-1), 1); + SpaceWar.SpacePanel var36 = new SpaceWar.SpacePanel(); + var36.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var17.add((java.awt.Component)var25, (java.lang.Object)"SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + SpaceWar.SpacePanel var42 = new SpaceWar.SpacePanel(); + var42.setName(""); + java.awt.ComponentOrientation var45 = var42.getComponentOrientation(); + var17.applyComponentOrientation(var45); + var6.setComponentOrientation(var45); + var0.applyComponentOrientation(var45); + int var49 = var0.getHeight(); + boolean var52 = var0.inside(3, 2); + java.beans.PropertyChangeListener[] var53 = var0.getPropertyChangeListeners(); + SpaceWar.SpacePanel var54 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var55 = new SpaceWar.SpacePanel(); + java.awt.Color var56 = var55.getBackground(); + SpaceWar.SpacePanel var57 = new SpaceWar.SpacePanel(); + float var58 = var57.getAlignmentX(); + var57.setVisible(false); + var57.nextFocus(); + var57.updateUI(); + var57.enableInputMethods(true); + var54.add((java.awt.Component)var55, (java.lang.Object)true); + java.awt.Dimension var66 = var55.getPreferredSize(); + var55.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", (-1.0f), 100.0f); + SpaceWar.SpacePanel var71 = new SpaceWar.SpacePanel(); + float var72 = var71.getAlignmentX(); + var71.setVisible(false); + boolean var75 = var71.isDoubleBuffered(); + SpaceWar.SpacePanel var76 = new SpaceWar.SpacePanel(); + java.awt.Color var77 = var76.getBackground(); + var76.repaint(); + java.lang.Object var79 = var71.getClientProperty((java.lang.Object)var76); + var55.remove((java.awt.Component)var71); + SpaceWar.SpacePanel var81 = new SpaceWar.SpacePanel(); + float var82 = var81.getAlignmentX(); + var81.firePropertyChange("", (-1), 1); + java.awt.event.MouseMotionListener[] var87 = var81.getMouseMotionListeners(); + java.awt.Dimension var88 = var81.getMinimumSize(); + var55.setMaximumSize(var88); + var0.resize(var88); + boolean var91 = var0.isPaintingTile(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var23); + + // Regression assertion (captures the current behavior of the code) + assertNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var45); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var49 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var52 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var53); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var56); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var58 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var66); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var72 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var75 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var77); + + // Regression assertion (captures the current behavior of the code) + assertNull(var79); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var82 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var87); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var88); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var91 == false); + + } + + public void test119() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test119"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var6 = var0.getMouseListeners(); + java.awt.Dimension var7 = var0.getPreferredSize(); + java.util.Locale var8 = var0.getLocale(); + var0.setFocusable(true); + var0.paintImmediately((-1), 10, 100, 25); + boolean var16 = var0.isOpaque(); + javax.swing.border.Border var17 = var0.getBorder(); + var0.requestFocus(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + } + + public void test120() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test120"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + SpaceWar.SpacePanel var4 = new SpaceWar.SpacePanel(); + java.awt.Color var5 = var4.getBackground(); + var0.setForeground(var5); + SpaceWar.SpacePanel var7 = new SpaceWar.SpacePanel(); + float var8 = var7.getAlignmentX(); + var7.setVisible(false); + boolean var11 = var7.isDoubleBuffered(); + java.awt.dnd.DropTarget var12 = var7.getDropTarget(); + var7.show(false); + java.awt.Rectangle var15 = var7.getVisibleRect(); + var0.repaint(var15); + java.awt.FocusTraversalPolicy var17 = var0.getFocusTraversalPolicy(); + SpaceWar.SpacePanel var18 = new SpaceWar.SpacePanel(); + float var19 = var18.getAlignmentX(); + var18.firePropertyChange("", (-1), 1); + boolean var24 = var18.isFocusOwner(); + SpaceWar.SpacePanel var26 = new SpaceWar.SpacePanel(); + float var27 = var26.getAlignmentX(); + var26.setVisible(false); + java.awt.Dimension var30 = var26.getPreferredSize(); + java.awt.Toolkit var31 = var26.getToolkit(); + SpaceWar.SpacePanel var32 = new SpaceWar.SpacePanel(); + var32.setName(""); + int var35 = var32.getX(); + SpaceWar.SpacePanel var36 = new SpaceWar.SpacePanel(); + float var37 = var36.getAlignmentX(); + var36.setVisible(false); + var36.nextFocus(); + SpaceWar.SpacePanel var41 = new SpaceWar.SpacePanel(); + float var42 = var41.getAlignmentX(); + var41.setVisible(false); + SpaceWar.SpacePanel var45 = new SpaceWar.SpacePanel(); + java.awt.Color var46 = var45.getBackground(); + var41.setForeground(var46); + var36.setBackground(var46); + var32.setBackground(var46); + var26.setForeground(var46); + var18.putClientProperty((java.lang.Object)(byte)100, (java.lang.Object)var46); + var0.setBackground(var46); + SpaceWar.SpacePanel var53 = new SpaceWar.SpacePanel(); + float var54 = var53.getAlignmentX(); + var53.setVisible(false); + boolean var57 = var53.isDoubleBuffered(); + java.awt.dnd.DropTarget var58 = var53.getDropTarget(); + var53.show(false); + boolean var61 = var53.isPaintingForPrint(); + SpaceWar.SpacePanel var62 = new SpaceWar.SpacePanel(); + float var63 = var62.getAlignmentX(); + SpaceWar.SpacePanel var64 = new SpaceWar.SpacePanel(); + float var65 = var64.getAlignmentX(); + var64.setVisible(false); + java.awt.Dimension var68 = var64.getPreferredSize(); + boolean var69 = var64.getVerifyInputWhenFocusTarget(); + java.awt.Component var72 = var64.findComponentAt(10, 1); + var62.addKeyListener((java.awt.event.KeyListener)var64); + java.awt.Dimension var74 = var64.getMinimumSize(); + var53.setMinimumSize(var74); + java.awt.Dimension var76 = var0.getSize(var74); + boolean var77 = var0.isValid(); + boolean var78 = var0.isOpaque(); + java.beans.PropertyChangeListener[] var79 = var0.getPropertyChangeListeners(); + javax.swing.ActionMap var80 = var0.getActionMap(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var24 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var30); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var31); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var35 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var42 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var46); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var54 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var57 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var58); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var61 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var63 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var65 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var68); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var69 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var72); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var74); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var76); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var77 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var78 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var79); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var80); + + } + + public void test121() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test121"); + + + SpaceWar.Enemy var2 = new SpaceWar.Enemy(0, 24); + double var3 = var2.getY(); + double var4 = var2.getX(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == 0.0d); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 284.06998599257884d); + + } + + public void test122() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test122"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + var0.enable(false); + java.awt.Container var7 = var0.getTopLevelAncestor(); + var0.show(false); + boolean var11 = var0.requestFocus(false); + java.awt.Cursor var12 = var0.getCursor(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var12); + + } + + public void test123() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test123"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + var0.show(false); + boolean var8 = var0.isPaintingForPrint(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var15 = var9.getMouseListeners(); + int var16 = var9.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var17 = var9.getInputMethodRequests(); + var0.addKeyListener((java.awt.event.KeyListener)var9); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + float var20 = var19.getAlignmentX(); + var19.setVisible(false); + boolean var23 = var19.isDoubleBuffered(); + var19.list(); + float var25 = var19.getAlignmentY(); + boolean var26 = var9.isFocusCycleRoot((java.awt.Container)var19); + java.awt.event.MouseListener[] var27 = var19.getMouseListeners(); + boolean var28 = var19.isDisplayable(); + boolean var29 = var19.isPaintingForPrint(); + var19.setFocusTraversalKeysEnabled(true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var27); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var28 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var29 == false); + + } + + public void test124() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test124"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + java.awt.Color var7 = var6.getBackground(); + var6.repaint(); + var6.setRequestFocusEnabled(false); + var6.reshape(100, 0, 100, 0); + var6.requestFocus(); + SpaceWar.SpacePanel var17 = new SpaceWar.SpacePanel(); + float var18 = var17.getAlignmentX(); + var17.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var23 = var17.getUI(); + java.awt.im.InputMethodRequests var24 = var17.getInputMethodRequests(); + SpaceWar.SpacePanel var25 = new SpaceWar.SpacePanel(); + float var26 = var25.getAlignmentX(); + var25.setVisible(false); + var25.nextFocus(); + var25.updateUI(); + var25.enableInputMethods(true); + var25.setSize((-1), 1); + SpaceWar.SpacePanel var36 = new SpaceWar.SpacePanel(); + var36.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var17.add((java.awt.Component)var25, (java.lang.Object)"SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + SpaceWar.SpacePanel var42 = new SpaceWar.SpacePanel(); + var42.setName(""); + java.awt.ComponentOrientation var45 = var42.getComponentOrientation(); + var17.applyComponentOrientation(var45); + var6.setComponentOrientation(var45); + var0.applyComponentOrientation(var45); + int var49 = var0.getHeight(); + boolean var52 = var0.inside(3, 2); + java.beans.PropertyChangeListener[] var53 = var0.getPropertyChangeListeners(); + SpaceWar.SpacePanel var54 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var55 = new SpaceWar.SpacePanel(); + java.awt.Color var56 = var55.getBackground(); + SpaceWar.SpacePanel var57 = new SpaceWar.SpacePanel(); + float var58 = var57.getAlignmentX(); + var57.setVisible(false); + var57.nextFocus(); + var57.updateUI(); + var57.enableInputMethods(true); + var54.add((java.awt.Component)var55, (java.lang.Object)true); + java.awt.Dimension var66 = var55.getPreferredSize(); + var55.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", (-1.0f), 100.0f); + SpaceWar.SpacePanel var71 = new SpaceWar.SpacePanel(); + float var72 = var71.getAlignmentX(); + var71.setVisible(false); + boolean var75 = var71.isDoubleBuffered(); + SpaceWar.SpacePanel var76 = new SpaceWar.SpacePanel(); + java.awt.Color var77 = var76.getBackground(); + var76.repaint(); + java.lang.Object var79 = var71.getClientProperty((java.lang.Object)var76); + var55.remove((java.awt.Component)var71); + SpaceWar.SpacePanel var81 = new SpaceWar.SpacePanel(); + float var82 = var81.getAlignmentX(); + var81.firePropertyChange("", (-1), 1); + java.awt.event.MouseMotionListener[] var87 = var81.getMouseMotionListeners(); + java.awt.Dimension var88 = var81.getMinimumSize(); + var55.setMaximumSize(var88); + var0.resize(var88); + boolean var91 = var0.getIgnoreRepaint(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var23); + + // Regression assertion (captures the current behavior of the code) + assertNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var45); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var49 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var52 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var53); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var56); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var58 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var66); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var72 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var75 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var77); + + // Regression assertion (captures the current behavior of the code) + assertNull(var79); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var82 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var87); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var88); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var91 == false); + + } + + public void test125() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test125"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + var0.list(); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + float var7 = var6.getAlignmentX(); + var6.setVisible(false); + boolean var10 = var6.isDoubleBuffered(); + java.awt.dnd.DropTarget var11 = var6.getDropTarget(); + var6.show(false); + java.awt.Rectangle var14 = var6.getVisibleRect(); + java.awt.Rectangle var15 = var0.getBounds(var14); + javax.swing.JToolTip var16 = var0.createToolTip(); + java.awt.Graphics var17 = var0.getGraphics(); + var0.enable(false); + java.awt.GraphicsConfiguration var20 = var0.getGraphicsConfiguration(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertNull(var20); + + } + + public void test126() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test126"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + float var7 = var6.getAlignmentX(); + var6.setVisible(false); + java.awt.Dimension var10 = var6.getPreferredSize(); + var0.setMaximumSize(var10); + boolean var12 = var0.getVerifyInputWhenFocusTarget(); + boolean var13 = var0.isFontSet(); + boolean var14 = var0.getIgnoreRepaint(); + java.awt.Component var17 = var0.locate(1, 25); + boolean var18 = var0.isLightweight(); + var0.move(100, 500); + var0.resetKeyboardActions(); + var0.setOpaque(false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == false); + + } + + public void test127() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test127"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + var0.show(false); + boolean var8 = var0.isPaintingForPrint(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var15 = var9.getMouseListeners(); + int var16 = var9.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var17 = var9.getInputMethodRequests(); + var0.addKeyListener((java.awt.event.KeyListener)var9); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + float var20 = var19.getAlignmentX(); + var19.setVisible(false); + boolean var23 = var19.isDoubleBuffered(); + var19.list(); + float var25 = var19.getAlignmentY(); + boolean var26 = var9.isFocusCycleRoot((java.awt.Container)var19); + var19.firePropertyChange("", 1L, 1L); + var19.setVerifyInputWhenFocusTarget(true); + var19.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", '4', '4'); + java.awt.Point var37 = var19.getLocation(); + int var38 = var19.getDebugGraphicsOptions(); + java.lang.String var39 = var19.getName(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var37); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var38 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var39); + + } + + public void test128() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test128"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var1 = new SpaceWar.SpacePanel(); + java.awt.Color var2 = var1.getBackground(); + SpaceWar.SpacePanel var3 = new SpaceWar.SpacePanel(); + float var4 = var3.getAlignmentX(); + var3.setVisible(false); + var3.nextFocus(); + var3.updateUI(); + var3.enableInputMethods(true); + var0.add((java.awt.Component)var1, (java.lang.Object)true); + var1.repaint(100L); + java.awt.Component var14 = var1.getNextFocusableComponent(); + javax.accessibility.AccessibleContext var15 = var1.getAccessibleContext(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var2); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + } + + public void test129() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test129"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.reshape((-1), 1, (-1), 10); + var0.disable(); + java.awt.LayoutManager var11 = var0.getLayout(); + boolean var14 = var0.contains((-1), 0); + SpaceWar.SpacePanel var15 = new SpaceWar.SpacePanel(); + float var16 = var15.getAlignmentX(); + var15.setVisible(false); + var15.nextFocus(); + var15.updateUI(); + var15.enableInputMethods(true); + var15.setSize((-1), 1); + java.awt.Component var26 = var0.add((java.awt.Component)var15); + var15.nextFocus(); + boolean var28 = var15.hasFocus(); + java.lang.String var29 = var15.getUIClassID(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var28 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var29 + "' != '" + "PanelUI"+ "'", var29.equals("PanelUI")); + + } + + public void test130() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test130"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.requestFocus(); + boolean var6 = var0.getInheritsPopupMenu(); + boolean var7 = var0.isFocusOwner(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + var8.nextFocus(); + var8.updateUI(); + var8.enableInputMethods(true); + java.awt.Point var17 = var8.getMousePosition(false); + java.awt.Component.BaselineResizeBehavior var18 = var8.getBaselineResizeBehavior(); + boolean var19 = var8.isMaximumSizeSet(); + SpaceWar.SpacePanel var20 = new SpaceWar.SpacePanel(); + float var21 = var20.getAlignmentX(); + var20.setVisible(false); + boolean var24 = var20.isDoubleBuffered(); + var20.list(); + SpaceWar.SpacePanel var26 = new SpaceWar.SpacePanel(); + float var27 = var26.getAlignmentX(); + var26.setVisible(false); + boolean var30 = var26.isDoubleBuffered(); + java.awt.dnd.DropTarget var31 = var26.getDropTarget(); + var26.show(false); + java.awt.Rectangle var34 = var26.getVisibleRect(); + java.awt.Rectangle var35 = var20.getBounds(var34); + javax.swing.JToolTip var36 = var20.createToolTip(); + java.awt.Dimension var37 = var20.minimumSize(); + boolean var39 = var20.requestFocus(false); + java.awt.Dimension var40 = var20.getMaximumSize(); + var0.putClientProperty((java.lang.Object)var8, (java.lang.Object)var20); + boolean var42 = var20.isEnabled(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var24 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var30 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var31); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var34); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var35); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var36); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var37); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var39 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var40); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var42 == true); + + } + + public void test131() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test131"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + java.awt.im.InputMethodRequests var3 = var0.getInputMethodRequests(); + var0.setDoubleBuffered(true); + var0.show(false); + var0.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", (-1), 24); + boolean var12 = var0.getAutoscrolls(); + java.awt.Graphics var13 = var0.getGraphics(); + java.awt.Dimension var14 = var0.getMaximumSize(); + java.awt.Dimension var15 = var0.getMaximumSize(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + } + + public void test132() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test132"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.reshape((-1), 1, (-1), 10); + var0.disable(); + java.awt.LayoutManager var11 = var0.getLayout(); + var0.setFocusTraversalKeysEnabled(true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + } + + public void test133() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test133"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + boolean var4 = var0.inside(0, (-1)); + var0.transferFocusUpCycle(); + java.awt.Toolkit var6 = var0.getToolkit(); + boolean var7 = var0.isValid(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == false); + + } + + public void test134() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test134"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + boolean var5 = javax.swing.JComponent.isLightweightComponent((java.awt.Component)var0); + java.awt.event.MouseWheelListener[] var6 = var0.getMouseWheelListeners(); + var0.transferFocusUpCycle(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + boolean var10 = var8.hasFocus(); + boolean var11 = var8.isPreferredSizeSet(); + SpaceWar.SpacePanel var12 = new SpaceWar.SpacePanel(); + java.awt.Color var13 = var12.getBackground(); + var12.repaint(); + var12.setRequestFocusEnabled(false); + int var17 = var8.getComponentZOrder((java.awt.Component)var12); + boolean var18 = var8.requestDefaultFocus(); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + float var20 = var19.getAlignmentX(); + var19.setVisible(false); + SpaceWar.SpacePanel var23 = new SpaceWar.SpacePanel(); + java.awt.Color var24 = var23.getBackground(); + var19.setForeground(var24); + SpaceWar.SpacePanel var26 = new SpaceWar.SpacePanel(); + float var27 = var26.getAlignmentX(); + var26.setVisible(false); + boolean var30 = var26.isDoubleBuffered(); + java.awt.dnd.DropTarget var31 = var26.getDropTarget(); + var26.show(false); + java.awt.Rectangle var34 = var26.getVisibleRect(); + var19.repaint(var34); + java.awt.FocusTraversalPolicy var36 = var19.getFocusTraversalPolicy(); + SpaceWar.SpacePanel var37 = new SpaceWar.SpacePanel(); + float var38 = var37.getAlignmentX(); + var37.firePropertyChange("", (-1), 1); + boolean var43 = var37.isFocusOwner(); + SpaceWar.SpacePanel var45 = new SpaceWar.SpacePanel(); + float var46 = var45.getAlignmentX(); + var45.setVisible(false); + java.awt.Dimension var49 = var45.getPreferredSize(); + java.awt.Toolkit var50 = var45.getToolkit(); + SpaceWar.SpacePanel var51 = new SpaceWar.SpacePanel(); + var51.setName(""); + int var54 = var51.getX(); + SpaceWar.SpacePanel var55 = new SpaceWar.SpacePanel(); + float var56 = var55.getAlignmentX(); + var55.setVisible(false); + var55.nextFocus(); + SpaceWar.SpacePanel var60 = new SpaceWar.SpacePanel(); + float var61 = var60.getAlignmentX(); + var60.setVisible(false); + SpaceWar.SpacePanel var64 = new SpaceWar.SpacePanel(); + java.awt.Color var65 = var64.getBackground(); + var60.setForeground(var65); + var55.setBackground(var65); + var51.setBackground(var65); + var45.setForeground(var65); + var37.putClientProperty((java.lang.Object)(byte)100, (java.lang.Object)var65); + var19.setBackground(var65); + SpaceWar.SpacePanel var72 = new SpaceWar.SpacePanel(); + float var73 = var72.getAlignmentX(); + var72.setVisible(false); + boolean var76 = var72.isDoubleBuffered(); + java.awt.dnd.DropTarget var77 = var72.getDropTarget(); + var72.show(false); + boolean var80 = var72.isPaintingForPrint(); + SpaceWar.SpacePanel var81 = new SpaceWar.SpacePanel(); + float var82 = var81.getAlignmentX(); + SpaceWar.SpacePanel var83 = new SpaceWar.SpacePanel(); + float var84 = var83.getAlignmentX(); + var83.setVisible(false); + java.awt.Dimension var87 = var83.getPreferredSize(); + boolean var88 = var83.getVerifyInputWhenFocusTarget(); + java.awt.Component var91 = var83.findComponentAt(10, 1); + var81.addKeyListener((java.awt.event.KeyListener)var83); + java.awt.Dimension var93 = var83.getMinimumSize(); + var72.setMinimumSize(var93); + java.awt.Dimension var95 = var19.getSize(var93); + java.awt.Rectangle var96 = var19.getVisibleRect(); + var8.paintImmediately(var96); + var0.scrollRectToVisible(var96); + var0.grabFocus(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == (-1)); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var30 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var31); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var34); + + // Regression assertion (captures the current behavior of the code) + assertNull(var36); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var38 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var43 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var46 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var49); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var50); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var54 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var56 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var61 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var65); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var73 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var76 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var77); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var80 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var82 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var84 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var87); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var88 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var91); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var93); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var95); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var96); + + } + + public void test135() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test135"); + + + SpaceWar.Player var0 = new SpaceWar.Player(); + int var1 = var0.getR(); + var0.setRigth(false); + var0.setLife(100); + var0.setDown(false); + var0.setRigth(true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 25); + + } + + public void test136() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test136"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var1 = new SpaceWar.SpacePanel(); + java.awt.Color var2 = var1.getBackground(); + SpaceWar.SpacePanel var3 = new SpaceWar.SpacePanel(); + float var4 = var3.getAlignmentX(); + var3.setVisible(false); + var3.nextFocus(); + var3.updateUI(); + var3.enableInputMethods(true); + var0.add((java.awt.Component)var1, (java.lang.Object)true); + boolean var13 = var1.areFocusTraversalKeysSet(0); + SpaceWar.SpacePanel var14 = new SpaceWar.SpacePanel(); + float var15 = var14.getAlignmentX(); + var14.setVisible(false); + SpaceWar.SpacePanel var18 = new SpaceWar.SpacePanel(); + java.awt.Color var19 = var18.getBackground(); + var14.setForeground(var19); + SpaceWar.SpacePanel var21 = new SpaceWar.SpacePanel(); + float var22 = var21.getAlignmentX(); + var21.setVisible(false); + boolean var25 = var21.isDoubleBuffered(); + java.awt.dnd.DropTarget var26 = var21.getDropTarget(); + var21.show(false); + java.awt.Rectangle var29 = var21.getVisibleRect(); + var14.repaint(var29); + java.awt.FocusTraversalPolicy var31 = var14.getFocusTraversalPolicy(); + SpaceWar.SpacePanel var32 = new SpaceWar.SpacePanel(); + float var33 = var32.getAlignmentX(); + var32.firePropertyChange("", (-1), 1); + boolean var38 = var32.isFocusOwner(); + SpaceWar.SpacePanel var40 = new SpaceWar.SpacePanel(); + float var41 = var40.getAlignmentX(); + var40.setVisible(false); + java.awt.Dimension var44 = var40.getPreferredSize(); + java.awt.Toolkit var45 = var40.getToolkit(); + SpaceWar.SpacePanel var46 = new SpaceWar.SpacePanel(); + var46.setName(""); + int var49 = var46.getX(); + SpaceWar.SpacePanel var50 = new SpaceWar.SpacePanel(); + float var51 = var50.getAlignmentX(); + var50.setVisible(false); + var50.nextFocus(); + SpaceWar.SpacePanel var55 = new SpaceWar.SpacePanel(); + float var56 = var55.getAlignmentX(); + var55.setVisible(false); + SpaceWar.SpacePanel var59 = new SpaceWar.SpacePanel(); + java.awt.Color var60 = var59.getBackground(); + var55.setForeground(var60); + var50.setBackground(var60); + var46.setBackground(var60); + var40.setForeground(var60); + var32.putClientProperty((java.lang.Object)(byte)100, (java.lang.Object)var60); + var14.setBackground(var60); + SpaceWar.SpacePanel var67 = new SpaceWar.SpacePanel(); + float var68 = var67.getAlignmentX(); + var67.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var73 = new SpaceWar.SpacePanel(); + float var74 = var73.getAlignmentX(); + var73.setVisible(false); + SpaceWar.SpacePanel var77 = new SpaceWar.SpacePanel(); + java.awt.Color var78 = var77.getBackground(); + var73.setForeground(var78); + var67.setBackground(var78); + java.awt.Point var81 = var67.location(); + java.awt.Point var82 = var14.getLocation(var81); + boolean var83 = var1.contains(var82); + boolean var84 = var1.isDisplayable(); + boolean var85 = var1.isFocusTraversalPolicyProvider(); + var1.resize((-1), 3); + var1.setFocusTraversalPolicyProvider(true); + var1.setAutoscrolls(false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var2); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var22 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var29); + + // Regression assertion (captures the current behavior of the code) + assertNull(var31); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var33 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var38 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var41 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var44); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var45); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var49 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var51 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var56 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var60); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var68 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var74 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var78); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var81); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var82); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var83 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var84 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var85 == false); + + } + + public void test137() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test137"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var1 = new SpaceWar.SpacePanel(); + java.awt.Color var2 = var1.getBackground(); + SpaceWar.SpacePanel var3 = new SpaceWar.SpacePanel(); + float var4 = var3.getAlignmentX(); + var3.setVisible(false); + var3.nextFocus(); + var3.updateUI(); + var3.enableInputMethods(true); + var0.add((java.awt.Component)var1, (java.lang.Object)true); + boolean var12 = var0.isMinimumSizeSet(); + java.awt.event.HierarchyListener[] var13 = var0.getHierarchyListeners(); + var0.repaint(0L); + boolean var16 = var0.isValidateRoot(); + var0.removeNotify(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var2); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == false); + + } + + public void test138() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test138"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + SpaceWar.SpacePanel var2 = new SpaceWar.SpacePanel(); + float var3 = var2.getAlignmentX(); + var2.setVisible(false); + java.awt.Dimension var6 = var2.getPreferredSize(); + boolean var7 = var2.getVerifyInputWhenFocusTarget(); + java.awt.Component var10 = var2.findComponentAt(10, 1); + var0.addKeyListener((java.awt.event.KeyListener)var2); + boolean var12 = var2.getFocusTraversalKeysEnabled(); + int var13 = var2.getWidth(); + var2.setVerifyInputWhenFocusTarget(true); + java.awt.event.HierarchyBoundsListener[] var16 = var2.getHierarchyBoundsListeners(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + } + + public void test139() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test139"); + + + SpaceWar.Enemy var2 = new SpaceWar.Enemy(0, 100); + var2.explode(); + boolean var4 = var2.isDead(); + double var5 = var2.getX(); + boolean var6 = var2.isDead(); + boolean var7 = var2.isDead(); + double var8 = var2.getY(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == 598.7723694382034d); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 0.0d); + + } + + public void test140() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test140"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var6 = var0.getUI(); + java.awt.im.InputMethodRequests var7 = var0.getInputMethodRequests(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + var8.nextFocus(); + var8.updateUI(); + var8.enableInputMethods(true); + var8.setSize((-1), 1); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + var19.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var0.add((java.awt.Component)var8, (java.lang.Object)"SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + java.awt.event.KeyListener[] var25 = var0.getKeyListeners(); + java.awt.FocusTraversalPolicy var26 = var0.getFocusTraversalPolicy(); + java.awt.Component var29 = var0.locate((-1), 25); + var0.repaint(100L, 100, 25, 399, 3); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var25); + + // Regression assertion (captures the current behavior of the code) + assertNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertNull(var29); + + } + + public void test141() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test141"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + var0.list(); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + float var7 = var6.getAlignmentX(); + var6.setVisible(false); + boolean var10 = var6.isDoubleBuffered(); + java.awt.dnd.DropTarget var11 = var6.getDropTarget(); + var6.show(false); + java.awt.Rectangle var14 = var6.getVisibleRect(); + java.awt.Rectangle var15 = var0.getBounds(var14); + javax.swing.JToolTip var16 = var0.createToolTip(); + boolean var17 = javax.swing.JComponent.isLightweightComponent((java.awt.Component)var0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == false); + + } + + public void test142() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test142"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + var0.setRequestFocusEnabled(false); + var0.reshape(100, 0, 100, 0); + var0.requestFocus(); + var0.firePropertyChange("hi!", '4', ' '); + java.awt.Point var15 = var0.getLocation(); + java.awt.Dimension var16 = var0.size(); + java.awt.Image var19 = var0.createImage((-1), (-1)); + java.awt.event.ComponentListener[] var20 = var0.getComponentListeners(); + SpaceWar.SpacePanel var21 = new SpaceWar.SpacePanel(); + var21.setName(""); + java.awt.ComponentOrientation var24 = var21.getComponentOrientation(); + var21.firePropertyChange("PanelUI", 1.0f, 0.5f); + int var29 = var0.getComponentZOrder((java.awt.Component)var21); + boolean var31 = var0.areFocusTraversalKeysSet(0); + java.awt.event.MouseWheelListener[] var32 = var0.getMouseWheelListeners(); + boolean var33 = var0.isMaximumSizeSet(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var29 == (-1)); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var31 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var32); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var33 == false); + + } + + public void test143() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test143"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + var0.show(false); + boolean var8 = var0.isPaintingForPrint(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var15 = var9.getMouseListeners(); + int var16 = var9.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var17 = var9.getInputMethodRequests(); + var0.addKeyListener((java.awt.event.KeyListener)var9); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + float var20 = var19.getAlignmentX(); + var19.setVisible(false); + boolean var23 = var19.isDoubleBuffered(); + var19.list(); + float var25 = var19.getAlignmentY(); + boolean var26 = var9.isFocusCycleRoot((java.awt.Container)var19); + SpaceWar.SpacePanel var28 = new SpaceWar.SpacePanel(); + float var29 = var28.getAlignmentX(); + var28.setVisible(false); + var28.nextFocus(); + var28.updateUI(); + java.awt.Component var34 = var9.add("", (java.awt.Component)var28); + SpaceWar.SpacePanel var36 = new SpaceWar.SpacePanel(); + java.awt.Color var37 = var36.getBackground(); + var36.repaint(); + var36.setRequestFocusEnabled(false); + var36.reshape(100, 0, 100, 0); + var36.requestFocus(); + var36.firePropertyChange("hi!", '4', ' '); + java.awt.Point var51 = var36.getLocation(); + java.awt.Dimension var52 = var36.size(); + java.awt.Component var53 = var9.add("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", (java.awt.Component)var36); + SpaceWar.SpacePanel var54 = new SpaceWar.SpacePanel(); + float var55 = var54.getAlignmentX(); + var54.setVisible(false); + var54.nextFocus(); + var54.reshape((-1), 1, (-1), 10); + var54.disable(); + java.awt.LayoutManager var65 = var54.getLayout(); + // The following exception was thrown during execution. + // This behavior will recorded for regression testing. + try { + var36.setComponentZOrder((java.awt.Component)var54, 1); + fail("Expected exception of type java.lang.IllegalArgumentException"); + } catch (java.lang.IllegalArgumentException e) { + // Expected exception. + } + + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var29 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var34); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var37); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var51); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var52); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var53); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var55 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var65); + + } + + public void test144() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test144"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + boolean var6 = var0.isFocusCycleRoot(); + SpaceWar.SpacePanel var7 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + java.awt.Color var9 = var8.getBackground(); + SpaceWar.SpacePanel var10 = new SpaceWar.SpacePanel(); + float var11 = var10.getAlignmentX(); + var10.setVisible(false); + var10.nextFocus(); + var10.updateUI(); + var10.enableInputMethods(true); + var7.add((java.awt.Component)var8, (java.lang.Object)true); + java.awt.Dimension var19 = var8.getPreferredSize(); + var0.setSize(var19); + var0.updateUI(); + var0.resetKeyboardActions(); + SpaceWar.SpacePanel var23 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var24 = new SpaceWar.SpacePanel(); + float var25 = var24.getAlignmentX(); + var24.setVisible(false); + var24.nextFocus(); + var24.reshape((-1), 1, (-1), 10); + SpaceWar.SpacePanel var34 = new SpaceWar.SpacePanel(); + java.awt.Color var35 = var34.getBackground(); + var34.repaint(); + var34.setRequestFocusEnabled(false); + var34.reshape(100, 0, 100, 0); + java.awt.Component var44 = var24.add((java.awt.Component)var34); + SpaceWar.SpacePanel var45 = new SpaceWar.SpacePanel(); + var45.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + javax.swing.plaf.PanelUI var50 = var45.getUI(); + SpaceWar.SpacePanel var51 = new SpaceWar.SpacePanel(); + float var52 = var51.getAlignmentX(); + var51.setVisible(false); + var51.nextFocus(); + var51.repaint(1L); + SpaceWar.SpacePanel var58 = new SpaceWar.SpacePanel(); + float var59 = var58.getAlignmentX(); + var58.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var64 = new SpaceWar.SpacePanel(); + float var65 = var64.getAlignmentX(); + var64.setVisible(false); + java.awt.Dimension var68 = var64.getPreferredSize(); + var58.setMaximumSize(var68); + var51.setPreferredSize(var68); + var45.setMaximumSize(var68); + java.awt.Dimension var72 = var34.getSize(var68); + java.awt.Dimension var73 = var23.getSize(var72); + var0.setPreferredSize(var72); + var0.list(); + java.awt.Dimension var76 = var0.minimumSize(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var9); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var35); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var44); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var50); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var52 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var59 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var65 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var68); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var72); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var73); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var76); + + } + + public void test145() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test145"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var1 = new SpaceWar.SpacePanel(); + java.awt.Color var2 = var1.getBackground(); + SpaceWar.SpacePanel var3 = new SpaceWar.SpacePanel(); + float var4 = var3.getAlignmentX(); + var3.setVisible(false); + var3.nextFocus(); + var3.updateUI(); + var3.enableInputMethods(true); + var0.add((java.awt.Component)var1, (java.lang.Object)true); + java.awt.Image var14 = var1.createImage(1, (-1)); + java.beans.PropertyChangeListener[] var15 = var1.getPropertyChangeListeners(); + SpaceWar.SpacePanel var16 = new SpaceWar.SpacePanel(); + java.awt.Color var17 = var16.getBackground(); + var16.repaint(); + java.awt.im.InputMethodRequests var19 = var16.getInputMethodRequests(); + int var20 = var16.countComponents(); + java.awt.event.ComponentListener[] var21 = var16.getComponentListeners(); + var16.removeNotify(); + java.awt.Component var25 = var16.getComponentAt(1, (-1)); + SpaceWar.SpacePanel var26 = new SpaceWar.SpacePanel(); + float var27 = var26.getAlignmentX(); + var26.setVisible(false); + SpaceWar.SpacePanel var30 = new SpaceWar.SpacePanel(); + java.awt.Color var31 = var30.getBackground(); + var26.setForeground(var31); + SpaceWar.SpacePanel var33 = new SpaceWar.SpacePanel(); + float var34 = var33.getAlignmentX(); + var33.setVisible(false); + boolean var37 = var33.isDoubleBuffered(); + java.awt.dnd.DropTarget var38 = var33.getDropTarget(); + var33.show(false); + java.awt.Rectangle var41 = var33.getVisibleRect(); + var26.repaint(var41); + java.awt.Component.BaselineResizeBehavior var43 = var26.getBaselineResizeBehavior(); + SpaceWar.SpacePanel var44 = new SpaceWar.SpacePanel(); + float var45 = var44.getAlignmentX(); + var44.setVisible(false); + var44.nextFocus(); + var44.repaint(1L); + SpaceWar.SpacePanel var51 = new SpaceWar.SpacePanel(); + float var52 = var51.getAlignmentX(); + var51.setVisible(false); + boolean var55 = var51.isDoubleBuffered(); + var51.list(); + SpaceWar.SpacePanel var57 = new SpaceWar.SpacePanel(); + float var58 = var57.getAlignmentX(); + var57.setVisible(false); + boolean var61 = var57.isDoubleBuffered(); + java.awt.dnd.DropTarget var62 = var57.getDropTarget(); + var57.show(false); + java.awt.Rectangle var65 = var57.getVisibleRect(); + java.awt.Rectangle var66 = var51.getBounds(var65); + var44.setBounds(var66); + var26.paintImmediately(var66); + var16.repaint(var66); + java.awt.Dimension var70 = var16.minimumSize(); + var1.setMinimumSize(var70); + javax.swing.plaf.PanelUI var72 = var1.getUI(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var2); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var21); + + // Regression assertion (captures the current behavior of the code) + assertNull(var25); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var31); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var34 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var38); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var41); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var43); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var45 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var52 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var55 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var58 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var61 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var62); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var65); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var66); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var70); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var72); + + } + + public void test146() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test146"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var1 = new SpaceWar.SpacePanel(); + java.awt.Color var2 = var1.getBackground(); + SpaceWar.SpacePanel var3 = new SpaceWar.SpacePanel(); + float var4 = var3.getAlignmentX(); + var3.setVisible(false); + var3.nextFocus(); + var3.updateUI(); + var3.enableInputMethods(true); + var0.add((java.awt.Component)var1, (java.lang.Object)true); + boolean var12 = var0.isMinimumSizeSet(); + java.awt.event.HierarchyListener[] var13 = var0.getHierarchyListeners(); + SpaceWar.SpacePanel var14 = new SpaceWar.SpacePanel(); + float var15 = var14.getAlignmentX(); + var14.setVisible(false); + SpaceWar.SpacePanel var18 = new SpaceWar.SpacePanel(); + java.awt.Color var19 = var18.getBackground(); + var14.setForeground(var19); + SpaceWar.SpacePanel var21 = new SpaceWar.SpacePanel(); + float var22 = var21.getAlignmentX(); + var21.setVisible(false); + boolean var25 = var21.isDoubleBuffered(); + java.awt.dnd.DropTarget var26 = var21.getDropTarget(); + var21.show(false); + java.awt.Rectangle var29 = var21.getVisibleRect(); + var14.repaint(var29); + java.awt.FocusTraversalPolicy var31 = var14.getFocusTraversalPolicy(); + java.awt.im.InputMethodRequests var32 = var14.getInputMethodRequests(); + var14.layout(); + boolean var34 = var14.isFocusTraversalPolicyProvider(); + java.lang.Object var35 = var0.getClientProperty((java.lang.Object)var34); + java.awt.Dimension var36 = var0.getSize(); + javax.swing.ActionMap var37 = var0.getActionMap(); + boolean var38 = var0.hasFocus(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var2); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var22 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var29); + + // Regression assertion (captures the current behavior of the code) + assertNull(var31); + + // Regression assertion (captures the current behavior of the code) + assertNull(var32); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var34 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var35); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var36); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var37); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var38 == false); + + } + + public void test147() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test147"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + SpaceWar.SpacePanel var4 = new SpaceWar.SpacePanel(); + java.awt.Color var5 = var4.getBackground(); + var0.setForeground(var5); + SpaceWar.SpacePanel var7 = new SpaceWar.SpacePanel(); + float var8 = var7.getAlignmentX(); + var7.setVisible(false); + boolean var11 = var7.isDoubleBuffered(); + java.awt.dnd.DropTarget var12 = var7.getDropTarget(); + var7.show(false); + java.awt.Rectangle var15 = var7.getVisibleRect(); + var0.repaint(var15); + java.awt.FocusTraversalPolicy var17 = var0.getFocusTraversalPolicy(); + java.awt.im.InputMethodRequests var18 = var0.getInputMethodRequests(); + var0.layout(); + boolean var20 = var0.isFocusTraversalPolicyProvider(); + java.awt.Insets var21 = var0.insets(); + java.awt.Dimension var22 = var0.getMinimumSize(); + javax.accessibility.AccessibleContext var23 = var0.getAccessibleContext(); + int var24 = var0.getX(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var21); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var23); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var24 == 0); + + } + + public void test148() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test148"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var6 = var0.getMouseListeners(); + int var7 = var0.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var8 = var0.getInputMethodRequests(); + var0.removeNotify(); + var0.enable(); + SpaceWar.SpacePanel var11 = new SpaceWar.SpacePanel(); + java.awt.Color var12 = var11.getBackground(); + boolean var15 = var11.inside(0, (-1)); + var11.transferFocusUpCycle(); + java.lang.String var17 = var11.getName(); + boolean var18 = var0.isFocusCycleRoot((java.awt.Container)var11); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + java.awt.Color var20 = var19.getBackground(); + var19.repaint(); + var19.setRequestFocusEnabled(false); + var19.reshape(100, 0, 100, 0); + var19.requestFocus(); + var19.firePropertyChange("hi!", '4', ' '); + java.awt.Point var34 = var19.getLocation(); + java.awt.Component var35 = var11.getComponentAt(var34); + var11.setRequestFocusEnabled(true); + SpaceWar.SpacePanel var38 = new SpaceWar.SpacePanel(); + float var39 = var38.getAlignmentX(); + boolean var40 = var38.hasFocus(); + SpaceWar.SpacePanel var41 = new SpaceWar.SpacePanel(); + float var42 = var41.getAlignmentX(); + var41.setVisible(false); + var41.nextFocus(); + var41.reshape((-1), 1, (-1), 10); + var41.disable(); + java.awt.LayoutManager var52 = var41.getLayout(); + var41.setVisible(false); + var38.remove((java.awt.Component)var41); + boolean var56 = var41.hasFocus(); + java.lang.String var57 = var41.toString(); + var11.addKeyListener((java.awt.event.KeyListener)var41); + boolean var59 = var41.isFocusOwner(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var34); + + // Regression assertion (captures the current behavior of the code) + assertNull(var35); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var39 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var40 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var42 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var52); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var56 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var57 + "' != '" + "SpaceWar.SpacePanel[,-1,1,-1x10,invalid,hidden,disabled,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"+ "'", var57.equals("SpaceWar.SpacePanel[,-1,1,-1x10,invalid,hidden,disabled,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]")); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var59 == false); + + } + + public void test149() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test149"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + javax.swing.event.AncestorListener[] var1 = var0.getAncestorListeners(); + var0.setOpaque(false); + int var4 = var0.getComponentCount(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0); + + } + + public void test150() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test150"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.removeNotify(); + java.awt.Component.BaselineResizeBehavior var3 = var0.getBaselineResizeBehavior(); + javax.swing.TransferHandler var4 = var0.getTransferHandler(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertNull(var4); + + } + + public void test151() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test151"); + + + SpaceWar.PowerUp var3 = new SpaceWar.PowerUp(100, (-1.0d), 0.0d); + double var4 = var3.getR(); + int var5 = var3.getType(); + double var6 = var3.getX(); + double var7 = var3.getR(); + double var8 = var3.getX(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0.0d); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == 100); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == (-1.0d)); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.0d); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == (-1.0d)); + + } + + public void test152() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test152"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + var0.show(false); + java.awt.Rectangle var8 = var0.getVisibleRect(); + java.awt.Toolkit var9 = var0.getToolkit(); + SpaceWar.SpacePanel var10 = new SpaceWar.SpacePanel(); + float var11 = var10.getAlignmentX(); + var10.setVisible(false); + boolean var14 = var10.isDoubleBuffered(); + var10.list(); + SpaceWar.SpacePanel var16 = new SpaceWar.SpacePanel(); + float var17 = var16.getAlignmentX(); + var16.setVisible(false); + boolean var20 = var16.isDoubleBuffered(); + java.awt.dnd.DropTarget var21 = var16.getDropTarget(); + var16.show(false); + java.awt.Rectangle var24 = var16.getVisibleRect(); + java.awt.Rectangle var25 = var10.getBounds(var24); + javax.swing.JToolTip var26 = var10.createToolTip(); + var10.firePropertyChange("", false, false); + var10.validate(); + SpaceWar.SpacePanel var32 = new SpaceWar.SpacePanel(); + float var33 = var32.getAlignmentX(); + var32.setVisible(false); + var32.nextFocus(); + var32.updateUI(); + var32.enableInputMethods(true); + java.lang.String var40 = var32.toString(); + var0.putClientProperty((java.lang.Object)var10, (java.lang.Object)var32); + java.awt.Dimension var42 = var10.size(); + java.awt.Point var43 = var10.getLocation(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var9); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var21); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var25); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var33 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var40 + "' != '" + "SpaceWar.SpacePanel[,0,0,0var40,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"+ "'", var40.equals("SpaceWar.SpacePanel[,0,0,0var40,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]")); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var42); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var43); + + } + + public void test153() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test153"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + boolean var6 = var0.areFocusTraversalKeysSet(0); + boolean var7 = var0.isCursorSet(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == false); + + } + + public void test154() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test154"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var6 = var0.getUI(); + java.awt.im.InputMethodRequests var7 = var0.getInputMethodRequests(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + var8.nextFocus(); + var8.updateUI(); + var8.enableInputMethods(true); + var8.setSize((-1), 1); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + var19.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var0.add((java.awt.Component)var8, (java.lang.Object)"SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + var8.setAutoscrolls(true); + java.awt.Image var29 = var8.createImage(400, 400); + var8.enableInputMethods(true); + javax.swing.plaf.PanelUI var32 = var8.getUI(); + java.awt.Component var33 = var8.getNextFocusableComponent(); + boolean var34 = var8.isPaintingForPrint(); + var8.firePropertyChange("SpaceWar.SpacePanel[,-1,1,-1x10,invalid,hidden,disabled,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", 0.5f, (-1.0f)); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNull(var29); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var32); + + // Regression assertion (captures the current behavior of the code) + assertNull(var33); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var34 == false); + + } + + public void test155() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test155"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + var0.setRequestFocusEnabled(false); + var0.reshape(100, 0, 100, 0); + java.awt.image.ColorModel var10 = var0.getColorModel(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var10); + + } + + public void test156() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test156"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + SpaceWar.SpacePanel var5 = new SpaceWar.SpacePanel(); + float var6 = var5.getAlignmentX(); + var5.setVisible(false); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + java.awt.Color var10 = var9.getBackground(); + var5.setForeground(var10); + var0.setBackground(var10); + javax.swing.plaf.PanelUI var13 = var0.getUI(); + java.awt.peer.ComponentPeer var14 = var0.getPeer(); + java.awt.event.KeyListener[] var15 = var0.getKeyListeners(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + } + + public void test157() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test157"); + + + SpaceWar.Player var0 = new SpaceWar.Player(); + boolean var1 = var0.isRecovering(); + var0.loseLife(); + int var3 = var0.getR(); + var0.loseLife(); + var0.setDown(true); + int var7 = var0.getPowerLevel(); + var0.setLeft(true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == 25); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0); + + } + + public void test158() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test158"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var6 = var0.getMouseListeners(); + java.awt.Dimension var7 = var0.getPreferredSize(); + java.util.Locale var8 = var0.getLocale(); + java.awt.Font var9 = var0.getFont(); + java.awt.Container var10 = var0.getTopLevelAncestor(); + boolean var11 = var0.isForegroundSet(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var9); + + // Regression assertion (captures the current behavior of the code) + assertNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == true); + + } + + public void test159() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test159"); + + + SpaceWar.PowerUp var3 = new SpaceWar.PowerUp(100, (-1.0d), 0.0d); + double var4 = var3.getR(); + double var5 = var3.getY(); + double var6 = var3.getY(); + int var7 = var3.getType(); + int var8 = var3.getType(); + double var9 = var3.getR(); + boolean var10 = var3.update(); + int var11 = var3.getType(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0.0d); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == 0.0d); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == 0.0d); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 100); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 100); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.0d); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == 100); + + } + + public void test160() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test160"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + float var7 = var6.getAlignmentX(); + var6.setVisible(false); + java.awt.Dimension var10 = var6.getPreferredSize(); + var0.setMaximumSize(var10); + boolean var12 = var0.getVerifyInputWhenFocusTarget(); + boolean var13 = var0.isFocusCycleRoot(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == false); + + } + + public void test161() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test161"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + var0.show(false); + boolean var8 = var0.isPaintingForPrint(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var15 = var9.getMouseListeners(); + int var16 = var9.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var17 = var9.getInputMethodRequests(); + var0.addKeyListener((java.awt.event.KeyListener)var9); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + float var20 = var19.getAlignmentX(); + var19.setVisible(false); + boolean var23 = var19.isDoubleBuffered(); + var19.list(); + float var25 = var19.getAlignmentY(); + boolean var26 = var9.isFocusCycleRoot((java.awt.Container)var19); + var19.firePropertyChange("", 1L, 1L); + var19.setVerifyInputWhenFocusTarget(true); + java.awt.Cursor var33 = var19.getCursor(); + var19.layout(); + SpaceWar.SpacePanel var35 = new SpaceWar.SpacePanel(); + float var36 = var35.getAlignmentX(); + var35.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var41 = var35.getMouseListeners(); + int var42 = var35.getDebugGraphicsOptions(); + SpaceWar.SpacePanel var43 = new SpaceWar.SpacePanel(); + float var44 = var43.getAlignmentX(); + var43.setVisible(false); + boolean var47 = var43.isDoubleBuffered(); + java.awt.dnd.DropTarget var48 = var43.getDropTarget(); + var43.show(false); + java.awt.Rectangle var51 = var43.getVisibleRect(); + var35.paintImmediately(var51); + boolean var53 = var35.isFocusCycleRoot(); + var35.list(); + boolean var55 = var19.isFocusCycleRoot((java.awt.Container)var35); + var35.removeAll(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var33); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var36 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var41); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var42 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var44 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var47 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var48); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var51); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var53 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var55 == false); + + } + + public void test162() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test162"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + var0.show(false); + boolean var8 = var0.isPaintingForPrint(); + boolean var9 = var0.getIgnoreRepaint(); + var0.repaint(100, 10, 100, 0); + javax.swing.KeyStroke[] var15 = var0.getRegisteredKeyStrokes(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + } + + public void test163() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test163"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + java.awt.im.InputMethodRequests var3 = var0.getInputMethodRequests(); + var0.setDoubleBuffered(true); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + float var7 = var6.getAlignmentX(); + boolean var8 = var6.hasFocus(); + java.awt.Insets var9 = var6.getInsets(); + java.awt.Insets var10 = var0.getInsets(var9); + java.awt.event.MouseMotionListener[] var11 = var0.getMouseMotionListeners(); + java.lang.Object var12 = var0.getTreeLock(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var9); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var12); + + } + + public void test164() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test164"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + java.awt.Dimension var4 = var0.getPreferredSize(); + java.awt.Toolkit var5 = var0.getToolkit(); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + var6.setName(""); + int var9 = var6.getX(); + SpaceWar.SpacePanel var10 = new SpaceWar.SpacePanel(); + float var11 = var10.getAlignmentX(); + var10.setVisible(false); + var10.nextFocus(); + SpaceWar.SpacePanel var15 = new SpaceWar.SpacePanel(); + float var16 = var15.getAlignmentX(); + var15.setVisible(false); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + java.awt.Color var20 = var19.getBackground(); + var15.setForeground(var20); + var10.setBackground(var20); + var6.setBackground(var20); + var0.setForeground(var20); + int var25 = var0.countComponents(); + boolean var26 = var0.isFocusCycleRoot(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var4); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == false); + + } + + public void test165() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test165"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + var0.enable(false); + int var7 = var0.getWidth(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + java.awt.Color var9 = var8.getBackground(); + var8.repaint(); + var8.setRequestFocusEnabled(false); + var8.reshape(100, 0, 100, 0); + var8.requestFocus(); + java.awt.Rectangle var19 = var8.getVisibleRect(); + java.awt.Rectangle var20 = var8.getBounds(); + java.awt.im.InputMethodRequests var21 = var8.getInputMethodRequests(); + boolean var22 = var8.requestFocusInWindow(); + java.awt.Rectangle var23 = var8.bounds(); + SpaceWar.SpacePanel var24 = new SpaceWar.SpacePanel(); + float var25 = var24.getAlignmentX(); + var24.setVisible(false); + var24.nextFocus(); + var24.reshape((-1), 1, (-1), 10); + var24.disable(); + boolean var35 = var24.isFocusable(); + java.awt.Dimension var36 = var24.getSize(); + var8.setSize(var36); + var0.setMinimumSize(var36); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var9); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertNull(var21); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var22 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var23); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var35 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var36); + + } + + public void test166() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test166"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + var0.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + java.awt.event.ContainerListener[] var5 = var0.getContainerListeners(); + java.lang.String var6 = var0.getUIClassID(); + // The following exception was thrown during execution. + // This behavior will recorded for regression testing. + try { + java.awt.Point var7 = var0.getLocationOnScreen(); + fail("Expected exception of type java.awt.IllegalComponentStateException"); + } catch (java.awt.IllegalComponentStateException e) { + // Expected exception. + } + + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var6 + "' != '" + "PanelUI"+ "'", var6.equals("PanelUI")); + + } + + public void test167() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test167"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + java.awt.Dimension var4 = var0.getPreferredSize(); + java.awt.Toolkit var5 = var0.getToolkit(); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + var6.setName(""); + int var9 = var6.getX(); + SpaceWar.SpacePanel var10 = new SpaceWar.SpacePanel(); + float var11 = var10.getAlignmentX(); + var10.setVisible(false); + var10.nextFocus(); + SpaceWar.SpacePanel var15 = new SpaceWar.SpacePanel(); + float var16 = var15.getAlignmentX(); + var15.setVisible(false); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + java.awt.Color var20 = var19.getBackground(); + var15.setForeground(var20); + var10.setBackground(var20); + var6.setBackground(var20); + var0.setForeground(var20); + SpaceWar.SpacePanel var25 = new SpaceWar.SpacePanel(); + float var26 = var25.getAlignmentX(); + var25.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var31 = new SpaceWar.SpacePanel(); + float var32 = var31.getAlignmentX(); + var31.setVisible(false); + java.awt.Dimension var35 = var31.getPreferredSize(); + var25.setMaximumSize(var35); + boolean var37 = var25.getVerifyInputWhenFocusTarget(); + javax.accessibility.AccessibleContext var38 = var25.getAccessibleContext(); + boolean var39 = var25.isDoubleBuffered(); + java.awt.Rectangle var40 = var25.getVisibleRect(); + var0.scrollRectToVisible(var40); + SpaceWar.SpacePanel var42 = new SpaceWar.SpacePanel(); + float var43 = var42.getAlignmentX(); + var42.setVisible(false); + java.awt.Dimension var46 = var42.getPreferredSize(); + java.awt.Toolkit var47 = var42.getToolkit(); + SpaceWar.SpacePanel var48 = new SpaceWar.SpacePanel(); + var48.setName(""); + int var51 = var48.getX(); + SpaceWar.SpacePanel var52 = new SpaceWar.SpacePanel(); + float var53 = var52.getAlignmentX(); + var52.setVisible(false); + var52.nextFocus(); + SpaceWar.SpacePanel var57 = new SpaceWar.SpacePanel(); + float var58 = var57.getAlignmentX(); + var57.setVisible(false); + SpaceWar.SpacePanel var61 = new SpaceWar.SpacePanel(); + java.awt.Color var62 = var61.getBackground(); + var57.setForeground(var62); + var52.setBackground(var62); + var48.setBackground(var62); + var42.setForeground(var62); + SpaceWar.SpacePanel var67 = new SpaceWar.SpacePanel(); + float var68 = var67.getAlignmentX(); + var67.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var73 = new SpaceWar.SpacePanel(); + float var74 = var73.getAlignmentX(); + var73.setVisible(false); + java.awt.Dimension var77 = var73.getPreferredSize(); + var67.setMaximumSize(var77); + boolean var79 = var67.getVerifyInputWhenFocusTarget(); + javax.accessibility.AccessibleContext var80 = var67.getAccessibleContext(); + boolean var81 = var67.isDoubleBuffered(); + java.awt.Rectangle var82 = var67.getVisibleRect(); + var42.scrollRectToVisible(var82); + var0.removeKeyListener((java.awt.event.KeyListener)var42); + var42.firePropertyChange("PanelUI", (short)1, (short)1); + java.lang.String var89 = var42.getToolTipText(); + int var90 = var42.getY(); + javax.swing.JPopupMenu var91 = var42.getComponentPopupMenu(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var4); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var32 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var35); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var38); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var39 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var40); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var43 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var46); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var47); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var51 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var53 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var58 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var62); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var68 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var74 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var77); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var79 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var80); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var81 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var82); + + // Regression assertion (captures the current behavior of the code) + assertNull(var89); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var90 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var91); + + } + + public void test168() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test168"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + var0.show(false); + java.awt.Rectangle var8 = var0.getVisibleRect(); + java.awt.Toolkit var9 = var0.getToolkit(); + java.awt.event.MouseMotionListener[] var10 = var0.getMouseMotionListeners(); + SpaceWar.SpacePanel var11 = new SpaceWar.SpacePanel(); + float var12 = var11.getAlignmentX(); + var11.setVisible(false); + boolean var15 = var11.isDoubleBuffered(); + java.awt.dnd.DropTarget var16 = var11.getDropTarget(); + var11.show(false); + boolean var19 = var11.isPaintingForPrint(); + SpaceWar.SpacePanel var20 = new SpaceWar.SpacePanel(); + float var21 = var20.getAlignmentX(); + var20.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var26 = var20.getMouseListeners(); + int var27 = var20.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var28 = var20.getInputMethodRequests(); + var11.addKeyListener((java.awt.event.KeyListener)var20); + SpaceWar.SpacePanel var30 = new SpaceWar.SpacePanel(); + float var31 = var30.getAlignmentX(); + var30.setVisible(false); + boolean var34 = var30.isDoubleBuffered(); + var30.list(); + float var36 = var30.getAlignmentY(); + boolean var37 = var20.isFocusCycleRoot((java.awt.Container)var30); + javax.swing.JPopupMenu var38 = var30.getComponentPopupMenu(); + var30.move((-1), 100); + var30.validate(); + java.awt.Rectangle var43 = var30.getVisibleRect(); + var0.paintImmediately(var43); + java.awt.Dimension var45 = var0.getMaximumSize(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var9); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var28); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var31 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var34 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var36 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var38); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var43); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var45); + + } + + public void test169() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test169"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.reshape((-1), 1, (-1), 10); + var0.disable(); + java.awt.LayoutManager var11 = var0.getLayout(); + java.awt.Container var12 = var0.getParent(); + java.lang.String var13 = var0.getUIClassID(); + float var14 = var0.getAlignmentX(); + javax.accessibility.AccessibleContext var15 = var0.getAccessibleContext(); + java.awt.Cursor var16 = var0.getCursor(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var13 + "' != '" + "PanelUI"+ "'", var13.equals("PanelUI")); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + } + + public void test170() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test170"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + var0.show(false); + boolean var8 = var0.isPaintingForPrint(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var15 = var9.getMouseListeners(); + int var16 = var9.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var17 = var9.getInputMethodRequests(); + var0.addKeyListener((java.awt.event.KeyListener)var9); + java.awt.Container var19 = var9.getFocusCycleRootAncestor(); + boolean var20 = var9.hasFocus(); + SpaceWar.SpacePanel var21 = new SpaceWar.SpacePanel(); + float var22 = var21.getAlignmentX(); + var21.setVisible(false); + var21.setInheritsPopupMenu(false); + boolean var27 = var21.isDoubleBuffered(); + boolean var28 = var21.isMinimumSizeSet(); + SpaceWar.SpacePanel var29 = new SpaceWar.SpacePanel(); + float var30 = var29.getAlignmentX(); + var29.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var35 = new SpaceWar.SpacePanel(); + float var36 = var35.getAlignmentX(); + var35.setVisible(false); + java.awt.Dimension var39 = var35.getPreferredSize(); + var29.setMaximumSize(var39); + boolean var41 = var29.getVerifyInputWhenFocusTarget(); + javax.accessibility.AccessibleContext var42 = var29.getAccessibleContext(); + boolean var43 = var29.isDoubleBuffered(); + java.awt.Rectangle var44 = var29.getVisibleRect(); + var21.setBounds(var44); + java.lang.Object var46 = var9.getClientProperty((java.lang.Object)var21); + java.awt.Insets var47 = var9.insets(); + var9.transferFocusUpCycle(); + var9.updateUI(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var22 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var28 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var30 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var36 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var39); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var41 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var42); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var43 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var44); + + // Regression assertion (captures the current behavior of the code) + assertNull(var46); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var47); + + } + + public void test171() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test171"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var6 = var0.getMouseListeners(); + var0.firePropertyChange("", 0.5f, 100.0f); + var0.enable(false); + int var13 = var0.getDebugGraphicsOptions(); + SpaceWar.SpacePanel var14 = new SpaceWar.SpacePanel(); + float var15 = var14.getAlignmentX(); + var14.setVisible(false); + var14.nextFocus(); + var14.repaint(1L); + SpaceWar.SpacePanel var21 = new SpaceWar.SpacePanel(); + float var22 = var21.getAlignmentX(); + var21.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var27 = new SpaceWar.SpacePanel(); + float var28 = var27.getAlignmentX(); + var27.setVisible(false); + java.awt.Dimension var31 = var27.getPreferredSize(); + var21.setMaximumSize(var31); + var14.setPreferredSize(var31); + java.awt.Container var34 = var14.getFocusCycleRootAncestor(); + java.awt.image.ColorModel var35 = var14.getColorModel(); + int var36 = var14.getComponentCount(); + java.awt.Component var37 = var0.add((java.awt.Component)var14); + var0.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=1.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", (byte)1, (byte)0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var22 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var28 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var31); + + // Regression assertion (captures the current behavior of the code) + assertNull(var34); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var35); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var36 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var37); + + } + + public void test172() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test172"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + var0.enable(false); + java.awt.Container var7 = var0.getTopLevelAncestor(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + boolean var12 = var8.isDoubleBuffered(); + var8.list(); + SpaceWar.SpacePanel var14 = new SpaceWar.SpacePanel(); + float var15 = var14.getAlignmentX(); + var14.setVisible(false); + boolean var18 = var14.isDoubleBuffered(); + java.awt.dnd.DropTarget var19 = var14.getDropTarget(); + var14.show(false); + java.awt.Rectangle var22 = var14.getVisibleRect(); + java.awt.Rectangle var23 = var8.getBounds(var22); + var0.computeVisibleRect(var22); + var0.removeNotify(); + var0.updateUI(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var23); + + } + + public void test173() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test173"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + java.awt.Color var7 = var6.getBackground(); + var6.repaint(); + var6.setRequestFocusEnabled(false); + var6.reshape(100, 0, 100, 0); + var6.requestFocus(); + SpaceWar.SpacePanel var17 = new SpaceWar.SpacePanel(); + float var18 = var17.getAlignmentX(); + var17.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var23 = var17.getUI(); + java.awt.im.InputMethodRequests var24 = var17.getInputMethodRequests(); + SpaceWar.SpacePanel var25 = new SpaceWar.SpacePanel(); + float var26 = var25.getAlignmentX(); + var25.setVisible(false); + var25.nextFocus(); + var25.updateUI(); + var25.enableInputMethods(true); + var25.setSize((-1), 1); + SpaceWar.SpacePanel var36 = new SpaceWar.SpacePanel(); + var36.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var17.add((java.awt.Component)var25, (java.lang.Object)"SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + SpaceWar.SpacePanel var42 = new SpaceWar.SpacePanel(); + var42.setName(""); + java.awt.ComponentOrientation var45 = var42.getComponentOrientation(); + var17.applyComponentOrientation(var45); + var6.setComponentOrientation(var45); + var0.applyComponentOrientation(var45); + int var49 = var0.getHeight(); + boolean var52 = var0.inside(3, 2); + boolean var53 = var0.isManagingFocus(); + int var54 = var0.getHeight(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var23); + + // Regression assertion (captures the current behavior of the code) + assertNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var45); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var49 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var52 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var53 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var54 == 0); + + } + + public void test174() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test174"); + + + SpaceWar.Enemy var2 = new SpaceWar.Enemy(500, 10); + + } + + public void test175() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test175"); + + + SpaceWar.Text var4 = new SpaceWar.Text(240.9713786093358d, 559.7240852144217d, 10L, "SpaceWar.SpacePanel[,0,0,0x0,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + + } + + public void test176() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test176"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + java.awt.Dimension var4 = var0.getPreferredSize(); + java.awt.Toolkit var5 = var0.getToolkit(); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + var6.setName(""); + int var9 = var6.getX(); + SpaceWar.SpacePanel var10 = new SpaceWar.SpacePanel(); + float var11 = var10.getAlignmentX(); + var10.setVisible(false); + var10.nextFocus(); + SpaceWar.SpacePanel var15 = new SpaceWar.SpacePanel(); + float var16 = var15.getAlignmentX(); + var15.setVisible(false); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + java.awt.Color var20 = var19.getBackground(); + var15.setForeground(var20); + var10.setBackground(var20); + var6.setBackground(var20); + var0.setForeground(var20); + SpaceWar.SpacePanel var25 = new SpaceWar.SpacePanel(); + float var26 = var25.getAlignmentX(); + var25.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var31 = new SpaceWar.SpacePanel(); + float var32 = var31.getAlignmentX(); + var31.setVisible(false); + java.awt.Dimension var35 = var31.getPreferredSize(); + var25.setMaximumSize(var35); + boolean var37 = var25.getVerifyInputWhenFocusTarget(); + javax.accessibility.AccessibleContext var38 = var25.getAccessibleContext(); + boolean var39 = var25.isDoubleBuffered(); + java.awt.Rectangle var40 = var25.getVisibleRect(); + var0.scrollRectToVisible(var40); + SpaceWar.SpacePanel var42 = new SpaceWar.SpacePanel(); + float var43 = var42.getAlignmentX(); + var42.setVisible(false); + java.awt.Dimension var46 = var42.getPreferredSize(); + java.awt.Toolkit var47 = var42.getToolkit(); + SpaceWar.SpacePanel var48 = new SpaceWar.SpacePanel(); + var48.setName(""); + int var51 = var48.getX(); + SpaceWar.SpacePanel var52 = new SpaceWar.SpacePanel(); + float var53 = var52.getAlignmentX(); + var52.setVisible(false); + var52.nextFocus(); + SpaceWar.SpacePanel var57 = new SpaceWar.SpacePanel(); + float var58 = var57.getAlignmentX(); + var57.setVisible(false); + SpaceWar.SpacePanel var61 = new SpaceWar.SpacePanel(); + java.awt.Color var62 = var61.getBackground(); + var57.setForeground(var62); + var52.setBackground(var62); + var48.setBackground(var62); + var42.setForeground(var62); + SpaceWar.SpacePanel var67 = new SpaceWar.SpacePanel(); + float var68 = var67.getAlignmentX(); + var67.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var73 = new SpaceWar.SpacePanel(); + float var74 = var73.getAlignmentX(); + var73.setVisible(false); + java.awt.Dimension var77 = var73.getPreferredSize(); + var67.setMaximumSize(var77); + boolean var79 = var67.getVerifyInputWhenFocusTarget(); + javax.accessibility.AccessibleContext var80 = var67.getAccessibleContext(); + boolean var81 = var67.isDoubleBuffered(); + java.awt.Rectangle var82 = var67.getVisibleRect(); + var42.scrollRectToVisible(var82); + var0.removeKeyListener((java.awt.event.KeyListener)var42); + boolean var85 = var0.isValidateRoot(); + javax.swing.InputVerifier var86 = var0.getInputVerifier(); + var0.updateUI(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var4); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var32 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var35); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var38); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var39 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var40); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var43 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var46); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var47); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var51 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var53 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var58 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var62); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var68 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var74 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var77); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var79 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var80); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var81 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var82); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var85 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var86); + + } + + public void test177() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test177"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + SpaceWar.SpacePanel var4 = new SpaceWar.SpacePanel(); + java.awt.Color var5 = var4.getBackground(); + var0.setForeground(var5); + SpaceWar.SpacePanel var7 = new SpaceWar.SpacePanel(); + float var8 = var7.getAlignmentX(); + var7.setVisible(false); + boolean var11 = var7.isDoubleBuffered(); + java.awt.dnd.DropTarget var12 = var7.getDropTarget(); + var7.show(false); + java.awt.Rectangle var15 = var7.getVisibleRect(); + var0.repaint(var15); + java.awt.FocusTraversalPolicy var17 = var0.getFocusTraversalPolicy(); + SpaceWar.SpacePanel var18 = new SpaceWar.SpacePanel(); + float var19 = var18.getAlignmentX(); + var18.firePropertyChange("", (-1), 1); + boolean var24 = var18.isFocusOwner(); + SpaceWar.SpacePanel var26 = new SpaceWar.SpacePanel(); + float var27 = var26.getAlignmentX(); + var26.setVisible(false); + java.awt.Dimension var30 = var26.getPreferredSize(); + java.awt.Toolkit var31 = var26.getToolkit(); + SpaceWar.SpacePanel var32 = new SpaceWar.SpacePanel(); + var32.setName(""); + int var35 = var32.getX(); + SpaceWar.SpacePanel var36 = new SpaceWar.SpacePanel(); + float var37 = var36.getAlignmentX(); + var36.setVisible(false); + var36.nextFocus(); + SpaceWar.SpacePanel var41 = new SpaceWar.SpacePanel(); + float var42 = var41.getAlignmentX(); + var41.setVisible(false); + SpaceWar.SpacePanel var45 = new SpaceWar.SpacePanel(); + java.awt.Color var46 = var45.getBackground(); + var41.setForeground(var46); + var36.setBackground(var46); + var32.setBackground(var46); + var26.setForeground(var46); + var18.putClientProperty((java.lang.Object)(byte)100, (java.lang.Object)var46); + var0.setBackground(var46); + javax.swing.JToolTip var53 = var0.createToolTip(); + var53.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, true); + SpaceWar.SpacePanel var58 = new SpaceWar.SpacePanel(); + var58.setName(""); + java.awt.Dimension var61 = var58.minimumSize(); + boolean var62 = var58.isDoubleBuffered(); + java.awt.event.HierarchyListener[] var63 = var58.getHierarchyListeners(); + java.awt.Font var64 = var58.getFont(); + java.awt.FontMetrics var65 = var53.getFontMetrics(var64); + boolean var66 = var53.isOptimizedDrawingEnabled(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var24 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var30); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var31); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var35 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var42 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var46); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var53); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var61); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var62 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var63); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var64); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var65); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var66 == true); + + } + + public void test178() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test178"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.updateUI(); + var0.enableInputMethods(true); + java.awt.Point var9 = var0.getMousePosition(false); + java.awt.Point var10 = var0.getMousePosition(); + boolean var11 = javax.swing.JComponent.isLightweightComponent((java.awt.Component)var0); + var0.invalidate(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNull(var9); + + // Regression assertion (captures the current behavior of the code) + assertNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == false); + + } + + public void test179() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test179"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var6 = var0.getUI(); + java.awt.im.InputMethodRequests var7 = var0.getInputMethodRequests(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + var8.nextFocus(); + var8.updateUI(); + var8.enableInputMethods(true); + var8.setSize((-1), 1); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + var19.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var0.add((java.awt.Component)var8, (java.lang.Object)"SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + SpaceWar.SpacePanel var25 = new SpaceWar.SpacePanel(); + java.awt.Color var26 = var25.getBackground(); + var25.repaint(); + var25.setRequestFocusEnabled(false); + var25.reshape(100, 0, 100, 0); + var25.requestFocus(); + var25.firePropertyChange("hi!", '4', ' '); + java.awt.Point var40 = var25.getLocation(); + java.awt.Dimension var41 = var25.size(); + java.awt.Image var44 = var25.createImage((-1), (-1)); + java.awt.event.ComponentListener[] var45 = var25.getComponentListeners(); + SpaceWar.SpacePanel var46 = new SpaceWar.SpacePanel(); + var46.setName(""); + java.awt.ComponentOrientation var49 = var46.getComponentOrientation(); + var46.firePropertyChange("PanelUI", 1.0f, 0.5f); + int var54 = var25.getComponentZOrder((java.awt.Component)var46); + boolean var55 = var46.isEnabled(); + SpaceWar.SpacePanel var56 = new SpaceWar.SpacePanel(); + java.awt.Color var57 = var56.getBackground(); + var56.repaint(); + var56.setRequestFocusEnabled(false); + var56.reshape(100, 0, 100, 0); + var56.requestFocus(); + var56.firePropertyChange("hi!", '4', ' '); + java.awt.Point var71 = var56.getLocation(); + java.awt.Dimension var72 = var56.size(); + java.awt.Image var75 = var56.createImage((-1), (-1)); + java.awt.event.ComponentListener[] var76 = var56.getComponentListeners(); + var56.updateUI(); + var46.addKeyListener((java.awt.event.KeyListener)var56); + int var81 = var56.getBaseline(500, 25); + // The following exception was thrown during execution. + // This behavior will recorded for regression testing. + try { + var8.setComponentZOrder((java.awt.Component)var56, 499); + fail("Expected exception of type java.lang.IllegalArgumentException"); + } catch (java.lang.IllegalArgumentException e) { + // Expected exception. + } + + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var40); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var41); + + // Regression assertion (captures the current behavior of the code) + assertNull(var44); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var45); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var49); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var54 == (-1)); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var55 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var57); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var71); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var72); + + // Regression assertion (captures the current behavior of the code) + assertNull(var75); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var76); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var81 == (-1)); + + } + + public void test180() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test180"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.reshape((-1), 1, (-1), 10); + var0.disable(); + java.awt.LayoutManager var11 = var0.getLayout(); + java.awt.Container var12 = var0.getParent(); + java.beans.PropertyChangeListener[] var14 = var0.getPropertyChangeListeners("SpaceWar.SpacePanel[,0,0,0x0,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + java.awt.event.HierarchyBoundsListener[] var15 = var0.getHierarchyBoundsListeners(); + var0.nextFocus(); + boolean var17 = var0.isPreferredSizeSet(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == true); + + } + + public void test181() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test181"); + + + SpaceWar.Bullet var3 = new SpaceWar.Bullet(514.6637810615505d, 25, 100); + double var4 = var3.getX(); + double var5 = var3.getR(); + double var6 = var3.getX(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 25.0d); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == 5.0d); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == 25.0d); + + } + + public void test182() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test182"); + + + SpaceWar.Bullet var3 = new SpaceWar.Bullet(24.0d, 100, 499); + double var4 = var3.getR(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 5.0d); + + } + + public void test183() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test183"); + + + SpaceWar.Text var4 = new SpaceWar.Text(514.6637810615505d, 514.6637810615505d, (-1L), "SpaceWar.SpacePanel[,0,0,0x0,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + boolean var5 = var4.update(); + boolean var6 = var4.update(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == true); + + } + + public void test184() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test184"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var1 = new SpaceWar.SpacePanel(); + java.awt.Color var2 = var1.getBackground(); + SpaceWar.SpacePanel var3 = new SpaceWar.SpacePanel(); + float var4 = var3.getAlignmentX(); + var3.setVisible(false); + var3.nextFocus(); + var3.updateUI(); + var3.enableInputMethods(true); + var0.add((java.awt.Component)var1, (java.lang.Object)true); + java.awt.Image var14 = var1.createImage(1, (-1)); + float var15 = var1.getAlignmentX(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var2); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == 0.5f); + + } + + public void test185() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test185"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.updateUI(); + var0.enableInputMethods(true); + var0.setSize((-1), 1); + boolean var13 = var0.contains(1, 1); + java.awt.Component var16 = var0.getComponentAt(100, 3); + SpaceWar.SpacePanel var17 = new SpaceWar.SpacePanel(); + float var18 = var17.getAlignmentX(); + var17.setVisible(false); + boolean var21 = var17.isDoubleBuffered(); + var17.enable(false); + boolean var24 = var17.getFocusTraversalKeysEnabled(); + SpaceWar.SpacePanel var25 = new SpaceWar.SpacePanel(); + float var26 = var25.getAlignmentX(); + var25.setVisible(false); + java.awt.Dimension var29 = var25.getPreferredSize(); + java.awt.Toolkit var30 = var25.getToolkit(); + boolean var31 = var25.isFocusable(); + javax.swing.KeyStroke[] var32 = var25.getRegisteredKeyStrokes(); + SpaceWar.SpacePanel var33 = new SpaceWar.SpacePanel(); + float var34 = var33.getAlignmentX(); + SpaceWar.SpacePanel var35 = new SpaceWar.SpacePanel(); + float var36 = var35.getAlignmentX(); + var35.setVisible(false); + java.awt.Dimension var39 = var35.getPreferredSize(); + boolean var40 = var35.getVerifyInputWhenFocusTarget(); + java.awt.Component var43 = var35.findComponentAt(10, 1); + var33.addKeyListener((java.awt.event.KeyListener)var35); + var35.repaint(100, (-1), (-1), 1); + boolean var50 = var25.isAncestorOf((java.awt.Component)var35); + var17.addKeyListener((java.awt.event.KeyListener)var35); + java.awt.ComponentOrientation var52 = var17.getComponentOrientation(); + var0.setComponentOrientation(var52); + boolean var55 = var0.requestFocus(true); + javax.swing.event.AncestorListener[] var56 = var0.getAncestorListeners(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var24 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var29); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var30); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var31 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var32); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var34 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var36 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var39); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var40 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var43); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var50 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var52); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var55 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var56); + + } + + public void test186() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test186"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + java.awt.im.InputMethodRequests var3 = var0.getInputMethodRequests(); + java.awt.GraphicsConfiguration var4 = var0.getGraphicsConfiguration(); + SpaceWar.SpacePanel var5 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + java.awt.Color var7 = var6.getBackground(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + var8.nextFocus(); + var8.updateUI(); + var8.enableInputMethods(true); + var5.add((java.awt.Component)var6, (java.lang.Object)true); + java.awt.Dimension var17 = var6.getPreferredSize(); + var6.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", (-1.0f), 100.0f); + SpaceWar.SpacePanel var22 = new SpaceWar.SpacePanel(); + float var23 = var22.getAlignmentX(); + var22.setVisible(false); + boolean var26 = var22.isDoubleBuffered(); + SpaceWar.SpacePanel var27 = new SpaceWar.SpacePanel(); + java.awt.Color var28 = var27.getBackground(); + var27.repaint(); + java.lang.Object var30 = var22.getClientProperty((java.lang.Object)var27); + var6.remove((java.awt.Component)var22); + SpaceWar.SpacePanel var32 = new SpaceWar.SpacePanel(); + float var33 = var32.getAlignmentX(); + var32.firePropertyChange("", (-1), 1); + java.awt.event.MouseMotionListener[] var38 = var32.getMouseMotionListeners(); + java.awt.Dimension var39 = var32.getMinimumSize(); + var6.setMaximumSize(var39); + var0.setPreferredSize(var39); + java.awt.Toolkit var42 = var0.getToolkit(); + javax.swing.InputMap var43 = var0.getInputMap(); + var0.transferFocusDownCycle(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertNull(var4); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var28); + + // Regression assertion (captures the current behavior of the code) + assertNull(var30); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var33 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var38); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var39); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var42); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var43); + + } + + public void test187() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test187"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + var0.list(); + float var6 = var0.getAlignmentY(); + java.awt.event.ComponentListener[] var7 = var0.getComponentListeners(); + java.awt.Component var8 = var0.getNextFocusableComponent(); + boolean var9 = var0.isManagingFocus(); + javax.swing.border.Border var10 = var0.getBorder(); + java.lang.Object var11 = var0.getTreeLock(); + var0.move(10, 399); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + } + + public void test188() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test188"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.reshape((-1), 1, (-1), 10); + var0.disable(); + java.awt.Component var13 = var0.findComponentAt(0, (-1)); + SpaceWar.SpacePanel var14 = new SpaceWar.SpacePanel(); + var14.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + javax.swing.plaf.PanelUI var19 = var14.getUI(); + SpaceWar.SpacePanel var20 = new SpaceWar.SpacePanel(); + float var21 = var20.getAlignmentX(); + var20.setVisible(false); + var20.nextFocus(); + var20.repaint(1L); + SpaceWar.SpacePanel var27 = new SpaceWar.SpacePanel(); + float var28 = var27.getAlignmentX(); + var27.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var33 = new SpaceWar.SpacePanel(); + float var34 = var33.getAlignmentX(); + var33.setVisible(false); + java.awt.Dimension var37 = var33.getPreferredSize(); + var27.setMaximumSize(var37); + var20.setPreferredSize(var37); + var14.setMaximumSize(var37); + var0.setSize(var37); + java.awt.Container var42 = var0.getParent(); + java.awt.Dimension var43 = var0.getPreferredSize(); + var0.repaint(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var28 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var34 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var37); + + // Regression assertion (captures the current behavior of the code) + assertNull(var42); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var43); + + } + + public void test189() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test189"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + var0.list(); + boolean var6 = var0.isVisible(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + java.awt.Color var9 = var8.getBackground(); + var8.repaint(); + var8.setRequestFocusEnabled(false); + var8.setIgnoreRepaint(false); + java.lang.String var15 = var8.toString(); + java.awt.Color var16 = var8.getBackground(); + javax.swing.InputMap var17 = var8.getInputMap(); + var0.setInputMap(0, var17); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + // The following exception was thrown during execution. + // This behavior will recorded for regression testing. + try { + var0.setComponentZOrder((java.awt.Component)var19, 2); + fail("Expected exception of type java.lang.IllegalArgumentException"); + } catch (java.lang.IllegalArgumentException e) { + // Expected exception. + } + + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var9); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var15 + "' != '" + "SpaceWar.SpacePanel[,0,0,0var15,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"+ "'", var15.equals("SpaceWar.SpacePanel[,0,0,0var15,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]")); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var17); + + } + + public void test190() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test190"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.reshape((-1), 1, (-1), 10); + var0.disable(); + java.awt.LayoutManager var11 = var0.getLayout(); + java.awt.Container var12 = var0.getParent(); + java.lang.String var13 = var0.getUIClassID(); + float var14 = var0.getAlignmentX(); + SpaceWar.SpacePanel var15 = new SpaceWar.SpacePanel(); + float var16 = var15.getAlignmentX(); + var15.setVisible(false); + boolean var19 = var15.isDoubleBuffered(); + var15.enable(false); + boolean var22 = var15.getFocusTraversalKeysEnabled(); + SpaceWar.SpacePanel var23 = new SpaceWar.SpacePanel(); + float var24 = var23.getAlignmentX(); + var23.setVisible(false); + java.awt.Dimension var27 = var23.getPreferredSize(); + java.awt.Toolkit var28 = var23.getToolkit(); + boolean var29 = var23.isFocusable(); + javax.swing.KeyStroke[] var30 = var23.getRegisteredKeyStrokes(); + SpaceWar.SpacePanel var31 = new SpaceWar.SpacePanel(); + float var32 = var31.getAlignmentX(); + SpaceWar.SpacePanel var33 = new SpaceWar.SpacePanel(); + float var34 = var33.getAlignmentX(); + var33.setVisible(false); + java.awt.Dimension var37 = var33.getPreferredSize(); + boolean var38 = var33.getVerifyInputWhenFocusTarget(); + java.awt.Component var41 = var33.findComponentAt(10, 1); + var31.addKeyListener((java.awt.event.KeyListener)var33); + var33.repaint(100, (-1), (-1), 1); + boolean var48 = var23.isAncestorOf((java.awt.Component)var33); + var15.addKeyListener((java.awt.event.KeyListener)var33); + java.util.Locale var50 = var33.getLocale(); + var0.setLocale(var50); + SpaceWar.SpacePanel var52 = new SpaceWar.SpacePanel(); + float var53 = var52.getAlignmentX(); + var52.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var58 = var52.getMouseListeners(); + int var59 = var52.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var60 = var52.getInputMethodRequests(); + var52.removeNotify(); + var52.enable(); + SpaceWar.SpacePanel var63 = new SpaceWar.SpacePanel(); + java.awt.Color var64 = var63.getBackground(); + boolean var67 = var63.inside(0, (-1)); + var63.transferFocusUpCycle(); + java.lang.String var69 = var63.getName(); + boolean var70 = var52.isFocusCycleRoot((java.awt.Container)var63); + SpaceWar.SpacePanel var71 = new SpaceWar.SpacePanel(); + java.awt.Color var72 = var71.getBackground(); + var71.repaint(); + var71.setRequestFocusEnabled(false); + var71.reshape(100, 0, 100, 0); + var71.requestFocus(); + var71.firePropertyChange("hi!", '4', ' '); + java.awt.Point var86 = var71.getLocation(); + java.awt.Component var87 = var63.getComponentAt(var86); + java.awt.Component var88 = var0.findComponentAt(var86); + java.awt.Dimension var89 = var0.getSize(); + var0.invalidate(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var13 + "' != '" + "PanelUI"+ "'", var13.equals("PanelUI")); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var22 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var24 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var27); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var28); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var29 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var30); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var32 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var34 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var37); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var38 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var41); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var48 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var50); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var53 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var58); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var59 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var60); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var64); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var67 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var69); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var70 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var72); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var86); + + // Regression assertion (captures the current behavior of the code) + assertNull(var87); + + // Regression assertion (captures the current behavior of the code) + assertNull(var88); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var89); + + } + + public void test191() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test191"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + java.awt.Rectangle var6 = var0.getVisibleRect(); + java.awt.event.MouseListener[] var7 = var0.getMouseListeners(); + int var8 = var0.getDebugGraphicsOptions(); + int var9 = var0.getComponentCount(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0); + + } + + public void test192() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test192"); + + + SpaceWar.Enemy var2 = new SpaceWar.Enemy(0, 100); + int var3 = var2.getR(); + var2.explode(); + var2.update(); + var2.explode(); + var2.hit(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == 0); + + } + + public void test193() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test193"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + java.awt.Dimension var4 = var0.getPreferredSize(); + boolean var5 = var0.getVerifyInputWhenFocusTarget(); + java.awt.Component var8 = var0.findComponentAt(10, 1); + boolean var9 = var0.requestDefaultFocus(); + boolean var10 = var0.isPaintingTile(); + SpaceWar.SpacePanel var11 = new SpaceWar.SpacePanel(); + var11.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + javax.swing.plaf.PanelUI var16 = var11.getUI(); + java.awt.Color var17 = var11.getBackground(); + var0.addKeyListener((java.awt.event.KeyListener)var11); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + java.awt.Color var20 = var19.getBackground(); + var19.repaint(); + java.awt.im.InputMethodRequests var22 = var19.getInputMethodRequests(); + var19.setDoubleBuffered(true); + SpaceWar.SpacePanel var25 = new SpaceWar.SpacePanel(); + float var26 = var25.getAlignmentX(); + boolean var27 = var25.hasFocus(); + java.awt.Insets var28 = var25.getInsets(); + java.awt.Insets var29 = var19.getInsets(var28); + SpaceWar.SpacePanel var30 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var31 = new SpaceWar.SpacePanel(); + java.awt.Color var32 = var31.getBackground(); + SpaceWar.SpacePanel var33 = new SpaceWar.SpacePanel(); + float var34 = var33.getAlignmentX(); + var33.setVisible(false); + var33.nextFocus(); + var33.updateUI(); + var33.enableInputMethods(true); + var30.add((java.awt.Component)var31, (java.lang.Object)true); + java.awt.Image var44 = var31.createImage(1, (-1)); + SpaceWar.SpacePanel var45 = new SpaceWar.SpacePanel(); + float var46 = var45.getAlignmentX(); + var45.setVisible(false); + var45.nextFocus(); + var45.updateUI(); + var45.enableInputMethods(true); + SpaceWar.SpacePanel var53 = new SpaceWar.SpacePanel(); + float var54 = var53.getAlignmentX(); + boolean var55 = var53.hasFocus(); + java.awt.Insets var56 = var53.getInsets(); + java.awt.Insets var57 = var45.getInsets(var56); + java.awt.Insets var58 = var31.getInsets(var56); + java.awt.Insets var59 = var19.getInsets(var56); + java.awt.Insets var60 = var0.getInsets(var56); + // The following exception was thrown during execution. + // This behavior will recorded for regression testing. + try { + java.awt.Point var61 = var0.getLocationOnScreen(); + fail("Expected exception of type java.awt.IllegalComponentStateException"); + } catch (java.awt.IllegalComponentStateException e) { + // Expected exception. + } + + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var4); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var28); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var29); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var32); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var34 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNull(var44); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var46 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var54 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var55 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var56); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var57); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var58); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var59); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var60); + + } + + public void test194() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test194"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.reshape((-1), 1, (-1), 10); + var0.disable(); + boolean var11 = var0.isFocusable(); + SpaceWar.SpacePanel var12 = new SpaceWar.SpacePanel(); + float var13 = var12.getAlignmentX(); + var12.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var18 = var12.getUI(); + java.awt.im.InputMethodRequests var19 = var12.getInputMethodRequests(); + SpaceWar.SpacePanel var20 = new SpaceWar.SpacePanel(); + float var21 = var20.getAlignmentX(); + var20.setVisible(false); + var20.nextFocus(); + var20.updateUI(); + var20.enableInputMethods(true); + var20.setSize((-1), 1); + SpaceWar.SpacePanel var31 = new SpaceWar.SpacePanel(); + var31.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var12.add((java.awt.Component)var20, (java.lang.Object)"SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + java.awt.event.KeyListener[] var37 = var12.getKeyListeners(); + java.awt.FocusTraversalPolicy var38 = var12.getFocusTraversalPolicy(); + SpaceWar.SpacePanel var39 = new SpaceWar.SpacePanel(); + var39.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + java.awt.Toolkit var44 = var39.getToolkit(); + var0.add((java.awt.Component)var12, (java.lang.Object)var39); + var12.transferFocusDownCycle(); + SpaceWar.SpacePanel var47 = new SpaceWar.SpacePanel(); + java.awt.Color var48 = var47.getBackground(); + var47.repaint(); + java.awt.im.InputMethodRequests var50 = var47.getInputMethodRequests(); + var47.setDoubleBuffered(true); + var47.setInheritsPopupMenu(false); + javax.swing.InputMap var55 = var47.getInputMap(); + var47.doLayout(); + java.awt.LayoutManager var57 = var47.getLayout(); + var12.setLayout(var57); + var12.layout(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var37); + + // Regression assertion (captures the current behavior of the code) + assertNull(var38); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var44); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var48); + + // Regression assertion (captures the current behavior of the code) + assertNull(var50); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var55); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var57); + + } + + public void test195() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test195"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.requestFocus(); + boolean var6 = var0.isBackgroundSet(); + SpaceWar.SpacePanel var7 = new SpaceWar.SpacePanel(); + java.awt.Color var8 = var7.getBackground(); + var7.repaint(); + var7.setRequestFocusEnabled(false); + var7.reshape(100, 0, 100, 0); + SpaceWar.SpacePanel var17 = new SpaceWar.SpacePanel(); + float var18 = var17.getAlignmentX(); + var17.setVisible(false); + var17.setInheritsPopupMenu(false); + boolean var23 = var17.isDoubleBuffered(); + SpaceWar.SpacePanel var24 = new SpaceWar.SpacePanel(); + float var25 = var24.getAlignmentX(); + var24.setVisible(false); + var24.nextFocus(); + var24.reshape((-1), 1, (-1), 10); + var24.disable(); + java.awt.LayoutManager var35 = var24.getLayout(); + var17.setLayout(var35); + var0.add((java.awt.Component)var7, (java.lang.Object)var35); + SpaceWar.SpacePanel var38 = new SpaceWar.SpacePanel(); + float var39 = var38.getAlignmentX(); + var38.setVisible(false); + java.awt.Dimension var42 = var38.getPreferredSize(); + java.awt.Toolkit var43 = var38.getToolkit(); + boolean var44 = var38.isFocusable(); + javax.swing.KeyStroke[] var45 = var38.getRegisteredKeyStrokes(); + SpaceWar.SpacePanel var46 = new SpaceWar.SpacePanel(); + float var47 = var46.getAlignmentX(); + SpaceWar.SpacePanel var48 = new SpaceWar.SpacePanel(); + float var49 = var48.getAlignmentX(); + var48.setVisible(false); + java.awt.Dimension var52 = var48.getPreferredSize(); + boolean var53 = var48.getVerifyInputWhenFocusTarget(); + java.awt.Component var56 = var48.findComponentAt(10, 1); + var46.addKeyListener((java.awt.event.KeyListener)var48); + var48.repaint(100, (-1), (-1), 1); + boolean var63 = var38.isAncestorOf((java.awt.Component)var48); + var38.setFocusable(false); + boolean var66 = var7.isAncestorOf((java.awt.Component)var38); + boolean var67 = var7.getFocusTraversalKeysEnabled(); + boolean var68 = var7.isFocusTraversalPolicySet(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var35); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var39 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var42); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var43); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var44 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var45); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var47 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var49 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var52); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var53 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var56); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var63 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var66 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var67 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var68 == false); + + } + + public void test196() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test196"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + var0.show(false); + boolean var8 = var0.isPaintingForPrint(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var15 = var9.getMouseListeners(); + int var16 = var9.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var17 = var9.getInputMethodRequests(); + var0.addKeyListener((java.awt.event.KeyListener)var9); + var9.removeNotify(); + var9.setName("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + SpaceWar.SpacePanel var22 = new SpaceWar.SpacePanel(); + float var23 = var22.getAlignmentX(); + var22.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var28 = var22.getUI(); + java.awt.im.InputMethodRequests var29 = var22.getInputMethodRequests(); + SpaceWar.SpacePanel var30 = new SpaceWar.SpacePanel(); + float var31 = var30.getAlignmentX(); + var30.setVisible(false); + var30.nextFocus(); + var30.updateUI(); + var30.enableInputMethods(true); + var30.setSize((-1), 1); + SpaceWar.SpacePanel var41 = new SpaceWar.SpacePanel(); + var41.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var22.add((java.awt.Component)var30, (java.lang.Object)"SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + SpaceWar.SpacePanel var47 = new SpaceWar.SpacePanel(); + float var48 = var47.getAlignmentX(); + var47.setVisible(false); + java.awt.Dimension var51 = var47.getPreferredSize(); + java.awt.Toolkit var52 = var47.getToolkit(); + java.awt.Toolkit var53 = var47.getToolkit(); + java.awt.Component var54 = var30.add((java.awt.Component)var47); + java.awt.dnd.DropTarget var55 = var30.getDropTarget(); + java.awt.Point var56 = var30.location(); + java.awt.Point var57 = var9.getLocation(var56); + java.awt.Component var58 = var9.getNextFocusableComponent(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var28); + + // Regression assertion (captures the current behavior of the code) + assertNull(var29); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var31 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var48 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var51); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var52); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var53); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var54); + + // Regression assertion (captures the current behavior of the code) + assertNull(var55); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var56); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var57); + + // Regression assertion (captures the current behavior of the code) + assertNull(var58); + + } + + public void test197() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test197"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + var0.setRequestFocusEnabled(false); + var0.reshape(100, 0, 100, 0); + var0.requestFocus(); + var0.firePropertyChange("hi!", '4', ' '); + boolean var15 = var0.requestFocusInWindow(); + boolean var16 = var0.isMinimumSizeSet(); + var0.setVisible(false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == false); + + } + + public void test198() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test198"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + java.awt.im.InputMethodRequests var3 = var0.getInputMethodRequests(); + int var4 = var0.countComponents(); + java.awt.event.MouseMotionListener[] var5 = var0.getMouseMotionListeners(); + java.awt.Dimension var6 = var0.size(); + boolean var7 = var0.isMinimumSizeSet(); + boolean var8 = var0.getIgnoreRepaint(); + java.awt.event.FocusListener[] var9 = var0.getFocusListeners(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var9); + + } + + public void test199() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test199"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + java.awt.event.MouseMotionListener[] var6 = var0.getMouseMotionListeners(); + java.awt.event.ComponentListener[] var7 = var0.getComponentListeners(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + var8.nextFocus(); + var8.repaint(1L); + SpaceWar.SpacePanel var15 = new SpaceWar.SpacePanel(); + float var16 = var15.getAlignmentX(); + var15.setVisible(false); + boolean var19 = var15.isDoubleBuffered(); + var15.list(); + SpaceWar.SpacePanel var21 = new SpaceWar.SpacePanel(); + float var22 = var21.getAlignmentX(); + var21.setVisible(false); + boolean var25 = var21.isDoubleBuffered(); + java.awt.dnd.DropTarget var26 = var21.getDropTarget(); + var21.show(false); + java.awt.Rectangle var29 = var21.getVisibleRect(); + java.awt.Rectangle var30 = var15.getBounds(var29); + var8.setBounds(var30); + var0.paintImmediately(var30); + java.awt.Point var33 = var0.getMousePosition(); + javax.swing.border.Border var34 = var0.getBorder(); + SpaceWar.SpacePanel var35 = new SpaceWar.SpacePanel(); + float var36 = var35.getAlignmentX(); + var35.setVisible(false); + var35.nextFocus(); + var35.updateUI(); + var35.enableInputMethods(true); + var35.setSize((-1), 1); + boolean var48 = var35.contains(1, 1); + javax.swing.TransferHandler var49 = var35.getTransferHandler(); + SpaceWar.SpacePanel var50 = new SpaceWar.SpacePanel(); + float var51 = var50.getAlignmentX(); + var50.setVisible(false); + boolean var54 = var50.isDoubleBuffered(); + var50.enable(false); + java.lang.Object var57 = var35.getClientProperty((java.lang.Object)false); + SpaceWar.SpacePanel var58 = new SpaceWar.SpacePanel(); + float var59 = var58.getAlignmentX(); + var58.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var64 = var58.getMouseListeners(); + java.awt.Dimension var65 = var58.getPreferredSize(); + java.util.Locale var66 = var58.getLocale(); + var58.setFocusable(true); + var58.setSize(3, 10); + SpaceWar.SpacePanel var72 = new SpaceWar.SpacePanel(); + float var73 = var72.getAlignmentX(); + var72.setVisible(false); + java.awt.Dimension var76 = var72.getPreferredSize(); + boolean var77 = var72.getVerifyInputWhenFocusTarget(); + java.awt.Dimension var78 = var72.size(); + var58.setSize(var78); + var35.setPreferredSize(var78); + var0.setMaximumSize(var78); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var22 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var29); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var30); + + // Regression assertion (captures the current behavior of the code) + assertNull(var33); + + // Regression assertion (captures the current behavior of the code) + assertNull(var34); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var36 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var48 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var49); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var51 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var54 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var57); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var59 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var64); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var65); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var66); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var73 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var76); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var77 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var78); + + } + + public void test200() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test200"); + + + SpaceWar.PowerUp var3 = new SpaceWar.PowerUp(100, (-1.0d), 0.0d); + double var4 = var3.getR(); + int var5 = var3.getType(); + double var6 = var3.getX(); + boolean var7 = var3.update(); + boolean var8 = var3.update(); + double var9 = var3.getX(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0.0d); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == 100); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == (-1.0d)); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == (-1.0d)); + + } + + public void test201() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test201"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + var0.list(); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + float var7 = var6.getAlignmentX(); + var6.setVisible(false); + boolean var10 = var6.isDoubleBuffered(); + java.awt.dnd.DropTarget var11 = var6.getDropTarget(); + var6.show(false); + java.awt.Rectangle var14 = var6.getVisibleRect(); + java.awt.Rectangle var15 = var0.getBounds(var14); + javax.swing.JToolTip var16 = var0.createToolTip(); + java.awt.Dimension var17 = var0.minimumSize(); + boolean var19 = var0.requestFocus(false); + java.awt.Dimension var20 = var0.minimumSize(); + java.awt.image.VolatileImage var23 = var0.createVolatileImage(24, 10); + SpaceWar.SpacePanel var24 = new SpaceWar.SpacePanel(); + float var25 = var24.getAlignmentX(); + var24.setVisible(false); + var24.nextFocus(); + var24.updateUI(); + var24.enableInputMethods(true); + java.awt.Point var33 = var24.getMousePosition(false); + java.awt.Dimension var34 = var24.getMinimumSize(); + var0.setMaximumSize(var34); + SpaceWar.SpacePanel var36 = new SpaceWar.SpacePanel(); + float var37 = var36.getAlignmentX(); + var36.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var42 = new SpaceWar.SpacePanel(); + float var43 = var42.getAlignmentX(); + var42.setVisible(false); + SpaceWar.SpacePanel var46 = new SpaceWar.SpacePanel(); + java.awt.Color var47 = var46.getBackground(); + var42.setForeground(var47); + var36.setBackground(var47); + java.awt.Point var50 = var36.location(); + var36.setToolTipText("SpaceWar.SpacePanel[,0,0,0x0,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + var36.setName(""); + SpaceWar.SpacePanel var55 = new SpaceWar.SpacePanel(); + float var56 = var55.getAlignmentX(); + var55.setVisible(false); + var55.nextFocus(); + var55.repaint(1L); + SpaceWar.SpacePanel var62 = new SpaceWar.SpacePanel(); + float var63 = var62.getAlignmentX(); + var62.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var68 = new SpaceWar.SpacePanel(); + float var69 = var68.getAlignmentX(); + var68.setVisible(false); + java.awt.Dimension var72 = var68.getPreferredSize(); + var62.setMaximumSize(var72); + var55.setPreferredSize(var72); + javax.swing.plaf.PanelUI var75 = var55.getUI(); + java.awt.Dimension var76 = var55.getMinimumSize(); + boolean var77 = var55.isFocusable(); + var55.enable(); + boolean var79 = var36.isAncestorOf((java.awt.Component)var55); + boolean var80 = var0.isFocusCycleRoot((java.awt.Container)var55); + var0.transferFocusUpCycle(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertNull(var23); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNull(var33); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var34); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var43 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var47); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var50); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var56 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var63 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var69 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var72); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var75); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var76); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var77 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var79 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var80 == false); + + } + + public void test202() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test202"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + java.awt.im.InputMethodRequests var3 = var0.getInputMethodRequests(); + int var4 = var0.countComponents(); + java.awt.event.ComponentListener[] var5 = var0.getComponentListeners(); + var0.removeNotify(); + javax.swing.InputMap var7 = var0.getInputMap(); + java.awt.Cursor var8 = var0.getCursor(); + var0.doLayout(); + javax.swing.plaf.PanelUI var10 = var0.getUI(); + var0.firePropertyChange("hi!", 400, 100); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var10); + + } + + public void test203() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test203"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + var0.show(false); + boolean var8 = var0.isPaintingForPrint(); + boolean var9 = var0.getIgnoreRepaint(); + javax.swing.event.AncestorListener[] var10 = var0.getAncestorListeners(); + java.awt.image.ColorModel var11 = var0.getColorModel(); + javax.swing.KeyStroke[] var12 = var0.getRegisteredKeyStrokes(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var12); + + } + + public void test204() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test204"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + var0.setName(""); + java.awt.ComponentOrientation var3 = var0.getComponentOrientation(); + int var4 = var0.getComponentCount(); + java.awt.image.ColorModel var5 = var0.getColorModel(); + javax.swing.event.AncestorListener[] var6 = var0.getAncestorListeners(); + boolean var7 = var0.getVerifyInputWhenFocusTarget(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == true); + + } + + public void test205() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test205"); + + + SpaceWar.Enemy var2 = new SpaceWar.Enemy(2, 24); + + } + + public void test206() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test206"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + var0.show(false); + java.awt.Rectangle var8 = var0.getVisibleRect(); + java.awt.Toolkit var9 = var0.getToolkit(); + java.awt.event.MouseMotionListener[] var10 = var0.getMouseMotionListeners(); + SpaceWar.SpacePanel var11 = new SpaceWar.SpacePanel(); + float var12 = var11.getAlignmentX(); + var11.setVisible(false); + boolean var15 = var11.isDoubleBuffered(); + java.awt.dnd.DropTarget var16 = var11.getDropTarget(); + var11.show(false); + boolean var19 = var11.isPaintingForPrint(); + SpaceWar.SpacePanel var20 = new SpaceWar.SpacePanel(); + float var21 = var20.getAlignmentX(); + var20.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var26 = var20.getMouseListeners(); + int var27 = var20.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var28 = var20.getInputMethodRequests(); + var11.addKeyListener((java.awt.event.KeyListener)var20); + SpaceWar.SpacePanel var30 = new SpaceWar.SpacePanel(); + float var31 = var30.getAlignmentX(); + var30.setVisible(false); + boolean var34 = var30.isDoubleBuffered(); + var30.list(); + float var36 = var30.getAlignmentY(); + boolean var37 = var20.isFocusCycleRoot((java.awt.Container)var30); + javax.swing.JPopupMenu var38 = var30.getComponentPopupMenu(); + var30.move((-1), 100); + var30.validate(); + java.awt.Rectangle var43 = var30.getVisibleRect(); + var0.paintImmediately(var43); + java.lang.String var45 = var0.getUIClassID(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var9); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var28); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var31 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var34 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var36 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var38); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var43); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var45 + "' != '" + "PanelUI"+ "'", var45.equals("PanelUI")); + + } + + public void test207() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test207"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + var0.list(); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + float var7 = var6.getAlignmentX(); + var6.setVisible(false); + boolean var10 = var6.isDoubleBuffered(); + java.awt.dnd.DropTarget var11 = var6.getDropTarget(); + var6.show(false); + java.awt.Rectangle var14 = var6.getVisibleRect(); + java.awt.Rectangle var15 = var0.getBounds(var14); + javax.swing.JToolTip var16 = var0.createToolTip(); + java.awt.Graphics var17 = var0.getGraphics(); + var0.setAutoscrolls(false); + // The following exception was thrown during execution. + // This behavior will recorded for regression testing. + try { + var0.remove(10); + fail("Expected exception of type java.lang.ArrayIndexOutOfBoundsException"); + } catch (java.lang.ArrayIndexOutOfBoundsException e) { + // Expected exception. + } + + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + } + + public void test208() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test208"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + var0.list(); + var0.setAutoscrolls(false); + java.awt.Component.BaselineResizeBehavior var8 = var0.getBaselineResizeBehavior(); + javax.swing.event.AncestorListener[] var9 = var0.getAncestorListeners(); + SpaceWar.SpacePanel var10 = new SpaceWar.SpacePanel(); + float var11 = var10.getAlignmentX(); + var10.setVisible(false); + SpaceWar.SpacePanel var14 = new SpaceWar.SpacePanel(); + java.awt.Color var15 = var14.getBackground(); + var10.setForeground(var15); + SpaceWar.SpacePanel var17 = new SpaceWar.SpacePanel(); + float var18 = var17.getAlignmentX(); + var17.setVisible(false); + boolean var21 = var17.isDoubleBuffered(); + java.awt.dnd.DropTarget var22 = var17.getDropTarget(); + var17.show(false); + java.awt.Rectangle var25 = var17.getVisibleRect(); + var10.repaint(var25); + java.awt.FocusTraversalPolicy var27 = var10.getFocusTraversalPolicy(); + SpaceWar.SpacePanel var28 = new SpaceWar.SpacePanel(); + float var29 = var28.getAlignmentX(); + var28.firePropertyChange("", (-1), 1); + boolean var34 = var28.isFocusOwner(); + SpaceWar.SpacePanel var36 = new SpaceWar.SpacePanel(); + float var37 = var36.getAlignmentX(); + var36.setVisible(false); + java.awt.Dimension var40 = var36.getPreferredSize(); + java.awt.Toolkit var41 = var36.getToolkit(); + SpaceWar.SpacePanel var42 = new SpaceWar.SpacePanel(); + var42.setName(""); + int var45 = var42.getX(); + SpaceWar.SpacePanel var46 = new SpaceWar.SpacePanel(); + float var47 = var46.getAlignmentX(); + var46.setVisible(false); + var46.nextFocus(); + SpaceWar.SpacePanel var51 = new SpaceWar.SpacePanel(); + float var52 = var51.getAlignmentX(); + var51.setVisible(false); + SpaceWar.SpacePanel var55 = new SpaceWar.SpacePanel(); + java.awt.Color var56 = var55.getBackground(); + var51.setForeground(var56); + var46.setBackground(var56); + var42.setBackground(var56); + var36.setForeground(var56); + var28.putClientProperty((java.lang.Object)(byte)100, (java.lang.Object)var56); + var10.setBackground(var56); + SpaceWar.SpacePanel var63 = new SpaceWar.SpacePanel(); + java.awt.Color var64 = var63.getBackground(); + var63.repaint(); + java.awt.im.InputMethodRequests var66 = var63.getInputMethodRequests(); + int var67 = var63.countComponents(); + java.awt.event.ComponentListener[] var68 = var63.getComponentListeners(); + var63.removeNotify(); + var0.add((java.awt.Component)var10, (java.lang.Object)var63); + java.awt.image.BufferedImage var72 = var10.loadImg("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + java.awt.Dimension var73 = var10.size(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var9); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var25); + + // Regression assertion (captures the current behavior of the code) + assertNull(var27); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var29 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var34 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var40); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var41); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var45 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var47 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var52 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var56); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var64); + + // Regression assertion (captures the current behavior of the code) + assertNull(var66); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var67 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var68); + + // Regression assertion (captures the current behavior of the code) + assertNull(var72); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var73); + + } + + public void test209() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test209"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var1 = new SpaceWar.SpacePanel(); + java.awt.Color var2 = var1.getBackground(); + SpaceWar.SpacePanel var3 = new SpaceWar.SpacePanel(); + float var4 = var3.getAlignmentX(); + var3.setVisible(false); + var3.nextFocus(); + var3.updateUI(); + var3.enableInputMethods(true); + var0.add((java.awt.Component)var1, (java.lang.Object)true); + boolean var13 = var1.areFocusTraversalKeysSet(0); + java.awt.Component var14 = var1.getNextFocusableComponent(); + java.lang.String var15 = var1.getUIClassID(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var2); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var15 + "' != '" + "PanelUI"+ "'", var15.equals("PanelUI")); + + } + + public void test210() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test210"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + var0.list(); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + float var7 = var6.getAlignmentX(); + var6.setVisible(false); + boolean var10 = var6.isDoubleBuffered(); + java.awt.dnd.DropTarget var11 = var6.getDropTarget(); + var6.show(false); + java.awt.Rectangle var14 = var6.getVisibleRect(); + java.awt.image.BufferedImage var16 = var6.loadImg("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + boolean var17 = var0.isAncestorOf((java.awt.Component)var6); + float var18 = var0.getAlignmentX(); + java.awt.image.VolatileImage var21 = var0.createVolatileImage(25, 1); + java.beans.PropertyChangeListener[] var23 = var0.getPropertyChangeListeners("PanelUI"); + boolean var24 = var0.isPaintingForPrint(); + javax.swing.JToolTip var25 = var0.createToolTip(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNull(var21); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var23); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var24 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var25); + + } + + public void test211() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test211"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + java.awt.Dimension var4 = var0.getPreferredSize(); + java.awt.Toolkit var5 = var0.getToolkit(); + boolean var6 = var0.isFocusable(); + javax.swing.KeyStroke[] var7 = var0.getRegisteredKeyStrokes(); + java.awt.Component var10 = var0.getComponentAt(100, 100); + java.lang.Object var11 = var0.getTreeLock(); + boolean var14 = var0.inside(400, 0); + java.awt.event.MouseWheelListener[] var15 = var0.getMouseWheelListeners(); + var0.enableInputMethods(true); + var0.list(); + var0.firePropertyChange("hi!", 10.0f, 0.5f); + boolean var23 = var0.isMaximumSizeSet(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var4); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == false); + + } + + public void test212() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test212"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + java.awt.Dimension var4 = var0.getPreferredSize(); + boolean var5 = var0.getVerifyInputWhenFocusTarget(); + java.awt.Component var8 = var0.findComponentAt(10, 1); + boolean var9 = var0.requestDefaultFocus(); + boolean var10 = var0.getInheritsPopupMenu(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var4); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == false); + + } + + public void test213() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test213"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.setInheritsPopupMenu(false); + boolean var6 = var0.isMinimumSizeSet(); + java.awt.Point var8 = var0.getMousePosition(true); + java.awt.Color var9 = var0.getForeground(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var9); + + } + + public void test214() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test214"); + + + SpaceWar.Player var0 = new SpaceWar.Player(); + var0.increasePower(25); + int var3 = var0.getScore(); + var0.setRigth(true); + var0.loseLife(); + var0.setLeft(true); + var0.setDown(true); + int var11 = var0.getY(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == 500); + + } + + public void test215() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test215"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.updateUI(); + var0.enableInputMethods(true); + java.lang.String var8 = var0.toString(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.setVisible(false); + boolean var13 = var9.isDoubleBuffered(); + java.awt.dnd.DropTarget var14 = var9.getDropTarget(); + var9.show(false); + java.awt.Rectangle var17 = var9.getVisibleRect(); + java.awt.image.BufferedImage var19 = var9.loadImg("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + java.awt.ComponentOrientation var20 = var9.getComponentOrientation(); + boolean var21 = var9.isPaintingTile(); + boolean var22 = var9.isOptimizedDrawingEnabled(); + int var23 = var0.getComponentZOrder((java.awt.Component)var9); + javax.swing.JRootPane var24 = var0.getRootPane(); + boolean var25 = var0.isMaximumSizeSet(); + boolean var26 = var0.isVisible(); + java.awt.event.ContainerListener[] var27 = var0.getContainerListeners(); + var0.firePropertyChange("", 100L, (-1L)); + java.awt.event.KeyListener[] var32 = var0.getKeyListeners(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var8 + "' != '" + "SpaceWar.SpacePanel[,0,0,0var8,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"+ "'", var8.equals("SpaceWar.SpacePanel[,0,0,0var8,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]")); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var22 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == (-1)); + + // Regression assertion (captures the current behavior of the code) + assertNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var27); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var32); + + } + + public void test216() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test216"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.reshape((-1), 1, (-1), 10); + java.util.Set var11 = var0.getFocusTraversalKeys(3); + // The following exception was thrown during execution. + // This behavior will recorded for regression testing. + try { + java.awt.Component var13 = var0.getComponent(10); + fail("Expected exception of type java.lang.ArrayIndexOutOfBoundsException"); + } catch (java.lang.ArrayIndexOutOfBoundsException e) { + // Expected exception. + } + + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + } + + public void test217() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test217"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + var0.setName(""); + int var3 = var0.getX(); + SpaceWar.SpacePanel var4 = new SpaceWar.SpacePanel(); + float var5 = var4.getAlignmentX(); + var4.setVisible(false); + var4.nextFocus(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.setVisible(false); + SpaceWar.SpacePanel var13 = new SpaceWar.SpacePanel(); + java.awt.Color var14 = var13.getBackground(); + var9.setForeground(var14); + var4.setBackground(var14); + var0.setBackground(var14); + boolean var18 = var0.isFocusTraversable(); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + var19.setName(""); + int var22 = var19.getX(); + SpaceWar.SpacePanel var23 = new SpaceWar.SpacePanel(); + float var24 = var23.getAlignmentX(); + var23.setVisible(false); + var23.nextFocus(); + SpaceWar.SpacePanel var28 = new SpaceWar.SpacePanel(); + float var29 = var28.getAlignmentX(); + var28.setVisible(false); + SpaceWar.SpacePanel var32 = new SpaceWar.SpacePanel(); + java.awt.Color var33 = var32.getBackground(); + var28.setForeground(var33); + var23.setBackground(var33); + var19.setBackground(var33); + var0.setBackground(var33); + int var38 = var0.getWidth(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var22 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var24 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var29 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var33); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var38 == 0); + + } + + public void test218() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test218"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + float var7 = var6.getAlignmentX(); + var6.setVisible(false); + java.awt.Dimension var10 = var6.getPreferredSize(); + var0.setMaximumSize(var10); + boolean var12 = var0.getVerifyInputWhenFocusTarget(); + boolean var13 = var0.isFontSet(); + boolean var14 = var0.getIgnoreRepaint(); + java.awt.Component var17 = var0.locate(1, 25); + boolean var18 = var0.isLightweight(); + var0.move(100, 500); + java.awt.Container var22 = var0.getParent(); + SpaceWar.SpacePanel var23 = new SpaceWar.SpacePanel(); + float var24 = var23.getAlignmentX(); + boolean var25 = var23.hasFocus(); + java.awt.Insets var26 = var23.getInsets(); + boolean var27 = var23.isFocusTraversalPolicyProvider(); + java.beans.PropertyChangeListener[] var29 = var23.getPropertyChangeListeners("hi!"); + java.awt.Cursor var30 = var23.getCursor(); + boolean var31 = var0.isFocusCycleRoot((java.awt.Container)var23); + boolean var32 = var23.isDisplayable(); + var23.setBounds(399, 499, 24, 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var24 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var29); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var30); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var31 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var32 == false); + + } + + public void test219() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test219"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + SpaceWar.SpacePanel var4 = new SpaceWar.SpacePanel(); + java.awt.Color var5 = var4.getBackground(); + var0.setForeground(var5); + SpaceWar.SpacePanel var7 = new SpaceWar.SpacePanel(); + float var8 = var7.getAlignmentX(); + var7.setVisible(false); + boolean var11 = var7.isDoubleBuffered(); + java.awt.dnd.DropTarget var12 = var7.getDropTarget(); + var7.show(false); + java.awt.Rectangle var15 = var7.getVisibleRect(); + var0.repaint(var15); + java.awt.FocusTraversalPolicy var17 = var0.getFocusTraversalPolicy(); + java.awt.im.InputMethodRequests var18 = var0.getInputMethodRequests(); + javax.swing.JToolTip var19 = var0.createToolTip(); + var0.setDebugGraphicsOptions(1); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var19); + + } + + public void test220() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test220"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + var0.setName(""); + java.awt.Dimension var3 = var0.minimumSize(); + boolean var4 = var0.isDoubleBuffered(); + SpaceWar.SpacePanel var5 = new SpaceWar.SpacePanel(); + float var6 = var5.getAlignmentX(); + var5.setVisible(false); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + java.awt.Color var10 = var9.getBackground(); + var5.setForeground(var10); + SpaceWar.SpacePanel var12 = new SpaceWar.SpacePanel(); + float var13 = var12.getAlignmentX(); + var12.setVisible(false); + boolean var16 = var12.isDoubleBuffered(); + java.awt.dnd.DropTarget var17 = var12.getDropTarget(); + var12.show(false); + java.awt.Rectangle var20 = var12.getVisibleRect(); + var5.repaint(var20); + java.awt.FocusTraversalPolicy var22 = var5.getFocusTraversalPolicy(); + java.awt.im.InputMethodRequests var23 = var5.getInputMethodRequests(); + var5.layout(); + boolean var25 = var5.isFocusTraversalPolicyProvider(); + java.awt.Component var26 = var0.add((java.awt.Component)var5); + java.awt.event.KeyListener[] var27 = var5.getKeyListeners(); + var5.enable(); + boolean var29 = var5.isPreferredSizeSet(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertNull(var23); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var27); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var29 == true); + + } + + public void test221() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test221"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + var0.setRequestFocusEnabled(false); + var0.reshape(100, 0, 100, 0); + var0.requestFocus(); + var0.firePropertyChange("hi!", '4', ' '); + SpaceWar.Enemy var17 = new SpaceWar.Enemy(0, 100); + int var18 = var17.getR(); + var17.explode(); + var0.putClientProperty((java.lang.Object)var17, (java.lang.Object)(short)10); + // The following exception was thrown during execution. + // This behavior will recorded for regression testing. + try { + boolean var23 = var0.areFocusTraversalKeysSet(500); + fail("Expected exception of type java.lang.IllegalArgumentException"); + } catch (java.lang.IllegalArgumentException e) { + // Expected exception. + } + + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == 0); + + } + + public void test222() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test222"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + var0.show(false); + boolean var8 = var0.isPaintingForPrint(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var15 = var9.getMouseListeners(); + int var16 = var9.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var17 = var9.getInputMethodRequests(); + var0.addKeyListener((java.awt.event.KeyListener)var9); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + float var20 = var19.getAlignmentX(); + var19.setVisible(false); + boolean var23 = var19.isDoubleBuffered(); + var19.list(); + float var25 = var19.getAlignmentY(); + boolean var26 = var9.isFocusCycleRoot((java.awt.Container)var19); + boolean var27 = var19.isEnabled(); + java.awt.Dimension var28 = var19.getMaximumSize(); + var19.disable(); + java.awt.peer.ComponentPeer var30 = var19.getPeer(); + boolean var31 = var19.isCursorSet(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var28); + + // Regression assertion (captures the current behavior of the code) + assertNull(var30); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var31 == false); + + } + + public void test223() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test223"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + var0.list(); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + float var7 = var6.getAlignmentX(); + var6.setVisible(false); + boolean var10 = var6.isDoubleBuffered(); + java.awt.dnd.DropTarget var11 = var6.getDropTarget(); + var6.show(false); + java.awt.Rectangle var14 = var6.getVisibleRect(); + java.awt.Rectangle var15 = var0.getBounds(var14); + javax.swing.JToolTip var16 = var0.createToolTip(); + java.awt.Dimension var17 = var0.minimumSize(); + boolean var19 = var0.requestFocus(false); + java.awt.Dimension var20 = var0.minimumSize(); + java.awt.image.VolatileImage var23 = var0.createVolatileImage(24, 10); + SpaceWar.SpacePanel var24 = new SpaceWar.SpacePanel(); + float var25 = var24.getAlignmentX(); + var24.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var30 = new SpaceWar.SpacePanel(); + float var31 = var30.getAlignmentX(); + var30.setVisible(false); + java.awt.Dimension var34 = var30.getPreferredSize(); + var24.setMaximumSize(var34); + boolean var36 = var24.getVerifyInputWhenFocusTarget(); + int var37 = var24.getX(); + java.awt.Rectangle var38 = var24.bounds(); + var0.repaint(var38); + boolean var40 = var0.isPreferredSizeSet(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertNull(var23); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var31 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var34); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var36 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var38); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var40 == true); + + } + + public void test224() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test224"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + java.awt.im.InputMethodRequests var3 = var0.getInputMethodRequests(); + var0.setDoubleBuffered(true); + var0.setInheritsPopupMenu(false); + javax.swing.plaf.PanelUI var8 = var0.getUI(); + boolean var9 = var0.isCursorSet(); + var0.repaint(10L); + var0.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=java.awt.Dimension[width=800,height=600],minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", 500, 0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == false); + + } + + public void test225() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test225"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.reshape((-1), 1, (-1), 10); + var0.disable(); + boolean var11 = var0.isFocusable(); + SpaceWar.SpacePanel var12 = new SpaceWar.SpacePanel(); + float var13 = var12.getAlignmentX(); + var12.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var18 = var12.getUI(); + java.awt.im.InputMethodRequests var19 = var12.getInputMethodRequests(); + SpaceWar.SpacePanel var20 = new SpaceWar.SpacePanel(); + float var21 = var20.getAlignmentX(); + var20.setVisible(false); + var20.nextFocus(); + var20.updateUI(); + var20.enableInputMethods(true); + var20.setSize((-1), 1); + SpaceWar.SpacePanel var31 = new SpaceWar.SpacePanel(); + var31.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var12.add((java.awt.Component)var20, (java.lang.Object)"SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + java.awt.event.KeyListener[] var37 = var12.getKeyListeners(); + java.awt.FocusTraversalPolicy var38 = var12.getFocusTraversalPolicy(); + SpaceWar.SpacePanel var39 = new SpaceWar.SpacePanel(); + var39.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + java.awt.Toolkit var44 = var39.getToolkit(); + var0.add((java.awt.Component)var12, (java.lang.Object)var39); + java.beans.VetoableChangeListener[] var46 = var39.getVetoableChangeListeners(); + var39.setAlignmentX(0.0f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var37); + + // Regression assertion (captures the current behavior of the code) + assertNull(var38); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var44); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var46); + + } + + public void test226() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test226"); + + + SpaceWar.Bullet var3 = new SpaceWar.Bullet(594.7973940347722d, 3, 100); + double var4 = var3.getY(); + double var5 = var3.getR(); + double var6 = var3.getX(); + double var7 = var3.getX(); + double var8 = var3.getX(); + double var9 = var3.getX(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 100.0d); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == 5.0d); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == 3.0d); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 3.0d); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 3.0d); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 3.0d); + + } + + public void test227() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test227"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + var0.setRequestFocusEnabled(false); + var0.setIgnoreRepaint(false); + java.lang.String var7 = var0.toString(); + java.awt.Color var8 = var0.getBackground(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.setVisible(false); + java.awt.Dimension var13 = var9.getPreferredSize(); + java.awt.Toolkit var14 = var9.getToolkit(); + java.awt.Toolkit var15 = var9.getToolkit(); + SpaceWar.Player var16 = new SpaceWar.Player(); + var16.increasePower(25); + int var19 = var16.getScore(); + var16.setRigth(true); + var16.loseLife(); + var0.putClientProperty((java.lang.Object)var9, (java.lang.Object)var16); + boolean var24 = var16.isRecovering(); + boolean var25 = var16.isDead(); + int var26 = var16.getX(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var7 + "' != '" + "SpaceWar.SpacePanel[,0,0,0var7,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"+ "'", var7.equals("SpaceWar.SpacePanel[,0,0,0var7,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]")); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var24 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == 400); + + } + + public void test228() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test228"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var6 = var0.getUI(); + java.awt.im.InputMethodRequests var7 = var0.getInputMethodRequests(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + var8.nextFocus(); + var8.updateUI(); + var8.enableInputMethods(true); + var8.setSize((-1), 1); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + var19.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var0.add((java.awt.Component)var8, (java.lang.Object)"SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + boolean var25 = var0.isCursorSet(); + javax.swing.TransferHandler var26 = var0.getTransferHandler(); + java.awt.Point var27 = var0.location(); + java.awt.ComponentOrientation var28 = var0.getComponentOrientation(); + var0.transferFocus(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var27); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var28); + + } + + public void test229() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test229"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var1 = new SpaceWar.SpacePanel(); + float var2 = var1.getAlignmentX(); + var1.setVisible(false); + var1.nextFocus(); + var1.reshape((-1), 1, (-1), 10); + SpaceWar.SpacePanel var11 = new SpaceWar.SpacePanel(); + java.awt.Color var12 = var11.getBackground(); + var11.repaint(); + var11.setRequestFocusEnabled(false); + var11.reshape(100, 0, 100, 0); + java.awt.Component var21 = var1.add((java.awt.Component)var11); + SpaceWar.SpacePanel var22 = new SpaceWar.SpacePanel(); + var22.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + javax.swing.plaf.PanelUI var27 = var22.getUI(); + SpaceWar.SpacePanel var28 = new SpaceWar.SpacePanel(); + float var29 = var28.getAlignmentX(); + var28.setVisible(false); + var28.nextFocus(); + var28.repaint(1L); + SpaceWar.SpacePanel var35 = new SpaceWar.SpacePanel(); + float var36 = var35.getAlignmentX(); + var35.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var41 = new SpaceWar.SpacePanel(); + float var42 = var41.getAlignmentX(); + var41.setVisible(false); + java.awt.Dimension var45 = var41.getPreferredSize(); + var35.setMaximumSize(var45); + var28.setPreferredSize(var45); + var22.setMaximumSize(var45); + java.awt.Dimension var49 = var11.getSize(var45); + java.awt.Dimension var50 = var0.getSize(var49); + boolean var52 = var0.requestFocus(false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var2 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var21); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var27); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var29 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var36 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var42 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var45); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var49); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var50); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var52 == false); + + } + + public void test230() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test230"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var6 = var0.getUI(); + java.awt.im.InputMethodRequests var7 = var0.getInputMethodRequests(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + var8.nextFocus(); + var8.updateUI(); + var8.enableInputMethods(true); + var8.setSize((-1), 1); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + var19.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var0.add((java.awt.Component)var8, (java.lang.Object)"SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + java.awt.ComponentOrientation var25 = var8.getComponentOrientation(); + java.beans.VetoableChangeListener[] var26 = var8.getVetoableChangeListeners(); + int var27 = var8.getHeight(); + var8.enable(true); + boolean var30 = var8.isFocusTraversalPolicyProvider(); + boolean var31 = var8.isFocusCycleRoot(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var25); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == 1); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var30 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var31 == false); + + } + + public void test231() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test231"); + + + SpaceWar.Player var0 = new SpaceWar.Player(); + int var1 = var0.getPower(); + int var2 = var0.getPowerLevel(); + var0.setLeft(false); + var0.setScore(400); + boolean var7 = var0.isRecovering(); + var0.setLeft(false); + var0.setFiring(true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var2 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == false); + + } + + public void test232() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test232"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.requestFocus(); + boolean var6 = var0.getInheritsPopupMenu(); + boolean var7 = var0.isFocusOwner(); + boolean var8 = var0.isValidateRoot(); + java.util.Set var10 = var0.getFocusTraversalKeys(0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var10); + + } + + public void test233() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test233"); + + + SpaceWar.Enemy var2 = new SpaceWar.Enemy(0, 100); + int var3 = var2.getR(); + var2.explode(); + var2.update(); + var2.explode(); + boolean var7 = var2.isDead(); + int var8 = var2.getR(); + int var9 = var2.getRank(); + int var10 = var2.getRank(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 100); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 100); + + } + + public void test234() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test234"); + + + SpaceWar.Explosion var4 = new SpaceWar.Explosion(383.0566534864913d, 240.9713786093358d, 399, 100); + + } + + public void test235() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test235"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var6 = var0.getUI(); + var0.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", ' ', '#'); + var0.paintImmediately(2, 24, 24, 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + } + + public void test236() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test236"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + var0.setRequestFocusEnabled(false); + var0.reshape(100, 0, 100, 0); + javax.swing.event.AncestorListener[] var10 = var0.getAncestorListeners(); + var0.setOpaque(true); + java.awt.event.ComponentListener[] var13 = var0.getComponentListeners(); + java.awt.Point var14 = var0.location(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + } + + public void test237() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test237"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var6 = var0.getMouseListeners(); + int var7 = var0.getDebugGraphicsOptions(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + boolean var12 = var8.isDoubleBuffered(); + java.awt.dnd.DropTarget var13 = var8.getDropTarget(); + var8.show(false); + java.awt.Rectangle var16 = var8.getVisibleRect(); + var0.paintImmediately(var16); + java.awt.Rectangle var18 = var0.getBounds(); + java.awt.Component var21 = var0.getComponentAt((-1), 25); + java.awt.Insets var22 = var0.getInsets(); + SpaceWar.SpacePanel var23 = new SpaceWar.SpacePanel(); + float var24 = var23.getAlignmentX(); + var23.setVisible(false); + var23.nextFocus(); + var23.repaint(1L); + SpaceWar.SpacePanel var30 = new SpaceWar.SpacePanel(); + float var31 = var30.getAlignmentX(); + var30.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var36 = new SpaceWar.SpacePanel(); + float var37 = var36.getAlignmentX(); + var36.setVisible(false); + java.awt.Dimension var40 = var36.getPreferredSize(); + var30.setMaximumSize(var40); + var23.setPreferredSize(var40); + javax.swing.plaf.PanelUI var43 = var23.getUI(); + SpaceWar.SpacePanel var44 = new SpaceWar.SpacePanel(); + float var45 = var44.getAlignmentX(); + var44.setVisible(false); + SpaceWar.SpacePanel var48 = new SpaceWar.SpacePanel(); + java.awt.Color var49 = var48.getBackground(); + var44.setForeground(var49); + SpaceWar.SpacePanel var51 = new SpaceWar.SpacePanel(); + float var52 = var51.getAlignmentX(); + var51.setVisible(false); + boolean var55 = var51.isDoubleBuffered(); + java.awt.dnd.DropTarget var56 = var51.getDropTarget(); + var51.show(false); + java.awt.Rectangle var59 = var51.getVisibleRect(); + var44.repaint(var59); + java.awt.FocusTraversalPolicy var61 = var44.getFocusTraversalPolicy(); + var44.resetKeyboardActions(); + SpaceWar.SpacePanel var63 = new SpaceWar.SpacePanel(); + float var64 = var63.getAlignmentX(); + var63.setVisible(false); + boolean var67 = var63.isDoubleBuffered(); + java.awt.dnd.DropTarget var68 = var63.getDropTarget(); + var63.show(false); + java.awt.Rectangle var71 = var63.getVisibleRect(); + var44.computeVisibleRect(var71); + javax.swing.ActionMap var73 = var44.getActionMap(); + var23.setActionMap(var73); + java.awt.Point var75 = var23.getMousePosition(); + SpaceWar.SpacePanel var76 = new SpaceWar.SpacePanel(); + float var77 = var76.getAlignmentX(); + var76.setVisible(false); + var76.setInheritsPopupMenu(false); + var76.setFocusTraversalPolicyProvider(true); + java.awt.Container var84 = var76.getFocusCycleRootAncestor(); + SpaceWar.SpacePanel var85 = new SpaceWar.SpacePanel(); + float var86 = var85.getAlignmentX(); + var85.removeNotify(); + SpaceWar.SpacePanel var88 = new SpaceWar.SpacePanel(); + float var89 = var88.getAlignmentX(); + var88.setVisible(false); + boolean var92 = var88.isDoubleBuffered(); + var88.list(); + float var94 = var88.getAlignmentY(); + java.awt.Insets var95 = var88.getInsets(); + java.awt.Insets var96 = var85.getInsets(var95); + java.awt.Insets var97 = var76.getInsets(var96); + var0.add((java.awt.Component)var23, (java.lang.Object)var76); + boolean var99 = var23.isOpaque(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertNull(var21); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var24 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var31 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var40); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var43); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var45 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var49); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var52 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var55 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var56); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var59); + + // Regression assertion (captures the current behavior of the code) + assertNull(var61); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var64 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var67 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var68); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var71); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var73); + + // Regression assertion (captures the current behavior of the code) + assertNull(var75); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var77 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNull(var84); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var86 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var89 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var92 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var94 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var95); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var96); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var97); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var99 == true); + + } + + public void test238() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test238"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.reshape((-1), 1, (-1), 10); + var0.layout(); + var0.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", 0L, 1L); + SpaceWar.SpacePanel var15 = new SpaceWar.SpacePanel(); + float var16 = var15.getAlignmentX(); + var15.setVisible(false); + boolean var19 = var15.isDoubleBuffered(); + java.awt.dnd.DropTarget var20 = var15.getDropTarget(); + var15.show(false); + boolean var23 = var15.isPaintingForPrint(); + SpaceWar.SpacePanel var24 = new SpaceWar.SpacePanel(); + float var25 = var24.getAlignmentX(); + var24.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var30 = var24.getMouseListeners(); + int var31 = var24.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var32 = var24.getInputMethodRequests(); + var15.addKeyListener((java.awt.event.KeyListener)var24); + var24.firePropertyChange("", (short)0, (short)0); + java.awt.event.MouseMotionListener[] var38 = var24.getMouseMotionListeners(); + var24.setInheritsPopupMenu(true); + int var41 = var24.getX(); + // The following exception was thrown during execution. + // This behavior will recorded for regression testing. + try { + java.awt.Component var43 = var0.add((java.awt.Component)var24, 3); + fail("Expected exception of type java.lang.IllegalArgumentException"); + } catch (java.lang.IllegalArgumentException e) { + // Expected exception. + } + + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var30); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var31 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var32); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var38); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var41 == 0); + + } + + public void test239() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test239"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.requestFocus(); + boolean var6 = var0.isBackgroundSet(); + SpaceWar.SpacePanel var7 = new SpaceWar.SpacePanel(); + java.awt.Color var8 = var7.getBackground(); + var7.repaint(); + var7.setRequestFocusEnabled(false); + var7.reshape(100, 0, 100, 0); + SpaceWar.SpacePanel var17 = new SpaceWar.SpacePanel(); + float var18 = var17.getAlignmentX(); + var17.setVisible(false); + var17.setInheritsPopupMenu(false); + boolean var23 = var17.isDoubleBuffered(); + SpaceWar.SpacePanel var24 = new SpaceWar.SpacePanel(); + float var25 = var24.getAlignmentX(); + var24.setVisible(false); + var24.nextFocus(); + var24.reshape((-1), 1, (-1), 10); + var24.disable(); + java.awt.LayoutManager var35 = var24.getLayout(); + var17.setLayout(var35); + var0.add((java.awt.Component)var7, (java.lang.Object)var35); + var7.hide(); + java.awt.im.InputMethodRequests var39 = var7.getInputMethodRequests(); + SpaceWar.SpacePanel var40 = new SpaceWar.SpacePanel(); + float var41 = var40.getAlignmentX(); + var40.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var46 = var40.getUI(); + java.awt.im.InputMethodRequests var47 = var40.getInputMethodRequests(); + SpaceWar.SpacePanel var48 = new SpaceWar.SpacePanel(); + float var49 = var48.getAlignmentX(); + var48.setVisible(false); + var48.nextFocus(); + var48.updateUI(); + var48.enableInputMethods(true); + var48.setSize((-1), 1); + SpaceWar.SpacePanel var59 = new SpaceWar.SpacePanel(); + var59.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var40.add((java.awt.Component)var48, (java.lang.Object)"SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + boolean var65 = var40.isCursorSet(); + javax.swing.KeyStroke[] var66 = var40.getRegisteredKeyStrokes(); + java.util.Locale var67 = var40.getLocale(); + var7.setLocale(var67); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var35); + + // Regression assertion (captures the current behavior of the code) + assertNull(var39); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var41 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var46); + + // Regression assertion (captures the current behavior of the code) + assertNull(var47); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var49 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var65 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var66); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var67); + + } + + public void test240() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test240"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.reshape((-1), 1, (-1), 10); + var0.disable(); + boolean var11 = var0.isFocusable(); + int var12 = var0.getHeight(); + javax.swing.InputVerifier var13 = var0.getInputVerifier(); + java.awt.Graphics var14 = var0.getGraphics(); + var0.setIgnoreRepaint(true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == 10); + + // Regression assertion (captures the current behavior of the code) + assertNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertNull(var14); + + } + + public void test241() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test241"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + var0.list(); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + float var7 = var6.getAlignmentX(); + var6.setVisible(false); + boolean var10 = var6.isDoubleBuffered(); + java.awt.dnd.DropTarget var11 = var6.getDropTarget(); + var6.show(false); + java.awt.Rectangle var14 = var6.getVisibleRect(); + java.awt.Rectangle var15 = var0.getBounds(var14); + javax.swing.JToolTip var16 = var0.createToolTip(); + var0.firePropertyChange("", false, false); + var0.validate(); + boolean var22 = var0.isEnabled(); + java.awt.Color var23 = var0.getBackground(); + java.lang.String var24 = var0.getName(); + // The following exception was thrown during execution. + // This behavior will recorded for regression testing. + try { + javax.swing.InputMap var26 = var0.getInputMap(400); + fail("Expected exception of type java.lang.IllegalArgumentException"); + } catch (java.lang.IllegalArgumentException e) { + // Expected exception. + } + + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var22 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var23); + + // Regression assertion (captures the current behavior of the code) + assertNull(var24); + + } + + public void test242() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test242"); + + + SpaceWar.Player var0 = new SpaceWar.Player(); + var0.increasePower(25); + int var3 = var0.getScore(); + var0.setRigth(true); + var0.loseLife(); + int var7 = var0.getPower(); + int var8 = var0.getX(); + int var9 = var0.getPower(); + int var10 = var0.getY(); + int var11 = var0.getY(); + var0.update(); + var0.loseLife(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 24); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 400); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 24); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 500); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == 500); + + } + + public void test243() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test243"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + java.awt.Dimension var4 = var0.getPreferredSize(); + boolean var5 = var0.getVerifyInputWhenFocusTarget(); + java.awt.Component var8 = var0.findComponentAt(10, 1); + boolean var9 = var0.isCursorSet(); + boolean var10 = var0.isFocusTraversalPolicyProvider(); + java.awt.peer.ComponentPeer var11 = var0.getPeer(); + var0.setFocusCycleRoot(true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var4); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var11); + + } + + public void test244() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test244"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.repaint(1L); + SpaceWar.SpacePanel var7 = new SpaceWar.SpacePanel(); + float var8 = var7.getAlignmentX(); + var7.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var13 = new SpaceWar.SpacePanel(); + float var14 = var13.getAlignmentX(); + var13.setVisible(false); + java.awt.Dimension var17 = var13.getPreferredSize(); + var7.setMaximumSize(var17); + var0.setPreferredSize(var17); + javax.swing.plaf.PanelUI var20 = var0.getUI(); + SpaceWar.SpacePanel var21 = new SpaceWar.SpacePanel(); + float var22 = var21.getAlignmentX(); + var21.setVisible(false); + var21.nextFocus(); + var21.reshape((-1), 1, (-1), 10); + var21.disable(); + java.awt.LayoutManager var32 = var21.getLayout(); + java.awt.Container var33 = var21.getParent(); + java.lang.String var34 = var21.getUIClassID(); + SpaceWar.Enemy var37 = new SpaceWar.Enemy(0, 10); + var0.add((java.awt.Component)var21, (java.lang.Object)10); + boolean var39 = var21.getInheritsPopupMenu(); + java.awt.image.BufferedImage var41 = var21.loadImg("hi!"); + boolean var43 = var21.requestFocus(false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var22 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var32); + + // Regression assertion (captures the current behavior of the code) + assertNull(var33); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var34 + "' != '" + "PanelUI"+ "'", var34.equals("PanelUI")); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var39 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var41); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var43 == false); + + } + + public void test245() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test245"); + + + SpaceWar.Player var0 = new SpaceWar.Player(); + int var1 = var0.getR(); + var0.setUp(false); + var0.increasePower(400); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 25); + + } + + public void test246() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test246"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + var0.setRequestFocusEnabled(false); + var0.setIgnoreRepaint(false); + java.lang.String var7 = var0.toString(); + boolean var9 = var0.requestFocus(false); + var0.setDebugGraphicsOptions(25); + java.awt.image.ColorModel var12 = var0.getColorModel(); + var0.setIgnoreRepaint(false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var7 + "' != '" + "SpaceWar.SpacePanel[,0,0,0var7,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"+ "'", var7.equals("SpaceWar.SpacePanel[,0,0,0var7,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]")); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var12); + + } + + public void test247() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test247"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.reshape((-1), 1, (-1), 10); + var0.disable(); + var0.show(); + SpaceWar.SpacePanel var12 = new SpaceWar.SpacePanel(); + float var13 = var12.getAlignmentX(); + var12.setVisible(false); + boolean var16 = var12.isDoubleBuffered(); + var12.list(); + SpaceWar.SpacePanel var18 = new SpaceWar.SpacePanel(); + float var19 = var18.getAlignmentX(); + var18.setVisible(false); + boolean var22 = var18.isDoubleBuffered(); + java.awt.dnd.DropTarget var23 = var18.getDropTarget(); + var18.show(false); + java.awt.Rectangle var26 = var18.getVisibleRect(); + java.awt.Rectangle var27 = var12.getBounds(var26); + javax.swing.JToolTip var28 = var12.createToolTip(); + var12.firePropertyChange("", false, false); + var12.validate(); + SpaceWar.SpacePanel var34 = new SpaceWar.SpacePanel(); + float var35 = var34.getAlignmentX(); + var34.setVisible(false); + boolean var38 = var34.isDoubleBuffered(); + java.awt.dnd.DropTarget var39 = var34.getDropTarget(); + var34.show(false); + boolean var42 = var34.isPaintingForPrint(); + SpaceWar.SpacePanel var43 = new SpaceWar.SpacePanel(); + float var44 = var43.getAlignmentX(); + var43.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var49 = var43.getMouseListeners(); + int var50 = var43.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var51 = var43.getInputMethodRequests(); + var34.addKeyListener((java.awt.event.KeyListener)var43); + var43.repaint(); + java.awt.Point var54 = var43.location(); + java.awt.Component var55 = var12.getComponentAt(var54); + java.awt.Point var56 = var0.getLocation(var54); + var0.setAlignmentY(0.5f); + boolean var59 = var0.getVerifyInputWhenFocusTarget(); + var0.invalidate(); + java.awt.dnd.DropTarget var61 = var0.getDropTarget(); + SpaceWar.SpacePanel var62 = new SpaceWar.SpacePanel(); + var62.setName(""); + java.awt.Dimension var65 = var62.minimumSize(); + boolean var66 = var62.isDoubleBuffered(); + SpaceWar.SpacePanel var67 = new SpaceWar.SpacePanel(); + float var68 = var67.getAlignmentX(); + var67.setVisible(false); + SpaceWar.SpacePanel var71 = new SpaceWar.SpacePanel(); + java.awt.Color var72 = var71.getBackground(); + var67.setForeground(var72); + SpaceWar.SpacePanel var74 = new SpaceWar.SpacePanel(); + float var75 = var74.getAlignmentX(); + var74.setVisible(false); + boolean var78 = var74.isDoubleBuffered(); + java.awt.dnd.DropTarget var79 = var74.getDropTarget(); + var74.show(false); + java.awt.Rectangle var82 = var74.getVisibleRect(); + var67.repaint(var82); + java.awt.FocusTraversalPolicy var84 = var67.getFocusTraversalPolicy(); + java.awt.im.InputMethodRequests var85 = var67.getInputMethodRequests(); + var67.layout(); + boolean var87 = var67.isFocusTraversalPolicyProvider(); + java.awt.Component var88 = var62.add((java.awt.Component)var67); + java.awt.event.KeyListener[] var89 = var67.getKeyListeners(); + var0.removeKeyListener((java.awt.event.KeyListener)var67); + var0.transferFocusUpCycle(); + java.awt.Insets var92 = var0.getInsets(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var22 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var23); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var27); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var28); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var35 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var38 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var39); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var42 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var44 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var49); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var50 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var51); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var54); + + // Regression assertion (captures the current behavior of the code) + assertNull(var55); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var56); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var59 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var61); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var65); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var66 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var68 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var72); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var75 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var78 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var79); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var82); + + // Regression assertion (captures the current behavior of the code) + assertNull(var84); + + // Regression assertion (captures the current behavior of the code) + assertNull(var85); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var87 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var88); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var89); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var92); + + } + + public void test248() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test248"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + java.awt.im.InputMethodRequests var3 = var0.getInputMethodRequests(); + int var4 = var0.countComponents(); + java.awt.event.ComponentListener[] var5 = var0.getComponentListeners(); + boolean var6 = var0.isCursorSet(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == false); + + } + + public void test249() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test249"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.setInheritsPopupMenu(false); + var0.setFocusTraversalPolicyProvider(true); + java.awt.Container var8 = var0.getFocusCycleRootAncestor(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.removeNotify(); + SpaceWar.SpacePanel var12 = new SpaceWar.SpacePanel(); + float var13 = var12.getAlignmentX(); + var12.setVisible(false); + boolean var16 = var12.isDoubleBuffered(); + var12.list(); + float var18 = var12.getAlignmentY(); + java.awt.Insets var19 = var12.getInsets(); + java.awt.Insets var20 = var9.getInsets(var19); + java.awt.Insets var21 = var0.getInsets(var20); + boolean var22 = var0.isFocusTraversalPolicyProvider(); + SpaceWar.SpacePanel var23 = new SpaceWar.SpacePanel(); + float var24 = var23.getAlignmentX(); + var23.setVisible(false); + var23.nextFocus(); + var23.updateUI(); + java.util.Locale var29 = var23.getLocale(); + SpaceWar.SpacePanel var30 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var31 = new SpaceWar.SpacePanel(); + java.awt.Color var32 = var31.getBackground(); + SpaceWar.SpacePanel var33 = new SpaceWar.SpacePanel(); + float var34 = var33.getAlignmentX(); + var33.setVisible(false); + var33.nextFocus(); + var33.updateUI(); + var33.enableInputMethods(true); + var30.add((java.awt.Component)var31, (java.lang.Object)true); + boolean var42 = var30.isMinimumSizeSet(); + java.awt.event.HierarchyListener[] var43 = var30.getHierarchyListeners(); + int var44 = var30.getComponentCount(); + SpaceWar.SpacePanel var45 = new SpaceWar.SpacePanel(); + java.awt.Color var46 = var45.getBackground(); + var45.repaint(); + var45.setRequestFocusEnabled(false); + var45.removeAll(); + var30.setNextFocusableComponent((java.awt.Component)var45); + java.awt.event.KeyListener[] var52 = var45.getKeyListeners(); + javax.swing.event.AncestorListener[] var53 = var45.getAncestorListeners(); + var0.add((java.awt.Component)var23, (java.lang.Object)var45); + boolean var57 = var23.inside(399, (-1)); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var21); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var22 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var24 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var29); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var32); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var34 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var42 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var43); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var44 == 1); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var46); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var52); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var53); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var57 == false); + + } + + public void test250() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test250"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + boolean var2 = var0.hasFocus(); + boolean var3 = var0.isPreferredSizeSet(); + SpaceWar.SpacePanel var4 = new SpaceWar.SpacePanel(); + java.awt.Color var5 = var4.getBackground(); + var4.repaint(); + var4.setRequestFocusEnabled(false); + int var9 = var0.getComponentZOrder((java.awt.Component)var4); + java.awt.Dimension var10 = var4.getPreferredSize(); + boolean var11 = var4.isShowing(); + var4.repaint(2, 399, (-1), 25); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var2 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == (-1)); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == false); + + } + + public void test251() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test251"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + float var7 = var6.getAlignmentX(); + var6.setVisible(false); + java.awt.Dimension var10 = var6.getPreferredSize(); + var0.setMaximumSize(var10); + boolean var12 = var0.getVerifyInputWhenFocusTarget(); + javax.accessibility.AccessibleContext var13 = var0.getAccessibleContext(); + boolean var14 = var0.isDoubleBuffered(); + boolean var15 = var0.getAutoscrolls(); + var0.setAlignmentX(1.0f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == false); + + } + + public void test252() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test252"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + SpaceWar.SpacePanel var4 = new SpaceWar.SpacePanel(); + java.awt.Color var5 = var4.getBackground(); + var0.setForeground(var5); + SpaceWar.SpacePanel var7 = new SpaceWar.SpacePanel(); + float var8 = var7.getAlignmentX(); + var7.setVisible(false); + boolean var11 = var7.isDoubleBuffered(); + java.awt.dnd.DropTarget var12 = var7.getDropTarget(); + var7.show(false); + java.awt.Rectangle var15 = var7.getVisibleRect(); + var0.repaint(var15); + java.awt.FocusTraversalPolicy var17 = var0.getFocusTraversalPolicy(); + java.awt.im.InputMethodRequests var18 = var0.getInputMethodRequests(); + javax.accessibility.AccessibleContext var19 = var0.getAccessibleContext(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var19); + + } + + public void test253() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test253"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + boolean var2 = var0.hasFocus(); + boolean var3 = var0.isPreferredSizeSet(); + var0.firePropertyChange("", (short)1, (short)0); + boolean var8 = var0.isMaximumSizeSet(); + java.lang.String var9 = var0.toString(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var2 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var9 + "' != '" + "SpaceWar.SpacePanel[,0,0,0var9,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"+ "'", var9.equals("SpaceWar.SpacePanel[,0,0,0var9,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]")); + + } + + public void test254() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test254"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var6 = var0.getUI(); + java.awt.im.InputMethodRequests var7 = var0.getInputMethodRequests(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + var8.nextFocus(); + var8.updateUI(); + var8.enableInputMethods(true); + var8.setSize((-1), 1); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + var19.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var0.add((java.awt.Component)var8, (java.lang.Object)"SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + java.awt.event.KeyListener[] var25 = var0.getKeyListeners(); + java.awt.Component var28 = var0.getComponentAt(0, 100); + javax.swing.TransferHandler var29 = var0.getTransferHandler(); + SpaceWar.SpacePanel var30 = new SpaceWar.SpacePanel(); + float var31 = var30.getAlignmentX(); + var30.setVisible(false); + boolean var34 = var30.isDoubleBuffered(); + java.awt.dnd.DropTarget var35 = var30.getDropTarget(); + boolean var36 = var30.isFocusCycleRoot(); + var30.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", 100, 0); + SpaceWar.SpacePanel var41 = new SpaceWar.SpacePanel(); + float var42 = var41.getAlignmentX(); + var41.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var47 = var41.getUI(); + var30.add((java.awt.Component)var41, (java.lang.Object)(short)0); + java.awt.Insets var50 = var41.getInsets(); + SpaceWar.SpacePanel var51 = new SpaceWar.SpacePanel(); + float var52 = var51.getAlignmentX(); + var51.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var57 = var51.getMouseListeners(); + java.awt.Dimension var58 = var51.getPreferredSize(); + java.util.Locale var59 = var51.getLocale(); + var51.setFocusable(true); + SpaceWar.SpacePanel var62 = new SpaceWar.SpacePanel(); + java.awt.Color var63 = var62.getBackground(); + var62.repaint(); + var62.setRequestFocusEnabled(false); + var62.setIgnoreRepaint(false); + java.lang.String var69 = var62.toString(); + java.awt.Color var70 = var62.getBackground(); + var41.putClientProperty((java.lang.Object)var51, (java.lang.Object)var62); + java.awt.Rectangle var72 = var41.getVisibleRect(); + var0.repaint(var72); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var25); + + // Regression assertion (captures the current behavior of the code) + assertNull(var28); + + // Regression assertion (captures the current behavior of the code) + assertNull(var29); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var31 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var34 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var35); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var36 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var42 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var47); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var50); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var52 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var57); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var58); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var59); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var63); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var69 + "' != '" + "SpaceWar.SpacePanel[,0,0,0var69,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"+ "'", var69.equals("SpaceWar.SpacePanel[,0,0,0var69,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]")); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var70); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var72); + + } + + public void test255() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test255"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + var0.enable(false); + boolean var7 = var0.getFocusTraversalKeysEnabled(); + javax.swing.JRootPane var8 = var0.getRootPane(); + java.awt.event.KeyListener[] var9 = var0.getKeyListeners(); + SpaceWar.SpacePanel var10 = new SpaceWar.SpacePanel(); + float var11 = var10.getAlignmentX(); + var10.setVisible(false); + boolean var14 = var10.isDoubleBuffered(); + var10.list(); + SpaceWar.SpacePanel var16 = new SpaceWar.SpacePanel(); + float var17 = var16.getAlignmentX(); + var16.setVisible(false); + boolean var20 = var16.isDoubleBuffered(); + java.awt.dnd.DropTarget var21 = var16.getDropTarget(); + var16.show(false); + java.awt.Rectangle var24 = var16.getVisibleRect(); + java.awt.image.BufferedImage var26 = var16.loadImg("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + boolean var27 = var10.isAncestorOf((java.awt.Component)var16); + SpaceWar.SpacePanel var28 = new SpaceWar.SpacePanel(); + java.awt.Color var29 = var28.getBackground(); + var28.repaint(); + var28.setRequestFocusEnabled(false); + var28.setIgnoreRepaint(false); + java.lang.String var35 = var28.toString(); + java.awt.Color var36 = var28.getBackground(); + SpaceWar.SpacePanel var37 = new SpaceWar.SpacePanel(); + float var38 = var37.getAlignmentX(); + var37.setVisible(false); + java.awt.Dimension var41 = var37.getPreferredSize(); + java.awt.Toolkit var42 = var37.getToolkit(); + java.awt.Toolkit var43 = var37.getToolkit(); + SpaceWar.Player var44 = new SpaceWar.Player(); + var44.increasePower(25); + int var47 = var44.getScore(); + var44.setRigth(true); + var44.loseLife(); + var28.putClientProperty((java.lang.Object)var37, (java.lang.Object)var44); + java.awt.Rectangle var52 = var37.bounds(); + java.awt.Rectangle var53 = var16.getBounds(var52); + java.awt.Rectangle var54 = var0.getBounds(var52); + var0.setFocusTraversalKeysEnabled(true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var9); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var21); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var29); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var35 + "' != '" + "SpaceWar.SpacePanel[,0,0,0var35,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"+ "'", var35.equals("SpaceWar.SpacePanel[,0,0,0var35,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]")); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var36); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var38 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var41); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var42); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var43); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var47 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var52); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var53); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var54); + + } + + public void test256() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test256"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.reshape((-1), 1, (-1), 10); + var0.disable(); + java.awt.LayoutManager var11 = var0.getLayout(); + boolean var14 = var0.contains((-1), 0); + SpaceWar.SpacePanel var15 = new SpaceWar.SpacePanel(); + float var16 = var15.getAlignmentX(); + var15.setVisible(false); + var15.nextFocus(); + var15.updateUI(); + var15.enableInputMethods(true); + var15.setSize((-1), 1); + java.awt.Component var26 = var0.add((java.awt.Component)var15); + java.awt.Container var27 = var15.getFocusCycleRootAncestor(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertNull(var27); + + } + + public void test257() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test257"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + var0.show(false); + boolean var8 = var0.isPaintingForPrint(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var15 = var9.getMouseListeners(); + int var16 = var9.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var17 = var9.getInputMethodRequests(); + var0.addKeyListener((java.awt.event.KeyListener)var9); + boolean var19 = var9.isShowing(); + boolean var20 = var9.requestFocusInWindow(); + boolean var21 = var9.isValid(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == false); + + } + + public void test258() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test258"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var1 = new SpaceWar.SpacePanel(); + java.awt.Color var2 = var1.getBackground(); + SpaceWar.SpacePanel var3 = new SpaceWar.SpacePanel(); + float var4 = var3.getAlignmentX(); + var3.setVisible(false); + var3.nextFocus(); + var3.updateUI(); + var3.enableInputMethods(true); + var0.add((java.awt.Component)var1, (java.lang.Object)true); + java.awt.Image var14 = var1.createImage(1, (-1)); + java.awt.event.MouseListener[] var15 = var1.getMouseListeners(); + var1.firePropertyChange("PanelUI", 499, 2); + javax.swing.JPopupMenu var20 = var1.getComponentPopupMenu(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var2); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNull(var20); + + } + + public void test259() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test259"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + boolean var2 = var0.hasFocus(); + boolean var3 = var0.isPreferredSizeSet(); + var0.firePropertyChange("", (short)1, (short)0); + boolean var8 = var0.isMaximumSizeSet(); + java.awt.image.ColorModel var9 = var0.getColorModel(); + var0.enableInputMethods(true); + boolean var12 = var0.isPaintingForPrint(); + boolean var13 = var0.isValidateRoot(); + boolean var14 = var0.isOptimizedDrawingEnabled(); + java.awt.Point var15 = var0.location(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var2 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var9); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + } + + public void test260() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test260"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + boolean var4 = var0.inside(0, (-1)); + SpaceWar.SpacePanel var5 = new SpaceWar.SpacePanel(); + float var6 = var5.getAlignmentX(); + var5.setVisible(false); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + java.awt.Color var10 = var9.getBackground(); + var5.setForeground(var10); + var0.setForeground(var10); + boolean var15 = var0.inside(25, 400); + var0.setDoubleBuffered(false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == false); + + } + + public void test261() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test261"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.updateUI(); + var0.enableInputMethods(true); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + boolean var10 = var8.hasFocus(); + java.awt.Insets var11 = var8.getInsets(); + java.awt.Insets var12 = var0.getInsets(var11); + boolean var13 = var0.isManagingFocus(); + java.awt.Image var16 = var0.createImage(1, 10); + SpaceWar.SpacePanel var17 = new SpaceWar.SpacePanel(); + float var18 = var17.getAlignmentX(); + var17.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var23 = new SpaceWar.SpacePanel(); + float var24 = var23.getAlignmentX(); + var23.setVisible(false); + java.awt.Dimension var27 = var23.getPreferredSize(); + var17.setMaximumSize(var27); + boolean var29 = var17.getVerifyInputWhenFocusTarget(); + int var30 = var17.getX(); + SpaceWar.SpacePanel var31 = new SpaceWar.SpacePanel(); + float var32 = var31.getAlignmentX(); + var31.setVisible(false); + var31.setEnabled(false); + var0.add((java.awt.Component)var17, (java.lang.Object)false); + boolean var38 = var17.isFocusOwner(); + boolean var39 = var17.isPreferredSizeSet(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var24 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var27); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var29 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var30 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var32 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var38 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var39 == true); + + } + + public void test262() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test262"); + + + SpaceWar.Bullet var3 = new SpaceWar.Bullet(594.7973940347722d, 3, 100); + boolean var4 = var3.update(); + boolean var5 = var3.update(); + double var6 = var3.getY(); + boolean var7 = var3.update(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == 83.657626403857d); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == true); + + } + + public void test263() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test263"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + boolean var4 = var0.inside(0, (-1)); + SpaceWar.SpacePanel var5 = new SpaceWar.SpacePanel(); + float var6 = var5.getAlignmentX(); + var5.setVisible(false); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + java.awt.Color var10 = var9.getBackground(); + var5.setForeground(var10); + var0.setForeground(var10); + var0.setAutoscrolls(false); + SpaceWar.SpacePanel var15 = new SpaceWar.SpacePanel(); + float var16 = var15.getAlignmentX(); + var15.setVisible(false); + boolean var19 = var15.isDoubleBuffered(); + java.awt.dnd.DropTarget var20 = var15.getDropTarget(); + var15.show(false); + boolean var23 = var15.isPaintingForPrint(); + SpaceWar.SpacePanel var24 = new SpaceWar.SpacePanel(); + float var25 = var24.getAlignmentX(); + var24.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var30 = var24.getMouseListeners(); + int var31 = var24.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var32 = var24.getInputMethodRequests(); + var15.addKeyListener((java.awt.event.KeyListener)var24); + SpaceWar.SpacePanel var34 = new SpaceWar.SpacePanel(); + float var35 = var34.getAlignmentX(); + var34.setVisible(false); + boolean var38 = var34.isDoubleBuffered(); + var34.list(); + float var40 = var34.getAlignmentY(); + boolean var41 = var24.isFocusCycleRoot((java.awt.Container)var34); + var34.firePropertyChange("", 1L, 1L); + var34.setVerifyInputWhenFocusTarget(true); + SpaceWar.SpacePanel var48 = new SpaceWar.SpacePanel(); + var48.setName(""); + java.awt.Dimension var51 = var48.minimumSize(); + boolean var52 = var48.isDoubleBuffered(); + SpaceWar.SpacePanel var53 = new SpaceWar.SpacePanel(); + float var54 = var53.getAlignmentX(); + SpaceWar.SpacePanel var55 = new SpaceWar.SpacePanel(); + float var56 = var55.getAlignmentX(); + var55.setVisible(false); + java.awt.Dimension var59 = var55.getPreferredSize(); + boolean var60 = var55.getVerifyInputWhenFocusTarget(); + java.awt.Component var63 = var55.findComponentAt(10, 1); + var53.addKeyListener((java.awt.event.KeyListener)var55); + var55.repaint(100, (-1), (-1), 1); + SpaceWar.SpacePanel var70 = new SpaceWar.SpacePanel(); + java.awt.Color var71 = var70.getBackground(); + var70.repaint(); + java.awt.im.InputMethodRequests var73 = var70.getInputMethodRequests(); + java.awt.GraphicsConfiguration var74 = var70.getGraphicsConfiguration(); + var55.remove((java.awt.Component)var70); + java.awt.Font var76 = var70.getFont(); + java.awt.FontMetrics var77 = var48.getFontMetrics(var76); + java.awt.FontMetrics var78 = var34.getFontMetrics(var76); + var0.setFont(var76); + var0.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", (short)(-1), (short)10); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var30); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var31 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var32); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var35 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var38 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var40 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var41 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var51); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var52 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var54 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var56 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var59); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var60 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var63); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var71); + + // Regression assertion (captures the current behavior of the code) + assertNull(var73); + + // Regression assertion (captures the current behavior of the code) + assertNull(var74); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var76); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var77); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var78); + + } + + public void test264() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test264"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + var0.setRequestFocusEnabled(false); + var0.setIgnoreRepaint(false); + java.lang.String var7 = var0.toString(); + java.awt.Color var8 = var0.getBackground(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.setVisible(false); + java.awt.Dimension var13 = var9.getPreferredSize(); + java.awt.Toolkit var14 = var9.getToolkit(); + java.awt.Toolkit var15 = var9.getToolkit(); + SpaceWar.Player var16 = new SpaceWar.Player(); + var16.increasePower(25); + int var19 = var16.getScore(); + var16.setRigth(true); + var16.loseLife(); + var0.putClientProperty((java.lang.Object)var9, (java.lang.Object)var16); + boolean var24 = var16.isRecovering(); + boolean var25 = var16.isDead(); + var16.setUp(false); + boolean var28 = var16.isRecovering(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var7 + "' != '" + "SpaceWar.SpacePanel[,0,0,0var7,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"+ "'", var7.equals("SpaceWar.SpacePanel[,0,0,0var7,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]")); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var24 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var28 == true); + + } + + public void test265() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test265"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + java.awt.im.InputMethodRequests var3 = var0.getInputMethodRequests(); + var0.setDoubleBuffered(true); + var0.setInheritsPopupMenu(false); + boolean var8 = var0.isFocusTraversalPolicySet(); + var0.transferFocusUpCycle(); + SpaceWar.SpacePanel var10 = new SpaceWar.SpacePanel(); + float var11 = var10.getAlignmentX(); + var10.setVisible(false); + boolean var14 = var10.isDoubleBuffered(); + java.awt.dnd.DropTarget var15 = var10.getDropTarget(); + var10.show(false); + java.awt.Rectangle var18 = var10.getVisibleRect(); + java.awt.image.BufferedImage var20 = var10.loadImg("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + java.awt.ComponentOrientation var21 = var10.getComponentOrientation(); + java.awt.Component var22 = var0.add((java.awt.Component)var10); + java.awt.event.InputMethodListener[] var23 = var0.getInputMethodListeners(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var21); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var23); + + } + + public void test266() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test266"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + var0.show(false); + boolean var8 = var0.isPaintingForPrint(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var15 = var9.getMouseListeners(); + int var16 = var9.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var17 = var9.getInputMethodRequests(); + var0.addKeyListener((java.awt.event.KeyListener)var9); + java.awt.Container var19 = var9.getFocusCycleRootAncestor(); + boolean var20 = var9.hasFocus(); + SpaceWar.SpacePanel var21 = new SpaceWar.SpacePanel(); + float var22 = var21.getAlignmentX(); + var21.setVisible(false); + var21.setInheritsPopupMenu(false); + boolean var27 = var21.isDoubleBuffered(); + boolean var28 = var21.isMinimumSizeSet(); + SpaceWar.SpacePanel var29 = new SpaceWar.SpacePanel(); + float var30 = var29.getAlignmentX(); + var29.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var35 = new SpaceWar.SpacePanel(); + float var36 = var35.getAlignmentX(); + var35.setVisible(false); + java.awt.Dimension var39 = var35.getPreferredSize(); + var29.setMaximumSize(var39); + boolean var41 = var29.getVerifyInputWhenFocusTarget(); + javax.accessibility.AccessibleContext var42 = var29.getAccessibleContext(); + boolean var43 = var29.isDoubleBuffered(); + java.awt.Rectangle var44 = var29.getVisibleRect(); + var21.setBounds(var44); + java.lang.Object var46 = var9.getClientProperty((java.lang.Object)var21); + java.awt.Insets var47 = var9.insets(); + SpaceWar.SpacePanel var48 = new SpaceWar.SpacePanel(); + float var49 = var48.getAlignmentX(); + var48.setVisible(false); + var48.setInheritsPopupMenu(false); + boolean var54 = var48.isMinimumSizeSet(); + java.awt.Point var56 = var48.getMousePosition(true); + boolean var57 = var9.isFocusCycleRoot((java.awt.Container)var48); + var48.repaint(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var22 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var28 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var30 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var36 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var39); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var41 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var42); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var43 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var44); + + // Regression assertion (captures the current behavior of the code) + assertNull(var46); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var47); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var49 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var54 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var56); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var57 == false); + + } + + public void test267() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test267"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.setDoubleBuffered(true); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + float var7 = var6.getAlignmentX(); + var6.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var12 = var6.getMouseListeners(); + java.awt.Dimension var13 = var6.getPreferredSize(); + java.util.Locale var14 = var6.getLocale(); + var6.setFocusable(true); + var6.setSize(3, 10); + SpaceWar.SpacePanel var20 = new SpaceWar.SpacePanel(); + float var21 = var20.getAlignmentX(); + var20.setVisible(false); + java.awt.Dimension var24 = var20.getPreferredSize(); + boolean var25 = var20.getVerifyInputWhenFocusTarget(); + java.awt.Dimension var26 = var20.size(); + var6.setSize(var26); + var0.setSize(var26); + java.awt.event.HierarchyListener[] var29 = var0.getHierarchyListeners(); + SpaceWar.SpacePanel var30 = new SpaceWar.SpacePanel(); + java.awt.Color var31 = var30.getBackground(); + var30.repaint(); + java.awt.im.InputMethodRequests var33 = var30.getInputMethodRequests(); + int var34 = var30.countComponents(); + java.awt.event.ComponentListener[] var35 = var30.getComponentListeners(); + var30.removeNotify(); + java.awt.Component var39 = var30.getComponentAt(1, (-1)); + SpaceWar.SpacePanel var40 = new SpaceWar.SpacePanel(); + float var41 = var40.getAlignmentX(); + var40.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var46 = new SpaceWar.SpacePanel(); + float var47 = var46.getAlignmentX(); + var46.setVisible(false); + java.awt.Dimension var50 = var46.getPreferredSize(); + var40.setMaximumSize(var50); + boolean var52 = var40.getVerifyInputWhenFocusTarget(); + javax.accessibility.AccessibleContext var53 = var40.getAccessibleContext(); + boolean var54 = var40.isDoubleBuffered(); + java.awt.Rectangle var55 = var40.getVisibleRect(); + var30.setBounds(var55); + var0.paintImmediately(var55); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var29); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var31); + + // Regression assertion (captures the current behavior of the code) + assertNull(var33); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var34 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var35); + + // Regression assertion (captures the current behavior of the code) + assertNull(var39); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var41 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var47 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var50); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var52 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var53); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var54 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var55); + + } + + public void test268() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test268"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + var0.list(); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + float var7 = var6.getAlignmentX(); + var6.setVisible(false); + boolean var10 = var6.isDoubleBuffered(); + java.awt.dnd.DropTarget var11 = var6.getDropTarget(); + var6.show(false); + java.awt.Rectangle var14 = var6.getVisibleRect(); + java.awt.Rectangle var15 = var0.getBounds(var14); + javax.swing.JToolTip var16 = var0.createToolTip(); + var0.firePropertyChange("", false, false); + var0.revalidate(); + SpaceWar.SpacePanel var22 = new SpaceWar.SpacePanel(); + java.awt.Color var23 = var22.getBackground(); + var22.repaint(); + var22.setRequestFocusEnabled(false); + var22.reshape(100, 0, 100, 0); + var22.requestFocus(); + var22.firePropertyChange("hi!", '4', ' '); + java.awt.Point var37 = var22.getLocation(); + java.awt.Dimension var38 = var22.size(); + java.awt.Image var41 = var22.createImage((-1), (-1)); + SpaceWar.SpacePanel var42 = new SpaceWar.SpacePanel(); + float var43 = var42.getAlignmentX(); + var42.setVisible(false); + boolean var46 = var42.isDoubleBuffered(); + java.awt.dnd.DropTarget var47 = var42.getDropTarget(); + var42.show(false); + boolean var50 = var42.isPaintingForPrint(); + SpaceWar.SpacePanel var51 = new SpaceWar.SpacePanel(); + float var52 = var51.getAlignmentX(); + var51.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var57 = var51.getMouseListeners(); + int var58 = var51.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var59 = var51.getInputMethodRequests(); + var42.addKeyListener((java.awt.event.KeyListener)var51); + var51.repaint(); + java.awt.Point var62 = var51.location(); + java.awt.Component var63 = var22.findComponentAt(var62); + var0.setLocation(var62); + var0.repaint(24, 3, 499, 0); + boolean var70 = var0.isCursorSet(); + var0.reshape(3, 24, 3, 100); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var23); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var37); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var38); + + // Regression assertion (captures the current behavior of the code) + assertNull(var41); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var43 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var46 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var47); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var50 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var52 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var57); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var58 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var59); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var62); + + // Regression assertion (captures the current behavior of the code) + assertNull(var63); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var70 == false); + + } + + public void test269() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test269"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var6 = var0.getMouseListeners(); + java.awt.Dimension var7 = var0.getPreferredSize(); + java.util.Locale var8 = var0.getLocale(); + var0.setFocusable(true); + var0.setSize(3, 10); + java.awt.GraphicsConfiguration var14 = var0.getGraphicsConfiguration(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertNull(var14); + + } + + public void test270() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test270"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + var0.list(); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + float var7 = var6.getAlignmentX(); + var6.setVisible(false); + boolean var10 = var6.isDoubleBuffered(); + java.awt.dnd.DropTarget var11 = var6.getDropTarget(); + var6.show(false); + java.awt.Rectangle var14 = var6.getVisibleRect(); + java.awt.Rectangle var15 = var0.getBounds(var14); + javax.swing.JToolTip var16 = var0.createToolTip(); + var0.firePropertyChange("", false, false); + var0.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", (-1L), (-1L)); + boolean var25 = var0.isManagingFocus(); + java.lang.Object var26 = var0.getTreeLock(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var26); + + } + + public void test271() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test271"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.repaint(1L); + SpaceWar.SpacePanel var7 = new SpaceWar.SpacePanel(); + float var8 = var7.getAlignmentX(); + var7.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var13 = new SpaceWar.SpacePanel(); + float var14 = var13.getAlignmentX(); + var13.setVisible(false); + java.awt.Dimension var17 = var13.getPreferredSize(); + var7.setMaximumSize(var17); + var0.setPreferredSize(var17); + javax.swing.plaf.PanelUI var20 = var0.getUI(); + var0.setAutoscrolls(false); + boolean var23 = var0.isFocusable(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == true); + + } + + public void test272() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test272"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.setInheritsPopupMenu(false); + var0.move(10, 10); + var0.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + java.awt.event.KeyListener[] var13 = var0.getKeyListeners(); + var0.firePropertyChange("", 100L, 10L); + java.awt.image.ColorModel var18 = var0.getColorModel(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var18); + + } + + public void test273() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test273"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var6 = var0.getMouseListeners(); + int var7 = var0.getDebugGraphicsOptions(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + boolean var12 = var8.isDoubleBuffered(); + java.awt.dnd.DropTarget var13 = var8.getDropTarget(); + var8.show(false); + java.awt.Rectangle var16 = var8.getVisibleRect(); + var0.paintImmediately(var16); + boolean var18 = var0.isFocusCycleRoot(); + boolean var19 = var0.getIgnoreRepaint(); + java.beans.PropertyChangeListener[] var20 = var0.getPropertyChangeListeners(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + } + + public void test274() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test274"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + boolean var2 = var0.hasFocus(); + SpaceWar.SpacePanel var3 = new SpaceWar.SpacePanel(); + float var4 = var3.getAlignmentX(); + var3.setVisible(false); + var3.nextFocus(); + var3.reshape((-1), 1, (-1), 10); + var3.disable(); + java.awt.LayoutManager var14 = var3.getLayout(); + var3.setVisible(false); + var0.remove((java.awt.Component)var3); + var3.repaint(); + boolean var19 = var3.hasFocus(); + javax.swing.plaf.PanelUI var20 = var3.getUI(); + javax.swing.KeyStroke[] var21 = var3.getRegisteredKeyStrokes(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var2 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var21); + + } + + public void test275() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test275"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + var0.setName(""); + java.awt.ComponentOrientation var3 = var0.getComponentOrientation(); + java.awt.event.HierarchyListener[] var4 = var0.getHierarchyListeners(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var4); + + } + + public void test276() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test276"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.repaint(1L); + var0.firePropertyChange("", (short)(-1), (short)(-1)); + var0.setBounds(400, 1, (-1), 10); + javax.swing.TransferHandler var16 = var0.getTransferHandler(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNull(var16); + + } + + public void test277() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test277"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + var0.show(false); + boolean var8 = var0.isPaintingForPrint(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var15 = var9.getMouseListeners(); + int var16 = var9.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var17 = var9.getInputMethodRequests(); + var0.addKeyListener((java.awt.event.KeyListener)var9); + boolean var19 = var0.isDisplayable(); + java.awt.event.MouseListener[] var20 = var0.getMouseListeners(); + var0.setFocusTraversalPolicyProvider(false); + boolean var23 = var0.isShowing(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == false); + + } + + public void test278() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test278"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + var0.show(false); + java.awt.Rectangle var8 = var0.getVisibleRect(); + java.awt.Toolkit var9 = var0.getToolkit(); + SpaceWar.SpacePanel var10 = new SpaceWar.SpacePanel(); + float var11 = var10.getAlignmentX(); + var10.setVisible(false); + boolean var14 = var10.isDoubleBuffered(); + var10.list(); + SpaceWar.SpacePanel var16 = new SpaceWar.SpacePanel(); + float var17 = var16.getAlignmentX(); + var16.setVisible(false); + boolean var20 = var16.isDoubleBuffered(); + java.awt.dnd.DropTarget var21 = var16.getDropTarget(); + var16.show(false); + java.awt.Rectangle var24 = var16.getVisibleRect(); + java.awt.Rectangle var25 = var10.getBounds(var24); + javax.swing.JToolTip var26 = var10.createToolTip(); + var10.firePropertyChange("", false, false); + var10.validate(); + SpaceWar.SpacePanel var32 = new SpaceWar.SpacePanel(); + float var33 = var32.getAlignmentX(); + var32.setVisible(false); + var32.nextFocus(); + var32.updateUI(); + var32.enableInputMethods(true); + java.lang.String var40 = var32.toString(); + var0.putClientProperty((java.lang.Object)var10, (java.lang.Object)var32); + var0.invalidate(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var9); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var21); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var25); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var33 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var40 + "' != '" + "SpaceWar.SpacePanel[,0,0,0var40,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"+ "'", var40.equals("SpaceWar.SpacePanel[,0,0,0var40,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]")); + + } + + public void test279() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test279"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + boolean var2 = var0.hasFocus(); + java.beans.VetoableChangeListener[] var3 = var0.getVetoableChangeListeners(); + var0.paintImmediately(10, 0, (-1), 25); + boolean var9 = var0.getInheritsPopupMenu(); + var0.resize(500, 10); + SpaceWar.SpacePanel var13 = new SpaceWar.SpacePanel(); + float var14 = var13.getAlignmentX(); + var13.setVisible(false); + boolean var17 = var13.isDoubleBuffered(); + SpaceWar.SpacePanel var18 = new SpaceWar.SpacePanel(); + float var19 = var18.getAlignmentX(); + var18.setVisible(false); + var18.nextFocus(); + var18.reshape((-1), 1, (-1), 10); + var18.disable(); + boolean var29 = var18.isFocusable(); + int var30 = var18.getHeight(); + var13.setNextFocusableComponent((java.awt.Component)var18); + SpaceWar.SpacePanel var32 = new SpaceWar.SpacePanel(); + float var33 = var32.getAlignmentX(); + var32.setVisible(false); + var32.nextFocus(); + SpaceWar.SpacePanel var37 = new SpaceWar.SpacePanel(); + float var38 = var37.getAlignmentX(); + var37.setVisible(false); + SpaceWar.SpacePanel var41 = new SpaceWar.SpacePanel(); + java.awt.Color var42 = var41.getBackground(); + var37.setForeground(var42); + var32.setBackground(var42); + java.awt.Component var45 = var32.getNextFocusableComponent(); + float var46 = var32.getAlignmentY(); + java.awt.event.MouseListener[] var47 = var32.getMouseListeners(); + java.awt.Point var48 = var32.location(); + java.awt.Point var49 = var13.getLocation(var48); + var0.setLocation(var49); + var0.setSize(2, 3); + SpaceWar.Player var54 = new SpaceWar.Player(); + boolean var55 = var54.isRecovering(); + var54.setRigth(false); + int var58 = var54.getPower(); + boolean var59 = var54.isDead(); + SpaceWar.SpacePanel var60 = new SpaceWar.SpacePanel(); + java.awt.Color var61 = var60.getBackground(); + var60.repaint(); + java.awt.im.InputMethodRequests var63 = var60.getInputMethodRequests(); + var60.setDoubleBuffered(true); + var60.setInheritsPopupMenu(false); + boolean var68 = var60.isFocusTraversalPolicySet(); + var0.putClientProperty((java.lang.Object)var54, (java.lang.Object)var68); + var54.setDown(false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var2 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var29 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var30 == 10); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var33 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var38 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var42); + + // Regression assertion (captures the current behavior of the code) + assertNull(var45); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var46 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var47); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var48); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var49); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var55 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var58 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var59 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var61); + + // Regression assertion (captures the current behavior of the code) + assertNull(var63); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var68 == false); + + } + + public void test280() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test280"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + var0.setName(""); + java.awt.Dimension var3 = var0.minimumSize(); + boolean var4 = var0.isDoubleBuffered(); + SpaceWar.SpacePanel var5 = new SpaceWar.SpacePanel(); + float var6 = var5.getAlignmentX(); + var5.setVisible(false); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + java.awt.Color var10 = var9.getBackground(); + var5.setForeground(var10); + SpaceWar.SpacePanel var12 = new SpaceWar.SpacePanel(); + float var13 = var12.getAlignmentX(); + var12.setVisible(false); + boolean var16 = var12.isDoubleBuffered(); + java.awt.dnd.DropTarget var17 = var12.getDropTarget(); + var12.show(false); + java.awt.Rectangle var20 = var12.getVisibleRect(); + var5.repaint(var20); + java.awt.FocusTraversalPolicy var22 = var5.getFocusTraversalPolicy(); + java.awt.im.InputMethodRequests var23 = var5.getInputMethodRequests(); + var5.layout(); + boolean var25 = var5.isFocusTraversalPolicyProvider(); + java.awt.Component var26 = var0.add((java.awt.Component)var5); + javax.swing.border.Border var27 = var5.getBorder(); + java.awt.Point var28 = var5.getLocation(); + // The following exception was thrown during execution. + // This behavior will recorded for regression testing. + try { + java.awt.Point var29 = var5.getLocationOnScreen(); + fail("Expected exception of type java.awt.IllegalComponentStateException"); + } catch (java.awt.IllegalComponentStateException e) { + // Expected exception. + } + + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertNull(var23); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertNull(var27); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var28); + + } + + public void test281() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test281"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + java.awt.Dimension var4 = var0.getPreferredSize(); + java.awt.Toolkit var5 = var0.getToolkit(); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + var6.setName(""); + int var9 = var6.getX(); + SpaceWar.SpacePanel var10 = new SpaceWar.SpacePanel(); + float var11 = var10.getAlignmentX(); + var10.setVisible(false); + var10.nextFocus(); + SpaceWar.SpacePanel var15 = new SpaceWar.SpacePanel(); + float var16 = var15.getAlignmentX(); + var15.setVisible(false); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + java.awt.Color var20 = var19.getBackground(); + var15.setForeground(var20); + var10.setBackground(var20); + var6.setBackground(var20); + var0.setForeground(var20); + SpaceWar.SpacePanel var25 = new SpaceWar.SpacePanel(); + float var26 = var25.getAlignmentX(); + var25.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var31 = new SpaceWar.SpacePanel(); + float var32 = var31.getAlignmentX(); + var31.setVisible(false); + java.awt.Dimension var35 = var31.getPreferredSize(); + var25.setMaximumSize(var35); + boolean var37 = var25.getVerifyInputWhenFocusTarget(); + javax.accessibility.AccessibleContext var38 = var25.getAccessibleContext(); + boolean var39 = var25.isDoubleBuffered(); + java.awt.Rectangle var40 = var25.getVisibleRect(); + var0.scrollRectToVisible(var40); + SpaceWar.SpacePanel var42 = new SpaceWar.SpacePanel(); + float var43 = var42.getAlignmentX(); + var42.setVisible(false); + java.awt.Dimension var46 = var42.getPreferredSize(); + java.awt.Toolkit var47 = var42.getToolkit(); + SpaceWar.SpacePanel var48 = new SpaceWar.SpacePanel(); + var48.setName(""); + int var51 = var48.getX(); + SpaceWar.SpacePanel var52 = new SpaceWar.SpacePanel(); + float var53 = var52.getAlignmentX(); + var52.setVisible(false); + var52.nextFocus(); + SpaceWar.SpacePanel var57 = new SpaceWar.SpacePanel(); + float var58 = var57.getAlignmentX(); + var57.setVisible(false); + SpaceWar.SpacePanel var61 = new SpaceWar.SpacePanel(); + java.awt.Color var62 = var61.getBackground(); + var57.setForeground(var62); + var52.setBackground(var62); + var48.setBackground(var62); + var42.setForeground(var62); + SpaceWar.SpacePanel var67 = new SpaceWar.SpacePanel(); + float var68 = var67.getAlignmentX(); + var67.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var73 = new SpaceWar.SpacePanel(); + float var74 = var73.getAlignmentX(); + var73.setVisible(false); + java.awt.Dimension var77 = var73.getPreferredSize(); + var67.setMaximumSize(var77); + boolean var79 = var67.getVerifyInputWhenFocusTarget(); + javax.accessibility.AccessibleContext var80 = var67.getAccessibleContext(); + boolean var81 = var67.isDoubleBuffered(); + java.awt.Rectangle var82 = var67.getVisibleRect(); + var42.scrollRectToVisible(var82); + var0.removeKeyListener((java.awt.event.KeyListener)var42); + var42.firePropertyChange("PanelUI", (short)1, (short)1); + boolean var89 = var42.requestDefaultFocus(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var4); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var32 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var35); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var38); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var39 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var40); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var43 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var46); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var47); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var51 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var53 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var58 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var62); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var68 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var74 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var77); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var79 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var80); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var81 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var82); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var89 == false); + + } + + public void test282() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test282"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var6 = var0.getMouseListeners(); + int var7 = var0.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var8 = var0.getInputMethodRequests(); + var0.removeNotify(); + java.lang.String var10 = var0.toString(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var10 + "' != '" + "SpaceWar.SpacePanel[,0,0,0var10,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"+ "'", var10.equals("SpaceWar.SpacePanel[,0,0,0var10,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]")); + + } + + public void test283() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test283"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.reshape((-1), 1, (-1), 10); + var0.disable(); + var0.show(); + SpaceWar.SpacePanel var12 = new SpaceWar.SpacePanel(); + float var13 = var12.getAlignmentX(); + var12.setVisible(false); + boolean var16 = var12.isDoubleBuffered(); + var12.list(); + SpaceWar.SpacePanel var18 = new SpaceWar.SpacePanel(); + float var19 = var18.getAlignmentX(); + var18.setVisible(false); + boolean var22 = var18.isDoubleBuffered(); + java.awt.dnd.DropTarget var23 = var18.getDropTarget(); + var18.show(false); + java.awt.Rectangle var26 = var18.getVisibleRect(); + java.awt.Rectangle var27 = var12.getBounds(var26); + javax.swing.JToolTip var28 = var12.createToolTip(); + var12.firePropertyChange("", false, false); + var12.validate(); + SpaceWar.SpacePanel var34 = new SpaceWar.SpacePanel(); + float var35 = var34.getAlignmentX(); + var34.setVisible(false); + boolean var38 = var34.isDoubleBuffered(); + java.awt.dnd.DropTarget var39 = var34.getDropTarget(); + var34.show(false); + boolean var42 = var34.isPaintingForPrint(); + SpaceWar.SpacePanel var43 = new SpaceWar.SpacePanel(); + float var44 = var43.getAlignmentX(); + var43.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var49 = var43.getMouseListeners(); + int var50 = var43.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var51 = var43.getInputMethodRequests(); + var34.addKeyListener((java.awt.event.KeyListener)var43); + var43.repaint(); + java.awt.Point var54 = var43.location(); + java.awt.Component var55 = var12.getComponentAt(var54); + java.awt.Point var56 = var0.getLocation(var54); + var0.setAlignmentY(0.5f); + boolean var59 = var0.getVerifyInputWhenFocusTarget(); + boolean var60 = var0.isBackgroundSet(); + java.awt.Point var61 = var0.location(); + boolean var62 = var0.isDoubleBuffered(); + var0.validate(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var22 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var23); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var27); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var28); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var35 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var38 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var39); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var42 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var44 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var49); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var50 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var51); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var54); + + // Regression assertion (captures the current behavior of the code) + assertNull(var55); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var56); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var59 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var60 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var61); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var62 == true); + + } + + public void test284() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test284"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + java.awt.Dimension var4 = var0.getPreferredSize(); + boolean var5 = var0.getVerifyInputWhenFocusTarget(); + java.awt.Component var8 = var0.findComponentAt(10, 1); + boolean var9 = var0.requestDefaultFocus(); + var0.firePropertyChange("hi!", false, true); + javax.swing.ActionMap var14 = var0.getActionMap(); + java.awt.im.InputContext var15 = var0.getInputContext(); + boolean var16 = var0.hasFocus(); + SpaceWar.SpacePanel var17 = new SpaceWar.SpacePanel(); + float var18 = var17.getAlignmentX(); + var17.setVisible(false); + boolean var21 = var17.isDoubleBuffered(); + var17.list(); + SpaceWar.SpacePanel var23 = new SpaceWar.SpacePanel(); + float var24 = var23.getAlignmentX(); + var23.setVisible(false); + boolean var27 = var23.isDoubleBuffered(); + java.awt.dnd.DropTarget var28 = var23.getDropTarget(); + var23.show(false); + java.awt.Rectangle var31 = var23.getVisibleRect(); + java.awt.Rectangle var32 = var17.getBounds(var31); + javax.swing.JToolTip var33 = var17.createToolTip(); + var17.firePropertyChange("", false, false); + var17.validate(); + boolean var39 = var17.isEnabled(); + java.awt.Color var40 = var17.getBackground(); + var0.setForeground(var40); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var4); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var24 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var28); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var31); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var32); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var33); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var39 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var40); + + } + + public void test285() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test285"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + SpaceWar.SpacePanel var4 = new SpaceWar.SpacePanel(); + java.awt.Color var5 = var4.getBackground(); + var0.setForeground(var5); + SpaceWar.SpacePanel var7 = new SpaceWar.SpacePanel(); + float var8 = var7.getAlignmentX(); + var7.setVisible(false); + boolean var11 = var7.isDoubleBuffered(); + java.awt.dnd.DropTarget var12 = var7.getDropTarget(); + var7.show(false); + java.awt.Rectangle var15 = var7.getVisibleRect(); + var0.repaint(var15); + java.awt.FocusTraversalPolicy var17 = var0.getFocusTraversalPolicy(); + SpaceWar.SpacePanel var18 = new SpaceWar.SpacePanel(); + float var19 = var18.getAlignmentX(); + var18.firePropertyChange("", (-1), 1); + boolean var24 = var18.isFocusOwner(); + SpaceWar.SpacePanel var26 = new SpaceWar.SpacePanel(); + float var27 = var26.getAlignmentX(); + var26.setVisible(false); + java.awt.Dimension var30 = var26.getPreferredSize(); + java.awt.Toolkit var31 = var26.getToolkit(); + SpaceWar.SpacePanel var32 = new SpaceWar.SpacePanel(); + var32.setName(""); + int var35 = var32.getX(); + SpaceWar.SpacePanel var36 = new SpaceWar.SpacePanel(); + float var37 = var36.getAlignmentX(); + var36.setVisible(false); + var36.nextFocus(); + SpaceWar.SpacePanel var41 = new SpaceWar.SpacePanel(); + float var42 = var41.getAlignmentX(); + var41.setVisible(false); + SpaceWar.SpacePanel var45 = new SpaceWar.SpacePanel(); + java.awt.Color var46 = var45.getBackground(); + var41.setForeground(var46); + var36.setBackground(var46); + var32.setBackground(var46); + var26.setForeground(var46); + var18.putClientProperty((java.lang.Object)(byte)100, (java.lang.Object)var46); + var0.setBackground(var46); + javax.swing.JToolTip var53 = var0.createToolTip(); + var53.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, true); + var53.transferFocus(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var24 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var30); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var31); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var35 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var42 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var46); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var53); + + } + + public void test286() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test286"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + float var7 = var6.getAlignmentX(); + var6.setVisible(false); + SpaceWar.SpacePanel var10 = new SpaceWar.SpacePanel(); + java.awt.Color var11 = var10.getBackground(); + var6.setForeground(var11); + var0.setBackground(var11); + var0.grabFocus(); + boolean var15 = var0.getFocusTraversalKeysEnabled(); + boolean var16 = var0.isDisplayable(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == false); + + } + + public void test287() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test287"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + var0.list(); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + float var7 = var6.getAlignmentX(); + var6.setVisible(false); + boolean var10 = var6.isDoubleBuffered(); + java.awt.dnd.DropTarget var11 = var6.getDropTarget(); + var6.show(false); + java.awt.Rectangle var14 = var6.getVisibleRect(); + java.awt.Rectangle var15 = var0.getBounds(var14); + javax.swing.JToolTip var16 = var0.createToolTip(); + var0.firePropertyChange("", false, false); + var0.revalidate(); + SpaceWar.SpacePanel var22 = new SpaceWar.SpacePanel(); + java.awt.Color var23 = var22.getBackground(); + var22.repaint(); + var22.setRequestFocusEnabled(false); + var22.reshape(100, 0, 100, 0); + var22.requestFocus(); + var22.firePropertyChange("hi!", '4', ' '); + java.awt.Point var37 = var22.getLocation(); + java.awt.Dimension var38 = var22.size(); + java.awt.Image var41 = var22.createImage((-1), (-1)); + SpaceWar.SpacePanel var42 = new SpaceWar.SpacePanel(); + float var43 = var42.getAlignmentX(); + var42.setVisible(false); + boolean var46 = var42.isDoubleBuffered(); + java.awt.dnd.DropTarget var47 = var42.getDropTarget(); + var42.show(false); + boolean var50 = var42.isPaintingForPrint(); + SpaceWar.SpacePanel var51 = new SpaceWar.SpacePanel(); + float var52 = var51.getAlignmentX(); + var51.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var57 = var51.getMouseListeners(); + int var58 = var51.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var59 = var51.getInputMethodRequests(); + var42.addKeyListener((java.awt.event.KeyListener)var51); + var51.repaint(); + java.awt.Point var62 = var51.location(); + java.awt.Component var63 = var22.findComponentAt(var62); + var0.setLocation(var62); + var0.repaint(24, 3, 499, 0); + java.awt.Rectangle var70 = var0.bounds(); + var0.show(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var23); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var37); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var38); + + // Regression assertion (captures the current behavior of the code) + assertNull(var41); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var43 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var46 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var47); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var50 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var52 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var57); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var58 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var59); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var62); + + // Regression assertion (captures the current behavior of the code) + assertNull(var63); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var70); + + } + + public void test288() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test288"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + java.awt.Dimension var4 = var0.getPreferredSize(); + java.awt.Toolkit var5 = var0.getToolkit(); + java.awt.Toolkit var6 = var0.getToolkit(); + var0.enable(false); + java.awt.Color var9 = var0.getForeground(); + java.awt.Dimension var10 = var0.getMinimumSize(); + java.awt.Toolkit var11 = var0.getToolkit(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var4); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var9); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + } + + public void test289() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test289"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var6 = var0.getUI(); + java.awt.im.InputMethodRequests var7 = var0.getInputMethodRequests(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + var8.nextFocus(); + var8.updateUI(); + var8.enableInputMethods(true); + var8.setSize((-1), 1); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + var19.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var0.add((java.awt.Component)var8, (java.lang.Object)"SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + java.awt.event.KeyListener[] var25 = var0.getKeyListeners(); + java.awt.Component var28 = var0.getComponentAt(0, 100); + int var29 = var0.getDebugGraphicsOptions(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var25); + + // Regression assertion (captures the current behavior of the code) + assertNull(var28); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var29 == 0); + + } + + public void test290() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test290"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + java.awt.im.InputMethodRequests var3 = var0.getInputMethodRequests(); + java.awt.GraphicsConfiguration var4 = var0.getGraphicsConfiguration(); + java.awt.im.InputMethodRequests var5 = var0.getInputMethodRequests(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertNull(var4); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + } + + public void test291() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test291"); + + + SpaceWar.Player var0 = new SpaceWar.Player(); + int var1 = var0.getR(); + var0.setUp(false); + var0.update(); + java.awt.image.BufferedImage var6 = var0.loadImg("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + int var7 = var0.getX(); + var0.setLife(10); + var0.loseLife(); + int var11 = var0.getPowerLevel(); + boolean var12 = var0.isRecovering(); + var0.loseLife(); + int var14 = var0.getRequiredPower(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 25); + + // Regression assertion (captures the current behavior of the code) + assertNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 400); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == 1); + + } + + public void test292() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test292"); + + + SpaceWar.Enemy var2 = new SpaceWar.Enemy(0, 100); + var2.explode(); + java.awt.image.BufferedImage var5 = var2.loadImg("SpaceWar.SpacePanel[,-1,1,-1x10,invalid,hidden,disabled,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + double var6 = var2.getY(); + var2.hit(); + int var8 = var2.getType(); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == 0.0d); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 0); + + } + + public void test293() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test293"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.repaint(1L); + SpaceWar.SpacePanel var7 = new SpaceWar.SpacePanel(); + float var8 = var7.getAlignmentX(); + var7.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var13 = new SpaceWar.SpacePanel(); + float var14 = var13.getAlignmentX(); + var13.setVisible(false); + java.awt.Dimension var17 = var13.getPreferredSize(); + var7.setMaximumSize(var17); + var0.setPreferredSize(var17); + javax.swing.plaf.PanelUI var20 = var0.getUI(); + SpaceWar.SpacePanel var21 = new SpaceWar.SpacePanel(); + float var22 = var21.getAlignmentX(); + var21.setVisible(false); + var21.nextFocus(); + var21.reshape((-1), 1, (-1), 10); + var21.disable(); + java.awt.LayoutManager var32 = var21.getLayout(); + java.awt.Container var33 = var21.getParent(); + java.lang.String var34 = var21.getUIClassID(); + SpaceWar.Enemy var37 = new SpaceWar.Enemy(0, 10); + var0.add((java.awt.Component)var21, (java.lang.Object)10); + javax.swing.JToolTip var39 = var0.createToolTip(); + SpaceWar.SpacePanel var40 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var41 = new SpaceWar.SpacePanel(); + java.awt.Color var42 = var41.getBackground(); + SpaceWar.SpacePanel var43 = new SpaceWar.SpacePanel(); + float var44 = var43.getAlignmentX(); + var43.setVisible(false); + var43.nextFocus(); + var43.updateUI(); + var43.enableInputMethods(true); + var40.add((java.awt.Component)var41, (java.lang.Object)true); + boolean var52 = var40.isMinimumSizeSet(); + java.awt.event.HierarchyListener[] var53 = var40.getHierarchyListeners(); + var40.repaint(0L); + SpaceWar.SpacePanel var56 = new SpaceWar.SpacePanel(); + float var57 = var56.getAlignmentX(); + var56.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var62 = var56.getUI(); + java.awt.im.InputMethodRequests var63 = var56.getInputMethodRequests(); + SpaceWar.SpacePanel var64 = new SpaceWar.SpacePanel(); + float var65 = var64.getAlignmentX(); + var64.setVisible(false); + var64.nextFocus(); + var64.updateUI(); + var64.enableInputMethods(true); + var64.setSize((-1), 1); + SpaceWar.SpacePanel var75 = new SpaceWar.SpacePanel(); + var75.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var56.add((java.awt.Component)var64, (java.lang.Object)"SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + java.awt.ComponentOrientation var81 = var64.getComponentOrientation(); + java.beans.VetoableChangeListener[] var82 = var64.getVetoableChangeListeners(); + int var83 = var64.getHeight(); + javax.swing.ActionMap var84 = var64.getActionMap(); + var40.setActionMap(var84); + var39.setActionMap(var84); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var22 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var32); + + // Regression assertion (captures the current behavior of the code) + assertNull(var33); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var34 + "' != '" + "PanelUI"+ "'", var34.equals("PanelUI")); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var39); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var42); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var44 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var52 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var53); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var57 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var62); + + // Regression assertion (captures the current behavior of the code) + assertNull(var63); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var65 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var81); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var82); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var83 == 1); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var84); + + } + + public void test294() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test294"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + var0.setRequestFocusEnabled(false); + var0.reshape(100, 0, 100, 0); + java.beans.VetoableChangeListener[] var10 = var0.getVetoableChangeListeners(); + java.awt.Rectangle var11 = var0.getVisibleRect(); + float var12 = var0.getAlignmentY(); + java.awt.Dimension var13 = var0.minimumSize(); + // The following exception was thrown during execution. + // This behavior will recorded for regression testing. + try { + java.util.Set var15 = var0.getFocusTraversalKeys(399); + fail("Expected exception of type java.lang.IllegalArgumentException"); + } catch (java.lang.IllegalArgumentException e) { + // Expected exception. + } + + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var13); + + } + + public void test295() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test295"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + java.awt.im.InputMethodRequests var3 = var0.getInputMethodRequests(); + var0.setDoubleBuffered(true); + var0.show(false); + var0.setAlignmentY(100.0f); + SpaceWar.SpacePanel var10 = new SpaceWar.SpacePanel(); + float var11 = var10.getAlignmentX(); + var10.setVisible(false); + SpaceWar.SpacePanel var14 = new SpaceWar.SpacePanel(); + java.awt.Color var15 = var14.getBackground(); + var10.setForeground(var15); + SpaceWar.SpacePanel var17 = new SpaceWar.SpacePanel(); + float var18 = var17.getAlignmentX(); + var17.setVisible(false); + boolean var21 = var17.isDoubleBuffered(); + java.awt.dnd.DropTarget var22 = var17.getDropTarget(); + var17.show(false); + java.awt.Rectangle var25 = var17.getVisibleRect(); + var10.repaint(var25); + java.awt.FocusTraversalPolicy var27 = var10.getFocusTraversalPolicy(); + java.awt.im.InputMethodRequests var28 = var10.getInputMethodRequests(); + var10.layout(); + boolean var30 = var10.isFocusTraversalPolicyProvider(); + java.awt.Insets var31 = var10.insets(); + java.awt.Dimension var32 = var10.getMinimumSize(); + java.awt.Dimension var33 = var0.getSize(var32); + var0.enable(); + SpaceWar.SpacePanel var35 = new SpaceWar.SpacePanel(); + float var36 = var35.getAlignmentX(); + var35.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var41 = var35.getUI(); + java.awt.im.InputMethodRequests var42 = var35.getInputMethodRequests(); + SpaceWar.SpacePanel var43 = new SpaceWar.SpacePanel(); + float var44 = var43.getAlignmentX(); + var43.setVisible(false); + var43.nextFocus(); + var43.updateUI(); + var43.enableInputMethods(true); + var43.setSize((-1), 1); + SpaceWar.SpacePanel var54 = new SpaceWar.SpacePanel(); + var54.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var35.add((java.awt.Component)var43, (java.lang.Object)"SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + SpaceWar.SpacePanel var60 = new SpaceWar.SpacePanel(); + float var61 = var60.getAlignmentX(); + var60.setVisible(false); + java.awt.Dimension var64 = var60.getPreferredSize(); + java.awt.Toolkit var65 = var60.getToolkit(); + java.awt.Toolkit var66 = var60.getToolkit(); + java.awt.Component var67 = var43.add((java.awt.Component)var60); + var43.setDebugGraphicsOptions(0); + SpaceWar.SpacePanel var70 = new SpaceWar.SpacePanel(); + float var71 = var70.getAlignmentX(); + var70.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var76 = var70.getMouseListeners(); + int var77 = var70.getDebugGraphicsOptions(); + SpaceWar.SpacePanel var78 = new SpaceWar.SpacePanel(); + float var79 = var78.getAlignmentX(); + var78.setVisible(false); + boolean var82 = var78.isDoubleBuffered(); + java.awt.dnd.DropTarget var83 = var78.getDropTarget(); + var78.show(false); + java.awt.Rectangle var86 = var78.getVisibleRect(); + var70.paintImmediately(var86); + java.awt.Rectangle var88 = var70.getBounds(); + var70.show(true); + boolean var91 = var70.isFocusTraversalPolicySet(); + // The following exception was thrown during execution. + // This behavior will recorded for regression testing. + try { + var0.add((java.awt.Component)var43, (java.lang.Object)var70, 499); + fail("Expected exception of type java.lang.IllegalArgumentException"); + } catch (java.lang.IllegalArgumentException e) { + // Expected exception. + } + + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var25); + + // Regression assertion (captures the current behavior of the code) + assertNull(var27); + + // Regression assertion (captures the current behavior of the code) + assertNull(var28); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var30 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var31); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var32); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var33); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var36 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var41); + + // Regression assertion (captures the current behavior of the code) + assertNull(var42); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var44 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var61 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var64); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var65); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var66); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var67); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var71 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var76); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var77 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var79 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var82 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var83); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var86); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var88); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var91 == false); + + } + + public void test296() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test296"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + var0.enable(false); + java.awt.Container var7 = var0.getTopLevelAncestor(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + boolean var12 = var8.isDoubleBuffered(); + java.awt.dnd.DropTarget var13 = var8.getDropTarget(); + var8.show(false); + java.awt.event.MouseWheelListener[] var16 = var8.getMouseWheelListeners(); + SpaceWar.SpacePanel var17 = new SpaceWar.SpacePanel(); + float var18 = var17.getAlignmentX(); + var17.setVisible(false); + SpaceWar.SpacePanel var21 = new SpaceWar.SpacePanel(); + java.awt.Color var22 = var21.getBackground(); + var17.setForeground(var22); + SpaceWar.SpacePanel var24 = new SpaceWar.SpacePanel(); + float var25 = var24.getAlignmentX(); + var24.setVisible(false); + boolean var28 = var24.isDoubleBuffered(); + java.awt.dnd.DropTarget var29 = var24.getDropTarget(); + var24.show(false); + java.awt.Rectangle var32 = var24.getVisibleRect(); + var17.repaint(var32); + SpaceWar.SpacePanel var34 = new SpaceWar.SpacePanel(); + float var35 = var34.getAlignmentX(); + var34.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var40 = var34.getMouseListeners(); + java.awt.Dimension var41 = var34.getPreferredSize(); + java.util.Locale var42 = var34.getLocale(); + var17.setLocale(var42); + java.util.Locale var44 = var17.getLocale(); + var8.setLocale(var44); + javax.swing.JComponent.setDefaultLocale(var44); + var0.setLocale(var44); + javax.swing.JComponent.setDefaultLocale(var44); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var28 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var29); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var32); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var35 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var40); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var41); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var42); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var44); + + } + + public void test297() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test297"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var6 = var0.getUI(); + java.awt.im.InputMethodRequests var7 = var0.getInputMethodRequests(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + var8.nextFocus(); + var8.updateUI(); + var8.enableInputMethods(true); + var8.setSize((-1), 1); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + var19.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var0.add((java.awt.Component)var8, (java.lang.Object)"SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + java.awt.ComponentOrientation var25 = var8.getComponentOrientation(); + java.beans.VetoableChangeListener[] var26 = var8.getVetoableChangeListeners(); + int var27 = var8.getHeight(); + var8.enable(true); + boolean var30 = var8.isFocusTraversalPolicyProvider(); + SpaceWar.SpacePanel var31 = new SpaceWar.SpacePanel(); + java.awt.Color var32 = var31.getBackground(); + var31.repaint(); + var31.setRequestFocusEnabled(false); + var31.reshape(100, 0, 100, 0); + var31.requestFocus(); + var31.firePropertyChange("hi!", '4', ' '); + java.awt.Point var46 = var31.getLocation(); + var8.setLocation(var46); + boolean var48 = var8.isManagingFocus(); + java.awt.Image var51 = var8.createImage(10, 400); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var25); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == 1); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var30 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var32); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var46); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var48 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var51); + + } + + public void test298() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test298"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + SpaceWar.SpacePanel var4 = new SpaceWar.SpacePanel(); + java.awt.Color var5 = var4.getBackground(); + var0.setForeground(var5); + SpaceWar.SpacePanel var7 = new SpaceWar.SpacePanel(); + float var8 = var7.getAlignmentX(); + var7.setVisible(false); + boolean var11 = var7.isDoubleBuffered(); + java.awt.dnd.DropTarget var12 = var7.getDropTarget(); + var7.show(false); + java.awt.Rectangle var15 = var7.getVisibleRect(); + var0.repaint(var15); + java.awt.FocusTraversalPolicy var17 = var0.getFocusTraversalPolicy(); + java.awt.im.InputMethodRequests var18 = var0.getInputMethodRequests(); + var0.layout(); + java.awt.Point var20 = var0.getMousePosition(); + java.awt.Graphics var21 = var0.getGraphics(); + javax.swing.JPopupMenu var22 = var0.getComponentPopupMenu(); + SpaceWar.SpacePanel var23 = new SpaceWar.SpacePanel(); + float var24 = var23.getAlignmentX(); + var23.setVisible(false); + java.awt.Dimension var27 = var23.getPreferredSize(); + boolean var28 = var23.getVerifyInputWhenFocusTarget(); + java.awt.Component var31 = var23.findComponentAt(10, 1); + boolean var32 = var23.requestDefaultFocus(); + var23.setVerifyInputWhenFocusTarget(false); + boolean var35 = var23.isPaintingForPrint(); + java.awt.event.MouseListener[] var36 = var23.getMouseListeners(); + java.awt.Container var37 = var23.getFocusCycleRootAncestor(); + // The following exception was thrown during execution. + // This behavior will recorded for regression testing. + try { + var0.setComponentZOrder((java.awt.Component)var23, 10); + fail("Expected exception of type java.lang.IllegalArgumentException"); + } catch (java.lang.IllegalArgumentException e) { + // Expected exception. + } + + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertNull(var21); + + // Regression assertion (captures the current behavior of the code) + assertNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var24 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var27); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var28 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var31); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var32 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var35 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var36); + + // Regression assertion (captures the current behavior of the code) + assertNull(var37); + + } + + public void test299() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test299"); + + + SpaceWar.Enemy var2 = new SpaceWar.Enemy(499, 2); + int var3 = var2.getType(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == 499); + + } + + public void test300() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test300"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + var0.setRequestFocusEnabled(false); + var0.setIgnoreRepaint(false); + boolean var7 = var0.isFocusable(); + boolean var8 = var0.isPaintingForPrint(); + boolean var9 = var0.requestFocusInWindow(); + var0.paintImmediately((-1), 10, 10, (-1)); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == false); + + } + + public void test301() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test301"); + + + SpaceWar.Player var0 = new SpaceWar.Player(); + int var1 = var0.getR(); + var0.setRigth(false); + var0.setLife(100); + var0.setDown(false); + var0.loseLife(); + int var9 = var0.getPower(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 25); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0); + + } + + public void test302() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test302"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + var0.show(false); + boolean var8 = var0.isPaintingForPrint(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var15 = var9.getMouseListeners(); + int var16 = var9.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var17 = var9.getInputMethodRequests(); + var0.addKeyListener((java.awt.event.KeyListener)var9); + java.awt.Dimension var19 = var9.getPreferredSize(); + var9.setRequestFocusEnabled(true); + boolean var22 = var9.isForegroundSet(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var22 == true); + + } + + public void test303() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test303"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.repaint(1L); + SpaceWar.SpacePanel var7 = new SpaceWar.SpacePanel(); + float var8 = var7.getAlignmentX(); + var7.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var13 = new SpaceWar.SpacePanel(); + float var14 = var13.getAlignmentX(); + var13.setVisible(false); + java.awt.Dimension var17 = var13.getPreferredSize(); + var7.setMaximumSize(var17); + var0.setPreferredSize(var17); + javax.swing.plaf.PanelUI var20 = var0.getUI(); + SpaceWar.SpacePanel var21 = new SpaceWar.SpacePanel(); + float var22 = var21.getAlignmentX(); + var21.setVisible(false); + var21.nextFocus(); + var21.reshape((-1), 1, (-1), 10); + var21.disable(); + java.awt.LayoutManager var32 = var21.getLayout(); + java.awt.Container var33 = var21.getParent(); + java.lang.String var34 = var21.getUIClassID(); + SpaceWar.Enemy var37 = new SpaceWar.Enemy(0, 10); + var0.add((java.awt.Component)var21, (java.lang.Object)10); + java.awt.event.MouseListener[] var39 = var0.getMouseListeners(); + boolean var40 = var0.isCursorSet(); + java.awt.Color var41 = var0.getForeground(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var22 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var32); + + // Regression assertion (captures the current behavior of the code) + assertNull(var33); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var34 + "' != '" + "PanelUI"+ "'", var34.equals("PanelUI")); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var39); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var40 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var41); + + } + + public void test304() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test304"); + + + SpaceWar.Enemy var2 = new SpaceWar.Enemy(10, 1); + int var3 = var2.getRank(); + var2.explode(); + var2.hit(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == 1); + + } + + public void test305() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test305"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + SpaceWar.SpacePanel var2 = new SpaceWar.SpacePanel(); + float var3 = var2.getAlignmentX(); + var2.setVisible(false); + java.awt.Dimension var6 = var2.getPreferredSize(); + boolean var7 = var2.getVerifyInputWhenFocusTarget(); + java.awt.Component var10 = var2.findComponentAt(10, 1); + var0.addKeyListener((java.awt.event.KeyListener)var2); + java.awt.Dimension var12 = var2.getMinimumSize(); + SpaceWar.SpacePanel var13 = new SpaceWar.SpacePanel(); + java.awt.Color var14 = var13.getBackground(); + var13.repaint(); + var13.setRequestFocusEnabled(false); + var13.reshape(100, 0, 100, 0); + var13.requestFocus(); + java.awt.Rectangle var24 = var13.getVisibleRect(); + var2.setBounds(var24); + int var28 = var2.getBaseline(499, 499); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var28 == (-1)); + + } + + public void test306() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test306"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + var0.enable(false); + boolean var7 = var0.getFocusTraversalKeysEnabled(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + java.awt.Dimension var12 = var8.getPreferredSize(); + java.awt.Toolkit var13 = var8.getToolkit(); + boolean var14 = var8.isFocusable(); + javax.swing.KeyStroke[] var15 = var8.getRegisteredKeyStrokes(); + SpaceWar.SpacePanel var16 = new SpaceWar.SpacePanel(); + float var17 = var16.getAlignmentX(); + SpaceWar.SpacePanel var18 = new SpaceWar.SpacePanel(); + float var19 = var18.getAlignmentX(); + var18.setVisible(false); + java.awt.Dimension var22 = var18.getPreferredSize(); + boolean var23 = var18.getVerifyInputWhenFocusTarget(); + java.awt.Component var26 = var18.findComponentAt(10, 1); + var16.addKeyListener((java.awt.event.KeyListener)var18); + var18.repaint(100, (-1), (-1), 1); + boolean var33 = var8.isAncestorOf((java.awt.Component)var18); + var0.addKeyListener((java.awt.event.KeyListener)var18); + java.lang.Object var35 = var18.getTreeLock(); + float var36 = var18.getAlignmentX(); + var18.show(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var33 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var35); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var36 == 0.5f); + + } + + public void test307() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test307"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + var0.list(); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + float var7 = var6.getAlignmentX(); + var6.setVisible(false); + boolean var10 = var6.isDoubleBuffered(); + java.awt.dnd.DropTarget var11 = var6.getDropTarget(); + var6.show(false); + java.awt.Rectangle var14 = var6.getVisibleRect(); + java.awt.Rectangle var15 = var0.getBounds(var14); + javax.swing.JToolTip var16 = var0.createToolTip(); + java.awt.Dimension var17 = var0.minimumSize(); + SpaceWar.SpacePanel var18 = new SpaceWar.SpacePanel(); + float var19 = var18.getAlignmentX(); + var18.setVisible(false); + var18.setInheritsPopupMenu(false); + var18.setFocusTraversalPolicyProvider(true); + java.awt.Container var26 = var18.getFocusCycleRootAncestor(); + SpaceWar.SpacePanel var27 = new SpaceWar.SpacePanel(); + float var28 = var27.getAlignmentX(); + var27.removeNotify(); + SpaceWar.SpacePanel var30 = new SpaceWar.SpacePanel(); + float var31 = var30.getAlignmentX(); + var30.setVisible(false); + boolean var34 = var30.isDoubleBuffered(); + var30.list(); + float var36 = var30.getAlignmentY(); + java.awt.Insets var37 = var30.getInsets(); + java.awt.Insets var38 = var27.getInsets(var37); + java.awt.Insets var39 = var18.getInsets(var38); + java.awt.Insets var40 = var0.getInsets(var38); + var0.setFocusCycleRoot(true); + SpaceWar.SpacePanel var43 = new SpaceWar.SpacePanel(); + java.awt.Color var44 = var43.getBackground(); + var43.repaint(); + java.awt.im.InputMethodRequests var46 = var43.getInputMethodRequests(); + int var47 = var43.countComponents(); + java.awt.Dimension var48 = var43.getSize(); + SpaceWar.SpacePanel var49 = new SpaceWar.SpacePanel(); + var49.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + javax.swing.plaf.PanelUI var54 = var49.getUI(); + java.awt.Color var55 = var49.getBackground(); + var43.setBackground(var55); + var0.setForeground(var55); + SpaceWar.SpacePanel var58 = new SpaceWar.SpacePanel(); + float var59 = var58.getAlignmentX(); + var58.setVisible(false); + boolean var62 = var58.isDoubleBuffered(); + SpaceWar.SpacePanel var63 = new SpaceWar.SpacePanel(); + float var64 = var63.getAlignmentX(); + var63.setVisible(false); + var63.nextFocus(); + var63.reshape((-1), 1, (-1), 10); + var63.disable(); + boolean var74 = var63.isFocusable(); + int var75 = var63.getHeight(); + var58.setNextFocusableComponent((java.awt.Component)var63); + java.util.Set var78 = var58.getFocusTraversalKeys(0); + // The following exception was thrown during execution. + // This behavior will recorded for regression testing. + try { + java.awt.Component var80 = var0.add((java.awt.Component)var58, 399); + fail("Expected exception of type java.lang.IllegalArgumentException"); + } catch (java.lang.IllegalArgumentException e) { + // Expected exception. + } + + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var28 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var31 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var34 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var36 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var37); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var38); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var39); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var40); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var44); + + // Regression assertion (captures the current behavior of the code) + assertNull(var46); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var47 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var48); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var54); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var55); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var59 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var62 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var64 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var74 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var75 == 10); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var78); + + } + + public void test308() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test308"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var6 = var0.getMouseListeners(); + int var7 = var0.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var8 = var0.getInputMethodRequests(); + java.awt.Point var9 = var0.getMousePosition(); + boolean var10 = var0.getVerifyInputWhenFocusTarget(); + SpaceWar.SpacePanel var11 = new SpaceWar.SpacePanel(); + float var12 = var11.getAlignmentX(); + var11.setVisible(false); + boolean var15 = var11.isDoubleBuffered(); + java.awt.dnd.DropTarget var16 = var11.getDropTarget(); + var11.show(false); + java.awt.Rectangle var19 = var11.getVisibleRect(); + SpaceWar.SpacePanel var20 = new SpaceWar.SpacePanel(); + float var21 = var20.getAlignmentX(); + var20.setVisible(false); + boolean var24 = var20.isDoubleBuffered(); + java.awt.dnd.DropTarget var25 = var20.getDropTarget(); + var20.show(false); + boolean var28 = var20.isPaintingForPrint(); + SpaceWar.SpacePanel var29 = new SpaceWar.SpacePanel(); + float var30 = var29.getAlignmentX(); + var29.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var35 = var29.getMouseListeners(); + int var36 = var29.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var37 = var29.getInputMethodRequests(); + var20.addKeyListener((java.awt.event.KeyListener)var29); + boolean var39 = var20.isDisplayable(); + java.awt.Insets var40 = var20.getInsets(); + SpaceWar.SpacePanel var41 = new SpaceWar.SpacePanel(); + float var42 = var41.getAlignmentX(); + var41.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var47 = new SpaceWar.SpacePanel(); + float var48 = var47.getAlignmentX(); + var47.setVisible(false); + SpaceWar.SpacePanel var51 = new SpaceWar.SpacePanel(); + java.awt.Color var52 = var51.getBackground(); + var47.setForeground(var52); + var41.setBackground(var52); + java.awt.Point var55 = var41.location(); + java.awt.Point var56 = var20.getLocation(var55); + java.awt.Component var57 = var11.findComponentAt(var56); + java.awt.Component var58 = var0.getComponentAt(var56); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertNull(var9); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var24 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var25); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var28 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var30 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var35); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var36 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var37); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var39 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var40); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var42 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var48 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var52); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var55); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var56); + + // Regression assertion (captures the current behavior of the code) + assertNull(var57); + + // Regression assertion (captures the current behavior of the code) + assertNull(var58); + + } + + public void test309() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test309"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + boolean var4 = var0.inside(0, (-1)); + var0.transferFocusUpCycle(); + boolean var6 = var0.isFocusCycleRoot(); + boolean var7 = var0.isEnabled(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == true); + + } + + public void test310() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test310"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.updateUI(); + var0.enableInputMethods(true); + java.awt.Point var9 = var0.getMousePosition(false); + SpaceWar.SpacePanel var10 = new SpaceWar.SpacePanel(); + float var11 = var10.getAlignmentX(); + var10.setVisible(false); + boolean var14 = var10.isDoubleBuffered(); + java.awt.dnd.DropTarget var15 = var10.getDropTarget(); + var10.show(false); + boolean var18 = var10.isPaintingForPrint(); + boolean var19 = var10.getIgnoreRepaint(); + var10.repaint(100, 10, 100, 0); + SpaceWar.SpacePanel var25 = new SpaceWar.SpacePanel(); + float var26 = var25.getAlignmentX(); + var25.setVisible(false); + boolean var29 = var25.isDoubleBuffered(); + var25.list(); + SpaceWar.SpacePanel var31 = new SpaceWar.SpacePanel(); + float var32 = var31.getAlignmentX(); + var31.setVisible(false); + boolean var35 = var31.isDoubleBuffered(); + java.awt.dnd.DropTarget var36 = var31.getDropTarget(); + var31.show(false); + java.awt.Rectangle var39 = var31.getVisibleRect(); + java.awt.Rectangle var40 = var25.getBounds(var39); + javax.swing.JToolTip var41 = var25.createToolTip(); + var25.firePropertyChange("", false, false); + var25.validate(); + SpaceWar.SpacePanel var47 = new SpaceWar.SpacePanel(); + float var48 = var47.getAlignmentX(); + var47.setVisible(false); + boolean var51 = var47.isDoubleBuffered(); + java.awt.dnd.DropTarget var52 = var47.getDropTarget(); + var47.show(false); + boolean var55 = var47.isPaintingForPrint(); + SpaceWar.SpacePanel var56 = new SpaceWar.SpacePanel(); + float var57 = var56.getAlignmentX(); + var56.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var62 = var56.getMouseListeners(); + int var63 = var56.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var64 = var56.getInputMethodRequests(); + var47.addKeyListener((java.awt.event.KeyListener)var56); + var56.repaint(); + java.awt.Point var67 = var56.location(); + java.awt.Component var68 = var25.getComponentAt(var67); + var10.setLocation(var67); + java.awt.Component var70 = var0.getComponentAt(var67); + var0.resetKeyboardActions(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNull(var9); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var29 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var32 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var35 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var36); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var39); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var40); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var41); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var48 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var51 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var52); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var55 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var57 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var62); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var63 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var64); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var67); + + // Regression assertion (captures the current behavior of the code) + assertNull(var68); + + // Regression assertion (captures the current behavior of the code) + assertNull(var70); + + } + + public void test311() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test311"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var6 = var0.getMouseListeners(); + int var7 = var0.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var8 = var0.getInputMethodRequests(); + var0.removeNotify(); + var0.enable(); + SpaceWar.SpacePanel var11 = new SpaceWar.SpacePanel(); + java.awt.Color var12 = var11.getBackground(); + boolean var15 = var11.inside(0, (-1)); + var11.transferFocusUpCycle(); + java.lang.String var17 = var11.getName(); + boolean var18 = var0.isFocusCycleRoot((java.awt.Container)var11); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + java.awt.Color var20 = var19.getBackground(); + var19.repaint(); + var19.setRequestFocusEnabled(false); + var19.reshape(100, 0, 100, 0); + var19.requestFocus(); + var19.firePropertyChange("hi!", '4', ' '); + java.awt.Point var34 = var19.getLocation(); + java.awt.Component var35 = var11.getComponentAt(var34); + java.beans.VetoableChangeListener[] var36 = var11.getVetoableChangeListeners(); + boolean var37 = var11.isPaintingForPrint(); + javax.swing.ActionMap var38 = var11.getActionMap(); + boolean var39 = var11.isForegroundSet(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var34); + + // Regression assertion (captures the current behavior of the code) + assertNull(var35); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var36); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var38); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var39 == true); + + } + + public void test312() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test312"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + float var7 = var6.getAlignmentX(); + var6.setVisible(false); + java.awt.Dimension var10 = var6.getPreferredSize(); + var0.setMaximumSize(var10); + boolean var12 = var0.getVerifyInputWhenFocusTarget(); + int var13 = var0.getX(); + SpaceWar.SpacePanel var14 = new SpaceWar.SpacePanel(); + float var15 = var14.getAlignmentX(); + SpaceWar.SpacePanel var16 = new SpaceWar.SpacePanel(); + float var17 = var16.getAlignmentX(); + var16.setVisible(false); + java.awt.Dimension var20 = var16.getPreferredSize(); + boolean var21 = var16.getVerifyInputWhenFocusTarget(); + java.awt.Component var24 = var16.findComponentAt(10, 1); + var14.addKeyListener((java.awt.event.KeyListener)var16); + var16.repaint(100, (-1), (-1), 1); + SpaceWar.SpacePanel var31 = new SpaceWar.SpacePanel(); + java.awt.Color var32 = var31.getBackground(); + var31.repaint(); + java.awt.im.InputMethodRequests var34 = var31.getInputMethodRequests(); + java.awt.GraphicsConfiguration var35 = var31.getGraphicsConfiguration(); + var16.remove((java.awt.Component)var31); + java.awt.Font var37 = var31.getFont(); + var0.setFont(var37); + SpaceWar.SpacePanel var39 = new SpaceWar.SpacePanel(); + float var40 = var39.getAlignmentX(); + var39.setVisible(false); + var39.nextFocus(); + var39.reshape((-1), 1, (-1), 10); + var39.disable(); + java.awt.LayoutManager var50 = var39.getLayout(); + var0.setLayout(var50); + java.awt.image.ColorModel var52 = var0.getColorModel(); + java.awt.image.ColorModel var53 = var0.getColorModel(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var32); + + // Regression assertion (captures the current behavior of the code) + assertNull(var34); + + // Regression assertion (captures the current behavior of the code) + assertNull(var35); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var37); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var40 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var50); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var52); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var53); + + } + + public void test313() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test313"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + java.awt.Dimension var4 = var0.getPreferredSize(); + boolean var5 = var0.getVerifyInputWhenFocusTarget(); + java.awt.Component var8 = var0.findComponentAt(10, 1); + boolean var9 = var0.requestDefaultFocus(); + var0.setVerifyInputWhenFocusTarget(false); + java.awt.Point var12 = var0.getLocation(); + var0.setFocusable(false); + java.beans.PropertyChangeListener[] var16 = var0.getPropertyChangeListeners("SpaceWar.SpacePanel[,100,0,100x0,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var4); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + } + + public void test314() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test314"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + java.awt.im.InputMethodRequests var3 = var0.getInputMethodRequests(); + int var4 = var0.countComponents(); + java.awt.event.ComponentListener[] var5 = var0.getComponentListeners(); + var0.removeNotify(); + javax.swing.InputMap var7 = var0.getInputMap(); + int var8 = var0.getDebugGraphicsOptions(); + java.awt.Graphics var9 = var0.getGraphics(); + boolean var10 = var0.isMaximumSizeSet(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var9); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == false); + + } + + public void test315() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test315"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var1 = new SpaceWar.SpacePanel(); + java.awt.Color var2 = var1.getBackground(); + SpaceWar.SpacePanel var3 = new SpaceWar.SpacePanel(); + float var4 = var3.getAlignmentX(); + var3.setVisible(false); + var3.nextFocus(); + var3.updateUI(); + var3.enableInputMethods(true); + var0.add((java.awt.Component)var1, (java.lang.Object)true); + java.awt.Dimension var12 = var1.getPreferredSize(); + var1.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", (-1.0f), 100.0f); + var1.removeNotify(); + java.awt.Dimension var18 = var1.size(); + java.awt.LayoutManager var19 = var1.getLayout(); + SpaceWar.SpacePanel var20 = new SpaceWar.SpacePanel(); + float var21 = var20.getAlignmentX(); + var20.setVisible(false); + boolean var24 = var20.isDoubleBuffered(); + SpaceWar.SpacePanel var25 = new SpaceWar.SpacePanel(); + java.awt.Color var26 = var25.getBackground(); + var25.repaint(); + java.lang.Object var28 = var20.getClientProperty((java.lang.Object)var25); + int var29 = var1.getComponentZOrder((java.awt.Component)var25); + var1.move(1, 25); + float var33 = var1.getAlignmentY(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var2); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var24 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertNull(var28); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var29 == (-1)); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var33 == 0.5f); + + } + + public void test316() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test316"); + + + SpaceWar.Player var0 = new SpaceWar.Player(); + boolean var1 = var0.isRecovering(); + int var2 = var0.getRequiredPower(); + int var3 = var0.getY(); + var0.setRigth(true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var2 == 1); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == 500); + + } + + public void test317() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test317"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + var0.show(false); + boolean var8 = var0.isPaintingForPrint(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var15 = var9.getMouseListeners(); + int var16 = var9.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var17 = var9.getInputMethodRequests(); + var0.addKeyListener((java.awt.event.KeyListener)var9); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + float var20 = var19.getAlignmentX(); + var19.setVisible(false); + boolean var23 = var19.isDoubleBuffered(); + var19.list(); + float var25 = var19.getAlignmentY(); + boolean var26 = var9.isFocusCycleRoot((java.awt.Container)var19); + SpaceWar.SpacePanel var28 = new SpaceWar.SpacePanel(); + float var29 = var28.getAlignmentX(); + var28.setVisible(false); + var28.nextFocus(); + var28.updateUI(); + java.awt.Component var34 = var9.add("", (java.awt.Component)var28); + java.awt.ComponentOrientation var35 = var28.getComponentOrientation(); + java.awt.Point var37 = var28.getMousePosition(true); + var28.setAlignmentX(0.0f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var29 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var34); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var35); + + // Regression assertion (captures the current behavior of the code) + assertNull(var37); + + } + + public void test318() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test318"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var6 = var0.getUI(); + java.awt.im.InputMethodRequests var7 = var0.getInputMethodRequests(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + var8.nextFocus(); + var8.updateUI(); + var8.enableInputMethods(true); + var8.setSize((-1), 1); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + var19.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var0.add((java.awt.Component)var8, (java.lang.Object)"SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + java.awt.ComponentOrientation var25 = var8.getComponentOrientation(); + boolean var26 = var8.isMaximumSizeSet(); + java.beans.PropertyChangeListener[] var28 = var8.getPropertyChangeListeners("SpaceWar.SpacePanel[,0,0,0x0,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + SpaceWar.SpacePanel var29 = new SpaceWar.SpacePanel(); + float var30 = var29.getAlignmentX(); + boolean var31 = var29.hasFocus(); + boolean var32 = var29.isPreferredSizeSet(); + var29.firePropertyChange("", (short)1, (short)0); + SpaceWar.SpacePanel var37 = new SpaceWar.SpacePanel(); + float var38 = var37.getAlignmentX(); + var37.firePropertyChange("", (-1), 1); + boolean var43 = var37.isFocusOwner(); + SpaceWar.SpacePanel var45 = new SpaceWar.SpacePanel(); + float var46 = var45.getAlignmentX(); + var45.setVisible(false); + java.awt.Dimension var49 = var45.getPreferredSize(); + java.awt.Toolkit var50 = var45.getToolkit(); + SpaceWar.SpacePanel var51 = new SpaceWar.SpacePanel(); + var51.setName(""); + int var54 = var51.getX(); + SpaceWar.SpacePanel var55 = new SpaceWar.SpacePanel(); + float var56 = var55.getAlignmentX(); + var55.setVisible(false); + var55.nextFocus(); + SpaceWar.SpacePanel var60 = new SpaceWar.SpacePanel(); + float var61 = var60.getAlignmentX(); + var60.setVisible(false); + SpaceWar.SpacePanel var64 = new SpaceWar.SpacePanel(); + java.awt.Color var65 = var64.getBackground(); + var60.setForeground(var65); + var55.setBackground(var65); + var51.setBackground(var65); + var45.setForeground(var65); + var37.putClientProperty((java.lang.Object)(byte)100, (java.lang.Object)var65); + boolean var71 = var37.isEnabled(); + java.awt.event.ComponentListener[] var72 = var37.getComponentListeners(); + java.awt.Dimension var73 = var37.getPreferredSize(); + var29.setSize(var73); + java.awt.Dimension var75 = var8.getSize(var73); + var8.repaint(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var25); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var28); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var30 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var31 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var32 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var38 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var43 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var46 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var49); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var50); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var54 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var56 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var61 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var65); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var71 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var72); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var73); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var75); + + } + + public void test319() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test319"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + var0.show(false); + java.awt.Rectangle var8 = var0.getVisibleRect(); + java.awt.image.BufferedImage var10 = var0.loadImg("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + java.awt.ComponentOrientation var11 = var0.getComponentOrientation(); + boolean var12 = var0.isPaintingTile(); + int var13 = var0.getHeight(); + java.awt.event.ComponentListener[] var14 = var0.getComponentListeners(); + java.awt.Point var15 = var0.getMousePosition(); + java.lang.Object var16 = var0.getTreeLock(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + } + + public void test320() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test320"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + float var7 = var6.getAlignmentX(); + var6.setVisible(false); + SpaceWar.SpacePanel var10 = new SpaceWar.SpacePanel(); + java.awt.Color var11 = var10.getBackground(); + var6.setForeground(var11); + var0.setBackground(var11); + java.awt.Point var14 = var0.location(); + java.awt.Image var17 = var0.createImage((-1), 10); + var0.setInheritsPopupMenu(true); + boolean var20 = var0.isValid(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == false); + + } + + public void test321() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test321"); + + + SpaceWar.Player var0 = new SpaceWar.Player(); + var0.increasePower(25); + int var3 = var0.getScore(); + var0.setRigth(true); + var0.loseLife(); + var0.setLeft(true); + int var9 = var0.getR(); + var0.setLife(100); + var0.setLeft(true); + var0.setLeft(true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 25); + + } + + public void test322() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test322"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var1 = new SpaceWar.SpacePanel(); + java.awt.Color var2 = var1.getBackground(); + SpaceWar.SpacePanel var3 = new SpaceWar.SpacePanel(); + float var4 = var3.getAlignmentX(); + var3.setVisible(false); + var3.nextFocus(); + var3.updateUI(); + var3.enableInputMethods(true); + var0.add((java.awt.Component)var1, (java.lang.Object)true); + boolean var12 = var0.isMinimumSizeSet(); + java.awt.event.HierarchyListener[] var13 = var0.getHierarchyListeners(); + SpaceWar.SpacePanel var14 = new SpaceWar.SpacePanel(); + float var15 = var14.getAlignmentX(); + var14.setVisible(false); + SpaceWar.SpacePanel var18 = new SpaceWar.SpacePanel(); + java.awt.Color var19 = var18.getBackground(); + var14.setForeground(var19); + SpaceWar.SpacePanel var21 = new SpaceWar.SpacePanel(); + float var22 = var21.getAlignmentX(); + var21.setVisible(false); + boolean var25 = var21.isDoubleBuffered(); + java.awt.dnd.DropTarget var26 = var21.getDropTarget(); + var21.show(false); + java.awt.Rectangle var29 = var21.getVisibleRect(); + var14.repaint(var29); + java.awt.FocusTraversalPolicy var31 = var14.getFocusTraversalPolicy(); + java.awt.im.InputMethodRequests var32 = var14.getInputMethodRequests(); + var14.layout(); + boolean var34 = var14.isFocusTraversalPolicyProvider(); + java.lang.Object var35 = var0.getClientProperty((java.lang.Object)var34); + java.awt.Dimension var36 = var0.getSize(); + boolean var37 = var0.isFocusTraversable(); + var0.show(false); + var0.setVisible(true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var2); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var22 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var29); + + // Regression assertion (captures the current behavior of the code) + assertNull(var31); + + // Regression assertion (captures the current behavior of the code) + assertNull(var32); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var34 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var35); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var36); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == true); + + } + + public void test323() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test323"); + + + SpaceWar.Bullet var3 = new SpaceWar.Bullet(83.657626403857d, 499, 25); + + } + + public void test324() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test324"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.setFocusCycleRoot(true); + var0.requestFocus(); + boolean var6 = var0.requestFocus(true); + javax.swing.InputVerifier var7 = var0.getInputVerifier(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var7); + + } + + public void test325() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test325"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + var0.setName(""); + int var3 = var0.getX(); + SpaceWar.SpacePanel var4 = new SpaceWar.SpacePanel(); + float var5 = var4.getAlignmentX(); + var4.setVisible(false); + var4.nextFocus(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.setVisible(false); + SpaceWar.SpacePanel var13 = new SpaceWar.SpacePanel(); + java.awt.Color var14 = var13.getBackground(); + var9.setForeground(var14); + var4.setBackground(var14); + var0.setBackground(var14); + boolean var18 = var0.isFocusTraversable(); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + var19.setName(""); + int var22 = var19.getX(); + SpaceWar.SpacePanel var23 = new SpaceWar.SpacePanel(); + float var24 = var23.getAlignmentX(); + var23.setVisible(false); + var23.nextFocus(); + SpaceWar.SpacePanel var28 = new SpaceWar.SpacePanel(); + float var29 = var28.getAlignmentX(); + var28.setVisible(false); + SpaceWar.SpacePanel var32 = new SpaceWar.SpacePanel(); + java.awt.Color var33 = var32.getBackground(); + var28.setForeground(var33); + var23.setBackground(var33); + var19.setBackground(var33); + var0.setBackground(var33); + SpaceWar.SpacePanel var38 = new SpaceWar.SpacePanel(); + float var39 = var38.getAlignmentX(); + var38.setVisible(false); + var38.nextFocus(); + var38.updateUI(); + var38.enableInputMethods(true); + java.awt.Point var47 = var38.getMousePosition(false); + SpaceWar.SpacePanel var48 = new SpaceWar.SpacePanel(); + float var49 = var48.getAlignmentX(); + var48.setVisible(false); + boolean var52 = var48.isDoubleBuffered(); + var48.list(); + SpaceWar.SpacePanel var54 = new SpaceWar.SpacePanel(); + float var55 = var54.getAlignmentX(); + var54.setVisible(false); + boolean var58 = var54.isDoubleBuffered(); + java.awt.dnd.DropTarget var59 = var54.getDropTarget(); + var54.show(false); + java.awt.Rectangle var62 = var54.getVisibleRect(); + java.awt.Rectangle var63 = var48.getBounds(var62); + var38.scrollRectToVisible(var62); + var0.paintImmediately(var62); + var0.firePropertyChange("hi!", 1L, 100L); + var0.setAutoscrolls(false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var22 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var24 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var29 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var33); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var39 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNull(var47); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var49 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var52 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var55 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var58 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var59); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var62); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var63); + + } + + public void test326() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test326"); + + + SpaceWar.Enemy var2 = new SpaceWar.Enemy(0, 100); + var2.explode(); + java.awt.image.BufferedImage var5 = var2.loadImg("SpaceWar.SpacePanel[,-1,1,-1x10,invalid,hidden,disabled,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + var2.hit(); + var2.hit(); + var2.hit(); + var2.hit(); + int var10 = var2.getRank(); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 100); + + } + + public void test327() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test327"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + var0.show(false); + boolean var8 = var0.isPaintingForPrint(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var15 = var9.getMouseListeners(); + int var16 = var9.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var17 = var9.getInputMethodRequests(); + var0.addKeyListener((java.awt.event.KeyListener)var9); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + float var20 = var19.getAlignmentX(); + var19.setVisible(false); + boolean var23 = var19.isDoubleBuffered(); + var19.list(); + float var25 = var19.getAlignmentY(); + boolean var26 = var9.isFocusCycleRoot((java.awt.Container)var19); + boolean var27 = var19.isEnabled(); + java.awt.Dimension var28 = var19.getMaximumSize(); + var19.setFocusCycleRoot(false); + var19.setInheritsPopupMenu(false); + var19.transferFocusBackward(); + SpaceWar.SpacePanel var34 = new SpaceWar.SpacePanel(); + float var35 = var34.getAlignmentX(); + var34.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var40 = var34.getMouseListeners(); + int var41 = var34.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var42 = var34.getInputMethodRequests(); + java.awt.Point var43 = var34.getMousePosition(); + SpaceWar.SpacePanel var44 = new SpaceWar.SpacePanel(); + float var45 = var44.getAlignmentX(); + var44.setVisible(false); + var44.setInheritsPopupMenu(false); + boolean var50 = var44.isDoubleBuffered(); + boolean var51 = var44.isMinimumSizeSet(); + java.awt.Font var52 = var44.getFont(); + var34.setFont(var52); + java.awt.FontMetrics var54 = var19.getFontMetrics(var52); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var28); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var35 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var40); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var41 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var42); + + // Regression assertion (captures the current behavior of the code) + assertNull(var43); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var45 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var50 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var51 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var52); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var54); + + } + + public void test328() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test328"); + + + SpaceWar.Player var0 = new SpaceWar.Player(); + int var1 = var0.getR(); + var0.setUp(false); + int var4 = var0.getLives(); + var0.setScore(0); + int var7 = var0.getPowerLevel(); + int var8 = var0.getR(); + var0.setUp(false); + boolean var11 = var0.isDead(); + boolean var12 = var0.isDead(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 25); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 3); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 25); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == false); + + } + + public void test329() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test329"); + + + SpaceWar.Player var0 = new SpaceWar.Player(); + var0.increasePower(25); + int var3 = var0.getScore(); + var0.setRigth(true); + var0.loseLife(); + int var7 = var0.getPower(); + int var8 = var0.getX(); + int var9 = var0.getPower(); + var0.setDown(true); + boolean var12 = var0.isRecovering(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 24); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 400); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 24); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == true); + + } + + public void test330() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test330"); + + + SpaceWar.PowerUp var3 = new SpaceWar.PowerUp(100, (-1.0d), 0.0d); + double var4 = var3.getX(); + double var5 = var3.getY(); + boolean var6 = var3.update(); + int var7 = var3.getType(); + double var8 = var3.getR(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == (-1.0d)); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == 0.0d); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 100); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 0.0d); + + } + + public void test331() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test331"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var1 = new SpaceWar.SpacePanel(); + java.awt.Color var2 = var1.getBackground(); + SpaceWar.SpacePanel var3 = new SpaceWar.SpacePanel(); + float var4 = var3.getAlignmentX(); + var3.setVisible(false); + var3.nextFocus(); + var3.updateUI(); + var3.enableInputMethods(true); + var0.add((java.awt.Component)var1, (java.lang.Object)true); + var1.repaint(100L); + boolean var14 = var1.isPaintingTile(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var2); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == false); + + } + + public void test332() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test332"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + var0.show(false); + boolean var8 = var0.isPaintingForPrint(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var15 = var9.getMouseListeners(); + int var16 = var9.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var17 = var9.getInputMethodRequests(); + var0.addKeyListener((java.awt.event.KeyListener)var9); + var9.repaint(); + java.awt.Point var20 = var9.location(); + java.util.Locale var21 = var9.getLocale(); + var9.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", 10.0f, 10.0f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var21); + + } + + public void test333() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test333"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var6 = var0.getMouseListeners(); + int var7 = var0.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var8 = var0.getInputMethodRequests(); + java.awt.Point var9 = var0.getMousePosition(); + SpaceWar.SpacePanel var10 = new SpaceWar.SpacePanel(); + float var11 = var10.getAlignmentX(); + var10.setVisible(false); + var10.setInheritsPopupMenu(false); + boolean var16 = var10.isDoubleBuffered(); + boolean var17 = var10.isMinimumSizeSet(); + java.awt.Font var18 = var10.getFont(); + var0.setFont(var18); + int var20 = var0.getHeight(); + SpaceWar.SpacePanel var21 = new SpaceWar.SpacePanel(); + float var22 = var21.getAlignmentX(); + var21.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var27 = var21.getMouseListeners(); + java.awt.Dimension var28 = var21.getPreferredSize(); + int var31 = var21.getBaseline(1, 1); + var21.show(false); + var21.repaint(100L); + // The following exception was thrown during execution. + // This behavior will recorded for regression testing. + try { + java.awt.Component var37 = var0.add((java.awt.Component)var21, 499); + fail("Expected exception of type java.lang.IllegalArgumentException"); + } catch (java.lang.IllegalArgumentException e) { + // Expected exception. + } + + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertNull(var9); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var22 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var27); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var28); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var31 == (-1)); + + } + + public void test334() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test334"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + java.awt.im.InputMethodRequests var3 = var0.getInputMethodRequests(); + var0.setDoubleBuffered(true); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + float var7 = var6.getAlignmentX(); + boolean var8 = var6.hasFocus(); + java.awt.Insets var9 = var6.getInsets(); + java.awt.Insets var10 = var0.getInsets(var9); + java.awt.event.MouseMotionListener[] var11 = var0.getMouseMotionListeners(); + float var12 = var0.getAlignmentX(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var9); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == 0.5f); + + } + + public void test335() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test335"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.repaint(1L); + SpaceWar.SpacePanel var7 = new SpaceWar.SpacePanel(); + float var8 = var7.getAlignmentX(); + var7.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var13 = new SpaceWar.SpacePanel(); + float var14 = var13.getAlignmentX(); + var13.setVisible(false); + java.awt.Dimension var17 = var13.getPreferredSize(); + var7.setMaximumSize(var17); + var0.setPreferredSize(var17); + javax.swing.plaf.PanelUI var20 = var0.getUI(); + SpaceWar.SpacePanel var21 = new SpaceWar.SpacePanel(); + float var22 = var21.getAlignmentX(); + var21.setVisible(false); + var21.nextFocus(); + var21.reshape((-1), 1, (-1), 10); + var21.disable(); + java.awt.LayoutManager var32 = var21.getLayout(); + java.awt.Container var33 = var21.getParent(); + java.lang.String var34 = var21.getUIClassID(); + SpaceWar.Enemy var37 = new SpaceWar.Enemy(0, 10); + var0.add((java.awt.Component)var21, (java.lang.Object)10); + boolean var39 = var21.getInheritsPopupMenu(); + var21.setAlignmentY((-1.0f)); + SpaceWar.SpacePanel var42 = new SpaceWar.SpacePanel(); + float var43 = var42.getAlignmentX(); + var42.setVisible(false); + SpaceWar.SpacePanel var46 = new SpaceWar.SpacePanel(); + java.awt.Color var47 = var46.getBackground(); + var42.setForeground(var47); + SpaceWar.SpacePanel var49 = new SpaceWar.SpacePanel(); + float var50 = var49.getAlignmentX(); + var49.setVisible(false); + boolean var53 = var49.isDoubleBuffered(); + java.awt.dnd.DropTarget var54 = var49.getDropTarget(); + var49.show(false); + java.awt.Rectangle var57 = var49.getVisibleRect(); + var42.repaint(var57); + SpaceWar.SpacePanel var59 = new SpaceWar.SpacePanel(); + float var60 = var59.getAlignmentX(); + var59.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var65 = var59.getMouseListeners(); + java.awt.Dimension var66 = var59.getPreferredSize(); + java.util.Locale var67 = var59.getLocale(); + var42.setLocale(var67); + boolean var69 = var42.isCursorSet(); + // The following exception was thrown during execution. + // This behavior will recorded for regression testing. + try { + var21.setComponentZOrder((java.awt.Component)var42, 400); + fail("Expected exception of type java.lang.IllegalArgumentException"); + } catch (java.lang.IllegalArgumentException e) { + // Expected exception. + } + + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var22 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var32); + + // Regression assertion (captures the current behavior of the code) + assertNull(var33); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var34 + "' != '" + "PanelUI"+ "'", var34.equals("PanelUI")); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var39 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var43 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var47); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var50 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var53 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var54); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var57); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var60 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var65); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var66); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var67); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var69 == false); + + } + + public void test336() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test336"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + var0.enable(false); + SpaceWar.SpacePanel var7 = new SpaceWar.SpacePanel(); + float var8 = var7.getAlignmentX(); + boolean var9 = var7.hasFocus(); + java.awt.Insets var10 = var7.getInsets(); + java.awt.Rectangle var11 = var7.bounds(); + var0.repaint(var11); + java.awt.Point var13 = var0.getLocation(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var13); + + } + + public void test337() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test337"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + java.awt.Dimension var4 = var0.getPreferredSize(); + java.awt.Toolkit var5 = var0.getToolkit(); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + var6.setName(""); + int var9 = var6.getX(); + SpaceWar.SpacePanel var10 = new SpaceWar.SpacePanel(); + float var11 = var10.getAlignmentX(); + var10.setVisible(false); + var10.nextFocus(); + SpaceWar.SpacePanel var15 = new SpaceWar.SpacePanel(); + float var16 = var15.getAlignmentX(); + var15.setVisible(false); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + java.awt.Color var20 = var19.getBackground(); + var15.setForeground(var20); + var10.setBackground(var20); + var6.setBackground(var20); + var0.setForeground(var20); + java.awt.Dimension var25 = var0.getMinimumSize(); + SpaceWar.SpacePanel var27 = new SpaceWar.SpacePanel(); + float var28 = var27.getAlignmentX(); + var27.setVisible(false); + java.awt.Dimension var31 = var27.getPreferredSize(); + boolean var32 = var27.getVerifyInputWhenFocusTarget(); + java.awt.Component var35 = var27.findComponentAt(10, 1); + boolean var36 = var27.isCursorSet(); + java.awt.Dimension var37 = var27.getMinimumSize(); + javax.swing.InputMap var38 = var27.getInputMap(); + // The following exception was thrown during execution. + // This behavior will recorded for regression testing. + try { + var0.setInputMap(10, var38); + fail("Expected exception of type java.lang.IllegalArgumentException"); + } catch (java.lang.IllegalArgumentException e) { + // Expected exception. + } + + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var4); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var25); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var28 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var31); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var32 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var35); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var36 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var37); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var38); + + } + + public void test338() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test338"); + + + SpaceWar.PowerUp var3 = new SpaceWar.PowerUp(499, 495.44236387443226d, 0.0d); + boolean var4 = var3.update(); + boolean var5 = var3.update(); + double var6 = var3.getX(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == 495.44236387443226d); + + } + + public void test339() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test339"); + + + SpaceWar.Player var0 = new SpaceWar.Player(); + boolean var1 = var0.isRecovering(); + var0.setUp(true); + var0.loseLife(); + var0.setRigth(false); + int var7 = var0.getR(); + var0.setLeft(true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 25); + + } + + public void test340() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test340"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + SpaceWar.SpacePanel var4 = new SpaceWar.SpacePanel(); + java.awt.Color var5 = var4.getBackground(); + var0.setForeground(var5); + SpaceWar.SpacePanel var7 = new SpaceWar.SpacePanel(); + float var8 = var7.getAlignmentX(); + var7.setVisible(false); + boolean var11 = var7.isDoubleBuffered(); + java.awt.dnd.DropTarget var12 = var7.getDropTarget(); + var7.show(false); + java.awt.Rectangle var15 = var7.getVisibleRect(); + var0.repaint(var15); + java.awt.FocusTraversalPolicy var17 = var0.getFocusTraversalPolicy(); + java.awt.im.InputMethodRequests var18 = var0.getInputMethodRequests(); + var0.layout(); + java.awt.Point var20 = var0.getMousePosition(); + boolean var21 = var0.isOptimizedDrawingEnabled(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == true); + + } + + public void test341() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test341"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + var0.setRequestFocusEnabled(false); + var0.reshape(100, 0, 100, 0); + var0.requestFocus(); + var0.firePropertyChange("hi!", '4', ' '); + java.awt.Point var15 = var0.getLocation(); + java.awt.Dimension var16 = var0.size(); + java.awt.Image var19 = var0.createImage((-1), (-1)); + java.awt.event.ComponentListener[] var20 = var0.getComponentListeners(); + var0.updateUI(); + SpaceWar.SpacePanel var22 = new SpaceWar.SpacePanel(); + java.awt.Color var23 = var22.getBackground(); + var22.repaint(); + java.awt.im.InputMethodRequests var25 = var22.getInputMethodRequests(); + int var26 = var22.countComponents(); + java.awt.event.ComponentListener[] var27 = var22.getComponentListeners(); + var22.removeNotify(); + java.awt.Component var31 = var22.getComponentAt(1, (-1)); + SpaceWar.SpacePanel var32 = new SpaceWar.SpacePanel(); + float var33 = var32.getAlignmentX(); + var32.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var38 = new SpaceWar.SpacePanel(); + float var39 = var38.getAlignmentX(); + var38.setVisible(false); + java.awt.Dimension var42 = var38.getPreferredSize(); + var32.setMaximumSize(var42); + boolean var44 = var32.getVerifyInputWhenFocusTarget(); + javax.accessibility.AccessibleContext var45 = var32.getAccessibleContext(); + boolean var46 = var32.isDoubleBuffered(); + java.awt.Rectangle var47 = var32.getVisibleRect(); + var22.setBounds(var47); + var0.repaint(var47); + var0.resetKeyboardActions(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var23); + + // Regression assertion (captures the current behavior of the code) + assertNull(var25); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var27); + + // Regression assertion (captures the current behavior of the code) + assertNull(var31); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var33 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var39 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var42); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var44 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var45); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var46 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var47); + + } + + public void test342() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test342"); + + + SpaceWar.Bullet var3 = new SpaceWar.Bullet(594.7973940347722d, 3, 100); + double var4 = var3.getY(); + double var5 = var3.getR(); + boolean var6 = var3.update(); + double var7 = var3.getX(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 100.0d); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == 5.0d); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == (-2.7646948150810227d)); + + } + + public void test343() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test343"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var1 = new SpaceWar.SpacePanel(); + java.awt.Color var2 = var1.getBackground(); + SpaceWar.SpacePanel var3 = new SpaceWar.SpacePanel(); + float var4 = var3.getAlignmentX(); + var3.setVisible(false); + var3.nextFocus(); + var3.updateUI(); + var3.enableInputMethods(true); + var0.add((java.awt.Component)var1, (java.lang.Object)true); + boolean var12 = var0.isMinimumSizeSet(); + java.awt.event.HierarchyListener[] var13 = var0.getHierarchyListeners(); + SpaceWar.SpacePanel var14 = new SpaceWar.SpacePanel(); + float var15 = var14.getAlignmentX(); + var14.setVisible(false); + SpaceWar.SpacePanel var18 = new SpaceWar.SpacePanel(); + java.awt.Color var19 = var18.getBackground(); + var14.setForeground(var19); + SpaceWar.SpacePanel var21 = new SpaceWar.SpacePanel(); + float var22 = var21.getAlignmentX(); + var21.setVisible(false); + boolean var25 = var21.isDoubleBuffered(); + java.awt.dnd.DropTarget var26 = var21.getDropTarget(); + var21.show(false); + java.awt.Rectangle var29 = var21.getVisibleRect(); + var14.repaint(var29); + java.awt.FocusTraversalPolicy var31 = var14.getFocusTraversalPolicy(); + java.awt.im.InputMethodRequests var32 = var14.getInputMethodRequests(); + var14.layout(); + boolean var34 = var14.isFocusTraversalPolicyProvider(); + java.lang.Object var35 = var0.getClientProperty((java.lang.Object)var34); + java.awt.Dimension var36 = var0.getSize(); + boolean var37 = var0.isFocusTraversable(); + SpaceWar.SpacePanel var38 = new SpaceWar.SpacePanel(); + float var39 = var38.getAlignmentX(); + var38.setVisible(false); + var38.nextFocus(); + var38.updateUI(); + var38.enableInputMethods(true); + var38.resetKeyboardActions(); + var0.removeKeyListener((java.awt.event.KeyListener)var38); + SpaceWar.SpacePanel var48 = new SpaceWar.SpacePanel(); + float var49 = var48.getAlignmentX(); + var48.setVisible(false); + boolean var52 = var48.isDoubleBuffered(); + java.awt.dnd.DropTarget var53 = var48.getDropTarget(); + var48.show(false); + boolean var56 = var48.isPaintingForPrint(); + SpaceWar.SpacePanel var57 = new SpaceWar.SpacePanel(); + float var58 = var57.getAlignmentX(); + var57.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var63 = var57.getMouseListeners(); + int var64 = var57.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var65 = var57.getInputMethodRequests(); + var48.addKeyListener((java.awt.event.KeyListener)var57); + boolean var67 = var48.isDisplayable(); + java.awt.Dimension var68 = var48.getPreferredSize(); + var0.setSize(var68); + java.awt.Graphics var70 = var0.getGraphics(); + boolean var71 = var0.requestDefaultFocus(); + javax.swing.TransferHandler var72 = var0.getTransferHandler(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var2); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var22 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var29); + + // Regression assertion (captures the current behavior of the code) + assertNull(var31); + + // Regression assertion (captures the current behavior of the code) + assertNull(var32); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var34 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var35); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var36); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var39 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var49 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var52 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var53); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var56 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var58 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var63); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var64 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var65); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var67 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var68); + + // Regression assertion (captures the current behavior of the code) + assertNull(var70); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var71 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var72); + + } + + public void test344() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test344"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + boolean var4 = var0.inside(0, (-1)); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + float var7 = var6.getAlignmentX(); + var6.setVisible(false); + var6.nextFocus(); + var6.reshape((-1), 1, (-1), 10); + var6.disable(); + boolean var17 = var6.isFocusable(); + SpaceWar.SpacePanel var18 = new SpaceWar.SpacePanel(); + float var19 = var18.getAlignmentX(); + var18.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var24 = var18.getUI(); + java.awt.im.InputMethodRequests var25 = var18.getInputMethodRequests(); + SpaceWar.SpacePanel var26 = new SpaceWar.SpacePanel(); + float var27 = var26.getAlignmentX(); + var26.setVisible(false); + var26.nextFocus(); + var26.updateUI(); + var26.enableInputMethods(true); + var26.setSize((-1), 1); + SpaceWar.SpacePanel var37 = new SpaceWar.SpacePanel(); + var37.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var18.add((java.awt.Component)var26, (java.lang.Object)"SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + java.awt.event.KeyListener[] var43 = var18.getKeyListeners(); + java.awt.FocusTraversalPolicy var44 = var18.getFocusTraversalPolicy(); + SpaceWar.SpacePanel var45 = new SpaceWar.SpacePanel(); + var45.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + java.awt.Toolkit var50 = var45.getToolkit(); + var6.add((java.awt.Component)var18, (java.lang.Object)var45); + var6.layout(); + java.awt.Component var53 = var0.add("", (java.awt.Component)var6); + java.awt.Point var54 = var0.getMousePosition(); + var0.setAutoscrolls(false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertNull(var25); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var43); + + // Regression assertion (captures the current behavior of the code) + assertNull(var44); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var50); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var53); + + // Regression assertion (captures the current behavior of the code) + assertNull(var54); + + } + + public void test345() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test345"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + boolean var2 = var0.hasFocus(); + boolean var3 = var0.isPreferredSizeSet(); + var0.firePropertyChange("", (short)1, (short)0); + boolean var8 = var0.isMaximumSizeSet(); + java.awt.peer.ComponentPeer var9 = var0.getPeer(); + var0.firePropertyChange("hi!", (-1), 499); + boolean var14 = var0.isValidateRoot(); + var0.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=1.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", (-1L), (-1L)); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var2 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var9); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == false); + + } + + public void test346() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test346"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var1 = new SpaceWar.SpacePanel(); + java.awt.Color var2 = var1.getBackground(); + SpaceWar.SpacePanel var3 = new SpaceWar.SpacePanel(); + float var4 = var3.getAlignmentX(); + var3.setVisible(false); + var3.nextFocus(); + var3.updateUI(); + var3.enableInputMethods(true); + var0.add((java.awt.Component)var1, (java.lang.Object)true); + boolean var13 = var1.areFocusTraversalKeysSet(0); + SpaceWar.SpacePanel var14 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var15 = new SpaceWar.SpacePanel(); + java.awt.Color var16 = var15.getBackground(); + SpaceWar.SpacePanel var17 = new SpaceWar.SpacePanel(); + float var18 = var17.getAlignmentX(); + var17.setVisible(false); + var17.nextFocus(); + var17.updateUI(); + var17.enableInputMethods(true); + var14.add((java.awt.Component)var15, (java.lang.Object)true); + boolean var26 = var14.isMinimumSizeSet(); + java.awt.event.HierarchyListener[] var27 = var14.getHierarchyListeners(); + SpaceWar.SpacePanel var28 = new SpaceWar.SpacePanel(); + float var29 = var28.getAlignmentX(); + var28.setVisible(false); + SpaceWar.SpacePanel var32 = new SpaceWar.SpacePanel(); + java.awt.Color var33 = var32.getBackground(); + var28.setForeground(var33); + SpaceWar.SpacePanel var35 = new SpaceWar.SpacePanel(); + float var36 = var35.getAlignmentX(); + var35.setVisible(false); + boolean var39 = var35.isDoubleBuffered(); + java.awt.dnd.DropTarget var40 = var35.getDropTarget(); + var35.show(false); + java.awt.Rectangle var43 = var35.getVisibleRect(); + var28.repaint(var43); + java.awt.FocusTraversalPolicy var45 = var28.getFocusTraversalPolicy(); + java.awt.im.InputMethodRequests var46 = var28.getInputMethodRequests(); + var28.layout(); + boolean var48 = var28.isFocusTraversalPolicyProvider(); + java.lang.Object var49 = var14.getClientProperty((java.lang.Object)var48); + boolean var50 = var14.isFocusTraversable(); + var1.remove((java.awt.Component)var14); + var14.paintImmediately(499, 10, (-1), 1); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var2); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var27); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var29 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var33); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var36 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var39 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var40); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var43); + + // Regression assertion (captures the current behavior of the code) + assertNull(var45); + + // Regression assertion (captures the current behavior of the code) + assertNull(var46); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var48 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var49); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var50 == true); + + } + + public void test347() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test347"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + java.awt.Dimension var4 = var0.getPreferredSize(); + boolean var5 = var0.getVerifyInputWhenFocusTarget(); + java.awt.Component var8 = var0.findComponentAt(10, 1); + boolean var9 = var0.isCursorSet(); + boolean var10 = var0.isFocusTraversalPolicyProvider(); + float var11 = var0.getAlignmentY(); + boolean var12 = var0.isPaintingTile(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var4); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == false); + + } + + public void test348() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test348"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + SpaceWar.SpacePanel var4 = new SpaceWar.SpacePanel(); + java.awt.Color var5 = var4.getBackground(); + var0.setForeground(var5); + SpaceWar.SpacePanel var7 = new SpaceWar.SpacePanel(); + float var8 = var7.getAlignmentX(); + var7.setVisible(false); + boolean var11 = var7.isDoubleBuffered(); + java.awt.dnd.DropTarget var12 = var7.getDropTarget(); + var7.show(false); + java.awt.Rectangle var15 = var7.getVisibleRect(); + var0.repaint(var15); + java.awt.FocusTraversalPolicy var17 = var0.getFocusTraversalPolicy(); + var0.resetKeyboardActions(); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + float var20 = var19.getAlignmentX(); + var19.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var25 = var19.getMouseListeners(); + int var26 = var19.getDebugGraphicsOptions(); + SpaceWar.SpacePanel var27 = new SpaceWar.SpacePanel(); + float var28 = var27.getAlignmentX(); + var27.setVisible(false); + boolean var31 = var27.isDoubleBuffered(); + java.awt.dnd.DropTarget var32 = var27.getDropTarget(); + var27.show(false); + java.awt.Rectangle var35 = var27.getVisibleRect(); + var19.paintImmediately(var35); + var0.setBounds(var35); + boolean var38 = var0.getVerifyInputWhenFocusTarget(); + var0.setFocusTraversalKeysEnabled(false); + var0.validate(); + SpaceWar.SpacePanel var42 = new SpaceWar.SpacePanel(); + float var43 = var42.getAlignmentX(); + var42.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var48 = var42.getUI(); + java.awt.im.InputMethodRequests var49 = var42.getInputMethodRequests(); + SpaceWar.SpacePanel var50 = new SpaceWar.SpacePanel(); + float var51 = var50.getAlignmentX(); + var50.setVisible(false); + var50.nextFocus(); + var50.updateUI(); + var50.enableInputMethods(true); + var50.setSize((-1), 1); + SpaceWar.SpacePanel var61 = new SpaceWar.SpacePanel(); + var61.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var42.add((java.awt.Component)var50, (java.lang.Object)"SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + java.awt.ComponentOrientation var67 = var50.getComponentOrientation(); + java.beans.VetoableChangeListener[] var68 = var50.getVetoableChangeListeners(); + int var69 = var50.countComponents(); + boolean var70 = var50.isFocusOwner(); + var50.enable(false); + var50.nextFocus(); + // The following exception was thrown during execution. + // This behavior will recorded for regression testing. + try { + java.awt.Component var75 = var0.add((java.awt.Component)var50, 10); + fail("Expected exception of type java.lang.IllegalArgumentException"); + } catch (java.lang.IllegalArgumentException e) { + // Expected exception. + } + + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var25); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var28 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var31 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var32); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var35); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var38 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var43 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var48); + + // Regression assertion (captures the current behavior of the code) + assertNull(var49); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var51 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var67); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var68); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var69 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var70 == false); + + } + + public void test349() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test349"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var1 = new SpaceWar.SpacePanel(); + java.awt.Color var2 = var1.getBackground(); + SpaceWar.SpacePanel var3 = new SpaceWar.SpacePanel(); + float var4 = var3.getAlignmentX(); + var3.setVisible(false); + var3.nextFocus(); + var3.updateUI(); + var3.enableInputMethods(true); + var0.add((java.awt.Component)var1, (java.lang.Object)true); + boolean var12 = var0.isMinimumSizeSet(); + java.awt.event.HierarchyListener[] var13 = var0.getHierarchyListeners(); + SpaceWar.SpacePanel var14 = new SpaceWar.SpacePanel(); + float var15 = var14.getAlignmentX(); + var14.setVisible(false); + SpaceWar.SpacePanel var18 = new SpaceWar.SpacePanel(); + java.awt.Color var19 = var18.getBackground(); + var14.setForeground(var19); + SpaceWar.SpacePanel var21 = new SpaceWar.SpacePanel(); + float var22 = var21.getAlignmentX(); + var21.setVisible(false); + boolean var25 = var21.isDoubleBuffered(); + java.awt.dnd.DropTarget var26 = var21.getDropTarget(); + var21.show(false); + java.awt.Rectangle var29 = var21.getVisibleRect(); + var14.repaint(var29); + java.awt.FocusTraversalPolicy var31 = var14.getFocusTraversalPolicy(); + java.awt.im.InputMethodRequests var32 = var14.getInputMethodRequests(); + var14.layout(); + boolean var34 = var14.isFocusTraversalPolicyProvider(); + java.lang.Object var35 = var0.getClientProperty((java.lang.Object)var34); + java.awt.Dimension var36 = var0.getSize(); + boolean var37 = var0.isFocusTraversable(); + var0.show(false); + boolean var40 = var0.isForegroundSet(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var2); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var22 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var29); + + // Regression assertion (captures the current behavior of the code) + assertNull(var31); + + // Regression assertion (captures the current behavior of the code) + assertNull(var32); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var34 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var35); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var36); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var40 == true); + + } + + public void test350() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test350"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.reshape((-1), 1, (-1), 10); + var0.disable(); + var0.show(); + SpaceWar.SpacePanel var12 = new SpaceWar.SpacePanel(); + float var13 = var12.getAlignmentX(); + var12.setVisible(false); + boolean var16 = var12.isDoubleBuffered(); + var12.list(); + SpaceWar.SpacePanel var18 = new SpaceWar.SpacePanel(); + float var19 = var18.getAlignmentX(); + var18.setVisible(false); + boolean var22 = var18.isDoubleBuffered(); + java.awt.dnd.DropTarget var23 = var18.getDropTarget(); + var18.show(false); + java.awt.Rectangle var26 = var18.getVisibleRect(); + java.awt.Rectangle var27 = var12.getBounds(var26); + javax.swing.JToolTip var28 = var12.createToolTip(); + var12.firePropertyChange("", false, false); + var12.validate(); + SpaceWar.SpacePanel var34 = new SpaceWar.SpacePanel(); + float var35 = var34.getAlignmentX(); + var34.setVisible(false); + boolean var38 = var34.isDoubleBuffered(); + java.awt.dnd.DropTarget var39 = var34.getDropTarget(); + var34.show(false); + boolean var42 = var34.isPaintingForPrint(); + SpaceWar.SpacePanel var43 = new SpaceWar.SpacePanel(); + float var44 = var43.getAlignmentX(); + var43.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var49 = var43.getMouseListeners(); + int var50 = var43.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var51 = var43.getInputMethodRequests(); + var34.addKeyListener((java.awt.event.KeyListener)var43); + var43.repaint(); + java.awt.Point var54 = var43.location(); + java.awt.Component var55 = var12.getComponentAt(var54); + java.awt.Point var56 = var0.getLocation(var54); + var0.setAlignmentY(0.5f); + boolean var59 = var0.getVerifyInputWhenFocusTarget(); + boolean var60 = var0.isBackgroundSet(); + java.awt.Dimension var61 = var0.getMinimumSize(); + java.awt.Point var62 = var0.getLocation(); + var0.doLayout(); + java.awt.im.InputMethodRequests var64 = var0.getInputMethodRequests(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var22 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var23); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var27); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var28); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var35 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var38 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var39); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var42 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var44 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var49); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var50 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var51); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var54); + + // Regression assertion (captures the current behavior of the code) + assertNull(var55); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var56); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var59 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var60 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var61); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var62); + + // Regression assertion (captures the current behavior of the code) + assertNull(var64); + + } + + public void test351() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test351"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + var0.enable(false); + SpaceWar.SpacePanel var7 = new SpaceWar.SpacePanel(); + float var8 = var7.getAlignmentX(); + boolean var9 = var7.hasFocus(); + java.awt.Insets var10 = var7.getInsets(); + java.awt.Rectangle var11 = var7.bounds(); + var0.repaint(var11); + boolean var13 = var0.hasFocus(); + float var14 = var0.getAlignmentX(); + var0.resize(1, 1); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == 0.5f); + + } + + public void test352() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test352"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + java.awt.Rectangle var6 = var0.getVisibleRect(); + java.awt.event.MouseListener[] var7 = var0.getMouseListeners(); + int var8 = var0.getDebugGraphicsOptions(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + java.awt.Color var10 = var9.getBackground(); + boolean var13 = var9.inside(0, (-1)); + var9.transferFocusUpCycle(); + java.awt.Container var15 = var9.getParent(); + boolean var16 = var9.isMaximumSizeSet(); + java.awt.event.InputMethodListener[] var17 = var9.getInputMethodListeners(); + javax.swing.TransferHandler var18 = var9.getTransferHandler(); + boolean var19 = var9.getFocusTraversalKeysEnabled(); + java.awt.Component[] var20 = var9.getComponents(); + var0.putClientProperty((java.lang.Object)var20, (java.lang.Object)(byte)(-1)); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + } + + public void test353() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test353"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + java.awt.im.InputMethodRequests var3 = var0.getInputMethodRequests(); + var0.setDoubleBuffered(true); + var0.setInheritsPopupMenu(false); + javax.swing.plaf.PanelUI var8 = var0.getUI(); + java.util.Set var10 = var0.getFocusTraversalKeys(3); + boolean var11 = var0.isPaintingTile(); + javax.swing.InputMap var12 = var0.getInputMap(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var12); + + } + + public void test354() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test354"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + SpaceWar.SpacePanel var2 = new SpaceWar.SpacePanel(); + float var3 = var2.getAlignmentX(); + var2.setVisible(false); + java.awt.Dimension var6 = var2.getPreferredSize(); + boolean var7 = var2.getVerifyInputWhenFocusTarget(); + java.awt.Component var10 = var2.findComponentAt(10, 1); + var0.addKeyListener((java.awt.event.KeyListener)var2); + SpaceWar.SpacePanel var12 = new SpaceWar.SpacePanel(); + float var13 = var12.getAlignmentX(); + SpaceWar.SpacePanel var14 = new SpaceWar.SpacePanel(); + float var15 = var14.getAlignmentX(); + var14.setVisible(false); + java.awt.Dimension var18 = var14.getPreferredSize(); + boolean var19 = var14.getVerifyInputWhenFocusTarget(); + java.awt.Component var22 = var14.findComponentAt(10, 1); + var12.addKeyListener((java.awt.event.KeyListener)var14); + var14.repaint(100, (-1), (-1), 1); + java.awt.image.ColorModel var29 = var14.getColorModel(); + SpaceWar.SpacePanel var30 = new SpaceWar.SpacePanel(); + float var31 = var30.getAlignmentX(); + var30.setVisible(false); + boolean var34 = var30.isDoubleBuffered(); + var30.list(); + SpaceWar.SpacePanel var36 = new SpaceWar.SpacePanel(); + float var37 = var36.getAlignmentX(); + var36.setVisible(false); + boolean var40 = var36.isDoubleBuffered(); + java.awt.dnd.DropTarget var41 = var36.getDropTarget(); + var36.show(false); + java.awt.Rectangle var44 = var36.getVisibleRect(); + java.awt.image.BufferedImage var46 = var36.loadImg("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + boolean var47 = var30.isAncestorOf((java.awt.Component)var36); + javax.swing.InputVerifier var48 = var36.getInputVerifier(); + var2.putClientProperty((java.lang.Object)var14, (java.lang.Object)var36); + java.lang.String var50 = var36.getName(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var29); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var31 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var34 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var40 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var41); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var44); + + // Regression assertion (captures the current behavior of the code) + assertNull(var46); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var47 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var48); + + // Regression assertion (captures the current behavior of the code) + assertNull(var50); + + } + + public void test355() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test355"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + float var7 = var6.getAlignmentX(); + var6.setVisible(false); + java.awt.Dimension var10 = var6.getPreferredSize(); + var0.setMaximumSize(var10); + boolean var12 = var0.getVerifyInputWhenFocusTarget(); + int var13 = var0.getX(); + java.awt.Rectangle var14 = var0.bounds(); + SpaceWar.SpacePanel var15 = new SpaceWar.SpacePanel(); + java.awt.Color var16 = var15.getBackground(); + var15.repaint(); + java.awt.im.InputMethodRequests var18 = var15.getInputMethodRequests(); + int var19 = var15.countComponents(); + java.awt.event.ComponentListener[] var20 = var15.getComponentListeners(); + var15.removeNotify(); + javax.swing.InputMap var22 = var15.getInputMap(); + int var23 = var15.getDebugGraphicsOptions(); + var0.addKeyListener((java.awt.event.KeyListener)var15); + SpaceWar.SpacePanel var25 = new SpaceWar.SpacePanel(); + float var26 = var25.getAlignmentX(); + var25.setVisible(false); + java.awt.Dimension var29 = var25.getPreferredSize(); + boolean var30 = var25.getVerifyInputWhenFocusTarget(); + java.awt.Component var33 = var25.findComponentAt(10, 1); + boolean var34 = var25.requestDefaultFocus(); + java.awt.Insets var35 = var25.getInsets(); + var25.setDoubleBuffered(false); + java.awt.Toolkit var38 = var25.getToolkit(); + java.awt.Dimension var39 = var25.getMinimumSize(); + var15.setPreferredSize(var39); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var29); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var30 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var33); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var34 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var35); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var38); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var39); + + } + + public void test356() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test356"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + var0.setName(""); + java.awt.ComponentOrientation var3 = var0.getComponentOrientation(); + int var4 = var0.getComponentCount(); + var0.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", (byte)1, (byte)0); + java.awt.image.ColorModel var9 = var0.getColorModel(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var9); + + } + + public void test357() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test357"); + + + SpaceWar.Player var0 = new SpaceWar.Player(); + var0.increasePower(25); + int var3 = var0.getR(); + int var4 = var0.getScore(); + var0.loseLife(); + boolean var6 = var0.isRecovering(); + var0.loseLife(); + var0.increasePower(400); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == 25); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == true); + + } + + public void test358() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test358"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + var0.show(false); + java.awt.Rectangle var8 = var0.getVisibleRect(); + java.awt.image.BufferedImage var10 = var0.loadImg("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + java.awt.ComponentOrientation var11 = var0.getComponentOrientation(); + boolean var12 = var0.isPaintingTile(); + boolean var13 = var0.isOptimizedDrawingEnabled(); + java.lang.String var14 = var0.getUIClassID(); + SpaceWar.SpacePanel var15 = new SpaceWar.SpacePanel(); + float var16 = var15.getAlignmentX(); + var15.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var21 = var15.getUI(); + java.awt.im.InputMethodRequests var22 = var15.getInputMethodRequests(); + SpaceWar.SpacePanel var23 = new SpaceWar.SpacePanel(); + float var24 = var23.getAlignmentX(); + var23.setVisible(false); + var23.nextFocus(); + var23.updateUI(); + var23.enableInputMethods(true); + var23.setSize((-1), 1); + SpaceWar.SpacePanel var34 = new SpaceWar.SpacePanel(); + var34.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var15.add((java.awt.Component)var23, (java.lang.Object)"SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + var23.setAutoscrolls(true); + SpaceWar.SpacePanel var42 = new SpaceWar.SpacePanel(); + float var43 = var42.getAlignmentX(); + var42.setVisible(false); + var42.nextFocus(); + var42.reshape((-1), 1, (-1), 10); + var42.disable(); + java.awt.Component var55 = var42.findComponentAt(0, (-1)); + SpaceWar.SpacePanel var56 = new SpaceWar.SpacePanel(); + var56.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + javax.swing.plaf.PanelUI var61 = var56.getUI(); + SpaceWar.SpacePanel var62 = new SpaceWar.SpacePanel(); + float var63 = var62.getAlignmentX(); + var62.setVisible(false); + var62.nextFocus(); + var62.repaint(1L); + SpaceWar.SpacePanel var69 = new SpaceWar.SpacePanel(); + float var70 = var69.getAlignmentX(); + var69.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var75 = new SpaceWar.SpacePanel(); + float var76 = var75.getAlignmentX(); + var75.setVisible(false); + java.awt.Dimension var79 = var75.getPreferredSize(); + var69.setMaximumSize(var79); + var62.setPreferredSize(var79); + var56.setMaximumSize(var79); + var42.setSize(var79); + var23.setMaximumSize(var79); + var0.setMinimumSize(var79); + var0.setFocusable(false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var14 + "' != '" + "PanelUI"+ "'", var14.equals("PanelUI")); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var21); + + // Regression assertion (captures the current behavior of the code) + assertNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var24 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var43 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNull(var55); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var61); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var63 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var70 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var76 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var79); + + } + + public void test359() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test359"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var1 = new SpaceWar.SpacePanel(); + java.awt.Color var2 = var1.getBackground(); + SpaceWar.SpacePanel var3 = new SpaceWar.SpacePanel(); + float var4 = var3.getAlignmentX(); + var3.setVisible(false); + var3.nextFocus(); + var3.updateUI(); + var3.enableInputMethods(true); + var0.add((java.awt.Component)var1, (java.lang.Object)true); + java.awt.Image var14 = var1.createImage(1, (-1)); + java.awt.event.MouseListener[] var15 = var1.getMouseListeners(); + java.awt.Color var16 = var1.getBackground(); + boolean var17 = var1.getIgnoreRepaint(); + var1.enable(); + SpaceWar.Player var19 = new SpaceWar.Player(); + int var20 = var19.getR(); + boolean var21 = var19.isRecovering(); + SpaceWar.SpacePanel var22 = new SpaceWar.SpacePanel(); + java.awt.Color var23 = var22.getBackground(); + var22.repaint(); + var22.setRequestFocusEnabled(false); + var22.setIgnoreRepaint(false); + java.lang.String var29 = var22.toString(); + var1.putClientProperty((java.lang.Object)var21, (java.lang.Object)var29); + boolean var31 = var1.isValid(); + SpaceWar.SpacePanel var32 = new SpaceWar.SpacePanel(); + float var33 = var32.getAlignmentX(); + var32.setVisible(false); + var32.nextFocus(); + var32.reshape((-1), 1, (-1), 10); + var32.disable(); + java.awt.LayoutManager var43 = var32.getLayout(); + boolean var46 = var32.contains((-1), 0); + SpaceWar.SpacePanel var47 = new SpaceWar.SpacePanel(); + float var48 = var47.getAlignmentX(); + var47.setVisible(false); + var47.nextFocus(); + var47.updateUI(); + var47.enableInputMethods(true); + var47.setSize((-1), 1); + java.awt.Component var58 = var32.add((java.awt.Component)var47); + SpaceWar.SpacePanel var59 = new SpaceWar.SpacePanel(); + float var60 = var59.getAlignmentX(); + var59.setVisible(false); + var59.nextFocus(); + var59.updateUI(); + var59.enableInputMethods(true); + java.lang.String var67 = var59.toString(); + java.awt.FocusTraversalPolicy var68 = var59.getFocusTraversalPolicy(); + var47.removeKeyListener((java.awt.event.KeyListener)var59); + var47.show(false); + java.awt.Container var72 = var47.getTopLevelAncestor(); + java.awt.LayoutManager var73 = var47.getLayout(); + var1.setLayout(var73); + java.awt.event.MouseMotionListener[] var75 = var1.getMouseMotionListeners(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var2); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == 25); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var23); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var29 + "' != '" + "SpaceWar.SpacePanel[,0,0,0var29,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"+ "'", var29.equals("SpaceWar.SpacePanel[,0,0,0var29,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]")); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var31 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var33 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var43); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var46 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var48 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var58); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var60 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var67 + "' != '" + "SpaceWar.SpacePanel[,0,0,0var67,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"+ "'", var67.equals("SpaceWar.SpacePanel[,0,0,0var67,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]")); + + // Regression assertion (captures the current behavior of the code) + assertNull(var68); + + // Regression assertion (captures the current behavior of the code) + assertNull(var72); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var73); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var75); + + } + + public void test360() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test360"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + float var7 = var6.getAlignmentX(); + var6.setVisible(false); + java.awt.Dimension var10 = var6.getPreferredSize(); + var0.setMaximumSize(var10); + boolean var12 = var0.getVerifyInputWhenFocusTarget(); + boolean var13 = var0.isFontSet(); + SpaceWar.SpacePanel var14 = new SpaceWar.SpacePanel(); + float var15 = var14.getAlignmentX(); + var14.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var20 = var14.getUI(); + java.awt.im.InputMethodRequests var21 = var14.getInputMethodRequests(); + SpaceWar.SpacePanel var22 = new SpaceWar.SpacePanel(); + float var23 = var22.getAlignmentX(); + var22.setVisible(false); + var22.nextFocus(); + var22.updateUI(); + var22.enableInputMethods(true); + var22.setSize((-1), 1); + SpaceWar.SpacePanel var33 = new SpaceWar.SpacePanel(); + var33.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var14.add((java.awt.Component)var22, (java.lang.Object)"SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + java.awt.ComponentOrientation var39 = var22.getComponentOrientation(); + java.beans.VetoableChangeListener[] var40 = var22.getVetoableChangeListeners(); + int var41 = var22.getHeight(); + var22.enable(true); + boolean var44 = var22.isFocusTraversalPolicyProvider(); + SpaceWar.SpacePanel var45 = new SpaceWar.SpacePanel(); + java.awt.Color var46 = var45.getBackground(); + var45.repaint(); + var45.setRequestFocusEnabled(false); + var45.reshape(100, 0, 100, 0); + var45.requestFocus(); + var45.firePropertyChange("hi!", '4', ' '); + java.awt.Point var60 = var45.getLocation(); + var22.setLocation(var60); + boolean var62 = var22.isManagingFocus(); + int var63 = var0.getComponentZOrder((java.awt.Component)var22); + java.awt.Toolkit var64 = var22.getToolkit(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertNull(var21); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var39); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var40); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var41 == 1); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var44 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var46); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var60); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var62 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var63 == (-1)); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var64); + + } + + public void test361() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test361"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + var0.show(false); + boolean var8 = var0.isPaintingForPrint(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var15 = var9.getMouseListeners(); + int var16 = var9.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var17 = var9.getInputMethodRequests(); + var0.addKeyListener((java.awt.event.KeyListener)var9); + var9.removeNotify(); + SpaceWar.SpacePanel var20 = new SpaceWar.SpacePanel(); + java.awt.Color var21 = var20.getBackground(); + var20.repaint(); + var20.setRequestFocusEnabled(false); + var20.reshape(100, 0, 100, 0); + var20.requestFocus(); + SpaceWar.SpacePanel var31 = new SpaceWar.SpacePanel(); + float var32 = var31.getAlignmentX(); + var31.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var37 = var31.getUI(); + java.awt.im.InputMethodRequests var38 = var31.getInputMethodRequests(); + SpaceWar.SpacePanel var39 = new SpaceWar.SpacePanel(); + float var40 = var39.getAlignmentX(); + var39.setVisible(false); + var39.nextFocus(); + var39.updateUI(); + var39.enableInputMethods(true); + var39.setSize((-1), 1); + SpaceWar.SpacePanel var50 = new SpaceWar.SpacePanel(); + var50.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var31.add((java.awt.Component)var39, (java.lang.Object)"SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + SpaceWar.SpacePanel var56 = new SpaceWar.SpacePanel(); + var56.setName(""); + java.awt.ComponentOrientation var59 = var56.getComponentOrientation(); + var31.applyComponentOrientation(var59); + var20.setComponentOrientation(var59); + var9.applyComponentOrientation(var59); + boolean var63 = var9.getInheritsPopupMenu(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var21); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var32 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var37); + + // Regression assertion (captures the current behavior of the code) + assertNull(var38); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var40 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var59); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var63 == false); + + } + + public void test362() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test362"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + var0.list(); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + float var7 = var6.getAlignmentX(); + var6.setVisible(false); + boolean var10 = var6.isDoubleBuffered(); + java.awt.dnd.DropTarget var11 = var6.getDropTarget(); + var6.show(false); + java.awt.Rectangle var14 = var6.getVisibleRect(); + java.awt.Rectangle var15 = var0.getBounds(var14); + javax.swing.JToolTip var16 = var0.createToolTip(); + var0.firePropertyChange("", false, false); + var0.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", (-1L), (-1L)); + SpaceWar.SpacePanel var25 = new SpaceWar.SpacePanel(); + float var26 = var25.getAlignmentX(); + var25.setVisible(false); + boolean var29 = var25.isDoubleBuffered(); + java.awt.dnd.DropTarget var30 = var25.getDropTarget(); + var25.show(false); + boolean var33 = var25.isPaintingForPrint(); + javax.swing.TransferHandler var34 = var25.getTransferHandler(); + java.util.Locale var35 = var25.getLocale(); + javax.swing.JComponent.setDefaultLocale(var35); + var0.setLocale(var35); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var29 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var30); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var33 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var34); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var35); + + } + + public void test363() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test363"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + java.awt.im.InputMethodRequests var3 = var0.getInputMethodRequests(); + java.awt.GraphicsConfiguration var4 = var0.getGraphicsConfiguration(); + boolean var6 = var0.requestFocus(false); + javax.swing.JPopupMenu var7 = var0.getComponentPopupMenu(); + java.awt.Point var8 = var0.location(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + boolean var11 = var9.hasFocus(); + boolean var12 = var9.isPreferredSizeSet(); + var9.firePropertyChange("", (short)1, (short)0); + boolean var17 = var9.isMaximumSizeSet(); + java.awt.peer.ComponentPeer var18 = var9.getPeer(); + java.awt.ComponentOrientation var19 = var9.getComponentOrientation(); + SpaceWar.SpacePanel var20 = new SpaceWar.SpacePanel(); + float var21 = var20.getAlignmentX(); + var20.setVisible(false); + SpaceWar.SpacePanel var24 = new SpaceWar.SpacePanel(); + java.awt.Color var25 = var24.getBackground(); + var20.setForeground(var25); + SpaceWar.SpacePanel var27 = new SpaceWar.SpacePanel(); + float var28 = var27.getAlignmentX(); + var27.setVisible(false); + boolean var31 = var27.isDoubleBuffered(); + java.awt.dnd.DropTarget var32 = var27.getDropTarget(); + var27.show(false); + java.awt.Rectangle var35 = var27.getVisibleRect(); + var20.repaint(var35); + java.awt.FocusTraversalPolicy var37 = var20.getFocusTraversalPolicy(); + var20.resetKeyboardActions(); + SpaceWar.SpacePanel var39 = new SpaceWar.SpacePanel(); + float var40 = var39.getAlignmentX(); + var39.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var45 = var39.getMouseListeners(); + int var46 = var39.getDebugGraphicsOptions(); + SpaceWar.SpacePanel var47 = new SpaceWar.SpacePanel(); + float var48 = var47.getAlignmentX(); + var47.setVisible(false); + boolean var51 = var47.isDoubleBuffered(); + java.awt.dnd.DropTarget var52 = var47.getDropTarget(); + var47.show(false); + java.awt.Rectangle var55 = var47.getVisibleRect(); + var39.paintImmediately(var55); + var20.setBounds(var55); + java.awt.Rectangle var58 = var9.getBounds(var55); + java.awt.Rectangle var59 = var0.getBounds(var55); + java.awt.Point var60 = var0.location(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertNull(var4); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var25); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var28 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var31 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var32); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var35); + + // Regression assertion (captures the current behavior of the code) + assertNull(var37); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var40 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var45); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var46 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var48 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var51 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var52); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var55); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var58); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var59); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var60); + + } + + public void test364() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test364"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + SpaceWar.SpacePanel var4 = new SpaceWar.SpacePanel(); + java.awt.Color var5 = var4.getBackground(); + var0.setForeground(var5); + SpaceWar.SpacePanel var7 = new SpaceWar.SpacePanel(); + float var8 = var7.getAlignmentX(); + var7.setVisible(false); + boolean var11 = var7.isDoubleBuffered(); + java.awt.dnd.DropTarget var12 = var7.getDropTarget(); + var7.show(false); + java.awt.Rectangle var15 = var7.getVisibleRect(); + var0.repaint(var15); + java.awt.FocusTraversalPolicy var17 = var0.getFocusTraversalPolicy(); + SpaceWar.SpacePanel var18 = new SpaceWar.SpacePanel(); + float var19 = var18.getAlignmentX(); + var18.firePropertyChange("", (-1), 1); + boolean var24 = var18.isFocusOwner(); + SpaceWar.SpacePanel var26 = new SpaceWar.SpacePanel(); + float var27 = var26.getAlignmentX(); + var26.setVisible(false); + java.awt.Dimension var30 = var26.getPreferredSize(); + java.awt.Toolkit var31 = var26.getToolkit(); + SpaceWar.SpacePanel var32 = new SpaceWar.SpacePanel(); + var32.setName(""); + int var35 = var32.getX(); + SpaceWar.SpacePanel var36 = new SpaceWar.SpacePanel(); + float var37 = var36.getAlignmentX(); + var36.setVisible(false); + var36.nextFocus(); + SpaceWar.SpacePanel var41 = new SpaceWar.SpacePanel(); + float var42 = var41.getAlignmentX(); + var41.setVisible(false); + SpaceWar.SpacePanel var45 = new SpaceWar.SpacePanel(); + java.awt.Color var46 = var45.getBackground(); + var41.setForeground(var46); + var36.setBackground(var46); + var32.setBackground(var46); + var26.setForeground(var46); + var18.putClientProperty((java.lang.Object)(byte)100, (java.lang.Object)var46); + var0.setBackground(var46); + javax.swing.JToolTip var53 = var0.createToolTip(); + boolean var54 = var53.isRequestFocusEnabled(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var24 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var30); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var31); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var35 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var42 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var46); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var53); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var54 == true); + + } + + public void test365() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test365"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + var0.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + java.awt.event.ContainerListener[] var5 = var0.getContainerListeners(); + var0.repaint(); + java.awt.image.ColorModel var7 = var0.getColorModel(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var7); + + } + + public void test366() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test366"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + java.awt.Dimension var4 = var0.getPreferredSize(); + java.awt.Toolkit var5 = var0.getToolkit(); + boolean var6 = var0.isFocusable(); + javax.swing.KeyStroke[] var7 = var0.getRegisteredKeyStrokes(); + java.awt.Component var10 = var0.getComponentAt(100, 100); + java.lang.Object var11 = var0.getTreeLock(); + SpaceWar.SpacePanel var12 = new SpaceWar.SpacePanel(); + float var13 = var12.getAlignmentX(); + var12.setVisible(false); + boolean var16 = var12.isDoubleBuffered(); + java.awt.dnd.DropTarget var17 = var12.getDropTarget(); + java.awt.Point var18 = var12.getMousePosition(); + java.lang.String var19 = var12.getUIClassID(); + var0.setNextFocusableComponent((java.awt.Component)var12); + int var21 = var0.getDebugGraphicsOptions(); + var0.setSize(500, 10); + var0.validate(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var4); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var19 + "' != '" + "PanelUI"+ "'", var19.equals("PanelUI")); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == 0); + + } + + public void test367() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test367"); + + + SpaceWar.Enemy var2 = new SpaceWar.Enemy(0, 10); + int var3 = var2.getRank(); + int var4 = var2.getType(); + int var5 = var2.getType(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == 10); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == 0); + + } + + public void test368() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test368"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + var0.enable(false); + boolean var7 = var0.getFocusTraversalKeysEnabled(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + java.awt.Dimension var12 = var8.getPreferredSize(); + java.awt.Toolkit var13 = var8.getToolkit(); + boolean var14 = var8.isFocusable(); + javax.swing.KeyStroke[] var15 = var8.getRegisteredKeyStrokes(); + SpaceWar.SpacePanel var16 = new SpaceWar.SpacePanel(); + float var17 = var16.getAlignmentX(); + SpaceWar.SpacePanel var18 = new SpaceWar.SpacePanel(); + float var19 = var18.getAlignmentX(); + var18.setVisible(false); + java.awt.Dimension var22 = var18.getPreferredSize(); + boolean var23 = var18.getVerifyInputWhenFocusTarget(); + java.awt.Component var26 = var18.findComponentAt(10, 1); + var16.addKeyListener((java.awt.event.KeyListener)var18); + var18.repaint(100, (-1), (-1), 1); + boolean var33 = var8.isAncestorOf((java.awt.Component)var18); + var0.addKeyListener((java.awt.event.KeyListener)var18); + SpaceWar.SpacePanel var36 = new SpaceWar.SpacePanel(); + float var37 = var36.getAlignmentX(); + var36.setVisible(false); + boolean var40 = var36.isDoubleBuffered(); + java.awt.dnd.DropTarget var41 = var36.getDropTarget(); + var36.show(false); + boolean var44 = var36.isPaintingForPrint(); + SpaceWar.SpacePanel var45 = new SpaceWar.SpacePanel(); + float var46 = var45.getAlignmentX(); + var45.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var51 = var45.getMouseListeners(); + int var52 = var45.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var53 = var45.getInputMethodRequests(); + var36.addKeyListener((java.awt.event.KeyListener)var45); + SpaceWar.SpacePanel var55 = new SpaceWar.SpacePanel(); + float var56 = var55.getAlignmentX(); + var55.setVisible(false); + boolean var59 = var55.isDoubleBuffered(); + var55.list(); + float var61 = var55.getAlignmentY(); + boolean var62 = var45.isFocusCycleRoot((java.awt.Container)var55); + SpaceWar.SpacePanel var64 = new SpaceWar.SpacePanel(); + float var65 = var64.getAlignmentX(); + var64.setVisible(false); + var64.nextFocus(); + var64.updateUI(); + java.awt.Component var70 = var45.add("", (java.awt.Component)var64); + java.awt.Component var71 = var18.add("", (java.awt.Component)var64); + var18.layout(); + java.awt.event.HierarchyBoundsListener[] var73 = var18.getHierarchyBoundsListeners(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var33 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var40 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var41); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var44 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var46 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var51); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var52 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var53); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var56 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var59 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var61 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var62 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var65 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var70); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var71); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var73); + + } + + public void test369() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test369"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + java.awt.Dimension var4 = var0.getPreferredSize(); + java.awt.Toolkit var5 = var0.getToolkit(); + java.awt.Toolkit var6 = var0.getToolkit(); + var0.firePropertyChange("hi!", 25, 1); + boolean var11 = var0.isFocusable(); + SpaceWar.SpacePanel var12 = new SpaceWar.SpacePanel(); + var12.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + javax.swing.plaf.PanelUI var17 = var12.getUI(); + java.awt.Color var18 = var12.getBackground(); + var12.removeAll(); + int var20 = var12.getHeight(); + SpaceWar.SpacePanel var21 = new SpaceWar.SpacePanel(); + float var22 = var21.getAlignmentX(); + var21.removeNotify(); + SpaceWar.SpacePanel var24 = new SpaceWar.SpacePanel(); + float var25 = var24.getAlignmentX(); + var24.setVisible(false); + boolean var28 = var24.isDoubleBuffered(); + var24.list(); + float var30 = var24.getAlignmentY(); + java.awt.Insets var31 = var24.getInsets(); + java.awt.Insets var32 = var21.getInsets(var31); + boolean var33 = var21.isDoubleBuffered(); + java.awt.Component var34 = var12.add((java.awt.Component)var21); + SpaceWar.SpacePanel var35 = new SpaceWar.SpacePanel(); + float var36 = var35.getAlignmentX(); + var35.setVisible(false); + boolean var39 = var35.isDoubleBuffered(); + java.awt.dnd.DropTarget var40 = var35.getDropTarget(); + var35.show(false); + boolean var43 = var35.isPaintingForPrint(); + SpaceWar.SpacePanel var44 = new SpaceWar.SpacePanel(); + float var45 = var44.getAlignmentX(); + var44.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var50 = var44.getMouseListeners(); + int var51 = var44.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var52 = var44.getInputMethodRequests(); + var35.addKeyListener((java.awt.event.KeyListener)var44); + SpaceWar.SpacePanel var54 = new SpaceWar.SpacePanel(); + float var55 = var54.getAlignmentX(); + var54.setVisible(false); + boolean var58 = var54.isDoubleBuffered(); + var54.list(); + float var60 = var54.getAlignmentY(); + boolean var61 = var44.isFocusCycleRoot((java.awt.Container)var54); + javax.swing.ActionMap var62 = var44.getActionMap(); + java.awt.Color var63 = var44.getForeground(); + var21.setBackground(var63); + var0.setForeground(var63); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var4); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var22 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var28 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var30 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var31); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var32); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var33 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var34); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var36 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var39 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var40); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var43 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var45 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var50); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var51 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var52); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var55 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var58 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var60 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var61 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var62); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var63); + + } + + public void test370() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test370"); + + + SpaceWar.Explosion var4 = new SpaceWar.Explosion(509.27513824562607d, 383.0566534864913d, 24, 25); + + } + + public void test371() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test371"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + var0.list(); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + float var7 = var6.getAlignmentX(); + var6.setVisible(false); + boolean var10 = var6.isDoubleBuffered(); + java.awt.dnd.DropTarget var11 = var6.getDropTarget(); + var6.show(false); + java.awt.Rectangle var14 = var6.getVisibleRect(); + java.awt.Rectangle var15 = var0.getBounds(var14); + javax.swing.JToolTip var16 = var0.createToolTip(); + var0.firePropertyChange("", false, false); + java.lang.String var21 = var0.getUIClassID(); + java.awt.Point var23 = var0.getMousePosition(true); + // The following exception was thrown during execution. + // This behavior will recorded for regression testing. + try { + java.awt.Component var25 = var0.getComponent(0); + fail("Expected exception of type java.lang.ArrayIndexOutOfBoundsException"); + } catch (java.lang.ArrayIndexOutOfBoundsException e) { + // Expected exception. + } + + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var21 + "' != '" + "PanelUI"+ "'", var21.equals("PanelUI")); + + // Regression assertion (captures the current behavior of the code) + assertNull(var23); + + } + + public void test372() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test372"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + java.awt.Dimension var4 = var0.getPreferredSize(); + java.awt.Toolkit var5 = var0.getToolkit(); + java.awt.Toolkit var6 = var0.getToolkit(); + var0.enable(false); + java.awt.Color var9 = var0.getForeground(); + java.awt.Dimension var10 = var0.getMinimumSize(); + boolean var11 = var0.isOpaque(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var4); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var9); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == true); + + } + + public void test373() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test373"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + java.awt.event.MouseMotionListener[] var6 = var0.getMouseMotionListeners(); + java.awt.event.ComponentListener[] var7 = var0.getComponentListeners(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + var8.nextFocus(); + var8.repaint(1L); + SpaceWar.SpacePanel var15 = new SpaceWar.SpacePanel(); + float var16 = var15.getAlignmentX(); + var15.setVisible(false); + boolean var19 = var15.isDoubleBuffered(); + var15.list(); + SpaceWar.SpacePanel var21 = new SpaceWar.SpacePanel(); + float var22 = var21.getAlignmentX(); + var21.setVisible(false); + boolean var25 = var21.isDoubleBuffered(); + java.awt.dnd.DropTarget var26 = var21.getDropTarget(); + var21.show(false); + java.awt.Rectangle var29 = var21.getVisibleRect(); + java.awt.Rectangle var30 = var15.getBounds(var29); + var8.setBounds(var30); + var0.paintImmediately(var30); + java.awt.Point var33 = var0.getMousePosition(); + boolean var34 = var0.isFocusCycleRoot(); + boolean var37 = var0.contains(500, (-1)); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var22 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var29); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var30); + + // Regression assertion (captures the current behavior of the code) + assertNull(var33); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var34 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == false); + + } + + public void test374() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test374"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + var0.enable(false); + boolean var7 = var0.getFocusTraversalKeysEnabled(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + java.awt.Dimension var12 = var8.getPreferredSize(); + java.awt.Toolkit var13 = var8.getToolkit(); + boolean var14 = var8.isFocusable(); + javax.swing.KeyStroke[] var15 = var8.getRegisteredKeyStrokes(); + SpaceWar.SpacePanel var16 = new SpaceWar.SpacePanel(); + float var17 = var16.getAlignmentX(); + SpaceWar.SpacePanel var18 = new SpaceWar.SpacePanel(); + float var19 = var18.getAlignmentX(); + var18.setVisible(false); + java.awt.Dimension var22 = var18.getPreferredSize(); + boolean var23 = var18.getVerifyInputWhenFocusTarget(); + java.awt.Component var26 = var18.findComponentAt(10, 1); + var16.addKeyListener((java.awt.event.KeyListener)var18); + var18.repaint(100, (-1), (-1), 1); + boolean var33 = var8.isAncestorOf((java.awt.Component)var18); + var0.addKeyListener((java.awt.event.KeyListener)var18); + SpaceWar.SpacePanel var36 = new SpaceWar.SpacePanel(); + float var37 = var36.getAlignmentX(); + var36.setVisible(false); + boolean var40 = var36.isDoubleBuffered(); + java.awt.dnd.DropTarget var41 = var36.getDropTarget(); + var36.show(false); + boolean var44 = var36.isPaintingForPrint(); + SpaceWar.SpacePanel var45 = new SpaceWar.SpacePanel(); + float var46 = var45.getAlignmentX(); + var45.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var51 = var45.getMouseListeners(); + int var52 = var45.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var53 = var45.getInputMethodRequests(); + var36.addKeyListener((java.awt.event.KeyListener)var45); + SpaceWar.SpacePanel var55 = new SpaceWar.SpacePanel(); + float var56 = var55.getAlignmentX(); + var55.setVisible(false); + boolean var59 = var55.isDoubleBuffered(); + var55.list(); + float var61 = var55.getAlignmentY(); + boolean var62 = var45.isFocusCycleRoot((java.awt.Container)var55); + SpaceWar.SpacePanel var64 = new SpaceWar.SpacePanel(); + float var65 = var64.getAlignmentX(); + var64.setVisible(false); + var64.nextFocus(); + var64.updateUI(); + java.awt.Component var70 = var45.add("", (java.awt.Component)var64); + java.awt.Component var71 = var18.add("", (java.awt.Component)var64); + java.awt.event.HierarchyBoundsListener[] var72 = var71.getHierarchyBoundsListeners(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var33 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var40 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var41); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var44 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var46 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var51); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var52 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var53); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var56 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var59 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var61 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var62 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var65 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var70); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var71); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var72); + + } + + public void test375() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test375"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + var0.list(); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + float var7 = var6.getAlignmentX(); + var6.setVisible(false); + boolean var10 = var6.isDoubleBuffered(); + java.awt.dnd.DropTarget var11 = var6.getDropTarget(); + var6.show(false); + java.awt.Rectangle var14 = var6.getVisibleRect(); + java.awt.Rectangle var15 = var0.getBounds(var14); + javax.swing.JToolTip var16 = var0.createToolTip(); + var0.firePropertyChange("", false, false); + var0.revalidate(); + SpaceWar.SpacePanel var22 = new SpaceWar.SpacePanel(); + float var23 = var22.getAlignmentX(); + boolean var24 = var22.hasFocus(); + boolean var25 = var22.isPreferredSizeSet(); + var22.firePropertyChange("", (short)1, (short)0); + SpaceWar.SpacePanel var30 = new SpaceWar.SpacePanel(); + float var31 = var30.getAlignmentX(); + var30.firePropertyChange("", (-1), 1); + boolean var36 = var30.isFocusOwner(); + SpaceWar.SpacePanel var38 = new SpaceWar.SpacePanel(); + float var39 = var38.getAlignmentX(); + var38.setVisible(false); + java.awt.Dimension var42 = var38.getPreferredSize(); + java.awt.Toolkit var43 = var38.getToolkit(); + SpaceWar.SpacePanel var44 = new SpaceWar.SpacePanel(); + var44.setName(""); + int var47 = var44.getX(); + SpaceWar.SpacePanel var48 = new SpaceWar.SpacePanel(); + float var49 = var48.getAlignmentX(); + var48.setVisible(false); + var48.nextFocus(); + SpaceWar.SpacePanel var53 = new SpaceWar.SpacePanel(); + float var54 = var53.getAlignmentX(); + var53.setVisible(false); + SpaceWar.SpacePanel var57 = new SpaceWar.SpacePanel(); + java.awt.Color var58 = var57.getBackground(); + var53.setForeground(var58); + var48.setBackground(var58); + var44.setBackground(var58); + var38.setForeground(var58); + var30.putClientProperty((java.lang.Object)(byte)100, (java.lang.Object)var58); + boolean var64 = var30.isEnabled(); + java.awt.event.ComponentListener[] var65 = var30.getComponentListeners(); + java.awt.Dimension var66 = var30.getPreferredSize(); + var22.setSize(var66); + var0.setSize(var66); + java.awt.event.ComponentListener[] var69 = var0.getComponentListeners(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var24 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var31 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var36 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var39 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var42); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var43); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var47 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var49 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var54 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var58); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var64 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var65); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var66); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var69); + + } + + public void test376() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test376"); + + + SpaceWar.PowerUp var3 = new SpaceWar.PowerUp(499, 495.44236387443226d, 0.0d); + double var4 = var3.getR(); + boolean var5 = var3.update(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0.0d); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == false); + + } + + public void test377() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test377"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + SpaceWar.SpacePanel var5 = new SpaceWar.SpacePanel(); + java.awt.Color var6 = var5.getBackground(); + var5.repaint(); + java.lang.Object var8 = var0.getClientProperty((java.lang.Object)var5); + var5.repaint(10, 1, 25, 0); + java.awt.im.InputMethodRequests var14 = var5.getInputMethodRequests(); + java.awt.event.MouseListener[] var15 = var5.getMouseListeners(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + } + + public void test378() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test378"); + + + SpaceWar.Player var0 = new SpaceWar.Player(); + int var1 = var0.getPower(); + var0.setLeft(true); + var0.increasePower(0); + int var6 = var0.getR(); + var0.setUp(false); + int var9 = var0.getScore(); + int var10 = var0.getScore(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == 25); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0); + + } + + public void test379() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test379"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + SpaceWar.SpacePanel var2 = new SpaceWar.SpacePanel(); + float var3 = var2.getAlignmentX(); + var2.setVisible(false); + java.awt.Dimension var6 = var2.getPreferredSize(); + boolean var7 = var2.getVerifyInputWhenFocusTarget(); + java.awt.Component var10 = var2.findComponentAt(10, 1); + var0.addKeyListener((java.awt.event.KeyListener)var2); + boolean var12 = var2.getFocusTraversalKeysEnabled(); + java.awt.Component var15 = var2.findComponentAt(25, 1); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var15); + + } + + public void test380() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test380"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + java.awt.Dimension var4 = var0.getPreferredSize(); + boolean var5 = var0.getVerifyInputWhenFocusTarget(); + java.awt.Component var8 = var0.findComponentAt(10, 1); + boolean var9 = var0.isCursorSet(); + boolean var10 = var0.isFocusTraversalPolicyProvider(); + java.awt.Rectangle var11 = var0.getBounds(); + java.awt.Dimension var12 = var0.getMaximumSize(); + var0.setAutoscrolls(true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var4); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var12); + + } + + public void test381() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test381"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.reshape((-1), 1, (-1), 10); + var0.disable(); + var0.show(); + SpaceWar.SpacePanel var12 = new SpaceWar.SpacePanel(); + float var13 = var12.getAlignmentX(); + var12.setVisible(false); + boolean var16 = var12.isDoubleBuffered(); + var12.list(); + SpaceWar.SpacePanel var18 = new SpaceWar.SpacePanel(); + float var19 = var18.getAlignmentX(); + var18.setVisible(false); + boolean var22 = var18.isDoubleBuffered(); + java.awt.dnd.DropTarget var23 = var18.getDropTarget(); + var18.show(false); + java.awt.Rectangle var26 = var18.getVisibleRect(); + java.awt.Rectangle var27 = var12.getBounds(var26); + javax.swing.JToolTip var28 = var12.createToolTip(); + var12.firePropertyChange("", false, false); + var12.validate(); + SpaceWar.SpacePanel var34 = new SpaceWar.SpacePanel(); + float var35 = var34.getAlignmentX(); + var34.setVisible(false); + boolean var38 = var34.isDoubleBuffered(); + java.awt.dnd.DropTarget var39 = var34.getDropTarget(); + var34.show(false); + boolean var42 = var34.isPaintingForPrint(); + SpaceWar.SpacePanel var43 = new SpaceWar.SpacePanel(); + float var44 = var43.getAlignmentX(); + var43.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var49 = var43.getMouseListeners(); + int var50 = var43.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var51 = var43.getInputMethodRequests(); + var34.addKeyListener((java.awt.event.KeyListener)var43); + var43.repaint(); + java.awt.Point var54 = var43.location(); + java.awt.Component var55 = var12.getComponentAt(var54); + java.awt.Point var56 = var0.getLocation(var54); + var0.setAlignmentY(0.5f); + SpaceWar.SpacePanel var59 = new SpaceWar.SpacePanel(); + java.awt.Color var60 = var59.getBackground(); + var59.repaint(); + java.awt.im.InputMethodRequests var62 = var59.getInputMethodRequests(); + var59.setDoubleBuffered(true); + SpaceWar.SpacePanel var65 = new SpaceWar.SpacePanel(); + float var66 = var65.getAlignmentX(); + boolean var67 = var65.hasFocus(); + java.awt.Insets var68 = var65.getInsets(); + java.awt.Insets var69 = var59.getInsets(var68); + java.awt.Insets var70 = var0.getInsets(var68); + java.awt.event.FocusListener[] var71 = var0.getFocusListeners(); + java.awt.image.ColorModel var72 = var0.getColorModel(); + java.util.Locale var73 = var0.getLocale(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var22 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var23); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var27); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var28); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var35 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var38 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var39); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var42 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var44 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var49); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var50 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var51); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var54); + + // Regression assertion (captures the current behavior of the code) + assertNull(var55); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var56); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var60); + + // Regression assertion (captures the current behavior of the code) + assertNull(var62); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var66 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var67 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var68); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var69); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var70); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var71); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var72); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var73); + + } + + public void test382() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test382"); + + + SpaceWar.Enemy var2 = new SpaceWar.Enemy(0, 100); + var2.explode(); + boolean var4 = var2.isDead(); + int var5 = var2.getType(); + int var6 = var2.getRank(); + int var7 = var2.getType(); + boolean var8 = var2.isDead(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == 100); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + } + + public void test383() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test383"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var6 = var0.getMouseListeners(); + var0.firePropertyChange("", 0.5f, 100.0f); + SpaceWar.SpacePanel var11 = new SpaceWar.SpacePanel(); + float var12 = var11.getAlignmentX(); + var11.setVisible(false); + var11.nextFocus(); + var11.reshape((-1), 1, (-1), 10); + var11.disable(); + var11.show(); + SpaceWar.SpacePanel var23 = new SpaceWar.SpacePanel(); + float var24 = var23.getAlignmentX(); + var23.setVisible(false); + boolean var27 = var23.isDoubleBuffered(); + var23.list(); + SpaceWar.SpacePanel var29 = new SpaceWar.SpacePanel(); + float var30 = var29.getAlignmentX(); + var29.setVisible(false); + boolean var33 = var29.isDoubleBuffered(); + java.awt.dnd.DropTarget var34 = var29.getDropTarget(); + var29.show(false); + java.awt.Rectangle var37 = var29.getVisibleRect(); + java.awt.Rectangle var38 = var23.getBounds(var37); + javax.swing.JToolTip var39 = var23.createToolTip(); + var23.firePropertyChange("", false, false); + var23.validate(); + SpaceWar.SpacePanel var45 = new SpaceWar.SpacePanel(); + float var46 = var45.getAlignmentX(); + var45.setVisible(false); + boolean var49 = var45.isDoubleBuffered(); + java.awt.dnd.DropTarget var50 = var45.getDropTarget(); + var45.show(false); + boolean var53 = var45.isPaintingForPrint(); + SpaceWar.SpacePanel var54 = new SpaceWar.SpacePanel(); + float var55 = var54.getAlignmentX(); + var54.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var60 = var54.getMouseListeners(); + int var61 = var54.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var62 = var54.getInputMethodRequests(); + var45.addKeyListener((java.awt.event.KeyListener)var54); + var54.repaint(); + java.awt.Point var65 = var54.location(); + java.awt.Component var66 = var23.getComponentAt(var65); + java.awt.Point var67 = var11.getLocation(var65); + var11.setAlignmentY(0.5f); + boolean var70 = var11.getVerifyInputWhenFocusTarget(); + var11.removeNotify(); + SpaceWar.SpacePanel var72 = new SpaceWar.SpacePanel(); + java.awt.Color var73 = var72.getBackground(); + var72.repaint(); + java.awt.im.InputMethodRequests var75 = var72.getInputMethodRequests(); + java.awt.GraphicsConfiguration var76 = var72.getGraphicsConfiguration(); + boolean var78 = var72.requestFocus(false); + java.awt.Dimension var79 = var72.size(); + var11.setPreferredSize(var79); + // The following exception was thrown during execution. + // This behavior will recorded for regression testing. + try { + java.awt.Component var82 = var0.add((java.awt.Component)var11, 500); + fail("Expected exception of type java.lang.IllegalArgumentException"); + } catch (java.lang.IllegalArgumentException e) { + // Expected exception. + } + + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var24 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var30 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var33 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var34); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var37); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var38); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var39); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var46 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var49 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var50); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var53 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var55 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var60); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var61 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var62); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var65); + + // Regression assertion (captures the current behavior of the code) + assertNull(var66); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var67); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var70 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var73); + + // Regression assertion (captures the current behavior of the code) + assertNull(var75); + + // Regression assertion (captures the current behavior of the code) + assertNull(var76); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var78 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var79); + + } + + public void test384() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test384"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.setEnabled(false); + var0.invalidate(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + var8.nextFocus(); + var8.updateUI(); + var8.enableInputMethods(true); + SpaceWar.SpacePanel var16 = new SpaceWar.SpacePanel(); + float var17 = var16.getAlignmentX(); + boolean var18 = var16.hasFocus(); + java.awt.Insets var19 = var16.getInsets(); + java.awt.Insets var20 = var8.getInsets(var19); + boolean var21 = var8.isManagingFocus(); + java.awt.Image var24 = var8.createImage(1, 10); + SpaceWar.SpacePanel var25 = new SpaceWar.SpacePanel(); + float var26 = var25.getAlignmentX(); + var25.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var31 = new SpaceWar.SpacePanel(); + float var32 = var31.getAlignmentX(); + var31.setVisible(false); + java.awt.Dimension var35 = var31.getPreferredSize(); + var25.setMaximumSize(var35); + boolean var37 = var25.getVerifyInputWhenFocusTarget(); + int var38 = var25.getX(); + SpaceWar.SpacePanel var39 = new SpaceWar.SpacePanel(); + float var40 = var39.getAlignmentX(); + var39.setVisible(false); + var39.setEnabled(false); + var8.add((java.awt.Component)var25, (java.lang.Object)false); + boolean var46 = var8.isForegroundSet(); + java.awt.Component var47 = var0.add("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", (java.awt.Component)var8); + var8.revalidate(); + SpaceWar.SpacePanel var49 = new SpaceWar.SpacePanel(); + float var50 = var49.getAlignmentX(); + var49.firePropertyChange("", (-1), 1); + java.awt.Rectangle var55 = var49.getVisibleRect(); + var8.repaint(var55); + SpaceWar.SpacePanel var57 = new SpaceWar.SpacePanel(); + float var58 = var57.getAlignmentX(); + var57.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var63 = var57.getMouseListeners(); + int var64 = var57.getDebugGraphicsOptions(); + SpaceWar.SpacePanel var65 = new SpaceWar.SpacePanel(); + float var66 = var65.getAlignmentX(); + var65.setVisible(false); + boolean var69 = var65.isDoubleBuffered(); + java.awt.dnd.DropTarget var70 = var65.getDropTarget(); + var65.show(false); + java.awt.Rectangle var73 = var65.getVisibleRect(); + var57.paintImmediately(var73); + java.awt.Rectangle var75 = var57.getBounds(); + var8.paintImmediately(var75); + java.awt.event.MouseWheelListener[] var77 = var8.getMouseWheelListeners(); + java.awt.Container var78 = var8.getFocusCycleRootAncestor(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var32 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var35); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var38 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var40 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var46 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var47); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var50 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var55); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var58 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var63); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var64 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var66 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var69 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var70); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var73); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var75); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var77); + + // Regression assertion (captures the current behavior of the code) + assertNull(var78); + + } + + public void test385() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test385"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + var0.show(false); + boolean var8 = var0.isPaintingForPrint(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var15 = var9.getMouseListeners(); + int var16 = var9.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var17 = var9.getInputMethodRequests(); + var0.addKeyListener((java.awt.event.KeyListener)var9); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + float var20 = var19.getAlignmentX(); + var19.setVisible(false); + boolean var23 = var19.isDoubleBuffered(); + var19.list(); + float var25 = var19.getAlignmentY(); + boolean var26 = var9.isFocusCycleRoot((java.awt.Container)var19); + java.awt.event.MouseListener[] var27 = var19.getMouseListeners(); + boolean var28 = var19.isDisplayable(); + var19.setRequestFocusEnabled(true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var27); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var28 == false); + + } + + public void test386() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test386"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + SpaceWar.SpacePanel var4 = new SpaceWar.SpacePanel(); + java.awt.Color var5 = var4.getBackground(); + var0.setForeground(var5); + SpaceWar.SpacePanel var7 = new SpaceWar.SpacePanel(); + float var8 = var7.getAlignmentX(); + var7.setVisible(false); + boolean var11 = var7.isDoubleBuffered(); + java.awt.dnd.DropTarget var12 = var7.getDropTarget(); + var7.show(false); + java.awt.Rectangle var15 = var7.getVisibleRect(); + var0.repaint(var15); + java.awt.FocusTraversalPolicy var17 = var0.getFocusTraversalPolicy(); + SpaceWar.SpacePanel var18 = new SpaceWar.SpacePanel(); + float var19 = var18.getAlignmentX(); + var18.firePropertyChange("", (-1), 1); + boolean var24 = var18.isFocusOwner(); + SpaceWar.SpacePanel var26 = new SpaceWar.SpacePanel(); + float var27 = var26.getAlignmentX(); + var26.setVisible(false); + java.awt.Dimension var30 = var26.getPreferredSize(); + java.awt.Toolkit var31 = var26.getToolkit(); + SpaceWar.SpacePanel var32 = new SpaceWar.SpacePanel(); + var32.setName(""); + int var35 = var32.getX(); + SpaceWar.SpacePanel var36 = new SpaceWar.SpacePanel(); + float var37 = var36.getAlignmentX(); + var36.setVisible(false); + var36.nextFocus(); + SpaceWar.SpacePanel var41 = new SpaceWar.SpacePanel(); + float var42 = var41.getAlignmentX(); + var41.setVisible(false); + SpaceWar.SpacePanel var45 = new SpaceWar.SpacePanel(); + java.awt.Color var46 = var45.getBackground(); + var41.setForeground(var46); + var36.setBackground(var46); + var32.setBackground(var46); + var26.setForeground(var46); + var18.putClientProperty((java.lang.Object)(byte)100, (java.lang.Object)var46); + var0.setBackground(var46); + java.awt.ComponentOrientation var53 = var0.getComponentOrientation(); + boolean var54 = var0.requestDefaultFocus(); + java.lang.String var55 = var0.getToolTipText(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var24 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var30); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var31); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var35 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var42 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var46); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var53); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var54 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var55); + + } + + public void test387() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test387"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + java.awt.Color var7 = var6.getBackground(); + var6.repaint(); + var6.setRequestFocusEnabled(false); + var6.reshape(100, 0, 100, 0); + var6.requestFocus(); + SpaceWar.SpacePanel var17 = new SpaceWar.SpacePanel(); + float var18 = var17.getAlignmentX(); + var17.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var23 = var17.getUI(); + java.awt.im.InputMethodRequests var24 = var17.getInputMethodRequests(); + SpaceWar.SpacePanel var25 = new SpaceWar.SpacePanel(); + float var26 = var25.getAlignmentX(); + var25.setVisible(false); + var25.nextFocus(); + var25.updateUI(); + var25.enableInputMethods(true); + var25.setSize((-1), 1); + SpaceWar.SpacePanel var36 = new SpaceWar.SpacePanel(); + var36.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var17.add((java.awt.Component)var25, (java.lang.Object)"SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + SpaceWar.SpacePanel var42 = new SpaceWar.SpacePanel(); + var42.setName(""); + java.awt.ComponentOrientation var45 = var42.getComponentOrientation(); + var17.applyComponentOrientation(var45); + var6.setComponentOrientation(var45); + var0.applyComponentOrientation(var45); + boolean var49 = var0.isPaintingForPrint(); + java.awt.Component[] var50 = var0.getComponents(); + java.awt.Insets var51 = var0.insets(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var23); + + // Regression assertion (captures the current behavior of the code) + assertNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var45); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var49 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var50); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var51); + + } + + public void test388() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test388"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.updateUI(); + var0.enableInputMethods(true); + java.lang.String var8 = var0.toString(); + java.awt.Container var9 = var0.getParent(); + var0.setFocusTraversalPolicyProvider(false); + java.lang.String var12 = var0.getToolTipText(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var8 + "' != '" + "SpaceWar.SpacePanel[,0,0,0var8,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"+ "'", var8.equals("SpaceWar.SpacePanel[,0,0,0var8,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]")); + + // Regression assertion (captures the current behavior of the code) + assertNull(var9); + + // Regression assertion (captures the current behavior of the code) + assertNull(var12); + + } + + public void test389() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test389"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + var0.setRequestFocusEnabled(false); + var0.setIgnoreRepaint(false); + java.lang.String var7 = var0.toString(); + java.awt.Color var8 = var0.getBackground(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.setVisible(false); + java.awt.Dimension var13 = var9.getPreferredSize(); + java.awt.Toolkit var14 = var9.getToolkit(); + java.awt.Toolkit var15 = var9.getToolkit(); + SpaceWar.Player var16 = new SpaceWar.Player(); + var16.increasePower(25); + int var19 = var16.getScore(); + var16.setRigth(true); + var16.loseLife(); + var0.putClientProperty((java.lang.Object)var9, (java.lang.Object)var16); + SpaceWar.SpacePanel var24 = new SpaceWar.SpacePanel(); + float var25 = var24.getAlignmentX(); + var24.setVisible(false); + var24.setInheritsPopupMenu(false); + var24.move(10, 10); + var24.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + java.awt.event.KeyListener[] var37 = var24.getKeyListeners(); + var9.removeKeyListener((java.awt.event.KeyListener)var24); + var24.doLayout(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var7 + "' != '" + "SpaceWar.SpacePanel[,0,0,0var7,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"+ "'", var7.equals("SpaceWar.SpacePanel[,0,0,0var7,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]")); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var37); + + } + + public void test390() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test390"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + java.awt.im.InputMethodRequests var3 = var0.getInputMethodRequests(); + var0.setDoubleBuffered(true); + var0.show(false); + var0.setAlignmentY(100.0f); + SpaceWar.SpacePanel var10 = new SpaceWar.SpacePanel(); + float var11 = var10.getAlignmentX(); + var10.setVisible(false); + SpaceWar.SpacePanel var14 = new SpaceWar.SpacePanel(); + java.awt.Color var15 = var14.getBackground(); + var10.setForeground(var15); + SpaceWar.SpacePanel var17 = new SpaceWar.SpacePanel(); + float var18 = var17.getAlignmentX(); + var17.setVisible(false); + boolean var21 = var17.isDoubleBuffered(); + java.awt.dnd.DropTarget var22 = var17.getDropTarget(); + var17.show(false); + java.awt.Rectangle var25 = var17.getVisibleRect(); + var10.repaint(var25); + java.awt.FocusTraversalPolicy var27 = var10.getFocusTraversalPolicy(); + java.awt.im.InputMethodRequests var28 = var10.getInputMethodRequests(); + var10.layout(); + boolean var30 = var10.isFocusTraversalPolicyProvider(); + java.awt.Insets var31 = var10.insets(); + java.awt.Dimension var32 = var10.getMinimumSize(); + java.awt.Dimension var33 = var0.getSize(var32); + var0.enable(); + SpaceWar.SpacePanel var35 = new SpaceWar.SpacePanel(); + java.awt.Color var36 = var35.getBackground(); + var35.repaint(); + var35.setRequestFocusEnabled(false); + var35.reshape(100, 0, 100, 0); + java.beans.VetoableChangeListener[] var45 = var35.getVetoableChangeListeners(); + java.awt.Rectangle var46 = var35.getVisibleRect(); + float var47 = var35.getAlignmentY(); + SpaceWar.SpacePanel var48 = new SpaceWar.SpacePanel(); + java.awt.Color var49 = var48.getBackground(); + var48.repaint(); + java.awt.im.InputMethodRequests var51 = var48.getInputMethodRequests(); + int var52 = var48.countComponents(); + java.awt.Dimension var53 = var48.getSize(); + var35.setPreferredSize(var53); + var0.setPreferredSize(var53); + java.awt.Dimension var56 = var0.preferredSize(); + // The following exception was thrown during execution. + // This behavior will recorded for regression testing. + try { + var0.remove((-1)); + fail("Expected exception of type java.lang.ArrayIndexOutOfBoundsException"); + } catch (java.lang.ArrayIndexOutOfBoundsException e) { + // Expected exception. + } + + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var25); + + // Regression assertion (captures the current behavior of the code) + assertNull(var27); + + // Regression assertion (captures the current behavior of the code) + assertNull(var28); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var30 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var31); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var32); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var33); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var36); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var45); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var46); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var47 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var49); + + // Regression assertion (captures the current behavior of the code) + assertNull(var51); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var52 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var53); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var56); + + } + + public void test391() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test391"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + java.awt.im.InputMethodRequests var3 = var0.getInputMethodRequests(); + java.awt.GraphicsConfiguration var4 = var0.getGraphicsConfiguration(); + boolean var6 = var0.requestFocus(false); + SpaceWar.SpacePanel var7 = new SpaceWar.SpacePanel(); + float var8 = var7.getAlignmentX(); + var7.setVisible(false); + java.awt.Dimension var11 = var7.getPreferredSize(); + java.awt.Toolkit var12 = var7.getToolkit(); + SpaceWar.SpacePanel var13 = new SpaceWar.SpacePanel(); + var13.setName(""); + int var16 = var13.getX(); + SpaceWar.SpacePanel var17 = new SpaceWar.SpacePanel(); + float var18 = var17.getAlignmentX(); + var17.setVisible(false); + var17.nextFocus(); + SpaceWar.SpacePanel var22 = new SpaceWar.SpacePanel(); + float var23 = var22.getAlignmentX(); + var22.setVisible(false); + SpaceWar.SpacePanel var26 = new SpaceWar.SpacePanel(); + java.awt.Color var27 = var26.getBackground(); + var22.setForeground(var27); + var17.setBackground(var27); + var13.setBackground(var27); + var7.setForeground(var27); + SpaceWar.SpacePanel var32 = new SpaceWar.SpacePanel(); + float var33 = var32.getAlignmentX(); + var32.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var38 = new SpaceWar.SpacePanel(); + float var39 = var38.getAlignmentX(); + var38.setVisible(false); + java.awt.Dimension var42 = var38.getPreferredSize(); + var32.setMaximumSize(var42); + boolean var44 = var32.getVerifyInputWhenFocusTarget(); + javax.accessibility.AccessibleContext var45 = var32.getAccessibleContext(); + boolean var46 = var32.isDoubleBuffered(); + java.awt.Rectangle var47 = var32.getVisibleRect(); + var7.scrollRectToVisible(var47); + SpaceWar.SpacePanel var49 = new SpaceWar.SpacePanel(); + float var50 = var49.getAlignmentX(); + var49.setVisible(false); + java.awt.Dimension var53 = var49.getPreferredSize(); + java.awt.Toolkit var54 = var49.getToolkit(); + SpaceWar.SpacePanel var55 = new SpaceWar.SpacePanel(); + var55.setName(""); + int var58 = var55.getX(); + SpaceWar.SpacePanel var59 = new SpaceWar.SpacePanel(); + float var60 = var59.getAlignmentX(); + var59.setVisible(false); + var59.nextFocus(); + SpaceWar.SpacePanel var64 = new SpaceWar.SpacePanel(); + float var65 = var64.getAlignmentX(); + var64.setVisible(false); + SpaceWar.SpacePanel var68 = new SpaceWar.SpacePanel(); + java.awt.Color var69 = var68.getBackground(); + var64.setForeground(var69); + var59.setBackground(var69); + var55.setBackground(var69); + var49.setForeground(var69); + SpaceWar.SpacePanel var74 = new SpaceWar.SpacePanel(); + float var75 = var74.getAlignmentX(); + var74.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var80 = new SpaceWar.SpacePanel(); + float var81 = var80.getAlignmentX(); + var80.setVisible(false); + java.awt.Dimension var84 = var80.getPreferredSize(); + var74.setMaximumSize(var84); + boolean var86 = var74.getVerifyInputWhenFocusTarget(); + javax.accessibility.AccessibleContext var87 = var74.getAccessibleContext(); + boolean var88 = var74.isDoubleBuffered(); + java.awt.Rectangle var89 = var74.getVisibleRect(); + var49.scrollRectToVisible(var89); + var7.removeKeyListener((java.awt.event.KeyListener)var49); + var49.firePropertyChange("PanelUI", (short)1, (short)1); + java.lang.String var96 = var49.getToolTipText(); + int var97 = var49.getY(); + var0.remove((java.awt.Component)var49); + java.awt.im.InputMethodRequests var99 = var0.getInputMethodRequests(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertNull(var4); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var27); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var33 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var39 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var42); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var44 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var45); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var46 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var47); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var50 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var53); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var54); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var58 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var60 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var65 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var69); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var75 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var81 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var84); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var86 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var87); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var88 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var89); + + // Regression assertion (captures the current behavior of the code) + assertNull(var96); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var97 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var99); + + } + + public void test392() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test392"); + + + SpaceWar.Enemy var2 = new SpaceWar.Enemy(399, 0); + + } + + public void test393() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test393"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + var0.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + javax.swing.plaf.PanelUI var5 = var0.getUI(); + java.awt.Insets var6 = var0.getInsets(); + java.awt.Container var7 = var0.getFocusCycleRootAncestor(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertNull(var7); + + } + + public void test394() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test394"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + var0.setRequestFocusEnabled(false); + var0.reshape(100, 0, 100, 0); + java.beans.VetoableChangeListener[] var10 = var0.getVetoableChangeListeners(); + var0.setFocusCycleRoot(true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var10); + + } + + public void test395() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test395"); + + + SpaceWar.Enemy var2 = new SpaceWar.Enemy(25, (-1)); + boolean var3 = var2.isDead(); + var2.hit(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == false); + + } + + public void test396() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test396"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.updateUI(); + var0.enableInputMethods(true); + java.awt.Point var8 = var0.location(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.setVisible(false); + boolean var13 = var9.isDoubleBuffered(); + var9.list(); + SpaceWar.SpacePanel var15 = new SpaceWar.SpacePanel(); + float var16 = var15.getAlignmentX(); + var15.setVisible(false); + boolean var19 = var15.isDoubleBuffered(); + java.awt.dnd.DropTarget var20 = var15.getDropTarget(); + var15.show(false); + java.awt.Rectangle var23 = var15.getVisibleRect(); + java.awt.image.BufferedImage var25 = var15.loadImg("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + boolean var26 = var9.isAncestorOf((java.awt.Component)var15); + float var27 = var9.getAlignmentX(); + java.awt.image.VolatileImage var30 = var9.createVolatileImage(25, 1); + SpaceWar.SpacePanel var31 = new SpaceWar.SpacePanel(); + var31.setName(""); + java.awt.ComponentOrientation var34 = var31.getComponentOrientation(); + var9.remove((java.awt.Component)var31); + java.awt.Dimension var36 = var31.minimumSize(); + SpaceWar.SpacePanel var37 = new SpaceWar.SpacePanel(); + float var38 = var37.getAlignmentX(); + var37.setVisible(false); + var37.setInheritsPopupMenu(false); + var37.setFocusTraversalPolicyProvider(true); + boolean var47 = var37.inside(25, 3); + SpaceWar.SpacePanel var48 = new SpaceWar.SpacePanel(); + float var49 = var48.getAlignmentX(); + var48.setVisible(false); + boolean var52 = var48.isDoubleBuffered(); + java.awt.dnd.DropTarget var53 = var48.getDropTarget(); + var48.show(false); + boolean var56 = var48.isPaintingForPrint(); + SpaceWar.SpacePanel var57 = new SpaceWar.SpacePanel(); + float var58 = var57.getAlignmentX(); + SpaceWar.SpacePanel var59 = new SpaceWar.SpacePanel(); + float var60 = var59.getAlignmentX(); + var59.setVisible(false); + java.awt.Dimension var63 = var59.getPreferredSize(); + boolean var64 = var59.getVerifyInputWhenFocusTarget(); + java.awt.Component var67 = var59.findComponentAt(10, 1); + var57.addKeyListener((java.awt.event.KeyListener)var59); + java.awt.Dimension var69 = var59.getMinimumSize(); + var48.setMinimumSize(var69); + var37.setPreferredSize(var69); + boolean var73 = var37.requestFocus(true); + var37.reshape((-1), 10, 24, 0); + java.awt.event.MouseWheelListener[] var79 = var37.getMouseWheelListeners(); + java.awt.FocusTraversalPolicy var80 = var37.getFocusTraversalPolicy(); + var31.setFocusTraversalPolicy(var80); + var0.setFocusTraversalPolicy(var80); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var23); + + // Regression assertion (captures the current behavior of the code) + assertNull(var25); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNull(var30); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var34); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var36); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var38 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var47 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var49 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var52 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var53); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var56 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var58 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var60 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var63); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var64 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var67); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var69); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var73 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var79); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var80); + + } + + public void test397() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test397"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var1 = new SpaceWar.SpacePanel(); + java.awt.Color var2 = var1.getBackground(); + SpaceWar.SpacePanel var3 = new SpaceWar.SpacePanel(); + float var4 = var3.getAlignmentX(); + var3.setVisible(false); + var3.nextFocus(); + var3.updateUI(); + var3.enableInputMethods(true); + var0.add((java.awt.Component)var1, (java.lang.Object)true); + boolean var13 = var1.areFocusTraversalKeysSet(0); + SpaceWar.SpacePanel var14 = new SpaceWar.SpacePanel(); + float var15 = var14.getAlignmentX(); + var14.setVisible(false); + boolean var18 = var14.isDoubleBuffered(); + java.awt.dnd.DropTarget var19 = var14.getDropTarget(); + var14.show(false); + java.awt.Rectangle var22 = var14.getVisibleRect(); + var1.setBounds(var22); + java.awt.event.ContainerListener[] var24 = var1.getContainerListeners(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var2); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var24); + + } + + public void test398() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test398"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var6 = var0.getMouseListeners(); + int var7 = var0.getDebugGraphicsOptions(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + boolean var12 = var8.isDoubleBuffered(); + java.awt.dnd.DropTarget var13 = var8.getDropTarget(); + var8.show(false); + java.awt.Rectangle var16 = var8.getVisibleRect(); + var0.paintImmediately(var16); + var0.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", '#', '#'); + var0.resetKeyboardActions(); + SpaceWar.SpacePanel var23 = new SpaceWar.SpacePanel(); + float var24 = var23.getAlignmentX(); + var23.setVisible(false); + java.awt.Dimension var27 = var23.getPreferredSize(); + java.awt.Toolkit var28 = var23.getToolkit(); + boolean var29 = var23.isFocusable(); + javax.swing.KeyStroke[] var30 = var23.getRegisteredKeyStrokes(); + var23.setFocusCycleRoot(false); + SpaceWar.SpacePanel var33 = new SpaceWar.SpacePanel(); + float var34 = var33.getAlignmentX(); + var33.setVisible(false); + var33.nextFocus(); + var33.reshape((-1), 1, (-1), 10); + var33.disable(); + boolean var44 = var33.isFocusable(); + int var45 = var33.getHeight(); + javax.swing.InputVerifier var46 = var33.getInputVerifier(); + java.awt.Graphics var47 = var33.getGraphics(); + java.awt.Color var48 = var33.getForeground(); + var23.setBackground(var48); + var0.setNextFocusableComponent((java.awt.Component)var23); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var24 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var27); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var28); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var29 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var30); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var34 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var44 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var45 == 10); + + // Regression assertion (captures the current behavior of the code) + assertNull(var46); + + // Regression assertion (captures the current behavior of the code) + assertNull(var47); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var48); + + } + + public void test399() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test399"); + + + SpaceWar.Enemy var2 = new SpaceWar.Enemy(1, 1); + var2.explode(); + + } + + public void test400() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test400"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + boolean var2 = var0.hasFocus(); + java.beans.VetoableChangeListener[] var3 = var0.getVetoableChangeListeners(); + var0.paintImmediately(10, 0, (-1), 25); + boolean var9 = var0.getInheritsPopupMenu(); + var0.resize(500, 10); + SpaceWar.SpacePanel var13 = new SpaceWar.SpacePanel(); + float var14 = var13.getAlignmentX(); + var13.setVisible(false); + boolean var17 = var13.isDoubleBuffered(); + SpaceWar.SpacePanel var18 = new SpaceWar.SpacePanel(); + float var19 = var18.getAlignmentX(); + var18.setVisible(false); + var18.nextFocus(); + var18.reshape((-1), 1, (-1), 10); + var18.disable(); + boolean var29 = var18.isFocusable(); + int var30 = var18.getHeight(); + var13.setNextFocusableComponent((java.awt.Component)var18); + SpaceWar.SpacePanel var32 = new SpaceWar.SpacePanel(); + float var33 = var32.getAlignmentX(); + var32.setVisible(false); + var32.nextFocus(); + SpaceWar.SpacePanel var37 = new SpaceWar.SpacePanel(); + float var38 = var37.getAlignmentX(); + var37.setVisible(false); + SpaceWar.SpacePanel var41 = new SpaceWar.SpacePanel(); + java.awt.Color var42 = var41.getBackground(); + var37.setForeground(var42); + var32.setBackground(var42); + java.awt.Component var45 = var32.getNextFocusableComponent(); + float var46 = var32.getAlignmentY(); + java.awt.event.MouseListener[] var47 = var32.getMouseListeners(); + java.awt.Point var48 = var32.location(); + java.awt.Point var49 = var13.getLocation(var48); + var0.setLocation(var49); + boolean var51 = var0.isMinimumSizeSet(); + SpaceWar.SpacePanel var52 = new SpaceWar.SpacePanel(); + float var53 = var52.getAlignmentX(); + var52.setVisible(false); + var52.nextFocus(); + var52.requestFocus(); + boolean var58 = var52.getInheritsPopupMenu(); + boolean var59 = var52.isShowing(); + boolean var60 = var52.isCursorSet(); + java.awt.Dimension var61 = var52.getPreferredSize(); + var0.resize(var61); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var2 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var29 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var30 == 10); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var33 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var38 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var42); + + // Regression assertion (captures the current behavior of the code) + assertNull(var45); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var46 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var47); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var48); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var49); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var51 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var53 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var58 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var59 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var60 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var61); + + } + + public void test401() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test401"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + boolean var6 = var0.isFocusCycleRoot(); + var0.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", 100, 0); + SpaceWar.SpacePanel var11 = new SpaceWar.SpacePanel(); + float var12 = var11.getAlignmentX(); + var11.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var17 = var11.getUI(); + var0.add((java.awt.Component)var11, (java.lang.Object)(short)0); + java.awt.event.InputMethodListener[] var20 = var11.getInputMethodListeners(); + boolean var23 = var11.contains(2, 3); + var11.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", (short)1, (short)1); + var11.setDoubleBuffered(true); + var11.addNotify(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == false); + + } + + public void test402() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test402"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + var0.setRequestFocusEnabled(false); + var0.setIgnoreRepaint(false); + java.lang.String var7 = var0.toString(); + java.awt.Color var8 = var0.getBackground(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.setVisible(false); + java.awt.Dimension var13 = var9.getPreferredSize(); + java.awt.Toolkit var14 = var9.getToolkit(); + java.awt.Toolkit var15 = var9.getToolkit(); + SpaceWar.Player var16 = new SpaceWar.Player(); + var16.increasePower(25); + int var19 = var16.getScore(); + var16.setRigth(true); + var16.loseLife(); + var0.putClientProperty((java.lang.Object)var9, (java.lang.Object)var16); + int var24 = var16.getPowerLevel(); + int var25 = var16.getLives(); + int var26 = var16.getR(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var7 + "' != '" + "SpaceWar.SpacePanel[,0,0,0var7,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"+ "'", var7.equals("SpaceWar.SpacePanel[,0,0,0var7,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]")); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var24 == 1); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == 2); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == 25); + + } + + public void test403() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test403"); + + + SpaceWar.Enemy var2 = new SpaceWar.Enemy(400, 0); + double var3 = var2.getX(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == 215.19350638961689d); + + } + + public void test404() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test404"); + + + SpaceWar.Bullet var3 = new SpaceWar.Bullet((-8.529389630162045d), 400, 2); + + } + + public void test405() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test405"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + boolean var5 = javax.swing.JComponent.isLightweightComponent((java.awt.Component)var0); + java.awt.event.MouseWheelListener[] var6 = var0.getMouseWheelListeners(); + boolean var7 = var0.isValid(); + java.awt.Component var8 = var0.getNextFocusableComponent(); + boolean var10 = var0.requestFocus(true); + boolean var12 = var0.requestFocus(true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == false); + + } + + public void test406() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test406"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + java.awt.Dimension var4 = var0.getPreferredSize(); + boolean var5 = var0.getVerifyInputWhenFocusTarget(); + java.awt.Component var8 = var0.findComponentAt(10, 1); + boolean var9 = var0.requestDefaultFocus(); + var0.firePropertyChange("hi!", false, true); + boolean var14 = var0.isManagingFocus(); + SpaceWar.SpacePanel var15 = new SpaceWar.SpacePanel(); + java.awt.Color var16 = var15.getBackground(); + var15.repaint(); + var15.setRequestFocusEnabled(false); + var15.setIgnoreRepaint(false); + java.lang.String var22 = var15.toString(); + var15.repaint(1L, 400, 25, (-1), 25); + java.awt.Container var29 = var15.getParent(); + java.awt.Rectangle var30 = var15.getVisibleRect(); + var0.computeVisibleRect(var30); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var4); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var22 + "' != '" + "SpaceWar.SpacePanel[,0,0,0var22,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"+ "'", var22.equals("SpaceWar.SpacePanel[,0,0,0var22,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]")); + + // Regression assertion (captures the current behavior of the code) + assertNull(var29); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var30); + + } + + public void test407() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test407"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var1 = new SpaceWar.SpacePanel(); + java.awt.Color var2 = var1.getBackground(); + SpaceWar.SpacePanel var3 = new SpaceWar.SpacePanel(); + float var4 = var3.getAlignmentX(); + var3.setVisible(false); + var3.nextFocus(); + var3.updateUI(); + var3.enableInputMethods(true); + var0.add((java.awt.Component)var1, (java.lang.Object)true); + boolean var12 = var0.isMinimumSizeSet(); + java.awt.event.HierarchyListener[] var13 = var0.getHierarchyListeners(); + SpaceWar.SpacePanel var14 = new SpaceWar.SpacePanel(); + float var15 = var14.getAlignmentX(); + var14.setVisible(false); + SpaceWar.SpacePanel var18 = new SpaceWar.SpacePanel(); + java.awt.Color var19 = var18.getBackground(); + var14.setForeground(var19); + SpaceWar.SpacePanel var21 = new SpaceWar.SpacePanel(); + float var22 = var21.getAlignmentX(); + var21.setVisible(false); + boolean var25 = var21.isDoubleBuffered(); + java.awt.dnd.DropTarget var26 = var21.getDropTarget(); + var21.show(false); + java.awt.Rectangle var29 = var21.getVisibleRect(); + var14.repaint(var29); + java.awt.FocusTraversalPolicy var31 = var14.getFocusTraversalPolicy(); + java.awt.im.InputMethodRequests var32 = var14.getInputMethodRequests(); + var14.layout(); + boolean var34 = var14.isFocusTraversalPolicyProvider(); + java.lang.Object var35 = var0.getClientProperty((java.lang.Object)var34); + java.awt.Dimension var36 = var0.getSize(); + boolean var37 = var0.isFocusTraversable(); + SpaceWar.SpacePanel var38 = new SpaceWar.SpacePanel(); + float var39 = var38.getAlignmentX(); + var38.setVisible(false); + var38.nextFocus(); + var38.updateUI(); + var38.enableInputMethods(true); + var38.resetKeyboardActions(); + var0.removeKeyListener((java.awt.event.KeyListener)var38); + SpaceWar.SpacePanel var48 = new SpaceWar.SpacePanel(); + float var49 = var48.getAlignmentX(); + var48.setVisible(false); + boolean var52 = var48.isDoubleBuffered(); + java.awt.dnd.DropTarget var53 = var48.getDropTarget(); + var48.show(false); + boolean var56 = var48.isPaintingForPrint(); + SpaceWar.SpacePanel var57 = new SpaceWar.SpacePanel(); + float var58 = var57.getAlignmentX(); + var57.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var63 = var57.getMouseListeners(); + int var64 = var57.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var65 = var57.getInputMethodRequests(); + var48.addKeyListener((java.awt.event.KeyListener)var57); + boolean var67 = var48.isDisplayable(); + java.awt.Dimension var68 = var48.getPreferredSize(); + var0.setSize(var68); + var0.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", '4', ' '); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var2); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var22 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var29); + + // Regression assertion (captures the current behavior of the code) + assertNull(var31); + + // Regression assertion (captures the current behavior of the code) + assertNull(var32); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var34 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var35); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var36); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var39 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var49 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var52 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var53); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var56 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var58 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var63); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var64 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var65); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var67 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var68); + + } + + public void test408() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test408"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + var0.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + javax.swing.plaf.PanelUI var5 = var0.getUI(); + boolean var6 = var0.isDisplayable(); + SpaceWar.SpacePanel var7 = new SpaceWar.SpacePanel(); + float var8 = var7.getAlignmentX(); + var7.removeNotify(); + SpaceWar.SpacePanel var10 = new SpaceWar.SpacePanel(); + float var11 = var10.getAlignmentX(); + var10.setVisible(false); + boolean var14 = var10.isDoubleBuffered(); + var10.list(); + float var16 = var10.getAlignmentY(); + java.awt.Insets var17 = var10.getInsets(); + java.awt.Insets var18 = var7.getInsets(var17); + java.awt.Insets var19 = var0.getInsets(var18); + // The following exception was thrown during execution. + // This behavior will recorded for regression testing. + try { + java.awt.Point var20 = var0.getLocationOnScreen(); + fail("Expected exception of type java.awt.IllegalComponentStateException"); + } catch (java.awt.IllegalComponentStateException e) { + // Expected exception. + } + + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var19); + + } + + public void test409() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test409"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + var0.setRequestFocusEnabled(false); + var0.reshape(100, 0, 100, 0); + var0.requestFocus(); + var0.firePropertyChange("hi!", '4', ' '); + java.awt.Point var15 = var0.getLocation(); + java.awt.Dimension var16 = var0.size(); + java.awt.Image var19 = var0.createImage((-1), (-1)); + java.awt.event.ComponentListener[] var20 = var0.getComponentListeners(); + SpaceWar.SpacePanel var21 = new SpaceWar.SpacePanel(); + var21.setName(""); + java.awt.ComponentOrientation var24 = var21.getComponentOrientation(); + var21.firePropertyChange("PanelUI", 1.0f, 0.5f); + int var29 = var0.getComponentZOrder((java.awt.Component)var21); + boolean var30 = var21.isEnabled(); + SpaceWar.SpacePanel var31 = new SpaceWar.SpacePanel(); + java.awt.Color var32 = var31.getBackground(); + var31.repaint(); + var31.setRequestFocusEnabled(false); + var31.reshape(100, 0, 100, 0); + var31.requestFocus(); + var31.firePropertyChange("hi!", '4', ' '); + java.awt.Point var46 = var31.getLocation(); + java.awt.Dimension var47 = var31.size(); + java.awt.Image var50 = var31.createImage((-1), (-1)); + java.awt.event.ComponentListener[] var51 = var31.getComponentListeners(); + var31.updateUI(); + var21.addKeyListener((java.awt.event.KeyListener)var31); + java.util.Locale var54 = var21.getLocale(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var29 == (-1)); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var30 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var32); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var46); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var47); + + // Regression assertion (captures the current behavior of the code) + assertNull(var50); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var51); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var54); + + } + + public void test410() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test410"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.reshape((-1), 1, (-1), 10); + var0.disable(); + java.awt.LayoutManager var11 = var0.getLayout(); + boolean var14 = var0.contains((-1), 0); + SpaceWar.SpacePanel var15 = new SpaceWar.SpacePanel(); + float var16 = var15.getAlignmentX(); + var15.setVisible(false); + var15.nextFocus(); + var15.updateUI(); + var15.enableInputMethods(true); + var15.setSize((-1), 1); + java.awt.Component var26 = var0.add((java.awt.Component)var15); + SpaceWar.SpacePanel var27 = new SpaceWar.SpacePanel(); + float var28 = var27.getAlignmentX(); + var27.setVisible(false); + var27.nextFocus(); + var27.updateUI(); + var27.enableInputMethods(true); + java.lang.String var35 = var27.toString(); + java.awt.FocusTraversalPolicy var36 = var27.getFocusTraversalPolicy(); + var15.removeKeyListener((java.awt.event.KeyListener)var27); + javax.swing.event.AncestorListener[] var38 = var15.getAncestorListeners(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var28 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var35 + "' != '" + "SpaceWar.SpacePanel[,0,0,0var35,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"+ "'", var35.equals("SpaceWar.SpacePanel[,0,0,0var35,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]")); + + // Regression assertion (captures the current behavior of the code) + assertNull(var36); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var38); + + } + + public void test411() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test411"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var6 = var0.getUI(); + java.awt.im.InputMethodRequests var7 = var0.getInputMethodRequests(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + var8.nextFocus(); + var8.updateUI(); + var8.enableInputMethods(true); + var8.setSize((-1), 1); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + var19.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var0.add((java.awt.Component)var8, (java.lang.Object)"SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + var8.setAutoscrolls(true); + java.awt.Image var29 = var8.createImage(400, 400); + var8.enableInputMethods(true); + var8.setFocusable(false); + var8.transferFocus(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNull(var29); + + } + + public void test412() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test412"); + + + SpaceWar.PowerUp var3 = new SpaceWar.PowerUp(100, (-1.0d), 0.0d); + double var4 = var3.getX(); + double var5 = var3.getY(); + double var6 = var3.getY(); + int var7 = var3.getType(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == (-1.0d)); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == 0.0d); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == 0.0d); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 100); + + } + + public void test413() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test413"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + SpaceWar.SpacePanel var5 = new SpaceWar.SpacePanel(); + float var6 = var5.getAlignmentX(); + var5.setVisible(false); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + java.awt.Color var10 = var9.getBackground(); + var5.setForeground(var10); + var0.setBackground(var10); + java.awt.Component var13 = var0.getNextFocusableComponent(); + float var14 = var0.getAlignmentY(); + var0.setFocusTraversalPolicyProvider(true); + int var19 = var0.getBaseline(400, 1); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == (-1)); + + } + + public void test414() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test414"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + SpaceWar.SpacePanel var2 = new SpaceWar.SpacePanel(); + float var3 = var2.getAlignmentX(); + var2.setVisible(false); + java.awt.Dimension var6 = var2.getPreferredSize(); + boolean var7 = var2.getVerifyInputWhenFocusTarget(); + java.awt.Component var10 = var2.findComponentAt(10, 1); + var0.addKeyListener((java.awt.event.KeyListener)var2); + var2.repaint(100, (-1), (-1), 1); + java.awt.image.ColorModel var17 = var2.getColorModel(); + java.awt.event.MouseWheelListener[] var18 = var2.getMouseWheelListeners(); + var2.repaint(); + java.awt.Color var20 = var2.getForeground(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + } + + public void test415() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test415"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + var0.list(); + float var6 = var0.getAlignmentY(); + boolean var7 = var0.isOpaque(); + var0.resetKeyboardActions(); + boolean var9 = var0.isFocusTraversalPolicyProvider(); + java.awt.im.InputContext var10 = var0.getInputContext(); + var0.setFocusTraversalKeysEnabled(true); + boolean var15 = var0.contains(399, 499); + SpaceWar.SpacePanel var16 = new SpaceWar.SpacePanel(); + var16.setName(""); + var16.enable(true); + var16.enable(); + java.awt.Point var22 = var16.location(); + var16.repaint(0, 3, (-1), 1); + var16.setBounds(25, 100, 1, 0); + java.awt.Insets var33 = var16.getInsets(); + java.awt.peer.ComponentPeer var34 = var16.getPeer(); + javax.swing.KeyStroke[] var35 = var16.getRegisteredKeyStrokes(); + SpaceWar.SpacePanel var36 = new SpaceWar.SpacePanel(); + float var37 = var36.getAlignmentX(); + SpaceWar.SpacePanel var38 = new SpaceWar.SpacePanel(); + float var39 = var38.getAlignmentX(); + var38.setVisible(false); + java.awt.Dimension var42 = var38.getPreferredSize(); + boolean var43 = var38.getVerifyInputWhenFocusTarget(); + java.awt.Component var46 = var38.findComponentAt(10, 1); + var36.addKeyListener((java.awt.event.KeyListener)var38); + boolean var48 = var38.getFocusTraversalKeysEnabled(); + var38.requestFocus(); + var38.layout(); + // The following exception was thrown during execution. + // This behavior will recorded for regression testing. + try { + var0.add((java.awt.Component)var16, (java.lang.Object)var38, 399); + fail("Expected exception of type java.lang.IllegalArgumentException"); + } catch (java.lang.IllegalArgumentException e) { + // Expected exception. + } + + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var33); + + // Regression assertion (captures the current behavior of the code) + assertNull(var34); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var35); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var39 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var42); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var43 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var46); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var48 == true); + + } + + public void test416() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test416"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.updateUI(); + java.util.Locale var6 = var0.getLocale(); + var0.paintImmediately(25, 100, 3, 0); + boolean var12 = var0.isCursorSet(); + boolean var13 = var0.isCursorSet(); + SpaceWar.SpacePanel var15 = new SpaceWar.SpacePanel(); + float var16 = var15.getAlignmentX(); + var15.setVisible(false); + var15.nextFocus(); + var15.reshape((-1), 1, (-1), 10); + java.util.Set var26 = var15.getFocusTraversalKeys(3); + // The following exception was thrown during execution. + // This behavior will recorded for regression testing. + try { + var0.setFocusTraversalKeys(500, var26); + fail("Expected exception of type java.lang.IllegalArgumentException"); + } catch (java.lang.IllegalArgumentException e) { + // Expected exception. + } + + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var26); + + } + + public void test417() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test417"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var1 = new SpaceWar.SpacePanel(); + java.awt.Color var2 = var1.getBackground(); + SpaceWar.SpacePanel var3 = new SpaceWar.SpacePanel(); + float var4 = var3.getAlignmentX(); + var3.setVisible(false); + var3.nextFocus(); + var3.updateUI(); + var3.enableInputMethods(true); + var0.add((java.awt.Component)var1, (java.lang.Object)true); + boolean var12 = var0.isMinimumSizeSet(); + java.awt.event.HierarchyListener[] var13 = var0.getHierarchyListeners(); + int var14 = var0.getComponentCount(); + SpaceWar.SpacePanel var15 = new SpaceWar.SpacePanel(); + java.awt.Color var16 = var15.getBackground(); + var15.repaint(); + var15.setRequestFocusEnabled(false); + var15.removeAll(); + var0.setNextFocusableComponent((java.awt.Component)var15); + boolean var22 = var15.isFocusCycleRoot(); + SpaceWar.SpacePanel var24 = new SpaceWar.SpacePanel(); + float var25 = var24.getAlignmentX(); + var24.setVisible(false); + var24.setInheritsPopupMenu(false); + var24.move(10, 10); + var24.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + java.awt.event.KeyListener[] var37 = var24.getKeyListeners(); + SpaceWar.SpacePanel var38 = new SpaceWar.SpacePanel(); + float var39 = var38.getAlignmentX(); + var38.setVisible(false); + boolean var42 = var38.isDoubleBuffered(); + java.awt.dnd.DropTarget var43 = var38.getDropTarget(); + var38.show(false); + boolean var46 = var38.isPaintingForPrint(); + SpaceWar.SpacePanel var47 = new SpaceWar.SpacePanel(); + float var48 = var47.getAlignmentX(); + var47.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var53 = var47.getMouseListeners(); + int var54 = var47.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var55 = var47.getInputMethodRequests(); + var38.addKeyListener((java.awt.event.KeyListener)var47); + SpaceWar.SpacePanel var57 = new SpaceWar.SpacePanel(); + float var58 = var57.getAlignmentX(); + var57.setVisible(false); + boolean var61 = var57.isDoubleBuffered(); + var57.list(); + float var63 = var57.getAlignmentY(); + boolean var64 = var47.isFocusCycleRoot((java.awt.Container)var57); + var57.firePropertyChange("", 1L, 1L); + var57.setAutoscrolls(false); + var57.setAlignmentX(100.0f); + var24.remove((java.awt.Component)var57); + java.awt.Component var74 = var15.add("SpaceWar.SpacePanel[,0,0,0x0,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", (java.awt.Component)var24); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var2); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == 1); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var22 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var37); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var39 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var42 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var43); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var46 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var48 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var53); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var54 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var55); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var58 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var61 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var63 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var64 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var74); + + } + + public void test418() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test418"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var1 = new SpaceWar.SpacePanel(); + java.awt.Color var2 = var1.getBackground(); + SpaceWar.SpacePanel var3 = new SpaceWar.SpacePanel(); + float var4 = var3.getAlignmentX(); + var3.setVisible(false); + var3.nextFocus(); + var3.updateUI(); + var3.enableInputMethods(true); + var0.add((java.awt.Component)var1, (java.lang.Object)true); + java.awt.Image var14 = var1.createImage(1, (-1)); + java.awt.event.MouseListener[] var15 = var1.getMouseListeners(); + java.awt.Color var16 = var1.getBackground(); + boolean var17 = var1.getIgnoreRepaint(); + var1.enable(); + javax.swing.JToolTip var19 = var1.createToolTip(); + java.awt.image.ColorModel var20 = var1.getColorModel(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var2); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + } + + public void test419() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test419"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var6 = var0.getUI(); + java.awt.im.InputMethodRequests var7 = var0.getInputMethodRequests(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + var8.nextFocus(); + var8.updateUI(); + var8.enableInputMethods(true); + var8.setSize((-1), 1); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + var19.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var0.add((java.awt.Component)var8, (java.lang.Object)"SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + java.awt.ComponentOrientation var25 = var8.getComponentOrientation(); + java.beans.VetoableChangeListener[] var26 = var8.getVetoableChangeListeners(); + int var27 = var8.countComponents(); + boolean var28 = var8.isFocusOwner(); + var8.enable(false); + var8.nextFocus(); + java.awt.Rectangle var32 = var8.getBounds(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var25); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var28 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var32); + + } + + public void test420() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test420"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var1 = new SpaceWar.SpacePanel(); + java.awt.Color var2 = var1.getBackground(); + SpaceWar.SpacePanel var3 = new SpaceWar.SpacePanel(); + float var4 = var3.getAlignmentX(); + var3.setVisible(false); + var3.nextFocus(); + var3.updateUI(); + var3.enableInputMethods(true); + var0.add((java.awt.Component)var1, (java.lang.Object)true); + java.awt.Image var14 = var1.createImage(1, (-1)); + java.awt.event.MouseListener[] var15 = var1.getMouseListeners(); + java.awt.Color var16 = var1.getBackground(); + boolean var17 = var1.getIgnoreRepaint(); + var1.enable(); + javax.swing.JToolTip var19 = var1.createToolTip(); + SpaceWar.SpacePanel var20 = new SpaceWar.SpacePanel(); + var20.setName(""); + java.awt.Graphics var23 = var20.getGraphics(); + SpaceWar.SpacePanel var24 = new SpaceWar.SpacePanel(); + float var25 = var24.getAlignmentX(); + var24.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var30 = new SpaceWar.SpacePanel(); + float var31 = var30.getAlignmentX(); + var30.setVisible(false); + java.awt.Dimension var34 = var30.getPreferredSize(); + var24.setMaximumSize(var34); + boolean var36 = var24.getVerifyInputWhenFocusTarget(); + int var37 = var24.getX(); + SpaceWar.SpacePanel var38 = new SpaceWar.SpacePanel(); + float var39 = var38.getAlignmentX(); + SpaceWar.SpacePanel var40 = new SpaceWar.SpacePanel(); + float var41 = var40.getAlignmentX(); + var40.setVisible(false); + java.awt.Dimension var44 = var40.getPreferredSize(); + boolean var45 = var40.getVerifyInputWhenFocusTarget(); + java.awt.Component var48 = var40.findComponentAt(10, 1); + var38.addKeyListener((java.awt.event.KeyListener)var40); + var40.repaint(100, (-1), (-1), 1); + SpaceWar.SpacePanel var55 = new SpaceWar.SpacePanel(); + java.awt.Color var56 = var55.getBackground(); + var55.repaint(); + java.awt.im.InputMethodRequests var58 = var55.getInputMethodRequests(); + java.awt.GraphicsConfiguration var59 = var55.getGraphicsConfiguration(); + var40.remove((java.awt.Component)var55); + java.awt.Font var61 = var55.getFont(); + var24.setFont(var61); + var20.setFont(var61); + java.awt.FontMetrics var64 = var1.getFontMetrics(var61); + java.lang.Object var65 = var1.getTreeLock(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var2); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertNull(var23); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var31 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var34); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var36 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var39 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var41 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var44); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var45 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var48); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var56); + + // Regression assertion (captures the current behavior of the code) + assertNull(var58); + + // Regression assertion (captures the current behavior of the code) + assertNull(var59); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var61); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var64); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var65); + + } + + public void test421() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test421"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var6 = var0.getMouseListeners(); + int var7 = var0.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var8 = var0.getInputMethodRequests(); + var0.removeNotify(); + var0.enable(); + java.lang.Object var11 = var0.getTreeLock(); + java.awt.event.HierarchyBoundsListener[] var12 = var0.getHierarchyBoundsListeners(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var12); + + } + + public void test422() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test422"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var6 = var0.getUI(); + java.awt.im.InputMethodRequests var7 = var0.getInputMethodRequests(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + var8.nextFocus(); + var8.updateUI(); + var8.enableInputMethods(true); + var8.setSize((-1), 1); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + var19.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var0.add((java.awt.Component)var8, (java.lang.Object)"SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + java.awt.peer.ComponentPeer var25 = var8.getPeer(); + boolean var26 = var8.isShowing(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNull(var25); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == false); + + } + + public void test423() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test423"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.reshape((-1), 1, (-1), 10); + var0.disable(); + java.awt.Component var13 = var0.findComponentAt(0, (-1)); + SpaceWar.SpacePanel var14 = new SpaceWar.SpacePanel(); + var14.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + javax.swing.plaf.PanelUI var19 = var14.getUI(); + SpaceWar.SpacePanel var20 = new SpaceWar.SpacePanel(); + float var21 = var20.getAlignmentX(); + var20.setVisible(false); + var20.nextFocus(); + var20.repaint(1L); + SpaceWar.SpacePanel var27 = new SpaceWar.SpacePanel(); + float var28 = var27.getAlignmentX(); + var27.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var33 = new SpaceWar.SpacePanel(); + float var34 = var33.getAlignmentX(); + var33.setVisible(false); + java.awt.Dimension var37 = var33.getPreferredSize(); + var27.setMaximumSize(var37); + var20.setPreferredSize(var37); + var14.setMaximumSize(var37); + var0.setSize(var37); + java.awt.image.VolatileImage var44 = var0.createVolatileImage(25, 399); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var28 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var34 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var37); + + // Regression assertion (captures the current behavior of the code) + assertNull(var44); + + } + + public void test424() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test424"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + SpaceWar.SpacePanel var2 = new SpaceWar.SpacePanel(); + float var3 = var2.getAlignmentX(); + var2.setVisible(false); + java.awt.Dimension var6 = var2.getPreferredSize(); + boolean var7 = var2.getVerifyInputWhenFocusTarget(); + java.awt.Component var10 = var2.findComponentAt(10, 1); + var0.addKeyListener((java.awt.event.KeyListener)var2); + java.lang.String var12 = var2.getUIClassID(); + float var13 = var2.getAlignmentY(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var12 + "' != '" + "PanelUI"+ "'", var12.equals("PanelUI")); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == 0.5f); + + } + + public void test425() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test425"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + SpaceWar.SpacePanel var4 = new SpaceWar.SpacePanel(); + java.awt.Color var5 = var4.getBackground(); + var0.setForeground(var5); + SpaceWar.SpacePanel var7 = new SpaceWar.SpacePanel(); + float var8 = var7.getAlignmentX(); + var7.setVisible(false); + boolean var11 = var7.isDoubleBuffered(); + java.awt.dnd.DropTarget var12 = var7.getDropTarget(); + var7.show(false); + java.awt.Rectangle var15 = var7.getVisibleRect(); + var0.repaint(var15); + java.awt.Component.BaselineResizeBehavior var17 = var0.getBaselineResizeBehavior(); + var0.firePropertyChange("SpaceWar.SpacePanel[,-1,1,-1x10,invalid,hidden,disabled,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", 1L, 1L); + boolean var22 = var0.isFocusTraversable(); + java.awt.Insets var23 = var0.insets(); + java.awt.event.MouseListener[] var24 = var0.getMouseListeners(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var22 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var23); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var24); + + } + + public void test426() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test426"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + var0.enable(false); + boolean var7 = var0.getFocusTraversalKeysEnabled(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + java.awt.Dimension var12 = var8.getPreferredSize(); + java.awt.Toolkit var13 = var8.getToolkit(); + boolean var14 = var8.isFocusable(); + javax.swing.KeyStroke[] var15 = var8.getRegisteredKeyStrokes(); + SpaceWar.SpacePanel var16 = new SpaceWar.SpacePanel(); + float var17 = var16.getAlignmentX(); + SpaceWar.SpacePanel var18 = new SpaceWar.SpacePanel(); + float var19 = var18.getAlignmentX(); + var18.setVisible(false); + java.awt.Dimension var22 = var18.getPreferredSize(); + boolean var23 = var18.getVerifyInputWhenFocusTarget(); + java.awt.Component var26 = var18.findComponentAt(10, 1); + var16.addKeyListener((java.awt.event.KeyListener)var18); + var18.repaint(100, (-1), (-1), 1); + boolean var33 = var8.isAncestorOf((java.awt.Component)var18); + var0.addKeyListener((java.awt.event.KeyListener)var18); + boolean var35 = var18.isPaintingTile(); + java.beans.PropertyChangeListener[] var37 = var18.getPropertyChangeListeners("SpaceWar.SpacePanel[,0,0,0x0,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + SpaceWar.SpacePanel var38 = new SpaceWar.SpacePanel(); + float var39 = var38.getAlignmentX(); + var38.setVisible(false); + var38.nextFocus(); + var38.updateUI(); + var38.enableInputMethods(true); + var38.setSize((-1), 1); + boolean var51 = var38.contains(1, 1); + java.awt.Component var54 = var38.getComponentAt(100, 3); + SpaceWar.SpacePanel var55 = new SpaceWar.SpacePanel(); + float var56 = var55.getAlignmentX(); + var55.setVisible(false); + boolean var59 = var55.isDoubleBuffered(); + java.awt.dnd.DropTarget var60 = var55.getDropTarget(); + var55.show(false); + boolean var63 = var55.isPaintingForPrint(); + SpaceWar.SpacePanel var64 = new SpaceWar.SpacePanel(); + float var65 = var64.getAlignmentX(); + var64.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var70 = var64.getMouseListeners(); + int var71 = var64.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var72 = var64.getInputMethodRequests(); + var55.addKeyListener((java.awt.event.KeyListener)var64); + var64.repaint(); + java.awt.Point var75 = var64.location(); + java.awt.Point var76 = var38.getLocation(var75); + boolean var77 = var18.contains(var76); + java.awt.Dimension var78 = var18.getMaximumSize(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var33 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var35 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var37); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var39 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var51 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var54); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var56 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var59 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var60); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var63 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var65 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var70); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var71 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var72); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var75); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var76); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var77 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var78); + + } + + public void test427() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test427"); + + + SpaceWar.Bullet var3 = new SpaceWar.Bullet((-14.294084445243069d), 10, 499); + boolean var4 = var3.update(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == false); + + } + + public void test428() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test428"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + SpaceWar.SpacePanel var4 = new SpaceWar.SpacePanel(); + java.awt.Color var5 = var4.getBackground(); + var0.setForeground(var5); + SpaceWar.SpacePanel var7 = new SpaceWar.SpacePanel(); + float var8 = var7.getAlignmentX(); + var7.setVisible(false); + boolean var11 = var7.isDoubleBuffered(); + java.awt.dnd.DropTarget var12 = var7.getDropTarget(); + var7.show(false); + java.awt.Rectangle var15 = var7.getVisibleRect(); + var0.repaint(var15); + java.awt.FocusTraversalPolicy var17 = var0.getFocusTraversalPolicy(); + javax.swing.TransferHandler var18 = var0.getTransferHandler(); + java.awt.Component var19 = var0.getNextFocusableComponent(); + java.awt.image.VolatileImage var22 = var0.createVolatileImage(10, (-1)); + var0.setVisible(false); + SpaceWar.SpacePanel var25 = new SpaceWar.SpacePanel(); + float var26 = var25.getAlignmentX(); + var25.setVisible(false); + boolean var29 = var25.isDoubleBuffered(); + java.awt.dnd.DropTarget var30 = var25.getDropTarget(); + var25.show(false); + boolean var33 = var25.isPaintingForPrint(); + SpaceWar.SpacePanel var34 = new SpaceWar.SpacePanel(); + float var35 = var34.getAlignmentX(); + var34.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var40 = var34.getMouseListeners(); + int var41 = var34.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var42 = var34.getInputMethodRequests(); + var25.addKeyListener((java.awt.event.KeyListener)var34); + SpaceWar.SpacePanel var44 = new SpaceWar.SpacePanel(); + float var45 = var44.getAlignmentX(); + var44.setVisible(false); + boolean var48 = var44.isDoubleBuffered(); + var44.list(); + float var50 = var44.getAlignmentY(); + boolean var51 = var34.isFocusCycleRoot((java.awt.Container)var44); + boolean var52 = var44.isEnabled(); + java.awt.Dimension var53 = var44.getMaximumSize(); + var44.disable(); + var44.updateUI(); + java.lang.Object var56 = var0.getClientProperty((java.lang.Object)var44); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var29 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var30); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var33 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var35 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var40); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var41 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var42); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var45 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var48 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var50 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var51 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var52 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var53); + + // Regression assertion (captures the current behavior of the code) + assertNull(var56); + + } + + public void test429() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test429"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.setEnabled(false); + java.awt.Image var8 = var0.createImage(10, 100); + javax.swing.KeyStroke[] var9 = var0.getRegisteredKeyStrokes(); + java.awt.event.MouseWheelListener[] var10 = var0.getMouseWheelListeners(); + int var11 = var0.getWidth(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var9); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == 0); + + } + + public void test430() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test430"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + var0.show(false); + boolean var8 = var0.isPaintingForPrint(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var15 = var9.getMouseListeners(); + int var16 = var9.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var17 = var9.getInputMethodRequests(); + var0.addKeyListener((java.awt.event.KeyListener)var9); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + float var20 = var19.getAlignmentX(); + var19.setVisible(false); + boolean var23 = var19.isDoubleBuffered(); + var19.list(); + float var25 = var19.getAlignmentY(); + boolean var26 = var9.isFocusCycleRoot((java.awt.Container)var19); + javax.swing.JPopupMenu var27 = var19.getComponentPopupMenu(); + var19.move((-1), 100); + var19.validate(); + var19.setAlignmentY(0.0f); + boolean var34 = var19.isValid(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var27); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var34 == false); + + } + + public void test431() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test431"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + java.awt.Dimension var4 = var0.getPreferredSize(); + boolean var5 = var0.getVerifyInputWhenFocusTarget(); + java.awt.Component var8 = var0.findComponentAt(10, 1); + boolean var9 = var0.requestDefaultFocus(); + boolean var10 = var0.isPaintingTile(); + SpaceWar.SpacePanel var11 = new SpaceWar.SpacePanel(); + var11.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + javax.swing.plaf.PanelUI var16 = var11.getUI(); + java.awt.Color var17 = var11.getBackground(); + var0.addKeyListener((java.awt.event.KeyListener)var11); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + java.awt.Color var20 = var19.getBackground(); + var19.repaint(); + java.awt.im.InputMethodRequests var22 = var19.getInputMethodRequests(); + var19.setDoubleBuffered(true); + SpaceWar.SpacePanel var25 = new SpaceWar.SpacePanel(); + float var26 = var25.getAlignmentX(); + boolean var27 = var25.hasFocus(); + java.awt.Insets var28 = var25.getInsets(); + java.awt.Insets var29 = var19.getInsets(var28); + SpaceWar.SpacePanel var30 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var31 = new SpaceWar.SpacePanel(); + java.awt.Color var32 = var31.getBackground(); + SpaceWar.SpacePanel var33 = new SpaceWar.SpacePanel(); + float var34 = var33.getAlignmentX(); + var33.setVisible(false); + var33.nextFocus(); + var33.updateUI(); + var33.enableInputMethods(true); + var30.add((java.awt.Component)var31, (java.lang.Object)true); + java.awt.Image var44 = var31.createImage(1, (-1)); + SpaceWar.SpacePanel var45 = new SpaceWar.SpacePanel(); + float var46 = var45.getAlignmentX(); + var45.setVisible(false); + var45.nextFocus(); + var45.updateUI(); + var45.enableInputMethods(true); + SpaceWar.SpacePanel var53 = new SpaceWar.SpacePanel(); + float var54 = var53.getAlignmentX(); + boolean var55 = var53.hasFocus(); + java.awt.Insets var56 = var53.getInsets(); + java.awt.Insets var57 = var45.getInsets(var56); + java.awt.Insets var58 = var31.getInsets(var56); + java.awt.Insets var59 = var19.getInsets(var56); + java.awt.Insets var60 = var0.getInsets(var56); + var0.resetKeyboardActions(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var4); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var28); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var29); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var32); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var34 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNull(var44); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var46 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var54 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var55 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var56); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var57); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var58); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var59); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var60); + + } + + public void test432() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test432"); + + + SpaceWar.PowerUp var3 = new SpaceWar.PowerUp(100, (-1.0d), 0.0d); + double var4 = var3.getR(); + double var5 = var3.getY(); + double var6 = var3.getY(); + int var7 = var3.getType(); + int var8 = var3.getType(); + double var9 = var3.getX(); + double var10 = var3.getR(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0.0d); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == 0.0d); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == 0.0d); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 100); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 100); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == (-1.0d)); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.0d); + + } + + public void test433() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test433"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + java.awt.im.InputMethodRequests var3 = var0.getInputMethodRequests(); + int var4 = var0.countComponents(); + java.awt.event.MouseMotionListener[] var5 = var0.getMouseMotionListeners(); + java.awt.Dimension var6 = var0.size(); + boolean var7 = var0.isMinimumSizeSet(); + var0.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", (byte)1, (byte)10); + boolean var12 = var0.isFocusTraversable(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == true); + + } + + public void test434() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test434"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + var0.setRequestFocusEnabled(false); + var0.reshape(100, 0, 100, 0); + var0.requestFocus(); + var0.firePropertyChange("hi!", '4', ' '); + java.awt.Point var15 = var0.getLocation(); + java.awt.Dimension var16 = var0.size(); + java.awt.Image var19 = var0.createImage((-1), (-1)); + SpaceWar.SpacePanel var20 = new SpaceWar.SpacePanel(); + float var21 = var20.getAlignmentX(); + var20.setVisible(false); + boolean var24 = var20.isDoubleBuffered(); + java.awt.dnd.DropTarget var25 = var20.getDropTarget(); + var20.show(false); + boolean var28 = var20.isPaintingForPrint(); + SpaceWar.SpacePanel var29 = new SpaceWar.SpacePanel(); + float var30 = var29.getAlignmentX(); + var29.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var35 = var29.getMouseListeners(); + int var36 = var29.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var37 = var29.getInputMethodRequests(); + var20.addKeyListener((java.awt.event.KeyListener)var29); + var29.repaint(); + java.awt.Point var40 = var29.location(); + java.awt.Component var41 = var0.findComponentAt(var40); + java.awt.im.InputContext var42 = var0.getInputContext(); + var0.setName("hi!"); + var0.removeNotify(); + SpaceWar.SpacePanel var47 = new SpaceWar.SpacePanel(); + float var48 = var47.getAlignmentX(); + var47.setVisible(false); + var47.setEnabled(false); + java.awt.Image var55 = var47.createImage(10, 100); + SpaceWar.SpacePanel var56 = new SpaceWar.SpacePanel(); + java.awt.Color var57 = var56.getBackground(); + var47.setForeground(var57); + var47.setFocusTraversalPolicyProvider(true); + java.util.Set var62 = var47.getFocusTraversalKeys(2); + // The following exception was thrown during execution. + // This behavior will recorded for regression testing. + try { + var0.setFocusTraversalKeys(100, var62); + fail("Expected exception of type java.lang.IllegalArgumentException"); + } catch (java.lang.IllegalArgumentException e) { + // Expected exception. + } + + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var24 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var25); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var28 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var30 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var35); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var36 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var37); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var40); + + // Regression assertion (captures the current behavior of the code) + assertNull(var41); + + // Regression assertion (captures the current behavior of the code) + assertNull(var42); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var48 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNull(var55); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var57); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var62); + + } + + public void test435() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test435"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + boolean var2 = var0.hasFocus(); + SpaceWar.SpacePanel var3 = new SpaceWar.SpacePanel(); + float var4 = var3.getAlignmentX(); + var3.setVisible(false); + var3.nextFocus(); + var3.reshape((-1), 1, (-1), 10); + var3.disable(); + java.awt.LayoutManager var14 = var3.getLayout(); + var3.setVisible(false); + var0.remove((java.awt.Component)var3); + var3.repaint(); + var3.repaint(); + SpaceWar.SpacePanel var20 = new SpaceWar.SpacePanel(); + float var21 = var20.getAlignmentX(); + var20.setVisible(false); + var20.nextFocus(); + var20.repaint(1L); + SpaceWar.SpacePanel var27 = new SpaceWar.SpacePanel(); + float var28 = var27.getAlignmentX(); + var27.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var33 = new SpaceWar.SpacePanel(); + float var34 = var33.getAlignmentX(); + var33.setVisible(false); + java.awt.Dimension var37 = var33.getPreferredSize(); + var27.setMaximumSize(var37); + var20.setPreferredSize(var37); + javax.swing.plaf.PanelUI var40 = var20.getUI(); + SpaceWar.SpacePanel var41 = new SpaceWar.SpacePanel(); + float var42 = var41.getAlignmentX(); + var41.setVisible(false); + var41.nextFocus(); + var41.reshape((-1), 1, (-1), 10); + var41.disable(); + java.awt.LayoutManager var52 = var41.getLayout(); + java.awt.Container var53 = var41.getParent(); + java.lang.String var54 = var41.getUIClassID(); + SpaceWar.Enemy var57 = new SpaceWar.Enemy(0, 10); + var20.add((java.awt.Component)var41, (java.lang.Object)10); + java.awt.event.MouseListener[] var59 = var20.getMouseListeners(); + java.awt.Component var61 = var3.add((java.awt.Component)var20, (-1)); + java.awt.Component var64 = var20.locate((-1), 100); + boolean var65 = var20.isOptimizedDrawingEnabled(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var2 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var28 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var34 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var37); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var40); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var42 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var52); + + // Regression assertion (captures the current behavior of the code) + assertNull(var53); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var54 + "' != '" + "PanelUI"+ "'", var54.equals("PanelUI")); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var59); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var61); + + // Regression assertion (captures the current behavior of the code) + assertNull(var64); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var65 == true); + + } + + public void test436() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test436"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.requestFocus(); + int var6 = var0.getHeight(); + var0.setEnabled(true); + boolean var9 = var0.isCursorSet(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == false); + + } + + public void test437() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test437"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + var0.list(); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + float var7 = var6.getAlignmentX(); + var6.setVisible(false); + boolean var10 = var6.isDoubleBuffered(); + java.awt.dnd.DropTarget var11 = var6.getDropTarget(); + var6.show(false); + java.awt.Rectangle var14 = var6.getVisibleRect(); + java.awt.Rectangle var15 = var0.getBounds(var14); + javax.swing.JToolTip var16 = var0.createToolTip(); + var0.firePropertyChange("", false, false); + var0.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", (-1L), (-1L)); + java.awt.Container var25 = var0.getParent(); + java.awt.Component.BaselineResizeBehavior var26 = var0.getBaselineResizeBehavior(); + SpaceWar.SpacePanel var27 = new SpaceWar.SpacePanel(); + float var28 = var27.getAlignmentX(); + var27.setVisible(false); + boolean var31 = var27.isDoubleBuffered(); + var27.list(); + float var33 = var27.getAlignmentY(); + java.awt.event.ComponentListener[] var34 = var27.getComponentListeners(); + java.awt.Component var35 = var27.getNextFocusableComponent(); + boolean var36 = var27.isManagingFocus(); + javax.swing.border.Border var37 = var27.getBorder(); + SpaceWar.SpacePanel var38 = new SpaceWar.SpacePanel(); + float var39 = var38.getAlignmentX(); + var38.setVisible(false); + boolean var42 = var38.isDoubleBuffered(); + java.awt.dnd.DropTarget var43 = var38.getDropTarget(); + var38.show(false); + boolean var46 = var38.isPaintingForPrint(); + SpaceWar.SpacePanel var47 = new SpaceWar.SpacePanel(); + float var48 = var47.getAlignmentX(); + var47.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var53 = var47.getMouseListeners(); + int var54 = var47.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var55 = var47.getInputMethodRequests(); + var38.addKeyListener((java.awt.event.KeyListener)var47); + SpaceWar.SpacePanel var57 = new SpaceWar.SpacePanel(); + float var58 = var57.getAlignmentX(); + var57.setVisible(false); + boolean var61 = var57.isDoubleBuffered(); + var57.list(); + float var63 = var57.getAlignmentY(); + boolean var64 = var47.isFocusCycleRoot((java.awt.Container)var57); + var57.firePropertyChange("", 1L, 1L); + var57.setVerifyInputWhenFocusTarget(true); + var57.resize(25, 400); + java.awt.event.ComponentListener[] var74 = var57.getComponentListeners(); + boolean var75 = var57.isBackgroundSet(); + boolean var76 = var57.isFontSet(); + SpaceWar.SpacePanel var77 = new SpaceWar.SpacePanel(); + var77.setName(""); + var77.enable(true); + var77.enable(); + java.awt.Point var83 = var77.location(); + var77.repaint(0, 3, (-1), 1); + var77.setBounds(25, 100, 1, 0); + var27.putClientProperty((java.lang.Object)var76, (java.lang.Object)1); + // The following exception was thrown during execution. + // This behavior will recorded for regression testing. + try { + var0.setComponentZOrder((java.awt.Component)var27, 25); + fail("Expected exception of type java.lang.IllegalArgumentException"); + } catch (java.lang.IllegalArgumentException e) { + // Expected exception. + } + + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertNull(var25); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var28 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var31 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var33 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var34); + + // Regression assertion (captures the current behavior of the code) + assertNull(var35); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var36 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var37); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var39 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var42 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var43); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var46 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var48 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var53); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var54 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var55); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var58 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var61 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var63 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var64 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var74); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var75 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var76 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var83); + + } + + public void test438() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test438"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + java.awt.Dimension var4 = var0.getPreferredSize(); + boolean var5 = var0.getVerifyInputWhenFocusTarget(); + java.awt.Component var8 = var0.findComponentAt(10, 1); + boolean var9 = var0.requestDefaultFocus(); + boolean var10 = var0.isPaintingTile(); + SpaceWar.SpacePanel var11 = new SpaceWar.SpacePanel(); + var11.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + javax.swing.plaf.PanelUI var16 = var11.getUI(); + java.awt.Color var17 = var11.getBackground(); + var0.addKeyListener((java.awt.event.KeyListener)var11); + var11.invalidate(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var4); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var17); + + } + + public void test439() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test439"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.setEnabled(false); + java.awt.Image var8 = var0.createImage(10, 100); + javax.swing.KeyStroke[] var9 = var0.getRegisteredKeyStrokes(); + java.awt.event.MouseWheelListener[] var10 = var0.getMouseWheelListeners(); + java.awt.Component[] var11 = var0.getComponents(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var9); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + } + + public void test440() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test440"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + javax.swing.plaf.PanelUI var3 = var0.getUI(); + SpaceWar.SpacePanel var4 = new SpaceWar.SpacePanel(); + float var5 = var4.getAlignmentX(); + var4.setVisible(false); + boolean var8 = var4.isDoubleBuffered(); + java.awt.dnd.DropTarget var9 = var4.getDropTarget(); + var4.show(false); + boolean var12 = var4.isPaintingForPrint(); + SpaceWar.SpacePanel var13 = new SpaceWar.SpacePanel(); + float var14 = var13.getAlignmentX(); + var13.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var19 = var13.getMouseListeners(); + int var20 = var13.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var21 = var13.getInputMethodRequests(); + var4.addKeyListener((java.awt.event.KeyListener)var13); + SpaceWar.SpacePanel var23 = new SpaceWar.SpacePanel(); + float var24 = var23.getAlignmentX(); + var23.setVisible(false); + boolean var27 = var23.isDoubleBuffered(); + var23.list(); + float var29 = var23.getAlignmentY(); + boolean var30 = var13.isFocusCycleRoot((java.awt.Container)var23); + SpaceWar.SpacePanel var32 = new SpaceWar.SpacePanel(); + float var33 = var32.getAlignmentX(); + var32.setVisible(false); + var32.nextFocus(); + var32.updateUI(); + java.awt.Component var38 = var13.add("", (java.awt.Component)var32); + java.awt.ComponentOrientation var39 = var32.getComponentOrientation(); + boolean var40 = var32.isFocusable(); + var0.remove((java.awt.Component)var32); + var0.hide(); + var0.setToolTipText("hi!"); + boolean var45 = var0.isFocusable(); + var0.requestFocus(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var9); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var21); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var24 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var29 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var30 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var33 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var38); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var39); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var40 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var45 == true); + + } + + public void test441() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test441"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + java.awt.im.InputMethodRequests var3 = var0.getInputMethodRequests(); + var0.setDoubleBuffered(true); + var0.show(false); + var0.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", (-1), 24); + boolean var12 = var0.requestFocusInWindow(); + boolean var13 = var0.hasFocus(); + var0.enable(true); + java.util.Locale var16 = var0.getLocale(); + var0.setFocusTraversalPolicyProvider(false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + } + + public void test442() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test442"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + var0.setRequestFocusEnabled(false); + var0.reshape(100, 0, 100, 0); + var0.requestFocus(); + var0.firePropertyChange("hi!", '4', ' '); + java.awt.Point var15 = var0.getLocation(); + java.awt.Dimension var16 = var0.size(); + boolean var17 = var0.isDoubleBuffered(); + var0.reshape(0, 3, 25, 3); + javax.swing.TransferHandler var23 = var0.getTransferHandler(); + var0.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=10,height=10]]", ' ', 'a'); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var23); + + } + + public void test443() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test443"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var6 = var0.getUI(); + java.awt.im.InputMethodRequests var7 = var0.getInputMethodRequests(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + var8.nextFocus(); + var8.updateUI(); + var8.enableInputMethods(true); + var8.setSize((-1), 1); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + var19.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var0.add((java.awt.Component)var8, (java.lang.Object)"SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + SpaceWar.SpacePanel var25 = new SpaceWar.SpacePanel(); + float var26 = var25.getAlignmentX(); + var25.setVisible(false); + java.awt.Dimension var29 = var25.getPreferredSize(); + java.awt.Toolkit var30 = var25.getToolkit(); + java.awt.Toolkit var31 = var25.getToolkit(); + java.awt.Component var32 = var8.add((java.awt.Component)var25); + var8.setDebugGraphicsOptions(0); + java.lang.String var35 = var8.getUIClassID(); + var8.resetKeyboardActions(); + boolean var37 = var8.isValidateRoot(); + var8.setFocusTraversalKeysEnabled(true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var29); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var30); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var31); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var32); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var35 + "' != '" + "PanelUI"+ "'", var35.equals("PanelUI")); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == false); + + } + + public void test444() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test444"); + + + SpaceWar.Player var0 = new SpaceWar.Player(); + int var1 = var0.getR(); + var0.setUp(false); + var0.update(); + java.awt.image.BufferedImage var6 = var0.loadImg("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + int var7 = var0.getX(); + var0.setLife(10); + var0.loseLife(); + var0.loseLife(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 25); + + // Regression assertion (captures the current behavior of the code) + assertNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 400); + + } + + public void test445() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test445"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + var0.setRequestFocusEnabled(false); + var0.reshape(100, 0, 100, 0); + var0.requestFocus(); + java.awt.Rectangle var11 = var0.getVisibleRect(); + java.awt.Rectangle var12 = var0.getBounds(); + java.awt.im.InputMethodRequests var13 = var0.getInputMethodRequests(); + SpaceWar.SpacePanel var14 = new SpaceWar.SpacePanel(); + var14.setName(""); + java.awt.Dimension var17 = var14.minimumSize(); + boolean var18 = var14.isDoubleBuffered(); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + float var20 = var19.getAlignmentX(); + var19.setVisible(false); + SpaceWar.SpacePanel var23 = new SpaceWar.SpacePanel(); + java.awt.Color var24 = var23.getBackground(); + var19.setForeground(var24); + SpaceWar.SpacePanel var26 = new SpaceWar.SpacePanel(); + float var27 = var26.getAlignmentX(); + var26.setVisible(false); + boolean var30 = var26.isDoubleBuffered(); + java.awt.dnd.DropTarget var31 = var26.getDropTarget(); + var26.show(false); + java.awt.Rectangle var34 = var26.getVisibleRect(); + var19.repaint(var34); + java.awt.FocusTraversalPolicy var36 = var19.getFocusTraversalPolicy(); + java.awt.im.InputMethodRequests var37 = var19.getInputMethodRequests(); + var19.layout(); + boolean var39 = var19.isFocusTraversalPolicyProvider(); + java.awt.Component var40 = var14.add((java.awt.Component)var19); + var14.transferFocusUpCycle(); + var0.remove((java.awt.Component)var14); + java.awt.Dimension var43 = var0.minimumSize(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var30 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var31); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var34); + + // Regression assertion (captures the current behavior of the code) + assertNull(var36); + + // Regression assertion (captures the current behavior of the code) + assertNull(var37); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var39 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var40); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var43); + + } + + public void test446() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test446"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + java.awt.im.InputMethodRequests var3 = var0.getInputMethodRequests(); + int var4 = var0.countComponents(); + java.awt.event.ComponentListener[] var5 = var0.getComponentListeners(); + var0.removeNotify(); + javax.swing.InputMap var7 = var0.getInputMap(); + int var8 = var0.getDebugGraphicsOptions(); + boolean var9 = var0.isFocusable(); + java.lang.String var10 = var0.getUIClassID(); + boolean var11 = var0.isPaintingTile(); + javax.swing.plaf.PanelUI var12 = var0.getUI(); + var0.enableInputMethods(true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var10 + "' != '" + "PanelUI"+ "'", var10.equals("PanelUI")); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var12); + + } + + public void test447() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test447"); + + + SpaceWar.Player var0 = new SpaceWar.Player(); + boolean var1 = var0.isRecovering(); + var0.loseLife(); + int var3 = var0.getR(); + var0.loseLife(); + java.awt.image.BufferedImage var6 = var0.loadImg("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + boolean var7 = var0.isDead(); + var0.setRigth(false); + var0.setLife(24); + boolean var12 = var0.isDead(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == 25); + + // Regression assertion (captures the current behavior of the code) + assertNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == false); + + } + + public void test448() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test448"); + + + SpaceWar.Player var0 = new SpaceWar.Player(); + boolean var1 = var0.isRecovering(); + int var2 = var0.getRequiredPower(); + int var3 = var0.getY(); + var0.increasePower(25); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var2 == 1); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == 500); + + } + + public void test449() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test449"); + + + SpaceWar.Enemy var2 = new SpaceWar.Enemy(0, 500); + + } + + public void test450() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test450"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + java.awt.im.InputMethodRequests var3 = var0.getInputMethodRequests(); + int var4 = var0.countComponents(); + java.awt.event.ComponentListener[] var5 = var0.getComponentListeners(); + var0.removeNotify(); + java.awt.Component var9 = var0.getComponentAt(1, (-1)); + int var10 = var0.getHeight(); + java.awt.FocusTraversalPolicy var11 = var0.getFocusTraversalPolicy(); + javax.swing.InputVerifier var12 = var0.getInputVerifier(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertNull(var9); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNull(var12); + + } + + public void test451() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test451"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + var0.setRequestFocusEnabled(false); + var0.setIgnoreRepaint(false); + java.lang.String var7 = var0.toString(); + java.awt.Color var8 = var0.getBackground(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.setVisible(false); + java.awt.Dimension var13 = var9.getPreferredSize(); + java.awt.Toolkit var14 = var9.getToolkit(); + java.awt.Toolkit var15 = var9.getToolkit(); + SpaceWar.Player var16 = new SpaceWar.Player(); + var16.increasePower(25); + int var19 = var16.getScore(); + var16.setRigth(true); + var16.loseLife(); + var0.putClientProperty((java.lang.Object)var9, (java.lang.Object)var16); + SpaceWar.SpacePanel var24 = new SpaceWar.SpacePanel(); + float var25 = var24.getAlignmentX(); + var24.setVisible(false); + var24.setInheritsPopupMenu(false); + var24.move(10, 10); + var24.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + java.awt.event.KeyListener[] var37 = var24.getKeyListeners(); + var9.removeKeyListener((java.awt.event.KeyListener)var24); + java.awt.Dimension var39 = var24.minimumSize(); + SpaceWar.SpacePanel var40 = new SpaceWar.SpacePanel(); + float var41 = var40.getAlignmentX(); + var40.setVisible(false); + boolean var44 = var40.isDoubleBuffered(); + java.awt.dnd.DropTarget var45 = var40.getDropTarget(); + boolean var46 = var40.isFocusCycleRoot(); + var40.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", 100, 0); + SpaceWar.SpacePanel var51 = new SpaceWar.SpacePanel(); + java.awt.Color var52 = var51.getBackground(); + var51.repaint(); + var51.setRequestFocusEnabled(false); + var51.reshape(100, 0, 100, 0); + javax.swing.event.AncestorListener[] var61 = var51.getAncestorListeners(); + var51.grabFocus(); + boolean var63 = var40.isFocusCycleRoot((java.awt.Container)var51); + SpaceWar.SpacePanel var64 = new SpaceWar.SpacePanel(); + float var65 = var64.getAlignmentX(); + var64.setVisible(false); + var64.nextFocus(); + SpaceWar.SpacePanel var69 = new SpaceWar.SpacePanel(); + float var70 = var69.getAlignmentX(); + var69.setVisible(false); + SpaceWar.SpacePanel var73 = new SpaceWar.SpacePanel(); + java.awt.Color var74 = var73.getBackground(); + var69.setForeground(var74); + var64.setBackground(var74); + java.awt.Component var77 = var64.getNextFocusableComponent(); + float var78 = var64.getAlignmentY(); + java.awt.event.MouseListener[] var79 = var64.getMouseListeners(); + java.awt.Point var80 = var64.location(); + var51.setLocation(var80); + java.awt.Point var82 = var24.getLocation(var80); + java.awt.Dimension var83 = var24.size(); + java.lang.String var84 = var24.toString(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var7 + "' != '" + "SpaceWar.SpacePanel[,0,0,0var7,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"+ "'", var7.equals("SpaceWar.SpacePanel[,0,0,0var7,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]")); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var37); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var39); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var41 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var44 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var45); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var46 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var52); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var61); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var63 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var65 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var70 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var74); + + // Regression assertion (captures the current behavior of the code) + assertNull(var77); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var78 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var79); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var80); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var82); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var83); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var84 + "' != '" + "SpaceWar.SpacePanel[,10,10,0var84,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"+ "'", var84.equals("SpaceWar.SpacePanel[,10,10,0var84,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]")); + + } + + public void test452() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test452"); + + + SpaceWar.Player var0 = new SpaceWar.Player(); + boolean var1 = var0.isRecovering(); + var0.setRigth(false); + int var4 = var0.getPower(); + var0.update(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0); + + } + + public void test453() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test453"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + var0.list(); + var0.setAutoscrolls(false); + java.awt.Component.BaselineResizeBehavior var8 = var0.getBaselineResizeBehavior(); + javax.swing.event.AncestorListener[] var9 = var0.getAncestorListeners(); + SpaceWar.SpacePanel var10 = new SpaceWar.SpacePanel(); + float var11 = var10.getAlignmentX(); + var10.setVisible(false); + SpaceWar.SpacePanel var14 = new SpaceWar.SpacePanel(); + java.awt.Color var15 = var14.getBackground(); + var10.setForeground(var15); + SpaceWar.SpacePanel var17 = new SpaceWar.SpacePanel(); + float var18 = var17.getAlignmentX(); + var17.setVisible(false); + boolean var21 = var17.isDoubleBuffered(); + java.awt.dnd.DropTarget var22 = var17.getDropTarget(); + var17.show(false); + java.awt.Rectangle var25 = var17.getVisibleRect(); + var10.repaint(var25); + java.awt.FocusTraversalPolicy var27 = var10.getFocusTraversalPolicy(); + SpaceWar.SpacePanel var28 = new SpaceWar.SpacePanel(); + float var29 = var28.getAlignmentX(); + var28.firePropertyChange("", (-1), 1); + boolean var34 = var28.isFocusOwner(); + SpaceWar.SpacePanel var36 = new SpaceWar.SpacePanel(); + float var37 = var36.getAlignmentX(); + var36.setVisible(false); + java.awt.Dimension var40 = var36.getPreferredSize(); + java.awt.Toolkit var41 = var36.getToolkit(); + SpaceWar.SpacePanel var42 = new SpaceWar.SpacePanel(); + var42.setName(""); + int var45 = var42.getX(); + SpaceWar.SpacePanel var46 = new SpaceWar.SpacePanel(); + float var47 = var46.getAlignmentX(); + var46.setVisible(false); + var46.nextFocus(); + SpaceWar.SpacePanel var51 = new SpaceWar.SpacePanel(); + float var52 = var51.getAlignmentX(); + var51.setVisible(false); + SpaceWar.SpacePanel var55 = new SpaceWar.SpacePanel(); + java.awt.Color var56 = var55.getBackground(); + var51.setForeground(var56); + var46.setBackground(var56); + var42.setBackground(var56); + var36.setForeground(var56); + var28.putClientProperty((java.lang.Object)(byte)100, (java.lang.Object)var56); + var10.setBackground(var56); + SpaceWar.SpacePanel var63 = new SpaceWar.SpacePanel(); + java.awt.Color var64 = var63.getBackground(); + var63.repaint(); + java.awt.im.InputMethodRequests var66 = var63.getInputMethodRequests(); + int var67 = var63.countComponents(); + java.awt.event.ComponentListener[] var68 = var63.getComponentListeners(); + var63.removeNotify(); + var0.add((java.awt.Component)var10, (java.lang.Object)var63); + javax.swing.border.Border var71 = var0.getBorder(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var9); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var25); + + // Regression assertion (captures the current behavior of the code) + assertNull(var27); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var29 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var34 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var40); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var41); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var45 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var47 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var52 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var56); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var64); + + // Regression assertion (captures the current behavior of the code) + assertNull(var66); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var67 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var68); + + // Regression assertion (captures the current behavior of the code) + assertNull(var71); + + } + + public void test454() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test454"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var1 = new SpaceWar.SpacePanel(); + java.awt.Color var2 = var1.getBackground(); + SpaceWar.SpacePanel var3 = new SpaceWar.SpacePanel(); + float var4 = var3.getAlignmentX(); + var3.setVisible(false); + var3.nextFocus(); + var3.updateUI(); + var3.enableInputMethods(true); + var0.add((java.awt.Component)var1, (java.lang.Object)true); + boolean var12 = var1.requestDefaultFocus(); + boolean var13 = var1.isPaintingForPrint(); + javax.swing.event.AncestorListener[] var14 = var1.getAncestorListeners(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var2); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + } + + public void test455() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test455"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + boolean var6 = var0.isFocusCycleRoot(); + var0.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", 100, 0); + SpaceWar.SpacePanel var11 = new SpaceWar.SpacePanel(); + float var12 = var11.getAlignmentX(); + var11.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var17 = var11.getUI(); + var0.setNextFocusableComponent((java.awt.Component)var11); + var11.doLayout(); + javax.swing.JToolTip var20 = var11.createToolTip(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + } + + public void test456() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test456"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.updateUI(); + java.util.Locale var6 = var0.getLocale(); + var0.paintImmediately(25, 100, 3, 0); + boolean var12 = var0.isCursorSet(); + boolean var13 = var0.isCursorSet(); + boolean var14 = var0.isValidateRoot(); + var0.invalidate(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == false); + + } + + public void test457() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test457"); + + + SpaceWar.Player var0 = new SpaceWar.Player(); + int var1 = var0.getPower(); + var0.setLeft(true); + boolean var4 = var0.isRecovering(); + var0.setLife(499); + int var7 = var0.getPowerLevel(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0); + + } + + public void test458() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test458"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + java.awt.Dimension var4 = var0.getPreferredSize(); + java.awt.Toolkit var5 = var0.getToolkit(); + boolean var6 = var0.isFocusable(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + var8.nextFocus(); + var8.reshape((-1), 1, (-1), 10); + java.util.Set var19 = var8.getFocusTraversalKeys(3); + var0.setFocusTraversalKeys(1, var19); + java.awt.Dimension var21 = var0.minimumSize(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var4); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var21); + + } + + public void test459() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test459"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + var0.show(false); + boolean var8 = var0.isPaintingForPrint(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var15 = var9.getMouseListeners(); + int var16 = var9.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var17 = var9.getInputMethodRequests(); + var0.addKeyListener((java.awt.event.KeyListener)var9); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + float var20 = var19.getAlignmentX(); + var19.setVisible(false); + boolean var23 = var19.isDoubleBuffered(); + var19.list(); + float var25 = var19.getAlignmentY(); + boolean var26 = var9.isFocusCycleRoot((java.awt.Container)var19); + var19.firePropertyChange("", 1L, 1L); + var19.setVerifyInputWhenFocusTarget(true); + java.awt.Cursor var33 = var19.getCursor(); + var19.resetKeyboardActions(); + SpaceWar.SpacePanel var35 = new SpaceWar.SpacePanel(); + float var36 = var35.getAlignmentX(); + var35.setVisible(false); + SpaceWar.SpacePanel var39 = new SpaceWar.SpacePanel(); + java.awt.Color var40 = var39.getBackground(); + var35.setForeground(var40); + SpaceWar.SpacePanel var42 = new SpaceWar.SpacePanel(); + float var43 = var42.getAlignmentX(); + var42.setVisible(false); + boolean var46 = var42.isDoubleBuffered(); + java.awt.dnd.DropTarget var47 = var42.getDropTarget(); + var42.show(false); + java.awt.Rectangle var50 = var42.getVisibleRect(); + var35.repaint(var50); + java.awt.FocusTraversalPolicy var52 = var35.getFocusTraversalPolicy(); + java.awt.im.InputMethodRequests var53 = var35.getInputMethodRequests(); + var35.layout(); + boolean var55 = var35.isFocusTraversalPolicyProvider(); + java.awt.Insets var56 = var35.insets(); + java.awt.Dimension var57 = var35.getMinimumSize(); + SpaceWar.SpacePanel var58 = new SpaceWar.SpacePanel(); + float var59 = var58.getAlignmentX(); + var58.setVisible(false); + boolean var62 = var58.isDoubleBuffered(); + java.awt.dnd.DropTarget var63 = var58.getDropTarget(); + var58.show(false); + java.awt.event.MouseWheelListener[] var66 = var58.getMouseWheelListeners(); + SpaceWar.SpacePanel var67 = new SpaceWar.SpacePanel(); + float var68 = var67.getAlignmentX(); + var67.setVisible(false); + SpaceWar.SpacePanel var71 = new SpaceWar.SpacePanel(); + java.awt.Color var72 = var71.getBackground(); + var67.setForeground(var72); + SpaceWar.SpacePanel var74 = new SpaceWar.SpacePanel(); + float var75 = var74.getAlignmentX(); + var74.setVisible(false); + boolean var78 = var74.isDoubleBuffered(); + java.awt.dnd.DropTarget var79 = var74.getDropTarget(); + var74.show(false); + java.awt.Rectangle var82 = var74.getVisibleRect(); + var67.repaint(var82); + SpaceWar.SpacePanel var84 = new SpaceWar.SpacePanel(); + float var85 = var84.getAlignmentX(); + var84.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var90 = var84.getMouseListeners(); + java.awt.Dimension var91 = var84.getPreferredSize(); + java.util.Locale var92 = var84.getLocale(); + var67.setLocale(var92); + java.util.Locale var94 = var67.getLocale(); + var58.setLocale(var94); + var35.setLocale(var94); + var19.setLocale(var94); + boolean var98 = var19.requestFocusInWindow(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var33); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var36 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var40); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var43 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var46 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var47); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var50); + + // Regression assertion (captures the current behavior of the code) + assertNull(var52); + + // Regression assertion (captures the current behavior of the code) + assertNull(var53); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var55 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var56); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var57); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var59 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var62 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var63); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var66); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var68 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var72); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var75 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var78 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var79); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var82); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var85 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var90); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var91); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var92); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var94); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var98 == false); + + } + + public void test460() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test460"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + var0.setRequestFocusEnabled(false); + var0.reshape(100, 0, 100, 0); + var0.requestFocus(); + var0.firePropertyChange("hi!", '4', ' '); + java.awt.Point var15 = var0.getLocation(); + java.awt.Dimension var16 = var0.size(); + java.awt.Image var19 = var0.createImage((-1), (-1)); + java.awt.event.ComponentListener[] var20 = var0.getComponentListeners(); + SpaceWar.SpacePanel var21 = new SpaceWar.SpacePanel(); + var21.setName(""); + java.awt.ComponentOrientation var24 = var21.getComponentOrientation(); + var21.firePropertyChange("PanelUI", 1.0f, 0.5f); + int var29 = var0.getComponentZOrder((java.awt.Component)var21); + SpaceWar.SpacePanel var30 = new SpaceWar.SpacePanel(); + float var31 = var30.getAlignmentX(); + var30.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var36 = var30.getUI(); + java.awt.im.InputMethodRequests var37 = var30.getInputMethodRequests(); + SpaceWar.SpacePanel var38 = new SpaceWar.SpacePanel(); + float var39 = var38.getAlignmentX(); + var38.setVisible(false); + var38.nextFocus(); + var38.updateUI(); + var38.enableInputMethods(true); + var38.setSize((-1), 1); + SpaceWar.SpacePanel var49 = new SpaceWar.SpacePanel(); + var49.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var30.add((java.awt.Component)var38, (java.lang.Object)"SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + SpaceWar.SpacePanel var55 = new SpaceWar.SpacePanel(); + float var56 = var55.getAlignmentX(); + var55.setVisible(false); + var55.setInheritsPopupMenu(false); + boolean var61 = var55.isDoubleBuffered(); + boolean var62 = var55.isMinimumSizeSet(); + SpaceWar.SpacePanel var63 = new SpaceWar.SpacePanel(); + float var64 = var63.getAlignmentX(); + var63.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var69 = new SpaceWar.SpacePanel(); + float var70 = var69.getAlignmentX(); + var69.setVisible(false); + java.awt.Dimension var73 = var69.getPreferredSize(); + var63.setMaximumSize(var73); + boolean var75 = var63.getVerifyInputWhenFocusTarget(); + javax.accessibility.AccessibleContext var76 = var63.getAccessibleContext(); + boolean var77 = var63.isDoubleBuffered(); + java.awt.Rectangle var78 = var63.getVisibleRect(); + var55.setBounds(var78); + java.awt.Rectangle var80 = var30.getBounds(var78); + var0.computeVisibleRect(var78); + // The following exception was thrown during execution. + // This behavior will recorded for regression testing. + try { + java.awt.Component var83 = var0.getComponent(1); + fail("Expected exception of type java.lang.ArrayIndexOutOfBoundsException"); + } catch (java.lang.ArrayIndexOutOfBoundsException e) { + // Expected exception. + } + + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var29 == (-1)); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var31 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var36); + + // Regression assertion (captures the current behavior of the code) + assertNull(var37); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var39 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var56 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var61 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var62 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var64 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var70 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var73); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var75 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var76); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var77 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var78); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var80); + + } + + public void test461() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test461"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + var0.setRequestFocusEnabled(false); + var0.reshape(100, 0, 100, 0); + var0.requestFocus(); + java.awt.Rectangle var11 = var0.getVisibleRect(); + java.awt.Rectangle var12 = var0.getBounds(); + java.awt.im.InputMethodRequests var13 = var0.getInputMethodRequests(); + SpaceWar.SpacePanel var14 = new SpaceWar.SpacePanel(); + float var15 = var14.getAlignmentX(); + var14.setVisible(false); + java.awt.Dimension var18 = var14.getPreferredSize(); + java.awt.Toolkit var19 = var14.getToolkit(); + SpaceWar.SpacePanel var20 = new SpaceWar.SpacePanel(); + var20.setName(""); + int var23 = var20.getX(); + SpaceWar.SpacePanel var24 = new SpaceWar.SpacePanel(); + float var25 = var24.getAlignmentX(); + var24.setVisible(false); + var24.nextFocus(); + SpaceWar.SpacePanel var29 = new SpaceWar.SpacePanel(); + float var30 = var29.getAlignmentX(); + var29.setVisible(false); + SpaceWar.SpacePanel var33 = new SpaceWar.SpacePanel(); + java.awt.Color var34 = var33.getBackground(); + var29.setForeground(var34); + var24.setBackground(var34); + var20.setBackground(var34); + var14.setForeground(var34); + var0.setForeground(var34); + var0.reshape(24, 399, 1, 3); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var30 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var34); + + } + + public void test462() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test462"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.Graphics var5 = var0.getGraphics(); + java.awt.event.MouseMotionListener[] var6 = var0.getMouseMotionListeners(); + SpaceWar.SpacePanel var7 = new SpaceWar.SpacePanel(); + float var8 = var7.getAlignmentX(); + var7.setVisible(false); + var7.setInheritsPopupMenu(false); + boolean var13 = var7.isDoubleBuffered(); + boolean var14 = var7.isMinimumSizeSet(); + java.awt.Font var15 = var7.getFont(); + var0.setFont(var15); + SpaceWar.SpacePanel var18 = new SpaceWar.SpacePanel(); + float var19 = var18.getAlignmentX(); + var18.setVisible(false); + java.awt.Dimension var22 = var18.getPreferredSize(); + boolean var23 = var18.getVerifyInputWhenFocusTarget(); + java.awt.Component var26 = var18.findComponentAt(10, 1); + boolean var27 = var18.isCursorSet(); + boolean var28 = var18.isFocusTraversalPolicyProvider(); + java.awt.peer.ComponentPeer var29 = var18.getPeer(); + javax.swing.InputMap var30 = var18.getInputMap(); + // The following exception was thrown during execution. + // This behavior will recorded for regression testing. + try { + var0.setInputMap(2, var30); + fail("Expected exception of type java.lang.IllegalArgumentException"); + } catch (java.lang.IllegalArgumentException e) { + // Expected exception. + } + + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var28 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var29); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var30); + + } + + public void test463() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test463"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var6 = var0.getMouseListeners(); + java.awt.Dimension var7 = var0.getPreferredSize(); + java.util.Locale var8 = var0.getLocale(); + java.lang.String var9 = var0.getToolTipText(); + var0.updateUI(); + java.awt.event.FocusListener[] var11 = var0.getFocusListeners(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertNull(var9); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + } + + public void test464() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test464"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + java.awt.Dimension var4 = var0.getPreferredSize(); + java.awt.Toolkit var5 = var0.getToolkit(); + boolean var6 = var0.isFocusable(); + java.lang.String var7 = var0.getToolTipText(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var4); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var7); + + } + + public void test465() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test465"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var6 = var0.getMouseListeners(); + int var7 = var0.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var8 = var0.getInputMethodRequests(); + var0.removeNotify(); + var0.enable(); + SpaceWar.SpacePanel var11 = new SpaceWar.SpacePanel(); + java.awt.Color var12 = var11.getBackground(); + boolean var15 = var11.inside(0, (-1)); + var11.transferFocusUpCycle(); + java.lang.String var17 = var11.getName(); + boolean var18 = var0.isFocusCycleRoot((java.awt.Container)var11); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + java.awt.Color var20 = var19.getBackground(); + var19.repaint(); + java.awt.im.InputMethodRequests var22 = var19.getInputMethodRequests(); + int var23 = var19.countComponents(); + java.awt.Dimension var24 = var19.getSize(); + var0.setSize(var24); + javax.swing.JToolTip var26 = var0.createToolTip(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var26); + + } + + public void test466() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test466"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.updateUI(); + var0.enableInputMethods(true); + var0.resetKeyboardActions(); + java.awt.Dimension var9 = var0.preferredSize(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var9); + + } + + public void test467() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test467"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.setDoubleBuffered(true); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + float var7 = var6.getAlignmentX(); + var6.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var12 = var6.getMouseListeners(); + java.awt.Dimension var13 = var6.getPreferredSize(); + java.util.Locale var14 = var6.getLocale(); + var6.setFocusable(true); + var6.setSize(3, 10); + SpaceWar.SpacePanel var20 = new SpaceWar.SpacePanel(); + float var21 = var20.getAlignmentX(); + var20.setVisible(false); + java.awt.Dimension var24 = var20.getPreferredSize(); + boolean var25 = var20.getVerifyInputWhenFocusTarget(); + java.awt.Dimension var26 = var20.size(); + var6.setSize(var26); + var0.setSize(var26); + var0.enableInputMethods(false); + var0.move(10, 10); + SpaceWar.SpacePanel var34 = new SpaceWar.SpacePanel(); + java.awt.Color var35 = var34.getBackground(); + boolean var38 = var34.inside(0, (-1)); + var34.transferFocusUpCycle(); + javax.swing.JToolTip var40 = var34.createToolTip(); + SpaceWar.SpacePanel var41 = new SpaceWar.SpacePanel(); + float var42 = var41.getAlignmentX(); + var41.setVisible(false); + boolean var45 = var41.isDoubleBuffered(); + java.awt.dnd.DropTarget var46 = var41.getDropTarget(); + var41.show(false); + boolean var49 = var41.isPaintingForPrint(); + SpaceWar.SpacePanel var50 = new SpaceWar.SpacePanel(); + float var51 = var50.getAlignmentX(); + var50.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var56 = var50.getMouseListeners(); + int var57 = var50.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var58 = var50.getInputMethodRequests(); + var41.addKeyListener((java.awt.event.KeyListener)var50); + boolean var60 = var41.isDisplayable(); + boolean var61 = var41.isOpaque(); + var41.setEnabled(false); + java.awt.Rectangle var64 = var41.getBounds(); + java.awt.Rectangle var65 = var40.getBounds(var64); + var0.paintImmediately(var65); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var35); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var38 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var40); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var42 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var45 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var46); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var49 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var51 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var56); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var57 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var58); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var60 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var61 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var64); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var65); + + } + + public void test468() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test468"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + java.awt.Dimension var4 = var0.getPreferredSize(); + java.awt.Toolkit var5 = var0.getToolkit(); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + var6.setName(""); + int var9 = var6.getX(); + SpaceWar.SpacePanel var10 = new SpaceWar.SpacePanel(); + float var11 = var10.getAlignmentX(); + var10.setVisible(false); + var10.nextFocus(); + SpaceWar.SpacePanel var15 = new SpaceWar.SpacePanel(); + float var16 = var15.getAlignmentX(); + var15.setVisible(false); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + java.awt.Color var20 = var19.getBackground(); + var15.setForeground(var20); + var10.setBackground(var20); + var6.setBackground(var20); + var0.setForeground(var20); + SpaceWar.SpacePanel var25 = new SpaceWar.SpacePanel(); + float var26 = var25.getAlignmentX(); + var25.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var31 = new SpaceWar.SpacePanel(); + float var32 = var31.getAlignmentX(); + var31.setVisible(false); + java.awt.Dimension var35 = var31.getPreferredSize(); + var25.setMaximumSize(var35); + boolean var37 = var25.getVerifyInputWhenFocusTarget(); + javax.accessibility.AccessibleContext var38 = var25.getAccessibleContext(); + boolean var39 = var25.isDoubleBuffered(); + java.awt.Rectangle var40 = var25.getVisibleRect(); + var0.scrollRectToVisible(var40); + SpaceWar.SpacePanel var42 = new SpaceWar.SpacePanel(); + float var43 = var42.getAlignmentX(); + var42.setVisible(false); + java.awt.Dimension var46 = var42.getPreferredSize(); + java.awt.Toolkit var47 = var42.getToolkit(); + SpaceWar.SpacePanel var48 = new SpaceWar.SpacePanel(); + var48.setName(""); + int var51 = var48.getX(); + SpaceWar.SpacePanel var52 = new SpaceWar.SpacePanel(); + float var53 = var52.getAlignmentX(); + var52.setVisible(false); + var52.nextFocus(); + SpaceWar.SpacePanel var57 = new SpaceWar.SpacePanel(); + float var58 = var57.getAlignmentX(); + var57.setVisible(false); + SpaceWar.SpacePanel var61 = new SpaceWar.SpacePanel(); + java.awt.Color var62 = var61.getBackground(); + var57.setForeground(var62); + var52.setBackground(var62); + var48.setBackground(var62); + var42.setForeground(var62); + SpaceWar.SpacePanel var67 = new SpaceWar.SpacePanel(); + float var68 = var67.getAlignmentX(); + var67.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var73 = new SpaceWar.SpacePanel(); + float var74 = var73.getAlignmentX(); + var73.setVisible(false); + java.awt.Dimension var77 = var73.getPreferredSize(); + var67.setMaximumSize(var77); + boolean var79 = var67.getVerifyInputWhenFocusTarget(); + javax.accessibility.AccessibleContext var80 = var67.getAccessibleContext(); + boolean var81 = var67.isDoubleBuffered(); + java.awt.Rectangle var82 = var67.getVisibleRect(); + var42.scrollRectToVisible(var82); + var0.removeKeyListener((java.awt.event.KeyListener)var42); + var42.firePropertyChange("PanelUI", (short)1, (short)1); + int var89 = var42.getHeight(); + var42.grabFocus(); + boolean var91 = javax.swing.JComponent.isLightweightComponent((java.awt.Component)var42); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var4); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var32 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var35); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var38); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var39 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var40); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var43 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var46); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var47); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var51 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var53 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var58 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var62); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var68 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var74 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var77); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var79 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var80); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var81 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var82); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var89 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var91 == false); + + } + + public void test469() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test469"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var1 = new SpaceWar.SpacePanel(); + java.awt.Color var2 = var1.getBackground(); + SpaceWar.SpacePanel var3 = new SpaceWar.SpacePanel(); + float var4 = var3.getAlignmentX(); + var3.setVisible(false); + var3.nextFocus(); + var3.updateUI(); + var3.enableInputMethods(true); + var0.add((java.awt.Component)var1, (java.lang.Object)true); + java.awt.Image var14 = var1.createImage(1, (-1)); + java.awt.event.MouseListener[] var15 = var1.getMouseListeners(); + java.awt.Color var16 = var1.getBackground(); + boolean var17 = var1.getIgnoreRepaint(); + var1.enable(); + javax.swing.JToolTip var19 = var1.createToolTip(); + boolean var20 = var19.isShowing(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var2); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == false); + + } + + public void test470() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test470"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + SpaceWar.SpacePanel var5 = new SpaceWar.SpacePanel(); + float var6 = var5.getAlignmentX(); + var5.setVisible(false); + var5.nextFocus(); + var5.reshape((-1), 1, (-1), 10); + var5.disable(); + boolean var16 = var5.isFocusable(); + int var17 = var5.getHeight(); + var0.setNextFocusableComponent((java.awt.Component)var5); + boolean var19 = var0.isMinimumSizeSet(); + var0.transferFocusBackward(); + java.awt.Component.BaselineResizeBehavior var21 = var0.getBaselineResizeBehavior(); + java.awt.Dimension var22 = var0.getSize(); + boolean var24 = var0.requestFocus(false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == 10); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var21); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var24 == false); + + } + + public void test471() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test471"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + var0.list(); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + float var7 = var6.getAlignmentX(); + var6.setVisible(false); + boolean var10 = var6.isDoubleBuffered(); + java.awt.dnd.DropTarget var11 = var6.getDropTarget(); + var6.show(false); + java.awt.Rectangle var14 = var6.getVisibleRect(); + java.awt.image.BufferedImage var16 = var6.loadImg("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + boolean var17 = var0.isAncestorOf((java.awt.Component)var6); + java.awt.GraphicsConfiguration var18 = var6.getGraphicsConfiguration(); + boolean var19 = var6.hasFocus(); + boolean var20 = var6.isValidateRoot(); + java.awt.event.HierarchyListener[] var21 = var6.getHierarchyListeners(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var21); + + } + + public void test472() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test472"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.reshape((-1), 1, (-1), 10); + var0.disable(); + var0.show(); + SpaceWar.SpacePanel var12 = new SpaceWar.SpacePanel(); + float var13 = var12.getAlignmentX(); + var12.setVisible(false); + boolean var16 = var12.isDoubleBuffered(); + var12.list(); + SpaceWar.SpacePanel var18 = new SpaceWar.SpacePanel(); + float var19 = var18.getAlignmentX(); + var18.setVisible(false); + boolean var22 = var18.isDoubleBuffered(); + java.awt.dnd.DropTarget var23 = var18.getDropTarget(); + var18.show(false); + java.awt.Rectangle var26 = var18.getVisibleRect(); + java.awt.Rectangle var27 = var12.getBounds(var26); + javax.swing.JToolTip var28 = var12.createToolTip(); + var12.firePropertyChange("", false, false); + var12.validate(); + SpaceWar.SpacePanel var34 = new SpaceWar.SpacePanel(); + float var35 = var34.getAlignmentX(); + var34.setVisible(false); + boolean var38 = var34.isDoubleBuffered(); + java.awt.dnd.DropTarget var39 = var34.getDropTarget(); + var34.show(false); + boolean var42 = var34.isPaintingForPrint(); + SpaceWar.SpacePanel var43 = new SpaceWar.SpacePanel(); + float var44 = var43.getAlignmentX(); + var43.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var49 = var43.getMouseListeners(); + int var50 = var43.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var51 = var43.getInputMethodRequests(); + var34.addKeyListener((java.awt.event.KeyListener)var43); + var43.repaint(); + java.awt.Point var54 = var43.location(); + java.awt.Component var55 = var12.getComponentAt(var54); + java.awt.Point var56 = var0.getLocation(var54); + var0.setAlignmentY(0.5f); + java.awt.event.InputMethodListener[] var59 = var0.getInputMethodListeners(); + var0.setSize(0, 499); + javax.swing.JPopupMenu var63 = var0.getComponentPopupMenu(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var22 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var23); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var27); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var28); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var35 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var38 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var39); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var42 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var44 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var49); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var50 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var51); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var54); + + // Regression assertion (captures the current behavior of the code) + assertNull(var55); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var56); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var59); + + // Regression assertion (captures the current behavior of the code) + assertNull(var63); + + } + + public void test473() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test473"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var6 = var0.getMouseListeners(); + int var7 = var0.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var8 = var0.getInputMethodRequests(); + var0.setToolTipText(""); + boolean var11 = var0.isEnabled(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == true); + + } + + public void test474() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test474"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var6 = var0.getUI(); + java.awt.im.InputMethodRequests var7 = var0.getInputMethodRequests(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + var8.nextFocus(); + var8.updateUI(); + var8.enableInputMethods(true); + var8.setSize((-1), 1); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + var19.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var0.add((java.awt.Component)var8, (java.lang.Object)"SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + java.awt.event.KeyListener[] var25 = var0.getKeyListeners(); + boolean var26 = var0.isValidateRoot(); + var0.setDoubleBuffered(true); + SpaceWar.SpacePanel var29 = new SpaceWar.SpacePanel(); + float var30 = var29.getAlignmentX(); + var29.setVisible(false); + boolean var33 = var29.isDoubleBuffered(); + java.awt.dnd.DropTarget var34 = var29.getDropTarget(); + var29.show(false); + boolean var37 = var29.isPaintingForPrint(); + SpaceWar.SpacePanel var38 = new SpaceWar.SpacePanel(); + float var39 = var38.getAlignmentX(); + var38.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var44 = var38.getMouseListeners(); + int var45 = var38.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var46 = var38.getInputMethodRequests(); + var29.addKeyListener((java.awt.event.KeyListener)var38); + var38.removeNotify(); + SpaceWar.SpacePanel var49 = new SpaceWar.SpacePanel(); + java.awt.Color var50 = var49.getBackground(); + var49.repaint(); + var49.setRequestFocusEnabled(false); + var49.reshape(100, 0, 100, 0); + var49.requestFocus(); + SpaceWar.SpacePanel var60 = new SpaceWar.SpacePanel(); + float var61 = var60.getAlignmentX(); + var60.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var66 = var60.getUI(); + java.awt.im.InputMethodRequests var67 = var60.getInputMethodRequests(); + SpaceWar.SpacePanel var68 = new SpaceWar.SpacePanel(); + float var69 = var68.getAlignmentX(); + var68.setVisible(false); + var68.nextFocus(); + var68.updateUI(); + var68.enableInputMethods(true); + var68.setSize((-1), 1); + SpaceWar.SpacePanel var79 = new SpaceWar.SpacePanel(); + var79.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var60.add((java.awt.Component)var68, (java.lang.Object)"SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + SpaceWar.SpacePanel var85 = new SpaceWar.SpacePanel(); + var85.setName(""); + java.awt.ComponentOrientation var88 = var85.getComponentOrientation(); + var60.applyComponentOrientation(var88); + var49.setComponentOrientation(var88); + var38.applyComponentOrientation(var88); + var0.setComponentOrientation(var88); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var25); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var30 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var33 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var34); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var39 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var44); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var45 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var46); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var50); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var61 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var66); + + // Regression assertion (captures the current behavior of the code) + assertNull(var67); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var69 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var88); + + } + + public void test475() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test475"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + java.awt.im.InputMethodRequests var3 = var0.getInputMethodRequests(); + var0.setDoubleBuffered(true); + var0.setInheritsPopupMenu(false); + javax.swing.plaf.PanelUI var8 = var0.getUI(); + boolean var9 = var0.isCursorSet(); + var0.repaint(10L); + SpaceWar.SpacePanel var12 = new SpaceWar.SpacePanel(); + float var13 = var12.getAlignmentX(); + var12.setVisible(false); + boolean var16 = var12.isDoubleBuffered(); + var12.list(); + SpaceWar.SpacePanel var18 = new SpaceWar.SpacePanel(); + float var19 = var18.getAlignmentX(); + var18.setVisible(false); + boolean var22 = var18.isDoubleBuffered(); + java.awt.dnd.DropTarget var23 = var18.getDropTarget(); + var18.show(false); + java.awt.Rectangle var26 = var18.getVisibleRect(); + java.awt.image.BufferedImage var28 = var18.loadImg("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + boolean var29 = var12.isAncestorOf((java.awt.Component)var18); + float var30 = var12.getAlignmentX(); + java.awt.image.VolatileImage var33 = var12.createVolatileImage(25, 1); + java.beans.PropertyChangeListener[] var35 = var12.getPropertyChangeListeners("PanelUI"); + boolean var36 = var12.isPaintingForPrint(); + SpaceWar.SpacePanel var37 = new SpaceWar.SpacePanel(); + java.awt.Color var38 = var37.getBackground(); + boolean var41 = var37.inside(0, (-1)); + var37.transferFocusUpCycle(); + boolean var43 = var37.isFocusCycleRoot(); + // The following exception was thrown during execution. + // This behavior will recorded for regression testing. + try { + var0.add((java.awt.Component)var12, (java.lang.Object)var43, 499); + fail("Expected exception of type java.lang.IllegalArgumentException"); + } catch (java.lang.IllegalArgumentException e) { + // Expected exception. + } + + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var22 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var23); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertNull(var28); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var29 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var30 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNull(var33); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var35); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var36 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var38); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var41 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var43 == false); + + } + + public void test476() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test476"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + var0.show(false); + java.awt.Rectangle var8 = var0.getVisibleRect(); + java.awt.Toolkit var9 = var0.getToolkit(); + SpaceWar.SpacePanel var10 = new SpaceWar.SpacePanel(); + float var11 = var10.getAlignmentX(); + var10.setVisible(false); + boolean var14 = var10.isDoubleBuffered(); + var10.list(); + SpaceWar.SpacePanel var16 = new SpaceWar.SpacePanel(); + float var17 = var16.getAlignmentX(); + var16.setVisible(false); + boolean var20 = var16.isDoubleBuffered(); + java.awt.dnd.DropTarget var21 = var16.getDropTarget(); + var16.show(false); + java.awt.Rectangle var24 = var16.getVisibleRect(); + java.awt.Rectangle var25 = var10.getBounds(var24); + javax.swing.JToolTip var26 = var10.createToolTip(); + var10.firePropertyChange("", false, false); + var10.validate(); + SpaceWar.SpacePanel var32 = new SpaceWar.SpacePanel(); + float var33 = var32.getAlignmentX(); + var32.setVisible(false); + var32.nextFocus(); + var32.updateUI(); + var32.enableInputMethods(true); + java.lang.String var40 = var32.toString(); + var0.putClientProperty((java.lang.Object)var10, (java.lang.Object)var32); + javax.swing.border.Border var42 = var0.getBorder(); + java.awt.Container var43 = var0.getParent(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var9); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var21); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var25); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var33 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var40 + "' != '" + "SpaceWar.SpacePanel[,0,0,0var40,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"+ "'", var40.equals("SpaceWar.SpacePanel[,0,0,0var40,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]")); + + // Regression assertion (captures the current behavior of the code) + assertNull(var42); + + // Regression assertion (captures the current behavior of the code) + assertNull(var43); + + } + + public void test477() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test477"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + SpaceWar.SpacePanel var4 = new SpaceWar.SpacePanel(); + java.awt.Color var5 = var4.getBackground(); + var0.setForeground(var5); + SpaceWar.SpacePanel var7 = new SpaceWar.SpacePanel(); + float var8 = var7.getAlignmentX(); + var7.setVisible(false); + boolean var11 = var7.isDoubleBuffered(); + java.awt.dnd.DropTarget var12 = var7.getDropTarget(); + var7.show(false); + java.awt.Rectangle var15 = var7.getVisibleRect(); + var0.repaint(var15); + java.awt.FocusTraversalPolicy var17 = var0.getFocusTraversalPolicy(); + SpaceWar.SpacePanel var18 = new SpaceWar.SpacePanel(); + float var19 = var18.getAlignmentX(); + var18.firePropertyChange("", (-1), 1); + boolean var24 = var18.isFocusOwner(); + SpaceWar.SpacePanel var26 = new SpaceWar.SpacePanel(); + float var27 = var26.getAlignmentX(); + var26.setVisible(false); + java.awt.Dimension var30 = var26.getPreferredSize(); + java.awt.Toolkit var31 = var26.getToolkit(); + SpaceWar.SpacePanel var32 = new SpaceWar.SpacePanel(); + var32.setName(""); + int var35 = var32.getX(); + SpaceWar.SpacePanel var36 = new SpaceWar.SpacePanel(); + float var37 = var36.getAlignmentX(); + var36.setVisible(false); + var36.nextFocus(); + SpaceWar.SpacePanel var41 = new SpaceWar.SpacePanel(); + float var42 = var41.getAlignmentX(); + var41.setVisible(false); + SpaceWar.SpacePanel var45 = new SpaceWar.SpacePanel(); + java.awt.Color var46 = var45.getBackground(); + var41.setForeground(var46); + var36.setBackground(var46); + var32.setBackground(var46); + var26.setForeground(var46); + var18.putClientProperty((java.lang.Object)(byte)100, (java.lang.Object)var46); + var0.setBackground(var46); + javax.swing.JToolTip var53 = var0.createToolTip(); + var0.repaint(25, 25, 24, 10); + var0.invalidate(); + var0.setInheritsPopupMenu(false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var24 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var30); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var31); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var35 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var42 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var46); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var53); + + } + + public void test478() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test478"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.repaint(1L); + SpaceWar.SpacePanel var7 = new SpaceWar.SpacePanel(); + float var8 = var7.getAlignmentX(); + var7.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var13 = new SpaceWar.SpacePanel(); + float var14 = var13.getAlignmentX(); + var13.setVisible(false); + java.awt.Dimension var17 = var13.getPreferredSize(); + var7.setMaximumSize(var17); + var0.setPreferredSize(var17); + javax.swing.plaf.PanelUI var20 = var0.getUI(); + java.awt.Dimension var21 = var0.getMinimumSize(); + java.awt.event.MouseWheelListener[] var22 = var0.getMouseWheelListeners(); + boolean var23 = var0.getInheritsPopupMenu(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var21); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == false); + + } + + public void test479() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test479"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var6 = var0.getUI(); + java.awt.im.InputMethodRequests var7 = var0.getInputMethodRequests(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + var8.nextFocus(); + var8.updateUI(); + var8.enableInputMethods(true); + var8.setSize((-1), 1); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + var19.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var0.add((java.awt.Component)var8, (java.lang.Object)"SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + var8.setAutoscrolls(true); + SpaceWar.SpacePanel var27 = new SpaceWar.SpacePanel(); + float var28 = var27.getAlignmentX(); + boolean var29 = var27.hasFocus(); + boolean var30 = var27.isPreferredSizeSet(); + var27.firePropertyChange("", (short)1, (short)0); + boolean var35 = var27.isMaximumSizeSet(); + java.awt.peer.ComponentPeer var36 = var27.getPeer(); + java.awt.ComponentOrientation var37 = var27.getComponentOrientation(); + var8.setComponentOrientation(var37); + SpaceWar.SpacePanel var39 = new SpaceWar.SpacePanel(); + java.awt.Color var40 = var39.getBackground(); + var39.repaint(); + var39.setRequestFocusEnabled(false); + var39.reshape(100, 0, 100, 0); + java.beans.VetoableChangeListener[] var49 = var39.getVetoableChangeListeners(); + java.awt.Rectangle var50 = var39.getVisibleRect(); + float var51 = var39.getAlignmentY(); + var8.addKeyListener((java.awt.event.KeyListener)var39); + var39.setAlignmentY(0.0f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var28 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var29 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var30 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var35 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var36); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var37); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var40); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var49); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var50); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var51 == 0.5f); + + } + + public void test480() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test480"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + var0.setName(""); + var0.enable(true); + var0.enable(); + java.awt.Point var6 = var0.location(); + var0.repaint(0, 3, (-1), 1); + java.awt.Component var14 = var0.findComponentAt(0, 25); + java.awt.event.MouseListener[] var15 = var0.getMouseListeners(); + var0.repaint(1L); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + } + + public void test481() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test481"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + var0.setName(""); + java.awt.ComponentOrientation var3 = var0.getComponentOrientation(); + int var4 = var0.getComponentCount(); + var0.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", (byte)1, (byte)0); + boolean var9 = var0.getVerifyInputWhenFocusTarget(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == true); + + } + + public void test482() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test482"); + + + SpaceWar.PowerUp var3 = new SpaceWar.PowerUp(100, 495.44236387443226d, 323.62099822147866d); + + } + + public void test483() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test483"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + var0.show(false); + boolean var8 = var0.isPaintingForPrint(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var15 = var9.getMouseListeners(); + int var16 = var9.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var17 = var9.getInputMethodRequests(); + var0.addKeyListener((java.awt.event.KeyListener)var9); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + float var20 = var19.getAlignmentX(); + var19.setVisible(false); + boolean var23 = var19.isDoubleBuffered(); + var19.list(); + float var25 = var19.getAlignmentY(); + boolean var26 = var9.isFocusCycleRoot((java.awt.Container)var19); + SpaceWar.SpacePanel var28 = new SpaceWar.SpacePanel(); + float var29 = var28.getAlignmentX(); + var28.setVisible(false); + var28.nextFocus(); + var28.updateUI(); + java.awt.Component var34 = var9.add("", (java.awt.Component)var28); + SpaceWar.SpacePanel var36 = new SpaceWar.SpacePanel(); + java.awt.Color var37 = var36.getBackground(); + var36.repaint(); + var36.setRequestFocusEnabled(false); + var36.reshape(100, 0, 100, 0); + var36.requestFocus(); + var36.firePropertyChange("hi!", '4', ' '); + java.awt.Point var51 = var36.getLocation(); + java.awt.Dimension var52 = var36.size(); + java.awt.Component var53 = var9.add("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", (java.awt.Component)var36); + javax.swing.border.Border var54 = var36.getBorder(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var29 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var34); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var37); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var51); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var52); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var53); + + // Regression assertion (captures the current behavior of the code) + assertNull(var54); + + } + + public void test484() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test484"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + boolean var2 = var0.hasFocus(); + java.beans.VetoableChangeListener[] var3 = var0.getVetoableChangeListeners(); + var0.paintImmediately(10, 0, (-1), 25); + // The following exception was thrown during execution. + // This behavior will recorded for regression testing. + try { + javax.swing.InputMap var10 = var0.getInputMap(100); + fail("Expected exception of type java.lang.IllegalArgumentException"); + } catch (java.lang.IllegalArgumentException e) { + // Expected exception. + } + + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var2 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var3); + + } + + public void test485() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test485"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var6 = var0.getUI(); + java.awt.im.InputMethodRequests var7 = var0.getInputMethodRequests(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + var8.nextFocus(); + var8.updateUI(); + var8.enableInputMethods(true); + var8.setSize((-1), 1); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + var19.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var0.add((java.awt.Component)var8, (java.lang.Object)"SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + java.awt.event.KeyListener[] var25 = var0.getKeyListeners(); + SpaceWar.SpacePanel var26 = new SpaceWar.SpacePanel(); + float var27 = var26.getAlignmentX(); + var26.setVisible(false); + boolean var30 = var26.isDoubleBuffered(); + var26.list(); + SpaceWar.SpacePanel var32 = new SpaceWar.SpacePanel(); + float var33 = var32.getAlignmentX(); + var32.setVisible(false); + boolean var36 = var32.isDoubleBuffered(); + java.awt.dnd.DropTarget var37 = var32.getDropTarget(); + var32.show(false); + java.awt.Rectangle var40 = var32.getVisibleRect(); + java.awt.image.BufferedImage var42 = var32.loadImg("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + boolean var43 = var26.isAncestorOf((java.awt.Component)var32); + java.awt.GraphicsConfiguration var44 = var32.getGraphicsConfiguration(); + java.awt.Font var45 = var32.getFont(); + var0.setFont(var45); + var0.nextFocus(); + javax.swing.event.AncestorListener[] var48 = var0.getAncestorListeners(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var25); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var30 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var33 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var36 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var37); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var40); + + // Regression assertion (captures the current behavior of the code) + assertNull(var42); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var43 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var44); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var45); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var48); + + } + + public void test486() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test486"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.reshape((-1), 1, (-1), 10); + var0.disable(); + java.awt.Component var13 = var0.findComponentAt(0, (-1)); + SpaceWar.SpacePanel var14 = new SpaceWar.SpacePanel(); + var14.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + javax.swing.plaf.PanelUI var19 = var14.getUI(); + SpaceWar.SpacePanel var20 = new SpaceWar.SpacePanel(); + float var21 = var20.getAlignmentX(); + var20.setVisible(false); + var20.nextFocus(); + var20.repaint(1L); + SpaceWar.SpacePanel var27 = new SpaceWar.SpacePanel(); + float var28 = var27.getAlignmentX(); + var27.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var33 = new SpaceWar.SpacePanel(); + float var34 = var33.getAlignmentX(); + var33.setVisible(false); + java.awt.Dimension var37 = var33.getPreferredSize(); + var27.setMaximumSize(var37); + var20.setPreferredSize(var37); + var14.setMaximumSize(var37); + var0.setSize(var37); + java.awt.Container var42 = var0.getParent(); + SpaceWar.SpacePanel var43 = new SpaceWar.SpacePanel(); + float var44 = var43.getAlignmentX(); + var43.setVisible(false); + var43.nextFocus(); + var43.reshape((-1), 1, (-1), 10); + java.util.Set var54 = var43.getFocusTraversalKeys(3); + java.awt.Point var55 = var43.getLocation(); + boolean var56 = var0.contains(var55); + // The following exception was thrown during execution. + // This behavior will recorded for regression testing. + try { + java.util.Set var58 = var0.getFocusTraversalKeys(500); + fail("Expected exception of type java.lang.IllegalArgumentException"); + } catch (java.lang.IllegalArgumentException e) { + // Expected exception. + } + + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var28 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var34 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var37); + + // Regression assertion (captures the current behavior of the code) + assertNull(var42); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var44 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var54); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var55); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var56 == false); + + } + + public void test487() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test487"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + var0.setName(""); + java.awt.Dimension var3 = var0.minimumSize(); + boolean var4 = var0.isDoubleBuffered(); + SpaceWar.SpacePanel var5 = new SpaceWar.SpacePanel(); + float var6 = var5.getAlignmentX(); + var5.setVisible(false); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + java.awt.Color var10 = var9.getBackground(); + var5.setForeground(var10); + SpaceWar.SpacePanel var12 = new SpaceWar.SpacePanel(); + float var13 = var12.getAlignmentX(); + var12.setVisible(false); + boolean var16 = var12.isDoubleBuffered(); + java.awt.dnd.DropTarget var17 = var12.getDropTarget(); + var12.show(false); + java.awt.Rectangle var20 = var12.getVisibleRect(); + var5.repaint(var20); + java.awt.FocusTraversalPolicy var22 = var5.getFocusTraversalPolicy(); + java.awt.im.InputMethodRequests var23 = var5.getInputMethodRequests(); + var5.layout(); + boolean var25 = var5.isFocusTraversalPolicyProvider(); + java.awt.Component var26 = var0.add((java.awt.Component)var5); + boolean var27 = var26.hasFocus(); + java.beans.PropertyChangeListener[] var29 = var26.getPropertyChangeListeners("SpaceWar.SpacePanel[,10,10,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertNull(var23); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var29); + + } + + public void test488() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test488"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + boolean var2 = var0.hasFocus(); + boolean var3 = var0.isPreferredSizeSet(); + var0.firePropertyChange("", (short)1, (short)0); + boolean var8 = var0.isMaximumSizeSet(); + boolean var9 = var0.getAutoscrolls(); + // The following exception was thrown during execution. + // This behavior will recorded for regression testing. + try { + java.util.Set var11 = var0.getFocusTraversalKeys(10); + fail("Expected exception of type java.lang.IllegalArgumentException"); + } catch (java.lang.IllegalArgumentException e) { + // Expected exception. + } + + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var2 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == false); + + } + + public void test489() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test489"); + + + SpaceWar.Explosion var4 = new SpaceWar.Explosion((-2.7646948150810227d), 83.657626403857d, 400, 1); + + } + + public void test490() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test490"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var6 = var0.getMouseListeners(); + java.awt.Dimension var7 = var0.getPreferredSize(); + java.util.Locale var8 = var0.getLocale(); + var0.setFocusable(true); + var0.setSize(3, 10); + var0.invalidate(); + boolean var15 = var0.isValid(); + boolean var16 = var0.getVerifyInputWhenFocusTarget(); + var0.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", true, false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == true); + + } + + public void test491() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test491"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + var0.list(); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + float var7 = var6.getAlignmentX(); + var6.setVisible(false); + boolean var10 = var6.isDoubleBuffered(); + java.awt.dnd.DropTarget var11 = var6.getDropTarget(); + var6.show(false); + java.awt.Rectangle var14 = var6.getVisibleRect(); + java.awt.Rectangle var15 = var0.getBounds(var14); + javax.swing.JToolTip var16 = var0.createToolTip(); + var0.firePropertyChange("", false, false); + var0.revalidate(); + int var22 = var0.getComponentCount(); + var0.setFocusTraversalKeysEnabled(true); + SpaceWar.SpacePanel var25 = new SpaceWar.SpacePanel(); + float var26 = var25.getAlignmentX(); + var25.setVisible(false); + var25.setInheritsPopupMenu(false); + var25.setFocusTraversalPolicyProvider(true); + java.awt.Container var33 = var25.getFocusCycleRootAncestor(); + SpaceWar.SpacePanel var34 = new SpaceWar.SpacePanel(); + float var35 = var34.getAlignmentX(); + var34.removeNotify(); + SpaceWar.SpacePanel var37 = new SpaceWar.SpacePanel(); + float var38 = var37.getAlignmentX(); + var37.setVisible(false); + boolean var41 = var37.isDoubleBuffered(); + var37.list(); + float var43 = var37.getAlignmentY(); + java.awt.Insets var44 = var37.getInsets(); + java.awt.Insets var45 = var34.getInsets(var44); + java.awt.Insets var46 = var25.getInsets(var45); + java.awt.Insets var47 = var0.getInsets(var45); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var22 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNull(var33); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var35 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var38 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var41 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var43 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var44); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var45); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var46); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var47); + + } + + public void test492() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test492"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.setInheritsPopupMenu(false); + boolean var6 = var0.isDoubleBuffered(); + SpaceWar.SpacePanel var7 = new SpaceWar.SpacePanel(); + float var8 = var7.getAlignmentX(); + var7.setVisible(false); + var7.nextFocus(); + var7.reshape((-1), 1, (-1), 10); + var7.disable(); + java.awt.LayoutManager var18 = var7.getLayout(); + var0.setLayout(var18); + java.awt.event.MouseMotionListener[] var20 = var0.getMouseMotionListeners(); + var0.updateUI(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + } + + public void test493() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test493"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var6 = var0.getMouseListeners(); + var0.firePropertyChange("", 0.5f, 100.0f); + var0.enable(false); + SpaceWar.SpacePanel var13 = new SpaceWar.SpacePanel(); + float var14 = var13.getAlignmentX(); + SpaceWar.SpacePanel var15 = new SpaceWar.SpacePanel(); + float var16 = var15.getAlignmentX(); + var15.setVisible(false); + java.awt.Dimension var19 = var15.getPreferredSize(); + boolean var20 = var15.getVerifyInputWhenFocusTarget(); + java.awt.Component var23 = var15.findComponentAt(10, 1); + var13.addKeyListener((java.awt.event.KeyListener)var15); + java.awt.Cursor var25 = var13.getCursor(); + java.awt.Dimension var26 = var13.getMinimumSize(); + var0.setSize(var26); + SpaceWar.SpacePanel var28 = new SpaceWar.SpacePanel(); + java.awt.Color var29 = var28.getBackground(); + var28.repaint(); + java.awt.im.InputMethodRequests var31 = var28.getInputMethodRequests(); + var28.setDoubleBuffered(true); + var28.setInheritsPopupMenu(false); + javax.swing.plaf.PanelUI var36 = var28.getUI(); + java.util.Set var38 = var28.getFocusTraversalKeys(3); + var28.enable(); + var0.putClientProperty((java.lang.Object)var28, (java.lang.Object)(short)10); + SpaceWar.SpacePanel var42 = new SpaceWar.SpacePanel(); + float var43 = var42.getAlignmentX(); + var42.setVisible(false); + boolean var46 = var42.isDoubleBuffered(); + var42.list(); + SpaceWar.SpacePanel var48 = new SpaceWar.SpacePanel(); + float var49 = var48.getAlignmentX(); + var48.setVisible(false); + boolean var52 = var48.isDoubleBuffered(); + java.awt.dnd.DropTarget var53 = var48.getDropTarget(); + var48.show(false); + java.awt.Rectangle var56 = var48.getVisibleRect(); + java.awt.Rectangle var57 = var42.getBounds(var56); + javax.swing.JToolTip var58 = var42.createToolTip(); + var42.firePropertyChange("", false, false); + var42.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", (-1L), (-1L)); + java.awt.Container var67 = var42.getParent(); + java.awt.Component.BaselineResizeBehavior var68 = var42.getBaselineResizeBehavior(); + var28.remove((java.awt.Component)var42); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var23); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var25); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var29); + + // Regression assertion (captures the current behavior of the code) + assertNull(var31); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var36); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var38); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var43 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var46 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var49 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var52 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var53); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var56); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var57); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var58); + + // Regression assertion (captures the current behavior of the code) + assertNull(var67); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var68); + + } + + public void test494() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test494"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + var0.list(); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + float var7 = var6.getAlignmentX(); + var6.setVisible(false); + boolean var10 = var6.isDoubleBuffered(); + java.awt.dnd.DropTarget var11 = var6.getDropTarget(); + var6.show(false); + java.awt.Rectangle var14 = var6.getVisibleRect(); + java.awt.Rectangle var15 = var0.getBounds(var14); + javax.swing.JToolTip var16 = var0.createToolTip(); + var0.firePropertyChange("", false, false); + var0.validate(); + javax.swing.ActionMap var22 = var0.getActionMap(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var22); + + } + + public void test495() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test495"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + var0.show(false); + boolean var8 = var0.isPaintingForPrint(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var15 = var9.getMouseListeners(); + int var16 = var9.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var17 = var9.getInputMethodRequests(); + var0.addKeyListener((java.awt.event.KeyListener)var9); + boolean var19 = var0.isDisplayable(); + java.awt.Insets var20 = var0.getInsets(); + var0.setSize(10, 499); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + } + + public void test496() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test496"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + SpaceWar.SpacePanel var5 = new SpaceWar.SpacePanel(); + float var6 = var5.getAlignmentX(); + var5.setVisible(false); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + java.awt.Color var10 = var9.getBackground(); + var5.setForeground(var10); + var0.setBackground(var10); + var0.enable(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var10); + + } + + public void test497() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test497"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + float var7 = var6.getAlignmentX(); + var6.setVisible(false); + java.awt.Dimension var10 = var6.getPreferredSize(); + var0.setMaximumSize(var10); + boolean var12 = var0.getVerifyInputWhenFocusTarget(); + javax.accessibility.AccessibleContext var13 = var0.getAccessibleContext(); + boolean var14 = var0.isDoubleBuffered(); + boolean var15 = var0.getAutoscrolls(); + var0.repaint(10L, (-1), 25, (-1), 100); + var0.updateUI(); + java.awt.Point var23 = var0.location(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var23); + + } + + public void test498() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test498"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + java.awt.Dimension var4 = var0.getPreferredSize(); + boolean var5 = var0.getVerifyInputWhenFocusTarget(); + java.awt.Component var8 = var0.findComponentAt(10, 1); + boolean var9 = var0.isCursorSet(); + SpaceWar.SpacePanel var10 = new SpaceWar.SpacePanel(); + float var11 = var10.getAlignmentX(); + var10.setVisible(false); + var10.nextFocus(); + var10.updateUI(); + var10.enableInputMethods(true); + java.awt.Point var18 = var10.location(); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + float var20 = var19.getAlignmentX(); + var19.setVisible(false); + var19.nextFocus(); + var19.reshape((-1), 1, (-1), 10); + SpaceWar.SpacePanel var29 = new SpaceWar.SpacePanel(); + java.awt.Color var30 = var29.getBackground(); + var29.repaint(); + var29.setRequestFocusEnabled(false); + var29.reshape(100, 0, 100, 0); + java.awt.Component var39 = var19.add((java.awt.Component)var29); + SpaceWar.SpacePanel var40 = new SpaceWar.SpacePanel(); + var40.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + javax.swing.plaf.PanelUI var45 = var40.getUI(); + SpaceWar.SpacePanel var46 = new SpaceWar.SpacePanel(); + float var47 = var46.getAlignmentX(); + var46.setVisible(false); + var46.nextFocus(); + var46.repaint(1L); + SpaceWar.SpacePanel var53 = new SpaceWar.SpacePanel(); + float var54 = var53.getAlignmentX(); + var53.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var59 = new SpaceWar.SpacePanel(); + float var60 = var59.getAlignmentX(); + var59.setVisible(false); + java.awt.Dimension var63 = var59.getPreferredSize(); + var53.setMaximumSize(var63); + var46.setPreferredSize(var63); + var40.setMaximumSize(var63); + java.awt.Dimension var67 = var29.getSize(var63); + var10.setMaximumSize(var63); + var0.setMinimumSize(var63); + java.awt.event.MouseMotionListener[] var70 = var0.getMouseMotionListeners(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var4); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var30); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var39); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var45); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var47 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var54 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var60 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var63); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var67); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var70); + + } + + public void test499() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test499"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var6 = var0.getUI(); + java.awt.im.InputMethodRequests var7 = var0.getInputMethodRequests(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + var8.nextFocus(); + var8.updateUI(); + var8.enableInputMethods(true); + var8.setSize((-1), 1); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + var19.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var0.add((java.awt.Component)var8, (java.lang.Object)"SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + java.awt.ComponentOrientation var25 = var8.getComponentOrientation(); + java.beans.VetoableChangeListener[] var26 = var8.getVetoableChangeListeners(); + java.awt.dnd.DropTarget var27 = var8.getDropTarget(); + var8.repaint(3, 499, 400, 1); + java.awt.Toolkit var33 = var8.getToolkit(); + int var36 = var8.getBaseline(24, 24); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var25); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertNull(var27); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var33); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var36 == (-1)); + + } + + public void test500() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest2.test500"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.setInheritsPopupMenu(false); + boolean var6 = var0.isDoubleBuffered(); + SpaceWar.SpacePanel var7 = new SpaceWar.SpacePanel(); + float var8 = var7.getAlignmentX(); + var7.setVisible(false); + var7.nextFocus(); + var7.reshape((-1), 1, (-1), 10); + var7.disable(); + java.awt.LayoutManager var18 = var7.getLayout(); + var0.setLayout(var18); + java.awt.event.MouseMotionListener[] var20 = var0.getMouseMotionListeners(); + java.beans.PropertyChangeListener[] var22 = var0.getPropertyChangeListeners("SpaceWar.SpacePanel[,0,0,0x0,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + java.awt.Component var23 = var0.getNextFocusableComponent(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertNull(var23); + + } + +} diff --git a/test/randoop/RandoopTest3.java b/test/randoop/RandoopTest3.java new file mode 100644 index 0000000..4fed634 --- /dev/null +++ b/test/randoop/RandoopTest3.java @@ -0,0 +1,34829 @@ +package randoop; + +import junit.framework.*; + +public class RandoopTest3 extends TestCase { + + public static boolean debug = false; + + public void test1() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test1"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + var0.show(false); + boolean var8 = var0.isPaintingForPrint(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var15 = var9.getMouseListeners(); + int var16 = var9.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var17 = var9.getInputMethodRequests(); + var0.addKeyListener((java.awt.event.KeyListener)var9); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + float var20 = var19.getAlignmentX(); + var19.setVisible(false); + boolean var23 = var19.isDoubleBuffered(); + var19.list(); + float var25 = var19.getAlignmentY(); + boolean var26 = var9.isFocusCycleRoot((java.awt.Container)var19); + javax.swing.JPopupMenu var27 = var19.getComponentPopupMenu(); + var19.move((-1), 100); + var19.validate(); + java.awt.Toolkit var32 = var19.getToolkit(); + SpaceWar.SpacePanel var33 = new SpaceWar.SpacePanel(); + float var34 = var33.getAlignmentX(); + var33.setVisible(false); + boolean var37 = var33.isDoubleBuffered(); + SpaceWar.SpacePanel var38 = new SpaceWar.SpacePanel(); + java.awt.Color var39 = var38.getBackground(); + var38.repaint(); + java.lang.Object var41 = var33.getClientProperty((java.lang.Object)var38); + var38.repaint(10, 1, 25, 0); + var19.removeKeyListener((java.awt.event.KeyListener)var38); + boolean var48 = var38.isDoubleBuffered(); + boolean var49 = var38.isValidateRoot(); + int var50 = var38.getDebugGraphicsOptions(); + var38.setBounds(25, 399, 500, 499); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var27); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var32); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var34 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var39); + + // Regression assertion (captures the current behavior of the code) + assertNull(var41); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var48 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var49 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var50 == 0); + + } + + public void test2() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test2"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + var0.show(false); + boolean var8 = var0.isPaintingForPrint(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var15 = var9.getMouseListeners(); + int var16 = var9.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var17 = var9.getInputMethodRequests(); + var0.addKeyListener((java.awt.event.KeyListener)var9); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + float var20 = var19.getAlignmentX(); + var19.setVisible(false); + boolean var23 = var19.isDoubleBuffered(); + var19.list(); + float var25 = var19.getAlignmentY(); + boolean var26 = var9.isFocusCycleRoot((java.awt.Container)var19); + SpaceWar.SpacePanel var28 = new SpaceWar.SpacePanel(); + float var29 = var28.getAlignmentX(); + var28.setVisible(false); + var28.nextFocus(); + var28.updateUI(); + java.awt.Component var34 = var9.add("", (java.awt.Component)var28); + java.awt.ComponentOrientation var35 = var28.getComponentOrientation(); + boolean var36 = var28.isFocusable(); + SpaceWar.SpacePanel var37 = new SpaceWar.SpacePanel(); + float var38 = var37.getAlignmentX(); + var37.setVisible(false); + var37.nextFocus(); + var37.reshape((-1), 1, (-1), 10); + var37.disable(); + java.awt.LayoutManager var48 = var37.getLayout(); + java.awt.Container var49 = var37.getParent(); + boolean var50 = var37.isOptimizedDrawingEnabled(); + var28.addKeyListener((java.awt.event.KeyListener)var37); + javax.accessibility.AccessibleContext var52 = var37.getAccessibleContext(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var29 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var34); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var35); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var36 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var38 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var48); + + // Regression assertion (captures the current behavior of the code) + assertNull(var49); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var50 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var52); + + } + + public void test3() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test3"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + var0.setRequestFocusEnabled(false); + var0.reshape(100, 0, 100, 0); + var0.requestFocus(); + var0.firePropertyChange("hi!", '4', ' '); + java.awt.Point var15 = var0.getLocation(); + java.awt.event.MouseWheelListener[] var16 = var0.getMouseWheelListeners(); + java.awt.Component var17 = var0.getNextFocusableComponent(); + boolean var18 = var0.requestDefaultFocus(); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var20 = new SpaceWar.SpacePanel(); + java.awt.Color var21 = var20.getBackground(); + SpaceWar.SpacePanel var22 = new SpaceWar.SpacePanel(); + float var23 = var22.getAlignmentX(); + var22.setVisible(false); + var22.nextFocus(); + var22.updateUI(); + var22.enableInputMethods(true); + var19.add((java.awt.Component)var20, (java.lang.Object)true); + java.awt.Dimension var31 = var20.getPreferredSize(); + java.awt.Component[] var32 = var20.getComponents(); + var20.repaint(25, 25, 100, 1); + javax.swing.KeyStroke[] var38 = var20.getRegisteredKeyStrokes(); + var20.validate(); + boolean var40 = var0.isAncestorOf((java.awt.Component)var20); + var20.setDoubleBuffered(false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var21); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var31); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var32); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var38); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var40 == false); + + } + + public void test4() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test4"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + boolean var6 = var0.isFocusOwner(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + java.awt.Dimension var12 = var8.getPreferredSize(); + java.awt.Toolkit var13 = var8.getToolkit(); + SpaceWar.SpacePanel var14 = new SpaceWar.SpacePanel(); + var14.setName(""); + int var17 = var14.getX(); + SpaceWar.SpacePanel var18 = new SpaceWar.SpacePanel(); + float var19 = var18.getAlignmentX(); + var18.setVisible(false); + var18.nextFocus(); + SpaceWar.SpacePanel var23 = new SpaceWar.SpacePanel(); + float var24 = var23.getAlignmentX(); + var23.setVisible(false); + SpaceWar.SpacePanel var27 = new SpaceWar.SpacePanel(); + java.awt.Color var28 = var27.getBackground(); + var23.setForeground(var28); + var18.setBackground(var28); + var14.setBackground(var28); + var8.setForeground(var28); + var0.putClientProperty((java.lang.Object)(byte)100, (java.lang.Object)var28); + boolean var34 = var0.isEnabled(); + java.awt.event.ComponentListener[] var35 = var0.getComponentListeners(); + java.awt.Dimension var36 = var0.getPreferredSize(); + javax.swing.border.Border var37 = var0.getBorder(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var24 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var28); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var34 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var35); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var36); + + // Regression assertion (captures the current behavior of the code) + assertNull(var37); + + } + + public void test5() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test5"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + var0.show(false); + java.awt.Rectangle var8 = var0.getVisibleRect(); + java.awt.Toolkit var9 = var0.getToolkit(); + java.awt.event.MouseMotionListener[] var10 = var0.getMouseMotionListeners(); + SpaceWar.SpacePanel var11 = new SpaceWar.SpacePanel(); + float var12 = var11.getAlignmentX(); + var11.setVisible(false); + SpaceWar.SpacePanel var15 = new SpaceWar.SpacePanel(); + java.awt.Color var16 = var15.getBackground(); + var11.setForeground(var16); + SpaceWar.SpacePanel var18 = new SpaceWar.SpacePanel(); + float var19 = var18.getAlignmentX(); + var18.setVisible(false); + boolean var22 = var18.isDoubleBuffered(); + java.awt.dnd.DropTarget var23 = var18.getDropTarget(); + var18.show(false); + java.awt.Rectangle var26 = var18.getVisibleRect(); + var11.repaint(var26); + java.awt.Component.BaselineResizeBehavior var28 = var11.getBaselineResizeBehavior(); + SpaceWar.SpacePanel var29 = new SpaceWar.SpacePanel(); + float var30 = var29.getAlignmentX(); + var29.setVisible(false); + var29.nextFocus(); + var29.repaint(1L); + SpaceWar.SpacePanel var36 = new SpaceWar.SpacePanel(); + float var37 = var36.getAlignmentX(); + var36.setVisible(false); + boolean var40 = var36.isDoubleBuffered(); + var36.list(); + SpaceWar.SpacePanel var42 = new SpaceWar.SpacePanel(); + float var43 = var42.getAlignmentX(); + var42.setVisible(false); + boolean var46 = var42.isDoubleBuffered(); + java.awt.dnd.DropTarget var47 = var42.getDropTarget(); + var42.show(false); + java.awt.Rectangle var50 = var42.getVisibleRect(); + java.awt.Rectangle var51 = var36.getBounds(var50); + var29.setBounds(var51); + var11.paintImmediately(var51); + var0.setBounds(var51); + boolean var55 = var0.isMinimumSizeSet(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var9); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var22 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var23); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var28); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var30 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var40 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var43 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var46 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var47); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var50); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var51); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var55 == false); + + } + + public void test6() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test6"); + + + SpaceWar.Explosion var4 = new SpaceWar.Explosion(475.3294093279198d, 1.0d, 500, 3); + boolean var5 = var4.update(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == true); + + } + + public void test7() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test7"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.updateUI(); + var0.enableInputMethods(true); + java.awt.Point var9 = var0.getMousePosition(false); + SpaceWar.SpacePanel var10 = new SpaceWar.SpacePanel(); + float var11 = var10.getAlignmentX(); + var10.setVisible(false); + boolean var14 = var10.isDoubleBuffered(); + var10.list(); + SpaceWar.SpacePanel var16 = new SpaceWar.SpacePanel(); + float var17 = var16.getAlignmentX(); + var16.setVisible(false); + boolean var20 = var16.isDoubleBuffered(); + java.awt.dnd.DropTarget var21 = var16.getDropTarget(); + var16.show(false); + java.awt.Rectangle var24 = var16.getVisibleRect(); + java.awt.Rectangle var25 = var10.getBounds(var24); + var0.scrollRectToVisible(var24); + SpaceWar.SpacePanel var28 = new SpaceWar.SpacePanel(); + float var29 = var28.getAlignmentX(); + var28.setVisible(false); + boolean var32 = var28.isDoubleBuffered(); + java.awt.dnd.DropTarget var33 = var28.getDropTarget(); + boolean var34 = var28.isFocusCycleRoot(); + var28.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", 100, 0); + SpaceWar.SpacePanel var39 = new SpaceWar.SpacePanel(); + float var40 = var39.getAlignmentX(); + var39.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var45 = var39.getUI(); + var28.add((java.awt.Component)var39, (java.lang.Object)(short)0); + java.awt.event.InputMethodListener[] var48 = var39.getInputMethodListeners(); + java.awt.Toolkit var49 = var39.getToolkit(); + boolean var50 = var39.isDoubleBuffered(); + javax.swing.InputMap var51 = var39.getInputMap(); + // The following exception was thrown during execution. + // This behavior will recorded for regression testing. + try { + var0.setInputMap(3, var51); + fail("Expected exception of type java.lang.IllegalArgumentException"); + } catch (java.lang.IllegalArgumentException e) { + // Expected exception. + } + + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNull(var9); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var21); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var25); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var29 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var32 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var33); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var34 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var40 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var45); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var48); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var49); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var50 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var51); + + } + + public void test8() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test8"); + + + SpaceWar.PowerUp var3 = new SpaceWar.PowerUp(100, (-1.0d), 0.0d); + double var4 = var3.getR(); + double var5 = var3.getY(); + double var6 = var3.getY(); + int var7 = var3.getType(); + int var8 = var3.getType(); + int var9 = var3.getType(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0.0d); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == 0.0d); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == 0.0d); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 100); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 100); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 100); + + } + + public void test9() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test9"); + + + SpaceWar.Bullet var3 = new SpaceWar.Bullet(24.0d, 100, 499); + double var4 = var3.getY(); + double var5 = var3.getR(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 499.0d); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == 5.0d); + + } + + public void test10() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test10"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + var0.show(false); + boolean var8 = var0.isPaintingForPrint(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var15 = var9.getMouseListeners(); + int var16 = var9.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var17 = var9.getInputMethodRequests(); + var0.addKeyListener((java.awt.event.KeyListener)var9); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + float var20 = var19.getAlignmentX(); + var19.setVisible(false); + boolean var23 = var19.isDoubleBuffered(); + var19.list(); + float var25 = var19.getAlignmentY(); + boolean var26 = var9.isFocusCycleRoot((java.awt.Container)var19); + javax.swing.JPopupMenu var27 = var19.getComponentPopupMenu(); + var19.move((-1), 100); + var19.validate(); + SpaceWar.SpacePanel var32 = new SpaceWar.SpacePanel(); + float var33 = var32.getAlignmentX(); + var32.setVisible(false); + SpaceWar.SpacePanel var36 = new SpaceWar.SpacePanel(); + java.awt.Color var37 = var36.getBackground(); + var32.setForeground(var37); + SpaceWar.SpacePanel var39 = new SpaceWar.SpacePanel(); + float var40 = var39.getAlignmentX(); + var39.setVisible(false); + boolean var43 = var39.isDoubleBuffered(); + java.awt.dnd.DropTarget var44 = var39.getDropTarget(); + var39.show(false); + java.awt.Rectangle var47 = var39.getVisibleRect(); + var32.repaint(var47); + java.awt.FocusTraversalPolicy var49 = var32.getFocusTraversalPolicy(); + SpaceWar.SpacePanel var50 = new SpaceWar.SpacePanel(); + float var51 = var50.getAlignmentX(); + var50.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var56 = var50.getUI(); + java.awt.im.InputMethodRequests var57 = var50.getInputMethodRequests(); + SpaceWar.SpacePanel var58 = new SpaceWar.SpacePanel(); + float var59 = var58.getAlignmentX(); + var58.setVisible(false); + var58.nextFocus(); + var58.updateUI(); + var58.enableInputMethods(true); + var58.setSize((-1), 1); + SpaceWar.SpacePanel var69 = new SpaceWar.SpacePanel(); + var69.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var50.add((java.awt.Component)var58, (java.lang.Object)"SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + java.awt.ComponentOrientation var75 = var58.getComponentOrientation(); + java.beans.VetoableChangeListener[] var76 = var58.getVetoableChangeListeners(); + int var77 = var58.getHeight(); + javax.swing.ActionMap var78 = var58.getActionMap(); + var32.setActionMap(var78); + var19.setActionMap(var78); + java.lang.String var81 = var19.toString(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var27); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var33 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var37); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var40 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var43 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var44); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var47); + + // Regression assertion (captures the current behavior of the code) + assertNull(var49); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var51 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var56); + + // Regression assertion (captures the current behavior of the code) + assertNull(var57); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var59 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var75); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var76); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var77 == 1); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var78); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var81 + "' != '" + "SpaceWar.SpacePanel[,-1,100,0var81,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=265,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"+ "'", var81.equals("SpaceWar.SpacePanel[,-1,100,0var81,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=265,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]")); + + } + + public void test11() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test11"); + + + SpaceWar.PowerUp var3 = new SpaceWar.PowerUp((-1), 579.3282808260785d, 370.79239132960686d); + int var4 = var3.getType(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == (-1)); + + } + + public void test12() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test12"); + + + SpaceWar.Enemy var2 = new SpaceWar.Enemy(0, 100); + var2.explode(); + java.awt.image.BufferedImage var5 = var2.loadImg("SpaceWar.SpacePanel[,-1,1,-1x10,invalid,hidden,disabled,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + var2.hit(); + double var7 = var2.getX(); + boolean var8 = var2.isDead(); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 432.7832140219743d); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == true); + + } + + public void test13() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test13"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var6 = var0.getMouseListeners(); + int var7 = var0.getDebugGraphicsOptions(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + boolean var12 = var8.isDoubleBuffered(); + java.awt.dnd.DropTarget var13 = var8.getDropTarget(); + var8.show(false); + java.awt.Rectangle var16 = var8.getVisibleRect(); + var0.paintImmediately(var16); + java.awt.Rectangle var18 = var0.getBounds(); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + float var20 = var19.getAlignmentX(); + var19.setVisible(false); + boolean var23 = var19.isDoubleBuffered(); + java.awt.dnd.DropTarget var24 = var19.getDropTarget(); + var19.show(false); + boolean var27 = var19.isPaintingForPrint(); + SpaceWar.SpacePanel var28 = new SpaceWar.SpacePanel(); + float var29 = var28.getAlignmentX(); + var28.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var34 = var28.getMouseListeners(); + int var35 = var28.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var36 = var28.getInputMethodRequests(); + var19.addKeyListener((java.awt.event.KeyListener)var28); + SpaceWar.SpacePanel var38 = new SpaceWar.SpacePanel(); + float var39 = var38.getAlignmentX(); + var38.setVisible(false); + boolean var42 = var38.isDoubleBuffered(); + var38.list(); + float var44 = var38.getAlignmentY(); + boolean var45 = var28.isFocusCycleRoot((java.awt.Container)var38); + boolean var46 = var38.isEnabled(); + java.awt.Dimension var47 = var38.getMaximumSize(); + var38.setFocusCycleRoot(false); + java.awt.event.ComponentListener[] var50 = var38.getComponentListeners(); + boolean var51 = var38.isFocusCycleRoot(); + var38.show(); + SpaceWar.SpacePanel var53 = new SpaceWar.SpacePanel(); + float var54 = var53.getAlignmentX(); + var53.setVisible(false); + boolean var57 = var53.isDoubleBuffered(); + var53.list(); + SpaceWar.SpacePanel var59 = new SpaceWar.SpacePanel(); + float var60 = var59.getAlignmentX(); + var59.setVisible(false); + boolean var63 = var59.isDoubleBuffered(); + java.awt.dnd.DropTarget var64 = var59.getDropTarget(); + var59.show(false); + java.awt.Rectangle var67 = var59.getVisibleRect(); + java.awt.Rectangle var68 = var53.getBounds(var67); + javax.swing.JToolTip var69 = var53.createToolTip(); + var53.firePropertyChange("", false, false); + var53.revalidate(); + int var75 = var53.getComponentCount(); + var0.add((java.awt.Component)var38, (java.lang.Object)var75); + var38.doLayout(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var29 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var34); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var35 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var36); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var39 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var42 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var44 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var45 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var46 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var47); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var50); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var51 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var54 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var57 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var60 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var63 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var64); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var67); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var68); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var69); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var75 == 0); + + } + + public void test14() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test14"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + javax.swing.plaf.PanelUI var3 = var0.getUI(); + SpaceWar.SpacePanel var4 = new SpaceWar.SpacePanel(); + float var5 = var4.getAlignmentX(); + var4.setVisible(false); + boolean var8 = var4.isDoubleBuffered(); + java.awt.dnd.DropTarget var9 = var4.getDropTarget(); + var4.show(false); + boolean var12 = var4.isPaintingForPrint(); + SpaceWar.SpacePanel var13 = new SpaceWar.SpacePanel(); + float var14 = var13.getAlignmentX(); + var13.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var19 = var13.getMouseListeners(); + int var20 = var13.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var21 = var13.getInputMethodRequests(); + var4.addKeyListener((java.awt.event.KeyListener)var13); + SpaceWar.SpacePanel var23 = new SpaceWar.SpacePanel(); + float var24 = var23.getAlignmentX(); + var23.setVisible(false); + boolean var27 = var23.isDoubleBuffered(); + var23.list(); + float var29 = var23.getAlignmentY(); + boolean var30 = var13.isFocusCycleRoot((java.awt.Container)var23); + SpaceWar.SpacePanel var32 = new SpaceWar.SpacePanel(); + float var33 = var32.getAlignmentX(); + var32.setVisible(false); + var32.nextFocus(); + var32.updateUI(); + java.awt.Component var38 = var13.add("", (java.awt.Component)var32); + java.awt.ComponentOrientation var39 = var32.getComponentOrientation(); + boolean var40 = var32.isFocusable(); + var0.remove((java.awt.Component)var32); + var0.hide(); + var0.revalidate(); + javax.swing.event.AncestorListener[] var44 = var0.getAncestorListeners(); + var0.transferFocusDownCycle(); + java.awt.im.InputContext var46 = var0.getInputContext(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var9); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var21); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var24 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var29 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var30 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var33 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var38); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var39); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var40 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var44); + + // Regression assertion (captures the current behavior of the code) + assertNull(var46); + + } + + public void test15() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test15"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.updateUI(); + var0.enableInputMethods(true); + java.awt.Point var8 = var0.location(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.setVisible(false); + var9.nextFocus(); + java.awt.Component var14 = var0.add((java.awt.Component)var9); + int var15 = var9.getWidth(); + java.awt.Rectangle var16 = var9.getVisibleRect(); + boolean var17 = var9.hasFocus(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == false); + + } + + public void test16() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test16"); + + + SpaceWar.PowerUp var3 = new SpaceWar.PowerUp(100, (-1.0d), 0.0d); + double var4 = var3.getX(); + double var5 = var3.getY(); + double var6 = var3.getY(); + double var7 = var3.getY(); + double var8 = var3.getY(); + boolean var9 = var3.update(); + double var10 = var3.getX(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == (-1.0d)); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == 0.0d); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == 0.0d); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.0d); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 0.0d); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == (-1.0d)); + + } + + public void test17() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test17"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.setEnabled(false); + java.awt.Image var8 = var0.createImage(10, 100); + java.awt.Component.BaselineResizeBehavior var9 = var0.getBaselineResizeBehavior(); + SpaceWar.SpacePanel var10 = new SpaceWar.SpacePanel(); + float var11 = var10.getAlignmentX(); + var10.setVisible(false); + java.awt.Dimension var14 = var10.getPreferredSize(); + boolean var15 = var10.getVerifyInputWhenFocusTarget(); + java.awt.Component var18 = var10.findComponentAt(10, 1); + boolean var19 = var10.requestDefaultFocus(); + java.awt.Insets var20 = var10.getInsets(); + var10.setDoubleBuffered(false); + java.awt.Toolkit var23 = var10.getToolkit(); + java.awt.Dimension var24 = var10.getMinimumSize(); + var0.setPreferredSize(var24); + SpaceWar.SpacePanel var26 = new SpaceWar.SpacePanel(); + java.awt.Color var27 = var26.getBackground(); + var26.repaint(); + var26.setRequestFocusEnabled(false); + var26.setIgnoreRepaint(false); + boolean var33 = var26.requestFocusInWindow(); + java.awt.Point var35 = var26.getMousePosition(false); + boolean var36 = javax.swing.JComponent.isLightweightComponent((java.awt.Component)var26); + int var37 = var0.getComponentZOrder((java.awt.Component)var26); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var9); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var23); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var27); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var33 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var35); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var36 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == (-1)); + + } + + public void test18() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test18"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + java.awt.event.MouseMotionListener[] var6 = var0.getMouseMotionListeners(); + java.awt.event.ComponentListener[] var7 = var0.getComponentListeners(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + var8.nextFocus(); + var8.repaint(1L); + SpaceWar.SpacePanel var15 = new SpaceWar.SpacePanel(); + float var16 = var15.getAlignmentX(); + var15.setVisible(false); + boolean var19 = var15.isDoubleBuffered(); + var15.list(); + SpaceWar.SpacePanel var21 = new SpaceWar.SpacePanel(); + float var22 = var21.getAlignmentX(); + var21.setVisible(false); + boolean var25 = var21.isDoubleBuffered(); + java.awt.dnd.DropTarget var26 = var21.getDropTarget(); + var21.show(false); + java.awt.Rectangle var29 = var21.getVisibleRect(); + java.awt.Rectangle var30 = var15.getBounds(var29); + var8.setBounds(var30); + var0.paintImmediately(var30); + java.beans.PropertyChangeListener[] var33 = var0.getPropertyChangeListeners(); + var0.setFocusTraversalPolicyProvider(true); + var0.layout(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var22 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var29); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var30); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var33); + + } + + public void test19() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test19"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var6 = var0.getMouseListeners(); + java.awt.Dimension var7 = var0.getPreferredSize(); + java.util.Locale var8 = var0.getLocale(); + java.awt.Font var9 = var0.getFont(); + java.awt.Color var10 = var0.getForeground(); + java.awt.event.FocusListener[] var11 = var0.getFocusListeners(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var9); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + } + + public void test20() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test20"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var6 = var0.getMouseListeners(); + java.awt.Dimension var7 = var0.getPreferredSize(); + java.util.Locale var8 = var0.getLocale(); + java.awt.Font var9 = var0.getFont(); + java.awt.Point var10 = var0.getMousePosition(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var9); + + // Regression assertion (captures the current behavior of the code) + assertNull(var10); + + } + + public void test21() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test21"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + boolean var2 = var0.hasFocus(); + boolean var3 = var0.isPreferredSizeSet(); + var0.firePropertyChange("", (short)1, (short)0); + boolean var8 = var0.isMaximumSizeSet(); + java.awt.peer.ComponentPeer var9 = var0.getPeer(); + SpaceWar.SpacePanel var10 = new SpaceWar.SpacePanel(); + float var11 = var10.getAlignmentX(); + var10.setVisible(false); + boolean var14 = var10.isDoubleBuffered(); + java.awt.dnd.DropTarget var15 = var10.getDropTarget(); + var10.show(false); + SpaceWar.SpacePanel var18 = new SpaceWar.SpacePanel(); + float var19 = var18.getAlignmentX(); + var18.setVisible(false); + SpaceWar.SpacePanel var22 = new SpaceWar.SpacePanel(); + java.awt.Color var23 = var22.getBackground(); + var18.setForeground(var23); + SpaceWar.SpacePanel var25 = new SpaceWar.SpacePanel(); + float var26 = var25.getAlignmentX(); + var25.setVisible(false); + boolean var29 = var25.isDoubleBuffered(); + java.awt.dnd.DropTarget var30 = var25.getDropTarget(); + var25.show(false); + java.awt.Rectangle var33 = var25.getVisibleRect(); + var18.repaint(var33); + java.awt.FocusTraversalPolicy var35 = var18.getFocusTraversalPolicy(); + java.awt.im.InputMethodRequests var36 = var18.getInputMethodRequests(); + var18.layout(); + SpaceWar.SpacePanel var38 = new SpaceWar.SpacePanel(); + float var39 = var38.getAlignmentX(); + var38.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var44 = new SpaceWar.SpacePanel(); + float var45 = var44.getAlignmentX(); + var44.setVisible(false); + SpaceWar.SpacePanel var48 = new SpaceWar.SpacePanel(); + java.awt.Color var49 = var48.getBackground(); + var44.setForeground(var49); + var38.setBackground(var49); + var18.setForeground(var49); + int var53 = var18.getWidth(); + javax.swing.plaf.PanelUI var54 = var18.getUI(); + var10.setUI(var54); + var0.setUI(var54); + java.awt.event.MouseListener[] var57 = var0.getMouseListeners(); + var0.enableInputMethods(false); + // The following exception was thrown during execution. + // This behavior will recorded for regression testing. + try { + java.util.Set var61 = var0.getFocusTraversalKeys(399); + fail("Expected exception of type java.lang.IllegalArgumentException"); + } catch (java.lang.IllegalArgumentException e) { + // Expected exception. + } + + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var2 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var9); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var23); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var29 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var30); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var33); + + // Regression assertion (captures the current behavior of the code) + assertNull(var35); + + // Regression assertion (captures the current behavior of the code) + assertNull(var36); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var39 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var45 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var49); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var53 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var54); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var57); + + } + + public void test22() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test22"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + var0.list(); + float var6 = var0.getAlignmentY(); + boolean var7 = var0.isOpaque(); + var0.resetKeyboardActions(); + // The following exception was thrown during execution. + // This behavior will recorded for regression testing. + try { + var0.remove(0); + fail("Expected exception of type java.lang.ArrayIndexOutOfBoundsException"); + } catch (java.lang.ArrayIndexOutOfBoundsException e) { + // Expected exception. + } + + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == true); + + } + + public void test23() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test23"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + java.awt.Dimension var4 = var0.getPreferredSize(); + boolean var5 = var0.getVerifyInputWhenFocusTarget(); + java.awt.event.MouseWheelListener[] var6 = var0.getMouseWheelListeners(); + java.awt.event.MouseWheelListener[] var7 = var0.getMouseWheelListeners(); + // The following exception was thrown during execution. + // This behavior will recorded for regression testing. + try { + java.util.Set var9 = var0.getFocusTraversalKeys(499); + fail("Expected exception of type java.lang.IllegalArgumentException"); + } catch (java.lang.IllegalArgumentException e) { + // Expected exception. + } + + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var4); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var7); + + } + + public void test24() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test24"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + var0.setName(""); + java.awt.Graphics var3 = var0.getGraphics(); + java.awt.event.MouseMotionListener[] var4 = var0.getMouseMotionListeners(); + boolean var5 = var0.getIgnoreRepaint(); + var0.transferFocusBackward(); + var0.enable(); + java.awt.Container var8 = var0.getTopLevelAncestor(); + java.awt.Point var10 = var0.getMousePosition(true); + boolean var11 = var0.isFocusTraversable(); + java.awt.Cursor var12 = var0.getCursor(); + + // Regression assertion (captures the current behavior of the code) + assertNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var4); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var12); + + } + + public void test25() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test25"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.updateUI(); + var0.enableInputMethods(true); + var0.show(); + java.awt.Container var9 = var0.getTopLevelAncestor(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNull(var9); + + } + + public void test26() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test26"); + + + SpaceWar.Enemy var2 = new SpaceWar.Enemy((-1), 10); + int var3 = var2.getRank(); + java.awt.image.BufferedImage var5 = var2.loadImg("SpaceWar.SpacePanel[,-1,1,-1x10,invalid,hidden,disabled,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + boolean var6 = var2.isDead(); + int var7 = var2.getRank(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == 10); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 10); + + } + + public void test27() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test27"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + boolean var2 = var0.hasFocus(); + SpaceWar.SpacePanel var3 = new SpaceWar.SpacePanel(); + float var4 = var3.getAlignmentX(); + var3.setVisible(false); + var3.nextFocus(); + var3.reshape((-1), 1, (-1), 10); + var3.disable(); + java.awt.LayoutManager var14 = var3.getLayout(); + var3.setVisible(false); + var0.remove((java.awt.Component)var3); + java.awt.Container var18 = var3.getFocusCycleRootAncestor(); + boolean var19 = var3.isDoubleBuffered(); + boolean var20 = var3.isValidateRoot(); + var3.transferFocus(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var2 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == false); + + } + + public void test28() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test28"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + var0.show(false); + boolean var8 = var0.isPaintingForPrint(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var15 = var9.getMouseListeners(); + int var16 = var9.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var17 = var9.getInputMethodRequests(); + var0.addKeyListener((java.awt.event.KeyListener)var9); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + float var20 = var19.getAlignmentX(); + var19.setVisible(false); + boolean var23 = var19.isDoubleBuffered(); + var19.list(); + float var25 = var19.getAlignmentY(); + boolean var26 = var9.isFocusCycleRoot((java.awt.Container)var19); + boolean var27 = var19.isEnabled(); + java.awt.Dimension var28 = var19.getMaximumSize(); + var19.setName("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + SpaceWar.SpacePanel var31 = new SpaceWar.SpacePanel(); + float var32 = var31.getAlignmentX(); + SpaceWar.SpacePanel var33 = new SpaceWar.SpacePanel(); + float var34 = var33.getAlignmentX(); + var33.setVisible(false); + java.awt.Dimension var37 = var33.getPreferredSize(); + boolean var38 = var33.getVerifyInputWhenFocusTarget(); + java.awt.Component var41 = var33.findComponentAt(10, 1); + var31.addKeyListener((java.awt.event.KeyListener)var33); + boolean var43 = var33.getFocusTraversalKeysEnabled(); + var33.requestFocus(); + var33.layout(); + var19.remove((java.awt.Component)var33); + int var47 = var33.getDebugGraphicsOptions(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var28); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var32 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var34 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var37); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var38 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var41); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var43 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var47 == 0); + + } + + public void test29() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test29"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.updateUI(); + var0.enableInputMethods(true); + java.awt.Point var9 = var0.getMousePosition(false); + SpaceWar.SpacePanel var10 = new SpaceWar.SpacePanel(); + float var11 = var10.getAlignmentX(); + boolean var12 = var10.hasFocus(); + boolean var13 = var10.isPreferredSizeSet(); + var10.firePropertyChange("", (short)1, (short)0); + boolean var18 = var10.isMaximumSizeSet(); + var10.list(); + SpaceWar.SpacePanel var20 = new SpaceWar.SpacePanel(); + float var21 = var20.getAlignmentX(); + var20.setVisible(false); + boolean var24 = var20.isDoubleBuffered(); + java.awt.dnd.DropTarget var25 = var20.getDropTarget(); + var20.show(false); + java.awt.Rectangle var28 = var20.getVisibleRect(); + java.awt.image.BufferedImage var30 = var20.loadImg("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + java.awt.ComponentOrientation var31 = var20.getComponentOrientation(); + var20.transferFocusBackward(); + SpaceWar.SpacePanel var33 = new SpaceWar.SpacePanel(); + java.awt.Color var34 = var33.getBackground(); + var33.setFocusCycleRoot(true); + var10.add((java.awt.Component)var20, (java.lang.Object)true); + javax.swing.TransferHandler var38 = var10.getTransferHandler(); + SpaceWar.SpacePanel var39 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var40 = new SpaceWar.SpacePanel(); + java.awt.Color var41 = var40.getBackground(); + SpaceWar.SpacePanel var42 = new SpaceWar.SpacePanel(); + float var43 = var42.getAlignmentX(); + var42.setVisible(false); + var42.nextFocus(); + var42.updateUI(); + var42.enableInputMethods(true); + var39.add((java.awt.Component)var40, (java.lang.Object)true); + java.awt.Image var53 = var40.createImage(1, (-1)); + java.awt.event.MouseListener[] var54 = var40.getMouseListeners(); + java.awt.Color var55 = var40.getBackground(); + boolean var56 = var40.getIgnoreRepaint(); + var40.enable(); + var40.repaint(); + var0.add((java.awt.Component)var10, (java.lang.Object)var40); + var0.setInheritsPopupMenu(true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNull(var9); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var24 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var25); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var28); + + // Regression assertion (captures the current behavior of the code) + assertNull(var30); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var31); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var34); + + // Regression assertion (captures the current behavior of the code) + assertNull(var38); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var41); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var43 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNull(var53); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var54); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var55); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var56 == false); + + } + + public void test30() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test30"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + var0.list(); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + float var7 = var6.getAlignmentX(); + var6.setVisible(false); + boolean var10 = var6.isDoubleBuffered(); + java.awt.dnd.DropTarget var11 = var6.getDropTarget(); + var6.show(false); + java.awt.Rectangle var14 = var6.getVisibleRect(); + java.awt.Rectangle var15 = var0.getBounds(var14); + javax.swing.JToolTip var16 = var0.createToolTip(); + var0.firePropertyChange("", false, false); + var0.revalidate(); + int var22 = var0.getComponentCount(); + var0.transferFocusDownCycle(); + var0.updateUI(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var22 == 0); + + } + + public void test31() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test31"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + SpaceWar.SpacePanel var5 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + java.awt.Color var7 = var6.getBackground(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + var8.nextFocus(); + var8.updateUI(); + var8.enableInputMethods(true); + var5.add((java.awt.Component)var6, (java.lang.Object)true); + java.awt.Dimension var17 = var6.getPreferredSize(); + var0.setMaximumSize(var17); + java.awt.Dimension var19 = var0.preferredSize(); + boolean var20 = var0.getVerifyInputWhenFocusTarget(); + var0.validate(); + boolean var22 = var0.isVisible(); + var0.setVerifyInputWhenFocusTarget(false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var22 == false); + + } + + public void test32() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test32"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + SpaceWar.SpacePanel var2 = new SpaceWar.SpacePanel(); + float var3 = var2.getAlignmentX(); + var2.setVisible(false); + java.awt.Dimension var6 = var2.getPreferredSize(); + boolean var7 = var2.getVerifyInputWhenFocusTarget(); + java.awt.Component var10 = var2.findComponentAt(10, 1); + var0.addKeyListener((java.awt.event.KeyListener)var2); + var2.repaint(100, (-1), (-1), 1); + SpaceWar.SpacePanel var17 = new SpaceWar.SpacePanel(); + java.awt.Color var18 = var17.getBackground(); + var17.repaint(); + var17.setRequestFocusEnabled(false); + var17.reshape(100, 0, 100, 0); + var17.requestFocus(); + java.awt.Rectangle var28 = var17.getVisibleRect(); + java.awt.Rectangle var29 = var17.getBounds(); + java.awt.im.InputMethodRequests var30 = var17.getInputMethodRequests(); + boolean var31 = var17.requestFocusInWindow(); + java.lang.Object var32 = var2.getClientProperty((java.lang.Object)var17); + int var33 = var17.getY(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var28); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var29); + + // Regression assertion (captures the current behavior of the code) + assertNull(var30); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var31 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var32); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var33 == 0); + + } + + public void test33() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test33"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + boolean var2 = var0.hasFocus(); + boolean var3 = var0.isPreferredSizeSet(); + SpaceWar.SpacePanel var4 = new SpaceWar.SpacePanel(); + java.awt.Color var5 = var4.getBackground(); + var4.repaint(); + var4.setRequestFocusEnabled(false); + int var9 = var0.getComponentZOrder((java.awt.Component)var4); + boolean var10 = var0.requestDefaultFocus(); + var0.setSize(25, 3); + var0.grabFocus(); + SpaceWar.SpacePanel var15 = new SpaceWar.SpacePanel(); + java.awt.Color var16 = var15.getBackground(); + var15.repaint(); + var15.setRequestFocusEnabled(false); + var15.setIgnoreRepaint(false); + java.lang.String var22 = var15.toString(); + java.awt.Color var23 = var15.getBackground(); + SpaceWar.SpacePanel var24 = new SpaceWar.SpacePanel(); + float var25 = var24.getAlignmentX(); + var24.setVisible(false); + java.awt.Dimension var28 = var24.getPreferredSize(); + java.awt.Toolkit var29 = var24.getToolkit(); + java.awt.Toolkit var30 = var24.getToolkit(); + SpaceWar.Player var31 = new SpaceWar.Player(); + var31.increasePower(25); + int var34 = var31.getScore(); + var31.setRigth(true); + var31.loseLife(); + var15.putClientProperty((java.lang.Object)var24, (java.lang.Object)var31); + java.awt.Rectangle var39 = var24.bounds(); + var0.repaint(var39); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var2 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == (-1)); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var22 + "' != '" + "SpaceWar.SpacePanel[,0,0,0var22,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"+ "'", var22.equals("SpaceWar.SpacePanel[,0,0,0var22,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]")); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var23); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var28); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var29); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var30); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var34 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var39); + + } + + public void test34() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test34"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + boolean var6 = var0.isFocusCycleRoot(); + var0.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", 100, 0); + SpaceWar.SpacePanel var11 = new SpaceWar.SpacePanel(); + float var12 = var11.getAlignmentX(); + var11.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var17 = var11.getUI(); + var0.add((java.awt.Component)var11, (java.lang.Object)(short)0); + SpaceWar.SpacePanel var20 = new SpaceWar.SpacePanel(); + float var21 = var20.getAlignmentX(); + var20.setVisible(false); + var20.nextFocus(); + var20.repaint(1L); + SpaceWar.SpacePanel var27 = new SpaceWar.SpacePanel(); + float var28 = var27.getAlignmentX(); + var27.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var33 = new SpaceWar.SpacePanel(); + float var34 = var33.getAlignmentX(); + var33.setVisible(false); + java.awt.Dimension var37 = var33.getPreferredSize(); + var27.setMaximumSize(var37); + var20.setPreferredSize(var37); + javax.swing.plaf.PanelUI var40 = var20.getUI(); + SpaceWar.SpacePanel var41 = new SpaceWar.SpacePanel(); + float var42 = var41.getAlignmentX(); + var41.setVisible(false); + SpaceWar.SpacePanel var45 = new SpaceWar.SpacePanel(); + java.awt.Color var46 = var45.getBackground(); + var41.setForeground(var46); + SpaceWar.SpacePanel var48 = new SpaceWar.SpacePanel(); + float var49 = var48.getAlignmentX(); + var48.setVisible(false); + boolean var52 = var48.isDoubleBuffered(); + java.awt.dnd.DropTarget var53 = var48.getDropTarget(); + var48.show(false); + java.awt.Rectangle var56 = var48.getVisibleRect(); + var41.repaint(var56); + java.awt.FocusTraversalPolicy var58 = var41.getFocusTraversalPolicy(); + var41.resetKeyboardActions(); + SpaceWar.SpacePanel var60 = new SpaceWar.SpacePanel(); + float var61 = var60.getAlignmentX(); + var60.setVisible(false); + boolean var64 = var60.isDoubleBuffered(); + java.awt.dnd.DropTarget var65 = var60.getDropTarget(); + var60.show(false); + java.awt.Rectangle var68 = var60.getVisibleRect(); + var41.computeVisibleRect(var68); + javax.swing.ActionMap var70 = var41.getActionMap(); + var20.setActionMap(var70); + java.awt.Point var72 = var20.getMousePosition(); + int var73 = var11.getComponentZOrder((java.awt.Component)var20); + java.awt.event.ComponentListener[] var74 = var11.getComponentListeners(); + var11.setOpaque(false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var28 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var34 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var37); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var40); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var42 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var46); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var49 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var52 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var53); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var56); + + // Regression assertion (captures the current behavior of the code) + assertNull(var58); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var61 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var64 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var65); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var68); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var70); + + // Regression assertion (captures the current behavior of the code) + assertNull(var72); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var73 == (-1)); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var74); + + } + + public void test35() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test35"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.reshape((-1), 1, (-1), 10); + var0.disable(); + java.awt.LayoutManager var11 = var0.getLayout(); + java.awt.Container var12 = var0.getParent(); + boolean var13 = var0.isOptimizedDrawingEnabled(); + var0.grabFocus(); + int var15 = var0.getHeight(); + SpaceWar.Enemy var18 = new SpaceWar.Enemy(100, 1); + java.lang.Object var19 = var0.getClientProperty((java.lang.Object)100); + java.awt.Point var20 = var0.location(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == 10); + + // Regression assertion (captures the current behavior of the code) + assertNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + } + + public void test36() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test36"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var1 = new SpaceWar.SpacePanel(); + java.awt.Color var2 = var1.getBackground(); + SpaceWar.SpacePanel var3 = new SpaceWar.SpacePanel(); + float var4 = var3.getAlignmentX(); + var3.setVisible(false); + var3.nextFocus(); + var3.updateUI(); + var3.enableInputMethods(true); + var0.add((java.awt.Component)var1, (java.lang.Object)true); + boolean var12 = var0.isMinimumSizeSet(); + java.awt.event.HierarchyListener[] var13 = var0.getHierarchyListeners(); + SpaceWar.SpacePanel var14 = new SpaceWar.SpacePanel(); + float var15 = var14.getAlignmentX(); + var14.setVisible(false); + SpaceWar.SpacePanel var18 = new SpaceWar.SpacePanel(); + java.awt.Color var19 = var18.getBackground(); + var14.setForeground(var19); + SpaceWar.SpacePanel var21 = new SpaceWar.SpacePanel(); + float var22 = var21.getAlignmentX(); + var21.setVisible(false); + boolean var25 = var21.isDoubleBuffered(); + java.awt.dnd.DropTarget var26 = var21.getDropTarget(); + var21.show(false); + java.awt.Rectangle var29 = var21.getVisibleRect(); + var14.repaint(var29); + java.awt.FocusTraversalPolicy var31 = var14.getFocusTraversalPolicy(); + java.awt.im.InputMethodRequests var32 = var14.getInputMethodRequests(); + var14.layout(); + boolean var34 = var14.isFocusTraversalPolicyProvider(); + java.lang.Object var35 = var0.getClientProperty((java.lang.Object)var34); + java.awt.Dimension var36 = var0.getSize(); + var0.removeNotify(); + java.awt.Cursor var38 = var0.getCursor(); + var0.setDebugGraphicsOptions(10); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var2); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var22 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var29); + + // Regression assertion (captures the current behavior of the code) + assertNull(var31); + + // Regression assertion (captures the current behavior of the code) + assertNull(var32); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var34 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var35); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var36); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var38); + + } + + public void test37() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test37"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + var0.setName(""); + java.awt.ComponentOrientation var3 = var0.getComponentOrientation(); + var0.enable(); + int var5 = var0.getHeight(); + boolean var6 = var0.isValidateRoot(); + var0.removeAll(); + java.lang.Object var8 = var0.getTreeLock(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var8); + + } + + public void test38() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test38"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + var0.list(); + float var6 = var0.getAlignmentY(); + java.awt.event.ComponentListener[] var7 = var0.getComponentListeners(); + java.awt.Component var8 = var0.getNextFocusableComponent(); + boolean var9 = var0.isManagingFocus(); + javax.swing.border.Border var10 = var0.getBorder(); + java.lang.Object var11 = var0.getTreeLock(); + var0.show(); + var0.setFocusTraversalKeysEnabled(true); + boolean var15 = var0.isFontSet(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == true); + + } + + public void test39() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test39"); + + + SpaceWar.Enemy var2 = new SpaceWar.Enemy(0, 100); + var2.explode(); + java.awt.image.BufferedImage var5 = var2.loadImg("SpaceWar.SpacePanel[,-1,1,-1x10,invalid,hidden,disabled,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + double var6 = var2.getY(); + double var7 = var2.getY(); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == 0.0d); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.0d); + + } + + public void test40() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test40"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + SpaceWar.SpacePanel var2 = new SpaceWar.SpacePanel(); + float var3 = var2.getAlignmentX(); + var2.setVisible(false); + java.awt.Dimension var6 = var2.getPreferredSize(); + boolean var7 = var2.getVerifyInputWhenFocusTarget(); + java.awt.Component var10 = var2.findComponentAt(10, 1); + var0.addKeyListener((java.awt.event.KeyListener)var2); + var2.repaint(100, (-1), (-1), 1); + SpaceWar.SpacePanel var17 = new SpaceWar.SpacePanel(); + java.awt.Color var18 = var17.getBackground(); + var17.repaint(); + java.awt.im.InputMethodRequests var20 = var17.getInputMethodRequests(); + java.awt.GraphicsConfiguration var21 = var17.getGraphicsConfiguration(); + var2.remove((java.awt.Component)var17); + var2.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", 0.0f, 1.0f); + SpaceWar.SpacePanel var27 = new SpaceWar.SpacePanel(); + float var28 = var27.getAlignmentX(); + var27.setVisible(false); + java.awt.Dimension var31 = var27.getPreferredSize(); + boolean var32 = var27.getVerifyInputWhenFocusTarget(); + SpaceWar.SpacePanel var33 = new SpaceWar.SpacePanel(); + var33.setName(""); + int var36 = var33.getX(); + SpaceWar.SpacePanel var37 = new SpaceWar.SpacePanel(); + float var38 = var37.getAlignmentX(); + var37.setVisible(false); + var37.nextFocus(); + SpaceWar.SpacePanel var42 = new SpaceWar.SpacePanel(); + float var43 = var42.getAlignmentX(); + var42.setVisible(false); + SpaceWar.SpacePanel var46 = new SpaceWar.SpacePanel(); + java.awt.Color var47 = var46.getBackground(); + var42.setForeground(var47); + var37.setBackground(var47); + var33.setBackground(var47); + var2.add((java.awt.Component)var27, (java.lang.Object)var33); + var33.requestFocus(); + java.awt.FocusTraversalPolicy var53 = var33.getFocusTraversalPolicy(); + var33.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=10,height=10]]", 24, 3); + var33.setDebugGraphicsOptions(2); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertNull(var21); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var28 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var31); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var32 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var36 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var38 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var43 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var47); + + // Regression assertion (captures the current behavior of the code) + assertNull(var53); + + } + + public void test41() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test41"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.updateUI(); + var0.enableInputMethods(true); + java.awt.Image var10 = var0.createImage(25, 500); + SpaceWar.SpacePanel var11 = new SpaceWar.SpacePanel(); + float var12 = var11.getAlignmentX(); + var11.setVisible(false); + boolean var15 = var11.isDoubleBuffered(); + java.awt.dnd.DropTarget var16 = var11.getDropTarget(); + var11.show(false); + boolean var19 = var11.isPaintingForPrint(); + SpaceWar.SpacePanel var20 = new SpaceWar.SpacePanel(); + float var21 = var20.getAlignmentX(); + var20.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var26 = var20.getMouseListeners(); + int var27 = var20.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var28 = var20.getInputMethodRequests(); + var11.addKeyListener((java.awt.event.KeyListener)var20); + SpaceWar.SpacePanel var30 = new SpaceWar.SpacePanel(); + float var31 = var30.getAlignmentX(); + var30.setVisible(false); + boolean var34 = var30.isDoubleBuffered(); + var30.list(); + float var36 = var30.getAlignmentY(); + boolean var37 = var20.isFocusCycleRoot((java.awt.Container)var30); + var30.firePropertyChange("", 1L, 1L); + var30.setVerifyInputWhenFocusTarget(true); + var30.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", '4', '4'); + java.awt.Point var48 = var30.getLocation(); + var30.transferFocusUpCycle(); + boolean var51 = var30.areFocusTraversalKeysSet(0); + int var52 = var0.getComponentZOrder((java.awt.Component)var30); + var0.removeAll(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var28); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var31 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var34 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var36 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var48); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var51 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var52 == (-1)); + + } + + public void test42() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test42"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + java.awt.Dimension var4 = var0.getPreferredSize(); + boolean var5 = var0.getVerifyInputWhenFocusTarget(); + java.awt.Component var8 = var0.findComponentAt(10, 1); + boolean var9 = var0.requestDefaultFocus(); + java.awt.Insets var10 = var0.getInsets(); + var0.setDoubleBuffered(false); + SpaceWar.SpacePanel var13 = new SpaceWar.SpacePanel(); + float var14 = var13.getAlignmentX(); + var13.setVisible(false); + boolean var17 = var13.isDoubleBuffered(); + java.awt.dnd.DropTarget var18 = var13.getDropTarget(); + var13.show(false); + java.awt.Rectangle var21 = var13.getVisibleRect(); + java.awt.Toolkit var22 = var13.getToolkit(); + java.awt.event.MouseMotionListener[] var23 = var13.getMouseMotionListeners(); + SpaceWar.SpacePanel var24 = new SpaceWar.SpacePanel(); + float var25 = var24.getAlignmentX(); + var24.setVisible(false); + SpaceWar.SpacePanel var28 = new SpaceWar.SpacePanel(); + java.awt.Color var29 = var28.getBackground(); + var24.setForeground(var29); + SpaceWar.SpacePanel var31 = new SpaceWar.SpacePanel(); + float var32 = var31.getAlignmentX(); + var31.setVisible(false); + boolean var35 = var31.isDoubleBuffered(); + java.awt.dnd.DropTarget var36 = var31.getDropTarget(); + var31.show(false); + java.awt.Rectangle var39 = var31.getVisibleRect(); + var24.repaint(var39); + java.awt.Component.BaselineResizeBehavior var41 = var24.getBaselineResizeBehavior(); + SpaceWar.SpacePanel var42 = new SpaceWar.SpacePanel(); + float var43 = var42.getAlignmentX(); + var42.setVisible(false); + var42.nextFocus(); + var42.repaint(1L); + SpaceWar.SpacePanel var49 = new SpaceWar.SpacePanel(); + float var50 = var49.getAlignmentX(); + var49.setVisible(false); + boolean var53 = var49.isDoubleBuffered(); + var49.list(); + SpaceWar.SpacePanel var55 = new SpaceWar.SpacePanel(); + float var56 = var55.getAlignmentX(); + var55.setVisible(false); + boolean var59 = var55.isDoubleBuffered(); + java.awt.dnd.DropTarget var60 = var55.getDropTarget(); + var55.show(false); + java.awt.Rectangle var63 = var55.getVisibleRect(); + java.awt.Rectangle var64 = var49.getBounds(var63); + var42.setBounds(var64); + var24.paintImmediately(var64); + var13.setBounds(var64); + SpaceWar.SpacePanel var68 = new SpaceWar.SpacePanel(); + float var69 = var68.getAlignmentX(); + var68.setVisible(false); + SpaceWar.SpacePanel var72 = new SpaceWar.SpacePanel(); + java.awt.Color var73 = var72.getBackground(); + var68.setForeground(var73); + SpaceWar.SpacePanel var75 = new SpaceWar.SpacePanel(); + float var76 = var75.getAlignmentX(); + var75.setVisible(false); + boolean var79 = var75.isDoubleBuffered(); + java.awt.dnd.DropTarget var80 = var75.getDropTarget(); + var75.show(false); + java.awt.Rectangle var83 = var75.getVisibleRect(); + var68.repaint(var83); + java.awt.Component.BaselineResizeBehavior var85 = var68.getBaselineResizeBehavior(); + var0.add((java.awt.Component)var13, (java.lang.Object)var85); + java.awt.Toolkit var87 = var13.getToolkit(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var4); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var21); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var23); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var29); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var32 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var35 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var36); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var39); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var41); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var43 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var50 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var53 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var56 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var59 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var60); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var63); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var64); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var69 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var73); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var76 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var79 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var80); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var83); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var85); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var87); + + } + + public void test43() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test43"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + java.awt.im.InputMethodRequests var3 = var0.getInputMethodRequests(); + int var4 = var0.countComponents(); + java.awt.event.ComponentListener[] var5 = var0.getComponentListeners(); + var0.removeNotify(); + javax.swing.InputMap var7 = var0.getInputMap(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var14 = new SpaceWar.SpacePanel(); + float var15 = var14.getAlignmentX(); + var14.setVisible(false); + SpaceWar.SpacePanel var18 = new SpaceWar.SpacePanel(); + java.awt.Color var19 = var18.getBackground(); + var14.setForeground(var19); + var8.setBackground(var19); + java.awt.Point var22 = var8.location(); + var0.setLocation(var22); + SpaceWar.SpacePanel var24 = new SpaceWar.SpacePanel(); + float var25 = var24.getAlignmentX(); + var24.setVisible(false); + var24.nextFocus(); + var24.reshape((-1), 1, (-1), 10); + SpaceWar.SpacePanel var34 = new SpaceWar.SpacePanel(); + java.awt.Color var35 = var34.getBackground(); + var34.repaint(); + var34.setRequestFocusEnabled(false); + var34.reshape(100, 0, 100, 0); + java.awt.Component var44 = var24.add((java.awt.Component)var34); + var24.enable(); + SpaceWar.SpacePanel var46 = new SpaceWar.SpacePanel(); + float var47 = var46.getAlignmentX(); + boolean var48 = var46.hasFocus(); + boolean var49 = var46.isPreferredSizeSet(); + var0.putClientProperty((java.lang.Object)var24, (java.lang.Object)var46); + var46.paintImmediately(10, 1, (-1), (-1)); + var46.removeNotify(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var35); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var44); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var47 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var48 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var49 == true); + + } + + public void test44() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test44"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var1 = new SpaceWar.SpacePanel(); + java.awt.Color var2 = var1.getBackground(); + SpaceWar.SpacePanel var3 = new SpaceWar.SpacePanel(); + float var4 = var3.getAlignmentX(); + var3.setVisible(false); + var3.nextFocus(); + var3.updateUI(); + var3.enableInputMethods(true); + var0.add((java.awt.Component)var1, (java.lang.Object)true); + java.awt.Image var14 = var1.createImage(1, (-1)); + SpaceWar.SpacePanel var15 = new SpaceWar.SpacePanel(); + float var16 = var15.getAlignmentX(); + var15.setVisible(false); + var15.nextFocus(); + var15.updateUI(); + var15.enableInputMethods(true); + SpaceWar.SpacePanel var23 = new SpaceWar.SpacePanel(); + float var24 = var23.getAlignmentX(); + boolean var25 = var23.hasFocus(); + java.awt.Insets var26 = var23.getInsets(); + java.awt.Insets var27 = var15.getInsets(var26); + java.awt.Insets var28 = var1.getInsets(var26); + var1.paintImmediately(400, (-1), 0, 3); + java.awt.Component.BaselineResizeBehavior var34 = var1.getBaselineResizeBehavior(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var2); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var24 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var27); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var28); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var34); + + } + + public void test45() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test45"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + var0.setName(""); + java.awt.Graphics var3 = var0.getGraphics(); + SpaceWar.SpacePanel var4 = new SpaceWar.SpacePanel(); + float var5 = var4.getAlignmentX(); + var4.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var10 = new SpaceWar.SpacePanel(); + float var11 = var10.getAlignmentX(); + var10.setVisible(false); + java.awt.Dimension var14 = var10.getPreferredSize(); + var4.setMaximumSize(var14); + boolean var16 = var4.getVerifyInputWhenFocusTarget(); + int var17 = var4.getX(); + SpaceWar.SpacePanel var18 = new SpaceWar.SpacePanel(); + float var19 = var18.getAlignmentX(); + SpaceWar.SpacePanel var20 = new SpaceWar.SpacePanel(); + float var21 = var20.getAlignmentX(); + var20.setVisible(false); + java.awt.Dimension var24 = var20.getPreferredSize(); + boolean var25 = var20.getVerifyInputWhenFocusTarget(); + java.awt.Component var28 = var20.findComponentAt(10, 1); + var18.addKeyListener((java.awt.event.KeyListener)var20); + var20.repaint(100, (-1), (-1), 1); + SpaceWar.SpacePanel var35 = new SpaceWar.SpacePanel(); + java.awt.Color var36 = var35.getBackground(); + var35.repaint(); + java.awt.im.InputMethodRequests var38 = var35.getInputMethodRequests(); + java.awt.GraphicsConfiguration var39 = var35.getGraphicsConfiguration(); + var20.remove((java.awt.Component)var35); + java.awt.Font var41 = var35.getFont(); + var4.setFont(var41); + var0.setFont(var41); + boolean var44 = var0.isLightweight(); + java.awt.Container var45 = var0.getParent(); + + // Regression assertion (captures the current behavior of the code) + assertNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var28); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var36); + + // Regression assertion (captures the current behavior of the code) + assertNull(var38); + + // Regression assertion (captures the current behavior of the code) + assertNull(var39); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var41); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var44 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var45); + + } + + public void test46() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test46"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + java.awt.Dimension var4 = var0.getPreferredSize(); + java.awt.Toolkit var5 = var0.getToolkit(); + boolean var6 = var0.isFocusable(); + javax.swing.KeyStroke[] var7 = var0.getRegisteredKeyStrokes(); + java.awt.Component var10 = var0.getComponentAt(100, 100); + java.lang.Object var11 = var0.getTreeLock(); + boolean var14 = var0.contains(2, (-1)); + var0.setFocusCycleRoot(true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var4); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == false); + + } + + public void test47() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test47"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + var0.setRequestFocusEnabled(false); + var0.setIgnoreRepaint(false); + java.lang.String var7 = var0.toString(); + java.awt.Color var8 = var0.getBackground(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.setVisible(false); + java.awt.Dimension var13 = var9.getPreferredSize(); + java.awt.Toolkit var14 = var9.getToolkit(); + java.awt.Toolkit var15 = var9.getToolkit(); + SpaceWar.Player var16 = new SpaceWar.Player(); + var16.increasePower(25); + int var19 = var16.getScore(); + var16.setRigth(true); + var16.loseLife(); + var0.putClientProperty((java.lang.Object)var9, (java.lang.Object)var16); + var0.hide(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var7 + "' != '" + "SpaceWar.SpacePanel[,0,0,0var7,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"+ "'", var7.equals("SpaceWar.SpacePanel[,0,0,0var7,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]")); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == 0); + + } + + public void test48() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test48"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + java.awt.im.InputMethodRequests var3 = var0.getInputMethodRequests(); + int var4 = var0.countComponents(); + java.awt.event.ComponentListener[] var5 = var0.getComponentListeners(); + var0.removeNotify(); + javax.swing.InputMap var7 = var0.getInputMap(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var14 = new SpaceWar.SpacePanel(); + float var15 = var14.getAlignmentX(); + var14.setVisible(false); + SpaceWar.SpacePanel var18 = new SpaceWar.SpacePanel(); + java.awt.Color var19 = var18.getBackground(); + var14.setForeground(var19); + var8.setBackground(var19); + java.awt.Point var22 = var8.location(); + var0.setLocation(var22); + SpaceWar.SpacePanel var24 = new SpaceWar.SpacePanel(); + float var25 = var24.getAlignmentX(); + var24.setVisible(false); + var24.nextFocus(); + var24.reshape((-1), 1, (-1), 10); + SpaceWar.SpacePanel var34 = new SpaceWar.SpacePanel(); + java.awt.Color var35 = var34.getBackground(); + var34.repaint(); + var34.setRequestFocusEnabled(false); + var34.reshape(100, 0, 100, 0); + java.awt.Component var44 = var24.add((java.awt.Component)var34); + var24.enable(); + SpaceWar.SpacePanel var46 = new SpaceWar.SpacePanel(); + float var47 = var46.getAlignmentX(); + boolean var48 = var46.hasFocus(); + boolean var49 = var46.isPreferredSizeSet(); + var0.putClientProperty((java.lang.Object)var24, (java.lang.Object)var46); + var24.setAlignmentX(0.5f); + var24.enable(true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var35); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var44); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var47 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var48 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var49 == true); + + } + + public void test49() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test49"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + var0.list(); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + float var7 = var6.getAlignmentX(); + var6.setVisible(false); + boolean var10 = var6.isDoubleBuffered(); + java.awt.dnd.DropTarget var11 = var6.getDropTarget(); + var6.show(false); + java.awt.Rectangle var14 = var6.getVisibleRect(); + java.awt.image.BufferedImage var16 = var6.loadImg("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + boolean var17 = var0.isAncestorOf((java.awt.Component)var6); + float var18 = var0.getAlignmentX(); + java.awt.image.VolatileImage var21 = var0.createVolatileImage(25, 1); + SpaceWar.SpacePanel var22 = new SpaceWar.SpacePanel(); + float var23 = var22.getAlignmentX(); + var22.setVisible(false); + boolean var26 = var22.isDoubleBuffered(); + var22.list(); + SpaceWar.SpacePanel var28 = new SpaceWar.SpacePanel(); + float var29 = var28.getAlignmentX(); + var28.setVisible(false); + boolean var32 = var28.isDoubleBuffered(); + java.awt.dnd.DropTarget var33 = var28.getDropTarget(); + var28.show(false); + java.awt.Rectangle var36 = var28.getVisibleRect(); + java.awt.Rectangle var37 = var22.getBounds(var36); + javax.swing.JToolTip var38 = var22.createToolTip(); + java.awt.Dimension var39 = var22.minimumSize(); + SpaceWar.SpacePanel var40 = new SpaceWar.SpacePanel(); + float var41 = var40.getAlignmentX(); + var40.setVisible(false); + var40.setInheritsPopupMenu(false); + var40.setFocusTraversalPolicyProvider(true); + java.awt.Container var48 = var40.getFocusCycleRootAncestor(); + SpaceWar.SpacePanel var49 = new SpaceWar.SpacePanel(); + float var50 = var49.getAlignmentX(); + var49.removeNotify(); + SpaceWar.SpacePanel var52 = new SpaceWar.SpacePanel(); + float var53 = var52.getAlignmentX(); + var52.setVisible(false); + boolean var56 = var52.isDoubleBuffered(); + var52.list(); + float var58 = var52.getAlignmentY(); + java.awt.Insets var59 = var52.getInsets(); + java.awt.Insets var60 = var49.getInsets(var59); + java.awt.Insets var61 = var40.getInsets(var60); + java.awt.Insets var62 = var22.getInsets(var60); + java.awt.Insets var63 = var0.getInsets(var60); + java.awt.im.InputContext var64 = var0.getInputContext(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNull(var21); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var29 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var32 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var33); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var36); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var37); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var38); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var39); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var41 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNull(var48); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var50 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var53 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var56 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var58 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var59); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var60); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var61); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var62); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var63); + + // Regression assertion (captures the current behavior of the code) + assertNull(var64); + + } + + public void test50() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test50"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.reshape((-1), 1, (-1), 10); + SpaceWar.SpacePanel var10 = new SpaceWar.SpacePanel(); + java.awt.Color var11 = var10.getBackground(); + var10.repaint(); + var10.setRequestFocusEnabled(false); + var10.reshape(100, 0, 100, 0); + java.awt.Component var20 = var0.add((java.awt.Component)var10); + var0.removeNotify(); + var0.requestFocus(); + var0.setFocusCycleRoot(false); + var0.layout(); + var0.transferFocusBackward(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + } + + public void test51() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test51"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + var0.setRequestFocusEnabled(false); + var0.reshape(100, 0, 100, 0); + javax.swing.event.AncestorListener[] var10 = var0.getAncestorListeners(); + int var11 = var0.getWidth(); + var0.list(); + java.awt.Component var15 = var0.findComponentAt(2, 25); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == 100); + + // Regression assertion (captures the current behavior of the code) + assertNull(var15); + + } + + public void test52() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test52"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var1 = new SpaceWar.SpacePanel(); + java.awt.Color var2 = var1.getBackground(); + SpaceWar.SpacePanel var3 = new SpaceWar.SpacePanel(); + float var4 = var3.getAlignmentX(); + var3.setVisible(false); + var3.nextFocus(); + var3.updateUI(); + var3.enableInputMethods(true); + var0.add((java.awt.Component)var1, (java.lang.Object)true); + java.awt.Dimension var12 = var1.getPreferredSize(); + var1.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=1.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", '#', ' '); + java.lang.String var17 = var1.getUIClassID(); + java.awt.peer.ComponentPeer var18 = var1.getPeer(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var2); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var17 + "' != '" + "PanelUI"+ "'", var17.equals("PanelUI")); + + // Regression assertion (captures the current behavior of the code) + assertNull(var18); + + } + + public void test53() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test53"); + + + SpaceWar.PowerUp var3 = new SpaceWar.PowerUp(100, (-1.0d), 0.0d); + double var4 = var3.getX(); + double var5 = var3.getY(); + boolean var6 = var3.update(); + double var7 = var3.getY(); + int var8 = var3.getType(); + boolean var9 = var3.update(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == (-1.0d)); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == 0.0d); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 2.0d); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 100); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == false); + + } + + public void test54() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test54"); + + + SpaceWar.Player var0 = new SpaceWar.Player(); + boolean var1 = var0.isRecovering(); + int var2 = var0.getRequiredPower(); + var0.setDown(false); + java.awt.image.BufferedImage var6 = var0.loadImg("PanelUI"); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var2 == 1); + + // Regression assertion (captures the current behavior of the code) + assertNull(var6); + + } + + public void test55() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test55"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.setInheritsPopupMenu(false); + boolean var6 = var0.isMinimumSizeSet(); + java.awt.LayoutManager var7 = var0.getLayout(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + boolean var12 = var8.isDoubleBuffered(); + SpaceWar.SpacePanel var13 = new SpaceWar.SpacePanel(); + float var14 = var13.getAlignmentX(); + var13.setVisible(false); + var13.nextFocus(); + var13.reshape((-1), 1, (-1), 10); + var13.disable(); + boolean var24 = var13.isFocusable(); + int var25 = var13.getHeight(); + var8.setNextFocusableComponent((java.awt.Component)var13); + SpaceWar.SpacePanel var27 = new SpaceWar.SpacePanel(); + float var28 = var27.getAlignmentX(); + var27.setVisible(false); + var27.nextFocus(); + SpaceWar.SpacePanel var32 = new SpaceWar.SpacePanel(); + float var33 = var32.getAlignmentX(); + var32.setVisible(false); + SpaceWar.SpacePanel var36 = new SpaceWar.SpacePanel(); + java.awt.Color var37 = var36.getBackground(); + var32.setForeground(var37); + var27.setBackground(var37); + java.awt.Component var40 = var27.getNextFocusableComponent(); + float var41 = var27.getAlignmentY(); + java.awt.event.MouseListener[] var42 = var27.getMouseListeners(); + java.awt.Point var43 = var27.location(); + java.awt.Point var44 = var8.getLocation(var43); + java.awt.Component var45 = var0.getComponentAt(var44); + boolean var46 = var0.isPaintingTile(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var24 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == 10); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var28 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var33 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var37); + + // Regression assertion (captures the current behavior of the code) + assertNull(var40); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var41 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var42); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var43); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var44); + + // Regression assertion (captures the current behavior of the code) + assertNull(var45); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var46 == false); + + } + + public void test56() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test56"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.setInheritsPopupMenu(false); + boolean var6 = var0.isDoubleBuffered(); + boolean var7 = var0.isMinimumSizeSet(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + boolean var12 = var8.isDoubleBuffered(); + java.awt.dnd.DropTarget var13 = var8.getDropTarget(); + var8.show(false); + java.awt.Rectangle var16 = var8.getVisibleRect(); + java.awt.Toolkit var17 = var8.getToolkit(); + SpaceWar.SpacePanel var18 = new SpaceWar.SpacePanel(); + float var19 = var18.getAlignmentX(); + var18.setVisible(false); + java.awt.Dimension var22 = var18.getPreferredSize(); + boolean var23 = var18.getVerifyInputWhenFocusTarget(); + var8.addKeyListener((java.awt.event.KeyListener)var18); + var8.setRequestFocusEnabled(true); + java.awt.Font var27 = var8.getFont(); + var0.setFont(var27); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var27); + + } + + public void test57() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test57"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + java.awt.im.InputMethodRequests var3 = var0.getInputMethodRequests(); + var0.setDoubleBuffered(true); + var0.setInheritsPopupMenu(false); + boolean var8 = var0.isFocusTraversalPolicySet(); + var0.transferFocusUpCycle(); + java.awt.image.BufferedImage var11 = var0.loadImg("SpaceWar.SpacePanel[,0,0,0x0,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + SpaceWar.SpacePanel var12 = new SpaceWar.SpacePanel(); + float var13 = var12.getAlignmentX(); + var12.setVisible(false); + var12.setInheritsPopupMenu(false); + boolean var18 = var12.isDoubleBuffered(); + boolean var19 = var12.isMinimumSizeSet(); + java.awt.Font var20 = var12.getFont(); + java.awt.FontMetrics var21 = var0.getFontMetrics(var20); + java.lang.String var22 = var0.getToolTipText(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var21); + + // Regression assertion (captures the current behavior of the code) + assertNull(var22); + + } + + public void test58() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test58"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + var0.show(false); + boolean var8 = var0.isPaintingForPrint(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var15 = var9.getMouseListeners(); + int var16 = var9.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var17 = var9.getInputMethodRequests(); + var0.addKeyListener((java.awt.event.KeyListener)var9); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + float var20 = var19.getAlignmentX(); + var19.setVisible(false); + boolean var23 = var19.isDoubleBuffered(); + var19.list(); + float var25 = var19.getAlignmentY(); + boolean var26 = var9.isFocusCycleRoot((java.awt.Container)var19); + javax.swing.JPopupMenu var27 = var19.getComponentPopupMenu(); + var19.move((-1), 100); + var19.validate(); + java.awt.Toolkit var32 = var19.getToolkit(); + SpaceWar.SpacePanel var33 = new SpaceWar.SpacePanel(); + float var34 = var33.getAlignmentX(); + var33.setVisible(false); + boolean var37 = var33.isDoubleBuffered(); + SpaceWar.SpacePanel var38 = new SpaceWar.SpacePanel(); + java.awt.Color var39 = var38.getBackground(); + var38.repaint(); + java.lang.Object var41 = var33.getClientProperty((java.lang.Object)var38); + var38.repaint(10, 1, 25, 0); + var19.removeKeyListener((java.awt.event.KeyListener)var38); + var38.grabFocus(); + var38.setDoubleBuffered(true); + boolean var51 = var38.isFocusable(); + float var52 = var38.getAlignmentY(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var27); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var32); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var34 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var39); + + // Regression assertion (captures the current behavior of the code) + assertNull(var41); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var51 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var52 == 0.5f); + + } + + public void test59() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test59"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var6 = var0.getUI(); + java.awt.im.InputMethodRequests var7 = var0.getInputMethodRequests(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + var8.nextFocus(); + var8.updateUI(); + var8.enableInputMethods(true); + var8.setSize((-1), 1); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + var19.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var0.add((java.awt.Component)var8, (java.lang.Object)"SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + java.awt.event.KeyListener[] var25 = var0.getKeyListeners(); + boolean var26 = var0.isValidateRoot(); + var0.setDoubleBuffered(true); + SpaceWar.SpacePanel var29 = new SpaceWar.SpacePanel(); + float var30 = var29.getAlignmentX(); + var29.setVisible(false); + var29.nextFocus(); + var29.requestFocus(); + boolean var35 = var29.getInheritsPopupMenu(); + boolean var36 = var29.isShowing(); + boolean var37 = var29.isCursorSet(); + java.awt.Dimension var38 = var29.getPreferredSize(); + boolean var39 = var0.isAncestorOf((java.awt.Component)var29); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var25); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var30 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var35 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var36 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var38); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var39 == false); + + } + + public void test60() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test60"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + var0.show(false); + boolean var8 = var0.isPaintingForPrint(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var15 = var9.getMouseListeners(); + int var16 = var9.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var17 = var9.getInputMethodRequests(); + var0.addKeyListener((java.awt.event.KeyListener)var9); + var9.repaint(); + java.awt.Component var22 = var9.findComponentAt(10, (-1)); + var9.transferFocusDownCycle(); + boolean var26 = var9.inside(2, 499); + boolean var27 = var9.isMaximumSizeSet(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == false); + + } + + public void test61() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test61"); + + + SpaceWar.Bullet var3 = new SpaceWar.Bullet((-14.294084445243069d), 10, 499); + double var4 = var3.getR(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 5.0d); + + } + + public void test62() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test62"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var1 = new SpaceWar.SpacePanel(); + java.awt.Color var2 = var1.getBackground(); + SpaceWar.SpacePanel var3 = new SpaceWar.SpacePanel(); + float var4 = var3.getAlignmentX(); + var3.setVisible(false); + var3.nextFocus(); + var3.updateUI(); + var3.enableInputMethods(true); + var0.add((java.awt.Component)var1, (java.lang.Object)true); + boolean var13 = var1.areFocusTraversalKeysSet(0); + SpaceWar.SpacePanel var14 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var15 = new SpaceWar.SpacePanel(); + java.awt.Color var16 = var15.getBackground(); + SpaceWar.SpacePanel var17 = new SpaceWar.SpacePanel(); + float var18 = var17.getAlignmentX(); + var17.setVisible(false); + var17.nextFocus(); + var17.updateUI(); + var17.enableInputMethods(true); + var14.add((java.awt.Component)var15, (java.lang.Object)true); + boolean var26 = var14.isMinimumSizeSet(); + java.awt.event.HierarchyListener[] var27 = var14.getHierarchyListeners(); + SpaceWar.SpacePanel var28 = new SpaceWar.SpacePanel(); + float var29 = var28.getAlignmentX(); + var28.setVisible(false); + SpaceWar.SpacePanel var32 = new SpaceWar.SpacePanel(); + java.awt.Color var33 = var32.getBackground(); + var28.setForeground(var33); + SpaceWar.SpacePanel var35 = new SpaceWar.SpacePanel(); + float var36 = var35.getAlignmentX(); + var35.setVisible(false); + boolean var39 = var35.isDoubleBuffered(); + java.awt.dnd.DropTarget var40 = var35.getDropTarget(); + var35.show(false); + java.awt.Rectangle var43 = var35.getVisibleRect(); + var28.repaint(var43); + java.awt.FocusTraversalPolicy var45 = var28.getFocusTraversalPolicy(); + java.awt.im.InputMethodRequests var46 = var28.getInputMethodRequests(); + var28.layout(); + boolean var48 = var28.isFocusTraversalPolicyProvider(); + java.lang.Object var49 = var14.getClientProperty((java.lang.Object)var48); + boolean var50 = var14.isFocusTraversable(); + var1.remove((java.awt.Component)var14); + var1.revalidate(); + SpaceWar.SpacePanel var53 = new SpaceWar.SpacePanel(); + float var54 = var53.getAlignmentX(); + var53.setVisible(false); + var53.nextFocus(); + var53.reshape((-1), 1, (-1), 10); + var53.disable(); + java.awt.LayoutManager var64 = var53.getLayout(); + var53.transferFocusDownCycle(); + java.lang.Object var66 = var1.getClientProperty((java.lang.Object)var53); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var2); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var27); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var29 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var33); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var36 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var39 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var40); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var43); + + // Regression assertion (captures the current behavior of the code) + assertNull(var45); + + // Regression assertion (captures the current behavior of the code) + assertNull(var46); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var48 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var49); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var50 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var54 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var64); + + // Regression assertion (captures the current behavior of the code) + assertNull(var66); + + } + + public void test63() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test63"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + boolean var2 = var0.hasFocus(); + java.awt.Insets var3 = var0.getInsets(); + boolean var4 = var0.isFocusTraversalPolicyProvider(); + java.beans.PropertyChangeListener[] var6 = var0.getPropertyChangeListeners("hi!"); + boolean var7 = var0.isFocusable(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var2 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == true); + + } + + public void test64() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test64"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + var0.setRequestFocusEnabled(false); + var0.reshape(100, 0, 100, 0); + var0.requestFocus(); + var0.firePropertyChange("hi!", '4', ' '); + SpaceWar.Enemy var17 = new SpaceWar.Enemy(0, 100); + int var18 = var17.getR(); + var17.explode(); + var0.putClientProperty((java.lang.Object)var17, (java.lang.Object)(short)10); + boolean var23 = var0.requestFocus(false); + var0.list(); + javax.swing.KeyStroke[] var25 = var0.getRegisteredKeyStrokes(); + SpaceWar.SpacePanel var26 = new SpaceWar.SpacePanel(); + java.awt.Color var27 = var26.getBackground(); + var26.repaint(); + java.awt.im.InputMethodRequests var29 = var26.getInputMethodRequests(); + int var30 = var26.countComponents(); + java.awt.event.ComponentListener[] var31 = var26.getComponentListeners(); + var26.removeNotify(); + javax.swing.InputMap var33 = var26.getInputMap(); + SpaceWar.SpacePanel var34 = new SpaceWar.SpacePanel(); + float var35 = var34.getAlignmentX(); + var34.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var40 = new SpaceWar.SpacePanel(); + float var41 = var40.getAlignmentX(); + var40.setVisible(false); + SpaceWar.SpacePanel var44 = new SpaceWar.SpacePanel(); + java.awt.Color var45 = var44.getBackground(); + var40.setForeground(var45); + var34.setBackground(var45); + java.awt.Point var48 = var34.location(); + var26.setLocation(var48); + SpaceWar.SpacePanel var50 = new SpaceWar.SpacePanel(); + float var51 = var50.getAlignmentX(); + var50.setVisible(false); + var50.nextFocus(); + var50.reshape((-1), 1, (-1), 10); + SpaceWar.SpacePanel var60 = new SpaceWar.SpacePanel(); + java.awt.Color var61 = var60.getBackground(); + var60.repaint(); + var60.setRequestFocusEnabled(false); + var60.reshape(100, 0, 100, 0); + java.awt.Component var70 = var50.add((java.awt.Component)var60); + var50.enable(); + SpaceWar.SpacePanel var72 = new SpaceWar.SpacePanel(); + float var73 = var72.getAlignmentX(); + boolean var74 = var72.hasFocus(); + boolean var75 = var72.isPreferredSizeSet(); + var26.putClientProperty((java.lang.Object)var50, (java.lang.Object)var72); + var0.setNextFocusableComponent((java.awt.Component)var26); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var25); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var27); + + // Regression assertion (captures the current behavior of the code) + assertNull(var29); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var30 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var31); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var33); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var35 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var41 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var45); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var48); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var51 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var61); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var70); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var73 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var74 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var75 == true); + + } + + public void test65() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test65"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + SpaceWar.SpacePanel var5 = new SpaceWar.SpacePanel(); + java.awt.Color var6 = var5.getBackground(); + var5.repaint(); + java.lang.Object var8 = var0.getClientProperty((java.lang.Object)var5); + var5.repaint(1L); + SpaceWar.SpacePanel var11 = new SpaceWar.SpacePanel(); + float var12 = var11.getAlignmentX(); + var11.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var17 = new SpaceWar.SpacePanel(); + float var18 = var17.getAlignmentX(); + var17.setVisible(false); + SpaceWar.SpacePanel var21 = new SpaceWar.SpacePanel(); + java.awt.Color var22 = var21.getBackground(); + var17.setForeground(var22); + var11.setBackground(var22); + var11.grabFocus(); + SpaceWar.SpacePanel var26 = new SpaceWar.SpacePanel(); + float var27 = var26.getAlignmentX(); + var26.setVisible(false); + boolean var30 = var26.isDoubleBuffered(); + java.awt.dnd.DropTarget var31 = var26.getDropTarget(); + boolean var32 = var26.isFocusCycleRoot(); + SpaceWar.SpacePanel var33 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var34 = new SpaceWar.SpacePanel(); + java.awt.Color var35 = var34.getBackground(); + SpaceWar.SpacePanel var36 = new SpaceWar.SpacePanel(); + float var37 = var36.getAlignmentX(); + var36.setVisible(false); + var36.nextFocus(); + var36.updateUI(); + var36.enableInputMethods(true); + var33.add((java.awt.Component)var34, (java.lang.Object)true); + java.awt.Dimension var45 = var34.getPreferredSize(); + var26.setSize(var45); + var11.setMaximumSize(var45); + float var48 = var11.getAlignmentY(); + java.lang.String var49 = var11.getToolTipText(); + var5.addKeyListener((java.awt.event.KeyListener)var11); + boolean var51 = var5.isFocusTraversable(); + java.awt.Point var52 = var5.getLocation(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var30 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var31); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var32 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var35); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var45); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var48 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNull(var49); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var51 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var52); + + } + + public void test66() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test66"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + boolean var2 = var0.hasFocus(); + boolean var3 = var0.isPreferredSizeSet(); + var0.firePropertyChange("", (short)1, (short)0); + boolean var8 = var0.isMaximumSizeSet(); + var0.list(); + java.awt.Rectangle var10 = var0.getBounds(); + var0.setFocusTraversalPolicyProvider(true); + float var13 = var0.getAlignmentX(); + java.awt.Dimension var14 = var0.getMinimumSize(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var2 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + } + + public void test67() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test67"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.setInheritsPopupMenu(false); + java.awt.Component var8 = var0.findComponentAt((-1), 1); + java.awt.Insets var9 = var0.getInsets(); + var0.show(true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var9); + + } + + public void test68() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test68"); + + + SpaceWar.Player var0 = new SpaceWar.Player(); + boolean var1 = var0.isRecovering(); + int var2 = var0.getRequiredPower(); + boolean var3 = var0.isRecovering(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var2 == 1); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == false); + + } + + public void test69() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test69"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + var0.show(false); + boolean var8 = var0.isPaintingForPrint(); + javax.swing.TransferHandler var9 = var0.getTransferHandler(); + java.util.Locale var10 = var0.getLocale(); + var0.doLayout(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var9); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var10); + + } + + public void test70() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test70"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + java.awt.im.InputMethodRequests var3 = var0.getInputMethodRequests(); + int var4 = var0.countComponents(); + java.awt.event.MouseMotionListener[] var5 = var0.getMouseMotionListeners(); + java.awt.Dimension var6 = var0.size(); + boolean var7 = var0.isMinimumSizeSet(); + boolean var8 = var0.getIgnoreRepaint(); + var0.repaint(); + java.beans.PropertyChangeListener[] var11 = var0.getPropertyChangeListeners("PanelUI"); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + } + + public void test71() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test71"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + float var7 = var6.getAlignmentX(); + var6.setVisible(false); + java.awt.Dimension var10 = var6.getPreferredSize(); + var0.setMaximumSize(var10); + boolean var12 = var0.getVerifyInputWhenFocusTarget(); + javax.accessibility.AccessibleContext var13 = var0.getAccessibleContext(); + boolean var14 = var0.isDoubleBuffered(); + boolean var15 = var0.getAutoscrolls(); + var0.repaint(10L, (-1), 25, (-1), 100); + var0.updateUI(); + boolean var23 = var0.isBackgroundSet(); + var0.setOpaque(true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == true); + + } + + public void test72() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test72"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.requestFocus(); + int var6 = var0.getHeight(); + var0.setEnabled(true); + java.awt.Component[] var9 = var0.getComponents(); + var0.setOpaque(true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var9); + + } + + public void test73() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test73"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var6 = var0.getMouseListeners(); + java.awt.Dimension var7 = var0.getPreferredSize(); + java.util.Locale var8 = var0.getLocale(); + java.lang.String var9 = var0.getToolTipText(); + var0.firePropertyChange("SpaceWar.SpacePanel[,-1,1,-1x10,invalid,hidden,disabled,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", 10, 1); + SpaceWar.SpacePanel var14 = new SpaceWar.SpacePanel(); + float var15 = var14.getAlignmentX(); + var14.setVisible(false); + boolean var18 = var14.isDoubleBuffered(); + var14.list(); + SpaceWar.SpacePanel var20 = new SpaceWar.SpacePanel(); + float var21 = var20.getAlignmentX(); + var20.setVisible(false); + boolean var24 = var20.isDoubleBuffered(); + java.awt.dnd.DropTarget var25 = var20.getDropTarget(); + var20.show(false); + java.awt.Rectangle var28 = var20.getVisibleRect(); + java.awt.Rectangle var29 = var14.getBounds(var28); + javax.swing.JToolTip var30 = var14.createToolTip(); + var14.firePropertyChange("", false, false); + var14.revalidate(); + SpaceWar.SpacePanel var36 = new SpaceWar.SpacePanel(); + java.awt.Color var37 = var36.getBackground(); + var36.repaint(); + var36.setRequestFocusEnabled(false); + var36.reshape(100, 0, 100, 0); + var36.requestFocus(); + var36.firePropertyChange("hi!", '4', ' '); + java.awt.Point var51 = var36.getLocation(); + java.awt.Dimension var52 = var36.size(); + java.awt.Image var55 = var36.createImage((-1), (-1)); + SpaceWar.SpacePanel var56 = new SpaceWar.SpacePanel(); + float var57 = var56.getAlignmentX(); + var56.setVisible(false); + boolean var60 = var56.isDoubleBuffered(); + java.awt.dnd.DropTarget var61 = var56.getDropTarget(); + var56.show(false); + boolean var64 = var56.isPaintingForPrint(); + SpaceWar.SpacePanel var65 = new SpaceWar.SpacePanel(); + float var66 = var65.getAlignmentX(); + var65.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var71 = var65.getMouseListeners(); + int var72 = var65.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var73 = var65.getInputMethodRequests(); + var56.addKeyListener((java.awt.event.KeyListener)var65); + var65.repaint(); + java.awt.Point var76 = var65.location(); + java.awt.Component var77 = var36.findComponentAt(var76); + var14.setLocation(var76); + java.awt.Point var79 = var0.getLocation(var76); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertNull(var9); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var24 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var25); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var28); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var29); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var30); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var37); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var51); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var52); + + // Regression assertion (captures the current behavior of the code) + assertNull(var55); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var57 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var60 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var61); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var64 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var66 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var71); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var72 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var73); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var76); + + // Regression assertion (captures the current behavior of the code) + assertNull(var77); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var79); + + } + + public void test74() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test74"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.setInheritsPopupMenu(false); + var0.setFocusTraversalPolicyProvider(true); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + boolean var12 = var8.isDoubleBuffered(); + var8.list(); + SpaceWar.SpacePanel var14 = new SpaceWar.SpacePanel(); + float var15 = var14.getAlignmentX(); + var14.setVisible(false); + boolean var18 = var14.isDoubleBuffered(); + java.awt.dnd.DropTarget var19 = var14.getDropTarget(); + var14.show(false); + java.awt.Rectangle var22 = var14.getVisibleRect(); + java.awt.Rectangle var23 = var8.getBounds(var22); + javax.swing.JToolTip var24 = var8.createToolTip(); + var0.removeKeyListener((java.awt.event.KeyListener)var8); + var0.setFocusTraversalKeysEnabled(true); + javax.swing.KeyStroke[] var28 = var0.getRegisteredKeyStrokes(); + java.lang.String var29 = var0.getName(); + java.lang.String var30 = var0.getName(); + java.awt.Image var33 = var0.createImage(24, 2); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var23); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var28); + + // Regression assertion (captures the current behavior of the code) + assertNull(var29); + + // Regression assertion (captures the current behavior of the code) + assertNull(var30); + + // Regression assertion (captures the current behavior of the code) + assertNull(var33); + + } + + public void test75() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test75"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.setInheritsPopupMenu(false); + boolean var6 = var0.isMinimumSizeSet(); + java.awt.Point var8 = var0.getMousePosition(true); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.setVisible(false); + var9.setInheritsPopupMenu(false); + var9.setFocusTraversalPolicyProvider(true); + boolean var19 = var9.inside(25, 3); + SpaceWar.SpacePanel var20 = new SpaceWar.SpacePanel(); + float var21 = var20.getAlignmentX(); + var20.setVisible(false); + boolean var24 = var20.isDoubleBuffered(); + java.awt.dnd.DropTarget var25 = var20.getDropTarget(); + var20.show(false); + boolean var28 = var20.isPaintingForPrint(); + SpaceWar.SpacePanel var29 = new SpaceWar.SpacePanel(); + float var30 = var29.getAlignmentX(); + SpaceWar.SpacePanel var31 = new SpaceWar.SpacePanel(); + float var32 = var31.getAlignmentX(); + var31.setVisible(false); + java.awt.Dimension var35 = var31.getPreferredSize(); + boolean var36 = var31.getVerifyInputWhenFocusTarget(); + java.awt.Component var39 = var31.findComponentAt(10, 1); + var29.addKeyListener((java.awt.event.KeyListener)var31); + java.awt.Dimension var41 = var31.getMinimumSize(); + var20.setMinimumSize(var41); + var9.setPreferredSize(var41); + SpaceWar.SpacePanel var44 = new SpaceWar.SpacePanel(); + float var45 = var44.getAlignmentX(); + var44.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var50 = var44.getUI(); + java.awt.im.InputMethodRequests var51 = var44.getInputMethodRequests(); + SpaceWar.SpacePanel var52 = new SpaceWar.SpacePanel(); + float var53 = var52.getAlignmentX(); + var52.setVisible(false); + var52.nextFocus(); + var52.updateUI(); + var52.enableInputMethods(true); + var52.setSize((-1), 1); + SpaceWar.SpacePanel var63 = new SpaceWar.SpacePanel(); + var63.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var44.add((java.awt.Component)var52, (java.lang.Object)"SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + SpaceWar.SpacePanel var69 = new SpaceWar.SpacePanel(); + var69.setName(""); + java.awt.ComponentOrientation var72 = var69.getComponentOrientation(); + var44.applyComponentOrientation(var72); + var9.setComponentOrientation(var72); + var0.setComponentOrientation(var72); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var24 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var25); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var28 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var30 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var32 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var35); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var36 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var39); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var41); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var45 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var50); + + // Regression assertion (captures the current behavior of the code) + assertNull(var51); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var53 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var72); + + } + + public void test76() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test76"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var1 = new SpaceWar.SpacePanel(); + java.awt.Color var2 = var1.getBackground(); + SpaceWar.SpacePanel var3 = new SpaceWar.SpacePanel(); + float var4 = var3.getAlignmentX(); + var3.setVisible(false); + var3.nextFocus(); + var3.updateUI(); + var3.enableInputMethods(true); + var0.add((java.awt.Component)var1, (java.lang.Object)true); + java.awt.Image var14 = var1.createImage(1, (-1)); + java.beans.PropertyChangeListener[] var15 = var1.getPropertyChangeListeners(); + javax.swing.KeyStroke[] var16 = var1.getRegisteredKeyStrokes(); + javax.accessibility.AccessibleContext var17 = var1.getAccessibleContext(); + var1.transferFocusDownCycle(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var2); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var17); + + } + + public void test77() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test77"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.setInheritsPopupMenu(false); + boolean var6 = var0.isMinimumSizeSet(); + java.awt.FocusTraversalPolicy var7 = var0.getFocusTraversalPolicy(); + boolean var8 = var0.isShowing(); + java.awt.Rectangle var9 = var0.getBounds(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var9); + + } + + public void test78() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test78"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var1 = new SpaceWar.SpacePanel(); + java.awt.Color var2 = var1.getBackground(); + SpaceWar.SpacePanel var3 = new SpaceWar.SpacePanel(); + float var4 = var3.getAlignmentX(); + var3.setVisible(false); + var3.nextFocus(); + var3.updateUI(); + var3.enableInputMethods(true); + var0.add((java.awt.Component)var1, (java.lang.Object)true); + java.awt.Insets var12 = var0.getInsets(); + SpaceWar.SpacePanel var13 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var14 = new SpaceWar.SpacePanel(); + java.awt.Color var15 = var14.getBackground(); + SpaceWar.SpacePanel var16 = new SpaceWar.SpacePanel(); + float var17 = var16.getAlignmentX(); + var16.setVisible(false); + var16.nextFocus(); + var16.updateUI(); + var16.enableInputMethods(true); + var13.add((java.awt.Component)var14, (java.lang.Object)true); + java.awt.Dimension var25 = var14.getPreferredSize(); + java.awt.Dimension var26 = var0.getSize(var25); + java.awt.Insets var27 = var0.getInsets(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var2); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var25); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var27); + + } + + public void test79() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test79"); + + + SpaceWar.Player var0 = new SpaceWar.Player(); + int var1 = var0.getPower(); + var0.setLeft(true); + var0.increasePower(0); + var0.setRigth(false); + int var8 = var0.getPower(); + var0.setRigth(false); + var0.setDown(true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 0); + + } + + public void test80() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test80"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.repaint(1L); + SpaceWar.SpacePanel var7 = new SpaceWar.SpacePanel(); + float var8 = var7.getAlignmentX(); + var7.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var13 = new SpaceWar.SpacePanel(); + float var14 = var13.getAlignmentX(); + var13.setVisible(false); + java.awt.Dimension var17 = var13.getPreferredSize(); + var7.setMaximumSize(var17); + var0.setPreferredSize(var17); + java.awt.Container var20 = var0.getFocusCycleRootAncestor(); + java.awt.event.MouseMotionListener[] var21 = var0.getMouseMotionListeners(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var21); + + } + + public void test81() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test81"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + var0.setRequestFocusEnabled(false); + var0.reshape(100, 0, 100, 0); + var0.requestFocus(); + var0.firePropertyChange("hi!", '4', ' '); + java.awt.Point var15 = var0.getLocation(); + java.awt.Dimension var16 = var0.size(); + var0.repaint(1L, 25, 3, 1, 0); + var0.transferFocus(); + var0.setDoubleBuffered(true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + } + + public void test82() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test82"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var6 = var0.getUI(); + java.awt.im.InputMethodRequests var7 = var0.getInputMethodRequests(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + var8.nextFocus(); + var8.updateUI(); + var8.enableInputMethods(true); + var8.setSize((-1), 1); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + var19.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var0.add((java.awt.Component)var8, (java.lang.Object)"SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + java.awt.event.KeyListener[] var25 = var0.getKeyListeners(); + java.awt.FocusTraversalPolicy var26 = var0.getFocusTraversalPolicy(); + java.awt.Point var28 = var0.getMousePosition(false); + var0.revalidate(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var25); + + // Regression assertion (captures the current behavior of the code) + assertNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertNull(var28); + + } + + public void test83() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test83"); + + + SpaceWar.Enemy var2 = new SpaceWar.Enemy(25, (-1)); + int var3 = var2.getR(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == 0); + + } + + public void test84() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test84"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + java.awt.im.InputMethodRequests var3 = var0.getInputMethodRequests(); + var0.setDoubleBuffered(true); + var0.show(false); + var0.setAlignmentY(100.0f); + SpaceWar.SpacePanel var10 = new SpaceWar.SpacePanel(); + float var11 = var10.getAlignmentX(); + var10.setVisible(false); + SpaceWar.SpacePanel var14 = new SpaceWar.SpacePanel(); + java.awt.Color var15 = var14.getBackground(); + var10.setForeground(var15); + SpaceWar.SpacePanel var17 = new SpaceWar.SpacePanel(); + float var18 = var17.getAlignmentX(); + var17.setVisible(false); + boolean var21 = var17.isDoubleBuffered(); + java.awt.dnd.DropTarget var22 = var17.getDropTarget(); + var17.show(false); + java.awt.Rectangle var25 = var17.getVisibleRect(); + var10.repaint(var25); + java.awt.FocusTraversalPolicy var27 = var10.getFocusTraversalPolicy(); + java.awt.im.InputMethodRequests var28 = var10.getInputMethodRequests(); + var10.layout(); + boolean var30 = var10.isFocusTraversalPolicyProvider(); + java.awt.Insets var31 = var10.insets(); + java.awt.Dimension var32 = var10.getMinimumSize(); + java.awt.Dimension var33 = var0.getSize(var32); + var0.enable(); + var0.enable(); + java.awt.Toolkit var36 = var0.getToolkit(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var25); + + // Regression assertion (captures the current behavior of the code) + assertNull(var27); + + // Regression assertion (captures the current behavior of the code) + assertNull(var28); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var30 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var31); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var32); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var33); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var36); + + } + + public void test85() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test85"); + + + SpaceWar.Player var0 = new SpaceWar.Player(); + boolean var1 = var0.isRecovering(); + var0.loseLife(); + int var3 = var0.getR(); + var0.loseLife(); + var0.setDown(true); + int var7 = var0.getR(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == 25); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 25); + + } + + public void test86() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test86"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + var0.show(false); + boolean var8 = var0.isPaintingForPrint(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var15 = var9.getMouseListeners(); + int var16 = var9.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var17 = var9.getInputMethodRequests(); + var0.addKeyListener((java.awt.event.KeyListener)var9); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + float var20 = var19.getAlignmentX(); + var19.setVisible(false); + boolean var23 = var19.isDoubleBuffered(); + var19.list(); + float var25 = var19.getAlignmentY(); + boolean var26 = var9.isFocusCycleRoot((java.awt.Container)var19); + SpaceWar.SpacePanel var28 = new SpaceWar.SpacePanel(); + float var29 = var28.getAlignmentX(); + var28.setVisible(false); + var28.nextFocus(); + var28.updateUI(); + java.awt.Component var34 = var9.add("", (java.awt.Component)var28); + boolean var35 = var28.isValidateRoot(); + javax.swing.TransferHandler var36 = var28.getTransferHandler(); + SpaceWar.SpacePanel var37 = new SpaceWar.SpacePanel(); + float var38 = var37.getAlignmentX(); + var37.setVisible(false); + var37.nextFocus(); + var37.updateUI(); + java.util.Locale var43 = var37.getLocale(); + var37.paintImmediately(25, 100, 3, 0); + SpaceWar.SpacePanel var49 = new SpaceWar.SpacePanel(); + float var50 = var49.getAlignmentX(); + var49.setVisible(false); + var49.setInheritsPopupMenu(false); + var49.setFocusTraversalPolicyProvider(true); + boolean var59 = var49.inside(25, 3); + SpaceWar.SpacePanel var60 = new SpaceWar.SpacePanel(); + float var61 = var60.getAlignmentX(); + var60.setVisible(false); + boolean var64 = var60.isDoubleBuffered(); + java.awt.dnd.DropTarget var65 = var60.getDropTarget(); + var60.show(false); + boolean var68 = var60.isPaintingForPrint(); + SpaceWar.SpacePanel var69 = new SpaceWar.SpacePanel(); + float var70 = var69.getAlignmentX(); + SpaceWar.SpacePanel var71 = new SpaceWar.SpacePanel(); + float var72 = var71.getAlignmentX(); + var71.setVisible(false); + java.awt.Dimension var75 = var71.getPreferredSize(); + boolean var76 = var71.getVerifyInputWhenFocusTarget(); + java.awt.Component var79 = var71.findComponentAt(10, 1); + var69.addKeyListener((java.awt.event.KeyListener)var71); + java.awt.Dimension var81 = var71.getMinimumSize(); + var60.setMinimumSize(var81); + var49.setPreferredSize(var81); + var37.setMinimumSize(var81); + var28.setSize(var81); + java.awt.event.KeyListener[] var86 = var28.getKeyListeners(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var29 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var34); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var35 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var36); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var38 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var43); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var50 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var59 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var61 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var64 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var65); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var68 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var70 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var72 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var75); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var76 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var79); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var81); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var86); + + } + + public void test87() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test87"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + SpaceWar.SpacePanel var4 = new SpaceWar.SpacePanel(); + java.awt.Color var5 = var4.getBackground(); + var0.setForeground(var5); + var0.repaint(0L); + var0.show(); + var0.removeAll(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + } + + public void test88() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test88"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.removeNotify(); + java.awt.dnd.DropTarget var3 = var0.getDropTarget(); + java.awt.Component.BaselineResizeBehavior var4 = var0.getBaselineResizeBehavior(); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + float var7 = var6.getAlignmentX(); + var6.setVisible(false); + boolean var10 = var6.isDoubleBuffered(); + java.awt.dnd.DropTarget var11 = var6.getDropTarget(); + var6.show(false); + java.awt.Rectangle var14 = var6.getVisibleRect(); + java.awt.image.BufferedImage var16 = var6.loadImg("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + java.awt.ComponentOrientation var17 = var6.getComponentOrientation(); + var6.show(false); + java.awt.Component var20 = var0.add("SpaceWar.SpacePanel[,0,0,0x0,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", (java.awt.Component)var6); + var6.enableInputMethods(false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var4); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + } + + public void test89() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test89"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + SpaceWar.SpacePanel var4 = new SpaceWar.SpacePanel(); + java.awt.Color var5 = var4.getBackground(); + var0.setForeground(var5); + SpaceWar.SpacePanel var7 = new SpaceWar.SpacePanel(); + float var8 = var7.getAlignmentX(); + var7.setVisible(false); + boolean var11 = var7.isDoubleBuffered(); + java.awt.dnd.DropTarget var12 = var7.getDropTarget(); + var7.show(false); + java.awt.Rectangle var15 = var7.getVisibleRect(); + var0.repaint(var15); + java.awt.FocusTraversalPolicy var17 = var0.getFocusTraversalPolicy(); + java.awt.im.InputMethodRequests var18 = var0.getInputMethodRequests(); + var0.layout(); + java.awt.Container var20 = var0.getFocusCycleRootAncestor(); + SpaceWar.SpacePanel var21 = new SpaceWar.SpacePanel(); + float var22 = var21.getAlignmentX(); + var21.setVisible(false); + boolean var25 = var21.isDoubleBuffered(); + var21.list(); + SpaceWar.SpacePanel var27 = new SpaceWar.SpacePanel(); + float var28 = var27.getAlignmentX(); + var27.setVisible(false); + boolean var31 = var27.isDoubleBuffered(); + java.awt.dnd.DropTarget var32 = var27.getDropTarget(); + var27.show(false); + java.awt.Rectangle var35 = var27.getVisibleRect(); + java.awt.Rectangle var36 = var21.getBounds(var35); + javax.swing.JToolTip var37 = var21.createToolTip(); + var21.firePropertyChange("", false, false); + var21.validate(); + SpaceWar.SpacePanel var43 = new SpaceWar.SpacePanel(); + float var44 = var43.getAlignmentX(); + var43.setVisible(false); + boolean var47 = var43.isDoubleBuffered(); + java.awt.dnd.DropTarget var48 = var43.getDropTarget(); + var43.show(false); + boolean var51 = var43.isPaintingForPrint(); + SpaceWar.SpacePanel var52 = new SpaceWar.SpacePanel(); + float var53 = var52.getAlignmentX(); + var52.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var58 = var52.getMouseListeners(); + int var59 = var52.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var60 = var52.getInputMethodRequests(); + var43.addKeyListener((java.awt.event.KeyListener)var52); + var52.repaint(); + java.awt.Point var63 = var52.location(); + java.awt.Component var64 = var21.getComponentAt(var63); + var0.setLocation(var63); + java.beans.VetoableChangeListener[] var66 = var0.getVetoableChangeListeners(); + boolean var67 = var0.isCursorSet(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var22 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var28 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var31 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var32); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var35); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var36); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var37); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var44 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var47 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var48); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var51 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var53 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var58); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var59 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var60); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var63); + + // Regression assertion (captures the current behavior of the code) + assertNull(var64); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var66); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var67 == false); + + } + + public void test90() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test90"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + var0.show(false); + boolean var8 = var0.isPaintingForPrint(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var15 = var9.getMouseListeners(); + int var16 = var9.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var17 = var9.getInputMethodRequests(); + var0.addKeyListener((java.awt.event.KeyListener)var9); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + float var20 = var19.getAlignmentX(); + var19.setVisible(false); + boolean var23 = var19.isDoubleBuffered(); + var19.list(); + float var25 = var19.getAlignmentY(); + boolean var26 = var9.isFocusCycleRoot((java.awt.Container)var19); + SpaceWar.SpacePanel var28 = new SpaceWar.SpacePanel(); + float var29 = var28.getAlignmentX(); + var28.setVisible(false); + var28.nextFocus(); + var28.updateUI(); + java.awt.Component var34 = var9.add("", (java.awt.Component)var28); + java.awt.ComponentOrientation var35 = var28.getComponentOrientation(); + java.awt.Point var37 = var28.getMousePosition(true); + var28.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", (byte)1, (byte)10); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var29 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var34); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var35); + + // Regression assertion (captures the current behavior of the code) + assertNull(var37); + + } + + public void test91() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test91"); + + + SpaceWar.PowerUp var3 = new SpaceWar.PowerUp(3, 240.9713786093358d, 499.0d); + + } + + public void test92() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test92"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + boolean var4 = var0.inside(0, (-1)); + SpaceWar.SpacePanel var5 = new SpaceWar.SpacePanel(); + float var6 = var5.getAlignmentX(); + var5.setVisible(false); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + java.awt.Color var10 = var9.getBackground(); + var5.setForeground(var10); + var0.setForeground(var10); + var0.setAutoscrolls(false); + SpaceWar.SpacePanel var15 = new SpaceWar.SpacePanel(); + float var16 = var15.getAlignmentX(); + var15.setVisible(false); + boolean var19 = var15.isDoubleBuffered(); + java.awt.dnd.DropTarget var20 = var15.getDropTarget(); + var15.show(false); + boolean var23 = var15.isPaintingForPrint(); + SpaceWar.SpacePanel var24 = new SpaceWar.SpacePanel(); + float var25 = var24.getAlignmentX(); + var24.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var30 = var24.getMouseListeners(); + int var31 = var24.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var32 = var24.getInputMethodRequests(); + var15.addKeyListener((java.awt.event.KeyListener)var24); + SpaceWar.SpacePanel var34 = new SpaceWar.SpacePanel(); + float var35 = var34.getAlignmentX(); + var34.setVisible(false); + boolean var38 = var34.isDoubleBuffered(); + var34.list(); + float var40 = var34.getAlignmentY(); + boolean var41 = var24.isFocusCycleRoot((java.awt.Container)var34); + var34.firePropertyChange("", 1L, 1L); + var34.setVerifyInputWhenFocusTarget(true); + SpaceWar.SpacePanel var48 = new SpaceWar.SpacePanel(); + var48.setName(""); + java.awt.Dimension var51 = var48.minimumSize(); + boolean var52 = var48.isDoubleBuffered(); + SpaceWar.SpacePanel var53 = new SpaceWar.SpacePanel(); + float var54 = var53.getAlignmentX(); + SpaceWar.SpacePanel var55 = new SpaceWar.SpacePanel(); + float var56 = var55.getAlignmentX(); + var55.setVisible(false); + java.awt.Dimension var59 = var55.getPreferredSize(); + boolean var60 = var55.getVerifyInputWhenFocusTarget(); + java.awt.Component var63 = var55.findComponentAt(10, 1); + var53.addKeyListener((java.awt.event.KeyListener)var55); + var55.repaint(100, (-1), (-1), 1); + SpaceWar.SpacePanel var70 = new SpaceWar.SpacePanel(); + java.awt.Color var71 = var70.getBackground(); + var70.repaint(); + java.awt.im.InputMethodRequests var73 = var70.getInputMethodRequests(); + java.awt.GraphicsConfiguration var74 = var70.getGraphicsConfiguration(); + var55.remove((java.awt.Component)var70); + java.awt.Font var76 = var70.getFont(); + java.awt.FontMetrics var77 = var48.getFontMetrics(var76); + java.awt.FontMetrics var78 = var34.getFontMetrics(var76); + var0.setFont(var76); + var0.setVerifyInputWhenFocusTarget(false); + var0.validate(); + var0.setInheritsPopupMenu(false); + java.awt.Point var86 = var0.getMousePosition(true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var30); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var31 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var32); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var35 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var38 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var40 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var41 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var51); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var52 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var54 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var56 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var59); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var60 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var63); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var71); + + // Regression assertion (captures the current behavior of the code) + assertNull(var73); + + // Regression assertion (captures the current behavior of the code) + assertNull(var74); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var76); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var77); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var78); + + // Regression assertion (captures the current behavior of the code) + assertNull(var86); + + } + + public void test93() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test93"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var6 = var0.getUI(); + java.awt.im.InputMethodRequests var7 = var0.getInputMethodRequests(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + var8.nextFocus(); + var8.updateUI(); + var8.enableInputMethods(true); + var8.setSize((-1), 1); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + var19.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var0.add((java.awt.Component)var8, (java.lang.Object)"SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + SpaceWar.SpacePanel var25 = new SpaceWar.SpacePanel(); + float var26 = var25.getAlignmentX(); + var25.setVisible(false); + var25.setInheritsPopupMenu(false); + boolean var31 = var25.isDoubleBuffered(); + boolean var32 = var25.isMinimumSizeSet(); + SpaceWar.SpacePanel var33 = new SpaceWar.SpacePanel(); + float var34 = var33.getAlignmentX(); + var33.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var39 = new SpaceWar.SpacePanel(); + float var40 = var39.getAlignmentX(); + var39.setVisible(false); + java.awt.Dimension var43 = var39.getPreferredSize(); + var33.setMaximumSize(var43); + boolean var45 = var33.getVerifyInputWhenFocusTarget(); + javax.accessibility.AccessibleContext var46 = var33.getAccessibleContext(); + boolean var47 = var33.isDoubleBuffered(); + java.awt.Rectangle var48 = var33.getVisibleRect(); + var25.setBounds(var48); + java.awt.Rectangle var50 = var0.getBounds(var48); + SpaceWar.SpacePanel var51 = new SpaceWar.SpacePanel(); + float var52 = var51.getAlignmentX(); + var51.setVisible(false); + boolean var55 = var51.isDoubleBuffered(); + java.awt.dnd.DropTarget var56 = var51.getDropTarget(); + var51.show(false); + boolean var59 = var51.isPaintingForPrint(); + SpaceWar.SpacePanel var60 = new SpaceWar.SpacePanel(); + float var61 = var60.getAlignmentX(); + var60.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var66 = var60.getMouseListeners(); + int var67 = var60.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var68 = var60.getInputMethodRequests(); + var51.addKeyListener((java.awt.event.KeyListener)var60); + SpaceWar.SpacePanel var70 = new SpaceWar.SpacePanel(); + float var71 = var70.getAlignmentX(); + var70.setVisible(false); + boolean var74 = var70.isDoubleBuffered(); + var70.list(); + float var76 = var70.getAlignmentY(); + boolean var77 = var60.isFocusCycleRoot((java.awt.Container)var70); + SpaceWar.SpacePanel var79 = new SpaceWar.SpacePanel(); + float var80 = var79.getAlignmentX(); + var79.setVisible(false); + var79.nextFocus(); + var79.updateUI(); + java.awt.Component var85 = var60.add("", (java.awt.Component)var79); + java.awt.ComponentOrientation var86 = var79.getComponentOrientation(); + var0.applyComponentOrientation(var86); + var0.requestFocus(); + boolean var89 = var0.getAutoscrolls(); + var0.setFocusCycleRoot(true); + java.awt.ComponentOrientation var92 = var0.getComponentOrientation(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var31 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var32 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var34 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var40 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var43); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var45 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var46); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var47 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var48); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var50); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var52 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var55 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var56); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var59 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var61 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var66); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var67 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var68); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var71 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var74 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var76 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var77 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var80 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var85); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var86); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var89 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var92); + + } + + public void test94() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test94"); + + + SpaceWar.Bullet var3 = new SpaceWar.Bullet(579.3282808260785d, 0, 0); + + } + + public void test95() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test95"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var6 = var0.getUI(); + java.awt.im.InputMethodRequests var7 = var0.getInputMethodRequests(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + var8.nextFocus(); + var8.updateUI(); + var8.enableInputMethods(true); + var8.setSize((-1), 1); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + var19.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var0.add((java.awt.Component)var8, (java.lang.Object)"SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + SpaceWar.SpacePanel var25 = new SpaceWar.SpacePanel(); + float var26 = var25.getAlignmentX(); + var25.setVisible(false); + var25.setInheritsPopupMenu(false); + boolean var31 = var25.isDoubleBuffered(); + boolean var32 = var25.isMinimumSizeSet(); + SpaceWar.SpacePanel var33 = new SpaceWar.SpacePanel(); + float var34 = var33.getAlignmentX(); + var33.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var39 = new SpaceWar.SpacePanel(); + float var40 = var39.getAlignmentX(); + var39.setVisible(false); + java.awt.Dimension var43 = var39.getPreferredSize(); + var33.setMaximumSize(var43); + boolean var45 = var33.getVerifyInputWhenFocusTarget(); + javax.accessibility.AccessibleContext var46 = var33.getAccessibleContext(); + boolean var47 = var33.isDoubleBuffered(); + java.awt.Rectangle var48 = var33.getVisibleRect(); + var25.setBounds(var48); + java.awt.Rectangle var50 = var0.getBounds(var48); + java.lang.String var51 = var0.getToolTipText(); + var0.hide(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var31 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var32 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var34 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var40 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var43); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var45 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var46); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var47 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var48); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var50); + + // Regression assertion (captures the current behavior of the code) + assertNull(var51); + + } + + public void test96() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test96"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + boolean var6 = var0.isFocusCycleRoot(); + SpaceWar.SpacePanel var7 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + java.awt.Color var9 = var8.getBackground(); + SpaceWar.SpacePanel var10 = new SpaceWar.SpacePanel(); + float var11 = var10.getAlignmentX(); + var10.setVisible(false); + var10.nextFocus(); + var10.updateUI(); + var10.enableInputMethods(true); + var7.add((java.awt.Component)var8, (java.lang.Object)true); + java.awt.Dimension var19 = var8.getPreferredSize(); + var0.setSize(var19); + var0.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", (-1), 10); + SpaceWar.SpacePanel var25 = new SpaceWar.SpacePanel(); + java.awt.Color var26 = var25.getBackground(); + boolean var29 = var25.inside(0, (-1)); + var25.transferFocusUpCycle(); + java.awt.Container var31 = var25.getParent(); + var25.resize((-1), 25); + javax.swing.ActionMap var35 = var25.getActionMap(); + var0.setActionMap(var35); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var9); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var29 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var31); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var35); + + } + + public void test97() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test97"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.updateUI(); + var0.enableInputMethods(true); + java.lang.String var8 = var0.toString(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.setVisible(false); + boolean var13 = var9.isDoubleBuffered(); + java.awt.dnd.DropTarget var14 = var9.getDropTarget(); + var9.show(false); + java.awt.Rectangle var17 = var9.getVisibleRect(); + java.awt.image.BufferedImage var19 = var9.loadImg("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + java.awt.ComponentOrientation var20 = var9.getComponentOrientation(); + boolean var21 = var9.isPaintingTile(); + boolean var22 = var9.isOptimizedDrawingEnabled(); + int var23 = var0.getComponentZOrder((java.awt.Component)var9); + javax.swing.event.AncestorListener[] var24 = var0.getAncestorListeners(); + java.awt.image.BufferedImage var26 = var0.loadImg("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=8,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var8 + "' != '" + "SpaceWar.SpacePanel[,0,0,0var8,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"+ "'", var8.equals("SpaceWar.SpacePanel[,0,0,0var8,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]")); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var22 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == (-1)); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertNull(var26); + + } + + public void test98() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test98"); + + + SpaceWar.Enemy var2 = new SpaceWar.Enemy(0, 10); + var2.update(); + double var4 = var2.getX(); + var2.update(); + boolean var6 = var2.isDead(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 413.1182290853403d); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == false); + + } + + public void test99() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test99"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + var0.setName(""); + java.awt.Toolkit var3 = var0.getToolkit(); + var0.setEnabled(false); + var0.removeNotify(); + boolean var7 = var0.isDisplayable(); + var0.setIgnoreRepaint(false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == false); + + } + + public void test100() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test100"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + var0.setRequestFocusEnabled(false); + var0.setIgnoreRepaint(false); + boolean var7 = var0.requestFocusInWindow(); + java.awt.Point var9 = var0.getMousePosition(false); + boolean var10 = javax.swing.JComponent.isLightweightComponent((java.awt.Component)var0); + boolean var11 = var0.getInheritsPopupMenu(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var9); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == false); + + } + + public void test101() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test101"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + SpaceWar.SpacePanel var5 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + java.awt.Color var7 = var6.getBackground(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + var8.nextFocus(); + var8.updateUI(); + var8.enableInputMethods(true); + var5.add((java.awt.Component)var6, (java.lang.Object)true); + java.awt.Dimension var17 = var6.getPreferredSize(); + var0.setMaximumSize(var17); + java.awt.Dimension var19 = var0.preferredSize(); + boolean var20 = var0.isOptimizedDrawingEnabled(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == true); + + } + + public void test102() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test102"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + java.awt.Dimension var4 = var0.getPreferredSize(); + boolean var5 = var0.getVerifyInputWhenFocusTarget(); + java.awt.Component var8 = var0.findComponentAt(10, 1); + boolean var9 = var0.requestDefaultFocus(); + java.awt.Insets var10 = var0.getInsets(); + var0.setDoubleBuffered(false); + SpaceWar.SpacePanel var13 = new SpaceWar.SpacePanel(); + float var14 = var13.getAlignmentX(); + var13.setVisible(false); + boolean var17 = var13.isDoubleBuffered(); + java.awt.dnd.DropTarget var18 = var13.getDropTarget(); + var13.show(false); + java.awt.Rectangle var21 = var13.getVisibleRect(); + java.awt.Toolkit var22 = var13.getToolkit(); + java.awt.event.MouseMotionListener[] var23 = var13.getMouseMotionListeners(); + SpaceWar.SpacePanel var24 = new SpaceWar.SpacePanel(); + float var25 = var24.getAlignmentX(); + var24.setVisible(false); + SpaceWar.SpacePanel var28 = new SpaceWar.SpacePanel(); + java.awt.Color var29 = var28.getBackground(); + var24.setForeground(var29); + SpaceWar.SpacePanel var31 = new SpaceWar.SpacePanel(); + float var32 = var31.getAlignmentX(); + var31.setVisible(false); + boolean var35 = var31.isDoubleBuffered(); + java.awt.dnd.DropTarget var36 = var31.getDropTarget(); + var31.show(false); + java.awt.Rectangle var39 = var31.getVisibleRect(); + var24.repaint(var39); + java.awt.Component.BaselineResizeBehavior var41 = var24.getBaselineResizeBehavior(); + SpaceWar.SpacePanel var42 = new SpaceWar.SpacePanel(); + float var43 = var42.getAlignmentX(); + var42.setVisible(false); + var42.nextFocus(); + var42.repaint(1L); + SpaceWar.SpacePanel var49 = new SpaceWar.SpacePanel(); + float var50 = var49.getAlignmentX(); + var49.setVisible(false); + boolean var53 = var49.isDoubleBuffered(); + var49.list(); + SpaceWar.SpacePanel var55 = new SpaceWar.SpacePanel(); + float var56 = var55.getAlignmentX(); + var55.setVisible(false); + boolean var59 = var55.isDoubleBuffered(); + java.awt.dnd.DropTarget var60 = var55.getDropTarget(); + var55.show(false); + java.awt.Rectangle var63 = var55.getVisibleRect(); + java.awt.Rectangle var64 = var49.getBounds(var63); + var42.setBounds(var64); + var24.paintImmediately(var64); + var13.setBounds(var64); + SpaceWar.SpacePanel var68 = new SpaceWar.SpacePanel(); + float var69 = var68.getAlignmentX(); + var68.setVisible(false); + SpaceWar.SpacePanel var72 = new SpaceWar.SpacePanel(); + java.awt.Color var73 = var72.getBackground(); + var68.setForeground(var73); + SpaceWar.SpacePanel var75 = new SpaceWar.SpacePanel(); + float var76 = var75.getAlignmentX(); + var75.setVisible(false); + boolean var79 = var75.isDoubleBuffered(); + java.awt.dnd.DropTarget var80 = var75.getDropTarget(); + var75.show(false); + java.awt.Rectangle var83 = var75.getVisibleRect(); + var68.repaint(var83); + java.awt.Component.BaselineResizeBehavior var85 = var68.getBaselineResizeBehavior(); + var0.add((java.awt.Component)var13, (java.lang.Object)var85); + float var87 = var0.getAlignmentX(); + SpaceWar.SpacePanel var88 = new SpaceWar.SpacePanel(); + float var89 = var88.getAlignmentX(); + var88.setVisible(false); + boolean var92 = var88.isDoubleBuffered(); + java.awt.Graphics var93 = var88.getGraphics(); + boolean var94 = var88.isMinimumSizeSet(); + java.awt.Cursor var95 = var88.getCursor(); + var0.setCursor(var95); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var4); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var21); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var23); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var29); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var32 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var35 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var36); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var39); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var41); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var43 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var50 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var53 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var56 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var59 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var60); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var63); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var64); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var69 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var73); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var76 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var79 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var80); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var83); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var85); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var87 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var89 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var92 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var93); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var94 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var95); + + } + + public void test103() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test103"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var6 = var0.getUI(); + java.awt.im.InputMethodRequests var7 = var0.getInputMethodRequests(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + var8.nextFocus(); + var8.updateUI(); + var8.enableInputMethods(true); + var8.setSize((-1), 1); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + var19.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var0.add((java.awt.Component)var8, (java.lang.Object)"SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + var8.doLayout(); + java.awt.GraphicsConfiguration var26 = var8.getGraphicsConfiguration(); + boolean var27 = var8.isMinimumSizeSet(); + boolean var28 = var8.isDisplayable(); + java.awt.Rectangle var29 = var8.bounds(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var28 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var29); + + } + + public void test104() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test104"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var1 = new SpaceWar.SpacePanel(); + java.awt.Color var2 = var1.getBackground(); + SpaceWar.SpacePanel var3 = new SpaceWar.SpacePanel(); + float var4 = var3.getAlignmentX(); + var3.setVisible(false); + var3.nextFocus(); + var3.updateUI(); + var3.enableInputMethods(true); + var0.add((java.awt.Component)var1, (java.lang.Object)true); + java.awt.Image var14 = var1.createImage(1, (-1)); + java.awt.event.MouseListener[] var15 = var1.getMouseListeners(); + java.awt.Color var16 = var1.getBackground(); + var1.grabFocus(); + javax.swing.JToolTip var18 = var1.createToolTip(); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + float var20 = var19.getAlignmentX(); + var19.setVisible(false); + boolean var23 = var19.isDoubleBuffered(); + var19.enable(false); + boolean var26 = var19.getFocusTraversalKeysEnabled(); + var19.setToolTipText("PanelUI"); + SpaceWar.SpacePanel var29 = new SpaceWar.SpacePanel(); + float var30 = var29.getAlignmentX(); + var29.setVisible(false); + boolean var33 = var29.isDoubleBuffered(); + java.awt.dnd.DropTarget var34 = var29.getDropTarget(); + var29.show(false); + boolean var37 = var29.isPaintingForPrint(); + SpaceWar.SpacePanel var38 = new SpaceWar.SpacePanel(); + float var39 = var38.getAlignmentX(); + var38.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var44 = var38.getMouseListeners(); + int var45 = var38.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var46 = var38.getInputMethodRequests(); + var29.addKeyListener((java.awt.event.KeyListener)var38); + SpaceWar.SpacePanel var48 = new SpaceWar.SpacePanel(); + float var49 = var48.getAlignmentX(); + var48.setVisible(false); + boolean var52 = var48.isDoubleBuffered(); + var48.list(); + float var54 = var48.getAlignmentY(); + boolean var55 = var38.isFocusCycleRoot((java.awt.Container)var48); + var48.firePropertyChange("", 1L, 1L); + var48.setVerifyInputWhenFocusTarget(true); + SpaceWar.SpacePanel var62 = new SpaceWar.SpacePanel(); + var62.setName(""); + java.awt.Dimension var65 = var62.minimumSize(); + boolean var66 = var62.isDoubleBuffered(); + SpaceWar.SpacePanel var67 = new SpaceWar.SpacePanel(); + float var68 = var67.getAlignmentX(); + SpaceWar.SpacePanel var69 = new SpaceWar.SpacePanel(); + float var70 = var69.getAlignmentX(); + var69.setVisible(false); + java.awt.Dimension var73 = var69.getPreferredSize(); + boolean var74 = var69.getVerifyInputWhenFocusTarget(); + java.awt.Component var77 = var69.findComponentAt(10, 1); + var67.addKeyListener((java.awt.event.KeyListener)var69); + var69.repaint(100, (-1), (-1), 1); + SpaceWar.SpacePanel var84 = new SpaceWar.SpacePanel(); + java.awt.Color var85 = var84.getBackground(); + var84.repaint(); + java.awt.im.InputMethodRequests var87 = var84.getInputMethodRequests(); + java.awt.GraphicsConfiguration var88 = var84.getGraphicsConfiguration(); + var69.remove((java.awt.Component)var84); + java.awt.Font var90 = var84.getFont(); + java.awt.FontMetrics var91 = var62.getFontMetrics(var90); + java.awt.FontMetrics var92 = var48.getFontMetrics(var90); + var19.setFont(var90); + java.awt.FontMetrics var94 = var18.getFontMetrics(var90); + javax.swing.InputVerifier var95 = var18.getInputVerifier(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var2); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var30 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var33 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var34); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var39 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var44); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var45 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var46); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var49 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var52 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var54 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var55 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var65); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var66 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var68 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var70 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var73); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var74 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var77); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var85); + + // Regression assertion (captures the current behavior of the code) + assertNull(var87); + + // Regression assertion (captures the current behavior of the code) + assertNull(var88); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var90); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var91); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var92); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var94); + + // Regression assertion (captures the current behavior of the code) + assertNull(var95); + + } + + public void test105() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test105"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.reshape((-1), 1, (-1), 10); + var0.disable(); + boolean var11 = var0.isFocusable(); + int var12 = var0.getHeight(); + javax.swing.InputVerifier var13 = var0.getInputVerifier(); + var0.doLayout(); + var0.transferFocus(); + java.beans.PropertyChangeListener[] var16 = var0.getPropertyChangeListeners(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == 10); + + // Regression assertion (captures the current behavior of the code) + assertNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + } + + public void test106() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test106"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + var0.setRequestFocusEnabled(false); + var0.reshape(100, 0, 100, 0); + var0.requestFocus(); + var0.firePropertyChange("hi!", '4', ' '); + java.awt.Point var15 = var0.getLocation(); + java.awt.event.MouseWheelListener[] var16 = var0.getMouseWheelListeners(); + java.awt.Component var17 = var0.getNextFocusableComponent(); + boolean var18 = var0.requestDefaultFocus(); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var20 = new SpaceWar.SpacePanel(); + java.awt.Color var21 = var20.getBackground(); + SpaceWar.SpacePanel var22 = new SpaceWar.SpacePanel(); + float var23 = var22.getAlignmentX(); + var22.setVisible(false); + var22.nextFocus(); + var22.updateUI(); + var22.enableInputMethods(true); + var19.add((java.awt.Component)var20, (java.lang.Object)true); + java.awt.Dimension var31 = var20.getPreferredSize(); + java.awt.Component[] var32 = var20.getComponents(); + var20.repaint(25, 25, 100, 1); + javax.swing.KeyStroke[] var38 = var20.getRegisteredKeyStrokes(); + var20.validate(); + boolean var40 = var0.isAncestorOf((java.awt.Component)var20); + SpaceWar.SpacePanel var41 = new SpaceWar.SpacePanel(); + float var42 = var41.getAlignmentX(); + var41.setVisible(false); + var41.setInheritsPopupMenu(false); + boolean var47 = var41.isDoubleBuffered(); + boolean var48 = var41.isMinimumSizeSet(); + SpaceWar.SpacePanel var49 = new SpaceWar.SpacePanel(); + float var50 = var49.getAlignmentX(); + var49.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var55 = new SpaceWar.SpacePanel(); + float var56 = var55.getAlignmentX(); + var55.setVisible(false); + java.awt.Dimension var59 = var55.getPreferredSize(); + var49.setMaximumSize(var59); + boolean var61 = var49.getVerifyInputWhenFocusTarget(); + javax.accessibility.AccessibleContext var62 = var49.getAccessibleContext(); + boolean var63 = var49.isDoubleBuffered(); + java.awt.Rectangle var64 = var49.getVisibleRect(); + var41.setBounds(var64); + var0.remove((java.awt.Component)var41); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var21); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var31); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var32); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var38); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var40 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var42 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var47 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var48 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var50 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var56 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var59); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var61 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var62); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var63 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var64); + + } + + public void test107() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test107"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var6 = var0.getUI(); + java.awt.im.InputMethodRequests var7 = var0.getInputMethodRequests(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + var8.nextFocus(); + var8.updateUI(); + var8.enableInputMethods(true); + var8.setSize((-1), 1); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + var19.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var0.add((java.awt.Component)var8, (java.lang.Object)"SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + SpaceWar.SpacePanel var25 = new SpaceWar.SpacePanel(); + float var26 = var25.getAlignmentX(); + var25.setVisible(false); + java.awt.Dimension var29 = var25.getPreferredSize(); + java.awt.Toolkit var30 = var25.getToolkit(); + java.awt.Toolkit var31 = var25.getToolkit(); + java.awt.Component var32 = var8.add((java.awt.Component)var25); + int var33 = var8.getY(); + int var36 = var8.getBaseline(25, 10); + java.awt.im.InputMethodRequests var37 = var8.getInputMethodRequests(); + java.awt.Point var39 = var8.getMousePosition(true); + SpaceWar.SpacePanel var40 = new SpaceWar.SpacePanel(); + float var41 = var40.getAlignmentX(); + var40.setVisible(false); + var40.nextFocus(); + var40.updateUI(); + java.util.Locale var46 = var40.getLocale(); + var40.paintImmediately(25, 100, 3, 0); + SpaceWar.SpacePanel var52 = new SpaceWar.SpacePanel(); + float var53 = var52.getAlignmentX(); + var52.setVisible(false); + var52.setInheritsPopupMenu(false); + var52.setFocusTraversalPolicyProvider(true); + boolean var62 = var52.inside(25, 3); + SpaceWar.SpacePanel var63 = new SpaceWar.SpacePanel(); + float var64 = var63.getAlignmentX(); + var63.setVisible(false); + boolean var67 = var63.isDoubleBuffered(); + java.awt.dnd.DropTarget var68 = var63.getDropTarget(); + var63.show(false); + boolean var71 = var63.isPaintingForPrint(); + SpaceWar.SpacePanel var72 = new SpaceWar.SpacePanel(); + float var73 = var72.getAlignmentX(); + SpaceWar.SpacePanel var74 = new SpaceWar.SpacePanel(); + float var75 = var74.getAlignmentX(); + var74.setVisible(false); + java.awt.Dimension var78 = var74.getPreferredSize(); + boolean var79 = var74.getVerifyInputWhenFocusTarget(); + java.awt.Component var82 = var74.findComponentAt(10, 1); + var72.addKeyListener((java.awt.event.KeyListener)var74); + java.awt.Dimension var84 = var74.getMinimumSize(); + var63.setMinimumSize(var84); + var52.setPreferredSize(var84); + var40.setMinimumSize(var84); + java.awt.Dimension var88 = var8.getSize(var84); + java.awt.im.InputContext var89 = var8.getInputContext(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var29); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var30); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var31); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var32); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var33 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var36 == (-1)); + + // Regression assertion (captures the current behavior of the code) + assertNull(var37); + + // Regression assertion (captures the current behavior of the code) + assertNull(var39); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var41 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var46); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var53 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var62 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var64 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var67 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var68); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var71 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var73 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var75 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var78); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var79 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var82); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var84); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var88); + + // Regression assertion (captures the current behavior of the code) + assertNull(var89); + + } + + public void test108() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test108"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + var0.setName(""); + var0.enable(true); + var0.enable(); + java.awt.Point var6 = var0.location(); + var0.repaint(0, 3, (-1), 1); + java.awt.Component var14 = var0.findComponentAt(0, 25); + java.awt.Dimension var15 = var0.getPreferredSize(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + } + + public void test109() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test109"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var6 = var0.getUI(); + java.awt.im.InputMethodRequests var7 = var0.getInputMethodRequests(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + var8.nextFocus(); + var8.updateUI(); + var8.enableInputMethods(true); + var8.setSize((-1), 1); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + var19.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var0.add((java.awt.Component)var8, (java.lang.Object)"SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + boolean var25 = var0.isCursorSet(); + var0.enableInputMethods(true); + var0.firePropertyChange("PanelUI", (short)1, (short)10); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == false); + + } + + public void test110() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test110"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.setInheritsPopupMenu(false); + var0.setFocusTraversalPolicyProvider(true); + boolean var10 = var0.inside(25, 3); + SpaceWar.SpacePanel var11 = new SpaceWar.SpacePanel(); + float var12 = var11.getAlignmentX(); + var11.setVisible(false); + boolean var15 = var11.isDoubleBuffered(); + java.awt.dnd.DropTarget var16 = var11.getDropTarget(); + var11.show(false); + boolean var19 = var11.isPaintingForPrint(); + SpaceWar.SpacePanel var20 = new SpaceWar.SpacePanel(); + float var21 = var20.getAlignmentX(); + SpaceWar.SpacePanel var22 = new SpaceWar.SpacePanel(); + float var23 = var22.getAlignmentX(); + var22.setVisible(false); + java.awt.Dimension var26 = var22.getPreferredSize(); + boolean var27 = var22.getVerifyInputWhenFocusTarget(); + java.awt.Component var30 = var22.findComponentAt(10, 1); + var20.addKeyListener((java.awt.event.KeyListener)var22); + java.awt.Dimension var32 = var22.getMinimumSize(); + var11.setMinimumSize(var32); + var0.setPreferredSize(var32); + boolean var36 = var0.requestFocus(true); + java.awt.Dimension var37 = var0.getMinimumSize(); + java.beans.PropertyChangeListener[] var39 = var0.getPropertyChangeListeners("SpaceWar.SpacePanel[,0,0,0x0,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + javax.swing.ActionMap var40 = var0.getActionMap(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var30); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var32); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var36 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var37); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var39); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var40); + + } + + public void test111() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test111"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.reshape((-1), 1, (-1), 10); + var0.disable(); + java.awt.LayoutManager var11 = var0.getLayout(); + java.awt.Container var12 = var0.getParent(); + boolean var13 = var0.isOptimizedDrawingEnabled(); + var0.enableInputMethods(true); + var0.move((-1), 400); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == true); + + } + + public void test112() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test112"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var1 = new SpaceWar.SpacePanel(); + java.awt.Color var2 = var1.getBackground(); + SpaceWar.SpacePanel var3 = new SpaceWar.SpacePanel(); + float var4 = var3.getAlignmentX(); + var3.setVisible(false); + var3.nextFocus(); + var3.updateUI(); + var3.enableInputMethods(true); + var0.add((java.awt.Component)var1, (java.lang.Object)true); + java.awt.Dimension var12 = var1.getPreferredSize(); + var1.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", (-1.0f), 100.0f); + var1.removeNotify(); + var1.resize(1, 0); + // The following exception was thrown during execution. + // This behavior will recorded for regression testing. + try { + java.awt.Point var21 = var1.getLocationOnScreen(); + fail("Expected exception of type java.awt.IllegalComponentStateException"); + } catch (java.awt.IllegalComponentStateException e) { + // Expected exception. + } + + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var2); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var12); + + } + + public void test113() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test113"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + var0.show(false); + java.awt.Rectangle var8 = var0.getVisibleRect(); + java.awt.Toolkit var9 = var0.getToolkit(); + java.beans.PropertyChangeListener[] var10 = var0.getPropertyChangeListeners(); + var0.firePropertyChange("SpaceWar.SpacePanel[,-1,1,-1x10,invalid,hidden,disabled,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", (byte)10, (byte)100); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var9); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var10); + + } + + public void test114() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test114"); + + + SpaceWar.Enemy var2 = new SpaceWar.Enemy(0, 10); + boolean var3 = var2.isDead(); + double var4 = var2.getX(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 204.24278631768195d); + + } + + public void test115() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test115"); + + + SpaceWar.Player var0 = new SpaceWar.Player(); + int var1 = var0.getR(); + var0.setUp(false); + int var4 = var0.getLives(); + var0.setScore(0); + boolean var7 = var0.isRecovering(); + int var8 = var0.getLives(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 25); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 3); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 3); + + } + + public void test116() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test116"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + var0.list(); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + float var7 = var6.getAlignmentX(); + var6.setVisible(false); + boolean var10 = var6.isDoubleBuffered(); + java.awt.dnd.DropTarget var11 = var6.getDropTarget(); + var6.show(false); + java.awt.Rectangle var14 = var6.getVisibleRect(); + java.awt.image.BufferedImage var16 = var6.loadImg("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + boolean var17 = var0.isAncestorOf((java.awt.Component)var6); + javax.swing.InputVerifier var18 = var6.getInputVerifier(); + java.awt.ComponentOrientation var19 = var6.getComponentOrientation(); + var6.setDebugGraphicsOptions(1); + boolean var22 = var6.isFocusTraversalPolicySet(); + java.util.Set var24 = var6.getFocusTraversalKeys(2); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var22 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var24); + + } + + public void test117() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test117"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var6 = var0.getUI(); + java.awt.im.InputMethodRequests var7 = var0.getInputMethodRequests(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + var8.nextFocus(); + var8.updateUI(); + var8.enableInputMethods(true); + var8.setSize((-1), 1); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + var19.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var0.add((java.awt.Component)var8, (java.lang.Object)"SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + var8.setAutoscrolls(true); + java.awt.Image var29 = var8.createImage(400, 400); + var8.enableInputMethods(true); + javax.swing.plaf.PanelUI var32 = var8.getUI(); + SpaceWar.SpacePanel var33 = new SpaceWar.SpacePanel(); + float var34 = var33.getAlignmentX(); + var33.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var39 = var33.getMouseListeners(); + int var40 = var33.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var41 = var33.getInputMethodRequests(); + var33.removeNotify(); + var33.enable(); + SpaceWar.SpacePanel var44 = new SpaceWar.SpacePanel(); + java.awt.Color var45 = var44.getBackground(); + boolean var48 = var44.inside(0, (-1)); + var44.transferFocusUpCycle(); + java.lang.String var50 = var44.getName(); + boolean var51 = var33.isFocusCycleRoot((java.awt.Container)var44); + var8.addKeyListener((java.awt.event.KeyListener)var33); + int var53 = var33.getHeight(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNull(var29); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var32); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var34 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var39); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var40 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var41); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var45); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var48 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var50); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var51 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var53 == 0); + + } + + public void test118() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test118"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var6 = var0.getMouseListeners(); + int var7 = var0.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var8 = var0.getInputMethodRequests(); + var0.removeNotify(); + var0.enable(); + java.lang.Object var11 = var0.getTreeLock(); + var0.setAlignmentY(0.0f); + var0.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=1.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", '#', ' '); + var0.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=8,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", 1L, (-1L)); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + } + + public void test119() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test119"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.reshape((-1), 1, (-1), 10); + var0.disable(); + java.awt.LayoutManager var11 = var0.getLayout(); + java.awt.Container var12 = var0.getParent(); + java.lang.String var13 = var0.getUIClassID(); + float var14 = var0.getAlignmentX(); + var0.enable(true); + boolean var17 = var0.isPaintingTile(); + int var18 = var0.getY(); + // The following exception was thrown during execution. + // This behavior will recorded for regression testing. + try { + java.awt.Point var19 = var0.getLocationOnScreen(); + fail("Expected exception of type java.awt.IllegalComponentStateException"); + } catch (java.awt.IllegalComponentStateException e) { + // Expected exception. + } + + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var13 + "' != '" + "PanelUI"+ "'", var13.equals("PanelUI")); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == 1); + + } + + public void test120() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test120"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + var0.setRequestFocusEnabled(false); + var0.reshape(100, 0, 100, 0); + var0.requestFocus(); + var0.firePropertyChange("hi!", '4', ' '); + java.awt.Point var15 = var0.getLocation(); + java.awt.Dimension var16 = var0.size(); + java.awt.Image var19 = var0.createImage((-1), (-1)); + java.awt.image.VolatileImage var22 = var0.createVolatileImage(3, 2); + SpaceWar.SpacePanel var23 = new SpaceWar.SpacePanel(); + float var24 = var23.getAlignmentX(); + var23.setVisible(false); + boolean var27 = var23.isDoubleBuffered(); + java.awt.dnd.DropTarget var28 = var23.getDropTarget(); + var23.show(false); + java.awt.Rectangle var31 = var23.getVisibleRect(); + boolean var32 = var23.isFocusTraversalPolicySet(); + SpaceWar.SpacePanel var33 = new SpaceWar.SpacePanel(); + float var34 = var33.getAlignmentX(); + var33.setVisible(false); + boolean var37 = var33.isDoubleBuffered(); + var33.enable(false); + boolean var40 = var33.getFocusTraversalKeysEnabled(); + SpaceWar.SpacePanel var41 = new SpaceWar.SpacePanel(); + float var42 = var41.getAlignmentX(); + var41.setVisible(false); + java.awt.Dimension var45 = var41.getPreferredSize(); + java.awt.Toolkit var46 = var41.getToolkit(); + boolean var47 = var41.isFocusable(); + javax.swing.KeyStroke[] var48 = var41.getRegisteredKeyStrokes(); + SpaceWar.SpacePanel var49 = new SpaceWar.SpacePanel(); + float var50 = var49.getAlignmentX(); + SpaceWar.SpacePanel var51 = new SpaceWar.SpacePanel(); + float var52 = var51.getAlignmentX(); + var51.setVisible(false); + java.awt.Dimension var55 = var51.getPreferredSize(); + boolean var56 = var51.getVerifyInputWhenFocusTarget(); + java.awt.Component var59 = var51.findComponentAt(10, 1); + var49.addKeyListener((java.awt.event.KeyListener)var51); + var51.repaint(100, (-1), (-1), 1); + boolean var66 = var41.isAncestorOf((java.awt.Component)var51); + var33.addKeyListener((java.awt.event.KeyListener)var51); + java.util.Locale var68 = var51.getLocale(); + var23.setLocale(var68); + javax.swing.JComponent.setDefaultLocale(var68); + var0.setLocale(var68); + SpaceWar.SpacePanel var72 = new SpaceWar.SpacePanel(); + float var73 = var72.getAlignmentX(); + var72.setVisible(false); + boolean var76 = var72.isDoubleBuffered(); + java.awt.dnd.DropTarget var77 = var72.getDropTarget(); + var72.show(false); + boolean var80 = var72.isPaintingForPrint(); + SpaceWar.SpacePanel var81 = new SpaceWar.SpacePanel(); + float var82 = var81.getAlignmentX(); + var81.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var87 = var81.getMouseListeners(); + int var88 = var81.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var89 = var81.getInputMethodRequests(); + var72.addKeyListener((java.awt.event.KeyListener)var81); + boolean var91 = var81.isShowing(); + java.awt.ComponentOrientation var92 = var81.getComponentOrientation(); + var0.applyComponentOrientation(var92); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var24 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var28); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var31); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var32 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var34 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var40 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var42 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var45); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var46); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var47 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var48); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var50 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var52 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var55); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var56 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var59); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var66 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var68); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var73 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var76 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var77); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var80 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var82 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var87); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var88 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var89); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var91 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var92); + + } + + public void test121() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test121"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + boolean var2 = var0.hasFocus(); + boolean var3 = var0.isPreferredSizeSet(); + SpaceWar.SpacePanel var4 = new SpaceWar.SpacePanel(); + java.awt.Color var5 = var4.getBackground(); + var4.repaint(); + var4.setRequestFocusEnabled(false); + int var9 = var0.getComponentZOrder((java.awt.Component)var4); + SpaceWar.SpacePanel var10 = new SpaceWar.SpacePanel(); + float var11 = var10.getAlignmentX(); + var10.setVisible(false); + SpaceWar.SpacePanel var14 = new SpaceWar.SpacePanel(); + java.awt.Color var15 = var14.getBackground(); + var10.setForeground(var15); + SpaceWar.SpacePanel var17 = new SpaceWar.SpacePanel(); + float var18 = var17.getAlignmentX(); + var17.setVisible(false); + boolean var21 = var17.isDoubleBuffered(); + java.awt.dnd.DropTarget var22 = var17.getDropTarget(); + var17.show(false); + java.awt.Rectangle var25 = var17.getVisibleRect(); + var10.repaint(var25); + java.awt.FocusTraversalPolicy var27 = var10.getFocusTraversalPolicy(); + SpaceWar.SpacePanel var28 = new SpaceWar.SpacePanel(); + float var29 = var28.getAlignmentX(); + var28.firePropertyChange("", (-1), 1); + boolean var34 = var28.isFocusOwner(); + SpaceWar.SpacePanel var36 = new SpaceWar.SpacePanel(); + float var37 = var36.getAlignmentX(); + var36.setVisible(false); + java.awt.Dimension var40 = var36.getPreferredSize(); + java.awt.Toolkit var41 = var36.getToolkit(); + SpaceWar.SpacePanel var42 = new SpaceWar.SpacePanel(); + var42.setName(""); + int var45 = var42.getX(); + SpaceWar.SpacePanel var46 = new SpaceWar.SpacePanel(); + float var47 = var46.getAlignmentX(); + var46.setVisible(false); + var46.nextFocus(); + SpaceWar.SpacePanel var51 = new SpaceWar.SpacePanel(); + float var52 = var51.getAlignmentX(); + var51.setVisible(false); + SpaceWar.SpacePanel var55 = new SpaceWar.SpacePanel(); + java.awt.Color var56 = var55.getBackground(); + var51.setForeground(var56); + var46.setBackground(var56); + var42.setBackground(var56); + var36.setForeground(var56); + var28.putClientProperty((java.lang.Object)(byte)100, (java.lang.Object)var56); + var10.setBackground(var56); + SpaceWar.SpacePanel var63 = new SpaceWar.SpacePanel(); + float var64 = var63.getAlignmentX(); + var63.setVisible(false); + boolean var67 = var63.isDoubleBuffered(); + java.awt.dnd.DropTarget var68 = var63.getDropTarget(); + var63.show(false); + boolean var71 = var63.isPaintingForPrint(); + SpaceWar.SpacePanel var72 = new SpaceWar.SpacePanel(); + float var73 = var72.getAlignmentX(); + SpaceWar.SpacePanel var74 = new SpaceWar.SpacePanel(); + float var75 = var74.getAlignmentX(); + var74.setVisible(false); + java.awt.Dimension var78 = var74.getPreferredSize(); + boolean var79 = var74.getVerifyInputWhenFocusTarget(); + java.awt.Component var82 = var74.findComponentAt(10, 1); + var72.addKeyListener((java.awt.event.KeyListener)var74); + java.awt.Dimension var84 = var74.getMinimumSize(); + var63.setMinimumSize(var84); + java.awt.Dimension var86 = var10.getSize(var84); + boolean var87 = var10.isValid(); + int var88 = var10.getWidth(); + java.awt.event.HierarchyListener[] var89 = var10.getHierarchyListeners(); + javax.swing.InputMap var90 = var10.getInputMap(); + var0.remove((java.awt.Component)var10); + java.awt.Point var92 = var0.getLocation(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var2 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == (-1)); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var25); + + // Regression assertion (captures the current behavior of the code) + assertNull(var27); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var29 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var34 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var40); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var41); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var45 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var47 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var52 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var56); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var64 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var67 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var68); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var71 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var73 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var75 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var78); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var79 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var82); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var84); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var86); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var87 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var88 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var89); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var90); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var92); + + } + + public void test122() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test122"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + var0.list(); + float var6 = var0.getAlignmentY(); + java.awt.event.ComponentListener[] var7 = var0.getComponentListeners(); + java.awt.Component var8 = var0.getNextFocusableComponent(); + boolean var9 = var0.isManagingFocus(); + javax.swing.border.Border var10 = var0.getBorder(); + SpaceWar.SpacePanel var11 = new SpaceWar.SpacePanel(); + float var12 = var11.getAlignmentX(); + var11.setVisible(false); + boolean var15 = var11.isDoubleBuffered(); + java.awt.dnd.DropTarget var16 = var11.getDropTarget(); + var11.show(false); + boolean var19 = var11.isPaintingForPrint(); + SpaceWar.SpacePanel var20 = new SpaceWar.SpacePanel(); + float var21 = var20.getAlignmentX(); + var20.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var26 = var20.getMouseListeners(); + int var27 = var20.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var28 = var20.getInputMethodRequests(); + var11.addKeyListener((java.awt.event.KeyListener)var20); + SpaceWar.SpacePanel var30 = new SpaceWar.SpacePanel(); + float var31 = var30.getAlignmentX(); + var30.setVisible(false); + boolean var34 = var30.isDoubleBuffered(); + var30.list(); + float var36 = var30.getAlignmentY(); + boolean var37 = var20.isFocusCycleRoot((java.awt.Container)var30); + var30.firePropertyChange("", 1L, 1L); + var30.setVerifyInputWhenFocusTarget(true); + var30.resize(25, 400); + java.awt.event.ComponentListener[] var47 = var30.getComponentListeners(); + boolean var48 = var30.isBackgroundSet(); + boolean var49 = var30.isFontSet(); + SpaceWar.SpacePanel var50 = new SpaceWar.SpacePanel(); + var50.setName(""); + var50.enable(true); + var50.enable(); + java.awt.Point var56 = var50.location(); + var50.repaint(0, 3, (-1), 1); + var50.setBounds(25, 100, 1, 0); + var0.putClientProperty((java.lang.Object)var49, (java.lang.Object)1); + javax.swing.event.AncestorListener[] var68 = var0.getAncestorListeners(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var28); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var31 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var34 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var36 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var47); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var48 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var49 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var56); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var68); + + } + + public void test123() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test123"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + java.awt.im.InputMethodRequests var3 = var0.getInputMethodRequests(); + int var4 = var0.countComponents(); + java.awt.event.ComponentListener[] var5 = var0.getComponentListeners(); + var0.removeNotify(); + javax.swing.InputMap var7 = var0.getInputMap(); + int var8 = var0.getDebugGraphicsOptions(); + java.awt.Graphics var9 = var0.getGraphics(); + var0.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", (short)(-1), (short)100); + java.awt.Insets var14 = var0.getInsets(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var9); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + } + + public void test124() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test124"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.reshape((-1), 1, (-1), 10); + var0.disable(); + java.awt.LayoutManager var11 = var0.getLayout(); + var0.setVisible(false); + SpaceWar.SpacePanel var14 = new SpaceWar.SpacePanel(); + float var15 = var14.getAlignmentX(); + var14.setVisible(false); + var14.setInheritsPopupMenu(false); + boolean var20 = var14.isDoubleBuffered(); + boolean var21 = var14.isMinimumSizeSet(); + SpaceWar.SpacePanel var22 = new SpaceWar.SpacePanel(); + float var23 = var22.getAlignmentX(); + var22.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var28 = new SpaceWar.SpacePanel(); + float var29 = var28.getAlignmentX(); + var28.setVisible(false); + java.awt.Dimension var32 = var28.getPreferredSize(); + var22.setMaximumSize(var32); + boolean var34 = var22.getVerifyInputWhenFocusTarget(); + javax.accessibility.AccessibleContext var35 = var22.getAccessibleContext(); + boolean var36 = var22.isDoubleBuffered(); + java.awt.Rectangle var37 = var22.getVisibleRect(); + var14.setBounds(var37); + var0.computeVisibleRect(var37); + javax.swing.ActionMap var40 = var0.getActionMap(); + boolean var41 = var0.isPaintingForPrint(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var29 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var32); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var34 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var35); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var36 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var37); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var40); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var41 == false); + + } + + public void test125() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test125"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + var0.setRequestFocusEnabled(false); + var0.reshape(100, 0, 100, 0); + var0.requestFocus(); + var0.firePropertyChange("hi!", '4', ' '); + SpaceWar.Enemy var17 = new SpaceWar.Enemy(0, 100); + int var18 = var17.getR(); + var17.explode(); + var0.putClientProperty((java.lang.Object)var17, (java.lang.Object)(short)10); + var17.hit(); + int var23 = var17.getR(); + int var24 = var17.getR(); + int var25 = var17.getRank(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var24 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == 100); + + } + + public void test126() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test126"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.setInheritsPopupMenu(false); + var0.setFocusTraversalPolicyProvider(true); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + boolean var12 = var8.isDoubleBuffered(); + var8.list(); + SpaceWar.SpacePanel var14 = new SpaceWar.SpacePanel(); + float var15 = var14.getAlignmentX(); + var14.setVisible(false); + boolean var18 = var14.isDoubleBuffered(); + java.awt.dnd.DropTarget var19 = var14.getDropTarget(); + var14.show(false); + java.awt.Rectangle var22 = var14.getVisibleRect(); + java.awt.Rectangle var23 = var8.getBounds(var22); + javax.swing.JToolTip var24 = var8.createToolTip(); + var0.removeKeyListener((java.awt.event.KeyListener)var8); + var0.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", 0.5f, 1.0f); + var0.setRequestFocusEnabled(true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var23); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var24); + + } + + public void test127() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test127"); + + + SpaceWar.Player var0 = new SpaceWar.Player(); + int var1 = var0.getPower(); + int var2 = var0.getPowerLevel(); + var0.setLeft(false); + int var5 = var0.getRequiredPower(); + int var6 = var0.getScore(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var2 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == 1); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == 0); + + } + + public void test128() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test128"); + + + SpaceWar.Player var0 = new SpaceWar.Player(); + int var1 = var0.getPower(); + var0.setLeft(true); + var0.increasePower(0); + boolean var6 = var0.isDead(); + var0.setFiring(true); + var0.setScore(499); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == false); + + } + + public void test129() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test129"); + + + SpaceWar.Bullet var3 = new SpaceWar.Bullet((-20.05877926032409d), 500, (-1)); + double var4 = var3.getY(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == (-1.0d)); + + } + + public void test130() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test130"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + SpaceWar.SpacePanel var4 = new SpaceWar.SpacePanel(); + java.awt.Color var5 = var4.getBackground(); + var0.setForeground(var5); + SpaceWar.SpacePanel var7 = new SpaceWar.SpacePanel(); + float var8 = var7.getAlignmentX(); + var7.setVisible(false); + boolean var11 = var7.isDoubleBuffered(); + java.awt.dnd.DropTarget var12 = var7.getDropTarget(); + var7.show(false); + java.awt.Rectangle var15 = var7.getVisibleRect(); + var0.repaint(var15); + java.awt.FocusTraversalPolicy var17 = var0.getFocusTraversalPolicy(); + var0.resetKeyboardActions(); + java.util.Locale var19 = var0.getLocale(); + var0.nextFocus(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var19); + + } + + public void test131() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test131"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + java.awt.event.MouseMotionListener[] var6 = var0.getMouseMotionListeners(); + java.awt.event.ComponentListener[] var7 = var0.getComponentListeners(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + var8.nextFocus(); + var8.repaint(1L); + SpaceWar.SpacePanel var15 = new SpaceWar.SpacePanel(); + float var16 = var15.getAlignmentX(); + var15.setVisible(false); + boolean var19 = var15.isDoubleBuffered(); + var15.list(); + SpaceWar.SpacePanel var21 = new SpaceWar.SpacePanel(); + float var22 = var21.getAlignmentX(); + var21.setVisible(false); + boolean var25 = var21.isDoubleBuffered(); + java.awt.dnd.DropTarget var26 = var21.getDropTarget(); + var21.show(false); + java.awt.Rectangle var29 = var21.getVisibleRect(); + java.awt.Rectangle var30 = var15.getBounds(var29); + var8.setBounds(var30); + var0.paintImmediately(var30); + java.awt.Point var33 = var0.getMousePosition(); + java.awt.image.BufferedImage var35 = var0.loadImg("SpaceWar.SpacePanel[,-1,1,-1x10,invalid,hidden,disabled,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + var0.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", 3, 100); + var0.setDebugGraphicsOptions(24); + javax.swing.InputVerifier var42 = var0.getInputVerifier(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var22 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var29); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var30); + + // Regression assertion (captures the current behavior of the code) + assertNull(var33); + + // Regression assertion (captures the current behavior of the code) + assertNull(var35); + + // Regression assertion (captures the current behavior of the code) + assertNull(var42); + + } + + public void test132() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test132"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var6 = var0.getMouseListeners(); + int var7 = var0.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var8 = var0.getInputMethodRequests(); + var0.removeNotify(); + var0.enable(); + SpaceWar.SpacePanel var11 = new SpaceWar.SpacePanel(); + java.awt.Color var12 = var11.getBackground(); + boolean var15 = var11.inside(0, (-1)); + var11.transferFocusUpCycle(); + java.lang.String var17 = var11.getName(); + boolean var18 = var0.isFocusCycleRoot((java.awt.Container)var11); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + java.awt.Color var20 = var19.getBackground(); + var19.repaint(); + var19.setRequestFocusEnabled(false); + var19.reshape(100, 0, 100, 0); + var19.requestFocus(); + var19.firePropertyChange("hi!", '4', ' '); + java.awt.Point var34 = var19.getLocation(); + java.awt.Component var35 = var11.getComponentAt(var34); + var11.setRequestFocusEnabled(true); + SpaceWar.SpacePanel var38 = new SpaceWar.SpacePanel(); + float var39 = var38.getAlignmentX(); + boolean var40 = var38.hasFocus(); + SpaceWar.SpacePanel var41 = new SpaceWar.SpacePanel(); + float var42 = var41.getAlignmentX(); + var41.setVisible(false); + var41.nextFocus(); + var41.reshape((-1), 1, (-1), 10); + var41.disable(); + java.awt.LayoutManager var52 = var41.getLayout(); + var41.setVisible(false); + var38.remove((java.awt.Component)var41); + boolean var56 = var41.hasFocus(); + java.lang.String var57 = var41.toString(); + var11.addKeyListener((java.awt.event.KeyListener)var41); + var11.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=8,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", ' ', 'a'); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var34); + + // Regression assertion (captures the current behavior of the code) + assertNull(var35); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var39 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var40 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var42 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var52); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var56 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var57 + "' != '" + "SpaceWar.SpacePanel[,-1,1,-1x10,invalid,hidden,disabled,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"+ "'", var57.equals("SpaceWar.SpacePanel[,-1,1,-1x10,invalid,hidden,disabled,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]")); + + } + + public void test133() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test133"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + boolean var5 = javax.swing.JComponent.isLightweightComponent((java.awt.Component)var0); + int var6 = var0.countComponents(); + java.awt.event.KeyListener[] var7 = var0.getKeyListeners(); + var0.setOpaque(true); + javax.swing.ActionMap var10 = var0.getActionMap(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var10); + + } + + public void test134() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test134"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + java.awt.Dimension var4 = var0.getPreferredSize(); + boolean var5 = var0.getVerifyInputWhenFocusTarget(); + java.awt.Component var8 = var0.findComponentAt(10, 1); + boolean var9 = var0.isCursorSet(); + java.awt.Dimension var10 = var0.getMinimumSize(); + SpaceWar.SpacePanel var11 = new SpaceWar.SpacePanel(); + float var12 = var11.getAlignmentX(); + var11.setVisible(false); + var11.setInheritsPopupMenu(false); + var11.move(10, 10); + var11.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + java.awt.Rectangle var24 = var11.bounds(); + java.awt.Rectangle var25 = var0.getBounds(var24); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var4); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var25); + + } + + public void test135() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test135"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + SpaceWar.SpacePanel var4 = new SpaceWar.SpacePanel(); + java.awt.Color var5 = var4.getBackground(); + var0.setForeground(var5); + SpaceWar.SpacePanel var7 = new SpaceWar.SpacePanel(); + float var8 = var7.getAlignmentX(); + var7.setVisible(false); + boolean var11 = var7.isDoubleBuffered(); + java.awt.dnd.DropTarget var12 = var7.getDropTarget(); + var7.show(false); + java.awt.Rectangle var15 = var7.getVisibleRect(); + var0.repaint(var15); + java.awt.Component.BaselineResizeBehavior var17 = var0.getBaselineResizeBehavior(); + var0.firePropertyChange("SpaceWar.SpacePanel[,-1,1,-1x10,invalid,hidden,disabled,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", 1L, 1L); + javax.accessibility.AccessibleContext var22 = var0.getAccessibleContext(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var22); + + } + + public void test136() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test136"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.reshape((-1), 1, (-1), 10); + var0.disable(); + java.awt.LayoutManager var11 = var0.getLayout(); + var0.setVisible(false); + SpaceWar.SpacePanel var14 = new SpaceWar.SpacePanel(); + float var15 = var14.getAlignmentX(); + var14.setVisible(false); + var14.nextFocus(); + var14.updateUI(); + java.util.Locale var20 = var14.getLocale(); + var0.setLocale(var20); + boolean var22 = var0.isRequestFocusEnabled(); + SpaceWar.SpacePanel var23 = new SpaceWar.SpacePanel(); + float var24 = var23.getAlignmentX(); + var23.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var29 = var23.getMouseListeners(); + int var30 = var23.getDebugGraphicsOptions(); + SpaceWar.SpacePanel var31 = new SpaceWar.SpacePanel(); + float var32 = var31.getAlignmentX(); + var31.setVisible(false); + boolean var35 = var31.isDoubleBuffered(); + java.awt.dnd.DropTarget var36 = var31.getDropTarget(); + var31.show(false); + java.awt.Rectangle var39 = var31.getVisibleRect(); + var23.paintImmediately(var39); + int var41 = var23.getWidth(); + var0.removeKeyListener((java.awt.event.KeyListener)var23); + var23.firePropertyChange("SpaceWar.SpacePanel[,-1,100,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=265,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", (short)100, (short)1); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var22 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var24 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var29); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var30 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var32 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var35 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var36); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var39); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var41 == 0); + + } + + public void test137() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test137"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + SpaceWar.SpacePanel var4 = new SpaceWar.SpacePanel(); + java.awt.Color var5 = var4.getBackground(); + var0.setForeground(var5); + SpaceWar.SpacePanel var7 = new SpaceWar.SpacePanel(); + float var8 = var7.getAlignmentX(); + var7.setVisible(false); + boolean var11 = var7.isDoubleBuffered(); + java.awt.dnd.DropTarget var12 = var7.getDropTarget(); + var7.show(false); + java.awt.Rectangle var15 = var7.getVisibleRect(); + var0.repaint(var15); + SpaceWar.SpacePanel var17 = new SpaceWar.SpacePanel(); + float var18 = var17.getAlignmentX(); + var17.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var23 = var17.getMouseListeners(); + java.awt.Dimension var24 = var17.getPreferredSize(); + java.util.Locale var25 = var17.getLocale(); + var0.setLocale(var25); + java.util.Locale var27 = var0.getLocale(); + var0.transferFocusDownCycle(); + java.awt.event.MouseWheelListener[] var29 = var0.getMouseWheelListeners(); + var0.hide(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var23); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var25); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var27); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var29); + + } + + public void test138() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test138"); + + + SpaceWar.Player var0 = new SpaceWar.Player(); + int var1 = var0.getPower(); + var0.setFiring(true); + boolean var4 = var0.isDead(); + var0.setFiring(false); + int var7 = var0.getPower(); + boolean var8 = var0.isRecovering(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + } + + public void test139() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test139"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + var0.setRequestFocusEnabled(false); + var0.setIgnoreRepaint(false); + boolean var7 = var0.requestFocusInWindow(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + SpaceWar.SpacePanel var10 = new SpaceWar.SpacePanel(); + float var11 = var10.getAlignmentX(); + var10.setVisible(false); + java.awt.Dimension var14 = var10.getPreferredSize(); + boolean var15 = var10.getVerifyInputWhenFocusTarget(); + java.awt.Component var18 = var10.findComponentAt(10, 1); + var8.addKeyListener((java.awt.event.KeyListener)var10); + java.awt.Cursor var20 = var8.getCursor(); + java.awt.Dimension var21 = var8.getMinimumSize(); + var0.resize(var21); + var0.move(100, 400); + boolean var26 = var0.isOptimizedDrawingEnabled(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var21); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == true); + + } + + public void test140() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test140"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var1 = new SpaceWar.SpacePanel(); + java.awt.Color var2 = var1.getBackground(); + SpaceWar.SpacePanel var3 = new SpaceWar.SpacePanel(); + float var4 = var3.getAlignmentX(); + var3.setVisible(false); + var3.nextFocus(); + var3.updateUI(); + var3.enableInputMethods(true); + var0.add((java.awt.Component)var1, (java.lang.Object)true); + var0.move(24, 500); + java.awt.Container var15 = var0.getTopLevelAncestor(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var2); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNull(var15); + + } + + public void test141() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test141"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.reshape((-1), 1, (-1), 10); + var0.disable(); + java.awt.LayoutManager var11 = var0.getLayout(); + var0.setVisible(false); + javax.accessibility.AccessibleContext var14 = var0.getAccessibleContext(); + var0.updateUI(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + } + + public void test142() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test142"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + SpaceWar.SpacePanel var4 = new SpaceWar.SpacePanel(); + java.awt.Color var5 = var4.getBackground(); + var0.setForeground(var5); + SpaceWar.SpacePanel var7 = new SpaceWar.SpacePanel(); + float var8 = var7.getAlignmentX(); + var7.setVisible(false); + boolean var11 = var7.isDoubleBuffered(); + java.awt.dnd.DropTarget var12 = var7.getDropTarget(); + var7.show(false); + java.awt.Rectangle var15 = var7.getVisibleRect(); + var0.repaint(var15); + java.awt.FocusTraversalPolicy var17 = var0.getFocusTraversalPolicy(); + SpaceWar.SpacePanel var18 = new SpaceWar.SpacePanel(); + float var19 = var18.getAlignmentX(); + var18.firePropertyChange("", (-1), 1); + boolean var24 = var18.isFocusOwner(); + SpaceWar.SpacePanel var26 = new SpaceWar.SpacePanel(); + float var27 = var26.getAlignmentX(); + var26.setVisible(false); + java.awt.Dimension var30 = var26.getPreferredSize(); + java.awt.Toolkit var31 = var26.getToolkit(); + SpaceWar.SpacePanel var32 = new SpaceWar.SpacePanel(); + var32.setName(""); + int var35 = var32.getX(); + SpaceWar.SpacePanel var36 = new SpaceWar.SpacePanel(); + float var37 = var36.getAlignmentX(); + var36.setVisible(false); + var36.nextFocus(); + SpaceWar.SpacePanel var41 = new SpaceWar.SpacePanel(); + float var42 = var41.getAlignmentX(); + var41.setVisible(false); + SpaceWar.SpacePanel var45 = new SpaceWar.SpacePanel(); + java.awt.Color var46 = var45.getBackground(); + var41.setForeground(var46); + var36.setBackground(var46); + var32.setBackground(var46); + var26.setForeground(var46); + var18.putClientProperty((java.lang.Object)(byte)100, (java.lang.Object)var46); + var0.setBackground(var46); + javax.swing.JToolTip var53 = var0.createToolTip(); + var0.repaint(25, 25, 24, 10); + var0.setDebugGraphicsOptions(0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var24 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var30); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var31); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var35 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var42 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var46); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var53); + + } + + public void test143() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test143"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + var0.setRequestFocusEnabled(false); + var0.reshape(100, 0, 100, 0); + var0.requestFocus(); + var0.firePropertyChange("hi!", '4', ' '); + java.awt.Point var15 = var0.getLocation(); + java.awt.event.MouseWheelListener[] var16 = var0.getMouseWheelListeners(); + var0.setFocusable(true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + } + + public void test144() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test144"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + boolean var6 = var0.isFocusCycleRoot(); + var0.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", 100, 0); + SpaceWar.SpacePanel var11 = new SpaceWar.SpacePanel(); + float var12 = var11.getAlignmentX(); + var11.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var17 = var11.getUI(); + var0.add((java.awt.Component)var11, (java.lang.Object)(short)0); + java.awt.event.InputMethodListener[] var20 = var11.getInputMethodListeners(); + java.awt.event.MouseMotionListener[] var21 = var11.getMouseMotionListeners(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var21); + + } + + public void test145() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test145"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.requestFocus(); + boolean var6 = var0.getInheritsPopupMenu(); + boolean var7 = var0.isFocusOwner(); + boolean var8 = var0.isValidateRoot(); + boolean var9 = javax.swing.JComponent.isLightweightComponent((java.awt.Component)var0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == false); + + } + + public void test146() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test146"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + var0.list(); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + float var7 = var6.getAlignmentX(); + var6.setVisible(false); + boolean var10 = var6.isDoubleBuffered(); + java.awt.dnd.DropTarget var11 = var6.getDropTarget(); + var6.show(false); + java.awt.Rectangle var14 = var6.getVisibleRect(); + java.awt.image.BufferedImage var16 = var6.loadImg("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + boolean var17 = var0.isAncestorOf((java.awt.Component)var6); + float var18 = var0.getAlignmentX(); + java.awt.image.VolatileImage var21 = var0.createVolatileImage(25, 1); + java.beans.PropertyChangeListener[] var23 = var0.getPropertyChangeListeners("PanelUI"); + boolean var24 = var0.isPaintingForPrint(); + boolean var25 = var0.isPreferredSizeSet(); + int var26 = var0.getComponentCount(); + // The following exception was thrown during execution. + // This behavior will recorded for regression testing. + try { + java.awt.Component var28 = var0.getComponent(2); + fail("Expected exception of type java.lang.ArrayIndexOutOfBoundsException"); + } catch (java.lang.ArrayIndexOutOfBoundsException e) { + // Expected exception. + } + + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNull(var21); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var23); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var24 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == 0); + + } + + public void test147() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test147"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + var0.setRequestFocusEnabled(false); + var0.setIgnoreRepaint(false); + java.lang.String var7 = var0.toString(); + java.awt.Color var8 = var0.getBackground(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.setVisible(false); + java.awt.Dimension var13 = var9.getPreferredSize(); + java.awt.Toolkit var14 = var9.getToolkit(); + java.awt.Toolkit var15 = var9.getToolkit(); + SpaceWar.Player var16 = new SpaceWar.Player(); + var16.increasePower(25); + int var19 = var16.getScore(); + var16.setRigth(true); + var16.loseLife(); + var0.putClientProperty((java.lang.Object)var9, (java.lang.Object)var16); + SpaceWar.SpacePanel var24 = new SpaceWar.SpacePanel(); + float var25 = var24.getAlignmentX(); + var24.setVisible(false); + var24.setInheritsPopupMenu(false); + var24.move(10, 10); + var24.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + java.awt.event.KeyListener[] var37 = var24.getKeyListeners(); + var9.removeKeyListener((java.awt.event.KeyListener)var24); + java.awt.Dimension var39 = var24.minimumSize(); + boolean var40 = var24.getVerifyInputWhenFocusTarget(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var7 + "' != '" + "SpaceWar.SpacePanel[,0,0,0var7,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"+ "'", var7.equals("SpaceWar.SpacePanel[,0,0,0var7,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]")); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var37); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var39); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var40 == true); + + } + + public void test148() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test148"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + var0.list(); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + float var7 = var6.getAlignmentX(); + var6.setVisible(false); + boolean var10 = var6.isDoubleBuffered(); + java.awt.dnd.DropTarget var11 = var6.getDropTarget(); + var6.show(false); + java.awt.Rectangle var14 = var6.getVisibleRect(); + java.awt.Rectangle var15 = var0.getBounds(var14); + javax.swing.JToolTip var16 = var0.createToolTip(); + var0.firePropertyChange("", false, false); + var0.validate(); + var0.setFocusCycleRoot(true); + int var24 = var0.countComponents(); + java.awt.event.KeyListener[] var25 = var0.getKeyListeners(); + boolean var26 = var0.getIgnoreRepaint(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var24 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var25); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == false); + + } + + public void test149() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test149"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + float var7 = var6.getAlignmentX(); + var6.setVisible(false); + SpaceWar.SpacePanel var10 = new SpaceWar.SpacePanel(); + java.awt.Color var11 = var10.getBackground(); + var6.setForeground(var11); + var0.setBackground(var11); + var0.grabFocus(); + SpaceWar.SpacePanel var15 = new SpaceWar.SpacePanel(); + float var16 = var15.getAlignmentX(); + var15.setVisible(false); + boolean var19 = var15.isDoubleBuffered(); + java.awt.dnd.DropTarget var20 = var15.getDropTarget(); + boolean var21 = var15.isFocusCycleRoot(); + SpaceWar.SpacePanel var22 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var23 = new SpaceWar.SpacePanel(); + java.awt.Color var24 = var23.getBackground(); + SpaceWar.SpacePanel var25 = new SpaceWar.SpacePanel(); + float var26 = var25.getAlignmentX(); + var25.setVisible(false); + var25.nextFocus(); + var25.updateUI(); + var25.enableInputMethods(true); + var22.add((java.awt.Component)var23, (java.lang.Object)true); + java.awt.Dimension var34 = var23.getPreferredSize(); + var15.setSize(var34); + var0.setMaximumSize(var34); + var0.enable(); + SpaceWar.SpacePanel var38 = new SpaceWar.SpacePanel(); + float var39 = var38.getAlignmentX(); + var38.setVisible(false); + var38.nextFocus(); + var38.reshape((-1), 1, (-1), 10); + var38.disable(); + java.awt.LayoutManager var49 = var38.getLayout(); + boolean var52 = var38.contains((-1), 0); + SpaceWar.SpacePanel var53 = new SpaceWar.SpacePanel(); + float var54 = var53.getAlignmentX(); + var53.setVisible(false); + var53.nextFocus(); + var53.updateUI(); + var53.enableInputMethods(true); + var53.setSize((-1), 1); + java.awt.Component var64 = var38.add((java.awt.Component)var53); + SpaceWar.SpacePanel var65 = new SpaceWar.SpacePanel(); + float var66 = var65.getAlignmentX(); + var65.setVisible(false); + var65.nextFocus(); + var65.updateUI(); + var65.enableInputMethods(true); + java.lang.String var73 = var65.toString(); + java.awt.FocusTraversalPolicy var74 = var65.getFocusTraversalPolicy(); + var53.removeKeyListener((java.awt.event.KeyListener)var65); + var0.addKeyListener((java.awt.event.KeyListener)var65); + java.awt.Dimension var77 = var0.getPreferredSize(); + boolean var78 = var0.isShowing(); + boolean var79 = javax.swing.JComponent.isLightweightComponent((java.awt.Component)var0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var34); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var39 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var49); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var52 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var54 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var64); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var66 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var73 + "' != '" + "SpaceWar.SpacePanel[,0,0,0var73,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"+ "'", var73.equals("SpaceWar.SpacePanel[,0,0,0var73,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]")); + + // Regression assertion (captures the current behavior of the code) + assertNull(var74); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var77); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var78 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var79 == false); + + } + + public void test150() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test150"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + var0.list(); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + float var7 = var6.getAlignmentX(); + var6.setVisible(false); + boolean var10 = var6.isDoubleBuffered(); + java.awt.dnd.DropTarget var11 = var6.getDropTarget(); + var6.show(false); + java.awt.Rectangle var14 = var6.getVisibleRect(); + java.awt.Rectangle var15 = var0.getBounds(var14); + javax.swing.JToolTip var16 = var0.createToolTip(); + var0.firePropertyChange("", false, false); + var0.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", (-1L), (-1L)); + SpaceWar.SpacePanel var25 = new SpaceWar.SpacePanel(); + java.awt.Color var26 = var25.getBackground(); + boolean var29 = var25.inside(0, (-1)); + SpaceWar.SpacePanel var30 = new SpaceWar.SpacePanel(); + float var31 = var30.getAlignmentX(); + var30.setVisible(false); + SpaceWar.SpacePanel var34 = new SpaceWar.SpacePanel(); + java.awt.Color var35 = var34.getBackground(); + var30.setForeground(var35); + var25.setForeground(var35); + var0.removeKeyListener((java.awt.event.KeyListener)var25); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var29 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var31 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var35); + + } + + public void test151() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test151"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.repaint(1L); + SpaceWar.SpacePanel var7 = new SpaceWar.SpacePanel(); + float var8 = var7.getAlignmentX(); + var7.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var13 = new SpaceWar.SpacePanel(); + float var14 = var13.getAlignmentX(); + var13.setVisible(false); + java.awt.Dimension var17 = var13.getPreferredSize(); + var7.setMaximumSize(var17); + var0.setPreferredSize(var17); + javax.swing.plaf.PanelUI var20 = var0.getUI(); + SpaceWar.SpacePanel var21 = new SpaceWar.SpacePanel(); + float var22 = var21.getAlignmentX(); + var21.setVisible(false); + var21.nextFocus(); + var21.reshape((-1), 1, (-1), 10); + var21.disable(); + java.awt.LayoutManager var32 = var21.getLayout(); + java.awt.Container var33 = var21.getParent(); + java.lang.String var34 = var21.getUIClassID(); + SpaceWar.Enemy var37 = new SpaceWar.Enemy(0, 10); + var0.add((java.awt.Component)var21, (java.lang.Object)10); + var21.invalidate(); + var21.show(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var22 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var32); + + // Regression assertion (captures the current behavior of the code) + assertNull(var33); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var34 + "' != '" + "PanelUI"+ "'", var34.equals("PanelUI")); + + } + + public void test152() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test152"); + + + SpaceWar.Player var0 = new SpaceWar.Player(); + var0.increasePower(25); + int var3 = var0.getR(); + int var4 = var0.getScore(); + var0.loseLife(); + var0.loseLife(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == 25); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0); + + } + + public void test153() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test153"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var1 = new SpaceWar.SpacePanel(); + java.awt.Color var2 = var1.getBackground(); + SpaceWar.SpacePanel var3 = new SpaceWar.SpacePanel(); + float var4 = var3.getAlignmentX(); + var3.setVisible(false); + var3.nextFocus(); + var3.updateUI(); + var3.enableInputMethods(true); + var0.add((java.awt.Component)var1, (java.lang.Object)true); + java.awt.Dimension var12 = var1.getPreferredSize(); + boolean var13 = var1.isValidateRoot(); + SpaceWar.SpacePanel var14 = new SpaceWar.SpacePanel(); + float var15 = var14.getAlignmentX(); + var14.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var20 = var14.getMouseListeners(); + int var21 = var14.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var22 = var14.getInputMethodRequests(); + var14.removeNotify(); + var14.enable(); + java.lang.Object var25 = var14.getTreeLock(); + var14.setAlignmentY(0.0f); + java.awt.Rectangle var28 = var14.getVisibleRect(); + var1.paintImmediately(var28); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var2); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var25); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var28); + + } + + public void test154() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test154"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + float var7 = var6.getAlignmentX(); + var6.setVisible(false); + java.awt.Dimension var10 = var6.getPreferredSize(); + var0.setMaximumSize(var10); + boolean var12 = var0.getVerifyInputWhenFocusTarget(); + javax.accessibility.AccessibleContext var13 = var0.getAccessibleContext(); + boolean var14 = var0.isDoubleBuffered(); + boolean var15 = var0.getAutoscrolls(); + var0.repaint(10L, (-1), 25, (-1), 100); + var0.updateUI(); + var0.show(); + boolean var24 = var0.hasFocus(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var24 == false); + + } + + public void test155() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test155"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + java.awt.im.InputMethodRequests var3 = var0.getInputMethodRequests(); + var0.setDoubleBuffered(true); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + float var7 = var6.getAlignmentX(); + boolean var8 = var6.hasFocus(); + java.awt.Insets var9 = var6.getInsets(); + java.awt.Insets var10 = var0.getInsets(var9); + SpaceWar.SpacePanel var11 = new SpaceWar.SpacePanel(); + java.awt.Color var12 = var11.getBackground(); + var11.repaint(); + java.awt.im.InputMethodRequests var14 = var11.getInputMethodRequests(); + var11.setDoubleBuffered(true); + var11.setInheritsPopupMenu(false); + boolean var19 = var11.isFocusTraversalPolicySet(); + var11.transferFocusUpCycle(); + java.awt.image.BufferedImage var22 = var11.loadImg("SpaceWar.SpacePanel[,0,0,0x0,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + SpaceWar.SpacePanel var23 = new SpaceWar.SpacePanel(); + float var24 = var23.getAlignmentX(); + var23.setVisible(false); + var23.setInheritsPopupMenu(false); + boolean var29 = var23.isDoubleBuffered(); + boolean var30 = var23.isMinimumSizeSet(); + java.awt.Font var31 = var23.getFont(); + java.awt.FontMetrics var32 = var11.getFontMetrics(var31); + java.awt.FontMetrics var33 = var0.getFontMetrics(var31); + SpaceWar.SpacePanel var34 = new SpaceWar.SpacePanel(); + java.awt.Color var35 = var34.getBackground(); + var34.repaint(); + java.awt.im.InputMethodRequests var37 = var34.getInputMethodRequests(); + int var38 = var34.countComponents(); + java.awt.Dimension var39 = var34.getSize(); + var0.setMinimumSize(var39); + java.awt.Graphics var41 = var0.getGraphics(); + java.awt.dnd.DropTarget var42 = var0.getDropTarget(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var9); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var24 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var29 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var30 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var31); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var32); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var33); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var35); + + // Regression assertion (captures the current behavior of the code) + assertNull(var37); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var38 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var39); + + // Regression assertion (captures the current behavior of the code) + assertNull(var41); + + // Regression assertion (captures the current behavior of the code) + assertNull(var42); + + } + + public void test156() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test156"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + var0.enable(false); + int var7 = var0.getWidth(); + var0.removeNotify(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.setVisible(false); + var9.setDoubleBuffered(true); + var9.repaint(0, 500, 2, 24); + java.awt.Cursor var20 = var9.getCursor(); + var9.setOpaque(false); + java.awt.Font var23 = var9.getFont(); + java.awt.FontMetrics var24 = var0.getFontMetrics(var23); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var23); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var24); + + } + + public void test157() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test157"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + boolean var2 = var0.hasFocus(); + boolean var3 = var0.isPreferredSizeSet(); + var0.firePropertyChange("", (short)1, (short)0); + boolean var8 = var0.isMaximumSizeSet(); + var0.list(); + boolean var10 = var0.requestFocusInWindow(); + java.awt.Dimension var11 = var0.minimumSize(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var2 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + } + + public void test158() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test158"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.updateUI(); + var0.enableInputMethods(true); + var0.setSize((-1), 1); + boolean var13 = var0.contains(1, 1); + javax.swing.TransferHandler var14 = var0.getTransferHandler(); + SpaceWar.SpacePanel var15 = new SpaceWar.SpacePanel(); + float var16 = var15.getAlignmentX(); + var15.setVisible(false); + boolean var19 = var15.isDoubleBuffered(); + var15.enable(false); + java.lang.Object var22 = var0.getClientProperty((java.lang.Object)false); + SpaceWar.SpacePanel var23 = new SpaceWar.SpacePanel(); + float var24 = var23.getAlignmentX(); + var23.setVisible(false); + SpaceWar.SpacePanel var27 = new SpaceWar.SpacePanel(); + java.awt.Color var28 = var27.getBackground(); + var23.setForeground(var28); + SpaceWar.SpacePanel var30 = new SpaceWar.SpacePanel(); + float var31 = var30.getAlignmentX(); + var30.setVisible(false); + boolean var34 = var30.isDoubleBuffered(); + java.awt.dnd.DropTarget var35 = var30.getDropTarget(); + var30.show(false); + java.awt.Rectangle var38 = var30.getVisibleRect(); + var23.repaint(var38); + java.awt.Component.BaselineResizeBehavior var40 = var23.getBaselineResizeBehavior(); + SpaceWar.SpacePanel var41 = new SpaceWar.SpacePanel(); + float var42 = var41.getAlignmentX(); + var41.setVisible(false); + var41.nextFocus(); + var41.repaint(1L); + SpaceWar.SpacePanel var48 = new SpaceWar.SpacePanel(); + float var49 = var48.getAlignmentX(); + var48.setVisible(false); + boolean var52 = var48.isDoubleBuffered(); + var48.list(); + SpaceWar.SpacePanel var54 = new SpaceWar.SpacePanel(); + float var55 = var54.getAlignmentX(); + var54.setVisible(false); + boolean var58 = var54.isDoubleBuffered(); + java.awt.dnd.DropTarget var59 = var54.getDropTarget(); + var54.show(false); + java.awt.Rectangle var62 = var54.getVisibleRect(); + java.awt.Rectangle var63 = var48.getBounds(var62); + var41.setBounds(var63); + var23.paintImmediately(var63); + SpaceWar.SpacePanel var66 = new SpaceWar.SpacePanel(); + float var67 = var66.getAlignmentX(); + var66.setVisible(false); + boolean var70 = var66.isDoubleBuffered(); + java.awt.dnd.DropTarget var71 = var66.getDropTarget(); + java.awt.Point var72 = var66.getMousePosition(); + boolean var73 = var66.getAutoscrolls(); + var0.add((java.awt.Component)var23, (java.lang.Object)var66); + var66.enable(); + java.awt.event.FocusListener[] var76 = var66.getFocusListeners(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var24 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var28); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var31 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var34 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var35); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var38); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var40); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var42 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var49 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var52 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var55 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var58 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var59); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var62); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var63); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var67 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var70 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var71); + + // Regression assertion (captures the current behavior of the code) + assertNull(var72); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var73 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var76); + + } + + public void test159() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test159"); + + + SpaceWar.Player var0 = new SpaceWar.Player(); + boolean var1 = var0.isRecovering(); + int var2 = var0.getRequiredPower(); + int var3 = var0.getY(); + int var4 = var0.getX(); + var0.setLeft(false); + int var7 = var0.getPowerLevel(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var2 == 1); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == 500); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 400); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0); + + } + + public void test160() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test160"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + var0.setRequestFocusEnabled(false); + var0.reshape(100, 0, 100, 0); + var0.requestFocus(); + var0.firePropertyChange("hi!", '4', ' '); + java.awt.Point var15 = var0.getLocation(); + SpaceWar.SpacePanel var16 = new SpaceWar.SpacePanel(); + java.awt.Color var17 = var16.getBackground(); + boolean var20 = var16.inside(0, (-1)); + SpaceWar.SpacePanel var21 = new SpaceWar.SpacePanel(); + float var22 = var21.getAlignmentX(); + var21.setVisible(false); + SpaceWar.SpacePanel var25 = new SpaceWar.SpacePanel(); + java.awt.Color var26 = var25.getBackground(); + var21.setForeground(var26); + var16.setForeground(var26); + var0.setBackground(var26); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var22 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var26); + + } + + public void test161() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test161"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + SpaceWar.SpacePanel var5 = new SpaceWar.SpacePanel(); + float var6 = var5.getAlignmentX(); + var5.setVisible(false); + var5.nextFocus(); + var5.reshape((-1), 1, (-1), 10); + var5.disable(); + boolean var16 = var5.isFocusable(); + int var17 = var5.getHeight(); + var0.setNextFocusableComponent((java.awt.Component)var5); + javax.swing.border.Border var19 = var0.getBorder(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == 10); + + // Regression assertion (captures the current behavior of the code) + assertNull(var19); + + } + + public void test162() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test162"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var6 = var0.getMouseListeners(); + var0.firePropertyChange("", 0.5f, 100.0f); + var0.enable(false); + int var13 = var0.getDebugGraphicsOptions(); + java.awt.ComponentOrientation var14 = var0.getComponentOrientation(); + var0.reshape(25, 400, 400, 0); + var0.setAutoscrolls(true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + } + + public void test163() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test163"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.setDoubleBuffered(true); + var0.repaint(0, 500, 2, 24); + java.awt.Cursor var11 = var0.getCursor(); + var0.setOpaque(false); + boolean var14 = var0.isDoubleBuffered(); + var0.firePropertyChange("", '4', ' '); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == true); + + } + + public void test164() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test164"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var6 = var0.getUI(); + java.awt.im.InputMethodRequests var7 = var0.getInputMethodRequests(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + var8.nextFocus(); + var8.updateUI(); + var8.enableInputMethods(true); + var8.setSize((-1), 1); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + var19.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var0.add((java.awt.Component)var8, (java.lang.Object)"SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + var8.setAutoscrolls(true); + java.awt.Image var29 = var8.createImage(400, 400); + var8.enableInputMethods(true); + javax.swing.plaf.PanelUI var32 = var8.getUI(); + java.awt.Component var33 = var8.getNextFocusableComponent(); + boolean var34 = var8.isPaintingForPrint(); + java.awt.Insets var35 = var8.getInsets(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNull(var29); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var32); + + // Regression assertion (captures the current behavior of the code) + assertNull(var33); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var34 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var35); + + } + + public void test165() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test165"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + java.awt.im.InputMethodRequests var3 = var0.getInputMethodRequests(); + int var4 = var0.countComponents(); + java.awt.event.ComponentListener[] var5 = var0.getComponentListeners(); + var0.removeNotify(); + javax.swing.InputMap var7 = var0.getInputMap(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var14 = new SpaceWar.SpacePanel(); + float var15 = var14.getAlignmentX(); + var14.setVisible(false); + SpaceWar.SpacePanel var18 = new SpaceWar.SpacePanel(); + java.awt.Color var19 = var18.getBackground(); + var14.setForeground(var19); + var8.setBackground(var19); + java.awt.Point var22 = var8.location(); + var0.setLocation(var22); + SpaceWar.SpacePanel var24 = new SpaceWar.SpacePanel(); + float var25 = var24.getAlignmentX(); + var24.setVisible(false); + var24.nextFocus(); + var24.reshape((-1), 1, (-1), 10); + SpaceWar.SpacePanel var34 = new SpaceWar.SpacePanel(); + java.awt.Color var35 = var34.getBackground(); + var34.repaint(); + var34.setRequestFocusEnabled(false); + var34.reshape(100, 0, 100, 0); + java.awt.Component var44 = var24.add((java.awt.Component)var34); + var24.enable(); + SpaceWar.SpacePanel var46 = new SpaceWar.SpacePanel(); + float var47 = var46.getAlignmentX(); + boolean var48 = var46.hasFocus(); + boolean var49 = var46.isPreferredSizeSet(); + var0.putClientProperty((java.lang.Object)var24, (java.lang.Object)var46); + javax.swing.ActionMap var51 = var0.getActionMap(); + var0.setAlignmentX(0.0f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var35); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var44); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var47 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var48 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var49 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var51); + + } + + public void test166() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test166"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + var0.show(false); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + SpaceWar.SpacePanel var12 = new SpaceWar.SpacePanel(); + java.awt.Color var13 = var12.getBackground(); + var8.setForeground(var13); + SpaceWar.SpacePanel var15 = new SpaceWar.SpacePanel(); + float var16 = var15.getAlignmentX(); + var15.setVisible(false); + boolean var19 = var15.isDoubleBuffered(); + java.awt.dnd.DropTarget var20 = var15.getDropTarget(); + var15.show(false); + java.awt.Rectangle var23 = var15.getVisibleRect(); + var8.repaint(var23); + java.awt.FocusTraversalPolicy var25 = var8.getFocusTraversalPolicy(); + java.awt.im.InputMethodRequests var26 = var8.getInputMethodRequests(); + var8.layout(); + SpaceWar.SpacePanel var28 = new SpaceWar.SpacePanel(); + float var29 = var28.getAlignmentX(); + var28.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var34 = new SpaceWar.SpacePanel(); + float var35 = var34.getAlignmentX(); + var34.setVisible(false); + SpaceWar.SpacePanel var38 = new SpaceWar.SpacePanel(); + java.awt.Color var39 = var38.getBackground(); + var34.setForeground(var39); + var28.setBackground(var39); + var8.setForeground(var39); + int var43 = var8.getWidth(); + javax.swing.plaf.PanelUI var44 = var8.getUI(); + var0.setUI(var44); + var0.setName("SpaceWar.SpacePanel[,0,0,0x0,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + SpaceWar.SpacePanel var48 = new SpaceWar.SpacePanel(); + float var49 = var48.getAlignmentX(); + var48.setVisible(false); + boolean var52 = var48.isDoubleBuffered(); + var48.list(); + SpaceWar.SpacePanel var54 = new SpaceWar.SpacePanel(); + float var55 = var54.getAlignmentX(); + var54.setVisible(false); + boolean var58 = var54.isDoubleBuffered(); + java.awt.dnd.DropTarget var59 = var54.getDropTarget(); + var54.show(false); + java.awt.Rectangle var62 = var54.getVisibleRect(); + java.awt.Rectangle var63 = var48.getBounds(var62); + javax.swing.JToolTip var64 = var48.createToolTip(); + var48.firePropertyChange("", false, false); + var48.validate(); + SpaceWar.SpacePanel var70 = new SpaceWar.SpacePanel(); + float var71 = var70.getAlignmentX(); + var70.setVisible(false); + boolean var74 = var70.isDoubleBuffered(); + java.awt.dnd.DropTarget var75 = var70.getDropTarget(); + var70.show(false); + boolean var78 = var70.isPaintingForPrint(); + SpaceWar.SpacePanel var79 = new SpaceWar.SpacePanel(); + float var80 = var79.getAlignmentX(); + var79.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var85 = var79.getMouseListeners(); + int var86 = var79.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var87 = var79.getInputMethodRequests(); + var70.addKeyListener((java.awt.event.KeyListener)var79); + var79.repaint(); + java.awt.Point var90 = var79.location(); + java.awt.Component var91 = var48.getComponentAt(var90); + boolean var92 = var0.contains(var90); + var0.show(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var23); + + // Regression assertion (captures the current behavior of the code) + assertNull(var25); + + // Regression assertion (captures the current behavior of the code) + assertNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var29 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var35 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var39); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var43 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var44); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var49 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var52 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var55 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var58 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var59); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var62); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var63); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var64); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var71 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var74 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var75); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var78 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var80 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var85); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var86 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var87); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var90); + + // Regression assertion (captures the current behavior of the code) + assertNull(var91); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var92 == false); + + } + + public void test167() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test167"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + java.awt.Dimension var4 = var0.getPreferredSize(); + boolean var5 = var0.getVerifyInputWhenFocusTarget(); + java.awt.Component var8 = var0.findComponentAt(10, 1); + boolean var9 = var0.isCursorSet(); + java.awt.Dimension var10 = var0.getMinimumSize(); + java.awt.Point var11 = var0.getMousePosition(); + SpaceWar.SpacePanel var12 = new SpaceWar.SpacePanel(); + var12.setName(""); + java.awt.Toolkit var15 = var12.getToolkit(); + var12.setEnabled(false); + var12.removeNotify(); + boolean var19 = var12.isDisplayable(); + SpaceWar.SpacePanel var20 = new SpaceWar.SpacePanel(); + java.awt.Color var21 = var20.getBackground(); + var20.repaint(); + var20.setRequestFocusEnabled(false); + var20.reshape(100, 0, 100, 0); + var20.requestFocus(); + java.awt.Rectangle var31 = var20.getVisibleRect(); + java.awt.Rectangle var32 = var20.getBounds(); + java.awt.im.InputMethodRequests var33 = var20.getInputMethodRequests(); + boolean var34 = var20.requestFocusInWindow(); + java.awt.Point var36 = var20.getMousePosition(false); + var20.setDebugGraphicsOptions(1); + java.awt.Graphics var39 = var20.getGraphics(); + var12.paintAll(var39); + var0.printComponents(var39); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var4); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var21); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var31); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var32); + + // Regression assertion (captures the current behavior of the code) + assertNull(var33); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var34 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var36); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var39); + + } + + public void test168() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test168"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + var0.setRequestFocusEnabled(false); + var0.reshape(100, 0, 100, 0); + javax.swing.event.AncestorListener[] var10 = var0.getAncestorListeners(); + var0.resize(10, 0); + java.awt.event.ComponentListener[] var14 = var0.getComponentListeners(); + boolean var15 = var0.hasFocus(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == false); + + } + + public void test169() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test169"); + + + SpaceWar.PowerUp var3 = new SpaceWar.PowerUp(100, (-1.0d), 0.0d); + double var4 = var3.getX(); + double var5 = var3.getY(); + double var6 = var3.getY(); + double var7 = var3.getY(); + double var8 = var3.getY(); + double var9 = var3.getX(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == (-1.0d)); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == 0.0d); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == 0.0d); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.0d); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 0.0d); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == (-1.0d)); + + } + + public void test170() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test170"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var6 = var0.getMouseListeners(); + java.awt.Dimension var7 = var0.getPreferredSize(); + java.util.Locale var8 = var0.getLocale(); + java.awt.Font var9 = var0.getFont(); + java.awt.Color var10 = var0.getForeground(); + int var11 = var0.getY(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var9); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == 0); + + } + + public void test171() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test171"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.updateUI(); + var0.enableInputMethods(true); + var0.enableInputMethods(true); + java.awt.Component.BaselineResizeBehavior var10 = var0.getBaselineResizeBehavior(); + var0.hide(); + var0.enable(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var10); + + } + + public void test172() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test172"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + java.awt.im.InputMethodRequests var3 = var0.getInputMethodRequests(); + var0.setDoubleBuffered(true); + var0.setInheritsPopupMenu(false); + var0.setOpaque(true); + var0.updateUI(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNull(var3); + + } + + public void test173() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test173"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + boolean var4 = var0.inside(0, (-1)); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + float var7 = var6.getAlignmentX(); + var6.setVisible(false); + var6.nextFocus(); + var6.reshape((-1), 1, (-1), 10); + var6.disable(); + boolean var17 = var6.isFocusable(); + SpaceWar.SpacePanel var18 = new SpaceWar.SpacePanel(); + float var19 = var18.getAlignmentX(); + var18.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var24 = var18.getUI(); + java.awt.im.InputMethodRequests var25 = var18.getInputMethodRequests(); + SpaceWar.SpacePanel var26 = new SpaceWar.SpacePanel(); + float var27 = var26.getAlignmentX(); + var26.setVisible(false); + var26.nextFocus(); + var26.updateUI(); + var26.enableInputMethods(true); + var26.setSize((-1), 1); + SpaceWar.SpacePanel var37 = new SpaceWar.SpacePanel(); + var37.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var18.add((java.awt.Component)var26, (java.lang.Object)"SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + java.awt.event.KeyListener[] var43 = var18.getKeyListeners(); + java.awt.FocusTraversalPolicy var44 = var18.getFocusTraversalPolicy(); + SpaceWar.SpacePanel var45 = new SpaceWar.SpacePanel(); + var45.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + java.awt.Toolkit var50 = var45.getToolkit(); + var6.add((java.awt.Component)var18, (java.lang.Object)var45); + var6.layout(); + java.awt.Component var53 = var0.add("", (java.awt.Component)var6); + java.awt.Component var54 = var0.getNextFocusableComponent(); + var0.doLayout(); + boolean var56 = var0.isRequestFocusEnabled(); + var0.validate(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertNull(var25); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var43); + + // Regression assertion (captures the current behavior of the code) + assertNull(var44); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var50); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var53); + + // Regression assertion (captures the current behavior of the code) + assertNull(var54); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var56 == true); + + } + + public void test174() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test174"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var6 = var0.getUI(); + java.awt.im.InputMethodRequests var7 = var0.getInputMethodRequests(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + var8.nextFocus(); + var8.updateUI(); + var8.enableInputMethods(true); + var8.setSize((-1), 1); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + var19.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var0.add((java.awt.Component)var8, (java.lang.Object)"SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + SpaceWar.SpacePanel var25 = new SpaceWar.SpacePanel(); + var25.setName(""); + java.awt.ComponentOrientation var28 = var25.getComponentOrientation(); + var0.applyComponentOrientation(var28); + boolean var30 = var0.getVerifyInputWhenFocusTarget(); + java.awt.Dimension var31 = var0.preferredSize(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var28); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var30 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var31); + + } + + public void test175() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test175"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.setInheritsPopupMenu(false); + var0.setFocusTraversalPolicyProvider(true); + boolean var10 = var0.inside(25, 3); + SpaceWar.SpacePanel var11 = new SpaceWar.SpacePanel(); + float var12 = var11.getAlignmentX(); + var11.setVisible(false); + boolean var15 = var11.isDoubleBuffered(); + java.awt.dnd.DropTarget var16 = var11.getDropTarget(); + var11.show(false); + boolean var19 = var11.isPaintingForPrint(); + SpaceWar.SpacePanel var20 = new SpaceWar.SpacePanel(); + float var21 = var20.getAlignmentX(); + SpaceWar.SpacePanel var22 = new SpaceWar.SpacePanel(); + float var23 = var22.getAlignmentX(); + var22.setVisible(false); + java.awt.Dimension var26 = var22.getPreferredSize(); + boolean var27 = var22.getVerifyInputWhenFocusTarget(); + java.awt.Component var30 = var22.findComponentAt(10, 1); + var20.addKeyListener((java.awt.event.KeyListener)var22); + java.awt.Dimension var32 = var22.getMinimumSize(); + var11.setMinimumSize(var32); + var0.setPreferredSize(var32); + java.awt.Insets var35 = var0.insets(); + boolean var36 = var0.isFocusTraversalPolicyProvider(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var30); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var32); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var35); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var36 == true); + + } + + public void test176() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test176"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var6 = var0.getMouseListeners(); + java.awt.Dimension var7 = var0.getPreferredSize(); + java.util.Locale var8 = var0.getLocale(); + var0.setFocusable(true); + var0.setSize(3, 10); + SpaceWar.SpacePanel var14 = new SpaceWar.SpacePanel(); + float var15 = var14.getAlignmentX(); + var14.setVisible(false); + java.awt.Dimension var18 = var14.getPreferredSize(); + boolean var19 = var14.getVerifyInputWhenFocusTarget(); + java.awt.Dimension var20 = var14.size(); + var0.setSize(var20); + java.awt.peer.ComponentPeer var22 = var0.getPeer(); + boolean var23 = var0.isEnabled(); + java.awt.Dimension var24 = var0.getMinimumSize(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var24); + + } + + public void test177() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test177"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.updateUI(); + var0.enableInputMethods(true); + java.awt.Point var9 = var0.getMousePosition(false); + boolean var10 = var0.isShowing(); + java.awt.FocusTraversalPolicy var11 = var0.getFocusTraversalPolicy(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNull(var9); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var11); + + } + + public void test178() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test178"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + var0.enable(false); + boolean var7 = var0.getFocusTraversalKeysEnabled(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + java.awt.Dimension var12 = var8.getPreferredSize(); + java.awt.Toolkit var13 = var8.getToolkit(); + boolean var14 = var8.isFocusable(); + javax.swing.KeyStroke[] var15 = var8.getRegisteredKeyStrokes(); + SpaceWar.SpacePanel var16 = new SpaceWar.SpacePanel(); + float var17 = var16.getAlignmentX(); + SpaceWar.SpacePanel var18 = new SpaceWar.SpacePanel(); + float var19 = var18.getAlignmentX(); + var18.setVisible(false); + java.awt.Dimension var22 = var18.getPreferredSize(); + boolean var23 = var18.getVerifyInputWhenFocusTarget(); + java.awt.Component var26 = var18.findComponentAt(10, 1); + var16.addKeyListener((java.awt.event.KeyListener)var18); + var18.repaint(100, (-1), (-1), 1); + boolean var33 = var8.isAncestorOf((java.awt.Component)var18); + var0.addKeyListener((java.awt.event.KeyListener)var18); + java.util.Locale var35 = var18.getLocale(); + java.awt.Insets var36 = var18.insets(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var33 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var35); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var36); + + } + + public void test179() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test179"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + SpaceWar.SpacePanel var4 = new SpaceWar.SpacePanel(); + java.awt.Color var5 = var4.getBackground(); + var0.setForeground(var5); + SpaceWar.SpacePanel var7 = new SpaceWar.SpacePanel(); + float var8 = var7.getAlignmentX(); + var7.setVisible(false); + boolean var11 = var7.isDoubleBuffered(); + java.awt.dnd.DropTarget var12 = var7.getDropTarget(); + var7.show(false); + java.awt.Rectangle var15 = var7.getVisibleRect(); + var0.repaint(var15); + java.awt.FocusTraversalPolicy var17 = var0.getFocusTraversalPolicy(); + SpaceWar.SpacePanel var18 = new SpaceWar.SpacePanel(); + float var19 = var18.getAlignmentX(); + var18.firePropertyChange("", (-1), 1); + boolean var24 = var18.isFocusOwner(); + SpaceWar.SpacePanel var26 = new SpaceWar.SpacePanel(); + float var27 = var26.getAlignmentX(); + var26.setVisible(false); + java.awt.Dimension var30 = var26.getPreferredSize(); + java.awt.Toolkit var31 = var26.getToolkit(); + SpaceWar.SpacePanel var32 = new SpaceWar.SpacePanel(); + var32.setName(""); + int var35 = var32.getX(); + SpaceWar.SpacePanel var36 = new SpaceWar.SpacePanel(); + float var37 = var36.getAlignmentX(); + var36.setVisible(false); + var36.nextFocus(); + SpaceWar.SpacePanel var41 = new SpaceWar.SpacePanel(); + float var42 = var41.getAlignmentX(); + var41.setVisible(false); + SpaceWar.SpacePanel var45 = new SpaceWar.SpacePanel(); + java.awt.Color var46 = var45.getBackground(); + var41.setForeground(var46); + var36.setBackground(var46); + var32.setBackground(var46); + var26.setForeground(var46); + var18.putClientProperty((java.lang.Object)(byte)100, (java.lang.Object)var46); + var0.setBackground(var46); + SpaceWar.SpacePanel var53 = new SpaceWar.SpacePanel(); + float var54 = var53.getAlignmentX(); + var53.setVisible(false); + boolean var57 = var53.isDoubleBuffered(); + java.awt.dnd.DropTarget var58 = var53.getDropTarget(); + var53.show(false); + boolean var61 = var53.isPaintingForPrint(); + SpaceWar.SpacePanel var62 = new SpaceWar.SpacePanel(); + float var63 = var62.getAlignmentX(); + SpaceWar.SpacePanel var64 = new SpaceWar.SpacePanel(); + float var65 = var64.getAlignmentX(); + var64.setVisible(false); + java.awt.Dimension var68 = var64.getPreferredSize(); + boolean var69 = var64.getVerifyInputWhenFocusTarget(); + java.awt.Component var72 = var64.findComponentAt(10, 1); + var62.addKeyListener((java.awt.event.KeyListener)var64); + java.awt.Dimension var74 = var64.getMinimumSize(); + var53.setMinimumSize(var74); + java.awt.Dimension var76 = var0.getSize(var74); + java.awt.event.InputMethodListener[] var77 = var0.getInputMethodListeners(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var24 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var30); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var31); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var35 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var42 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var46); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var54 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var57 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var58); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var61 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var63 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var65 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var68); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var69 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var72); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var74); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var76); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var77); + + } + + public void test180() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test180"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + boolean var4 = var0.inside(0, (-1)); + var0.transferFocusUpCycle(); + java.awt.Toolkit var6 = var0.getToolkit(); + // The following exception was thrown during execution. + // This behavior will recorded for regression testing. + try { + java.awt.Component var8 = var0.getComponent(1); + fail("Expected exception of type java.lang.ArrayIndexOutOfBoundsException"); + } catch (java.lang.ArrayIndexOutOfBoundsException e) { + // Expected exception. + } + + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + } + + public void test181() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test181"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var1 = new SpaceWar.SpacePanel(); + java.awt.Color var2 = var1.getBackground(); + SpaceWar.SpacePanel var3 = new SpaceWar.SpacePanel(); + float var4 = var3.getAlignmentX(); + var3.setVisible(false); + var3.nextFocus(); + var3.updateUI(); + var3.enableInputMethods(true); + var0.add((java.awt.Component)var1, (java.lang.Object)true); + java.awt.Image var14 = var1.createImage(1, (-1)); + java.beans.PropertyChangeListener[] var15 = var1.getPropertyChangeListeners(); + java.awt.FocusTraversalPolicy var16 = var1.getFocusTraversalPolicy(); + boolean var17 = var1.isPreferredSizeSet(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var2); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == true); + + } + + public void test182() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test182"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + var0.show(false); + boolean var8 = var0.isPaintingForPrint(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var15 = var9.getMouseListeners(); + int var16 = var9.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var17 = var9.getInputMethodRequests(); + var0.addKeyListener((java.awt.event.KeyListener)var9); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + float var20 = var19.getAlignmentX(); + var19.setVisible(false); + boolean var23 = var19.isDoubleBuffered(); + var19.list(); + float var25 = var19.getAlignmentY(); + boolean var26 = var9.isFocusCycleRoot((java.awt.Container)var19); + javax.swing.JPopupMenu var27 = var19.getComponentPopupMenu(); + var19.firePropertyChange("hi!", 3, 0); + var19.setAlignmentY(100.0f); + var19.setAlignmentX(100.0f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var27); + + } + + public void test183() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test183"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + float var7 = var6.getAlignmentX(); + var6.setVisible(false); + java.awt.Dimension var10 = var6.getPreferredSize(); + var0.setMaximumSize(var10); + boolean var12 = var0.getVerifyInputWhenFocusTarget(); + javax.accessibility.AccessibleContext var13 = var0.getAccessibleContext(); + boolean var14 = var0.isDoubleBuffered(); + boolean var15 = var0.getAutoscrolls(); + var0.repaint(10L, (-1), 25, (-1), 100); + var0.updateUI(); + boolean var23 = var0.requestDefaultFocus(); + SpaceWar.SpacePanel var24 = new SpaceWar.SpacePanel(); + float var25 = var24.getAlignmentX(); + boolean var26 = var24.hasFocus(); + boolean var27 = var24.isPreferredSizeSet(); + var24.firePropertyChange("", (short)1, (short)0); + boolean var32 = var24.isMaximumSizeSet(); + java.awt.peer.ComponentPeer var33 = var24.getPeer(); + SpaceWar.SpacePanel var34 = new SpaceWar.SpacePanel(); + float var35 = var34.getAlignmentX(); + var34.setVisible(false); + boolean var38 = var34.isDoubleBuffered(); + java.awt.dnd.DropTarget var39 = var34.getDropTarget(); + var34.show(false); + SpaceWar.SpacePanel var42 = new SpaceWar.SpacePanel(); + float var43 = var42.getAlignmentX(); + var42.setVisible(false); + SpaceWar.SpacePanel var46 = new SpaceWar.SpacePanel(); + java.awt.Color var47 = var46.getBackground(); + var42.setForeground(var47); + SpaceWar.SpacePanel var49 = new SpaceWar.SpacePanel(); + float var50 = var49.getAlignmentX(); + var49.setVisible(false); + boolean var53 = var49.isDoubleBuffered(); + java.awt.dnd.DropTarget var54 = var49.getDropTarget(); + var49.show(false); + java.awt.Rectangle var57 = var49.getVisibleRect(); + var42.repaint(var57); + java.awt.FocusTraversalPolicy var59 = var42.getFocusTraversalPolicy(); + java.awt.im.InputMethodRequests var60 = var42.getInputMethodRequests(); + var42.layout(); + SpaceWar.SpacePanel var62 = new SpaceWar.SpacePanel(); + float var63 = var62.getAlignmentX(); + var62.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var68 = new SpaceWar.SpacePanel(); + float var69 = var68.getAlignmentX(); + var68.setVisible(false); + SpaceWar.SpacePanel var72 = new SpaceWar.SpacePanel(); + java.awt.Color var73 = var72.getBackground(); + var68.setForeground(var73); + var62.setBackground(var73); + var42.setForeground(var73); + int var77 = var42.getWidth(); + javax.swing.plaf.PanelUI var78 = var42.getUI(); + var34.setUI(var78); + var24.setUI(var78); + var0.remove((java.awt.Component)var24); + java.awt.Point var82 = var0.location(); + SpaceWar.SpacePanel var83 = new SpaceWar.SpacePanel(); + java.awt.Color var84 = var83.getBackground(); + var83.repaint(); + java.awt.im.InputMethodRequests var86 = var83.getInputMethodRequests(); + var83.setDoubleBuffered(true); + var83.show(false); + var83.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", (-1), 24); + boolean var95 = var83.getAutoscrolls(); + java.awt.Graphics var96 = var83.getGraphics(); + java.awt.Dimension var97 = var83.getMaximumSize(); + var0.setMaximumSize(var97); + java.awt.Rectangle var99 = var0.getBounds(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var32 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var33); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var35 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var38 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var39); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var43 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var47); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var50 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var53 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var54); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var57); + + // Regression assertion (captures the current behavior of the code) + assertNull(var59); + + // Regression assertion (captures the current behavior of the code) + assertNull(var60); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var63 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var69 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var73); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var77 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var78); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var82); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var84); + + // Regression assertion (captures the current behavior of the code) + assertNull(var86); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var95 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var96); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var97); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var99); + + } + + public void test184() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test184"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + boolean var2 = var0.hasFocus(); + boolean var3 = var0.isPreferredSizeSet(); + var0.firePropertyChange("", (short)1, (short)0); + boolean var8 = var0.isMaximumSizeSet(); + java.awt.image.ColorModel var9 = var0.getColorModel(); + var0.enableInputMethods(true); + boolean var12 = var0.isPaintingForPrint(); + boolean var13 = var0.isValidateRoot(); + boolean var14 = var0.isOptimizedDrawingEnabled(); + java.awt.Insets var15 = var0.getInsets(); + java.awt.Component var18 = var0.getComponentAt(500, 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var2 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var9); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNull(var18); + + } + + public void test185() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test185"); + + + SpaceWar.Text var4 = new SpaceWar.Text(495.44236387443226d, 226.53068162065512d, 10L, "SpaceWar.SpacePanel[,0,0,0x0,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=java.awt.Dimension[width=800,height=600],minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + + } + + public void test186() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test186"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + var0.list(); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + float var7 = var6.getAlignmentX(); + var6.setVisible(false); + boolean var10 = var6.isDoubleBuffered(); + java.awt.dnd.DropTarget var11 = var6.getDropTarget(); + var6.show(false); + java.awt.Rectangle var14 = var6.getVisibleRect(); + java.awt.Rectangle var15 = var0.getBounds(var14); + javax.swing.JToolTip var16 = var0.createToolTip(); + var0.firePropertyChange("", false, false); + var0.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", (-1L), (-1L)); + java.beans.VetoableChangeListener[] var25 = var0.getVetoableChangeListeners(); + var0.setFocusTraversalKeysEnabled(false); + java.awt.event.MouseWheelListener[] var28 = var0.getMouseWheelListeners(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var25); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var28); + + } + + public void test187() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test187"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.updateUI(); + var0.enableInputMethods(true); + java.lang.String var8 = var0.toString(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.setVisible(false); + boolean var13 = var9.isDoubleBuffered(); + java.awt.dnd.DropTarget var14 = var9.getDropTarget(); + var9.show(false); + java.awt.Rectangle var17 = var9.getVisibleRect(); + java.awt.image.BufferedImage var19 = var9.loadImg("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + java.awt.ComponentOrientation var20 = var9.getComponentOrientation(); + boolean var21 = var9.isPaintingTile(); + boolean var22 = var9.isOptimizedDrawingEnabled(); + int var23 = var0.getComponentZOrder((java.awt.Component)var9); + boolean var24 = var0.isFocusable(); + // The following exception was thrown during execution. + // This behavior will recorded for regression testing. + try { + java.awt.Component var26 = var0.getComponent(3); + fail("Expected exception of type java.lang.ArrayIndexOutOfBoundsException"); + } catch (java.lang.ArrayIndexOutOfBoundsException e) { + // Expected exception. + } + + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var8 + "' != '" + "SpaceWar.SpacePanel[,0,0,0var8,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"+ "'", var8.equals("SpaceWar.SpacePanel[,0,0,0var8,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]")); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var22 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == (-1)); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var24 == true); + + } + + public void test188() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test188"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + var0.enable(false); + boolean var7 = var0.getFocusTraversalKeysEnabled(); + var0.setToolTipText("PanelUI"); + int var10 = var0.getDebugGraphicsOptions(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0); + + } + + public void test189() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test189"); + + + SpaceWar.Player var0 = new SpaceWar.Player(); + int var1 = var0.getPower(); + var0.setLeft(true); + var0.increasePower(0); + int var6 = var0.getR(); + int var7 = var0.getLives(); + int var8 = var0.getPowerLevel(); + var0.setDown(false); + boolean var11 = var0.isRecovering(); + int var12 = var0.getY(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == 25); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 3); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == 500); + + } + + public void test190() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test190"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + var0.enable(false); + SpaceWar.SpacePanel var7 = new SpaceWar.SpacePanel(); + float var8 = var7.getAlignmentX(); + boolean var9 = var7.hasFocus(); + java.awt.Insets var10 = var7.getInsets(); + java.awt.Rectangle var11 = var7.bounds(); + var0.repaint(var11); + boolean var13 = var0.hasFocus(); + float var14 = var0.getAlignmentX(); + boolean var15 = var0.isCursorSet(); + java.beans.VetoableChangeListener[] var16 = var0.getVetoableChangeListeners(); + var0.layout(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + } + + public void test191() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test191"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + SpaceWar.SpacePanel var4 = new SpaceWar.SpacePanel(); + java.awt.Color var5 = var4.getBackground(); + var0.setForeground(var5); + SpaceWar.SpacePanel var7 = new SpaceWar.SpacePanel(); + float var8 = var7.getAlignmentX(); + var7.setVisible(false); + boolean var11 = var7.isDoubleBuffered(); + java.awt.dnd.DropTarget var12 = var7.getDropTarget(); + var7.show(false); + java.awt.Rectangle var15 = var7.getVisibleRect(); + var0.repaint(var15); + java.awt.FocusTraversalPolicy var17 = var0.getFocusTraversalPolicy(); + java.awt.im.InputMethodRequests var18 = var0.getInputMethodRequests(); + javax.swing.JToolTip var19 = var0.createToolTip(); + float var20 = var19.getAlignmentY(); + var19.repaint(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == 0.5f); + + } + + public void test192() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test192"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + var0.show(false); + boolean var8 = var0.isPaintingForPrint(); + java.awt.Component.BaselineResizeBehavior var9 = var0.getBaselineResizeBehavior(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var9); + + } + + public void test193() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test193"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + var0.show(false); + boolean var8 = var0.isPaintingForPrint(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var15 = var9.getMouseListeners(); + int var16 = var9.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var17 = var9.getInputMethodRequests(); + var0.addKeyListener((java.awt.event.KeyListener)var9); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + float var20 = var19.getAlignmentX(); + var19.setVisible(false); + boolean var23 = var19.isDoubleBuffered(); + var19.list(); + float var25 = var19.getAlignmentY(); + boolean var26 = var9.isFocusCycleRoot((java.awt.Container)var19); + SpaceWar.SpacePanel var28 = new SpaceWar.SpacePanel(); + float var29 = var28.getAlignmentX(); + var28.setVisible(false); + var28.nextFocus(); + var28.updateUI(); + java.awt.Component var34 = var9.add("", (java.awt.Component)var28); + javax.swing.border.Border var35 = var9.getBorder(); + boolean var36 = var9.isLightweight(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var29 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var34); + + // Regression assertion (captures the current behavior of the code) + assertNull(var35); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var36 == false); + + } + + public void test194() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test194"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.updateUI(); + var0.enableInputMethods(true); + java.awt.Point var9 = var0.getMousePosition(false); + java.awt.Point var10 = var0.getMousePosition(); + var0.revalidate(); + java.awt.Point var13 = var0.getMousePosition(false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNull(var9); + + // Regression assertion (captures the current behavior of the code) + assertNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertNull(var13); + + } + + public void test195() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test195"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + var0.setRequestFocusEnabled(false); + var0.setIgnoreRepaint(false); + boolean var7 = var0.isFocusable(); + java.awt.event.FocusListener[] var8 = var0.getFocusListeners(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var8); + + } + + public void test196() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test196"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var6 = var0.getMouseListeners(); + int var7 = var0.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var8 = var0.getInputMethodRequests(); + var0.setToolTipText(""); + var0.enable(); + SpaceWar.SpacePanel var12 = new SpaceWar.SpacePanel(); + float var13 = var12.getAlignmentX(); + var12.setVisible(false); + var12.nextFocus(); + var12.updateUI(); + var12.enableInputMethods(true); + java.awt.Point var20 = var12.location(); + SpaceWar.SpacePanel var21 = new SpaceWar.SpacePanel(); + float var22 = var21.getAlignmentX(); + var21.setVisible(false); + var21.nextFocus(); + java.awt.Component var26 = var12.add((java.awt.Component)var21); + SpaceWar.SpacePanel var27 = new SpaceWar.SpacePanel(); + float var28 = var27.getAlignmentX(); + var27.setVisible(false); + var27.nextFocus(); + var27.updateUI(); + var27.enableInputMethods(true); + java.awt.Point var36 = var27.getMousePosition(false); + SpaceWar.SpacePanel var37 = new SpaceWar.SpacePanel(); + float var38 = var37.getAlignmentX(); + SpaceWar.SpacePanel var39 = new SpaceWar.SpacePanel(); + float var40 = var39.getAlignmentX(); + var39.setVisible(false); + java.awt.Dimension var43 = var39.getPreferredSize(); + boolean var44 = var39.getVerifyInputWhenFocusTarget(); + java.awt.Component var47 = var39.findComponentAt(10, 1); + var37.addKeyListener((java.awt.event.KeyListener)var39); + var39.repaint(100, (-1), (-1), 1); + SpaceWar.SpacePanel var54 = new SpaceWar.SpacePanel(); + java.awt.Color var55 = var54.getBackground(); + var54.repaint(); + java.awt.im.InputMethodRequests var57 = var54.getInputMethodRequests(); + java.awt.GraphicsConfiguration var58 = var54.getGraphicsConfiguration(); + var39.remove((java.awt.Component)var54); + java.awt.Font var60 = var54.getFont(); + var27.setFont(var60); + var21.setFont(var60); + java.awt.FontMetrics var63 = var0.getFontMetrics(var60); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var22 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var28 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNull(var36); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var38 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var40 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var43); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var44 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var47); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var55); + + // Regression assertion (captures the current behavior of the code) + assertNull(var57); + + // Regression assertion (captures the current behavior of the code) + assertNull(var58); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var60); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var63); + + } + + public void test197() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test197"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + var0.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + javax.swing.plaf.PanelUI var5 = var0.getUI(); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + float var7 = var6.getAlignmentX(); + var6.setVisible(false); + var6.nextFocus(); + var6.repaint(1L); + SpaceWar.SpacePanel var13 = new SpaceWar.SpacePanel(); + float var14 = var13.getAlignmentX(); + var13.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + float var20 = var19.getAlignmentX(); + var19.setVisible(false); + java.awt.Dimension var23 = var19.getPreferredSize(); + var13.setMaximumSize(var23); + var6.setPreferredSize(var23); + var0.setMaximumSize(var23); + var0.setAutoscrolls(false); + java.awt.Point var29 = var0.getMousePosition(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var23); + + // Regression assertion (captures the current behavior of the code) + assertNull(var29); + + } + + public void test198() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test198"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + var0.list(); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + float var7 = var6.getAlignmentX(); + var6.setVisible(false); + boolean var10 = var6.isDoubleBuffered(); + java.awt.dnd.DropTarget var11 = var6.getDropTarget(); + var6.show(false); + java.awt.Rectangle var14 = var6.getVisibleRect(); + java.awt.image.BufferedImage var16 = var6.loadImg("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + boolean var17 = var0.isAncestorOf((java.awt.Component)var6); + java.awt.Component var20 = var6.getComponentAt(499, 100); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var20); + + } + + public void test199() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test199"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var6 = var0.getMouseListeners(); + int var7 = var0.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var8 = var0.getInputMethodRequests(); + java.awt.Point var9 = var0.getMousePosition(); + SpaceWar.SpacePanel var10 = new SpaceWar.SpacePanel(); + float var11 = var10.getAlignmentX(); + var10.setVisible(false); + var10.setInheritsPopupMenu(false); + boolean var16 = var10.isDoubleBuffered(); + boolean var17 = var10.isMinimumSizeSet(); + java.awt.Font var18 = var10.getFont(); + var0.setFont(var18); + boolean var20 = var0.isDoubleBuffered(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertNull(var9); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == true); + + } + + public void test200() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test200"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + boolean var6 = var0.isFocusCycleRoot(); + var0.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", 100, 0); + SpaceWar.SpacePanel var11 = new SpaceWar.SpacePanel(); + float var12 = var11.getAlignmentX(); + var11.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var17 = var11.getUI(); + var0.setNextFocusableComponent((java.awt.Component)var11); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + var19.setName(""); + java.awt.Toolkit var22 = var19.getToolkit(); + var19.setEnabled(false); + var11.removeKeyListener((java.awt.event.KeyListener)var19); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var22); + + } + + public void test201() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test201"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.repaint(1L); + SpaceWar.SpacePanel var7 = new SpaceWar.SpacePanel(); + float var8 = var7.getAlignmentX(); + var7.setVisible(false); + boolean var11 = var7.isDoubleBuffered(); + var7.list(); + SpaceWar.SpacePanel var13 = new SpaceWar.SpacePanel(); + float var14 = var13.getAlignmentX(); + var13.setVisible(false); + boolean var17 = var13.isDoubleBuffered(); + java.awt.dnd.DropTarget var18 = var13.getDropTarget(); + var13.show(false); + java.awt.Rectangle var21 = var13.getVisibleRect(); + java.awt.Rectangle var22 = var7.getBounds(var21); + var0.setBounds(var22); + SpaceWar.SpacePanel var24 = new SpaceWar.SpacePanel(); + float var25 = var24.getAlignmentX(); + var24.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var30 = var24.getMouseListeners(); + int var31 = var24.getDebugGraphicsOptions(); + java.awt.Color var32 = var24.getBackground(); + var0.setForeground(var32); + var0.setDoubleBuffered(true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var21); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var30); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var31 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var32); + + } + + public void test202() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test202"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + var0.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + java.awt.event.ContainerListener[] var5 = var0.getContainerListeners(); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + float var7 = var6.getAlignmentX(); + var6.setVisible(false); + var6.setInheritsPopupMenu(false); + boolean var12 = var6.isDoubleBuffered(); + SpaceWar.SpacePanel var13 = new SpaceWar.SpacePanel(); + float var14 = var13.getAlignmentX(); + var13.setVisible(false); + var13.nextFocus(); + var13.reshape((-1), 1, (-1), 10); + var13.disable(); + java.awt.LayoutManager var24 = var13.getLayout(); + var6.setLayout(var24); + var0.setLayout(var24); + SpaceWar.SpacePanel var27 = new SpaceWar.SpacePanel(); + float var28 = var27.getAlignmentX(); + var27.setVisible(false); + boolean var31 = var27.isDoubleBuffered(); + var27.list(); + float var33 = var27.getAlignmentY(); + boolean var34 = var27.isOpaque(); + var27.nextFocus(); + int var36 = var0.getComponentZOrder((java.awt.Component)var27); + java.awt.Component var39 = var0.findComponentAt(500, (-1)); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var28 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var31 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var33 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var34 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var36 == (-1)); + + // Regression assertion (captures the current behavior of the code) + assertNull(var39); + + } + + public void test203() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test203"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var6 = var0.getMouseListeners(); + java.awt.Dimension var7 = var0.getPreferredSize(); + int var10 = var0.getBaseline(1, 1); + var0.show(false); + var0.doLayout(); + java.awt.Point var14 = var0.location(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == (-1)); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + } + + public void test204() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test204"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + java.awt.Dimension var4 = var0.getPreferredSize(); + boolean var5 = var0.getVerifyInputWhenFocusTarget(); + java.awt.Component var8 = var0.findComponentAt(10, 1); + boolean var9 = var0.isCursorSet(); + java.awt.Dimension var10 = var0.getMinimumSize(); + javax.swing.InputMap var11 = var0.getInputMap(); + javax.swing.KeyStroke[] var12 = var0.getRegisteredKeyStrokes(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var4); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var12); + + } + + public void test205() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test205"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + float var7 = var6.getAlignmentX(); + var6.setVisible(false); + java.awt.Dimension var10 = var6.getPreferredSize(); + var0.setMaximumSize(var10); + boolean var12 = var0.getVerifyInputWhenFocusTarget(); + int var13 = var0.getX(); + java.awt.Rectangle var14 = var0.bounds(); + var0.grabFocus(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + } + + public void test206() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test206"); + + + SpaceWar.Player var0 = new SpaceWar.Player(); + int var1 = var0.getR(); + var0.setRigth(false); + var0.setLife(100); + var0.setDown(false); + var0.loseLife(); + var0.setLeft(false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 25); + + } + + public void test207() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test207"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + java.awt.Dimension var4 = var0.getPreferredSize(); + java.awt.Toolkit var5 = var0.getToolkit(); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + var6.setName(""); + int var9 = var6.getX(); + SpaceWar.SpacePanel var10 = new SpaceWar.SpacePanel(); + float var11 = var10.getAlignmentX(); + var10.setVisible(false); + var10.nextFocus(); + SpaceWar.SpacePanel var15 = new SpaceWar.SpacePanel(); + float var16 = var15.getAlignmentX(); + var15.setVisible(false); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + java.awt.Color var20 = var19.getBackground(); + var15.setForeground(var20); + var10.setBackground(var20); + var6.setBackground(var20); + var0.setForeground(var20); + int var25 = var0.countComponents(); + java.awt.peer.ComponentPeer var26 = var0.getPeer(); + var0.firePropertyChange("SpaceWar.SpacePanel[,-1,100,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=265,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", (byte)0, (byte)(-1)); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var4); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var26); + + } + + public void test208() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test208"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.repaint(1L); + var0.firePropertyChange("", (short)(-1), (short)(-1)); + java.awt.Component var13 = var0.getComponentAt(0, 100); + var0.nextFocus(); + boolean var15 = var0.isVisible(); + SpaceWar.SpacePanel var16 = new SpaceWar.SpacePanel(); + float var17 = var16.getAlignmentX(); + SpaceWar.SpacePanel var18 = new SpaceWar.SpacePanel(); + float var19 = var18.getAlignmentX(); + var18.setVisible(false); + java.awt.Dimension var22 = var18.getPreferredSize(); + boolean var23 = var18.getVerifyInputWhenFocusTarget(); + java.awt.Component var26 = var18.findComponentAt(10, 1); + var16.addKeyListener((java.awt.event.KeyListener)var18); + var18.repaint(100, (-1), (-1), 1); + SpaceWar.SpacePanel var33 = new SpaceWar.SpacePanel(); + java.awt.Color var34 = var33.getBackground(); + var33.repaint(); + java.awt.im.InputMethodRequests var36 = var33.getInputMethodRequests(); + java.awt.GraphicsConfiguration var37 = var33.getGraphicsConfiguration(); + var18.remove((java.awt.Component)var33); + var18.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", 0.0f, 1.0f); + SpaceWar.SpacePanel var43 = new SpaceWar.SpacePanel(); + float var44 = var43.getAlignmentX(); + var43.setVisible(false); + java.awt.Dimension var47 = var43.getPreferredSize(); + boolean var48 = var43.getVerifyInputWhenFocusTarget(); + SpaceWar.SpacePanel var49 = new SpaceWar.SpacePanel(); + var49.setName(""); + int var52 = var49.getX(); + SpaceWar.SpacePanel var53 = new SpaceWar.SpacePanel(); + float var54 = var53.getAlignmentX(); + var53.setVisible(false); + var53.nextFocus(); + SpaceWar.SpacePanel var58 = new SpaceWar.SpacePanel(); + float var59 = var58.getAlignmentX(); + var58.setVisible(false); + SpaceWar.SpacePanel var62 = new SpaceWar.SpacePanel(); + java.awt.Color var63 = var62.getBackground(); + var58.setForeground(var63); + var53.setBackground(var63); + var49.setBackground(var63); + var18.add((java.awt.Component)var43, (java.lang.Object)var49); + java.awt.Point var68 = var43.location(); + boolean var69 = var0.contains(var68); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var34); + + // Regression assertion (captures the current behavior of the code) + assertNull(var36); + + // Regression assertion (captures the current behavior of the code) + assertNull(var37); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var44 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var47); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var48 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var52 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var54 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var59 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var63); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var68); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var69 == false); + + } + + public void test209() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test209"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + var0.setName(""); + java.awt.Graphics var3 = var0.getGraphics(); + java.awt.event.MouseMotionListener[] var4 = var0.getMouseMotionListeners(); + boolean var5 = var0.getIgnoreRepaint(); + var0.transferFocusBackward(); + var0.move(100, 2); + java.beans.PropertyChangeListener[] var11 = var0.getPropertyChangeListeners("SpaceWar.SpacePanel[,-1,100,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=265,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + + // Regression assertion (captures the current behavior of the code) + assertNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var4); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + } + + public void test210() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test210"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + java.awt.Dimension var4 = var0.getPreferredSize(); + java.awt.Toolkit var5 = var0.getToolkit(); + java.awt.Toolkit var6 = var0.getToolkit(); + var0.firePropertyChange("hi!", 25, 1); + SpaceWar.SpacePanel var11 = new SpaceWar.SpacePanel(); + float var12 = var11.getAlignmentX(); + var11.setVisible(false); + boolean var15 = var11.isDoubleBuffered(); + var11.list(); + float var17 = var11.getAlignmentY(); + java.awt.Insets var18 = var11.getInsets(); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + float var20 = var19.getAlignmentX(); + var19.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var25 = var19.getMouseListeners(); + var19.firePropertyChange("", 0.5f, 100.0f); + var19.enable(false); + SpaceWar.SpacePanel var32 = new SpaceWar.SpacePanel(); + float var33 = var32.getAlignmentX(); + SpaceWar.SpacePanel var34 = new SpaceWar.SpacePanel(); + float var35 = var34.getAlignmentX(); + var34.setVisible(false); + java.awt.Dimension var38 = var34.getPreferredSize(); + boolean var39 = var34.getVerifyInputWhenFocusTarget(); + java.awt.Component var42 = var34.findComponentAt(10, 1); + var32.addKeyListener((java.awt.event.KeyListener)var34); + java.awt.Cursor var44 = var32.getCursor(); + java.awt.Dimension var45 = var32.getMinimumSize(); + var19.setSize(var45); + java.awt.Dimension var47 = var11.getSize(var45); + var0.setMinimumSize(var45); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var4); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var25); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var33 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var35 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var38); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var39 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var42); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var44); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var45); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var47); + + } + + public void test211() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test211"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + var0.list(); + float var6 = var0.getAlignmentY(); + java.awt.event.ComponentListener[] var7 = var0.getComponentListeners(); + java.awt.Component var8 = var0.getNextFocusableComponent(); + boolean var9 = var0.isManagingFocus(); + javax.swing.border.Border var10 = var0.getBorder(); + SpaceWar.SpacePanel var11 = new SpaceWar.SpacePanel(); + float var12 = var11.getAlignmentX(); + var11.setVisible(false); + boolean var15 = var11.isDoubleBuffered(); + java.awt.dnd.DropTarget var16 = var11.getDropTarget(); + var11.show(false); + boolean var19 = var11.isPaintingForPrint(); + SpaceWar.SpacePanel var20 = new SpaceWar.SpacePanel(); + float var21 = var20.getAlignmentX(); + var20.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var26 = var20.getMouseListeners(); + int var27 = var20.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var28 = var20.getInputMethodRequests(); + var11.addKeyListener((java.awt.event.KeyListener)var20); + SpaceWar.SpacePanel var30 = new SpaceWar.SpacePanel(); + float var31 = var30.getAlignmentX(); + var30.setVisible(false); + boolean var34 = var30.isDoubleBuffered(); + var30.list(); + float var36 = var30.getAlignmentY(); + boolean var37 = var20.isFocusCycleRoot((java.awt.Container)var30); + var30.firePropertyChange("", 1L, 1L); + var30.setVerifyInputWhenFocusTarget(true); + var30.resize(25, 400); + java.awt.event.ComponentListener[] var47 = var30.getComponentListeners(); + boolean var48 = var30.isBackgroundSet(); + boolean var49 = var30.isFontSet(); + SpaceWar.SpacePanel var50 = new SpaceWar.SpacePanel(); + var50.setName(""); + var50.enable(true); + var50.enable(); + java.awt.Point var56 = var50.location(); + var50.repaint(0, 3, (-1), 1); + var50.setBounds(25, 100, 1, 0); + var0.putClientProperty((java.lang.Object)var49, (java.lang.Object)1); + java.awt.Component.BaselineResizeBehavior var68 = var0.getBaselineResizeBehavior(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var28); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var31 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var34 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var36 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var47); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var48 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var49 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var56); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var68); + + } + + public void test212() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test212"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + java.awt.im.InputMethodRequests var3 = var0.getInputMethodRequests(); + int var4 = var0.countComponents(); + java.awt.event.ComponentListener[] var5 = var0.getComponentListeners(); + var0.transferFocusBackward(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + boolean var12 = var8.isDoubleBuffered(); + var8.enable(false); + SpaceWar.SpacePanel var15 = new SpaceWar.SpacePanel(); + float var16 = var15.getAlignmentX(); + boolean var17 = var15.hasFocus(); + java.awt.Insets var18 = var15.getInsets(); + java.awt.Rectangle var19 = var15.bounds(); + var8.repaint(var19); + java.awt.Component var21 = var0.add("", (java.awt.Component)var8); + SpaceWar.SpacePanel var22 = new SpaceWar.SpacePanel(); + java.awt.Color var23 = var22.getBackground(); + var22.repaint(); + var22.setRequestFocusEnabled(false); + var22.setIgnoreRepaint(false); + java.lang.String var29 = var22.toString(); + java.awt.Color var30 = var22.getBackground(); + var8.setBackground(var30); + java.awt.Point var32 = var8.location(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var21); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var23); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var29 + "' != '" + "SpaceWar.SpacePanel[,0,0,0var29,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"+ "'", var29.equals("SpaceWar.SpacePanel[,0,0,0var29,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]")); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var30); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var32); + + } + + public void test213() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test213"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + javax.swing.plaf.PanelUI var3 = var0.getUI(); + SpaceWar.SpacePanel var4 = new SpaceWar.SpacePanel(); + float var5 = var4.getAlignmentX(); + var4.setVisible(false); + boolean var8 = var4.isDoubleBuffered(); + java.awt.dnd.DropTarget var9 = var4.getDropTarget(); + var4.show(false); + boolean var12 = var4.isPaintingForPrint(); + SpaceWar.SpacePanel var13 = new SpaceWar.SpacePanel(); + float var14 = var13.getAlignmentX(); + var13.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var19 = var13.getMouseListeners(); + int var20 = var13.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var21 = var13.getInputMethodRequests(); + var4.addKeyListener((java.awt.event.KeyListener)var13); + SpaceWar.SpacePanel var23 = new SpaceWar.SpacePanel(); + float var24 = var23.getAlignmentX(); + var23.setVisible(false); + boolean var27 = var23.isDoubleBuffered(); + var23.list(); + float var29 = var23.getAlignmentY(); + boolean var30 = var13.isFocusCycleRoot((java.awt.Container)var23); + SpaceWar.SpacePanel var32 = new SpaceWar.SpacePanel(); + float var33 = var32.getAlignmentX(); + var32.setVisible(false); + var32.nextFocus(); + var32.updateUI(); + java.awt.Component var38 = var13.add("", (java.awt.Component)var32); + java.awt.ComponentOrientation var39 = var32.getComponentOrientation(); + boolean var40 = var32.isFocusable(); + var0.remove((java.awt.Component)var32); + var0.hide(); + var0.setToolTipText("hi!"); + boolean var45 = var0.hasFocus(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var9); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var21); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var24 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var29 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var30 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var33 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var38); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var39); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var40 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var45 == false); + + } + + public void test214() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test214"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + var0.setRequestFocusEnabled(false); + var0.setIgnoreRepaint(false); + java.lang.String var7 = var0.toString(); + java.awt.Color var8 = var0.getBackground(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.setVisible(false); + boolean var13 = var9.isDoubleBuffered(); + var9.list(); + SpaceWar.SpacePanel var15 = new SpaceWar.SpacePanel(); + float var16 = var15.getAlignmentX(); + var15.setVisible(false); + boolean var19 = var15.isDoubleBuffered(); + java.awt.dnd.DropTarget var20 = var15.getDropTarget(); + var15.show(false); + java.awt.Rectangle var23 = var15.getVisibleRect(); + java.awt.image.BufferedImage var25 = var15.loadImg("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + boolean var26 = var9.isAncestorOf((java.awt.Component)var15); + java.awt.GraphicsConfiguration var27 = var15.getGraphicsConfiguration(); + java.awt.Font var28 = var15.getFont(); + java.awt.Component var29 = var0.add((java.awt.Component)var15); + int var30 = var0.getX(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var7 + "' != '" + "SpaceWar.SpacePanel[,0,0,0var7,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"+ "'", var7.equals("SpaceWar.SpacePanel[,0,0,0var7,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]")); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var23); + + // Regression assertion (captures the current behavior of the code) + assertNull(var25); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var27); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var28); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var29); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var30 == 0); + + } + + public void test215() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test215"); + + + SpaceWar.Enemy var2 = new SpaceWar.Enemy(0, 100); + int var3 = var2.getR(); + java.awt.image.BufferedImage var5 = var2.loadImg("SpaceWar.SpacePanel[,0,0,0x0,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + var2.hit(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + } + + public void test216() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test216"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + var0.show(false); + boolean var8 = var0.isPaintingForPrint(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var15 = var9.getMouseListeners(); + int var16 = var9.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var17 = var9.getInputMethodRequests(); + var0.addKeyListener((java.awt.event.KeyListener)var9); + java.awt.Dimension var19 = var9.getPreferredSize(); + var9.setRequestFocusEnabled(true); + var9.requestFocus(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var19); + + } + + public void test217() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test217"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + java.awt.im.InputMethodRequests var3 = var0.getInputMethodRequests(); + var0.setDoubleBuffered(true); + var0.setInheritsPopupMenu(false); + javax.swing.plaf.PanelUI var8 = var0.getUI(); + java.util.Set var10 = var0.getFocusTraversalKeys(3); + var0.requestFocus(); + var0.setLocation(0, 24); + var0.setFocusTraversalPolicyProvider(true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var10); + + } + + public void test218() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test218"); + + + SpaceWar.Player var0 = new SpaceWar.Player(); + boolean var1 = var0.isRecovering(); + int var2 = var0.getRequiredPower(); + var0.setDown(false); + var0.setRigth(false); + int var7 = var0.getPower(); + var0.setFiring(true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var2 == 1); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0); + + } + + public void test219() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test219"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.reshape((-1), 1, (-1), 10); + var0.disable(); + java.awt.LayoutManager var11 = var0.getLayout(); + java.awt.Container var12 = var0.getParent(); + java.lang.String var13 = var0.getUIClassID(); + var0.setVerifyInputWhenFocusTarget(true); + boolean var16 = var0.isRequestFocusEnabled(); + var0.setVerifyInputWhenFocusTarget(false); + java.awt.event.ComponentListener[] var19 = var0.getComponentListeners(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var13 + "' != '" + "PanelUI"+ "'", var13.equals("PanelUI")); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var19); + + } + + public void test220() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test220"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var6 = var0.getUI(); + java.awt.im.InputMethodRequests var7 = var0.getInputMethodRequests(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + var8.nextFocus(); + var8.updateUI(); + var8.enableInputMethods(true); + var8.setSize((-1), 1); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + var19.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var0.add((java.awt.Component)var8, (java.lang.Object)"SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + java.awt.ComponentOrientation var25 = var8.getComponentOrientation(); + boolean var26 = var8.isMaximumSizeSet(); + SpaceWar.SpacePanel var27 = new SpaceWar.SpacePanel(); + float var28 = var27.getAlignmentX(); + var27.setVisible(false); + boolean var31 = var27.isDoubleBuffered(); + java.awt.dnd.DropTarget var32 = var27.getDropTarget(); + var27.show(false); + boolean var35 = var27.isPaintingForPrint(); + SpaceWar.SpacePanel var36 = new SpaceWar.SpacePanel(); + float var37 = var36.getAlignmentX(); + var36.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var42 = var36.getMouseListeners(); + int var43 = var36.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var44 = var36.getInputMethodRequests(); + var27.addKeyListener((java.awt.event.KeyListener)var36); + SpaceWar.SpacePanel var46 = new SpaceWar.SpacePanel(); + float var47 = var46.getAlignmentX(); + var46.setVisible(false); + boolean var50 = var46.isDoubleBuffered(); + var46.list(); + float var52 = var46.getAlignmentY(); + boolean var53 = var36.isFocusCycleRoot((java.awt.Container)var46); + boolean var54 = var46.isEnabled(); + java.awt.Dimension var55 = var46.getMaximumSize(); + var8.setMinimumSize(var55); + var8.disable(); + int var58 = var8.getComponentCount(); + var8.setAutoscrolls(true); + java.awt.image.VolatileImage var63 = var8.createVolatileImage(100, 2); + java.awt.Dimension var64 = var8.getSize(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var25); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var28 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var31 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var32); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var35 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var42); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var43 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var44); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var47 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var50 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var52 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var53 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var54 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var55); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var58 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var63); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var64); + + } + + public void test221() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test221"); + + + SpaceWar.Player var0 = new SpaceWar.Player(); + int var1 = var0.getPower(); + var0.setLeft(true); + var0.increasePower(0); + boolean var6 = var0.isDead(); + int var7 = var0.getPower(); + var0.increasePower(10); + boolean var10 = var0.isDead(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == false); + + } + + public void test222() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test222"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + java.awt.im.InputMethodRequests var3 = var0.getInputMethodRequests(); + var0.setDoubleBuffered(true); + var0.setInheritsPopupMenu(false); + javax.swing.plaf.PanelUI var8 = var0.getUI(); + java.util.Set var10 = var0.getFocusTraversalKeys(3); + var0.requestFocus(); + var0.setAutoscrolls(false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var10); + + } + + public void test223() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test223"); + + + SpaceWar.Player var0 = new SpaceWar.Player(); + int var1 = var0.getPower(); + var0.setLeft(true); + var0.increasePower(0); + int var6 = var0.getR(); + var0.setUp(false); + var0.setLeft(true); + var0.setFiring(true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == 25); + + } + + public void test224() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test224"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + var0.enable(false); + boolean var7 = var0.getFocusTraversalKeysEnabled(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + java.awt.Dimension var12 = var8.getPreferredSize(); + java.awt.Toolkit var13 = var8.getToolkit(); + boolean var14 = var8.isFocusable(); + javax.swing.KeyStroke[] var15 = var8.getRegisteredKeyStrokes(); + SpaceWar.SpacePanel var16 = new SpaceWar.SpacePanel(); + float var17 = var16.getAlignmentX(); + SpaceWar.SpacePanel var18 = new SpaceWar.SpacePanel(); + float var19 = var18.getAlignmentX(); + var18.setVisible(false); + java.awt.Dimension var22 = var18.getPreferredSize(); + boolean var23 = var18.getVerifyInputWhenFocusTarget(); + java.awt.Component var26 = var18.findComponentAt(10, 1); + var16.addKeyListener((java.awt.event.KeyListener)var18); + var18.repaint(100, (-1), (-1), 1); + boolean var33 = var8.isAncestorOf((java.awt.Component)var18); + var0.addKeyListener((java.awt.event.KeyListener)var18); + SpaceWar.SpacePanel var36 = new SpaceWar.SpacePanel(); + float var37 = var36.getAlignmentX(); + var36.setVisible(false); + boolean var40 = var36.isDoubleBuffered(); + java.awt.dnd.DropTarget var41 = var36.getDropTarget(); + var36.show(false); + boolean var44 = var36.isPaintingForPrint(); + SpaceWar.SpacePanel var45 = new SpaceWar.SpacePanel(); + float var46 = var45.getAlignmentX(); + var45.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var51 = var45.getMouseListeners(); + int var52 = var45.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var53 = var45.getInputMethodRequests(); + var36.addKeyListener((java.awt.event.KeyListener)var45); + SpaceWar.SpacePanel var55 = new SpaceWar.SpacePanel(); + float var56 = var55.getAlignmentX(); + var55.setVisible(false); + boolean var59 = var55.isDoubleBuffered(); + var55.list(); + float var61 = var55.getAlignmentY(); + boolean var62 = var45.isFocusCycleRoot((java.awt.Container)var55); + SpaceWar.SpacePanel var64 = new SpaceWar.SpacePanel(); + float var65 = var64.getAlignmentX(); + var64.setVisible(false); + var64.nextFocus(); + var64.updateUI(); + java.awt.Component var70 = var45.add("", (java.awt.Component)var64); + java.awt.Component var71 = var18.add("", (java.awt.Component)var64); + java.awt.Point var72 = var18.getMousePosition(); + boolean var73 = var18.getInheritsPopupMenu(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var33 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var40 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var41); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var44 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var46 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var51); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var52 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var53); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var56 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var59 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var61 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var62 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var65 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var70); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var71); + + // Regression assertion (captures the current behavior of the code) + assertNull(var72); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var73 == false); + + } + + public void test225() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test225"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + var0.show(false); + boolean var8 = var0.isPaintingForPrint(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var15 = var9.getMouseListeners(); + int var16 = var9.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var17 = var9.getInputMethodRequests(); + var0.addKeyListener((java.awt.event.KeyListener)var9); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + float var20 = var19.getAlignmentX(); + var19.setVisible(false); + boolean var23 = var19.isDoubleBuffered(); + var19.list(); + float var25 = var19.getAlignmentY(); + boolean var26 = var9.isFocusCycleRoot((java.awt.Container)var19); + javax.swing.JPopupMenu var27 = var19.getComponentPopupMenu(); + boolean var28 = var19.hasFocus(); + var19.repaint((-1L)); + var19.nextFocus(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var27); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var28 == false); + + } + + public void test226() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test226"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + var0.show(false); + boolean var8 = var0.isPaintingForPrint(); + boolean var9 = var0.getIgnoreRepaint(); + javax.swing.event.AncestorListener[] var10 = var0.getAncestorListeners(); + var0.setAlignmentY(100.0f); + java.awt.Container var13 = var0.getTopLevelAncestor(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertNull(var13); + + } + + public void test227() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test227"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + java.awt.Point var6 = var0.getMousePosition(); + java.lang.String var7 = var0.getUIClassID(); + var0.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", '#', '4'); + boolean var12 = var0.requestDefaultFocus(); + SpaceWar.SpacePanel var13 = new SpaceWar.SpacePanel(); + float var14 = var13.getAlignmentX(); + var13.setVisible(false); + SpaceWar.SpacePanel var17 = new SpaceWar.SpacePanel(); + java.awt.Color var18 = var17.getBackground(); + var13.setForeground(var18); + SpaceWar.SpacePanel var20 = new SpaceWar.SpacePanel(); + float var21 = var20.getAlignmentX(); + var20.setVisible(false); + boolean var24 = var20.isDoubleBuffered(); + java.awt.dnd.DropTarget var25 = var20.getDropTarget(); + var20.show(false); + java.awt.Rectangle var28 = var20.getVisibleRect(); + var13.repaint(var28); + SpaceWar.SpacePanel var30 = new SpaceWar.SpacePanel(); + float var31 = var30.getAlignmentX(); + var30.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var36 = var30.getMouseListeners(); + java.awt.Dimension var37 = var30.getPreferredSize(); + java.util.Locale var38 = var30.getLocale(); + var13.setLocale(var38); + var0.setLocale(var38); + var0.firePropertyChange("SpaceWar.SpacePanel[,-1,1,-1x10,invalid,hidden,disabled,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", 100.0f, 1.0f); + var0.repaint(24, 0, 24, 399); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var7 + "' != '" + "PanelUI"+ "'", var7.equals("PanelUI")); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var24 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var25); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var28); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var31 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var36); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var37); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var38); + + } + + public void test228() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test228"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + java.awt.Dimension var4 = var0.getPreferredSize(); + boolean var5 = var0.getVerifyInputWhenFocusTarget(); + java.awt.Component var8 = var0.findComponentAt(10, 1); + boolean var9 = var0.requestDefaultFocus(); + boolean var10 = var0.isPaintingTile(); + SpaceWar.SpacePanel var11 = new SpaceWar.SpacePanel(); + var11.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + javax.swing.plaf.PanelUI var16 = var11.getUI(); + java.awt.Color var17 = var11.getBackground(); + var0.addKeyListener((java.awt.event.KeyListener)var11); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + java.awt.Color var20 = var19.getBackground(); + java.awt.Cursor var21 = var19.getCursor(); + var0.setCursor(var21); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var4); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var21); + + } + + public void test229() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test229"); + + + SpaceWar.Player var0 = new SpaceWar.Player(); + int var1 = var0.getR(); + var0.setRigth(false); + int var4 = var0.getY(); + var0.loseLife(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 25); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 500); + + } + + public void test230() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test230"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + SpaceWar.SpacePanel var4 = new SpaceWar.SpacePanel(); + java.awt.Color var5 = var4.getBackground(); + var0.setForeground(var5); + SpaceWar.SpacePanel var7 = new SpaceWar.SpacePanel(); + float var8 = var7.getAlignmentX(); + var7.setVisible(false); + boolean var11 = var7.isDoubleBuffered(); + java.awt.dnd.DropTarget var12 = var7.getDropTarget(); + var7.show(false); + java.awt.Rectangle var15 = var7.getVisibleRect(); + var0.repaint(var15); + java.awt.FocusTraversalPolicy var17 = var0.getFocusTraversalPolicy(); + java.awt.im.InputMethodRequests var18 = var0.getInputMethodRequests(); + var0.layout(); + java.awt.Container var20 = var0.getFocusCycleRootAncestor(); + SpaceWar.SpacePanel var21 = new SpaceWar.SpacePanel(); + float var22 = var21.getAlignmentX(); + var21.setVisible(false); + boolean var25 = var21.isDoubleBuffered(); + var21.list(); + SpaceWar.SpacePanel var27 = new SpaceWar.SpacePanel(); + float var28 = var27.getAlignmentX(); + var27.setVisible(false); + boolean var31 = var27.isDoubleBuffered(); + java.awt.dnd.DropTarget var32 = var27.getDropTarget(); + var27.show(false); + java.awt.Rectangle var35 = var27.getVisibleRect(); + java.awt.Rectangle var36 = var21.getBounds(var35); + javax.swing.JToolTip var37 = var21.createToolTip(); + var21.firePropertyChange("", false, false); + var21.validate(); + SpaceWar.SpacePanel var43 = new SpaceWar.SpacePanel(); + float var44 = var43.getAlignmentX(); + var43.setVisible(false); + boolean var47 = var43.isDoubleBuffered(); + java.awt.dnd.DropTarget var48 = var43.getDropTarget(); + var43.show(false); + boolean var51 = var43.isPaintingForPrint(); + SpaceWar.SpacePanel var52 = new SpaceWar.SpacePanel(); + float var53 = var52.getAlignmentX(); + var52.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var58 = var52.getMouseListeners(); + int var59 = var52.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var60 = var52.getInputMethodRequests(); + var43.addKeyListener((java.awt.event.KeyListener)var52); + var52.repaint(); + java.awt.Point var63 = var52.location(); + java.awt.Component var64 = var21.getComponentAt(var63); + var0.setLocation(var63); + java.beans.VetoableChangeListener[] var66 = var0.getVetoableChangeListeners(); + java.awt.Dimension var67 = var0.getMaximumSize(); + java.awt.event.HierarchyBoundsListener[] var68 = var0.getHierarchyBoundsListeners(); + java.lang.String var69 = var0.toString(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var22 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var28 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var31 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var32); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var35); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var36); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var37); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var44 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var47 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var48); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var51 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var53 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var58); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var59 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var60); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var63); + + // Regression assertion (captures the current behavior of the code) + assertNull(var64); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var66); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var67); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var68); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var69 + "' != '" + "SpaceWar.SpacePanel[,0,0,0var69,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"+ "'", var69.equals("SpaceWar.SpacePanel[,0,0,0var69,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]")); + + } + + public void test231() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test231"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.setInheritsPopupMenu(false); + var0.setFocusTraversalPolicyProvider(true); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + boolean var12 = var8.isDoubleBuffered(); + var8.list(); + SpaceWar.SpacePanel var14 = new SpaceWar.SpacePanel(); + float var15 = var14.getAlignmentX(); + var14.setVisible(false); + boolean var18 = var14.isDoubleBuffered(); + java.awt.dnd.DropTarget var19 = var14.getDropTarget(); + var14.show(false); + java.awt.Rectangle var22 = var14.getVisibleRect(); + java.awt.Rectangle var23 = var8.getBounds(var22); + javax.swing.JToolTip var24 = var8.createToolTip(); + var0.removeKeyListener((java.awt.event.KeyListener)var8); + javax.swing.TransferHandler var26 = var0.getTransferHandler(); + var0.transferFocus(); + java.awt.Dimension var28 = var0.preferredSize(); + var0.move(499, 25); + SpaceWar.SpacePanel var32 = new SpaceWar.SpacePanel(); + float var33 = var32.getAlignmentX(); + var32.setVisible(false); + var32.nextFocus(); + var32.updateUI(); + var32.enableInputMethods(true); + var32.setSize((-1), 1); + boolean var45 = var32.contains(1, 1); + java.awt.Component var48 = var32.getComponentAt(100, 3); + SpaceWar.SpacePanel var49 = new SpaceWar.SpacePanel(); + float var50 = var49.getAlignmentX(); + var49.setVisible(false); + boolean var53 = var49.isDoubleBuffered(); + java.awt.dnd.DropTarget var54 = var49.getDropTarget(); + var49.show(false); + boolean var57 = var49.isPaintingForPrint(); + SpaceWar.SpacePanel var58 = new SpaceWar.SpacePanel(); + float var59 = var58.getAlignmentX(); + var58.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var64 = var58.getMouseListeners(); + int var65 = var58.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var66 = var58.getInputMethodRequests(); + var49.addKeyListener((java.awt.event.KeyListener)var58); + var58.repaint(); + java.awt.Point var69 = var58.location(); + java.awt.Point var70 = var32.getLocation(var69); + java.lang.Object var71 = var0.getClientProperty((java.lang.Object)var69); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var23); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var28); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var33 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var45 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var48); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var50 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var53 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var54); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var57 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var59 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var64); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var65 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var66); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var69); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var70); + + // Regression assertion (captures the current behavior of the code) + assertNull(var71); + + } + + public void test232() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test232"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + var0.show(false); + java.awt.Rectangle var8 = var0.getVisibleRect(); + java.awt.image.BufferedImage var10 = var0.loadImg("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + java.awt.ComponentOrientation var11 = var0.getComponentOrientation(); + boolean var12 = var0.isPaintingTile(); + boolean var13 = var0.isOptimizedDrawingEnabled(); + boolean var14 = var0.isMinimumSizeSet(); + var0.doLayout(); + // The following exception was thrown during execution. + // This behavior will recorded for regression testing. + try { + java.awt.Point var16 = var0.getLocationOnScreen(); + fail("Expected exception of type java.awt.IllegalComponentStateException"); + } catch (java.awt.IllegalComponentStateException e) { + // Expected exception. + } + + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == false); + + } + + public void test233() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test233"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + var0.setRequestFocusEnabled(false); + var0.reshape(100, 0, 100, 0); + var0.requestFocus(); + var0.firePropertyChange("hi!", '4', ' '); + java.awt.Point var15 = var0.getLocation(); + java.awt.Dimension var16 = var0.size(); + java.awt.Image var19 = var0.createImage((-1), (-1)); + java.awt.event.ComponentListener[] var20 = var0.getComponentListeners(); + SpaceWar.SpacePanel var21 = new SpaceWar.SpacePanel(); + var21.setName(""); + java.awt.ComponentOrientation var24 = var21.getComponentOrientation(); + var21.firePropertyChange("PanelUI", 1.0f, 0.5f); + int var29 = var0.getComponentZOrder((java.awt.Component)var21); + SpaceWar.SpacePanel var30 = new SpaceWar.SpacePanel(); + float var31 = var30.getAlignmentX(); + var30.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var36 = var30.getUI(); + java.awt.im.InputMethodRequests var37 = var30.getInputMethodRequests(); + SpaceWar.SpacePanel var38 = new SpaceWar.SpacePanel(); + float var39 = var38.getAlignmentX(); + var38.setVisible(false); + var38.nextFocus(); + var38.updateUI(); + var38.enableInputMethods(true); + var38.setSize((-1), 1); + SpaceWar.SpacePanel var49 = new SpaceWar.SpacePanel(); + var49.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var30.add((java.awt.Component)var38, (java.lang.Object)"SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + SpaceWar.SpacePanel var55 = new SpaceWar.SpacePanel(); + float var56 = var55.getAlignmentX(); + var55.setVisible(false); + var55.setInheritsPopupMenu(false); + boolean var61 = var55.isDoubleBuffered(); + boolean var62 = var55.isMinimumSizeSet(); + SpaceWar.SpacePanel var63 = new SpaceWar.SpacePanel(); + float var64 = var63.getAlignmentX(); + var63.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var69 = new SpaceWar.SpacePanel(); + float var70 = var69.getAlignmentX(); + var69.setVisible(false); + java.awt.Dimension var73 = var69.getPreferredSize(); + var63.setMaximumSize(var73); + boolean var75 = var63.getVerifyInputWhenFocusTarget(); + javax.accessibility.AccessibleContext var76 = var63.getAccessibleContext(); + boolean var77 = var63.isDoubleBuffered(); + java.awt.Rectangle var78 = var63.getVisibleRect(); + var55.setBounds(var78); + java.awt.Rectangle var80 = var30.getBounds(var78); + var0.computeVisibleRect(var78); + java.awt.image.ColorModel var82 = var0.getColorModel(); + boolean var83 = var0.isEnabled(); + java.awt.Component var84 = var0.getNextFocusableComponent(); + var0.setRequestFocusEnabled(true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var29 == (-1)); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var31 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var36); + + // Regression assertion (captures the current behavior of the code) + assertNull(var37); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var39 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var56 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var61 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var62 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var64 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var70 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var73); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var75 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var76); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var77 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var78); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var80); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var82); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var83 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var84); + + } + + public void test234() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test234"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + var0.show(false); + boolean var8 = var0.isPaintingForPrint(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var15 = var9.getMouseListeners(); + int var16 = var9.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var17 = var9.getInputMethodRequests(); + var0.addKeyListener((java.awt.event.KeyListener)var9); + var9.firePropertyChange("", (short)0, (short)0); + java.awt.event.MouseMotionListener[] var23 = var9.getMouseMotionListeners(); + java.awt.Dimension var24 = var9.getMaximumSize(); + SpaceWar.SpacePanel var25 = new SpaceWar.SpacePanel(); + float var26 = var25.getAlignmentX(); + var25.setVisible(false); + var25.setInheritsPopupMenu(false); + var25.setFocusTraversalPolicyProvider(true); + boolean var35 = var25.inside(25, 3); + SpaceWar.SpacePanel var36 = new SpaceWar.SpacePanel(); + float var37 = var36.getAlignmentX(); + var36.setVisible(false); + boolean var40 = var36.isDoubleBuffered(); + var36.list(); + SpaceWar.SpacePanel var42 = new SpaceWar.SpacePanel(); + float var43 = var42.getAlignmentX(); + var42.setVisible(false); + boolean var46 = var42.isDoubleBuffered(); + java.awt.dnd.DropTarget var47 = var42.getDropTarget(); + var42.show(false); + java.awt.Rectangle var50 = var42.getVisibleRect(); + java.awt.Rectangle var51 = var36.getBounds(var50); + javax.swing.JToolTip var52 = var36.createToolTip(); + var36.firePropertyChange("", false, false); + var36.setFocusTraversalKeysEnabled(false); + boolean var59 = var36.isValid(); + SpaceWar.SpacePanel var60 = new SpaceWar.SpacePanel(); + float var61 = var60.getAlignmentX(); + var60.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var66 = var60.getMouseListeners(); + int var67 = var60.getDebugGraphicsOptions(); + java.awt.Color var68 = var60.getBackground(); + var36.setForeground(var68); + java.awt.Color var70 = var36.getForeground(); + var25.setBackground(var70); + var9.setForeground(var70); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var23); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var35 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var40 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var43 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var46 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var47); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var50); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var51); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var52); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var59 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var61 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var66); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var67 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var68); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var70); + + } + + public void test235() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test235"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + var0.show(false); + boolean var8 = var0.isPaintingForPrint(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var15 = var9.getMouseListeners(); + int var16 = var9.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var17 = var9.getInputMethodRequests(); + var0.addKeyListener((java.awt.event.KeyListener)var9); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + float var20 = var19.getAlignmentX(); + var19.setVisible(false); + boolean var23 = var19.isDoubleBuffered(); + var19.list(); + float var25 = var19.getAlignmentY(); + boolean var26 = var9.isFocusCycleRoot((java.awt.Container)var19); + javax.swing.JPopupMenu var27 = var19.getComponentPopupMenu(); + var19.move((-1), 100); + var19.validate(); + boolean var32 = var19.isPaintingForPrint(); + SpaceWar.SpacePanel var33 = new SpaceWar.SpacePanel(); + float var34 = var33.getAlignmentX(); + boolean var35 = var33.hasFocus(); + SpaceWar.SpacePanel var36 = new SpaceWar.SpacePanel(); + float var37 = var36.getAlignmentX(); + var36.setVisible(false); + var36.nextFocus(); + var36.reshape((-1), 1, (-1), 10); + var36.disable(); + java.awt.LayoutManager var47 = var36.getLayout(); + var36.setVisible(false); + var33.remove((java.awt.Component)var36); + java.awt.Container var51 = var36.getFocusCycleRootAncestor(); + javax.swing.plaf.PanelUI var52 = var36.getUI(); + var19.setUI(var52); + java.awt.image.BufferedImage var55 = var19.loadImg(""); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var27); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var32 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var34 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var35 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var47); + + // Regression assertion (captures the current behavior of the code) + assertNull(var51); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var52); + + // Regression assertion (captures the current behavior of the code) + assertNull(var55); + + } + + public void test236() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test236"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + boolean var4 = var0.inside(0, (-1)); + SpaceWar.SpacePanel var5 = new SpaceWar.SpacePanel(); + float var6 = var5.getAlignmentX(); + var5.setVisible(false); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + java.awt.Color var10 = var9.getBackground(); + var5.setForeground(var10); + var0.setForeground(var10); + var0.setAutoscrolls(false); + SpaceWar.SpacePanel var15 = new SpaceWar.SpacePanel(); + float var16 = var15.getAlignmentX(); + var15.setVisible(false); + boolean var19 = var15.isDoubleBuffered(); + java.awt.dnd.DropTarget var20 = var15.getDropTarget(); + var15.show(false); + boolean var23 = var15.isPaintingForPrint(); + SpaceWar.SpacePanel var24 = new SpaceWar.SpacePanel(); + float var25 = var24.getAlignmentX(); + var24.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var30 = var24.getMouseListeners(); + int var31 = var24.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var32 = var24.getInputMethodRequests(); + var15.addKeyListener((java.awt.event.KeyListener)var24); + SpaceWar.SpacePanel var34 = new SpaceWar.SpacePanel(); + float var35 = var34.getAlignmentX(); + var34.setVisible(false); + boolean var38 = var34.isDoubleBuffered(); + var34.list(); + float var40 = var34.getAlignmentY(); + boolean var41 = var24.isFocusCycleRoot((java.awt.Container)var34); + var34.firePropertyChange("", 1L, 1L); + var34.setVerifyInputWhenFocusTarget(true); + SpaceWar.SpacePanel var48 = new SpaceWar.SpacePanel(); + var48.setName(""); + java.awt.Dimension var51 = var48.minimumSize(); + boolean var52 = var48.isDoubleBuffered(); + SpaceWar.SpacePanel var53 = new SpaceWar.SpacePanel(); + float var54 = var53.getAlignmentX(); + SpaceWar.SpacePanel var55 = new SpaceWar.SpacePanel(); + float var56 = var55.getAlignmentX(); + var55.setVisible(false); + java.awt.Dimension var59 = var55.getPreferredSize(); + boolean var60 = var55.getVerifyInputWhenFocusTarget(); + java.awt.Component var63 = var55.findComponentAt(10, 1); + var53.addKeyListener((java.awt.event.KeyListener)var55); + var55.repaint(100, (-1), (-1), 1); + SpaceWar.SpacePanel var70 = new SpaceWar.SpacePanel(); + java.awt.Color var71 = var70.getBackground(); + var70.repaint(); + java.awt.im.InputMethodRequests var73 = var70.getInputMethodRequests(); + java.awt.GraphicsConfiguration var74 = var70.getGraphicsConfiguration(); + var55.remove((java.awt.Component)var70); + java.awt.Font var76 = var70.getFont(); + java.awt.FontMetrics var77 = var48.getFontMetrics(var76); + java.awt.FontMetrics var78 = var34.getFontMetrics(var76); + var0.setFont(var76); + var0.setVerifyInputWhenFocusTarget(false); + var0.validate(); + var0.reshape(400, 25, 100, 3); + javax.swing.event.AncestorListener[] var88 = var0.getAncestorListeners(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var30); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var31 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var32); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var35 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var38 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var40 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var41 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var51); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var52 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var54 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var56 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var59); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var60 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var63); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var71); + + // Regression assertion (captures the current behavior of the code) + assertNull(var73); + + // Regression assertion (captures the current behavior of the code) + assertNull(var74); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var76); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var77); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var78); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var88); + + } + + public void test237() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test237"); + + + SpaceWar.Player var0 = new SpaceWar.Player(); + int var1 = var0.getR(); + var0.setUp(false); + var0.update(); + java.awt.image.BufferedImage var6 = var0.loadImg("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + int var7 = var0.getX(); + var0.setLife(10); + int var10 = var0.getY(); + var0.setRigth(true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 25); + + // Regression assertion (captures the current behavior of the code) + assertNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 400); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 500); + + } + + public void test238() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test238"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + java.awt.im.InputMethodRequests var3 = var0.getInputMethodRequests(); + int var4 = var0.countComponents(); + java.awt.event.ComponentListener[] var5 = var0.getComponentListeners(); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + float var7 = var6.getAlignmentX(); + var6.removeNotify(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.setVisible(false); + boolean var13 = var9.isDoubleBuffered(); + var9.list(); + float var15 = var9.getAlignmentY(); + java.awt.Insets var16 = var9.getInsets(); + java.awt.Insets var17 = var6.getInsets(var16); + java.awt.Insets var18 = var0.getInsets(var17); + javax.swing.JPopupMenu var19 = var0.getComponentPopupMenu(); + java.awt.image.BufferedImage var21 = var0.loadImg("PanelUI"); + var0.setVerifyInputWhenFocusTarget(false); + java.awt.Cursor var24 = var0.getCursor(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertNull(var21); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var24); + + } + + public void test239() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test239"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + boolean var2 = var0.hasFocus(); + java.beans.VetoableChangeListener[] var3 = var0.getVetoableChangeListeners(); + var0.paintImmediately(10, 0, (-1), 25); + boolean var9 = var0.getInheritsPopupMenu(); + var0.resize(500, 10); + SpaceWar.SpacePanel var13 = new SpaceWar.SpacePanel(); + float var14 = var13.getAlignmentX(); + var13.setVisible(false); + boolean var17 = var13.isDoubleBuffered(); + SpaceWar.SpacePanel var18 = new SpaceWar.SpacePanel(); + float var19 = var18.getAlignmentX(); + var18.setVisible(false); + var18.nextFocus(); + var18.reshape((-1), 1, (-1), 10); + var18.disable(); + boolean var29 = var18.isFocusable(); + int var30 = var18.getHeight(); + var13.setNextFocusableComponent((java.awt.Component)var18); + SpaceWar.SpacePanel var32 = new SpaceWar.SpacePanel(); + float var33 = var32.getAlignmentX(); + var32.setVisible(false); + var32.nextFocus(); + SpaceWar.SpacePanel var37 = new SpaceWar.SpacePanel(); + float var38 = var37.getAlignmentX(); + var37.setVisible(false); + SpaceWar.SpacePanel var41 = new SpaceWar.SpacePanel(); + java.awt.Color var42 = var41.getBackground(); + var37.setForeground(var42); + var32.setBackground(var42); + java.awt.Component var45 = var32.getNextFocusableComponent(); + float var46 = var32.getAlignmentY(); + java.awt.event.MouseListener[] var47 = var32.getMouseListeners(); + java.awt.Point var48 = var32.location(); + java.awt.Point var49 = var13.getLocation(var48); + var0.setLocation(var49); + var0.setSize(2, 3); + java.awt.Component var54 = var0.getNextFocusableComponent(); + var0.firePropertyChange("SpaceWar.SpacePanel[,-1,100,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=265,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", 0L, 1L); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var2 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var29 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var30 == 10); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var33 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var38 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var42); + + // Regression assertion (captures the current behavior of the code) + assertNull(var45); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var46 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var47); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var48); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var49); + + // Regression assertion (captures the current behavior of the code) + assertNull(var54); + + } + + public void test240() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test240"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + SpaceWar.SpacePanel var2 = new SpaceWar.SpacePanel(); + float var3 = var2.getAlignmentX(); + var2.setVisible(false); + java.awt.Dimension var6 = var2.getPreferredSize(); + boolean var7 = var2.getVerifyInputWhenFocusTarget(); + java.awt.Component var10 = var2.findComponentAt(10, 1); + var0.addKeyListener((java.awt.event.KeyListener)var2); + var2.repaint(100, (-1), (-1), 1); + java.awt.image.ColorModel var17 = var2.getColorModel(); + boolean var18 = var2.isFocusTraversalPolicyProvider(); + var2.show(false); + boolean var21 = var2.isPreferredSizeSet(); + // The following exception was thrown during execution. + // This behavior will recorded for regression testing. + try { + boolean var23 = var2.areFocusTraversalKeysSet(100); + fail("Expected exception of type java.lang.IllegalArgumentException"); + } catch (java.lang.IllegalArgumentException e) { + // Expected exception. + } + + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == true); + + } + + public void test241() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test241"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + var0.setName(""); + int var3 = var0.getX(); + SpaceWar.SpacePanel var4 = new SpaceWar.SpacePanel(); + float var5 = var4.getAlignmentX(); + var4.setVisible(false); + var4.nextFocus(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.setVisible(false); + SpaceWar.SpacePanel var13 = new SpaceWar.SpacePanel(); + java.awt.Color var14 = var13.getBackground(); + var9.setForeground(var14); + var4.setBackground(var14); + var0.setBackground(var14); + boolean var18 = var0.isFocusable(); + java.awt.Dimension var19 = var0.minimumSize(); + // The following exception was thrown during execution. + // This behavior will recorded for regression testing. + try { + java.util.Set var21 = var0.getFocusTraversalKeys(400); + fail("Expected exception of type java.lang.IllegalArgumentException"); + } catch (java.lang.IllegalArgumentException e) { + // Expected exception. + } + + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var19); + + } + + public void test242() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test242"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var6 = var0.getUI(); + java.awt.im.InputMethodRequests var7 = var0.getInputMethodRequests(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + var8.nextFocus(); + var8.updateUI(); + var8.enableInputMethods(true); + var8.setSize((-1), 1); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + var19.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var0.add((java.awt.Component)var8, (java.lang.Object)"SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + java.awt.ComponentOrientation var25 = var8.getComponentOrientation(); + java.beans.VetoableChangeListener[] var26 = var8.getVetoableChangeListeners(); + int var27 = var8.getHeight(); + java.awt.event.ContainerListener[] var28 = var8.getContainerListeners(); + // The following exception was thrown during execution. + // This behavior will recorded for regression testing. + try { + java.awt.Point var29 = var8.getLocationOnScreen(); + fail("Expected exception of type java.awt.IllegalComponentStateException"); + } catch (java.awt.IllegalComponentStateException e) { + // Expected exception. + } + + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var25); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == 1); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var28); + + } + + public void test243() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test243"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var1 = new SpaceWar.SpacePanel(); + java.awt.Color var2 = var1.getBackground(); + SpaceWar.SpacePanel var3 = new SpaceWar.SpacePanel(); + float var4 = var3.getAlignmentX(); + var3.setVisible(false); + var3.nextFocus(); + var3.updateUI(); + var3.enableInputMethods(true); + var0.add((java.awt.Component)var1, (java.lang.Object)true); + java.awt.Image var14 = var1.createImage(1, (-1)); + java.awt.event.MouseListener[] var15 = var1.getMouseListeners(); + java.awt.Color var16 = var1.getBackground(); + var1.grabFocus(); + java.awt.GraphicsConfiguration var18 = var1.getGraphicsConfiguration(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var2); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertNull(var18); + + } + + public void test244() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test244"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var6 = var0.getMouseListeners(); + int var7 = var0.getDebugGraphicsOptions(); + java.awt.Color var8 = var0.getBackground(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.setVisible(false); + boolean var13 = var9.isDoubleBuffered(); + java.awt.dnd.DropTarget var14 = var9.getDropTarget(); + boolean var15 = var9.isFocusCycleRoot(); + SpaceWar.SpacePanel var16 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var17 = new SpaceWar.SpacePanel(); + java.awt.Color var18 = var17.getBackground(); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + float var20 = var19.getAlignmentX(); + var19.setVisible(false); + var19.nextFocus(); + var19.updateUI(); + var19.enableInputMethods(true); + var16.add((java.awt.Component)var17, (java.lang.Object)true); + java.awt.Dimension var28 = var17.getPreferredSize(); + var9.setSize(var28); + var0.setPreferredSize(var28); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var28); + + } + + public void test245() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test245"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var6 = var0.getMouseListeners(); + int var7 = var0.getDebugGraphicsOptions(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + boolean var12 = var8.isDoubleBuffered(); + java.awt.dnd.DropTarget var13 = var8.getDropTarget(); + var8.show(false); + java.awt.Rectangle var16 = var8.getVisibleRect(); + var0.paintImmediately(var16); + int var18 = var0.getWidth(); + java.awt.Dimension var19 = var0.size(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var19); + + } + + public void test246() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test246"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + var0.show(false); + boolean var8 = var0.isPaintingForPrint(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var15 = var9.getMouseListeners(); + int var16 = var9.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var17 = var9.getInputMethodRequests(); + var0.addKeyListener((java.awt.event.KeyListener)var9); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + float var20 = var19.getAlignmentX(); + var19.setVisible(false); + boolean var23 = var19.isDoubleBuffered(); + var19.list(); + float var25 = var19.getAlignmentY(); + boolean var26 = var9.isFocusCycleRoot((java.awt.Container)var19); + SpaceWar.SpacePanel var28 = new SpaceWar.SpacePanel(); + float var29 = var28.getAlignmentX(); + var28.setVisible(false); + var28.nextFocus(); + var28.updateUI(); + java.awt.Component var34 = var9.add("", (java.awt.Component)var28); + boolean var36 = var28.areFocusTraversalKeysSet(3); + var28.setName("SpaceWar.SpacePanel[,0,0,0x0,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var29 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var34); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var36 == false); + + } + + public void test247() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test247"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + var0.list(); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + float var7 = var6.getAlignmentX(); + var6.setVisible(false); + boolean var10 = var6.isDoubleBuffered(); + java.awt.dnd.DropTarget var11 = var6.getDropTarget(); + var6.show(false); + java.awt.Rectangle var14 = var6.getVisibleRect(); + java.awt.Rectangle var15 = var0.getBounds(var14); + javax.swing.JToolTip var16 = var0.createToolTip(); + var0.firePropertyChange("", false, false); + var0.setFocusTraversalKeysEnabled(false); + boolean var23 = var0.isValid(); + var0.setFocusCycleRoot(true); + var0.updateUI(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == false); + + } + + public void test248() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test248"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + var0.show(false); + boolean var8 = var0.isPaintingForPrint(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var15 = var9.getMouseListeners(); + int var16 = var9.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var17 = var9.getInputMethodRequests(); + var0.addKeyListener((java.awt.event.KeyListener)var9); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + float var20 = var19.getAlignmentX(); + var19.setVisible(false); + boolean var23 = var19.isDoubleBuffered(); + var19.list(); + float var25 = var19.getAlignmentY(); + boolean var26 = var9.isFocusCycleRoot((java.awt.Container)var19); + boolean var27 = var19.isEnabled(); + java.awt.Dimension var28 = var19.getMaximumSize(); + var19.setFocusCycleRoot(false); + java.awt.event.ComponentListener[] var31 = var19.getComponentListeners(); + boolean var32 = var19.isFocusCycleRoot(); + var19.firePropertyChange("PanelUI", 83.657626403857d, 10.0d); + SpaceWar.SpacePanel var37 = new SpaceWar.SpacePanel(); + float var38 = var37.getAlignmentX(); + var37.setVisible(false); + var37.nextFocus(); + var37.reshape((-1), 1, (-1), 10); + var37.disable(); + java.awt.LayoutManager var48 = var37.getLayout(); + boolean var51 = var37.contains((-1), 0); + SpaceWar.SpacePanel var52 = new SpaceWar.SpacePanel(); + float var53 = var52.getAlignmentX(); + var52.setVisible(false); + var52.nextFocus(); + var52.updateUI(); + var52.enableInputMethods(true); + var52.setSize((-1), 1); + java.awt.Component var63 = var37.add((java.awt.Component)var52); + var52.paintImmediately(100, 25, 2, 2); + SpaceWar.SpacePanel var69 = new SpaceWar.SpacePanel(); + var69.setName(""); + java.awt.Toolkit var72 = var69.getToolkit(); + var69.setEnabled(false); + var69.removeNotify(); + boolean var76 = var69.isDisplayable(); + SpaceWar.SpacePanel var77 = new SpaceWar.SpacePanel(); + java.awt.Color var78 = var77.getBackground(); + var77.repaint(); + var77.setRequestFocusEnabled(false); + var77.reshape(100, 0, 100, 0); + var77.requestFocus(); + java.awt.Rectangle var88 = var77.getVisibleRect(); + java.awt.Rectangle var89 = var77.getBounds(); + java.awt.im.InputMethodRequests var90 = var77.getInputMethodRequests(); + boolean var91 = var77.requestFocusInWindow(); + java.awt.Point var93 = var77.getMousePosition(false); + var77.setDebugGraphicsOptions(1); + java.awt.Graphics var96 = var77.getGraphics(); + var69.paintAll(var96); + var52.paintComponents(var96); + var19.printComponents(var96); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var28); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var31); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var32 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var38 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var48); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var51 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var53 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var63); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var72); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var76 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var78); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var88); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var89); + + // Regression assertion (captures the current behavior of the code) + assertNull(var90); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var91 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var93); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var96); + + } + + public void test249() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test249"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + java.awt.Point var6 = var0.getMousePosition(); + var0.updateUI(); + java.awt.GraphicsConfiguration var8 = var0.getGraphicsConfiguration(); + var0.setDebugGraphicsOptions(100); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertNull(var8); + + } + + public void test250() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test250"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.updateUI(); + var0.enableInputMethods(true); + var0.setSize((-1), 1); + boolean var13 = var0.contains(1, 1); + java.lang.String var14 = var0.getUIClassID(); + SpaceWar.SpacePanel var15 = new SpaceWar.SpacePanel(); + float var16 = var15.getAlignmentX(); + var15.setVisible(false); + boolean var19 = var15.isDoubleBuffered(); + var15.list(); + float var21 = var15.getAlignmentY(); + java.awt.event.ComponentListener[] var22 = var15.getComponentListeners(); + java.awt.Component var23 = var15.getNextFocusableComponent(); + boolean var24 = var15.isManagingFocus(); + javax.swing.border.Border var25 = var15.getBorder(); + java.lang.Object var26 = var15.getTreeLock(); + javax.swing.border.Border var27 = var15.getBorder(); + var15.setEnabled(false); + SpaceWar.SpacePanel var30 = new SpaceWar.SpacePanel(); + float var31 = var30.getAlignmentX(); + SpaceWar.SpacePanel var32 = new SpaceWar.SpacePanel(); + float var33 = var32.getAlignmentX(); + var32.setVisible(false); + java.awt.Dimension var36 = var32.getPreferredSize(); + boolean var37 = var32.getVerifyInputWhenFocusTarget(); + java.awt.Component var40 = var32.findComponentAt(10, 1); + var30.addKeyListener((java.awt.event.KeyListener)var32); + var32.repaint(100, (-1), (-1), 1); + java.awt.image.ColorModel var47 = var32.getColorModel(); + boolean var48 = var32.isFocusTraversalPolicyProvider(); + var32.show(false); + boolean var51 = var32.isManagingFocus(); + SpaceWar.SpacePanel var52 = new SpaceWar.SpacePanel(); + java.awt.Color var53 = var52.getBackground(); + var52.repaint(); + var52.setRequestFocusEnabled(false); + var52.reshape(100, 0, 100, 0); + var52.requestFocus(); + java.awt.Rectangle var63 = var52.getVisibleRect(); + java.awt.Rectangle var64 = var52.getBounds(); + java.awt.im.InputMethodRequests var65 = var52.getInputMethodRequests(); + boolean var66 = var52.requestFocusInWindow(); + java.awt.Point var68 = var52.getMousePosition(false); + var52.setDebugGraphicsOptions(1); + java.awt.Graphics var71 = var52.getGraphics(); + var32.paint(var71); + var15.paintComponents(var71); + var0.update(var71); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var14 + "' != '" + "PanelUI"+ "'", var14.equals("PanelUI")); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertNull(var23); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var24 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var25); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertNull(var27); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var31 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var33 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var36); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var40); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var47); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var48 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var51 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var53); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var63); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var64); + + // Regression assertion (captures the current behavior of the code) + assertNull(var65); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var66 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var68); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var71); + + } + + public void test251() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test251"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + java.awt.Dimension var4 = var0.getPreferredSize(); + boolean var5 = var0.getVerifyInputWhenFocusTarget(); + java.awt.Component var8 = var0.findComponentAt(10, 1); + boolean var9 = var0.requestDefaultFocus(); + java.awt.image.VolatileImage var12 = var0.createVolatileImage(0, 3); + var0.resize(25, 25); + SpaceWar.SpacePanel var16 = new SpaceWar.SpacePanel(); + float var17 = var16.getAlignmentX(); + var16.setVisible(false); + java.awt.Dimension var20 = var16.getPreferredSize(); + boolean var21 = var16.getVerifyInputWhenFocusTarget(); + java.awt.Component var24 = var16.findComponentAt(10, 1); + boolean var25 = var16.isCursorSet(); + SpaceWar.SpacePanel var26 = new SpaceWar.SpacePanel(); + float var27 = var26.getAlignmentX(); + var26.setVisible(false); + var26.nextFocus(); + var26.updateUI(); + var26.enableInputMethods(true); + java.awt.Point var34 = var26.location(); + SpaceWar.SpacePanel var35 = new SpaceWar.SpacePanel(); + float var36 = var35.getAlignmentX(); + var35.setVisible(false); + var35.nextFocus(); + var35.reshape((-1), 1, (-1), 10); + SpaceWar.SpacePanel var45 = new SpaceWar.SpacePanel(); + java.awt.Color var46 = var45.getBackground(); + var45.repaint(); + var45.setRequestFocusEnabled(false); + var45.reshape(100, 0, 100, 0); + java.awt.Component var55 = var35.add((java.awt.Component)var45); + SpaceWar.SpacePanel var56 = new SpaceWar.SpacePanel(); + var56.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + javax.swing.plaf.PanelUI var61 = var56.getUI(); + SpaceWar.SpacePanel var62 = new SpaceWar.SpacePanel(); + float var63 = var62.getAlignmentX(); + var62.setVisible(false); + var62.nextFocus(); + var62.repaint(1L); + SpaceWar.SpacePanel var69 = new SpaceWar.SpacePanel(); + float var70 = var69.getAlignmentX(); + var69.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var75 = new SpaceWar.SpacePanel(); + float var76 = var75.getAlignmentX(); + var75.setVisible(false); + java.awt.Dimension var79 = var75.getPreferredSize(); + var69.setMaximumSize(var79); + var62.setPreferredSize(var79); + var56.setMaximumSize(var79); + java.awt.Dimension var83 = var45.getSize(var79); + var26.setMaximumSize(var79); + var16.setMinimumSize(var79); + var0.setMaximumSize(var79); + var0.setVerifyInputWhenFocusTarget(false); + int var89 = var0.countComponents(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var4); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var34); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var36 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var46); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var55); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var61); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var63 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var70 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var76 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var79); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var83); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var89 == 0); + + } + + public void test252() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test252"); + + + SpaceWar.Player var0 = new SpaceWar.Player(); + int var1 = var0.getPower(); + var0.setLeft(true); + var0.increasePower(0); + var0.setRigth(false); + int var8 = var0.getY(); + int var9 = var0.getR(); + var0.setFiring(false); + var0.setUp(false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 500); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 25); + + } + + public void test253() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test253"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var1 = new SpaceWar.SpacePanel(); + java.awt.Color var2 = var1.getBackground(); + SpaceWar.SpacePanel var3 = new SpaceWar.SpacePanel(); + float var4 = var3.getAlignmentX(); + var3.setVisible(false); + var3.nextFocus(); + var3.updateUI(); + var3.enableInputMethods(true); + var0.add((java.awt.Component)var1, (java.lang.Object)true); + java.awt.Image var14 = var1.createImage(1, (-1)); + java.beans.PropertyChangeListener[] var15 = var1.getPropertyChangeListeners(); + java.awt.FocusTraversalPolicy var16 = var1.getFocusTraversalPolicy(); + var1.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", (-1.0f), 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var2); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNull(var16); + + } + + public void test254() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test254"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + var0.setName(""); + java.awt.Toolkit var3 = var0.getToolkit(); + var0.setEnabled(false); + var0.removeNotify(); + var0.setDoubleBuffered(false); + boolean var10 = var0.areFocusTraversalKeysSet(0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == false); + + } + + public void test255() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test255"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var6 = var0.getMouseListeners(); + int var7 = var0.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var8 = var0.getInputMethodRequests(); + var0.removeNotify(); + var0.enable(); + java.lang.Object var11 = var0.getTreeLock(); + var0.setAlignmentY(0.0f); + var0.repaint(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + } + + public void test256() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test256"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + SpaceWar.SpacePanel var5 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + java.awt.Color var7 = var6.getBackground(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + var8.nextFocus(); + var8.updateUI(); + var8.enableInputMethods(true); + var5.add((java.awt.Component)var6, (java.lang.Object)true); + java.awt.Dimension var17 = var6.getPreferredSize(); + var0.setMaximumSize(var17); + java.awt.Dimension var19 = var0.preferredSize(); + boolean var20 = var0.getVerifyInputWhenFocusTarget(); + java.awt.Rectangle var21 = var0.bounds(); + boolean var22 = javax.swing.JComponent.isLightweightComponent((java.awt.Component)var0); + java.awt.Container var23 = var0.getParent(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var21); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var22 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var23); + + } + + public void test257() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test257"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + java.awt.im.InputMethodRequests var3 = var0.getInputMethodRequests(); + var0.setDoubleBuffered(true); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + float var7 = var6.getAlignmentX(); + boolean var8 = var6.hasFocus(); + java.awt.Insets var9 = var6.getInsets(); + java.awt.Insets var10 = var0.getInsets(var9); + SpaceWar.SpacePanel var11 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var12 = new SpaceWar.SpacePanel(); + java.awt.Color var13 = var12.getBackground(); + SpaceWar.SpacePanel var14 = new SpaceWar.SpacePanel(); + float var15 = var14.getAlignmentX(); + var14.setVisible(false); + var14.nextFocus(); + var14.updateUI(); + var14.enableInputMethods(true); + var11.add((java.awt.Component)var12, (java.lang.Object)true); + java.awt.Image var25 = var12.createImage(1, (-1)); + SpaceWar.SpacePanel var26 = new SpaceWar.SpacePanel(); + float var27 = var26.getAlignmentX(); + var26.setVisible(false); + var26.nextFocus(); + var26.updateUI(); + var26.enableInputMethods(true); + SpaceWar.SpacePanel var34 = new SpaceWar.SpacePanel(); + float var35 = var34.getAlignmentX(); + boolean var36 = var34.hasFocus(); + java.awt.Insets var37 = var34.getInsets(); + java.awt.Insets var38 = var26.getInsets(var37); + java.awt.Insets var39 = var12.getInsets(var37); + java.awt.Insets var40 = var0.getInsets(var37); + boolean var41 = var0.getFocusTraversalKeysEnabled(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var9); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNull(var25); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var35 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var36 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var37); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var38); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var39); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var40); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var41 == true); + + } + + public void test258() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test258"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + SpaceWar.SpacePanel var2 = new SpaceWar.SpacePanel(); + float var3 = var2.getAlignmentX(); + var2.setVisible(false); + java.awt.Dimension var6 = var2.getPreferredSize(); + boolean var7 = var2.getVerifyInputWhenFocusTarget(); + java.awt.Component var10 = var2.findComponentAt(10, 1); + var0.addKeyListener((java.awt.event.KeyListener)var2); + SpaceWar.SpacePanel var12 = new SpaceWar.SpacePanel(); + float var13 = var12.getAlignmentX(); + SpaceWar.SpacePanel var14 = new SpaceWar.SpacePanel(); + float var15 = var14.getAlignmentX(); + var14.setVisible(false); + java.awt.Dimension var18 = var14.getPreferredSize(); + boolean var19 = var14.getVerifyInputWhenFocusTarget(); + java.awt.Component var22 = var14.findComponentAt(10, 1); + var12.addKeyListener((java.awt.event.KeyListener)var14); + var14.repaint(100, (-1), (-1), 1); + java.awt.image.ColorModel var29 = var14.getColorModel(); + SpaceWar.SpacePanel var30 = new SpaceWar.SpacePanel(); + float var31 = var30.getAlignmentX(); + var30.setVisible(false); + boolean var34 = var30.isDoubleBuffered(); + var30.list(); + SpaceWar.SpacePanel var36 = new SpaceWar.SpacePanel(); + float var37 = var36.getAlignmentX(); + var36.setVisible(false); + boolean var40 = var36.isDoubleBuffered(); + java.awt.dnd.DropTarget var41 = var36.getDropTarget(); + var36.show(false); + java.awt.Rectangle var44 = var36.getVisibleRect(); + java.awt.image.BufferedImage var46 = var36.loadImg("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + boolean var47 = var30.isAncestorOf((java.awt.Component)var36); + javax.swing.InputVerifier var48 = var36.getInputVerifier(); + var2.putClientProperty((java.lang.Object)var14, (java.lang.Object)var36); + java.lang.String var50 = var2.getUIClassID(); + SpaceWar.SpacePanel var51 = new SpaceWar.SpacePanel(); + float var52 = var51.getAlignmentX(); + var51.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var57 = var51.getMouseListeners(); + int var58 = var51.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var59 = var51.getInputMethodRequests(); + var51.removeNotify(); + var51.enable(); + SpaceWar.SpacePanel var62 = new SpaceWar.SpacePanel(); + java.awt.Color var63 = var62.getBackground(); + boolean var66 = var62.inside(0, (-1)); + var62.transferFocusUpCycle(); + java.lang.String var68 = var62.getName(); + boolean var69 = var51.isFocusCycleRoot((java.awt.Container)var62); + java.awt.Dimension var70 = var51.getMinimumSize(); + boolean var73 = var51.inside(500, 3); + boolean var74 = var2.isFocusCycleRoot((java.awt.Container)var51); + boolean var75 = var2.isRequestFocusEnabled(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var29); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var31 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var34 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var40 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var41); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var44); + + // Regression assertion (captures the current behavior of the code) + assertNull(var46); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var47 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var48); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var50 + "' != '" + "PanelUI"+ "'", var50.equals("PanelUI")); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var52 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var57); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var58 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var59); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var63); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var66 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var68); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var69 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var70); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var73 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var74 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var75 == true); + + } + + public void test259() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test259"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.setInheritsPopupMenu(false); + boolean var6 = var0.isDoubleBuffered(); + boolean var7 = var0.isMinimumSizeSet(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var14 = new SpaceWar.SpacePanel(); + float var15 = var14.getAlignmentX(); + var14.setVisible(false); + java.awt.Dimension var18 = var14.getPreferredSize(); + var8.setMaximumSize(var18); + boolean var20 = var8.getVerifyInputWhenFocusTarget(); + javax.accessibility.AccessibleContext var21 = var8.getAccessibleContext(); + boolean var22 = var8.isDoubleBuffered(); + java.awt.Rectangle var23 = var8.getVisibleRect(); + var0.setBounds(var23); + SpaceWar.SpacePanel var25 = new SpaceWar.SpacePanel(); + var25.setName(""); + var25.enable(true); + var25.enable(); + java.awt.Point var31 = var25.location(); + var25.repaint(0, 3, (-1), 1); + java.awt.Component var39 = var25.findComponentAt(0, 25); + var0.setNextFocusableComponent((java.awt.Component)var25); + var0.setAlignmentX(1.0f); + SpaceWar.SpacePanel var43 = new SpaceWar.SpacePanel(); + float var44 = var43.getAlignmentX(); + var43.setVisible(false); + boolean var47 = var43.isDoubleBuffered(); + java.awt.dnd.DropTarget var48 = var43.getDropTarget(); + var43.show(false); + java.awt.Rectangle var51 = var43.getVisibleRect(); + java.awt.image.BufferedImage var53 = var43.loadImg("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + java.awt.ComponentOrientation var54 = var43.getComponentOrientation(); + boolean var55 = var43.isPaintingTile(); + boolean var56 = var43.isOptimizedDrawingEnabled(); + var43.resetKeyboardActions(); + var0.addKeyListener((java.awt.event.KeyListener)var43); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var21); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var22 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var23); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var31); + + // Regression assertion (captures the current behavior of the code) + assertNull(var39); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var44 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var47 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var48); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var51); + + // Regression assertion (captures the current behavior of the code) + assertNull(var53); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var54); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var55 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var56 == true); + + } + + public void test260() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test260"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.reshape((-1), 1, (-1), 10); + var0.disable(); + boolean var11 = var0.isFocusable(); + int var12 = var0.getHeight(); + javax.swing.InputVerifier var13 = var0.getInputVerifier(); + var0.doLayout(); + var0.transferFocus(); + boolean var16 = var0.getInheritsPopupMenu(); + boolean var17 = var0.isShowing(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == 10); + + // Regression assertion (captures the current behavior of the code) + assertNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == false); + + } + + public void test261() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test261"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + java.awt.im.InputMethodRequests var3 = var0.getInputMethodRequests(); + int var4 = var0.countComponents(); + java.awt.event.ComponentListener[] var5 = var0.getComponentListeners(); + var0.removeNotify(); + javax.swing.InputMap var7 = var0.getInputMap(); + int var8 = var0.getDebugGraphicsOptions(); + boolean var9 = var0.isFocusable(); + java.lang.String var10 = var0.getUIClassID(); + java.awt.dnd.DropTarget var11 = var0.getDropTarget(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var10 + "' != '" + "PanelUI"+ "'", var10.equals("PanelUI")); + + // Regression assertion (captures the current behavior of the code) + assertNull(var11); + + } + + public void test262() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test262"); + + + SpaceWar.Enemy var2 = new SpaceWar.Enemy(10, 400); + int var3 = var2.getType(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == 10); + + } + + public void test263() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test263"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var6 = var0.getMouseListeners(); + int var7 = var0.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var8 = var0.getInputMethodRequests(); + java.awt.Point var9 = var0.getMousePosition(); + boolean var10 = var0.getVerifyInputWhenFocusTarget(); + var0.setFocusTraversalKeysEnabled(false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertNull(var9); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == true); + + } + + public void test264() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test264"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.reshape((-1), 1, (-1), 10); + var0.disable(); + java.awt.Component var13 = var0.findComponentAt(0, (-1)); + SpaceWar.SpacePanel var14 = new SpaceWar.SpacePanel(); + var14.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + javax.swing.plaf.PanelUI var19 = var14.getUI(); + SpaceWar.SpacePanel var20 = new SpaceWar.SpacePanel(); + float var21 = var20.getAlignmentX(); + var20.setVisible(false); + var20.nextFocus(); + var20.repaint(1L); + SpaceWar.SpacePanel var27 = new SpaceWar.SpacePanel(); + float var28 = var27.getAlignmentX(); + var27.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var33 = new SpaceWar.SpacePanel(); + float var34 = var33.getAlignmentX(); + var33.setVisible(false); + java.awt.Dimension var37 = var33.getPreferredSize(); + var27.setMaximumSize(var37); + var20.setPreferredSize(var37); + var14.setMaximumSize(var37); + var0.setSize(var37); + java.awt.Container var42 = var0.getParent(); + SpaceWar.SpacePanel var43 = new SpaceWar.SpacePanel(); + float var44 = var43.getAlignmentX(); + var43.setVisible(false); + var43.nextFocus(); + var43.reshape((-1), 1, (-1), 10); + java.util.Set var54 = var43.getFocusTraversalKeys(3); + java.awt.Point var55 = var43.getLocation(); + boolean var56 = var0.contains(var55); + var0.setLocation((-1), 25); + boolean var60 = var0.isVisible(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var28 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var34 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var37); + + // Regression assertion (captures the current behavior of the code) + assertNull(var42); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var44 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var54); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var55); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var56 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var60 == false); + + } + + public void test265() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test265"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var6 = var0.getMouseListeners(); + int var7 = var0.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var8 = var0.getInputMethodRequests(); + var0.setToolTipText(""); + var0.reshape(0, 100, 400, 500); + var0.doLayout(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var8); + + } + + public void test266() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test266"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + var0.setRequestFocusEnabled(false); + var0.setIgnoreRepaint(false); + boolean var7 = var0.requestFocusInWindow(); + float var8 = var0.getAlignmentY(); + java.awt.LayoutManager var9 = var0.getLayout(); + float var10 = var0.getAlignmentX(); + java.awt.Component.BaselineResizeBehavior var11 = var0.getBaselineResizeBehavior(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var9); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + } + + public void test267() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test267"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.setInheritsPopupMenu(false); + var0.setFocusTraversalPolicyProvider(true); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + boolean var12 = var8.isDoubleBuffered(); + var8.list(); + SpaceWar.SpacePanel var14 = new SpaceWar.SpacePanel(); + float var15 = var14.getAlignmentX(); + var14.setVisible(false); + boolean var18 = var14.isDoubleBuffered(); + java.awt.dnd.DropTarget var19 = var14.getDropTarget(); + var14.show(false); + java.awt.Rectangle var22 = var14.getVisibleRect(); + java.awt.Rectangle var23 = var8.getBounds(var22); + javax.swing.JToolTip var24 = var8.createToolTip(); + var0.removeKeyListener((java.awt.event.KeyListener)var8); + javax.swing.TransferHandler var26 = var0.getTransferHandler(); + boolean var27 = var0.isPaintingForPrint(); + int var28 = var0.getComponentCount(); + var0.setSize(400, 24); + SpaceWar.SpacePanel var32 = new SpaceWar.SpacePanel(); + float var33 = var32.getAlignmentX(); + var32.setVisible(false); + var32.nextFocus(); + var32.reshape((-1), 1, (-1), 10); + var32.disable(); + java.awt.LayoutManager var43 = var32.getLayout(); + java.lang.Object var44 = var0.getClientProperty((java.lang.Object)var32); + java.awt.Rectangle var45 = var32.getVisibleRect(); + var32.setAutoscrolls(false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var23); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var28 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var33 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var43); + + // Regression assertion (captures the current behavior of the code) + assertNull(var44); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var45); + + } + + public void test268() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test268"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + var0.list(); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + float var7 = var6.getAlignmentX(); + var6.setVisible(false); + boolean var10 = var6.isDoubleBuffered(); + java.awt.dnd.DropTarget var11 = var6.getDropTarget(); + var6.show(false); + java.awt.Rectangle var14 = var6.getVisibleRect(); + java.awt.image.BufferedImage var16 = var6.loadImg("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + boolean var17 = var0.isAncestorOf((java.awt.Component)var6); + javax.swing.InputVerifier var18 = var6.getInputVerifier(); + java.awt.ComponentOrientation var19 = var6.getComponentOrientation(); + boolean var20 = var6.requestFocusInWindow(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == false); + + } + + public void test269() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test269"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var6 = var0.getMouseListeners(); + int var7 = var0.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var8 = var0.getInputMethodRequests(); + var0.removeNotify(); + var0.enable(); + SpaceWar.SpacePanel var11 = new SpaceWar.SpacePanel(); + java.awt.Color var12 = var11.getBackground(); + boolean var15 = var11.inside(0, (-1)); + var11.transferFocusUpCycle(); + java.lang.String var17 = var11.getName(); + boolean var18 = var0.isFocusCycleRoot((java.awt.Container)var11); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + java.awt.Color var20 = var19.getBackground(); + var19.repaint(); + var19.setRequestFocusEnabled(false); + var19.reshape(100, 0, 100, 0); + var19.requestFocus(); + var19.firePropertyChange("hi!", '4', ' '); + java.awt.Point var34 = var19.getLocation(); + java.awt.Component var35 = var11.getComponentAt(var34); + var11.layout(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var34); + + // Regression assertion (captures the current behavior of the code) + assertNull(var35); + + } + + public void test270() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test270"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.setInheritsPopupMenu(false); + var0.setFocusTraversalPolicyProvider(true); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + boolean var12 = var8.isDoubleBuffered(); + var8.list(); + SpaceWar.SpacePanel var14 = new SpaceWar.SpacePanel(); + float var15 = var14.getAlignmentX(); + var14.setVisible(false); + boolean var18 = var14.isDoubleBuffered(); + java.awt.dnd.DropTarget var19 = var14.getDropTarget(); + var14.show(false); + java.awt.Rectangle var22 = var14.getVisibleRect(); + java.awt.Rectangle var23 = var8.getBounds(var22); + javax.swing.JToolTip var24 = var8.createToolTip(); + var0.removeKeyListener((java.awt.event.KeyListener)var8); + javax.swing.TransferHandler var26 = var0.getTransferHandler(); + var0.transferFocus(); + boolean var28 = var0.isFocusable(); + var0.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, true); + boolean var33 = var0.isFocusable(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var23); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var28 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var33 == true); + + } + + public void test271() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test271"); + + + SpaceWar.PowerUp var3 = new SpaceWar.PowerUp(100, (-1.0d), 0.0d); + double var4 = var3.getR(); + double var5 = var3.getY(); + double var6 = var3.getY(); + int var7 = var3.getType(); + int var8 = var3.getType(); + double var9 = var3.getR(); + double var10 = var3.getX(); + int var11 = var3.getType(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0.0d); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == 0.0d); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == 0.0d); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 100); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 100); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.0d); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == (-1.0d)); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == 100); + + } + + public void test272() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test272"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.Graphics var5 = var0.getGraphics(); + boolean var6 = var0.isMinimumSizeSet(); + var0.hide(); + var0.setSize((-1), 499); + SpaceWar.SpacePanel var11 = new SpaceWar.SpacePanel(); + float var12 = var11.getAlignmentX(); + var11.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var17 = var11.getMouseListeners(); + int var18 = var11.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var19 = var11.getInputMethodRequests(); + java.lang.String var20 = var11.getToolTipText(); + boolean var21 = var11.isOpaque(); + var0.removeKeyListener((java.awt.event.KeyListener)var11); + // The following exception was thrown during execution. + // This behavior will recorded for regression testing. + try { + boolean var24 = var0.areFocusTraversalKeysSet(400); + fail("Expected exception of type java.lang.IllegalArgumentException"); + } catch (java.lang.IllegalArgumentException e) { + // Expected exception. + } + + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == true); + + } + + public void test273() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test273"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + var0.show(false); + boolean var8 = var0.isPaintingForPrint(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var15 = var9.getMouseListeners(); + int var16 = var9.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var17 = var9.getInputMethodRequests(); + var0.addKeyListener((java.awt.event.KeyListener)var9); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + float var20 = var19.getAlignmentX(); + var19.setVisible(false); + boolean var23 = var19.isDoubleBuffered(); + var19.list(); + float var25 = var19.getAlignmentY(); + boolean var26 = var9.isFocusCycleRoot((java.awt.Container)var19); + javax.swing.JPopupMenu var27 = var19.getComponentPopupMenu(); + var19.move((-1), 100); + var19.validate(); + java.awt.Toolkit var32 = var19.getToolkit(); + SpaceWar.SpacePanel var33 = new SpaceWar.SpacePanel(); + float var34 = var33.getAlignmentX(); + var33.setVisible(false); + boolean var37 = var33.isDoubleBuffered(); + SpaceWar.SpacePanel var38 = new SpaceWar.SpacePanel(); + java.awt.Color var39 = var38.getBackground(); + var38.repaint(); + java.lang.Object var41 = var33.getClientProperty((java.lang.Object)var38); + var38.repaint(10, 1, 25, 0); + var19.removeKeyListener((java.awt.event.KeyListener)var38); + SpaceWar.SpacePanel var48 = new SpaceWar.SpacePanel(); + float var49 = var48.getAlignmentX(); + SpaceWar.SpacePanel var50 = new SpaceWar.SpacePanel(); + float var51 = var50.getAlignmentX(); + var50.setVisible(false); + java.awt.Dimension var54 = var50.getPreferredSize(); + boolean var55 = var50.getVerifyInputWhenFocusTarget(); + java.awt.Component var58 = var50.findComponentAt(10, 1); + var48.addKeyListener((java.awt.event.KeyListener)var50); + var50.repaint(100, (-1), (-1), 1); + java.awt.image.ColorModel var65 = var50.getColorModel(); + boolean var66 = var50.isPreferredSizeSet(); + java.awt.peer.ComponentPeer var67 = var50.getPeer(); + SpaceWar.SpacePanel var68 = new SpaceWar.SpacePanel(); + java.awt.Color var69 = var68.getBackground(); + var68.repaint(); + var68.setRequestFocusEnabled(false); + var68.setIgnoreRepaint(false); + java.lang.String var75 = var68.toString(); + java.awt.Color var76 = var68.getBackground(); + SpaceWar.SpacePanel var77 = new SpaceWar.SpacePanel(); + float var78 = var77.getAlignmentX(); + var77.setVisible(false); + java.awt.Dimension var81 = var77.getPreferredSize(); + java.awt.Toolkit var82 = var77.getToolkit(); + java.awt.Toolkit var83 = var77.getToolkit(); + SpaceWar.Player var84 = new SpaceWar.Player(); + var84.increasePower(25); + int var87 = var84.getScore(); + var84.setRigth(true); + var84.loseLife(); + var68.putClientProperty((java.lang.Object)var77, (java.lang.Object)var84); + var38.putClientProperty((java.lang.Object)var50, (java.lang.Object)var77); + int var93 = var38.getComponentCount(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var27); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var32); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var34 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var39); + + // Regression assertion (captures the current behavior of the code) + assertNull(var41); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var49 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var51 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var54); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var55 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var58); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var65); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var66 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var67); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var69); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var75 + "' != '" + "SpaceWar.SpacePanel[,0,0,0var75,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"+ "'", var75.equals("SpaceWar.SpacePanel[,0,0,0var75,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]")); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var76); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var78 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var81); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var82); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var83); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var87 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var93 == 0); + + } + + public void test274() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test274"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var1 = new SpaceWar.SpacePanel(); + java.awt.Color var2 = var1.getBackground(); + SpaceWar.SpacePanel var3 = new SpaceWar.SpacePanel(); + float var4 = var3.getAlignmentX(); + var3.setVisible(false); + var3.nextFocus(); + var3.updateUI(); + var3.enableInputMethods(true); + var0.add((java.awt.Component)var1, (java.lang.Object)true); + boolean var12 = var0.isMinimumSizeSet(); + java.awt.event.HierarchyListener[] var13 = var0.getHierarchyListeners(); + int var14 = var0.getComponentCount(); + SpaceWar.SpacePanel var15 = new SpaceWar.SpacePanel(); + java.awt.Color var16 = var15.getBackground(); + var15.repaint(); + var15.setRequestFocusEnabled(false); + var15.removeAll(); + var0.setNextFocusableComponent((java.awt.Component)var15); + java.awt.event.KeyListener[] var22 = var15.getKeyListeners(); + java.awt.Dimension var23 = var15.getSize(); + boolean var24 = var15.isFocusTraversalPolicyProvider(); + boolean var25 = var15.getFocusTraversalKeysEnabled(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var2); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == 1); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var23); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var24 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == true); + + } + + public void test275() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test275"); + + + SpaceWar.Enemy var2 = new SpaceWar.Enemy(0, 10); + var2.update(); + double var4 = var2.getX(); + double var5 = var2.getY(); + double var6 = var2.getY(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 518.0151860204259d); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == 0.0d); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == 0.0d); + + } + + public void test276() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test276"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.setInheritsPopupMenu(false); + boolean var6 = var0.isMinimumSizeSet(); + java.awt.FocusTraversalPolicy var7 = var0.getFocusTraversalPolicy(); + boolean var8 = var0.isShowing(); + java.awt.Component var9 = var0.getNextFocusableComponent(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var9); + + } + + public void test277() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test277"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.reshape((-1), 1, (-1), 10); + var0.disable(); + java.awt.LayoutManager var11 = var0.getLayout(); + java.awt.Container var12 = var0.getParent(); + boolean var13 = var0.isPaintingForPrint(); + SpaceWar.SpacePanel var14 = new SpaceWar.SpacePanel(); + java.awt.Color var15 = var14.getBackground(); + var14.repaint(); + var14.setRequestFocusEnabled(false); + var14.setIgnoreRepaint(false); + java.lang.String var21 = var14.toString(); + java.awt.Color var22 = var14.getBackground(); + SpaceWar.SpacePanel var23 = new SpaceWar.SpacePanel(); + float var24 = var23.getAlignmentX(); + var23.setVisible(false); + java.awt.Dimension var27 = var23.getPreferredSize(); + java.awt.Toolkit var28 = var23.getToolkit(); + java.awt.Toolkit var29 = var23.getToolkit(); + SpaceWar.Player var30 = new SpaceWar.Player(); + var30.increasePower(25); + int var33 = var30.getScore(); + var30.setRigth(true); + var30.loseLife(); + var14.putClientProperty((java.lang.Object)var23, (java.lang.Object)var30); + java.awt.Rectangle var38 = var23.bounds(); + var0.paintImmediately(var38); + boolean var40 = var0.isMinimumSizeSet(); + java.awt.im.InputContext var41 = var0.getInputContext(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var21 + "' != '" + "SpaceWar.SpacePanel[,0,0,0var21,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"+ "'", var21.equals("SpaceWar.SpacePanel[,0,0,0var21,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]")); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var24 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var27); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var28); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var29); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var33 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var38); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var40 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var41); + + } + + public void test278() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test278"); + + + SpaceWar.PowerUp var3 = new SpaceWar.PowerUp(10, 10.0d, 10.0d); + boolean var4 = var3.update(); + double var5 = var3.getX(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == 10.0d); + + } + + public void test279() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test279"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.setInheritsPopupMenu(false); + var0.setFocusTraversalPolicyProvider(true); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + boolean var12 = var8.isDoubleBuffered(); + var8.list(); + SpaceWar.SpacePanel var14 = new SpaceWar.SpacePanel(); + float var15 = var14.getAlignmentX(); + var14.setVisible(false); + boolean var18 = var14.isDoubleBuffered(); + java.awt.dnd.DropTarget var19 = var14.getDropTarget(); + var14.show(false); + java.awt.Rectangle var22 = var14.getVisibleRect(); + java.awt.Rectangle var23 = var8.getBounds(var22); + javax.swing.JToolTip var24 = var8.createToolTip(); + var0.removeKeyListener((java.awt.event.KeyListener)var8); + javax.swing.TransferHandler var26 = var0.getTransferHandler(); + boolean var27 = var0.isDisplayable(); + java.awt.Dimension var28 = var0.getPreferredSize(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var23); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var28); + + } + + public void test280() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test280"); + + + SpaceWar.Enemy var2 = new SpaceWar.Enemy(10, 2); + double var3 = var2.getX(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == 282.8681995802876d); + + } + + public void test281() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test281"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var6 = var0.getUI(); + java.awt.im.InputMethodRequests var7 = var0.getInputMethodRequests(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + var8.nextFocus(); + var8.updateUI(); + var8.enableInputMethods(true); + var8.setSize((-1), 1); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + var19.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var0.add((java.awt.Component)var8, (java.lang.Object)"SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + java.awt.ComponentOrientation var25 = var8.getComponentOrientation(); + boolean var26 = var8.isMaximumSizeSet(); + boolean var27 = var8.getIgnoreRepaint(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var25); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == false); + + } + + public void test282() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test282"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + var0.show(false); + java.awt.Rectangle var8 = var0.getVisibleRect(); + javax.swing.KeyStroke[] var9 = var0.getRegisteredKeyStrokes(); + boolean var10 = var0.isMinimumSizeSet(); + java.awt.Insets var11 = var0.getInsets(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var9); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + } + + public void test283() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test283"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + float var7 = var6.getAlignmentX(); + var6.setVisible(false); + java.awt.Dimension var10 = var6.getPreferredSize(); + var0.setMaximumSize(var10); + boolean var12 = var0.getVerifyInputWhenFocusTarget(); + var0.transferFocusUpCycle(); + java.awt.Point var14 = var0.location(); + SpaceWar.SpacePanel var15 = new SpaceWar.SpacePanel(); + java.awt.Color var16 = var15.getBackground(); + var15.repaint(); + java.awt.im.InputMethodRequests var18 = var15.getInputMethodRequests(); + var15.setDoubleBuffered(true); + SpaceWar.SpacePanel var21 = new SpaceWar.SpacePanel(); + float var22 = var21.getAlignmentX(); + boolean var23 = var21.hasFocus(); + java.awt.Insets var24 = var21.getInsets(); + java.awt.Insets var25 = var15.getInsets(var24); + SpaceWar.SpacePanel var26 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var27 = new SpaceWar.SpacePanel(); + java.awt.Color var28 = var27.getBackground(); + SpaceWar.SpacePanel var29 = new SpaceWar.SpacePanel(); + float var30 = var29.getAlignmentX(); + var29.setVisible(false); + var29.nextFocus(); + var29.updateUI(); + var29.enableInputMethods(true); + var26.add((java.awt.Component)var27, (java.lang.Object)true); + java.awt.Image var40 = var27.createImage(1, (-1)); + SpaceWar.SpacePanel var41 = new SpaceWar.SpacePanel(); + float var42 = var41.getAlignmentX(); + var41.setVisible(false); + var41.nextFocus(); + var41.updateUI(); + var41.enableInputMethods(true); + SpaceWar.SpacePanel var49 = new SpaceWar.SpacePanel(); + float var50 = var49.getAlignmentX(); + boolean var51 = var49.hasFocus(); + java.awt.Insets var52 = var49.getInsets(); + java.awt.Insets var53 = var41.getInsets(var52); + java.awt.Insets var54 = var27.getInsets(var52); + java.awt.Insets var55 = var15.getInsets(var52); + java.awt.Component var56 = var0.add((java.awt.Component)var15); + java.awt.Rectangle var57 = var0.getBounds(); + SpaceWar.SpacePanel var58 = new SpaceWar.SpacePanel(); + float var59 = var58.getAlignmentX(); + var58.setVisible(false); + boolean var62 = var58.isDoubleBuffered(); + java.awt.dnd.DropTarget var63 = var58.getDropTarget(); + var58.show(false); + boolean var66 = var58.isPaintingForPrint(); + SpaceWar.SpacePanel var67 = new SpaceWar.SpacePanel(); + float var68 = var67.getAlignmentX(); + var67.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var73 = var67.getMouseListeners(); + int var74 = var67.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var75 = var67.getInputMethodRequests(); + var58.addKeyListener((java.awt.event.KeyListener)var67); + var67.repaint(); + java.awt.Point var78 = var67.location(); + java.awt.Component var79 = var0.findComponentAt(var78); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var22 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var25); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var28); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var30 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNull(var40); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var42 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var50 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var51 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var52); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var53); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var54); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var55); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var56); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var57); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var59 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var62 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var63); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var66 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var68 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var73); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var74 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var75); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var78); + + // Regression assertion (captures the current behavior of the code) + assertNull(var79); + + } + + public void test284() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test284"); + + + SpaceWar.Bullet var3 = new SpaceWar.Bullet(24.0d, 100, 499); + double var4 = var3.getX(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 100.0d); + + } + + public void test285() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test285"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + java.awt.im.InputMethodRequests var3 = var0.getInputMethodRequests(); + var0.setDoubleBuffered(true); + var0.show(false); + var0.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", (-1), 24); + SpaceWar.SpacePanel var12 = new SpaceWar.SpacePanel(); + java.awt.Color var13 = var12.getBackground(); + var12.repaint(); + java.awt.im.InputMethodRequests var15 = var12.getInputMethodRequests(); + int var16 = var12.countComponents(); + java.awt.event.ComponentListener[] var17 = var12.getComponentListeners(); + var12.removeNotify(); + javax.swing.InputMap var19 = var12.getInputMap(); + SpaceWar.SpacePanel var20 = new SpaceWar.SpacePanel(); + float var21 = var20.getAlignmentX(); + var20.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var26 = new SpaceWar.SpacePanel(); + float var27 = var26.getAlignmentX(); + var26.setVisible(false); + SpaceWar.SpacePanel var30 = new SpaceWar.SpacePanel(); + java.awt.Color var31 = var30.getBackground(); + var26.setForeground(var31); + var20.setBackground(var31); + java.awt.Point var34 = var20.location(); + var12.setLocation(var34); + var0.setLocation(var34); + boolean var37 = javax.swing.JComponent.isLightweightComponent((java.awt.Component)var0); + SpaceWar.SpacePanel var38 = new SpaceWar.SpacePanel(); + float var39 = var38.getAlignmentX(); + boolean var40 = var38.hasFocus(); + boolean var41 = var38.isPreferredSizeSet(); + SpaceWar.SpacePanel var42 = new SpaceWar.SpacePanel(); + java.awt.Color var43 = var42.getBackground(); + var42.repaint(); + var42.setRequestFocusEnabled(false); + int var47 = var38.getComponentZOrder((java.awt.Component)var42); + int var48 = var38.getDebugGraphicsOptions(); + var38.enableInputMethods(true); + boolean var51 = javax.swing.JComponent.isLightweightComponent((java.awt.Component)var38); + java.lang.String var52 = var38.toString(); + var0.addKeyListener((java.awt.event.KeyListener)var38); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var31); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var34); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var39 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var40 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var41 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var43); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var47 == (-1)); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var48 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var51 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var52 + "' != '" + "SpaceWar.SpacePanel[,0,0,0var52,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"+ "'", var52.equals("SpaceWar.SpacePanel[,0,0,0var52,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]")); + + } + + public void test286() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test286"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + java.awt.im.InputMethodRequests var3 = var0.getInputMethodRequests(); + var0.setDoubleBuffered(true); + var0.setInheritsPopupMenu(false); + javax.swing.plaf.PanelUI var8 = var0.getUI(); + java.util.Set var10 = var0.getFocusTraversalKeys(3); + var0.enable(); + var0.resize(500, 25); + java.awt.FocusTraversalPolicy var15 = var0.getFocusTraversalPolicy(); + java.awt.Color var16 = var0.getForeground(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + } + + public void test287() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test287"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var1 = new SpaceWar.SpacePanel(); + java.awt.Color var2 = var1.getBackground(); + SpaceWar.SpacePanel var3 = new SpaceWar.SpacePanel(); + float var4 = var3.getAlignmentX(); + var3.setVisible(false); + var3.nextFocus(); + var3.updateUI(); + var3.enableInputMethods(true); + var0.add((java.awt.Component)var1, (java.lang.Object)true); + java.awt.Image var14 = var1.createImage(1, (-1)); + boolean var15 = var1.isValidateRoot(); + var1.resize(1, 3); + var1.setFocusCycleRoot(true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var2); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == false); + + } + + public void test288() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test288"); + + + SpaceWar.Enemy var2 = new SpaceWar.Enemy(0, 100); + boolean var3 = var2.isDead(); + double var4 = var2.getY(); + int var5 = var2.getType(); + int var6 = var2.getType(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0.0d); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == 0); + + } + + public void test289() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test289"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + javax.swing.plaf.PanelUI var3 = var0.getUI(); + SpaceWar.SpacePanel var4 = new SpaceWar.SpacePanel(); + float var5 = var4.getAlignmentX(); + var4.setVisible(false); + boolean var8 = var4.isDoubleBuffered(); + java.awt.dnd.DropTarget var9 = var4.getDropTarget(); + var4.show(false); + boolean var12 = var4.isPaintingForPrint(); + SpaceWar.SpacePanel var13 = new SpaceWar.SpacePanel(); + float var14 = var13.getAlignmentX(); + var13.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var19 = var13.getMouseListeners(); + int var20 = var13.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var21 = var13.getInputMethodRequests(); + var4.addKeyListener((java.awt.event.KeyListener)var13); + SpaceWar.SpacePanel var23 = new SpaceWar.SpacePanel(); + float var24 = var23.getAlignmentX(); + var23.setVisible(false); + boolean var27 = var23.isDoubleBuffered(); + var23.list(); + float var29 = var23.getAlignmentY(); + boolean var30 = var13.isFocusCycleRoot((java.awt.Container)var23); + SpaceWar.SpacePanel var32 = new SpaceWar.SpacePanel(); + float var33 = var32.getAlignmentX(); + var32.setVisible(false); + var32.nextFocus(); + var32.updateUI(); + java.awt.Component var38 = var13.add("", (java.awt.Component)var32); + java.awt.ComponentOrientation var39 = var32.getComponentOrientation(); + boolean var40 = var32.isFocusable(); + var0.remove((java.awt.Component)var32); + java.awt.Component var42 = var0.getNextFocusableComponent(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var9); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var21); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var24 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var29 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var30 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var33 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var38); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var39); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var40 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var42); + + } + + public void test290() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test290"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + var0.show(false); + boolean var8 = var0.isPaintingForPrint(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var15 = var9.getMouseListeners(); + int var16 = var9.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var17 = var9.getInputMethodRequests(); + var0.addKeyListener((java.awt.event.KeyListener)var9); + java.awt.Container var19 = var9.getFocusCycleRootAncestor(); + boolean var20 = var9.hasFocus(); + SpaceWar.SpacePanel var21 = new SpaceWar.SpacePanel(); + float var22 = var21.getAlignmentX(); + var21.setVisible(false); + var21.setInheritsPopupMenu(false); + boolean var27 = var21.isDoubleBuffered(); + boolean var28 = var21.isMinimumSizeSet(); + SpaceWar.SpacePanel var29 = new SpaceWar.SpacePanel(); + float var30 = var29.getAlignmentX(); + var29.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var35 = new SpaceWar.SpacePanel(); + float var36 = var35.getAlignmentX(); + var35.setVisible(false); + java.awt.Dimension var39 = var35.getPreferredSize(); + var29.setMaximumSize(var39); + boolean var41 = var29.getVerifyInputWhenFocusTarget(); + javax.accessibility.AccessibleContext var42 = var29.getAccessibleContext(); + boolean var43 = var29.isDoubleBuffered(); + java.awt.Rectangle var44 = var29.getVisibleRect(); + var21.setBounds(var44); + java.lang.Object var46 = var9.getClientProperty((java.lang.Object)var21); + var9.validate(); + var9.validate(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var22 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var28 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var30 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var36 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var39); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var41 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var42); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var43 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var44); + + // Regression assertion (captures the current behavior of the code) + assertNull(var46); + + } + + public void test291() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test291"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + SpaceWar.SpacePanel var5 = new SpaceWar.SpacePanel(); + float var6 = var5.getAlignmentX(); + var5.setVisible(false); + var5.nextFocus(); + var5.reshape((-1), 1, (-1), 10); + var5.disable(); + boolean var16 = var5.isFocusable(); + int var17 = var5.getHeight(); + var0.setNextFocusableComponent((java.awt.Component)var5); + boolean var20 = var5.requestFocus(false); + int var21 = var5.getComponentCount(); + var5.invalidate(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == 10); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == 0); + + } + + public void test292() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test292"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + boolean var6 = var0.isFocusCycleRoot(); + var0.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", 100, 0); + SpaceWar.SpacePanel var11 = new SpaceWar.SpacePanel(); + float var12 = var11.getAlignmentX(); + var11.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var17 = var11.getUI(); + var0.add((java.awt.Component)var11, (java.lang.Object)(short)0); + java.awt.event.InputMethodListener[] var20 = var11.getInputMethodListeners(); + java.awt.Toolkit var21 = var11.getToolkit(); + boolean var22 = var11.isDoubleBuffered(); + javax.swing.InputMap var23 = var11.getInputMap(); + SpaceWar.SpacePanel var24 = new SpaceWar.SpacePanel(); + float var25 = var24.getAlignmentX(); + var24.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var30 = var24.getUI(); + java.awt.im.InputMethodRequests var31 = var24.getInputMethodRequests(); + SpaceWar.SpacePanel var32 = new SpaceWar.SpacePanel(); + float var33 = var32.getAlignmentX(); + var32.setVisible(false); + var32.nextFocus(); + var32.updateUI(); + var32.enableInputMethods(true); + var32.setSize((-1), 1); + SpaceWar.SpacePanel var43 = new SpaceWar.SpacePanel(); + var43.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var24.add((java.awt.Component)var32, (java.lang.Object)"SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + java.awt.ComponentOrientation var49 = var32.getComponentOrientation(); + boolean var50 = var32.isMaximumSizeSet(); + java.beans.PropertyChangeListener[] var52 = var32.getPropertyChangeListeners("SpaceWar.SpacePanel[,0,0,0x0,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + SpaceWar.SpacePanel var53 = new SpaceWar.SpacePanel(); + float var54 = var53.getAlignmentX(); + var53.setVisible(false); + SpaceWar.SpacePanel var57 = new SpaceWar.SpacePanel(); + java.awt.Color var58 = var57.getBackground(); + var53.setForeground(var58); + SpaceWar.SpacePanel var60 = new SpaceWar.SpacePanel(); + float var61 = var60.getAlignmentX(); + var60.setVisible(false); + boolean var64 = var60.isDoubleBuffered(); + java.awt.dnd.DropTarget var65 = var60.getDropTarget(); + var60.show(false); + java.awt.Rectangle var68 = var60.getVisibleRect(); + var53.repaint(var68); + SpaceWar.SpacePanel var70 = new SpaceWar.SpacePanel(); + float var71 = var70.getAlignmentX(); + var70.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var76 = var70.getMouseListeners(); + java.awt.Dimension var77 = var70.getPreferredSize(); + java.util.Locale var78 = var70.getLocale(); + var53.setLocale(var78); + java.util.Locale var80 = var53.getLocale(); + var32.setLocale(var80); + var11.setLocale(var80); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var21); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var22 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var23); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var30); + + // Regression assertion (captures the current behavior of the code) + assertNull(var31); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var33 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var49); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var50 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var52); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var54 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var58); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var61 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var64 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var65); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var68); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var71 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var76); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var77); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var78); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var80); + + } + + public void test293() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test293"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + var0.setRequestFocusEnabled(false); + var0.reshape(100, 0, 100, 0); + var0.requestFocus(); + java.awt.Rectangle var11 = var0.getVisibleRect(); + java.awt.Rectangle var12 = var0.getBounds(); + java.awt.im.InputMethodRequests var13 = var0.getInputMethodRequests(); + boolean var14 = var0.requestFocusInWindow(); + java.awt.Rectangle var15 = var0.bounds(); + var0.setAutoscrolls(true); + var0.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=1.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", 10L, 10L); + java.awt.event.MouseMotionListener[] var22 = var0.getMouseMotionListeners(); + var0.setVerifyInputWhenFocusTarget(false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var22); + + } + + public void test294() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test294"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + var0.show(false); + boolean var8 = var0.isPaintingForPrint(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var15 = var9.getMouseListeners(); + int var16 = var9.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var17 = var9.getInputMethodRequests(); + var0.addKeyListener((java.awt.event.KeyListener)var9); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + float var20 = var19.getAlignmentX(); + var19.setVisible(false); + boolean var23 = var19.isDoubleBuffered(); + var19.list(); + float var25 = var19.getAlignmentY(); + boolean var26 = var9.isFocusCycleRoot((java.awt.Container)var19); + boolean var27 = var19.isEnabled(); + java.awt.Dimension var28 = var19.getMaximumSize(); + var19.setName("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + var19.updateUI(); + boolean var32 = var19.isOptimizedDrawingEnabled(); + java.awt.Dimension var33 = var19.size(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var28); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var32 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var33); + + } + + public void test295() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test295"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + java.awt.Point var6 = var0.getMousePosition(); + java.lang.String var7 = var0.getUIClassID(); + var0.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", '#', '4'); + boolean var12 = var0.requestDefaultFocus(); + SpaceWar.SpacePanel var13 = new SpaceWar.SpacePanel(); + float var14 = var13.getAlignmentX(); + var13.setVisible(false); + SpaceWar.SpacePanel var17 = new SpaceWar.SpacePanel(); + java.awt.Color var18 = var17.getBackground(); + var13.setForeground(var18); + SpaceWar.SpacePanel var20 = new SpaceWar.SpacePanel(); + float var21 = var20.getAlignmentX(); + var20.setVisible(false); + boolean var24 = var20.isDoubleBuffered(); + java.awt.dnd.DropTarget var25 = var20.getDropTarget(); + var20.show(false); + java.awt.Rectangle var28 = var20.getVisibleRect(); + var13.repaint(var28); + SpaceWar.SpacePanel var30 = new SpaceWar.SpacePanel(); + float var31 = var30.getAlignmentX(); + var30.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var36 = var30.getMouseListeners(); + java.awt.Dimension var37 = var30.getPreferredSize(); + java.util.Locale var38 = var30.getLocale(); + var13.setLocale(var38); + var0.setLocale(var38); + var0.firePropertyChange("SpaceWar.SpacePanel[,-1,1,-1x10,invalid,hidden,disabled,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", 100.0f, 1.0f); + var0.grabFocus(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var7 + "' != '" + "PanelUI"+ "'", var7.equals("PanelUI")); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var24 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var25); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var28); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var31 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var36); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var37); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var38); + + } + + public void test296() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test296"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + var0.show(false); + boolean var8 = var0.isPaintingForPrint(); + boolean var9 = var0.getIgnoreRepaint(); + var0.repaint(100, 10, 100, 0); + javax.swing.ActionMap var15 = var0.getActionMap(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + } + + public void test297() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test297"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.reshape((-1), 1, (-1), 10); + var0.disable(); + java.awt.Component var13 = var0.findComponentAt(0, (-1)); + SpaceWar.SpacePanel var14 = new SpaceWar.SpacePanel(); + var14.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + javax.swing.plaf.PanelUI var19 = var14.getUI(); + SpaceWar.SpacePanel var20 = new SpaceWar.SpacePanel(); + float var21 = var20.getAlignmentX(); + var20.setVisible(false); + var20.nextFocus(); + var20.repaint(1L); + SpaceWar.SpacePanel var27 = new SpaceWar.SpacePanel(); + float var28 = var27.getAlignmentX(); + var27.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var33 = new SpaceWar.SpacePanel(); + float var34 = var33.getAlignmentX(); + var33.setVisible(false); + java.awt.Dimension var37 = var33.getPreferredSize(); + var27.setMaximumSize(var37); + var20.setPreferredSize(var37); + var14.setMaximumSize(var37); + var0.setSize(var37); + java.awt.Container var42 = var0.getParent(); + SpaceWar.SpacePanel var43 = new SpaceWar.SpacePanel(); + float var44 = var43.getAlignmentX(); + var43.setVisible(false); + var43.nextFocus(); + var43.reshape((-1), 1, (-1), 10); + java.util.Set var54 = var43.getFocusTraversalKeys(3); + java.awt.Point var55 = var43.getLocation(); + boolean var56 = var0.contains(var55); + boolean var57 = var0.isForegroundSet(); + SpaceWar.SpacePanel var58 = new SpaceWar.SpacePanel(); + java.awt.Color var59 = var58.getBackground(); + var58.repaint(); + java.awt.im.InputMethodRequests var61 = var58.getInputMethodRequests(); + java.awt.GraphicsConfiguration var62 = var58.getGraphicsConfiguration(); + boolean var64 = var58.requestFocus(false); + javax.swing.JPopupMenu var65 = var58.getComponentPopupMenu(); + java.awt.Point var66 = var58.location(); + var0.setLocation(var66); + java.awt.Dimension var68 = var0.size(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var28 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var34 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var37); + + // Regression assertion (captures the current behavior of the code) + assertNull(var42); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var44 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var54); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var55); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var56 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var57 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var59); + + // Regression assertion (captures the current behavior of the code) + assertNull(var61); + + // Regression assertion (captures the current behavior of the code) + assertNull(var62); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var64 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var65); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var66); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var68); + + } + + public void test298() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test298"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + java.awt.im.InputMethodRequests var3 = var0.getInputMethodRequests(); + int var4 = var0.countComponents(); + java.awt.event.ComponentListener[] var5 = var0.getComponentListeners(); + var0.removeNotify(); + javax.swing.InputMap var7 = var0.getInputMap(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var14 = new SpaceWar.SpacePanel(); + float var15 = var14.getAlignmentX(); + var14.setVisible(false); + SpaceWar.SpacePanel var18 = new SpaceWar.SpacePanel(); + java.awt.Color var19 = var18.getBackground(); + var14.setForeground(var19); + var8.setBackground(var19); + java.awt.Point var22 = var8.location(); + var0.setLocation(var22); + SpaceWar.SpacePanel var24 = new SpaceWar.SpacePanel(); + float var25 = var24.getAlignmentX(); + var24.setVisible(false); + var24.nextFocus(); + var24.reshape((-1), 1, (-1), 10); + SpaceWar.SpacePanel var34 = new SpaceWar.SpacePanel(); + java.awt.Color var35 = var34.getBackground(); + var34.repaint(); + var34.setRequestFocusEnabled(false); + var34.reshape(100, 0, 100, 0); + java.awt.Component var44 = var24.add((java.awt.Component)var34); + var24.enable(); + SpaceWar.SpacePanel var46 = new SpaceWar.SpacePanel(); + float var47 = var46.getAlignmentX(); + boolean var48 = var46.hasFocus(); + boolean var49 = var46.isPreferredSizeSet(); + var0.putClientProperty((java.lang.Object)var24, (java.lang.Object)var46); + SpaceWar.SpacePanel var51 = new SpaceWar.SpacePanel(); + float var52 = var51.getAlignmentX(); + var51.setVisible(false); + var51.nextFocus(); + var51.repaint(1L); + SpaceWar.SpacePanel var58 = new SpaceWar.SpacePanel(); + float var59 = var58.getAlignmentX(); + var58.setVisible(false); + boolean var62 = var58.isDoubleBuffered(); + var58.list(); + SpaceWar.SpacePanel var64 = new SpaceWar.SpacePanel(); + float var65 = var64.getAlignmentX(); + var64.setVisible(false); + boolean var68 = var64.isDoubleBuffered(); + java.awt.dnd.DropTarget var69 = var64.getDropTarget(); + var64.show(false); + java.awt.Rectangle var72 = var64.getVisibleRect(); + java.awt.Rectangle var73 = var58.getBounds(var72); + var51.setBounds(var73); + var46.repaint(var73); + var46.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", (byte)0, (byte)0); + var46.enable(true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var35); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var44); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var47 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var48 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var49 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var52 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var59 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var62 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var65 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var68 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var69); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var72); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var73); + + } + + public void test299() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test299"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var1 = new SpaceWar.SpacePanel(); + java.awt.Color var2 = var1.getBackground(); + SpaceWar.SpacePanel var3 = new SpaceWar.SpacePanel(); + float var4 = var3.getAlignmentX(); + var3.setVisible(false); + var3.nextFocus(); + var3.updateUI(); + var3.enableInputMethods(true); + var0.add((java.awt.Component)var1, (java.lang.Object)true); + java.awt.Image var14 = var1.createImage(1, (-1)); + java.awt.event.MouseListener[] var15 = var1.getMouseListeners(); + java.awt.Color var16 = var1.getBackground(); + boolean var17 = var1.getIgnoreRepaint(); + var1.enable(); + var1.show(false); + var1.firePropertyChange("PanelUI", false, false); + java.awt.ComponentOrientation var25 = var1.getComponentOrientation(); + boolean var26 = var1.isFocusTraversalPolicyProvider(); + var1.transferFocusUpCycle(); + var1.show(true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var2); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var25); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == false); + + } + + public void test300() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test300"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + var0.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + javax.swing.plaf.PanelUI var5 = var0.getUI(); + java.awt.Color var6 = var0.getBackground(); + var0.removeAll(); + var0.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", (short)(-1), (short)100); + SpaceWar.SpacePanel var12 = new SpaceWar.SpacePanel(); + java.awt.Color var13 = var12.getBackground(); + var12.repaint(); + var12.setRequestFocusEnabled(false); + java.awt.event.InputMethodListener[] var17 = var12.getInputMethodListeners(); + SpaceWar.SpacePanel var18 = new SpaceWar.SpacePanel(); + float var19 = var18.getAlignmentX(); + var18.setVisible(false); + boolean var22 = var18.isDoubleBuffered(); + var18.list(); + SpaceWar.SpacePanel var24 = new SpaceWar.SpacePanel(); + float var25 = var24.getAlignmentX(); + var24.setVisible(false); + boolean var28 = var24.isDoubleBuffered(); + java.awt.dnd.DropTarget var29 = var24.getDropTarget(); + var24.show(false); + java.awt.Rectangle var32 = var24.getVisibleRect(); + java.awt.Rectangle var33 = var18.getBounds(var32); + javax.swing.JToolTip var34 = var18.createToolTip(); + var18.firePropertyChange("", false, false); + java.lang.String var39 = var18.getUIClassID(); + java.awt.Point var41 = var18.getMousePosition(true); + // The following exception was thrown during execution. + // This behavior will recorded for regression testing. + try { + var0.add((java.awt.Component)var12, (java.lang.Object)var18, 3); + fail("Expected exception of type java.lang.IllegalArgumentException"); + } catch (java.lang.IllegalArgumentException e) { + // Expected exception. + } + + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var22 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var28 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var29); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var32); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var33); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var34); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var39 + "' != '" + "PanelUI"+ "'", var39.equals("PanelUI")); + + // Regression assertion (captures the current behavior of the code) + assertNull(var41); + + } + + public void test301() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test301"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + var0.setRequestFocusEnabled(false); + var0.reshape(100, 0, 100, 0); + var0.requestFocus(); + java.awt.Rectangle var11 = var0.getVisibleRect(); + java.awt.Rectangle var12 = var0.getBounds(); + java.awt.im.InputMethodRequests var13 = var0.getInputMethodRequests(); + SpaceWar.SpacePanel var14 = new SpaceWar.SpacePanel(); + var14.setName(""); + java.awt.Dimension var17 = var14.minimumSize(); + boolean var18 = var14.isDoubleBuffered(); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + float var20 = var19.getAlignmentX(); + var19.setVisible(false); + SpaceWar.SpacePanel var23 = new SpaceWar.SpacePanel(); + java.awt.Color var24 = var23.getBackground(); + var19.setForeground(var24); + SpaceWar.SpacePanel var26 = new SpaceWar.SpacePanel(); + float var27 = var26.getAlignmentX(); + var26.setVisible(false); + boolean var30 = var26.isDoubleBuffered(); + java.awt.dnd.DropTarget var31 = var26.getDropTarget(); + var26.show(false); + java.awt.Rectangle var34 = var26.getVisibleRect(); + var19.repaint(var34); + java.awt.FocusTraversalPolicy var36 = var19.getFocusTraversalPolicy(); + java.awt.im.InputMethodRequests var37 = var19.getInputMethodRequests(); + var19.layout(); + boolean var39 = var19.isFocusTraversalPolicyProvider(); + java.awt.Component var40 = var14.add((java.awt.Component)var19); + var14.transferFocusUpCycle(); + var0.remove((java.awt.Component)var14); + java.awt.im.InputContext var43 = var0.getInputContext(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var30 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var31); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var34); + + // Regression assertion (captures the current behavior of the code) + assertNull(var36); + + // Regression assertion (captures the current behavior of the code) + assertNull(var37); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var39 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var40); + + // Regression assertion (captures the current behavior of the code) + assertNull(var43); + + } + + public void test302() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test302"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + java.awt.Dimension var4 = var0.getPreferredSize(); + boolean var5 = var0.getVerifyInputWhenFocusTarget(); + java.awt.Component var8 = var0.findComponentAt(10, 1); + boolean var9 = var0.requestDefaultFocus(); + var0.setVerifyInputWhenFocusTarget(false); + java.awt.Point var12 = var0.getLocation(); + var0.setFocusable(false); + boolean var15 = var0.isForegroundSet(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var4); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == true); + + } + + public void test303() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test303"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.reshape((-1), 1, (-1), 10); + var0.disable(); + java.awt.FocusTraversalPolicy var11 = var0.getFocusTraversalPolicy(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNull(var11); + + } + + public void test304() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test304"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + var0.show(false); + boolean var8 = var0.isPaintingForPrint(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var15 = var9.getMouseListeners(); + int var16 = var9.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var17 = var9.getInputMethodRequests(); + var0.addKeyListener((java.awt.event.KeyListener)var9); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + float var20 = var19.getAlignmentX(); + var19.setVisible(false); + boolean var23 = var19.isDoubleBuffered(); + var19.list(); + float var25 = var19.getAlignmentY(); + boolean var26 = var9.isFocusCycleRoot((java.awt.Container)var19); + var19.firePropertyChange("", 1L, 1L); + var19.setVerifyInputWhenFocusTarget(true); + var19.resize(25, 400); + java.awt.event.ComponentListener[] var36 = var19.getComponentListeners(); + boolean var37 = var19.isBackgroundSet(); + SpaceWar.SpacePanel var38 = new SpaceWar.SpacePanel(); + float var39 = var38.getAlignmentX(); + var38.setVisible(false); + var38.setInheritsPopupMenu(false); + var38.setFocusTraversalPolicyProvider(true); + SpaceWar.SpacePanel var46 = new SpaceWar.SpacePanel(); + float var47 = var46.getAlignmentX(); + var46.setVisible(false); + boolean var50 = var46.isDoubleBuffered(); + var46.list(); + SpaceWar.SpacePanel var52 = new SpaceWar.SpacePanel(); + float var53 = var52.getAlignmentX(); + var52.setVisible(false); + boolean var56 = var52.isDoubleBuffered(); + java.awt.dnd.DropTarget var57 = var52.getDropTarget(); + var52.show(false); + java.awt.Rectangle var60 = var52.getVisibleRect(); + java.awt.Rectangle var61 = var46.getBounds(var60); + javax.swing.JToolTip var62 = var46.createToolTip(); + var38.removeKeyListener((java.awt.event.KeyListener)var46); + javax.swing.TransferHandler var64 = var38.getTransferHandler(); + boolean var65 = var38.isPaintingForPrint(); + var38.firePropertyChange("hi!", (short)100, (short)100); + var19.setNextFocusableComponent((java.awt.Component)var38); + var38.move(100, (-1)); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var36); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var39 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var47 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var50 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var53 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var56 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var57); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var60); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var61); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var62); + + // Regression assertion (captures the current behavior of the code) + assertNull(var64); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var65 == false); + + } + + public void test305() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test305"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var6 = var0.getMouseListeners(); + int var7 = var0.getDebugGraphicsOptions(); + javax.swing.event.AncestorListener[] var8 = var0.getAncestorListeners(); + java.awt.Dimension var9 = var0.getPreferredSize(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var9); + + } + + public void test306() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test306"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + var0.show(false); + boolean var8 = var0.isPaintingForPrint(); + boolean var9 = var0.getIgnoreRepaint(); + var0.repaint(100, 10, 100, 0); + SpaceWar.SpacePanel var15 = new SpaceWar.SpacePanel(); + float var16 = var15.getAlignmentX(); + var15.setVisible(false); + boolean var19 = var15.isDoubleBuffered(); + var15.list(); + SpaceWar.SpacePanel var21 = new SpaceWar.SpacePanel(); + float var22 = var21.getAlignmentX(); + var21.setVisible(false); + boolean var25 = var21.isDoubleBuffered(); + java.awt.dnd.DropTarget var26 = var21.getDropTarget(); + var21.show(false); + java.awt.Rectangle var29 = var21.getVisibleRect(); + java.awt.Rectangle var30 = var15.getBounds(var29); + javax.swing.JToolTip var31 = var15.createToolTip(); + var15.firePropertyChange("", false, false); + var15.validate(); + SpaceWar.SpacePanel var37 = new SpaceWar.SpacePanel(); + float var38 = var37.getAlignmentX(); + var37.setVisible(false); + boolean var41 = var37.isDoubleBuffered(); + java.awt.dnd.DropTarget var42 = var37.getDropTarget(); + var37.show(false); + boolean var45 = var37.isPaintingForPrint(); + SpaceWar.SpacePanel var46 = new SpaceWar.SpacePanel(); + float var47 = var46.getAlignmentX(); + var46.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var52 = var46.getMouseListeners(); + int var53 = var46.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var54 = var46.getInputMethodRequests(); + var37.addKeyListener((java.awt.event.KeyListener)var46); + var46.repaint(); + java.awt.Point var57 = var46.location(); + java.awt.Component var58 = var15.getComponentAt(var57); + var0.setLocation(var57); + java.awt.peer.ComponentPeer var60 = var0.getPeer(); + var0.transferFocus(); + var0.nextFocus(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var22 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var29); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var30); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var31); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var38 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var41 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var42); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var45 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var47 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var52); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var53 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var54); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var57); + + // Regression assertion (captures the current behavior of the code) + assertNull(var58); + + // Regression assertion (captures the current behavior of the code) + assertNull(var60); + + } + + public void test307() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test307"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + java.awt.im.InputMethodRequests var3 = var0.getInputMethodRequests(); + var0.list(); + int var5 = var0.getHeight(); + var0.disable(); + var0.setLocation(2, 24); + SpaceWar.SpacePanel var10 = new SpaceWar.SpacePanel(); + float var11 = var10.getAlignmentX(); + var10.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var16 = var10.getMouseListeners(); + java.awt.Dimension var17 = var10.getPreferredSize(); + java.util.Locale var18 = var10.getLocale(); + var0.setLocale(var18); + var0.setDebugGraphicsOptions(400); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var18); + + } + + public void test308() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test308"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + var0.setRequestFocusEnabled(false); + var0.reshape(100, 0, 100, 0); + var0.requestFocus(); + var0.firePropertyChange("hi!", '4', ' '); + java.awt.Point var15 = var0.getLocation(); + java.awt.Dimension var16 = var0.size(); + java.awt.Component[] var17 = var0.getComponents(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var17); + + } + + public void test309() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test309"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + java.awt.Dimension var4 = var0.getPreferredSize(); + boolean var5 = var0.getVerifyInputWhenFocusTarget(); + java.awt.Component var8 = var0.findComponentAt(10, 1); + boolean var9 = var0.requestDefaultFocus(); + var0.setVerifyInputWhenFocusTarget(false); + boolean var12 = var0.isPaintingForPrint(); + boolean var13 = var0.getIgnoreRepaint(); + var0.updateUI(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var4); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == false); + + } + + public void test310() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test310"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.repaint(1L); + java.awt.image.VolatileImage var9 = var0.createVolatileImage(0, (-1)); + var0.transferFocusUpCycle(); + boolean var11 = var0.isDoubleBuffered(); + boolean var12 = var0.isFocusTraversalPolicyProvider(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNull(var9); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == false); + + } + + public void test311() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test311"); + + + SpaceWar.Player var0 = new SpaceWar.Player(); + boolean var1 = var0.isRecovering(); + var0.setUp(true); + java.awt.image.BufferedImage var5 = var0.loadImg("SpaceWar.SpacePanel[,0,0,0x0,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + int var6 = var0.getPower(); + int var7 = var0.getRequiredPower(); + var0.increasePower(3); + boolean var10 = var0.isRecovering(); + int var11 = var0.getR(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 1); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == 25); + + } + + public void test312() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test312"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + var0.show(false); + java.awt.Rectangle var8 = var0.getVisibleRect(); + java.awt.image.BufferedImage var10 = var0.loadImg("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + java.awt.ComponentOrientation var11 = var0.getComponentOrientation(); + boolean var12 = var0.isPaintingTile(); + boolean var13 = var0.isOptimizedDrawingEnabled(); + boolean var14 = var0.isMinimumSizeSet(); + var0.doLayout(); + var0.move(24, (-1)); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == false); + + } + + public void test313() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test313"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.updateUI(); + var0.enableInputMethods(true); + java.awt.Point var8 = var0.location(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.setVisible(false); + var9.nextFocus(); + var9.reshape((-1), 1, (-1), 10); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + java.awt.Color var20 = var19.getBackground(); + var19.repaint(); + var19.setRequestFocusEnabled(false); + var19.reshape(100, 0, 100, 0); + java.awt.Component var29 = var9.add((java.awt.Component)var19); + SpaceWar.SpacePanel var30 = new SpaceWar.SpacePanel(); + var30.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + javax.swing.plaf.PanelUI var35 = var30.getUI(); + SpaceWar.SpacePanel var36 = new SpaceWar.SpacePanel(); + float var37 = var36.getAlignmentX(); + var36.setVisible(false); + var36.nextFocus(); + var36.repaint(1L); + SpaceWar.SpacePanel var43 = new SpaceWar.SpacePanel(); + float var44 = var43.getAlignmentX(); + var43.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var49 = new SpaceWar.SpacePanel(); + float var50 = var49.getAlignmentX(); + var49.setVisible(false); + java.awt.Dimension var53 = var49.getPreferredSize(); + var43.setMaximumSize(var53); + var36.setPreferredSize(var53); + var30.setMaximumSize(var53); + java.awt.Dimension var57 = var19.getSize(var53); + var0.setMaximumSize(var53); + boolean var59 = var0.getIgnoreRepaint(); + var0.setInheritsPopupMenu(true); + java.awt.FocusTraversalPolicy var62 = var0.getFocusTraversalPolicy(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var29); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var35); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var44 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var50 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var53); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var57); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var59 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var62); + + } + + public void test314() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test314"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + java.awt.im.InputMethodRequests var3 = var0.getInputMethodRequests(); + var0.setDoubleBuffered(true); + var0.show(false); + var0.transferFocusDownCycle(); + javax.swing.KeyStroke[] var9 = var0.getRegisteredKeyStrokes(); + javax.swing.ActionMap var10 = var0.getActionMap(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var9); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var10); + + } + + public void test315() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test315"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + var0.setRequestFocusEnabled(false); + var0.reshape(100, 0, 100, 0); + var0.requestFocus(); + var0.firePropertyChange("hi!", '4', ' '); + SpaceWar.Enemy var17 = new SpaceWar.Enemy(0, 100); + int var18 = var17.getR(); + var17.explode(); + var0.putClientProperty((java.lang.Object)var17, (java.lang.Object)(short)10); + boolean var23 = var0.requestFocus(false); + boolean var24 = var0.isFocusTraversalPolicyProvider(); + boolean var25 = var0.isFocusCycleRoot(); + // The following exception was thrown during execution. + // This behavior will recorded for regression testing. + try { + javax.swing.InputMap var27 = var0.getInputMap(3); + fail("Expected exception of type java.lang.IllegalArgumentException"); + } catch (java.lang.IllegalArgumentException e) { + // Expected exception. + } + + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var24 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == false); + + } + + public void test316() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test316"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + SpaceWar.SpacePanel var4 = new SpaceWar.SpacePanel(); + java.awt.Color var5 = var4.getBackground(); + var0.setForeground(var5); + SpaceWar.SpacePanel var7 = new SpaceWar.SpacePanel(); + float var8 = var7.getAlignmentX(); + var7.setVisible(false); + boolean var11 = var7.isDoubleBuffered(); + java.awt.dnd.DropTarget var12 = var7.getDropTarget(); + var7.show(false); + java.awt.Rectangle var15 = var7.getVisibleRect(); + var0.repaint(var15); + java.awt.FocusTraversalPolicy var17 = var0.getFocusTraversalPolicy(); + javax.swing.TransferHandler var18 = var0.getTransferHandler(); + javax.swing.JToolTip var19 = var0.createToolTip(); + var19.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", true, true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var19); + + } + + public void test317() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test317"); + + + SpaceWar.Enemy var2 = new SpaceWar.Enemy(10, 1); + int var3 = var2.getRank(); + double var4 = var2.getY(); + double var5 = var2.getX(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == 1); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0.0d); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == 499.6586481768171d); + + } + + public void test318() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test318"); + + + SpaceWar.Bullet var3 = new SpaceWar.Bullet(594.7973940347722d, 3, 100); + double var4 = var3.getY(); + double var5 = var3.getR(); + double var6 = var3.getR(); + double var7 = var3.getX(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 100.0d); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == 5.0d); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == 5.0d); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 3.0d); + + } + + public void test319() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test319"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var6 = var0.getMouseListeners(); + int var7 = var0.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var8 = var0.getInputMethodRequests(); + var0.removeNotify(); + var0.enable(); + SpaceWar.SpacePanel var11 = new SpaceWar.SpacePanel(); + java.awt.Color var12 = var11.getBackground(); + boolean var15 = var11.inside(0, (-1)); + var11.transferFocusUpCycle(); + java.lang.String var17 = var11.getName(); + boolean var18 = var0.isFocusCycleRoot((java.awt.Container)var11); + java.awt.Dimension var19 = var0.getMinimumSize(); + SpaceWar.SpacePanel var20 = new SpaceWar.SpacePanel(); + float var21 = var20.getAlignmentX(); + var20.setVisible(false); + boolean var24 = var20.isDoubleBuffered(); + java.awt.dnd.DropTarget var25 = var20.getDropTarget(); + boolean var26 = var20.isFocusCycleRoot(); + SpaceWar.SpacePanel var27 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var28 = new SpaceWar.SpacePanel(); + java.awt.Color var29 = var28.getBackground(); + SpaceWar.SpacePanel var30 = new SpaceWar.SpacePanel(); + float var31 = var30.getAlignmentX(); + var30.setVisible(false); + var30.nextFocus(); + var30.updateUI(); + var30.enableInputMethods(true); + var27.add((java.awt.Component)var28, (java.lang.Object)true); + java.awt.Dimension var39 = var28.getPreferredSize(); + var20.setSize(var39); + var20.updateUI(); + var0.addKeyListener((java.awt.event.KeyListener)var20); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var24 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var25); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var29); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var31 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var39); + + } + + public void test320() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test320"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.reshape((-1), 1, (-1), 10); + var0.disable(); + java.awt.LayoutManager var11 = var0.getLayout(); + var0.setVisible(false); + javax.accessibility.AccessibleContext var14 = var0.getAccessibleContext(); + java.awt.Point var15 = var0.getLocation(); + SpaceWar.SpacePanel var16 = new SpaceWar.SpacePanel(); + float var17 = var16.getAlignmentX(); + var16.setVisible(false); + boolean var20 = var16.isDoubleBuffered(); + var16.list(); + SpaceWar.SpacePanel var22 = new SpaceWar.SpacePanel(); + float var23 = var22.getAlignmentX(); + var22.setVisible(false); + boolean var26 = var22.isDoubleBuffered(); + java.awt.dnd.DropTarget var27 = var22.getDropTarget(); + var22.show(false); + java.awt.Rectangle var30 = var22.getVisibleRect(); + java.awt.image.BufferedImage var32 = var22.loadImg("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + boolean var33 = var16.isAncestorOf((java.awt.Component)var22); + float var34 = var16.getAlignmentX(); + java.awt.image.VolatileImage var37 = var16.createVolatileImage(25, 1); + java.beans.PropertyChangeListener[] var39 = var16.getPropertyChangeListeners("PanelUI"); + boolean var40 = var16.isPaintingForPrint(); + java.awt.im.InputContext var41 = var16.getInputContext(); + SpaceWar.SpacePanel var42 = new SpaceWar.SpacePanel(); + float var43 = var42.getAlignmentX(); + var42.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var48 = var42.getUI(); + java.awt.im.InputMethodRequests var49 = var42.getInputMethodRequests(); + SpaceWar.SpacePanel var50 = new SpaceWar.SpacePanel(); + float var51 = var50.getAlignmentX(); + var50.setVisible(false); + var50.nextFocus(); + var50.updateUI(); + var50.enableInputMethods(true); + var50.setSize((-1), 1); + SpaceWar.SpacePanel var61 = new SpaceWar.SpacePanel(); + var61.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var42.add((java.awt.Component)var50, (java.lang.Object)"SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + SpaceWar.SpacePanel var67 = new SpaceWar.SpacePanel(); + float var68 = var67.getAlignmentX(); + var67.setVisible(false); + var67.setInheritsPopupMenu(false); + boolean var73 = var67.isDoubleBuffered(); + boolean var74 = var67.isMinimumSizeSet(); + SpaceWar.SpacePanel var75 = new SpaceWar.SpacePanel(); + float var76 = var75.getAlignmentX(); + var75.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var81 = new SpaceWar.SpacePanel(); + float var82 = var81.getAlignmentX(); + var81.setVisible(false); + java.awt.Dimension var85 = var81.getPreferredSize(); + var75.setMaximumSize(var85); + boolean var87 = var75.getVerifyInputWhenFocusTarget(); + javax.accessibility.AccessibleContext var88 = var75.getAccessibleContext(); + boolean var89 = var75.isDoubleBuffered(); + java.awt.Rectangle var90 = var75.getVisibleRect(); + var67.setBounds(var90); + java.awt.Rectangle var92 = var42.getBounds(var90); + var16.scrollRectToVisible(var92); + var0.setBounds(var92); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var27); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var30); + + // Regression assertion (captures the current behavior of the code) + assertNull(var32); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var33 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var34 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNull(var37); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var39); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var40 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var41); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var43 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var48); + + // Regression assertion (captures the current behavior of the code) + assertNull(var49); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var51 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var68 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var73 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var74 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var76 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var82 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var85); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var87 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var88); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var89 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var90); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var92); + + } + + public void test321() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test321"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.setInheritsPopupMenu(false); + var0.move(10, 10); + var0.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var0.removeAll(); + javax.accessibility.AccessibleContext var14 = var0.getAccessibleContext(); + java.awt.event.InputMethodListener[] var15 = var0.getInputMethodListeners(); + boolean var16 = javax.swing.JComponent.isLightweightComponent((java.awt.Component)var0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == false); + + } + + public void test322() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test322"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.updateUI(); + var0.enableInputMethods(true); + var0.setSize((-1), 1); + boolean var13 = var0.contains(1, 1); + javax.swing.TransferHandler var14 = var0.getTransferHandler(); + SpaceWar.SpacePanel var15 = new SpaceWar.SpacePanel(); + float var16 = var15.getAlignmentX(); + var15.setVisible(false); + boolean var19 = var15.isDoubleBuffered(); + var15.enable(false); + java.lang.Object var22 = var0.getClientProperty((java.lang.Object)false); + SpaceWar.SpacePanel var23 = new SpaceWar.SpacePanel(); + float var24 = var23.getAlignmentX(); + var23.setVisible(false); + SpaceWar.SpacePanel var27 = new SpaceWar.SpacePanel(); + java.awt.Color var28 = var27.getBackground(); + var23.setForeground(var28); + SpaceWar.SpacePanel var30 = new SpaceWar.SpacePanel(); + float var31 = var30.getAlignmentX(); + var30.setVisible(false); + boolean var34 = var30.isDoubleBuffered(); + java.awt.dnd.DropTarget var35 = var30.getDropTarget(); + var30.show(false); + java.awt.Rectangle var38 = var30.getVisibleRect(); + var23.repaint(var38); + java.awt.Component.BaselineResizeBehavior var40 = var23.getBaselineResizeBehavior(); + SpaceWar.SpacePanel var41 = new SpaceWar.SpacePanel(); + float var42 = var41.getAlignmentX(); + var41.setVisible(false); + var41.nextFocus(); + var41.repaint(1L); + SpaceWar.SpacePanel var48 = new SpaceWar.SpacePanel(); + float var49 = var48.getAlignmentX(); + var48.setVisible(false); + boolean var52 = var48.isDoubleBuffered(); + var48.list(); + SpaceWar.SpacePanel var54 = new SpaceWar.SpacePanel(); + float var55 = var54.getAlignmentX(); + var54.setVisible(false); + boolean var58 = var54.isDoubleBuffered(); + java.awt.dnd.DropTarget var59 = var54.getDropTarget(); + var54.show(false); + java.awt.Rectangle var62 = var54.getVisibleRect(); + java.awt.Rectangle var63 = var48.getBounds(var62); + var41.setBounds(var63); + var23.paintImmediately(var63); + SpaceWar.SpacePanel var66 = new SpaceWar.SpacePanel(); + float var67 = var66.getAlignmentX(); + var66.setVisible(false); + boolean var70 = var66.isDoubleBuffered(); + java.awt.dnd.DropTarget var71 = var66.getDropTarget(); + java.awt.Point var72 = var66.getMousePosition(); + boolean var73 = var66.getAutoscrolls(); + var0.add((java.awt.Component)var23, (java.lang.Object)var66); + var0.transferFocusUpCycle(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var24 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var28); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var31 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var34 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var35); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var38); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var40); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var42 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var49 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var52 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var55 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var58 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var59); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var62); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var63); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var67 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var70 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var71); + + // Regression assertion (captures the current behavior of the code) + assertNull(var72); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var73 == false); + + } + + public void test323() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test323"); + + + SpaceWar.Player var0 = new SpaceWar.Player(); + boolean var1 = var0.isRecovering(); + int var2 = var0.getRequiredPower(); + int var3 = var0.getY(); + int var4 = var0.getX(); + var0.setLeft(false); + var0.setLeft(false); + var0.setLeft(false); + var0.setLeft(false); + java.awt.image.BufferedImage var14 = var0.loadImg("SpaceWar.SpacePanel[,-1,1,-1x10,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var2 == 1); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == 500); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 400); + + // Regression assertion (captures the current behavior of the code) + assertNull(var14); + + } + + public void test324() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test324"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.updateUI(); + var0.enableInputMethods(true); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + boolean var10 = var8.hasFocus(); + java.awt.Insets var11 = var8.getInsets(); + java.awt.Insets var12 = var0.getInsets(var11); + javax.swing.JRootPane var13 = var0.getRootPane(); + int var14 = var0.getY(); + var0.firePropertyChange("SpaceWar.SpacePanel[,-1,1,-1x10,invalid,hidden,disabled,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", ' ', 'a'); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == 0); + + } + + public void test325() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test325"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + var0.setRequestFocusEnabled(false); + var0.reshape(100, 0, 100, 0); + javax.swing.event.AncestorListener[] var10 = var0.getAncestorListeners(); + SpaceWar.SpacePanel var11 = new SpaceWar.SpacePanel(); + float var12 = var11.getAlignmentX(); + SpaceWar.SpacePanel var13 = new SpaceWar.SpacePanel(); + float var14 = var13.getAlignmentX(); + var13.setVisible(false); + java.awt.Dimension var17 = var13.getPreferredSize(); + boolean var18 = var13.getVerifyInputWhenFocusTarget(); + java.awt.Component var21 = var13.findComponentAt(10, 1); + var11.addKeyListener((java.awt.event.KeyListener)var13); + java.awt.Cursor var23 = var11.getCursor(); + var0.setCursor(var23); + java.awt.event.FocusListener[] var25 = var0.getFocusListeners(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var21); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var23); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var25); + + } + + public void test326() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test326"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.setInheritsPopupMenu(false); + boolean var6 = var0.isDoubleBuffered(); + SpaceWar.SpacePanel var7 = new SpaceWar.SpacePanel(); + float var8 = var7.getAlignmentX(); + var7.setVisible(false); + var7.nextFocus(); + var7.reshape((-1), 1, (-1), 10); + var7.disable(); + java.awt.LayoutManager var18 = var7.getLayout(); + var0.setLayout(var18); + var0.enable(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var18); + + } + + public void test327() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test327"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + SpaceWar.SpacePanel var2 = new SpaceWar.SpacePanel(); + float var3 = var2.getAlignmentX(); + var2.setVisible(false); + java.awt.Dimension var6 = var2.getPreferredSize(); + boolean var7 = var2.getVerifyInputWhenFocusTarget(); + java.awt.Component var10 = var2.findComponentAt(10, 1); + var0.addKeyListener((java.awt.event.KeyListener)var2); + var2.repaint(100, (-1), (-1), 1); + SpaceWar.SpacePanel var17 = new SpaceWar.SpacePanel(); + java.awt.Color var18 = var17.getBackground(); + var17.repaint(); + java.awt.im.InputMethodRequests var20 = var17.getInputMethodRequests(); + java.awt.GraphicsConfiguration var21 = var17.getGraphicsConfiguration(); + var2.remove((java.awt.Component)var17); + var17.setName(""); + var17.show(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertNull(var21); + + } + + public void test328() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test328"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.setInheritsPopupMenu(false); + var0.setFocusTraversalPolicyProvider(true); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + java.awt.Color var9 = var8.getBackground(); + var8.repaint(); + java.awt.im.InputMethodRequests var11 = var8.getInputMethodRequests(); + java.awt.GraphicsConfiguration var12 = var8.getGraphicsConfiguration(); + java.awt.Component var13 = var0.add((java.awt.Component)var8); + java.awt.Rectangle var14 = var0.getBounds(); + // The following exception was thrown during execution. + // This behavior will recorded for regression testing. + try { + var0.remove((-1)); + fail("Expected exception of type java.lang.ArrayIndexOutOfBoundsException"); + } catch (java.lang.ArrayIndexOutOfBoundsException e) { + // Expected exception. + } + + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var9); + + // Regression assertion (captures the current behavior of the code) + assertNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + } + + public void test329() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test329"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + var0.setRequestFocusEnabled(false); + var0.reshape(100, 0, 100, 0); + var0.requestFocus(); + var0.firePropertyChange("hi!", '4', ' '); + java.awt.Point var15 = var0.getLocation(); + java.awt.Dimension var16 = var0.size(); + boolean var17 = var0.isDoubleBuffered(); + boolean var18 = var0.getFocusTraversalKeysEnabled(); + java.awt.Rectangle var19 = var0.getVisibleRect(); + java.awt.Color var20 = var0.getBackground(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + } + + public void test330() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test330"); + + + SpaceWar.Explosion var4 = new SpaceWar.Explosion(495.44236387443226d, 383.0566534864913d, 3, 2); + + } + + public void test331() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test331"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.setInheritsPopupMenu(false); + var0.move(10, 10); + var0.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var0.removeAll(); + java.awt.Point var14 = var0.location(); + SpaceWar.SpacePanel var15 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var16 = new SpaceWar.SpacePanel(); + java.awt.Color var17 = var16.getBackground(); + SpaceWar.SpacePanel var18 = new SpaceWar.SpacePanel(); + float var19 = var18.getAlignmentX(); + var18.setVisible(false); + var18.nextFocus(); + var18.updateUI(); + var18.enableInputMethods(true); + var15.add((java.awt.Component)var16, (java.lang.Object)true); + java.awt.Dimension var27 = var16.getPreferredSize(); + var16.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", (-1.0f), 100.0f); + SpaceWar.SpacePanel var32 = new SpaceWar.SpacePanel(); + float var33 = var32.getAlignmentX(); + var32.setVisible(false); + boolean var36 = var32.isDoubleBuffered(); + SpaceWar.SpacePanel var37 = new SpaceWar.SpacePanel(); + java.awt.Color var38 = var37.getBackground(); + var37.repaint(); + java.lang.Object var40 = var32.getClientProperty((java.lang.Object)var37); + var16.remove((java.awt.Component)var32); + SpaceWar.SpacePanel var42 = new SpaceWar.SpacePanel(); + float var43 = var42.getAlignmentX(); + var42.firePropertyChange("", (-1), 1); + java.awt.event.MouseMotionListener[] var48 = var42.getMouseMotionListeners(); + java.awt.Dimension var49 = var42.getMinimumSize(); + var16.setMaximumSize(var49); + var0.setMinimumSize(var49); + java.awt.event.FocusListener[] var52 = var0.getFocusListeners(); + SpaceWar.SpacePanel var53 = new SpaceWar.SpacePanel(); + float var54 = var53.getAlignmentX(); + var53.setVisible(false); + var53.nextFocus(); + var53.updateUI(); + var53.enableInputMethods(true); + java.awt.Image var63 = var53.createImage(25, 500); + boolean var64 = var0.isFocusCycleRoot((java.awt.Container)var53); + boolean var65 = var0.isEnabled(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var27); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var33 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var36 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var38); + + // Regression assertion (captures the current behavior of the code) + assertNull(var40); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var43 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var48); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var49); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var52); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var54 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNull(var63); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var64 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var65 == true); + + } + + public void test332() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test332"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + java.awt.Dimension var4 = var0.getPreferredSize(); + java.awt.Toolkit var5 = var0.getToolkit(); + boolean var6 = var0.isFocusable(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + var8.nextFocus(); + var8.reshape((-1), 1, (-1), 10); + java.util.Set var19 = var8.getFocusTraversalKeys(3); + var0.setFocusTraversalKeys(1, var19); + javax.swing.plaf.PanelUI var21 = var0.getUI(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var4); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var21); + + } + + public void test333() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test333"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.repaint(1L); + SpaceWar.SpacePanel var7 = new SpaceWar.SpacePanel(); + float var8 = var7.getAlignmentX(); + var7.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var13 = new SpaceWar.SpacePanel(); + float var14 = var13.getAlignmentX(); + var13.setVisible(false); + java.awt.Dimension var17 = var13.getPreferredSize(); + var7.setMaximumSize(var17); + var0.setPreferredSize(var17); + javax.swing.plaf.PanelUI var20 = var0.getUI(); + java.awt.Dimension var21 = var0.getMinimumSize(); + boolean var22 = var0.isFocusable(); + java.awt.Color var23 = var0.getForeground(); + java.awt.Component var26 = var0.findComponentAt(499, (-1)); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var21); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var22 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var23); + + // Regression assertion (captures the current behavior of the code) + assertNull(var26); + + } + + public void test334() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test334"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var6 = var0.getMouseListeners(); + int var7 = var0.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var8 = var0.getInputMethodRequests(); + java.lang.String var9 = var0.getToolTipText(); + boolean var10 = var0.isOpaque(); + SpaceWar.SpacePanel var11 = new SpaceWar.SpacePanel(); + java.awt.Color var12 = var11.getBackground(); + var11.repaint(); + java.awt.im.InputMethodRequests var14 = var11.getInputMethodRequests(); + var11.setDoubleBuffered(true); + var11.show(false); + var11.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", (-1), 24); + java.awt.Point var23 = var11.location(); + java.awt.Dimension var24 = var11.getMinimumSize(); + java.awt.Rectangle var25 = var11.bounds(); + var0.repaint(var25); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertNull(var9); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var23); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var25); + + } + + public void test335() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test335"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + java.awt.im.InputMethodRequests var3 = var0.getInputMethodRequests(); + var0.setDoubleBuffered(true); + var0.setInheritsPopupMenu(false); + javax.swing.plaf.PanelUI var8 = var0.getUI(); + java.util.Set var10 = var0.getFocusTraversalKeys(3); + var0.requestFocus(); + var0.setAlignmentX(0.0f); + SpaceWar.SpacePanel var14 = new SpaceWar.SpacePanel(); + float var15 = var14.getAlignmentX(); + var14.setVisible(false); + boolean var18 = var14.isDoubleBuffered(); + java.awt.dnd.DropTarget var19 = var14.getDropTarget(); + var14.show(false); + boolean var22 = var14.isPaintingForPrint(); + SpaceWar.SpacePanel var23 = new SpaceWar.SpacePanel(); + float var24 = var23.getAlignmentX(); + var23.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var29 = var23.getMouseListeners(); + int var30 = var23.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var31 = var23.getInputMethodRequests(); + var14.addKeyListener((java.awt.event.KeyListener)var23); + boolean var33 = var14.isDisplayable(); + var14.resize(400, 2); + SpaceWar.SpacePanel var37 = new SpaceWar.SpacePanel(); + float var38 = var37.getAlignmentX(); + var37.setVisible(false); + var37.nextFocus(); + var37.updateUI(); + var37.enableInputMethods(true); + SpaceWar.SpacePanel var45 = new SpaceWar.SpacePanel(); + float var46 = var45.getAlignmentX(); + boolean var47 = var45.hasFocus(); + java.awt.Insets var48 = var45.getInsets(); + java.awt.Insets var49 = var37.getInsets(var48); + SpaceWar.SpacePanel var50 = new SpaceWar.SpacePanel(); + var50.setName(""); + java.awt.Graphics var53 = var50.getGraphics(); + java.awt.event.MouseMotionListener[] var54 = var50.getMouseMotionListeners(); + boolean var55 = var50.getIgnoreRepaint(); + var50.transferFocusBackward(); + var14.putClientProperty((java.lang.Object)var48, (java.lang.Object)var50); + java.awt.Insets var58 = var0.getInsets(var48); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var22 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var24 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var29); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var30 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var31); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var33 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var38 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var46 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var47 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var48); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var49); + + // Regression assertion (captures the current behavior of the code) + assertNull(var53); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var54); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var55 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var58); + + } + + public void test336() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test336"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + java.awt.Color var7 = var6.getBackground(); + var6.repaint(); + var6.setRequestFocusEnabled(false); + var6.reshape(100, 0, 100, 0); + var6.requestFocus(); + SpaceWar.SpacePanel var17 = new SpaceWar.SpacePanel(); + float var18 = var17.getAlignmentX(); + var17.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var23 = var17.getUI(); + java.awt.im.InputMethodRequests var24 = var17.getInputMethodRequests(); + SpaceWar.SpacePanel var25 = new SpaceWar.SpacePanel(); + float var26 = var25.getAlignmentX(); + var25.setVisible(false); + var25.nextFocus(); + var25.updateUI(); + var25.enableInputMethods(true); + var25.setSize((-1), 1); + SpaceWar.SpacePanel var36 = new SpaceWar.SpacePanel(); + var36.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var17.add((java.awt.Component)var25, (java.lang.Object)"SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + SpaceWar.SpacePanel var42 = new SpaceWar.SpacePanel(); + var42.setName(""); + java.awt.ComponentOrientation var45 = var42.getComponentOrientation(); + var17.applyComponentOrientation(var45); + var6.setComponentOrientation(var45); + var0.applyComponentOrientation(var45); + int var49 = var0.getHeight(); + boolean var52 = var0.inside(3, 2); + boolean var55 = var0.inside(1, (-1)); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var23); + + // Regression assertion (captures the current behavior of the code) + assertNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var45); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var49 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var52 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var55 == false); + + } + + public void test337() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test337"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + var0.show(false); + java.awt.Rectangle var8 = var0.getVisibleRect(); + java.awt.image.BufferedImage var10 = var0.loadImg("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + java.awt.ComponentOrientation var11 = var0.getComponentOrientation(); + boolean var12 = var0.isPaintingTile(); + javax.swing.TransferHandler var13 = var0.getTransferHandler(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var13); + + } + + public void test338() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test338"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + float var7 = var6.getAlignmentX(); + var6.setVisible(false); + SpaceWar.SpacePanel var10 = new SpaceWar.SpacePanel(); + java.awt.Color var11 = var10.getBackground(); + var6.setForeground(var11); + var0.setBackground(var11); + var0.grabFocus(); + SpaceWar.SpacePanel var15 = new SpaceWar.SpacePanel(); + float var16 = var15.getAlignmentX(); + var15.setVisible(false); + boolean var19 = var15.isDoubleBuffered(); + java.awt.dnd.DropTarget var20 = var15.getDropTarget(); + boolean var21 = var15.isFocusCycleRoot(); + SpaceWar.SpacePanel var22 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var23 = new SpaceWar.SpacePanel(); + java.awt.Color var24 = var23.getBackground(); + SpaceWar.SpacePanel var25 = new SpaceWar.SpacePanel(); + float var26 = var25.getAlignmentX(); + var25.setVisible(false); + var25.nextFocus(); + var25.updateUI(); + var25.enableInputMethods(true); + var22.add((java.awt.Component)var23, (java.lang.Object)true); + java.awt.Dimension var34 = var23.getPreferredSize(); + var15.setSize(var34); + var0.setMaximumSize(var34); + float var37 = var0.getAlignmentY(); + java.lang.String var38 = var0.getToolTipText(); + var0.setDebugGraphicsOptions(500); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var34); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNull(var38); + + } + + public void test339() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test339"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + var0.setRequestFocusEnabled(false); + var0.setIgnoreRepaint(false); + boolean var7 = var0.isFocusable(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + java.awt.Dimension var12 = var8.getPreferredSize(); + java.awt.Toolkit var13 = var8.getToolkit(); + java.awt.Toolkit var14 = var8.getToolkit(); + var8.firePropertyChange("hi!", 25, 1); + boolean var19 = var8.isFocusable(); + java.lang.Object var20 = var0.getClientProperty((java.lang.Object)var19); + java.awt.Dimension var21 = var0.getMaximumSize(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var21); + + } + + public void test340() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test340"); + + + SpaceWar.Player var0 = new SpaceWar.Player(); + boolean var1 = var0.isRecovering(); + var0.loseLife(); + int var3 = var0.getR(); + var0.loseLife(); + var0.setDown(true); + int var7 = var0.getRequiredPower(); + int var8 = var0.getPowerLevel(); + int var9 = var0.getX(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == 25); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 1); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 400); + + } + + public void test341() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test341"); + + + SpaceWar.Player var0 = new SpaceWar.Player(); + int var1 = var0.getPower(); + var0.setLeft(true); + var0.increasePower(0); + var0.setRigth(false); + int var8 = var0.getY(); + int var9 = var0.getR(); + int var10 = var0.getRequiredPower(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 500); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 25); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 1); + + } + + public void test342() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test342"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + var0.show(false); + boolean var8 = var0.isPaintingForPrint(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var15 = var9.getMouseListeners(); + int var16 = var9.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var17 = var9.getInputMethodRequests(); + var0.addKeyListener((java.awt.event.KeyListener)var9); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + float var20 = var19.getAlignmentX(); + var19.setVisible(false); + boolean var23 = var19.isDoubleBuffered(); + var19.list(); + float var25 = var19.getAlignmentY(); + boolean var26 = var9.isFocusCycleRoot((java.awt.Container)var19); + javax.swing.JPopupMenu var27 = var19.getComponentPopupMenu(); + var19.move((-1), 100); + SpaceWar.SpacePanel var31 = new SpaceWar.SpacePanel(); + float var32 = var31.getAlignmentX(); + var31.setVisible(false); + var31.nextFocus(); + var31.reshape((-1), 1, (-1), 10); + var31.disable(); + java.awt.LayoutManager var42 = var31.getLayout(); + java.awt.Container var43 = var31.getParent(); + java.lang.String var44 = var31.getUIClassID(); + float var45 = var31.getAlignmentX(); + var31.enable(true); + boolean var48 = var31.isPaintingTile(); + javax.swing.plaf.PanelUI var49 = var31.getUI(); + var19.setUI(var49); + // The following exception was thrown during execution. + // This behavior will recorded for regression testing. + try { + var19.remove(1); + fail("Expected exception of type java.lang.ArrayIndexOutOfBoundsException"); + } catch (java.lang.ArrayIndexOutOfBoundsException e) { + // Expected exception. + } + + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var27); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var32 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var42); + + // Regression assertion (captures the current behavior of the code) + assertNull(var43); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var44 + "' != '" + "PanelUI"+ "'", var44.equals("PanelUI")); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var45 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var48 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var49); + + } + + public void test343() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test343"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + boolean var2 = var0.hasFocus(); + boolean var3 = var0.isPreferredSizeSet(); + SpaceWar.SpacePanel var4 = new SpaceWar.SpacePanel(); + java.awt.Color var5 = var4.getBackground(); + var4.repaint(); + var4.setRequestFocusEnabled(false); + int var9 = var0.getComponentZOrder((java.awt.Component)var4); + int var10 = var0.getDebugGraphicsOptions(); + var0.enableInputMethods(true); + SpaceWar.SpacePanel var13 = new SpaceWar.SpacePanel(); + float var14 = var13.getAlignmentX(); + var13.setVisible(false); + var13.nextFocus(); + var13.reshape((-1), 1, (-1), 10); + SpaceWar.SpacePanel var23 = new SpaceWar.SpacePanel(); + java.awt.Color var24 = var23.getBackground(); + var23.repaint(); + var23.setRequestFocusEnabled(false); + var23.reshape(100, 0, 100, 0); + java.awt.Component var33 = var13.add((java.awt.Component)var23); + SpaceWar.SpacePanel var34 = new SpaceWar.SpacePanel(); + var34.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + javax.swing.plaf.PanelUI var39 = var34.getUI(); + SpaceWar.SpacePanel var40 = new SpaceWar.SpacePanel(); + float var41 = var40.getAlignmentX(); + var40.setVisible(false); + var40.nextFocus(); + var40.repaint(1L); + SpaceWar.SpacePanel var47 = new SpaceWar.SpacePanel(); + float var48 = var47.getAlignmentX(); + var47.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var53 = new SpaceWar.SpacePanel(); + float var54 = var53.getAlignmentX(); + var53.setVisible(false); + java.awt.Dimension var57 = var53.getPreferredSize(); + var47.setMaximumSize(var57); + var40.setPreferredSize(var57); + var34.setMaximumSize(var57); + java.awt.Dimension var61 = var23.getSize(var57); + var0.setMinimumSize(var61); + SpaceWar.SpacePanel var63 = new SpaceWar.SpacePanel(); + float var64 = var63.getAlignmentX(); + var63.setVisible(false); + boolean var67 = var63.isDoubleBuffered(); + var63.list(); + SpaceWar.SpacePanel var69 = new SpaceWar.SpacePanel(); + float var70 = var69.getAlignmentX(); + var69.setVisible(false); + boolean var73 = var69.isDoubleBuffered(); + java.awt.dnd.DropTarget var74 = var69.getDropTarget(); + var69.show(false); + java.awt.Rectangle var77 = var69.getVisibleRect(); + java.awt.Rectangle var78 = var63.getBounds(var77); + javax.swing.JToolTip var79 = var63.createToolTip(); + java.awt.Graphics var80 = var63.getGraphics(); + java.beans.VetoableChangeListener[] var81 = var63.getVetoableChangeListeners(); + var0.addKeyListener((java.awt.event.KeyListener)var63); + boolean var83 = var63.isValidateRoot(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var2 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == (-1)); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var33); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var39); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var41 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var48 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var54 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var57); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var61); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var64 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var67 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var70 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var73 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var74); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var77); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var78); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var79); + + // Regression assertion (captures the current behavior of the code) + assertNull(var80); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var81); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var83 == false); + + } + + public void test344() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test344"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + var0.show(false); + boolean var8 = var0.isPaintingForPrint(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var15 = var9.getMouseListeners(); + int var16 = var9.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var17 = var9.getInputMethodRequests(); + var0.addKeyListener((java.awt.event.KeyListener)var9); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + float var20 = var19.getAlignmentX(); + var19.setVisible(false); + boolean var23 = var19.isDoubleBuffered(); + var19.list(); + float var25 = var19.getAlignmentY(); + boolean var26 = var9.isFocusCycleRoot((java.awt.Container)var19); + javax.swing.JPopupMenu var27 = var19.getComponentPopupMenu(); + SpaceWar.SpacePanel var28 = new SpaceWar.SpacePanel(); + float var29 = var28.getAlignmentX(); + boolean var30 = var28.hasFocus(); + boolean var31 = var28.isPreferredSizeSet(); + SpaceWar.SpacePanel var32 = new SpaceWar.SpacePanel(); + java.awt.Color var33 = var32.getBackground(); + var32.repaint(); + var32.setRequestFocusEnabled(false); + int var37 = var28.getComponentZOrder((java.awt.Component)var32); + int var38 = var28.getDebugGraphicsOptions(); + var28.enableInputMethods(true); + SpaceWar.SpacePanel var41 = new SpaceWar.SpacePanel(); + float var42 = var41.getAlignmentX(); + var41.setVisible(false); + var41.nextFocus(); + var41.reshape((-1), 1, (-1), 10); + SpaceWar.SpacePanel var51 = new SpaceWar.SpacePanel(); + java.awt.Color var52 = var51.getBackground(); + var51.repaint(); + var51.setRequestFocusEnabled(false); + var51.reshape(100, 0, 100, 0); + java.awt.Component var61 = var41.add((java.awt.Component)var51); + SpaceWar.SpacePanel var62 = new SpaceWar.SpacePanel(); + var62.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + javax.swing.plaf.PanelUI var67 = var62.getUI(); + SpaceWar.SpacePanel var68 = new SpaceWar.SpacePanel(); + float var69 = var68.getAlignmentX(); + var68.setVisible(false); + var68.nextFocus(); + var68.repaint(1L); + SpaceWar.SpacePanel var75 = new SpaceWar.SpacePanel(); + float var76 = var75.getAlignmentX(); + var75.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var81 = new SpaceWar.SpacePanel(); + float var82 = var81.getAlignmentX(); + var81.setVisible(false); + java.awt.Dimension var85 = var81.getPreferredSize(); + var75.setMaximumSize(var85); + var68.setPreferredSize(var85); + var62.setMaximumSize(var85); + java.awt.Dimension var89 = var51.getSize(var85); + var28.setMinimumSize(var89); + var19.setMinimumSize(var89); + var19.removeNotify(); + java.awt.Font var93 = var19.getFont(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var27); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var29 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var30 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var31 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var33); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == (-1)); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var38 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var42 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var52); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var61); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var67); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var69 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var76 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var82 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var85); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var89); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var93); + + } + + public void test345() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test345"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.setInheritsPopupMenu(false); + var0.setFocusTraversalPolicyProvider(true); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + boolean var12 = var8.isDoubleBuffered(); + var8.list(); + SpaceWar.SpacePanel var14 = new SpaceWar.SpacePanel(); + float var15 = var14.getAlignmentX(); + var14.setVisible(false); + boolean var18 = var14.isDoubleBuffered(); + java.awt.dnd.DropTarget var19 = var14.getDropTarget(); + var14.show(false); + java.awt.Rectangle var22 = var14.getVisibleRect(); + java.awt.Rectangle var23 = var8.getBounds(var22); + javax.swing.JToolTip var24 = var8.createToolTip(); + var0.removeKeyListener((java.awt.event.KeyListener)var8); + javax.swing.TransferHandler var26 = var0.getTransferHandler(); + var0.transferFocus(); + SpaceWar.SpacePanel var28 = new SpaceWar.SpacePanel(); + float var29 = var28.getAlignmentX(); + SpaceWar.SpacePanel var30 = new SpaceWar.SpacePanel(); + float var31 = var30.getAlignmentX(); + var30.setVisible(false); + java.awt.Dimension var34 = var30.getPreferredSize(); + boolean var35 = var30.getVerifyInputWhenFocusTarget(); + java.awt.Component var38 = var30.findComponentAt(10, 1); + var28.addKeyListener((java.awt.event.KeyListener)var30); + java.awt.Dimension var40 = var30.getMinimumSize(); + SpaceWar.SpacePanel var41 = new SpaceWar.SpacePanel(); + java.awt.Color var42 = var41.getBackground(); + var41.repaint(); + var41.setRequestFocusEnabled(false); + var41.reshape(100, 0, 100, 0); + var41.requestFocus(); + java.awt.Rectangle var52 = var41.getVisibleRect(); + var30.setBounds(var52); + var0.scrollRectToVisible(var52); + int var55 = var0.getY(); + java.awt.Graphics var56 = var0.getGraphics(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var23); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var29 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var31 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var34); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var35 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var38); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var40); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var42); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var52); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var55 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var56); + + } + + public void test346() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test346"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + var0.show(false); + boolean var8 = var0.isPaintingForPrint(); + boolean var9 = var0.getIgnoreRepaint(); + var0.repaint(100, 10, 100, 0); + SpaceWar.SpacePanel var15 = new SpaceWar.SpacePanel(); + float var16 = var15.getAlignmentX(); + var15.setVisible(false); + boolean var19 = var15.isDoubleBuffered(); + var15.list(); + SpaceWar.SpacePanel var21 = new SpaceWar.SpacePanel(); + float var22 = var21.getAlignmentX(); + var21.setVisible(false); + boolean var25 = var21.isDoubleBuffered(); + java.awt.dnd.DropTarget var26 = var21.getDropTarget(); + var21.show(false); + java.awt.Rectangle var29 = var21.getVisibleRect(); + java.awt.Rectangle var30 = var15.getBounds(var29); + javax.swing.JToolTip var31 = var15.createToolTip(); + var15.firePropertyChange("", false, false); + var15.validate(); + SpaceWar.SpacePanel var37 = new SpaceWar.SpacePanel(); + float var38 = var37.getAlignmentX(); + var37.setVisible(false); + boolean var41 = var37.isDoubleBuffered(); + java.awt.dnd.DropTarget var42 = var37.getDropTarget(); + var37.show(false); + boolean var45 = var37.isPaintingForPrint(); + SpaceWar.SpacePanel var46 = new SpaceWar.SpacePanel(); + float var47 = var46.getAlignmentX(); + var46.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var52 = var46.getMouseListeners(); + int var53 = var46.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var54 = var46.getInputMethodRequests(); + var37.addKeyListener((java.awt.event.KeyListener)var46); + var46.repaint(); + java.awt.Point var57 = var46.location(); + java.awt.Component var58 = var15.getComponentAt(var57); + var0.setLocation(var57); + java.awt.peer.ComponentPeer var60 = var0.getPeer(); + boolean var61 = var0.isForegroundSet(); + // The following exception was thrown during execution. + // This behavior will recorded for regression testing. + try { + boolean var63 = var0.areFocusTraversalKeysSet(25); + fail("Expected exception of type java.lang.IllegalArgumentException"); + } catch (java.lang.IllegalArgumentException e) { + // Expected exception. + } + + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var22 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var29); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var30); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var31); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var38 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var41 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var42); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var45 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var47 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var52); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var53 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var54); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var57); + + // Regression assertion (captures the current behavior of the code) + assertNull(var58); + + // Regression assertion (captures the current behavior of the code) + assertNull(var60); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var61 == true); + + } + + public void test347() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test347"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + java.awt.im.InputMethodRequests var3 = var0.getInputMethodRequests(); + int var4 = var0.countComponents(); + var0.setDebugGraphicsOptions(24); + java.awt.Image var9 = var0.createImage(399, 25); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var9); + + } + + public void test348() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test348"); + + + SpaceWar.Enemy var2 = new SpaceWar.Enemy(25, (-1)); + var2.update(); + var2.update(); + java.awt.image.BufferedImage var6 = var2.loadImg("hi!"); + var2.hit(); + + // Regression assertion (captures the current behavior of the code) + assertNull(var6); + + } + + public void test349() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test349"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + boolean var2 = var0.hasFocus(); + boolean var3 = var0.isPreferredSizeSet(); + var0.firePropertyChange("", (short)1, (short)0); + boolean var8 = var0.isMaximumSizeSet(); + java.awt.peer.ComponentPeer var9 = var0.getPeer(); + SpaceWar.SpacePanel var10 = new SpaceWar.SpacePanel(); + float var11 = var10.getAlignmentX(); + var10.setVisible(false); + boolean var14 = var10.isDoubleBuffered(); + java.awt.dnd.DropTarget var15 = var10.getDropTarget(); + var10.show(false); + SpaceWar.SpacePanel var18 = new SpaceWar.SpacePanel(); + float var19 = var18.getAlignmentX(); + var18.setVisible(false); + SpaceWar.SpacePanel var22 = new SpaceWar.SpacePanel(); + java.awt.Color var23 = var22.getBackground(); + var18.setForeground(var23); + SpaceWar.SpacePanel var25 = new SpaceWar.SpacePanel(); + float var26 = var25.getAlignmentX(); + var25.setVisible(false); + boolean var29 = var25.isDoubleBuffered(); + java.awt.dnd.DropTarget var30 = var25.getDropTarget(); + var25.show(false); + java.awt.Rectangle var33 = var25.getVisibleRect(); + var18.repaint(var33); + java.awt.FocusTraversalPolicy var35 = var18.getFocusTraversalPolicy(); + java.awt.im.InputMethodRequests var36 = var18.getInputMethodRequests(); + var18.layout(); + SpaceWar.SpacePanel var38 = new SpaceWar.SpacePanel(); + float var39 = var38.getAlignmentX(); + var38.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var44 = new SpaceWar.SpacePanel(); + float var45 = var44.getAlignmentX(); + var44.setVisible(false); + SpaceWar.SpacePanel var48 = new SpaceWar.SpacePanel(); + java.awt.Color var49 = var48.getBackground(); + var44.setForeground(var49); + var38.setBackground(var49); + var18.setForeground(var49); + int var53 = var18.getWidth(); + javax.swing.plaf.PanelUI var54 = var18.getUI(); + var10.setUI(var54); + var0.setUI(var54); + java.awt.event.MouseListener[] var57 = var0.getMouseListeners(); + var0.enableInputMethods(false); + var0.transferFocusDownCycle(); + var0.setRequestFocusEnabled(true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var2 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var9); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var23); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var29 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var30); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var33); + + // Regression assertion (captures the current behavior of the code) + assertNull(var35); + + // Regression assertion (captures the current behavior of the code) + assertNull(var36); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var39 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var45 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var49); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var53 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var54); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var57); + + } + + public void test350() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test350"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + java.awt.im.InputMethodRequests var3 = var0.getInputMethodRequests(); + int var4 = var0.countComponents(); + java.awt.event.ComponentListener[] var5 = var0.getComponentListeners(); + var0.removeNotify(); + java.awt.Component var9 = var0.getComponentAt(1, (-1)); + java.awt.event.HierarchyBoundsListener[] var10 = var0.getHierarchyBoundsListeners(); + java.awt.event.HierarchyListener[] var11 = var0.getHierarchyListeners(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertNull(var9); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + } + + public void test351() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test351"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.reshape((-1), 1, (-1), 10); + var0.disable(); + java.awt.LayoutManager var11 = var0.getLayout(); + java.awt.Container var12 = var0.getParent(); + boolean var13 = var0.isPaintingForPrint(); + SpaceWar.SpacePanel var14 = new SpaceWar.SpacePanel(); + float var15 = var14.getAlignmentX(); + var14.setVisible(false); + var14.nextFocus(); + var14.reshape((-1), 1, (-1), 10); + SpaceWar.SpacePanel var24 = new SpaceWar.SpacePanel(); + java.awt.Color var25 = var24.getBackground(); + var24.repaint(); + var24.setRequestFocusEnabled(false); + var24.reshape(100, 0, 100, 0); + java.awt.Component var34 = var14.add((java.awt.Component)var24); + SpaceWar.SpacePanel var35 = new SpaceWar.SpacePanel(); + var35.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + javax.swing.plaf.PanelUI var40 = var35.getUI(); + SpaceWar.SpacePanel var41 = new SpaceWar.SpacePanel(); + float var42 = var41.getAlignmentX(); + var41.setVisible(false); + var41.nextFocus(); + var41.repaint(1L); + SpaceWar.SpacePanel var48 = new SpaceWar.SpacePanel(); + float var49 = var48.getAlignmentX(); + var48.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var54 = new SpaceWar.SpacePanel(); + float var55 = var54.getAlignmentX(); + var54.setVisible(false); + java.awt.Dimension var58 = var54.getPreferredSize(); + var48.setMaximumSize(var58); + var41.setPreferredSize(var58); + var35.setMaximumSize(var58); + java.awt.Dimension var62 = var24.getSize(var58); + var0.setSize(var62); + SpaceWar.SpacePanel var64 = new SpaceWar.SpacePanel(); + float var65 = var64.getAlignmentX(); + var64.setVisible(false); + boolean var68 = var64.isDoubleBuffered(); + var64.enable(false); + var0.removeKeyListener((java.awt.event.KeyListener)var64); + var64.requestFocus(); + java.awt.event.HierarchyListener[] var73 = var64.getHierarchyListeners(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var25); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var34); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var40); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var42 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var49 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var55 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var58); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var62); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var65 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var68 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var73); + + } + + public void test352() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test352"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.updateUI(); + var0.enableInputMethods(true); + java.awt.Point var8 = var0.location(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.setVisible(false); + var9.nextFocus(); + java.awt.Component var14 = var0.add((java.awt.Component)var9); + SpaceWar.SpacePanel var15 = new SpaceWar.SpacePanel(); + float var16 = var15.getAlignmentX(); + var15.setVisible(false); + var15.nextFocus(); + var15.updateUI(); + var15.enableInputMethods(true); + java.awt.Point var24 = var15.getMousePosition(false); + SpaceWar.SpacePanel var25 = new SpaceWar.SpacePanel(); + float var26 = var25.getAlignmentX(); + SpaceWar.SpacePanel var27 = new SpaceWar.SpacePanel(); + float var28 = var27.getAlignmentX(); + var27.setVisible(false); + java.awt.Dimension var31 = var27.getPreferredSize(); + boolean var32 = var27.getVerifyInputWhenFocusTarget(); + java.awt.Component var35 = var27.findComponentAt(10, 1); + var25.addKeyListener((java.awt.event.KeyListener)var27); + var27.repaint(100, (-1), (-1), 1); + SpaceWar.SpacePanel var42 = new SpaceWar.SpacePanel(); + java.awt.Color var43 = var42.getBackground(); + var42.repaint(); + java.awt.im.InputMethodRequests var45 = var42.getInputMethodRequests(); + java.awt.GraphicsConfiguration var46 = var42.getGraphicsConfiguration(); + var27.remove((java.awt.Component)var42); + java.awt.Font var48 = var42.getFont(); + var15.setFont(var48); + var9.setFont(var48); + boolean var51 = var9.isFocusable(); + var9.setVisible(true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var28 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var31); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var32 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var35); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var43); + + // Regression assertion (captures the current behavior of the code) + assertNull(var45); + + // Regression assertion (captures the current behavior of the code) + assertNull(var46); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var48); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var51 == true); + + } + + public void test353() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test353"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + SpaceWar.SpacePanel var4 = new SpaceWar.SpacePanel(); + java.awt.Color var5 = var4.getBackground(); + var0.setForeground(var5); + SpaceWar.SpacePanel var7 = new SpaceWar.SpacePanel(); + float var8 = var7.getAlignmentX(); + var7.setVisible(false); + boolean var11 = var7.isDoubleBuffered(); + java.awt.dnd.DropTarget var12 = var7.getDropTarget(); + var7.show(false); + java.awt.Rectangle var15 = var7.getVisibleRect(); + var0.repaint(var15); + java.awt.FocusTraversalPolicy var17 = var0.getFocusTraversalPolicy(); + java.awt.im.InputMethodRequests var18 = var0.getInputMethodRequests(); + var0.layout(); + java.awt.Container var20 = var0.getFocusCycleRootAncestor(); + SpaceWar.SpacePanel var21 = new SpaceWar.SpacePanel(); + float var22 = var21.getAlignmentX(); + var21.setVisible(false); + boolean var25 = var21.isDoubleBuffered(); + var21.list(); + SpaceWar.SpacePanel var27 = new SpaceWar.SpacePanel(); + float var28 = var27.getAlignmentX(); + var27.setVisible(false); + boolean var31 = var27.isDoubleBuffered(); + java.awt.dnd.DropTarget var32 = var27.getDropTarget(); + var27.show(false); + java.awt.Rectangle var35 = var27.getVisibleRect(); + java.awt.Rectangle var36 = var21.getBounds(var35); + javax.swing.JToolTip var37 = var21.createToolTip(); + var21.firePropertyChange("", false, false); + var21.validate(); + SpaceWar.SpacePanel var43 = new SpaceWar.SpacePanel(); + float var44 = var43.getAlignmentX(); + var43.setVisible(false); + boolean var47 = var43.isDoubleBuffered(); + java.awt.dnd.DropTarget var48 = var43.getDropTarget(); + var43.show(false); + boolean var51 = var43.isPaintingForPrint(); + SpaceWar.SpacePanel var52 = new SpaceWar.SpacePanel(); + float var53 = var52.getAlignmentX(); + var52.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var58 = var52.getMouseListeners(); + int var59 = var52.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var60 = var52.getInputMethodRequests(); + var43.addKeyListener((java.awt.event.KeyListener)var52); + var52.repaint(); + java.awt.Point var63 = var52.location(); + java.awt.Component var64 = var21.getComponentAt(var63); + var0.setLocation(var63); + var0.setRequestFocusEnabled(false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var22 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var28 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var31 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var32); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var35); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var36); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var37); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var44 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var47 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var48); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var51 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var53 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var58); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var59 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var60); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var63); + + // Regression assertion (captures the current behavior of the code) + assertNull(var64); + + } + + public void test354() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test354"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + SpaceWar.SpacePanel var4 = new SpaceWar.SpacePanel(); + java.awt.Color var5 = var4.getBackground(); + var0.setForeground(var5); + SpaceWar.SpacePanel var7 = new SpaceWar.SpacePanel(); + float var8 = var7.getAlignmentX(); + var7.setVisible(false); + boolean var11 = var7.isDoubleBuffered(); + java.awt.dnd.DropTarget var12 = var7.getDropTarget(); + var7.show(false); + java.awt.Rectangle var15 = var7.getVisibleRect(); + var0.repaint(var15); + java.awt.FocusTraversalPolicy var17 = var0.getFocusTraversalPolicy(); + java.awt.im.InputMethodRequests var18 = var0.getInputMethodRequests(); + var0.layout(); + boolean var20 = var0.isFocusTraversalPolicyProvider(); + java.awt.Insets var21 = var0.insets(); + java.awt.Dimension var22 = var0.getMinimumSize(); + var0.repaint(100L, 3, 0, 399, 400); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var21); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var22); + + } + + public void test355() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test355"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + java.awt.Dimension var4 = var0.getPreferredSize(); + boolean var5 = var0.getVerifyInputWhenFocusTarget(); + java.awt.Component var8 = var0.findComponentAt(10, 1); + boolean var9 = var0.isCursorSet(); + java.awt.Dimension var10 = var0.getMinimumSize(); + var0.setFocusCycleRoot(true); + var0.show(false); + SpaceWar.SpacePanel var15 = new SpaceWar.SpacePanel(); + float var16 = var15.getAlignmentX(); + var15.setVisible(false); + boolean var19 = var15.isDoubleBuffered(); + java.awt.dnd.DropTarget var20 = var15.getDropTarget(); + var15.show(false); + boolean var23 = var15.isPaintingForPrint(); + SpaceWar.SpacePanel var24 = new SpaceWar.SpacePanel(); + float var25 = var24.getAlignmentX(); + var24.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var30 = var24.getMouseListeners(); + int var31 = var24.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var32 = var24.getInputMethodRequests(); + var15.addKeyListener((java.awt.event.KeyListener)var24); + SpaceWar.SpacePanel var34 = new SpaceWar.SpacePanel(); + float var35 = var34.getAlignmentX(); + var34.setVisible(false); + boolean var38 = var34.isDoubleBuffered(); + var34.list(); + float var40 = var34.getAlignmentY(); + boolean var41 = var24.isFocusCycleRoot((java.awt.Container)var34); + boolean var42 = var34.isEnabled(); + java.awt.Dimension var43 = var34.getMaximumSize(); + var34.setName("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + SpaceWar.SpacePanel var46 = new SpaceWar.SpacePanel(); + float var47 = var46.getAlignmentX(); + SpaceWar.SpacePanel var48 = new SpaceWar.SpacePanel(); + float var49 = var48.getAlignmentX(); + var48.setVisible(false); + java.awt.Dimension var52 = var48.getPreferredSize(); + boolean var53 = var48.getVerifyInputWhenFocusTarget(); + java.awt.Component var56 = var48.findComponentAt(10, 1); + var46.addKeyListener((java.awt.event.KeyListener)var48); + boolean var58 = var48.getFocusTraversalKeysEnabled(); + var48.requestFocus(); + var48.layout(); + var34.remove((java.awt.Component)var48); + java.awt.FocusTraversalPolicy var62 = var34.getFocusTraversalPolicy(); + // The following exception was thrown during execution. + // This behavior will recorded for regression testing. + try { + java.awt.Component var64 = var0.add((java.awt.Component)var34, 24); + fail("Expected exception of type java.lang.IllegalArgumentException"); + } catch (java.lang.IllegalArgumentException e) { + // Expected exception. + } + + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var4); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var30); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var31 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var32); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var35 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var38 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var40 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var41 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var42 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var43); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var47 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var49 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var52); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var53 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var56); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var58 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var62); + + } + + public void test356() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test356"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var1 = new SpaceWar.SpacePanel(); + java.awt.Color var2 = var1.getBackground(); + SpaceWar.SpacePanel var3 = new SpaceWar.SpacePanel(); + float var4 = var3.getAlignmentX(); + var3.setVisible(false); + var3.nextFocus(); + var3.updateUI(); + var3.enableInputMethods(true); + var0.add((java.awt.Component)var1, (java.lang.Object)true); + java.awt.Image var14 = var1.createImage(1, (-1)); + java.awt.event.MouseListener[] var15 = var1.getMouseListeners(); + var1.layout(); + int var17 = var1.getDebugGraphicsOptions(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var2); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == 0); + + } + + public void test357() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test357"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + java.awt.im.InputMethodRequests var3 = var0.getInputMethodRequests(); + java.awt.GraphicsConfiguration var4 = var0.getGraphicsConfiguration(); + SpaceWar.SpacePanel var5 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + java.awt.Color var7 = var6.getBackground(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + var8.nextFocus(); + var8.updateUI(); + var8.enableInputMethods(true); + var5.add((java.awt.Component)var6, (java.lang.Object)true); + java.awt.Dimension var17 = var6.getPreferredSize(); + var6.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", (-1.0f), 100.0f); + SpaceWar.SpacePanel var22 = new SpaceWar.SpacePanel(); + float var23 = var22.getAlignmentX(); + var22.setVisible(false); + boolean var26 = var22.isDoubleBuffered(); + SpaceWar.SpacePanel var27 = new SpaceWar.SpacePanel(); + java.awt.Color var28 = var27.getBackground(); + var27.repaint(); + java.lang.Object var30 = var22.getClientProperty((java.lang.Object)var27); + var6.remove((java.awt.Component)var22); + SpaceWar.SpacePanel var32 = new SpaceWar.SpacePanel(); + float var33 = var32.getAlignmentX(); + var32.firePropertyChange("", (-1), 1); + java.awt.event.MouseMotionListener[] var38 = var32.getMouseMotionListeners(); + java.awt.Dimension var39 = var32.getMinimumSize(); + var6.setMaximumSize(var39); + var0.setPreferredSize(var39); + java.awt.Toolkit var42 = var0.getToolkit(); + javax.swing.InputMap var43 = var0.getInputMap(); + boolean var44 = var0.isDoubleBuffered(); + SpaceWar.SpacePanel var46 = new SpaceWar.SpacePanel(); + float var47 = var46.getAlignmentX(); + var46.setVisible(false); + var46.setInheritsPopupMenu(false); + boolean var52 = var46.isDoubleBuffered(); + SpaceWar.SpacePanel var53 = new SpaceWar.SpacePanel(); + float var54 = var53.getAlignmentX(); + var53.setVisible(false); + var53.nextFocus(); + var53.reshape((-1), 1, (-1), 10); + var53.disable(); + java.awt.LayoutManager var64 = var53.getLayout(); + var46.setLayout(var64); + javax.swing.InputMap var67 = var46.getInputMap(1); + // The following exception was thrown during execution. + // This behavior will recorded for regression testing. + try { + var0.setInputMap(499, var67); + fail("Expected exception of type java.lang.IllegalArgumentException"); + } catch (java.lang.IllegalArgumentException e) { + // Expected exception. + } + + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertNull(var4); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var28); + + // Regression assertion (captures the current behavior of the code) + assertNull(var30); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var33 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var38); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var39); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var42); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var43); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var44 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var47 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var52 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var54 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var64); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var67); + + } + + public void test358() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test358"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.setInheritsPopupMenu(false); + var0.move(10, 10); + var0.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var0.removeAll(); + java.awt.Point var14 = var0.location(); + SpaceWar.SpacePanel var15 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var16 = new SpaceWar.SpacePanel(); + java.awt.Color var17 = var16.getBackground(); + SpaceWar.SpacePanel var18 = new SpaceWar.SpacePanel(); + float var19 = var18.getAlignmentX(); + var18.setVisible(false); + var18.nextFocus(); + var18.updateUI(); + var18.enableInputMethods(true); + var15.add((java.awt.Component)var16, (java.lang.Object)true); + java.awt.Dimension var27 = var16.getPreferredSize(); + var16.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", (-1.0f), 100.0f); + SpaceWar.SpacePanel var32 = new SpaceWar.SpacePanel(); + float var33 = var32.getAlignmentX(); + var32.setVisible(false); + boolean var36 = var32.isDoubleBuffered(); + SpaceWar.SpacePanel var37 = new SpaceWar.SpacePanel(); + java.awt.Color var38 = var37.getBackground(); + var37.repaint(); + java.lang.Object var40 = var32.getClientProperty((java.lang.Object)var37); + var16.remove((java.awt.Component)var32); + SpaceWar.SpacePanel var42 = new SpaceWar.SpacePanel(); + float var43 = var42.getAlignmentX(); + var42.firePropertyChange("", (-1), 1); + java.awt.event.MouseMotionListener[] var48 = var42.getMouseMotionListeners(); + java.awt.Dimension var49 = var42.getMinimumSize(); + var16.setMaximumSize(var49); + var0.setMinimumSize(var49); + java.awt.event.FocusListener[] var52 = var0.getFocusListeners(); + SpaceWar.SpacePanel var53 = new SpaceWar.SpacePanel(); + float var54 = var53.getAlignmentX(); + var53.setVisible(false); + var53.nextFocus(); + var53.updateUI(); + var53.enableInputMethods(true); + java.awt.Image var63 = var53.createImage(25, 500); + boolean var64 = var0.isFocusCycleRoot((java.awt.Container)var53); + var0.firePropertyChange("", true, true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var27); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var33 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var36 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var38); + + // Regression assertion (captures the current behavior of the code) + assertNull(var40); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var43 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var48); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var49); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var52); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var54 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNull(var63); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var64 == false); + + } + + public void test359() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test359"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + var0.list(); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + float var7 = var6.getAlignmentX(); + var6.setVisible(false); + boolean var10 = var6.isDoubleBuffered(); + java.awt.dnd.DropTarget var11 = var6.getDropTarget(); + var6.show(false); + java.awt.Rectangle var14 = var6.getVisibleRect(); + java.awt.Rectangle var15 = var0.getBounds(var14); + javax.swing.JToolTip var16 = var0.createToolTip(); + var0.firePropertyChange("", false, false); + var0.revalidate(); + SpaceWar.SpacePanel var22 = new SpaceWar.SpacePanel(); + float var23 = var22.getAlignmentX(); + boolean var24 = var22.hasFocus(); + boolean var25 = var22.isPreferredSizeSet(); + var22.firePropertyChange("", (short)1, (short)0); + SpaceWar.SpacePanel var30 = new SpaceWar.SpacePanel(); + float var31 = var30.getAlignmentX(); + var30.firePropertyChange("", (-1), 1); + boolean var36 = var30.isFocusOwner(); + SpaceWar.SpacePanel var38 = new SpaceWar.SpacePanel(); + float var39 = var38.getAlignmentX(); + var38.setVisible(false); + java.awt.Dimension var42 = var38.getPreferredSize(); + java.awt.Toolkit var43 = var38.getToolkit(); + SpaceWar.SpacePanel var44 = new SpaceWar.SpacePanel(); + var44.setName(""); + int var47 = var44.getX(); + SpaceWar.SpacePanel var48 = new SpaceWar.SpacePanel(); + float var49 = var48.getAlignmentX(); + var48.setVisible(false); + var48.nextFocus(); + SpaceWar.SpacePanel var53 = new SpaceWar.SpacePanel(); + float var54 = var53.getAlignmentX(); + var53.setVisible(false); + SpaceWar.SpacePanel var57 = new SpaceWar.SpacePanel(); + java.awt.Color var58 = var57.getBackground(); + var53.setForeground(var58); + var48.setBackground(var58); + var44.setBackground(var58); + var38.setForeground(var58); + var30.putClientProperty((java.lang.Object)(byte)100, (java.lang.Object)var58); + boolean var64 = var30.isEnabled(); + java.awt.event.ComponentListener[] var65 = var30.getComponentListeners(); + java.awt.Dimension var66 = var30.getPreferredSize(); + var22.setSize(var66); + var0.setSize(var66); + java.awt.im.InputContext var69 = var0.getInputContext(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var24 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var31 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var36 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var39 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var42); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var43); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var47 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var49 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var54 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var58); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var64 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var65); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var66); + + // Regression assertion (captures the current behavior of the code) + assertNull(var69); + + } + + public void test360() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test360"); + + + SpaceWar.Player var0 = new SpaceWar.Player(); + boolean var1 = var0.isRecovering(); + int var2 = var0.getRequiredPower(); + int var3 = var0.getY(); + int var4 = var0.getX(); + int var5 = var0.getLives(); + var0.setLife(25); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var2 == 1); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == 500); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 400); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == 3); + + } + + public void test361() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test361"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.setInheritsPopupMenu(false); + var0.move(10, 10); + boolean var9 = var0.isFocusable(); + // The following exception was thrown during execution. + // This behavior will recorded for regression testing. + try { + java.awt.Point var10 = var0.getLocationOnScreen(); + fail("Expected exception of type java.awt.IllegalComponentStateException"); + } catch (java.awt.IllegalComponentStateException e) { + // Expected exception. + } + + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == true); + + } + + public void test362() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test362"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var6 = var0.getUI(); + java.awt.im.InputMethodRequests var7 = var0.getInputMethodRequests(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + var8.nextFocus(); + var8.updateUI(); + var8.enableInputMethods(true); + var8.setSize((-1), 1); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + var19.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var0.add((java.awt.Component)var8, (java.lang.Object)"SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + boolean var25 = var0.isCursorSet(); + javax.swing.KeyStroke[] var26 = var0.getRegisteredKeyStrokes(); + var0.repaint(24, 100, 0, 100); + SpaceWar.SpacePanel var32 = new SpaceWar.SpacePanel(); + float var33 = var32.getAlignmentX(); + var32.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var38 = var32.getMouseListeners(); + int var39 = var32.getDebugGraphicsOptions(); + SpaceWar.SpacePanel var40 = new SpaceWar.SpacePanel(); + float var41 = var40.getAlignmentX(); + var40.setVisible(false); + boolean var44 = var40.isDoubleBuffered(); + java.awt.dnd.DropTarget var45 = var40.getDropTarget(); + var40.show(false); + java.awt.Rectangle var48 = var40.getVisibleRect(); + var32.paintImmediately(var48); + SpaceWar.SpacePanel var50 = new SpaceWar.SpacePanel(); + float var51 = var50.getAlignmentX(); + var50.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var56 = var50.getMouseListeners(); + int var57 = var50.getDebugGraphicsOptions(); + SpaceWar.SpacePanel var58 = new SpaceWar.SpacePanel(); + float var59 = var58.getAlignmentX(); + var58.setVisible(false); + boolean var62 = var58.isDoubleBuffered(); + java.awt.dnd.DropTarget var63 = var58.getDropTarget(); + var58.show(false); + java.awt.Rectangle var66 = var58.getVisibleRect(); + var50.paintImmediately(var66); + java.awt.Rectangle var68 = var50.getBounds(); + var32.scrollRectToVisible(var68); + var0.paintImmediately(var68); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var33 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var38); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var39 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var41 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var44 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var45); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var48); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var51 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var56); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var57 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var59 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var62 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var63); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var66); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var68); + + } + + public void test363() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test363"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var1 = new SpaceWar.SpacePanel(); + java.awt.Color var2 = var1.getBackground(); + SpaceWar.SpacePanel var3 = new SpaceWar.SpacePanel(); + float var4 = var3.getAlignmentX(); + var3.setVisible(false); + var3.nextFocus(); + var3.updateUI(); + var3.enableInputMethods(true); + var0.add((java.awt.Component)var1, (java.lang.Object)true); + boolean var13 = var1.areFocusTraversalKeysSet(0); + SpaceWar.SpacePanel var14 = new SpaceWar.SpacePanel(); + float var15 = var14.getAlignmentX(); + var14.setVisible(false); + SpaceWar.SpacePanel var18 = new SpaceWar.SpacePanel(); + java.awt.Color var19 = var18.getBackground(); + var14.setForeground(var19); + SpaceWar.SpacePanel var21 = new SpaceWar.SpacePanel(); + float var22 = var21.getAlignmentX(); + var21.setVisible(false); + boolean var25 = var21.isDoubleBuffered(); + java.awt.dnd.DropTarget var26 = var21.getDropTarget(); + var21.show(false); + java.awt.Rectangle var29 = var21.getVisibleRect(); + var14.repaint(var29); + java.awt.FocusTraversalPolicy var31 = var14.getFocusTraversalPolicy(); + SpaceWar.SpacePanel var32 = new SpaceWar.SpacePanel(); + float var33 = var32.getAlignmentX(); + var32.firePropertyChange("", (-1), 1); + boolean var38 = var32.isFocusOwner(); + SpaceWar.SpacePanel var40 = new SpaceWar.SpacePanel(); + float var41 = var40.getAlignmentX(); + var40.setVisible(false); + java.awt.Dimension var44 = var40.getPreferredSize(); + java.awt.Toolkit var45 = var40.getToolkit(); + SpaceWar.SpacePanel var46 = new SpaceWar.SpacePanel(); + var46.setName(""); + int var49 = var46.getX(); + SpaceWar.SpacePanel var50 = new SpaceWar.SpacePanel(); + float var51 = var50.getAlignmentX(); + var50.setVisible(false); + var50.nextFocus(); + SpaceWar.SpacePanel var55 = new SpaceWar.SpacePanel(); + float var56 = var55.getAlignmentX(); + var55.setVisible(false); + SpaceWar.SpacePanel var59 = new SpaceWar.SpacePanel(); + java.awt.Color var60 = var59.getBackground(); + var55.setForeground(var60); + var50.setBackground(var60); + var46.setBackground(var60); + var40.setForeground(var60); + var32.putClientProperty((java.lang.Object)(byte)100, (java.lang.Object)var60); + var14.setBackground(var60); + SpaceWar.SpacePanel var67 = new SpaceWar.SpacePanel(); + float var68 = var67.getAlignmentX(); + var67.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var73 = new SpaceWar.SpacePanel(); + float var74 = var73.getAlignmentX(); + var73.setVisible(false); + SpaceWar.SpacePanel var77 = new SpaceWar.SpacePanel(); + java.awt.Color var78 = var77.getBackground(); + var73.setForeground(var78); + var67.setBackground(var78); + java.awt.Point var81 = var67.location(); + java.awt.Point var82 = var14.getLocation(var81); + boolean var83 = var1.contains(var82); + java.lang.String var84 = var1.getUIClassID(); + boolean var85 = var1.isFocusOwner(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var2); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var22 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var29); + + // Regression assertion (captures the current behavior of the code) + assertNull(var31); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var33 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var38 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var41 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var44); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var45); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var49 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var51 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var56 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var60); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var68 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var74 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var78); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var81); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var82); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var83 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var84 + "' != '" + "PanelUI"+ "'", var84.equals("PanelUI")); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var85 == false); + + } + + public void test364() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test364"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var1 = new SpaceWar.SpacePanel(); + java.awt.Color var2 = var1.getBackground(); + SpaceWar.SpacePanel var3 = new SpaceWar.SpacePanel(); + float var4 = var3.getAlignmentX(); + var3.setVisible(false); + var3.nextFocus(); + var3.updateUI(); + var3.enableInputMethods(true); + var0.add((java.awt.Component)var1, (java.lang.Object)true); + java.awt.Dimension var12 = var1.getPreferredSize(); + var1.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", (-1.0f), 100.0f); + var1.removeNotify(); + var1.transferFocusUpCycle(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var2); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var12); + + } + + public void test365() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test365"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + SpaceWar.SpacePanel var5 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + java.awt.Color var7 = var6.getBackground(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + var8.nextFocus(); + var8.updateUI(); + var8.enableInputMethods(true); + var5.add((java.awt.Component)var6, (java.lang.Object)true); + java.awt.Dimension var17 = var6.getPreferredSize(); + var0.setMaximumSize(var17); + boolean var19 = var0.isOpaque(); + var0.setFocusCycleRoot(true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == true); + + } + + public void test366() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test366"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.updateUI(); + var0.enableInputMethods(true); + var0.show(); + java.beans.PropertyChangeListener[] var9 = var0.getPropertyChangeListeners(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var9); + + } + + public void test367() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test367"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + var0.enable(false); + java.awt.Container var7 = var0.getTopLevelAncestor(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + boolean var12 = var8.isDoubleBuffered(); + var8.list(); + SpaceWar.SpacePanel var14 = new SpaceWar.SpacePanel(); + float var15 = var14.getAlignmentX(); + var14.setVisible(false); + boolean var18 = var14.isDoubleBuffered(); + java.awt.dnd.DropTarget var19 = var14.getDropTarget(); + var14.show(false); + java.awt.Rectangle var22 = var14.getVisibleRect(); + java.awt.Rectangle var23 = var8.getBounds(var22); + var0.computeVisibleRect(var22); + var0.setFocusCycleRoot(false); + SpaceWar.SpacePanel var27 = new SpaceWar.SpacePanel(); + float var28 = var27.getAlignmentX(); + var27.setVisible(false); + SpaceWar.SpacePanel var31 = new SpaceWar.SpacePanel(); + java.awt.Color var32 = var31.getBackground(); + var27.setForeground(var32); + SpaceWar.SpacePanel var34 = new SpaceWar.SpacePanel(); + float var35 = var34.getAlignmentX(); + var34.setVisible(false); + boolean var38 = var34.isDoubleBuffered(); + java.awt.dnd.DropTarget var39 = var34.getDropTarget(); + var34.show(false); + java.awt.Rectangle var42 = var34.getVisibleRect(); + var27.repaint(var42); + java.awt.FocusTraversalPolicy var44 = var27.getFocusTraversalPolicy(); + java.awt.im.InputMethodRequests var45 = var27.getInputMethodRequests(); + var27.layout(); + SpaceWar.SpacePanel var47 = new SpaceWar.SpacePanel(); + float var48 = var47.getAlignmentX(); + var47.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var53 = new SpaceWar.SpacePanel(); + float var54 = var53.getAlignmentX(); + var53.setVisible(false); + SpaceWar.SpacePanel var57 = new SpaceWar.SpacePanel(); + java.awt.Color var58 = var57.getBackground(); + var53.setForeground(var58); + var47.setBackground(var58); + var27.setForeground(var58); + var0.setBackground(var58); + // The following exception was thrown during execution. + // This behavior will recorded for regression testing. + try { + var0.remove((-1)); + fail("Expected exception of type java.lang.ArrayIndexOutOfBoundsException"); + } catch (java.lang.ArrayIndexOutOfBoundsException e) { + // Expected exception. + } + + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var23); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var28 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var32); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var35 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var38 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var39); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var42); + + // Regression assertion (captures the current behavior of the code) + assertNull(var44); + + // Regression assertion (captures the current behavior of the code) + assertNull(var45); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var48 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var54 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var58); + + } + + public void test368() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test368"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + boolean var2 = var0.hasFocus(); + boolean var3 = var0.isPreferredSizeSet(); + SpaceWar.SpacePanel var4 = new SpaceWar.SpacePanel(); + java.awt.Color var5 = var4.getBackground(); + var4.repaint(); + var4.setRequestFocusEnabled(false); + int var9 = var0.getComponentZOrder((java.awt.Component)var4); + int var10 = var0.getDebugGraphicsOptions(); + var0.enableInputMethods(true); + var0.setFocusTraversalPolicyProvider(true); + java.awt.Container var15 = var0.getFocusCycleRootAncestor(); + java.awt.Component.BaselineResizeBehavior var16 = var0.getBaselineResizeBehavior(); + java.awt.ComponentOrientation var17 = var0.getComponentOrientation(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var2 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == (-1)); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var17); + + } + + public void test369() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test369"); + + + SpaceWar.Text var4 = new SpaceWar.Text(594.7973940347722d, 3.0d, 0L, ""); + boolean var5 = var4.update(); + boolean var6 = var4.update(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == false); + + } + + public void test370() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test370"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var6 = var0.getMouseListeners(); + var0.firePropertyChange("", 0.5f, 100.0f); + var0.enable(false); + var0.transferFocusDownCycle(); + var0.firePropertyChange("SpaceWar.SpacePanel[,-1,1,-1x10,invalid,hidden,disabled,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", (-1.0f), 1.0f); + java.awt.Dimension var18 = var0.minimumSize(); + java.lang.Object var19 = var0.getTreeLock(); + boolean var20 = var0.requestFocusInWindow(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == false); + + } + + public void test371() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test371"); + + + SpaceWar.Player var0 = new SpaceWar.Player(); + int var1 = var0.getPower(); + var0.setLeft(true); + var0.increasePower(0); + var0.setRigth(false); + int var8 = var0.getY(); + var0.setUp(false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 500); + + } + + public void test372() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test372"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var6 = var0.getUI(); + java.awt.im.InputMethodRequests var7 = var0.getInputMethodRequests(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + var8.nextFocus(); + var8.updateUI(); + var8.enableInputMethods(true); + var8.setSize((-1), 1); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + var19.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var0.add((java.awt.Component)var8, (java.lang.Object)"SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + SpaceWar.SpacePanel var25 = new SpaceWar.SpacePanel(); + float var26 = var25.getAlignmentX(); + var25.setVisible(false); + java.awt.Dimension var29 = var25.getPreferredSize(); + java.awt.Toolkit var30 = var25.getToolkit(); + java.awt.Toolkit var31 = var25.getToolkit(); + java.awt.Component var32 = var8.add((java.awt.Component)var25); + int var33 = var8.getY(); + int var36 = var8.getBaseline(25, 10); + java.awt.im.InputMethodRequests var37 = var8.getInputMethodRequests(); + SpaceWar.SpacePanel var38 = new SpaceWar.SpacePanel(); + float var39 = var38.getAlignmentX(); + var38.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var44 = new SpaceWar.SpacePanel(); + float var45 = var44.getAlignmentX(); + var44.setVisible(false); + java.awt.Dimension var48 = var44.getPreferredSize(); + var38.setMaximumSize(var48); + boolean var50 = var38.getVerifyInputWhenFocusTarget(); + var38.transferFocusUpCycle(); + java.awt.Point var52 = var38.location(); + java.awt.Point var53 = var8.getLocation(var52); + boolean var54 = var8.isPaintingTile(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var29); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var30); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var31); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var32); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var33 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var36 == (-1)); + + // Regression assertion (captures the current behavior of the code) + assertNull(var37); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var39 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var45 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var48); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var50 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var52); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var53); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var54 == false); + + } + + public void test373() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test373"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + boolean var6 = var0.isFocusCycleRoot(); + SpaceWar.SpacePanel var7 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + java.awt.Color var9 = var8.getBackground(); + SpaceWar.SpacePanel var10 = new SpaceWar.SpacePanel(); + float var11 = var10.getAlignmentX(); + var10.setVisible(false); + var10.nextFocus(); + var10.updateUI(); + var10.enableInputMethods(true); + var7.add((java.awt.Component)var8, (java.lang.Object)true); + java.awt.Dimension var19 = var8.getPreferredSize(); + var0.setSize(var19); + var0.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", (-1), 10); + var0.setLocation(10, 100); + SpaceWar.SpacePanel var28 = new SpaceWar.SpacePanel(); + float var29 = var28.getAlignmentX(); + var28.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var34 = var28.getMouseListeners(); + int var35 = var28.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var36 = var28.getInputMethodRequests(); + var28.removeNotify(); + var28.enable(); + SpaceWar.SpacePanel var39 = new SpaceWar.SpacePanel(); + java.awt.Color var40 = var39.getBackground(); + boolean var43 = var39.inside(0, (-1)); + var39.transferFocusUpCycle(); + java.lang.String var45 = var39.getName(); + boolean var46 = var28.isFocusCycleRoot((java.awt.Container)var39); + java.awt.Dimension var47 = var28.getMinimumSize(); + var0.resize(var47); + boolean var49 = var0.isDoubleBuffered(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var9); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var29 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var34); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var35 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var36); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var40); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var43 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var45); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var46 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var47); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var49 == true); + + } + + public void test374() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test374"); + + + SpaceWar.Player var0 = new SpaceWar.Player(); + int var1 = var0.getR(); + var0.setUp(false); + int var4 = var0.getLives(); + boolean var5 = var0.isRecovering(); + boolean var6 = var0.isDead(); + int var7 = var0.getPowerLevel(); + var0.increasePower(400); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 25); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 3); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0); + + } + + public void test375() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test375"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + SpaceWar.SpacePanel var4 = new SpaceWar.SpacePanel(); + java.awt.Color var5 = var4.getBackground(); + var0.setForeground(var5); + SpaceWar.SpacePanel var7 = new SpaceWar.SpacePanel(); + float var8 = var7.getAlignmentX(); + var7.setVisible(false); + boolean var11 = var7.isDoubleBuffered(); + java.awt.dnd.DropTarget var12 = var7.getDropTarget(); + var7.show(false); + java.awt.Rectangle var15 = var7.getVisibleRect(); + var0.repaint(var15); + java.awt.FocusTraversalPolicy var17 = var0.getFocusTraversalPolicy(); + SpaceWar.SpacePanel var18 = new SpaceWar.SpacePanel(); + float var19 = var18.getAlignmentX(); + var18.firePropertyChange("", (-1), 1); + boolean var24 = var18.isFocusOwner(); + SpaceWar.SpacePanel var26 = new SpaceWar.SpacePanel(); + float var27 = var26.getAlignmentX(); + var26.setVisible(false); + java.awt.Dimension var30 = var26.getPreferredSize(); + java.awt.Toolkit var31 = var26.getToolkit(); + SpaceWar.SpacePanel var32 = new SpaceWar.SpacePanel(); + var32.setName(""); + int var35 = var32.getX(); + SpaceWar.SpacePanel var36 = new SpaceWar.SpacePanel(); + float var37 = var36.getAlignmentX(); + var36.setVisible(false); + var36.nextFocus(); + SpaceWar.SpacePanel var41 = new SpaceWar.SpacePanel(); + float var42 = var41.getAlignmentX(); + var41.setVisible(false); + SpaceWar.SpacePanel var45 = new SpaceWar.SpacePanel(); + java.awt.Color var46 = var45.getBackground(); + var41.setForeground(var46); + var36.setBackground(var46); + var32.setBackground(var46); + var26.setForeground(var46); + var18.putClientProperty((java.lang.Object)(byte)100, (java.lang.Object)var46); + var0.setBackground(var46); + SpaceWar.SpacePanel var53 = new SpaceWar.SpacePanel(); + float var54 = var53.getAlignmentX(); + var53.setVisible(false); + boolean var57 = var53.isDoubleBuffered(); + java.awt.dnd.DropTarget var58 = var53.getDropTarget(); + var53.show(false); + boolean var61 = var53.isPaintingForPrint(); + SpaceWar.SpacePanel var62 = new SpaceWar.SpacePanel(); + float var63 = var62.getAlignmentX(); + SpaceWar.SpacePanel var64 = new SpaceWar.SpacePanel(); + float var65 = var64.getAlignmentX(); + var64.setVisible(false); + java.awt.Dimension var68 = var64.getPreferredSize(); + boolean var69 = var64.getVerifyInputWhenFocusTarget(); + java.awt.Component var72 = var64.findComponentAt(10, 1); + var62.addKeyListener((java.awt.event.KeyListener)var64); + java.awt.Dimension var74 = var64.getMinimumSize(); + var53.setMinimumSize(var74); + java.awt.Dimension var76 = var0.getSize(var74); + boolean var77 = var0.isValid(); + boolean var78 = var0.isOpaque(); + java.beans.PropertyChangeListener[] var79 = var0.getPropertyChangeListeners(); + java.awt.ComponentOrientation var80 = var0.getComponentOrientation(); + boolean var81 = var0.isCursorSet(); + int var82 = var0.getWidth(); + boolean var83 = var0.isShowing(); + SpaceWar.SpacePanel var84 = new SpaceWar.SpacePanel(); + float var85 = var84.getAlignmentX(); + boolean var86 = var84.hasFocus(); + boolean var87 = var84.isPreferredSizeSet(); + var84.firePropertyChange("", (short)1, (short)0); + boolean var92 = var84.isMaximumSizeSet(); + boolean var93 = var84.getAutoscrolls(); + boolean var94 = var0.isAncestorOf((java.awt.Component)var84); + boolean var95 = var0.isPaintingTile(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var24 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var30); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var31); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var35 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var42 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var46); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var54 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var57 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var58); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var61 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var63 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var65 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var68); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var69 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var72); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var74); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var76); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var77 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var78 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var79); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var80); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var81 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var82 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var83 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var85 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var86 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var87 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var92 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var93 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var94 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var95 == false); + + } + + public void test376() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test376"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.setInheritsPopupMenu(false); + boolean var6 = var0.isDoubleBuffered(); + java.awt.Rectangle var7 = var0.getBounds(); + int var8 = var0.getHeight(); + var0.disable(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 0); + + } + + public void test377() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test377"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + boolean var2 = var0.hasFocus(); + boolean var3 = var0.isPreferredSizeSet(); + SpaceWar.SpacePanel var4 = new SpaceWar.SpacePanel(); + java.awt.Color var5 = var4.getBackground(); + var4.repaint(); + var4.setRequestFocusEnabled(false); + int var9 = var0.getComponentZOrder((java.awt.Component)var4); + java.awt.Dimension var10 = var4.getPreferredSize(); + var4.repaint(100L, 3, 24, 1, 25); + var4.repaint(1L, 24, 0, 25, 100); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var2 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == (-1)); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var10); + + } + + public void test378() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test378"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var6 = var0.getUI(); + java.awt.im.InputMethodRequests var7 = var0.getInputMethodRequests(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + var8.nextFocus(); + var8.updateUI(); + var8.enableInputMethods(true); + var8.setSize((-1), 1); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + var19.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var0.add((java.awt.Component)var8, (java.lang.Object)"SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + java.awt.event.KeyListener[] var25 = var0.getKeyListeners(); + var0.reshape(10, 100, 3, 3); + javax.accessibility.AccessibleContext var31 = var0.getAccessibleContext(); + javax.swing.TransferHandler var32 = var0.getTransferHandler(); + boolean var33 = var0.isPaintingForPrint(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var25); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var31); + + // Regression assertion (captures the current behavior of the code) + assertNull(var32); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var33 == false); + + } + + public void test379() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test379"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + boolean var4 = var0.inside(0, (-1)); + var0.transferFocusUpCycle(); + java.awt.Container var6 = var0.getParent(); + boolean var7 = var0.isMaximumSizeSet(); + java.awt.event.InputMethodListener[] var8 = var0.getInputMethodListeners(); + var0.setRequestFocusEnabled(true); + var0.setAlignmentY(100.0f); + SpaceWar.SpacePanel var13 = new SpaceWar.SpacePanel(); + float var14 = var13.getAlignmentX(); + var13.setVisible(false); + java.awt.Dimension var17 = var13.getPreferredSize(); + java.awt.Toolkit var18 = var13.getToolkit(); + boolean var19 = var13.isFocusable(); + javax.swing.KeyStroke[] var20 = var13.getRegisteredKeyStrokes(); + java.awt.Component var23 = var13.getComponentAt(100, 100); + java.lang.Object var24 = var13.getTreeLock(); + SpaceWar.SpacePanel var25 = new SpaceWar.SpacePanel(); + float var26 = var25.getAlignmentX(); + var25.setVisible(false); + boolean var29 = var25.isDoubleBuffered(); + java.awt.dnd.DropTarget var30 = var25.getDropTarget(); + java.awt.Point var31 = var25.getMousePosition(); + java.lang.String var32 = var25.getUIClassID(); + var13.setNextFocusableComponent((java.awt.Component)var25); + int var34 = var13.getDebugGraphicsOptions(); + SpaceWar.SpacePanel var35 = new SpaceWar.SpacePanel(); + float var36 = var35.getAlignmentX(); + var35.setVisible(false); + var35.nextFocus(); + var35.reshape((-1), 1, (-1), 10); + SpaceWar.SpacePanel var45 = new SpaceWar.SpacePanel(); + java.awt.Color var46 = var45.getBackground(); + var45.repaint(); + var45.setRequestFocusEnabled(false); + var45.reshape(100, 0, 100, 0); + java.awt.Component var55 = var35.add((java.awt.Component)var45); + boolean var56 = var45.isEnabled(); + var45.requestFocus(); + var45.setFocusTraversalPolicyProvider(true); + java.awt.Dimension var60 = var45.getPreferredSize(); + var13.setSize(var60); + var0.setPreferredSize(var60); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertNull(var23); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var29 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var30); + + // Regression assertion (captures the current behavior of the code) + assertNull(var31); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var32 + "' != '" + "PanelUI"+ "'", var32.equals("PanelUI")); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var34 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var36 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var46); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var55); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var56 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var60); + + } + + public void test380() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test380"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + java.awt.Dimension var4 = var0.getPreferredSize(); + java.awt.Toolkit var5 = var0.getToolkit(); + boolean var6 = var0.isFocusable(); + javax.swing.KeyStroke[] var7 = var0.getRegisteredKeyStrokes(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + SpaceWar.SpacePanel var10 = new SpaceWar.SpacePanel(); + float var11 = var10.getAlignmentX(); + var10.setVisible(false); + java.awt.Dimension var14 = var10.getPreferredSize(); + boolean var15 = var10.getVerifyInputWhenFocusTarget(); + java.awt.Component var18 = var10.findComponentAt(10, 1); + var8.addKeyListener((java.awt.event.KeyListener)var10); + var10.repaint(100, (-1), (-1), 1); + boolean var25 = var0.isAncestorOf((java.awt.Component)var10); + var0.nextFocus(); + var0.disable(); + java.awt.Dimension var28 = var0.size(); + var0.list(); + var0.resize(100, 0); + java.awt.Point var34 = var0.getMousePosition(false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var4); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var28); + + // Regression assertion (captures the current behavior of the code) + assertNull(var34); + + } + + public void test381() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test381"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var6 = var0.getUI(); + java.awt.im.InputMethodRequests var7 = var0.getInputMethodRequests(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + var8.nextFocus(); + var8.updateUI(); + var8.enableInputMethods(true); + var8.setSize((-1), 1); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + var19.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var0.add((java.awt.Component)var8, (java.lang.Object)"SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + var8.setAutoscrolls(true); + java.awt.Image var29 = var8.createImage(400, 400); + var8.enableInputMethods(true); + javax.swing.plaf.PanelUI var32 = var8.getUI(); + SpaceWar.SpacePanel var33 = new SpaceWar.SpacePanel(); + float var34 = var33.getAlignmentX(); + var33.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var39 = var33.getMouseListeners(); + int var40 = var33.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var41 = var33.getInputMethodRequests(); + var33.removeNotify(); + var33.enable(); + SpaceWar.SpacePanel var44 = new SpaceWar.SpacePanel(); + java.awt.Color var45 = var44.getBackground(); + boolean var48 = var44.inside(0, (-1)); + var44.transferFocusUpCycle(); + java.lang.String var50 = var44.getName(); + boolean var51 = var33.isFocusCycleRoot((java.awt.Container)var44); + var8.addKeyListener((java.awt.event.KeyListener)var33); + int var53 = var8.getComponentCount(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNull(var29); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var32); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var34 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var39); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var40 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var41); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var45); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var48 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var50); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var51 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var53 == 0); + + } + + public void test382() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test382"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var6 = var0.getMouseListeners(); + var0.firePropertyChange("", 0.5f, 100.0f); + var0.enable(false); + int var13 = var0.getDebugGraphicsOptions(); + var0.setRequestFocusEnabled(false); + SpaceWar.SpacePanel var16 = new SpaceWar.SpacePanel(); + float var17 = var16.getAlignmentX(); + var16.setVisible(false); + boolean var20 = var16.isDoubleBuffered(); + java.awt.dnd.DropTarget var21 = var16.getDropTarget(); + boolean var22 = var16.isFocusCycleRoot(); + var16.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", 100, 0); + SpaceWar.SpacePanel var27 = new SpaceWar.SpacePanel(); + float var28 = var27.getAlignmentX(); + var27.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var33 = var27.getUI(); + var16.add((java.awt.Component)var27, (java.lang.Object)(short)0); + java.awt.Insets var36 = var27.getInsets(); + SpaceWar.SpacePanel var37 = new SpaceWar.SpacePanel(); + float var38 = var37.getAlignmentX(); + var37.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var43 = var37.getMouseListeners(); + java.awt.Dimension var44 = var37.getPreferredSize(); + java.util.Locale var45 = var37.getLocale(); + var37.setFocusable(true); + SpaceWar.SpacePanel var48 = new SpaceWar.SpacePanel(); + java.awt.Color var49 = var48.getBackground(); + var48.repaint(); + var48.setRequestFocusEnabled(false); + var48.setIgnoreRepaint(false); + java.lang.String var55 = var48.toString(); + java.awt.Color var56 = var48.getBackground(); + var27.putClientProperty((java.lang.Object)var37, (java.lang.Object)var48); + java.awt.Rectangle var58 = var27.getVisibleRect(); + boolean var59 = var27.requestFocusInWindow(); + java.util.Locale var60 = var27.getLocale(); + var0.setLocale(var60); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var21); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var22 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var28 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var33); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var36); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var38 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var43); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var44); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var45); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var49); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var55 + "' != '" + "SpaceWar.SpacePanel[,0,0,0var55,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"+ "'", var55.equals("SpaceWar.SpacePanel[,0,0,0var55,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]")); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var56); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var58); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var59 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var60); + + } + + public void test383() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test383"); + + + SpaceWar.Player var0 = new SpaceWar.Player(); + var0.setScore(3); + int var3 = var0.getScore(); + var0.setRigth(false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == 3); + + } + + public void test384() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test384"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + java.awt.Dimension var4 = var0.getPreferredSize(); + java.awt.Toolkit var5 = var0.getToolkit(); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + var6.setName(""); + int var9 = var6.getX(); + SpaceWar.SpacePanel var10 = new SpaceWar.SpacePanel(); + float var11 = var10.getAlignmentX(); + var10.setVisible(false); + var10.nextFocus(); + SpaceWar.SpacePanel var15 = new SpaceWar.SpacePanel(); + float var16 = var15.getAlignmentX(); + var15.setVisible(false); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + java.awt.Color var20 = var19.getBackground(); + var15.setForeground(var20); + var10.setBackground(var20); + var6.setBackground(var20); + var0.setForeground(var20); + SpaceWar.SpacePanel var25 = new SpaceWar.SpacePanel(); + float var26 = var25.getAlignmentX(); + var25.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var31 = new SpaceWar.SpacePanel(); + float var32 = var31.getAlignmentX(); + var31.setVisible(false); + java.awt.Dimension var35 = var31.getPreferredSize(); + var25.setMaximumSize(var35); + boolean var37 = var25.getVerifyInputWhenFocusTarget(); + javax.accessibility.AccessibleContext var38 = var25.getAccessibleContext(); + boolean var39 = var25.isDoubleBuffered(); + java.awt.Rectangle var40 = var25.getVisibleRect(); + var0.scrollRectToVisible(var40); + boolean var42 = var0.isValidateRoot(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var4); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var32 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var35); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var38); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var39 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var40); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var42 == false); + + } + + public void test385() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test385"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.reshape((-1), 1, (-1), 10); + var0.disable(); + boolean var11 = var0.isFocusable(); + SpaceWar.SpacePanel var12 = new SpaceWar.SpacePanel(); + float var13 = var12.getAlignmentX(); + var12.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var18 = var12.getUI(); + java.awt.im.InputMethodRequests var19 = var12.getInputMethodRequests(); + SpaceWar.SpacePanel var20 = new SpaceWar.SpacePanel(); + float var21 = var20.getAlignmentX(); + var20.setVisible(false); + var20.nextFocus(); + var20.updateUI(); + var20.enableInputMethods(true); + var20.setSize((-1), 1); + SpaceWar.SpacePanel var31 = new SpaceWar.SpacePanel(); + var31.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var12.add((java.awt.Component)var20, (java.lang.Object)"SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + java.awt.event.KeyListener[] var37 = var12.getKeyListeners(); + java.awt.FocusTraversalPolicy var38 = var12.getFocusTraversalPolicy(); + SpaceWar.SpacePanel var39 = new SpaceWar.SpacePanel(); + var39.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + java.awt.Toolkit var44 = var39.getToolkit(); + var0.add((java.awt.Component)var12, (java.lang.Object)var39); + java.beans.VetoableChangeListener[] var46 = var39.getVetoableChangeListeners(); + var39.setSize(0, 399); + var39.repaint((-1L)); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var37); + + // Regression assertion (captures the current behavior of the code) + assertNull(var38); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var44); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var46); + + } + + public void test386() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test386"); + + + SpaceWar.PowerUp var3 = new SpaceWar.PowerUp(100, (-1.0d), 0.0d); + double var4 = var3.getY(); + double var5 = var3.getX(); + boolean var6 = var3.update(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0.0d); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == (-1.0d)); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == false); + + } + + public void test387() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test387"); + + + SpaceWar.Player var0 = new SpaceWar.Player(); + boolean var1 = var0.isRecovering(); + var0.setRigth(false); + int var4 = var0.getPower(); + boolean var5 = var0.isDead(); + int var6 = var0.getY(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == 500); + + } + + public void test388() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test388"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + SpaceWar.SpacePanel var4 = new SpaceWar.SpacePanel(); + java.awt.Color var5 = var4.getBackground(); + var0.setForeground(var5); + SpaceWar.SpacePanel var7 = new SpaceWar.SpacePanel(); + float var8 = var7.getAlignmentX(); + var7.setVisible(false); + boolean var11 = var7.isDoubleBuffered(); + java.awt.dnd.DropTarget var12 = var7.getDropTarget(); + var7.show(false); + java.awt.Rectangle var15 = var7.getVisibleRect(); + var0.repaint(var15); + java.awt.FocusTraversalPolicy var17 = var0.getFocusTraversalPolicy(); + SpaceWar.SpacePanel var18 = new SpaceWar.SpacePanel(); + float var19 = var18.getAlignmentX(); + var18.firePropertyChange("", (-1), 1); + boolean var24 = var18.isFocusOwner(); + SpaceWar.SpacePanel var26 = new SpaceWar.SpacePanel(); + float var27 = var26.getAlignmentX(); + var26.setVisible(false); + java.awt.Dimension var30 = var26.getPreferredSize(); + java.awt.Toolkit var31 = var26.getToolkit(); + SpaceWar.SpacePanel var32 = new SpaceWar.SpacePanel(); + var32.setName(""); + int var35 = var32.getX(); + SpaceWar.SpacePanel var36 = new SpaceWar.SpacePanel(); + float var37 = var36.getAlignmentX(); + var36.setVisible(false); + var36.nextFocus(); + SpaceWar.SpacePanel var41 = new SpaceWar.SpacePanel(); + float var42 = var41.getAlignmentX(); + var41.setVisible(false); + SpaceWar.SpacePanel var45 = new SpaceWar.SpacePanel(); + java.awt.Color var46 = var45.getBackground(); + var41.setForeground(var46); + var36.setBackground(var46); + var32.setBackground(var46); + var26.setForeground(var46); + var18.putClientProperty((java.lang.Object)(byte)100, (java.lang.Object)var46); + var0.setBackground(var46); + SpaceWar.SpacePanel var53 = new SpaceWar.SpacePanel(); + float var54 = var53.getAlignmentX(); + var53.setVisible(false); + boolean var57 = var53.isDoubleBuffered(); + java.awt.dnd.DropTarget var58 = var53.getDropTarget(); + var53.show(false); + boolean var61 = var53.isPaintingForPrint(); + SpaceWar.SpacePanel var62 = new SpaceWar.SpacePanel(); + float var63 = var62.getAlignmentX(); + SpaceWar.SpacePanel var64 = new SpaceWar.SpacePanel(); + float var65 = var64.getAlignmentX(); + var64.setVisible(false); + java.awt.Dimension var68 = var64.getPreferredSize(); + boolean var69 = var64.getVerifyInputWhenFocusTarget(); + java.awt.Component var72 = var64.findComponentAt(10, 1); + var62.addKeyListener((java.awt.event.KeyListener)var64); + java.awt.Dimension var74 = var64.getMinimumSize(); + var53.setMinimumSize(var74); + java.awt.Dimension var76 = var0.getSize(var74); + java.awt.Rectangle var77 = var0.getVisibleRect(); + javax.swing.InputMap var78 = var0.getInputMap(); + var0.firePropertyChange("SpaceWar.SpacePanel[,100,0,100x0,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", '#', '#'); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var24 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var30); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var31); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var35 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var42 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var46); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var54 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var57 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var58); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var61 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var63 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var65 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var68); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var69 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var72); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var74); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var76); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var77); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var78); + + } + + public void test389() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test389"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + var0.list(); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + float var7 = var6.getAlignmentX(); + var6.setVisible(false); + boolean var10 = var6.isDoubleBuffered(); + java.awt.dnd.DropTarget var11 = var6.getDropTarget(); + var6.show(false); + java.awt.Rectangle var14 = var6.getVisibleRect(); + java.awt.image.BufferedImage var16 = var6.loadImg("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + boolean var17 = var0.isAncestorOf((java.awt.Component)var6); + var6.transferFocusBackward(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == false); + + } + + public void test390() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test390"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + var0.list(); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + float var7 = var6.getAlignmentX(); + var6.setVisible(false); + boolean var10 = var6.isDoubleBuffered(); + java.awt.dnd.DropTarget var11 = var6.getDropTarget(); + var6.show(false); + java.awt.Rectangle var14 = var6.getVisibleRect(); + java.awt.Rectangle var15 = var0.getBounds(var14); + javax.swing.JToolTip var16 = var0.createToolTip(); + java.awt.event.InputMethodListener[] var17 = var0.getInputMethodListeners(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var17); + + } + + public void test391() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test391"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + boolean var6 = var0.isFocusOwner(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + java.awt.Dimension var12 = var8.getPreferredSize(); + java.awt.Toolkit var13 = var8.getToolkit(); + SpaceWar.SpacePanel var14 = new SpaceWar.SpacePanel(); + var14.setName(""); + int var17 = var14.getX(); + SpaceWar.SpacePanel var18 = new SpaceWar.SpacePanel(); + float var19 = var18.getAlignmentX(); + var18.setVisible(false); + var18.nextFocus(); + SpaceWar.SpacePanel var23 = new SpaceWar.SpacePanel(); + float var24 = var23.getAlignmentX(); + var23.setVisible(false); + SpaceWar.SpacePanel var27 = new SpaceWar.SpacePanel(); + java.awt.Color var28 = var27.getBackground(); + var23.setForeground(var28); + var18.setBackground(var28); + var14.setBackground(var28); + var8.setForeground(var28); + var0.putClientProperty((java.lang.Object)(byte)100, (java.lang.Object)var28); + boolean var34 = var0.isEnabled(); + boolean var35 = var0.getFocusTraversalKeysEnabled(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var24 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var28); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var34 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var35 == true); + + } + + public void test392() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test392"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.requestFocus(); + boolean var6 = var0.isBackgroundSet(); + SpaceWar.SpacePanel var7 = new SpaceWar.SpacePanel(); + java.awt.Color var8 = var7.getBackground(); + var7.repaint(); + var7.setRequestFocusEnabled(false); + var7.reshape(100, 0, 100, 0); + SpaceWar.SpacePanel var17 = new SpaceWar.SpacePanel(); + float var18 = var17.getAlignmentX(); + var17.setVisible(false); + var17.setInheritsPopupMenu(false); + boolean var23 = var17.isDoubleBuffered(); + SpaceWar.SpacePanel var24 = new SpaceWar.SpacePanel(); + float var25 = var24.getAlignmentX(); + var24.setVisible(false); + var24.nextFocus(); + var24.reshape((-1), 1, (-1), 10); + var24.disable(); + java.awt.LayoutManager var35 = var24.getLayout(); + var17.setLayout(var35); + var0.add((java.awt.Component)var7, (java.lang.Object)var35); + var7.hide(); + var7.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", 241.4584513263457d, 323.62099822147866d); + int var43 = var7.getHeight(); + java.awt.event.ContainerListener[] var44 = var7.getContainerListeners(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var35); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var43 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var44); + + } + + public void test393() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test393"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + var0.setRequestFocusEnabled(false); + var0.reshape(100, 0, 100, 0); + var0.requestFocus(); + var0.firePropertyChange("hi!", '4', ' '); + java.awt.Point var15 = var0.getLocation(); + java.awt.event.MouseWheelListener[] var16 = var0.getMouseWheelListeners(); + java.awt.Component var17 = var0.getNextFocusableComponent(); + var0.setDoubleBuffered(true); + SpaceWar.SpacePanel var20 = new SpaceWar.SpacePanel(); + float var21 = var20.getAlignmentX(); + var20.setVisible(false); + boolean var24 = var20.isDoubleBuffered(); + var20.enable(false); + boolean var27 = var20.getFocusTraversalKeysEnabled(); + SpaceWar.SpacePanel var28 = new SpaceWar.SpacePanel(); + float var29 = var28.getAlignmentX(); + var28.setVisible(false); + java.awt.Dimension var32 = var28.getPreferredSize(); + java.awt.Toolkit var33 = var28.getToolkit(); + boolean var34 = var28.isFocusable(); + javax.swing.KeyStroke[] var35 = var28.getRegisteredKeyStrokes(); + SpaceWar.SpacePanel var36 = new SpaceWar.SpacePanel(); + float var37 = var36.getAlignmentX(); + SpaceWar.SpacePanel var38 = new SpaceWar.SpacePanel(); + float var39 = var38.getAlignmentX(); + var38.setVisible(false); + java.awt.Dimension var42 = var38.getPreferredSize(); + boolean var43 = var38.getVerifyInputWhenFocusTarget(); + java.awt.Component var46 = var38.findComponentAt(10, 1); + var36.addKeyListener((java.awt.event.KeyListener)var38); + var38.repaint(100, (-1), (-1), 1); + boolean var53 = var28.isAncestorOf((java.awt.Component)var38); + var20.addKeyListener((java.awt.event.KeyListener)var38); + java.awt.Component var57 = var20.findComponentAt(1, 25); + java.awt.Rectangle var58 = var20.getVisibleRect(); + var0.scrollRectToVisible(var58); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var24 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var29 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var32); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var33); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var34 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var35); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var39 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var42); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var43 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var46); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var53 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var57); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var58); + + } + + public void test394() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test394"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.reshape((-1), 1, (-1), 10); + var0.disable(); + boolean var11 = var0.isFocusable(); + SpaceWar.SpacePanel var12 = new SpaceWar.SpacePanel(); + float var13 = var12.getAlignmentX(); + var12.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var18 = var12.getUI(); + java.awt.im.InputMethodRequests var19 = var12.getInputMethodRequests(); + SpaceWar.SpacePanel var20 = new SpaceWar.SpacePanel(); + float var21 = var20.getAlignmentX(); + var20.setVisible(false); + var20.nextFocus(); + var20.updateUI(); + var20.enableInputMethods(true); + var20.setSize((-1), 1); + SpaceWar.SpacePanel var31 = new SpaceWar.SpacePanel(); + var31.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var12.add((java.awt.Component)var20, (java.lang.Object)"SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + java.awt.event.KeyListener[] var37 = var12.getKeyListeners(); + java.awt.FocusTraversalPolicy var38 = var12.getFocusTraversalPolicy(); + SpaceWar.SpacePanel var39 = new SpaceWar.SpacePanel(); + var39.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + java.awt.Toolkit var44 = var39.getToolkit(); + var0.add((java.awt.Component)var12, (java.lang.Object)var39); + var0.layout(); + boolean var47 = var0.isVisible(); + SpaceWar.SpacePanel var48 = new SpaceWar.SpacePanel(); + java.awt.Color var49 = var48.getBackground(); + var48.repaint(); + var48.setRequestFocusEnabled(false); + var48.setIgnoreRepaint(false); + boolean var55 = var48.requestFocusInWindow(); + float var56 = var48.getAlignmentY(); + java.awt.LayoutManager var57 = var48.getLayout(); + var0.setLayout(var57); + var0.revalidate(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var37); + + // Regression assertion (captures the current behavior of the code) + assertNull(var38); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var44); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var47 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var49); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var55 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var56 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var57); + + } + + public void test395() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test395"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + var0.setName(""); + java.awt.Dimension var3 = var0.minimumSize(); + boolean var4 = var0.isDoubleBuffered(); + java.awt.Image var7 = var0.createImage(25, 400); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var7); + + } + + public void test396() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test396"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + SpaceWar.SpacePanel var2 = new SpaceWar.SpacePanel(); + float var3 = var2.getAlignmentX(); + var2.setVisible(false); + java.awt.Dimension var6 = var2.getPreferredSize(); + boolean var7 = var2.getVerifyInputWhenFocusTarget(); + java.awt.Component var10 = var2.findComponentAt(10, 1); + var0.addKeyListener((java.awt.event.KeyListener)var2); + boolean var12 = var2.getFocusTraversalKeysEnabled(); + int var13 = var2.getWidth(); + var2.setVerifyInputWhenFocusTarget(true); + var2.setDoubleBuffered(false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == 0); + + } + + public void test397() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test397"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + java.awt.Dimension var4 = var0.getPreferredSize(); + java.awt.Toolkit var5 = var0.getToolkit(); + boolean var6 = var0.isFocusable(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + var8.nextFocus(); + var8.reshape((-1), 1, (-1), 10); + java.util.Set var19 = var8.getFocusTraversalKeys(3); + var0.setFocusTraversalKeys(1, var19); + SpaceWar.SpacePanel var21 = new SpaceWar.SpacePanel(); + float var22 = var21.getAlignmentX(); + var21.setVisible(false); + SpaceWar.SpacePanel var25 = new SpaceWar.SpacePanel(); + java.awt.Color var26 = var25.getBackground(); + var21.setForeground(var26); + SpaceWar.SpacePanel var28 = new SpaceWar.SpacePanel(); + float var29 = var28.getAlignmentX(); + var28.setVisible(false); + boolean var32 = var28.isDoubleBuffered(); + java.awt.dnd.DropTarget var33 = var28.getDropTarget(); + var28.show(false); + java.awt.Rectangle var36 = var28.getVisibleRect(); + var21.repaint(var36); + java.awt.FocusTraversalPolicy var38 = var21.getFocusTraversalPolicy(); + java.awt.im.InputMethodRequests var39 = var21.getInputMethodRequests(); + var21.layout(); + java.awt.Container var41 = var21.getFocusCycleRootAncestor(); + SpaceWar.SpacePanel var42 = new SpaceWar.SpacePanel(); + float var43 = var42.getAlignmentX(); + var42.setVisible(false); + boolean var46 = var42.isDoubleBuffered(); + var42.list(); + SpaceWar.SpacePanel var48 = new SpaceWar.SpacePanel(); + float var49 = var48.getAlignmentX(); + var48.setVisible(false); + boolean var52 = var48.isDoubleBuffered(); + java.awt.dnd.DropTarget var53 = var48.getDropTarget(); + var48.show(false); + java.awt.Rectangle var56 = var48.getVisibleRect(); + java.awt.Rectangle var57 = var42.getBounds(var56); + javax.swing.JToolTip var58 = var42.createToolTip(); + var42.firePropertyChange("", false, false); + var42.validate(); + SpaceWar.SpacePanel var64 = new SpaceWar.SpacePanel(); + float var65 = var64.getAlignmentX(); + var64.setVisible(false); + boolean var68 = var64.isDoubleBuffered(); + java.awt.dnd.DropTarget var69 = var64.getDropTarget(); + var64.show(false); + boolean var72 = var64.isPaintingForPrint(); + SpaceWar.SpacePanel var73 = new SpaceWar.SpacePanel(); + float var74 = var73.getAlignmentX(); + var73.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var79 = var73.getMouseListeners(); + int var80 = var73.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var81 = var73.getInputMethodRequests(); + var64.addKeyListener((java.awt.event.KeyListener)var73); + var73.repaint(); + java.awt.Point var84 = var73.location(); + java.awt.Component var85 = var42.getComponentAt(var84); + var21.setLocation(var84); + java.awt.Point var87 = var0.getLocation(var84); + java.awt.Component var90 = var0.locate(10, 25); + java.awt.Dimension var91 = var0.minimumSize(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var4); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var22 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var29 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var32 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var33); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var36); + + // Regression assertion (captures the current behavior of the code) + assertNull(var38); + + // Regression assertion (captures the current behavior of the code) + assertNull(var39); + + // Regression assertion (captures the current behavior of the code) + assertNull(var41); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var43 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var46 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var49 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var52 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var53); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var56); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var57); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var58); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var65 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var68 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var69); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var72 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var74 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var79); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var80 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var81); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var84); + + // Regression assertion (captures the current behavior of the code) + assertNull(var85); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var87); + + // Regression assertion (captures the current behavior of the code) + assertNull(var90); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var91); + + } + + public void test398() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test398"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + var0.show(false); + boolean var8 = var0.isPaintingForPrint(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var15 = var9.getMouseListeners(); + int var16 = var9.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var17 = var9.getInputMethodRequests(); + var0.addKeyListener((java.awt.event.KeyListener)var9); + var9.repaint(); + java.awt.Point var20 = var9.location(); + java.awt.FocusTraversalPolicy var21 = var9.getFocusTraversalPolicy(); + var9.hide(); + var9.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", (short)(-1), (short)1); + java.awt.Graphics var27 = var9.getGraphics(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertNull(var21); + + // Regression assertion (captures the current behavior of the code) + assertNull(var27); + + } + + public void test399() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test399"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.reshape((-1), 1, (-1), 10); + var0.disable(); + java.awt.LayoutManager var11 = var0.getLayout(); + java.awt.Container var12 = var0.getParent(); + java.lang.String var13 = var0.getToolTipText(); + java.awt.Dimension var14 = var0.preferredSize(); + java.awt.Rectangle var15 = var0.getVisibleRect(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + } + + public void test400() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test400"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + java.awt.im.InputMethodRequests var3 = var0.getInputMethodRequests(); + var0.setDoubleBuffered(true); + var0.setInheritsPopupMenu(false); + javax.swing.plaf.PanelUI var8 = var0.getUI(); + java.util.Set var10 = var0.getFocusTraversalKeys(3); + var0.requestFocus(); + var0.setLocation(0, 24); + var0.doLayout(); + SpaceWar.SpacePanel var16 = new SpaceWar.SpacePanel(); + float var17 = var16.getAlignmentX(); + var16.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var22 = var16.getMouseListeners(); + var16.firePropertyChange("", 0.5f, 100.0f); + var16.enable(false); + int var29 = var16.getDebugGraphicsOptions(); + SpaceWar.SpacePanel var30 = new SpaceWar.SpacePanel(); + float var31 = var30.getAlignmentX(); + var30.setVisible(false); + var30.nextFocus(); + var30.repaint(1L); + SpaceWar.SpacePanel var37 = new SpaceWar.SpacePanel(); + float var38 = var37.getAlignmentX(); + var37.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var43 = new SpaceWar.SpacePanel(); + float var44 = var43.getAlignmentX(); + var43.setVisible(false); + java.awt.Dimension var47 = var43.getPreferredSize(); + var37.setMaximumSize(var47); + var30.setPreferredSize(var47); + java.awt.Container var50 = var30.getFocusCycleRootAncestor(); + java.awt.image.ColorModel var51 = var30.getColorModel(); + int var52 = var30.getComponentCount(); + java.awt.Component var53 = var16.add((java.awt.Component)var30); + var30.setBounds((-1), 25, 10, (-1)); + var30.grabFocus(); + boolean var60 = var0.isAncestorOf((java.awt.Component)var30); + java.awt.Dimension var61 = var0.getMinimumSize(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var29 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var31 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var38 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var44 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var47); + + // Regression assertion (captures the current behavior of the code) + assertNull(var50); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var51); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var52 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var53); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var60 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var61); + + } + + public void test401() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test401"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + SpaceWar.SpacePanel var4 = new SpaceWar.SpacePanel(); + java.awt.Color var5 = var4.getBackground(); + var0.setForeground(var5); + SpaceWar.SpacePanel var7 = new SpaceWar.SpacePanel(); + float var8 = var7.getAlignmentX(); + var7.setVisible(false); + boolean var11 = var7.isDoubleBuffered(); + java.awt.dnd.DropTarget var12 = var7.getDropTarget(); + var7.show(false); + java.awt.Rectangle var15 = var7.getVisibleRect(); + var0.repaint(var15); + java.awt.FocusTraversalPolicy var17 = var0.getFocusTraversalPolicy(); + SpaceWar.SpacePanel var18 = new SpaceWar.SpacePanel(); + float var19 = var18.getAlignmentX(); + var18.firePropertyChange("", (-1), 1); + boolean var24 = var18.isFocusOwner(); + SpaceWar.SpacePanel var26 = new SpaceWar.SpacePanel(); + float var27 = var26.getAlignmentX(); + var26.setVisible(false); + java.awt.Dimension var30 = var26.getPreferredSize(); + java.awt.Toolkit var31 = var26.getToolkit(); + SpaceWar.SpacePanel var32 = new SpaceWar.SpacePanel(); + var32.setName(""); + int var35 = var32.getX(); + SpaceWar.SpacePanel var36 = new SpaceWar.SpacePanel(); + float var37 = var36.getAlignmentX(); + var36.setVisible(false); + var36.nextFocus(); + SpaceWar.SpacePanel var41 = new SpaceWar.SpacePanel(); + float var42 = var41.getAlignmentX(); + var41.setVisible(false); + SpaceWar.SpacePanel var45 = new SpaceWar.SpacePanel(); + java.awt.Color var46 = var45.getBackground(); + var41.setForeground(var46); + var36.setBackground(var46); + var32.setBackground(var46); + var26.setForeground(var46); + var18.putClientProperty((java.lang.Object)(byte)100, (java.lang.Object)var46); + var0.setBackground(var46); + SpaceWar.SpacePanel var53 = new SpaceWar.SpacePanel(); + float var54 = var53.getAlignmentX(); + var53.setVisible(false); + boolean var57 = var53.isDoubleBuffered(); + java.awt.dnd.DropTarget var58 = var53.getDropTarget(); + var53.show(false); + boolean var61 = var53.isPaintingForPrint(); + SpaceWar.SpacePanel var62 = new SpaceWar.SpacePanel(); + float var63 = var62.getAlignmentX(); + SpaceWar.SpacePanel var64 = new SpaceWar.SpacePanel(); + float var65 = var64.getAlignmentX(); + var64.setVisible(false); + java.awt.Dimension var68 = var64.getPreferredSize(); + boolean var69 = var64.getVerifyInputWhenFocusTarget(); + java.awt.Component var72 = var64.findComponentAt(10, 1); + var62.addKeyListener((java.awt.event.KeyListener)var64); + java.awt.Dimension var74 = var64.getMinimumSize(); + var53.setMinimumSize(var74); + java.awt.Dimension var76 = var0.getSize(var74); + boolean var77 = var0.isCursorSet(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var24 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var30); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var31); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var35 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var42 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var46); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var54 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var57 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var58); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var61 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var63 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var65 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var68); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var69 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var72); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var74); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var76); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var77 == false); + + } + + public void test402() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test402"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + var0.setRequestFocusEnabled(false); + var0.reshape(100, 0, 100, 0); + var0.requestFocus(); + var0.firePropertyChange("hi!", '4', ' '); + java.awt.Point var15 = var0.getLocation(); + java.awt.event.MouseWheelListener[] var16 = var0.getMouseWheelListeners(); + java.awt.Component var17 = var0.getNextFocusableComponent(); + boolean var18 = var0.requestDefaultFocus(); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var20 = new SpaceWar.SpacePanel(); + java.awt.Color var21 = var20.getBackground(); + SpaceWar.SpacePanel var22 = new SpaceWar.SpacePanel(); + float var23 = var22.getAlignmentX(); + var22.setVisible(false); + var22.nextFocus(); + var22.updateUI(); + var22.enableInputMethods(true); + var19.add((java.awt.Component)var20, (java.lang.Object)true); + java.awt.Dimension var31 = var20.getPreferredSize(); + java.awt.Component[] var32 = var20.getComponents(); + var20.repaint(25, 25, 100, 1); + javax.swing.KeyStroke[] var38 = var20.getRegisteredKeyStrokes(); + var20.validate(); + boolean var40 = var0.isAncestorOf((java.awt.Component)var20); + java.awt.Point var41 = var20.location(); + javax.swing.JToolTip var42 = var20.createToolTip(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var21); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var31); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var32); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var38); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var40 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var41); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var42); + + } + + public void test403() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test403"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.reshape((-1), 1, (-1), 10); + var0.disable(); + java.awt.LayoutManager var11 = var0.getLayout(); + java.awt.Container var12 = var0.getParent(); + java.lang.String var13 = var0.getUIClassID(); + var0.setVerifyInputWhenFocusTarget(true); + boolean var16 = var0.isRequestFocusEnabled(); + javax.swing.JToolTip var17 = var0.createToolTip(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var13 + "' != '" + "PanelUI"+ "'", var13.equals("PanelUI")); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var17); + + } + + public void test404() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test404"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + SpaceWar.SpacePanel var5 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + java.awt.Color var7 = var6.getBackground(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + var8.nextFocus(); + var8.updateUI(); + var8.enableInputMethods(true); + var5.add((java.awt.Component)var6, (java.lang.Object)true); + java.awt.Dimension var17 = var6.getPreferredSize(); + var0.setMaximumSize(var17); + java.awt.Dimension var19 = var0.preferredSize(); + java.lang.String var20 = var0.getToolTipText(); + var0.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", 1L, (-1L)); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertNull(var20); + + } + + public void test405() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test405"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.setDoubleBuffered(true); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + float var7 = var6.getAlignmentX(); + var6.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var12 = var6.getMouseListeners(); + java.awt.Dimension var13 = var6.getPreferredSize(); + java.util.Locale var14 = var6.getLocale(); + var6.setFocusable(true); + var6.setSize(3, 10); + SpaceWar.SpacePanel var20 = new SpaceWar.SpacePanel(); + float var21 = var20.getAlignmentX(); + var20.setVisible(false); + java.awt.Dimension var24 = var20.getPreferredSize(); + boolean var25 = var20.getVerifyInputWhenFocusTarget(); + java.awt.Dimension var26 = var20.size(); + var6.setSize(var26); + var0.setSize(var26); + var0.enableInputMethods(false); + java.awt.Toolkit var31 = var0.getToolkit(); + int var32 = var0.getX(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var31); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var32 == 0); + + } + + public void test406() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test406"); + + + SpaceWar.Player var0 = new SpaceWar.Player(); + int var1 = var0.getR(); + var0.setRigth(false); + var0.setLife(100); + var0.setDown(false); + var0.setFiring(true); + int var10 = var0.getR(); + int var11 = var0.getPower(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 25); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 25); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == 0); + + } + + public void test407() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test407"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.Graphics var5 = var0.getGraphics(); + boolean var6 = var0.hasFocus(); + boolean var7 = var0.isVisible(); + var0.firePropertyChange("SpaceWar.SpacePanel[,-1,1,-1x10,invalid,hidden,disabled,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", (short)1, (short)(-1)); + boolean var12 = var0.isDisplayable(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == false); + + } + + public void test408() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test408"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.setInheritsPopupMenu(false); + boolean var6 = var0.isDoubleBuffered(); + var0.setAlignmentY(100.0f); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var15 = var9.getUI(); + java.awt.im.InputMethodRequests var16 = var9.getInputMethodRequests(); + SpaceWar.SpacePanel var17 = new SpaceWar.SpacePanel(); + float var18 = var17.getAlignmentX(); + var17.setVisible(false); + var17.nextFocus(); + var17.updateUI(); + var17.enableInputMethods(true); + var17.setSize((-1), 1); + SpaceWar.SpacePanel var28 = new SpaceWar.SpacePanel(); + var28.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var9.add((java.awt.Component)var17, (java.lang.Object)"SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + java.awt.event.KeyListener[] var34 = var9.getKeyListeners(); + var9.repaint(3, 1, 25, 0); + SpaceWar.SpacePanel var40 = new SpaceWar.SpacePanel(); + java.awt.Color var41 = var40.getBackground(); + boolean var44 = var40.inside(0, (-1)); + var40.transferFocusUpCycle(); + java.awt.Container var46 = var40.getParent(); + boolean var47 = var40.isMaximumSizeSet(); + SpaceWar.SpacePanel var48 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var49 = new SpaceWar.SpacePanel(); + java.awt.Color var50 = var49.getBackground(); + SpaceWar.SpacePanel var51 = new SpaceWar.SpacePanel(); + float var52 = var51.getAlignmentX(); + var51.setVisible(false); + var51.nextFocus(); + var51.updateUI(); + var51.enableInputMethods(true); + var48.add((java.awt.Component)var49, (java.lang.Object)true); + boolean var61 = var49.areFocusTraversalKeysSet(0); + SpaceWar.SpacePanel var62 = new SpaceWar.SpacePanel(); + float var63 = var62.getAlignmentX(); + var62.setVisible(false); + boolean var66 = var62.isDoubleBuffered(); + java.awt.dnd.DropTarget var67 = var62.getDropTarget(); + var62.show(false); + java.awt.Rectangle var70 = var62.getVisibleRect(); + var49.setBounds(var70); + var40.setBounds(var70); + java.awt.Rectangle var73 = var9.getBounds(var70); + var0.setBounds(var73); + boolean var76 = var0.requestFocus(false); + var0.firePropertyChange("SpaceWar.SpacePanel[,-1,100,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=265,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", 241.4584513263457d, 10.0d); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var34); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var41); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var44 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var46); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var47 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var50); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var52 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var61 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var63 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var66 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var67); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var70); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var73); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var76 == false); + + } + + public void test409() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test409"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var6 = var0.getUI(); + java.awt.im.InputMethodRequests var7 = var0.getInputMethodRequests(); + var0.repaint(100L); + SpaceWar.SpacePanel var10 = new SpaceWar.SpacePanel(); + float var11 = var10.getAlignmentX(); + var10.setVisible(false); + boolean var14 = var10.isDoubleBuffered(); + var10.list(); + SpaceWar.SpacePanel var16 = new SpaceWar.SpacePanel(); + float var17 = var16.getAlignmentX(); + var16.setVisible(false); + boolean var20 = var16.isDoubleBuffered(); + java.awt.dnd.DropTarget var21 = var16.getDropTarget(); + var16.show(false); + java.awt.Rectangle var24 = var16.getVisibleRect(); + java.awt.Rectangle var25 = var10.getBounds(var24); + javax.swing.JToolTip var26 = var10.createToolTip(); + java.awt.Dimension var27 = var10.minimumSize(); + boolean var29 = var10.requestFocus(false); + java.awt.Dimension var30 = var10.minimumSize(); + var0.setPreferredSize(var30); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var21); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var25); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var27); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var29 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var30); + + } + + public void test410() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test410"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.updateUI(); + var0.enableInputMethods(true); + java.awt.Point var8 = var0.location(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.setVisible(false); + var9.nextFocus(); + java.awt.Component var14 = var0.add((java.awt.Component)var9); + boolean var15 = var0.isRequestFocusEnabled(); + var0.nextFocus(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == true); + + } + + public void test411() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test411"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.updateUI(); + var0.enableInputMethods(true); + java.awt.Point var9 = var0.getMousePosition(false); + java.awt.Point var10 = var0.getMousePosition(); + var0.revalidate(); + java.awt.Insets var12 = var0.getInsets(); + var0.setFocusTraversalKeysEnabled(true); + boolean var15 = var0.isMaximumSizeSet(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNull(var9); + + // Regression assertion (captures the current behavior of the code) + assertNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == false); + + } + + public void test412() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test412"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var1 = new SpaceWar.SpacePanel(); + java.awt.Color var2 = var1.getBackground(); + SpaceWar.SpacePanel var3 = new SpaceWar.SpacePanel(); + float var4 = var3.getAlignmentX(); + var3.setVisible(false); + var3.nextFocus(); + var3.updateUI(); + var3.enableInputMethods(true); + var0.add((java.awt.Component)var1, (java.lang.Object)true); + java.awt.Image var14 = var1.createImage(1, (-1)); + java.awt.event.MouseListener[] var15 = var1.getMouseListeners(); + java.awt.Color var16 = var1.getBackground(); + boolean var17 = var1.getIgnoreRepaint(); + var1.enable(); + javax.swing.JToolTip var19 = var1.createToolTip(); + SpaceWar.SpacePanel var20 = new SpaceWar.SpacePanel(); + var20.setName(""); + java.awt.Graphics var23 = var20.getGraphics(); + SpaceWar.SpacePanel var24 = new SpaceWar.SpacePanel(); + float var25 = var24.getAlignmentX(); + var24.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var30 = new SpaceWar.SpacePanel(); + float var31 = var30.getAlignmentX(); + var30.setVisible(false); + java.awt.Dimension var34 = var30.getPreferredSize(); + var24.setMaximumSize(var34); + boolean var36 = var24.getVerifyInputWhenFocusTarget(); + int var37 = var24.getX(); + SpaceWar.SpacePanel var38 = new SpaceWar.SpacePanel(); + float var39 = var38.getAlignmentX(); + SpaceWar.SpacePanel var40 = new SpaceWar.SpacePanel(); + float var41 = var40.getAlignmentX(); + var40.setVisible(false); + java.awt.Dimension var44 = var40.getPreferredSize(); + boolean var45 = var40.getVerifyInputWhenFocusTarget(); + java.awt.Component var48 = var40.findComponentAt(10, 1); + var38.addKeyListener((java.awt.event.KeyListener)var40); + var40.repaint(100, (-1), (-1), 1); + SpaceWar.SpacePanel var55 = new SpaceWar.SpacePanel(); + java.awt.Color var56 = var55.getBackground(); + var55.repaint(); + java.awt.im.InputMethodRequests var58 = var55.getInputMethodRequests(); + java.awt.GraphicsConfiguration var59 = var55.getGraphicsConfiguration(); + var40.remove((java.awt.Component)var55); + java.awt.Font var61 = var55.getFont(); + var24.setFont(var61); + var20.setFont(var61); + java.awt.FontMetrics var64 = var1.getFontMetrics(var61); + java.awt.event.MouseWheelListener[] var65 = var1.getMouseWheelListeners(); + java.awt.Image var68 = var1.createImage(1, 0); + java.awt.event.MouseMotionListener[] var69 = var1.getMouseMotionListeners(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var2); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertNull(var23); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var31 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var34); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var36 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var39 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var41 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var44); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var45 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var48); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var56); + + // Regression assertion (captures the current behavior of the code) + assertNull(var58); + + // Regression assertion (captures the current behavior of the code) + assertNull(var59); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var61); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var64); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var65); + + // Regression assertion (captures the current behavior of the code) + assertNull(var68); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var69); + + } + + public void test413() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test413"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + boolean var6 = var0.isFocusCycleRoot(); + SpaceWar.SpacePanel var7 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + java.awt.Color var9 = var8.getBackground(); + SpaceWar.SpacePanel var10 = new SpaceWar.SpacePanel(); + float var11 = var10.getAlignmentX(); + var10.setVisible(false); + var10.nextFocus(); + var10.updateUI(); + var10.enableInputMethods(true); + var7.add((java.awt.Component)var8, (java.lang.Object)true); + java.awt.Dimension var19 = var8.getPreferredSize(); + var0.setSize(var19); + java.awt.Dimension var21 = var0.preferredSize(); + java.awt.Component var24 = var0.findComponentAt((-1), 10); + java.awt.Color var25 = var0.getForeground(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var9); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var21); + + // Regression assertion (captures the current behavior of the code) + assertNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var25); + + } + + public void test414() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test414"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.setInheritsPopupMenu(false); + var0.setFocusTraversalPolicyProvider(true); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + boolean var12 = var8.isDoubleBuffered(); + var8.list(); + SpaceWar.SpacePanel var14 = new SpaceWar.SpacePanel(); + float var15 = var14.getAlignmentX(); + var14.setVisible(false); + boolean var18 = var14.isDoubleBuffered(); + java.awt.dnd.DropTarget var19 = var14.getDropTarget(); + var14.show(false); + java.awt.Rectangle var22 = var14.getVisibleRect(); + java.awt.Rectangle var23 = var8.getBounds(var22); + javax.swing.JToolTip var24 = var8.createToolTip(); + var0.removeKeyListener((java.awt.event.KeyListener)var8); + var0.setFocusTraversalKeysEnabled(true); + javax.swing.KeyStroke[] var28 = var0.getRegisteredKeyStrokes(); + SpaceWar.SpacePanel var29 = new SpaceWar.SpacePanel(); + float var30 = var29.getAlignmentX(); + var29.setVisible(false); + java.awt.Dimension var33 = var29.getPreferredSize(); + java.awt.Toolkit var34 = var29.getToolkit(); + boolean var35 = var29.isFocusable(); + javax.swing.KeyStroke[] var36 = var29.getRegisteredKeyStrokes(); + java.awt.Component var39 = var29.getComponentAt(100, 100); + java.lang.Object var40 = var29.getTreeLock(); + boolean var43 = var29.inside(400, 0); + java.awt.event.MouseWheelListener[] var44 = var29.getMouseWheelListeners(); + var29.enableInputMethods(true); + boolean var47 = var0.isAncestorOf((java.awt.Component)var29); + boolean var48 = var0.isEnabled(); + SpaceWar.SpacePanel var49 = new SpaceWar.SpacePanel(); + float var50 = var49.getAlignmentX(); + var49.setVisible(false); + java.awt.Dimension var53 = var49.getPreferredSize(); + boolean var54 = var49.getVerifyInputWhenFocusTarget(); + java.awt.Component var57 = var49.findComponentAt(10, 1); + boolean var58 = var49.requestDefaultFocus(); + var49.setVerifyInputWhenFocusTarget(false); + java.awt.Point var61 = var49.getLocation(); + boolean var62 = var0.contains(var61); + java.beans.VetoableChangeListener[] var63 = var0.getVetoableChangeListeners(); + boolean var64 = var0.isFocusTraversable(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var23); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var28); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var30 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var33); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var34); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var35 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var36); + + // Regression assertion (captures the current behavior of the code) + assertNull(var39); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var40); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var43 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var44); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var47 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var48 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var50 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var53); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var54 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var57); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var58 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var61); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var62 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var63); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var64 == true); + + } + + public void test415() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test415"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.setInheritsPopupMenu(false); + boolean var6 = var0.isDoubleBuffered(); + boolean var7 = var0.isMinimumSizeSet(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var14 = new SpaceWar.SpacePanel(); + float var15 = var14.getAlignmentX(); + var14.setVisible(false); + java.awt.Dimension var18 = var14.getPreferredSize(); + var8.setMaximumSize(var18); + boolean var20 = var8.getVerifyInputWhenFocusTarget(); + javax.accessibility.AccessibleContext var21 = var8.getAccessibleContext(); + boolean var22 = var8.isDoubleBuffered(); + java.awt.Rectangle var23 = var8.getVisibleRect(); + var0.setBounds(var23); + SpaceWar.SpacePanel var25 = new SpaceWar.SpacePanel(); + float var26 = var25.getAlignmentX(); + var25.firePropertyChange("", (-1), 1); + java.awt.Rectangle var31 = var25.getVisibleRect(); + java.awt.Rectangle var32 = var0.getBounds(var31); + java.awt.Container var33 = var0.getParent(); + var0.firePropertyChange("SpaceWar.SpacePanel[,-1,100,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=265,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", (short)1, (short)100); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var21); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var22 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var23); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var31); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var32); + + // Regression assertion (captures the current behavior of the code) + assertNull(var33); + + } + + public void test416() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test416"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + var0.setRequestFocusEnabled(false); + var0.setIgnoreRepaint(false); + java.lang.String var7 = var0.toString(); + java.awt.Color var8 = var0.getBackground(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.setVisible(false); + java.awt.Dimension var13 = var9.getPreferredSize(); + java.awt.Toolkit var14 = var9.getToolkit(); + java.awt.Toolkit var15 = var9.getToolkit(); + SpaceWar.Player var16 = new SpaceWar.Player(); + var16.increasePower(25); + int var19 = var16.getScore(); + var16.setRigth(true); + var16.loseLife(); + var0.putClientProperty((java.lang.Object)var9, (java.lang.Object)var16); + int var24 = var16.getPowerLevel(); + int var25 = var16.getPower(); + int var26 = var16.getLives(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var7 + "' != '" + "SpaceWar.SpacePanel[,0,0,0var7,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"+ "'", var7.equals("SpaceWar.SpacePanel[,0,0,0var7,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]")); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var24 == 1); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == 24); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == 2); + + } + + public void test417() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test417"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + SpaceWar.SpacePanel var2 = new SpaceWar.SpacePanel(); + float var3 = var2.getAlignmentX(); + var2.setVisible(false); + java.awt.Dimension var6 = var2.getPreferredSize(); + boolean var7 = var2.getVerifyInputWhenFocusTarget(); + java.awt.Component var10 = var2.findComponentAt(10, 1); + var0.addKeyListener((java.awt.event.KeyListener)var2); + SpaceWar.SpacePanel var12 = new SpaceWar.SpacePanel(); + float var13 = var12.getAlignmentX(); + SpaceWar.SpacePanel var14 = new SpaceWar.SpacePanel(); + float var15 = var14.getAlignmentX(); + var14.setVisible(false); + java.awt.Dimension var18 = var14.getPreferredSize(); + boolean var19 = var14.getVerifyInputWhenFocusTarget(); + java.awt.Component var22 = var14.findComponentAt(10, 1); + var12.addKeyListener((java.awt.event.KeyListener)var14); + var14.repaint(100, (-1), (-1), 1); + java.awt.image.ColorModel var29 = var14.getColorModel(); + SpaceWar.SpacePanel var30 = new SpaceWar.SpacePanel(); + float var31 = var30.getAlignmentX(); + var30.setVisible(false); + boolean var34 = var30.isDoubleBuffered(); + var30.list(); + SpaceWar.SpacePanel var36 = new SpaceWar.SpacePanel(); + float var37 = var36.getAlignmentX(); + var36.setVisible(false); + boolean var40 = var36.isDoubleBuffered(); + java.awt.dnd.DropTarget var41 = var36.getDropTarget(); + var36.show(false); + java.awt.Rectangle var44 = var36.getVisibleRect(); + java.awt.image.BufferedImage var46 = var36.loadImg("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + boolean var47 = var30.isAncestorOf((java.awt.Component)var36); + javax.swing.InputVerifier var48 = var36.getInputVerifier(); + var2.putClientProperty((java.lang.Object)var14, (java.lang.Object)var36); + java.awt.Dimension var50 = var14.size(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var29); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var31 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var34 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var40 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var41); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var44); + + // Regression assertion (captures the current behavior of the code) + assertNull(var46); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var47 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var48); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var50); + + } + + public void test418() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test418"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var1 = new SpaceWar.SpacePanel(); + java.awt.Color var2 = var1.getBackground(); + SpaceWar.SpacePanel var3 = new SpaceWar.SpacePanel(); + float var4 = var3.getAlignmentX(); + var3.setVisible(false); + var3.nextFocus(); + var3.updateUI(); + var3.enableInputMethods(true); + var0.add((java.awt.Component)var1, (java.lang.Object)true); + java.awt.Image var14 = var1.createImage(1, (-1)); + java.awt.event.MouseListener[] var15 = var1.getMouseListeners(); + java.awt.Color var16 = var1.getBackground(); + var1.grabFocus(); + javax.swing.JToolTip var18 = var1.createToolTip(); + // The following exception was thrown during execution. + // This behavior will recorded for regression testing. + try { + java.awt.Point var19 = var1.getLocationOnScreen(); + fail("Expected exception of type java.awt.IllegalComponentStateException"); + } catch (java.awt.IllegalComponentStateException e) { + // Expected exception. + } + + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var2); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var18); + + } + + public void test419() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test419"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + var0.list(); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + float var7 = var6.getAlignmentX(); + var6.setVisible(false); + boolean var10 = var6.isDoubleBuffered(); + java.awt.dnd.DropTarget var11 = var6.getDropTarget(); + var6.show(false); + java.awt.Rectangle var14 = var6.getVisibleRect(); + java.awt.image.BufferedImage var16 = var6.loadImg("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + boolean var17 = var0.isAncestorOf((java.awt.Component)var6); + float var18 = var0.getAlignmentX(); + java.awt.image.VolatileImage var21 = var0.createVolatileImage(25, 1); + java.beans.PropertyChangeListener[] var23 = var0.getPropertyChangeListeners("PanelUI"); + boolean var24 = var0.isPaintingForPrint(); + boolean var25 = var0.isPreferredSizeSet(); + SpaceWar.SpacePanel var26 = new SpaceWar.SpacePanel(); + float var27 = var26.getAlignmentX(); + var26.setVisible(false); + boolean var30 = var26.isDoubleBuffered(); + java.awt.dnd.DropTarget var31 = var26.getDropTarget(); + var26.show(false); + java.awt.Rectangle var34 = var26.getVisibleRect(); + java.awt.Toolkit var35 = var26.getToolkit(); + java.beans.PropertyChangeListener[] var36 = var26.getPropertyChangeListeners(); + SpaceWar.SpacePanel var37 = new SpaceWar.SpacePanel(); + float var38 = var37.getAlignmentX(); + var37.setVisible(false); + var37.nextFocus(); + var37.repaint(1L); + SpaceWar.SpacePanel var44 = new SpaceWar.SpacePanel(); + float var45 = var44.getAlignmentX(); + var44.setVisible(false); + var44.nextFocus(); + var44.updateUI(); + var44.enableInputMethods(true); + var44.enableInputMethods(true); + var37.addKeyListener((java.awt.event.KeyListener)var44); + java.awt.event.MouseMotionListener[] var55 = var37.getMouseMotionListeners(); + var0.putClientProperty((java.lang.Object)var26, (java.lang.Object)var55); + java.awt.Dimension var57 = var26.size(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNull(var21); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var23); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var24 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var30 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var31); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var34); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var35); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var36); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var38 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var45 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var55); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var57); + + } + + public void test420() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test420"); + + + SpaceWar.Enemy var2 = new SpaceWar.Enemy(0, 100); + int var3 = var2.getR(); + var2.explode(); + var2.update(); + var2.explode(); + boolean var7 = var2.isDead(); + double var8 = var2.getY(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 0.0d); + + } + + public void test421() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test421"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var6 = var0.getMouseListeners(); + int var7 = var0.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var8 = var0.getInputMethodRequests(); + var0.removeNotify(); + var0.enable(); + SpaceWar.SpacePanel var11 = new SpaceWar.SpacePanel(); + java.awt.Color var12 = var11.getBackground(); + boolean var15 = var11.inside(0, (-1)); + var11.transferFocusUpCycle(); + java.lang.String var17 = var11.getName(); + boolean var18 = var0.isFocusCycleRoot((java.awt.Container)var11); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + java.awt.Color var20 = var19.getBackground(); + var19.repaint(); + java.awt.im.InputMethodRequests var22 = var19.getInputMethodRequests(); + int var23 = var19.countComponents(); + java.awt.Dimension var24 = var19.getSize(); + var0.setSize(var24); + SpaceWar.SpacePanel var26 = new SpaceWar.SpacePanel(); + java.awt.Color var27 = var26.getBackground(); + var26.repaint(); + var26.setRequestFocusEnabled(false); + var26.setIgnoreRepaint(false); + java.lang.String var33 = var26.toString(); + java.awt.Color var34 = var26.getBackground(); + SpaceWar.SpacePanel var35 = new SpaceWar.SpacePanel(); + float var36 = var35.getAlignmentX(); + var35.setVisible(false); + java.awt.Dimension var39 = var35.getPreferredSize(); + java.awt.Toolkit var40 = var35.getToolkit(); + java.awt.Toolkit var41 = var35.getToolkit(); + SpaceWar.Player var42 = new SpaceWar.Player(); + var42.increasePower(25); + int var45 = var42.getScore(); + var42.setRigth(true); + var42.loseLife(); + var26.putClientProperty((java.lang.Object)var35, (java.lang.Object)var42); + java.awt.Rectangle var50 = var35.bounds(); + var0.paintImmediately(var50); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var27); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var33 + "' != '" + "SpaceWar.SpacePanel[,0,0,0var33,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"+ "'", var33.equals("SpaceWar.SpacePanel[,0,0,0var33,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]")); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var34); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var36 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var39); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var40); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var41); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var45 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var50); + + } + + public void test422() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test422"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + SpaceWar.SpacePanel var4 = new SpaceWar.SpacePanel(); + java.awt.Color var5 = var4.getBackground(); + var0.setForeground(var5); + SpaceWar.SpacePanel var7 = new SpaceWar.SpacePanel(); + float var8 = var7.getAlignmentX(); + var7.setVisible(false); + boolean var11 = var7.isDoubleBuffered(); + java.awt.dnd.DropTarget var12 = var7.getDropTarget(); + var7.show(false); + java.awt.Rectangle var15 = var7.getVisibleRect(); + var0.repaint(var15); + java.awt.FocusTraversalPolicy var17 = var0.getFocusTraversalPolicy(); + var0.resetKeyboardActions(); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + float var20 = var19.getAlignmentX(); + var19.setVisible(false); + boolean var23 = var19.isDoubleBuffered(); + java.awt.dnd.DropTarget var24 = var19.getDropTarget(); + var19.show(false); + java.awt.Rectangle var27 = var19.getVisibleRect(); + var0.computeVisibleRect(var27); + SpaceWar.SpacePanel var29 = new SpaceWar.SpacePanel(); + java.awt.Color var30 = var29.getBackground(); + var29.repaint(); + java.awt.im.InputMethodRequests var32 = var29.getInputMethodRequests(); + var29.setDoubleBuffered(true); + var29.show(false); + var29.setAlignmentY(100.0f); + SpaceWar.SpacePanel var39 = new SpaceWar.SpacePanel(); + float var40 = var39.getAlignmentX(); + var39.setVisible(false); + SpaceWar.SpacePanel var43 = new SpaceWar.SpacePanel(); + java.awt.Color var44 = var43.getBackground(); + var39.setForeground(var44); + SpaceWar.SpacePanel var46 = new SpaceWar.SpacePanel(); + float var47 = var46.getAlignmentX(); + var46.setVisible(false); + boolean var50 = var46.isDoubleBuffered(); + java.awt.dnd.DropTarget var51 = var46.getDropTarget(); + var46.show(false); + java.awt.Rectangle var54 = var46.getVisibleRect(); + var39.repaint(var54); + java.awt.FocusTraversalPolicy var56 = var39.getFocusTraversalPolicy(); + java.awt.im.InputMethodRequests var57 = var39.getInputMethodRequests(); + var39.layout(); + boolean var59 = var39.isFocusTraversalPolicyProvider(); + java.awt.Insets var60 = var39.insets(); + java.awt.Dimension var61 = var39.getMinimumSize(); + java.awt.Dimension var62 = var29.getSize(var61); + var0.resize(var62); + java.awt.event.MouseMotionListener[] var64 = var0.getMouseMotionListeners(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var27); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var30); + + // Regression assertion (captures the current behavior of the code) + assertNull(var32); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var40 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var44); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var47 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var50 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var51); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var54); + + // Regression assertion (captures the current behavior of the code) + assertNull(var56); + + // Regression assertion (captures the current behavior of the code) + assertNull(var57); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var59 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var60); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var61); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var62); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var64); + + } + + public void test423() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test423"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + var0.enable(false); + boolean var7 = var0.getFocusTraversalKeysEnabled(); + javax.swing.JRootPane var8 = var0.getRootPane(); + java.awt.event.KeyListener[] var9 = var0.getKeyListeners(); + java.awt.Insets var10 = var0.insets(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var9); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var10); + + } + + public void test424() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test424"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + boolean var2 = var0.hasFocus(); + boolean var3 = var0.isPreferredSizeSet(); + var0.firePropertyChange("", (short)1, (short)0); + boolean var8 = var0.isMaximumSizeSet(); + java.awt.peer.ComponentPeer var9 = var0.getPeer(); + boolean var10 = var0.isFocusOwner(); + SpaceWar.SpacePanel var11 = new SpaceWar.SpacePanel(); + float var12 = var11.getAlignmentX(); + var11.setVisible(false); + var11.nextFocus(); + var11.reshape((-1), 1, (-1), 10); + var11.disable(); + java.awt.LayoutManager var22 = var11.getLayout(); + var11.setVisible(false); + SpaceWar.SpacePanel var25 = new SpaceWar.SpacePanel(); + float var26 = var25.getAlignmentX(); + var25.setVisible(false); + var25.setInheritsPopupMenu(false); + boolean var31 = var25.isDoubleBuffered(); + boolean var32 = var25.isMinimumSizeSet(); + SpaceWar.SpacePanel var33 = new SpaceWar.SpacePanel(); + float var34 = var33.getAlignmentX(); + var33.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var39 = new SpaceWar.SpacePanel(); + float var40 = var39.getAlignmentX(); + var39.setVisible(false); + java.awt.Dimension var43 = var39.getPreferredSize(); + var33.setMaximumSize(var43); + boolean var45 = var33.getVerifyInputWhenFocusTarget(); + javax.accessibility.AccessibleContext var46 = var33.getAccessibleContext(); + boolean var47 = var33.isDoubleBuffered(); + java.awt.Rectangle var48 = var33.getVisibleRect(); + var25.setBounds(var48); + var11.computeVisibleRect(var48); + SpaceWar.SpacePanel var51 = new SpaceWar.SpacePanel(); + float var52 = var51.getAlignmentX(); + var51.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var57 = new SpaceWar.SpacePanel(); + float var58 = var57.getAlignmentX(); + var57.setVisible(false); + java.awt.Dimension var61 = var57.getPreferredSize(); + var51.setMaximumSize(var61); + boolean var63 = var51.getVerifyInputWhenFocusTarget(); + int var64 = var51.getX(); + java.awt.Rectangle var65 = var51.bounds(); + var11.remove((java.awt.Component)var51); + java.awt.Rectangle var67 = var11.bounds(); + var0.paintImmediately(var67); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var2 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var9); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var31 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var32 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var34 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var40 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var43); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var45 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var46); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var47 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var48); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var52 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var58 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var61); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var63 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var64 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var65); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var67); + + } + + public void test425() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test425"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + float var7 = var6.getAlignmentX(); + var6.setVisible(false); + java.awt.Dimension var10 = var6.getPreferredSize(); + var0.setMaximumSize(var10); + boolean var12 = var0.getVerifyInputWhenFocusTarget(); + int var13 = var0.getX(); + java.awt.Rectangle var14 = var0.bounds(); + boolean var15 = var0.getAutoscrolls(); + java.awt.event.ComponentListener[] var16 = var0.getComponentListeners(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + } + + public void test426() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test426"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.updateUI(); + var0.enableInputMethods(true); + var0.setSize((-1), 1); + boolean var13 = var0.contains(1, 1); + javax.swing.TransferHandler var14 = var0.getTransferHandler(); + SpaceWar.SpacePanel var15 = new SpaceWar.SpacePanel(); + float var16 = var15.getAlignmentX(); + var15.setVisible(false); + boolean var19 = var15.isDoubleBuffered(); + var15.enable(false); + java.lang.Object var22 = var0.getClientProperty((java.lang.Object)false); + boolean var23 = javax.swing.JComponent.isLightweightComponent((java.awt.Component)var0); + var0.enableInputMethods(true); + java.awt.event.KeyListener[] var26 = var0.getKeyListeners(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var26); + + } + + public void test427() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test427"); + + + SpaceWar.Player var0 = new SpaceWar.Player(); + int var1 = var0.getPower(); + var0.setLeft(true); + var0.increasePower(0); + int var6 = var0.getR(); + var0.setUp(false); + int var9 = var0.getRequiredPower(); + var0.setFiring(true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == 25); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 1); + + } + + public void test428() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test428"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + var0.show(false); + boolean var8 = var0.isPaintingForPrint(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var15 = var9.getMouseListeners(); + int var16 = var9.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var17 = var9.getInputMethodRequests(); + var0.addKeyListener((java.awt.event.KeyListener)var9); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + float var20 = var19.getAlignmentX(); + var19.setVisible(false); + boolean var23 = var19.isDoubleBuffered(); + var19.list(); + float var25 = var19.getAlignmentY(); + boolean var26 = var9.isFocusCycleRoot((java.awt.Container)var19); + var19.firePropertyChange("", 1L, 1L); + var19.setVerifyInputWhenFocusTarget(true); + java.awt.Cursor var33 = var19.getCursor(); + var19.resetKeyboardActions(); + var19.grabFocus(); + boolean var36 = var19.isForegroundSet(); + float var37 = var19.getAlignmentY(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var33); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var36 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == 0.5f); + + } + + public void test429() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test429"); + + + SpaceWar.Player var0 = new SpaceWar.Player(); + boolean var1 = var0.isRecovering(); + var0.loseLife(); + int var3 = var0.getR(); + var0.increasePower(500); + int var6 = var0.getPower(); + var0.setScore(499); + var0.setFiring(false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == 25); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == 499); + + } + + public void test430() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test430"); + + + SpaceWar.Player var0 = new SpaceWar.Player(); + var0.increasePower(25); + int var3 = var0.getScore(); + var0.update(); + int var5 = var0.getY(); + boolean var6 = var0.isRecovering(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == 500); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == false); + + } + + public void test431() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test431"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.repaint(1L); + SpaceWar.SpacePanel var7 = new SpaceWar.SpacePanel(); + float var8 = var7.getAlignmentX(); + var7.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var13 = new SpaceWar.SpacePanel(); + float var14 = var13.getAlignmentX(); + var13.setVisible(false); + java.awt.Dimension var17 = var13.getPreferredSize(); + var7.setMaximumSize(var17); + var0.setPreferredSize(var17); + boolean var20 = var0.hasFocus(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == false); + + } + + public void test432() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test432"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.reshape((-1), 1, (-1), 10); + var0.disable(); + java.awt.LayoutManager var11 = var0.getLayout(); + java.awt.Container var12 = var0.getParent(); + java.lang.String var13 = var0.getUIClassID(); + float var14 = var0.getAlignmentX(); + var0.enable(true); + boolean var17 = var0.isPaintingTile(); + boolean var18 = var0.isValidateRoot(); + var0.setFocusCycleRoot(true); + java.awt.event.MouseListener[] var21 = var0.getMouseListeners(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var13 + "' != '" + "PanelUI"+ "'", var13.equals("PanelUI")); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var21); + + } + + public void test433() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test433"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + SpaceWar.SpacePanel var4 = new SpaceWar.SpacePanel(); + java.awt.Color var5 = var4.getBackground(); + var0.setForeground(var5); + SpaceWar.SpacePanel var7 = new SpaceWar.SpacePanel(); + float var8 = var7.getAlignmentX(); + var7.setVisible(false); + boolean var11 = var7.isDoubleBuffered(); + java.awt.dnd.DropTarget var12 = var7.getDropTarget(); + var7.show(false); + java.awt.Rectangle var15 = var7.getVisibleRect(); + var0.repaint(var15); + java.awt.Component.BaselineResizeBehavior var17 = var0.getBaselineResizeBehavior(); + boolean var19 = var0.requestFocus(false); + java.awt.Rectangle var20 = var0.getBounds(); + boolean var21 = var0.requestFocusInWindow(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == false); + + } + + public void test434() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test434"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + java.awt.Dimension var4 = var0.getPreferredSize(); + boolean var5 = var0.getVerifyInputWhenFocusTarget(); + java.awt.Component var8 = var0.findComponentAt(10, 1); + java.awt.Dimension var9 = var0.minimumSize(); + SpaceWar.SpacePanel var10 = new SpaceWar.SpacePanel(); + float var11 = var10.getAlignmentX(); + SpaceWar.SpacePanel var12 = new SpaceWar.SpacePanel(); + float var13 = var12.getAlignmentX(); + var12.setVisible(false); + java.awt.Dimension var16 = var12.getPreferredSize(); + boolean var17 = var12.getVerifyInputWhenFocusTarget(); + java.awt.Component var20 = var12.findComponentAt(10, 1); + var10.addKeyListener((java.awt.event.KeyListener)var12); + SpaceWar.SpacePanel var22 = new SpaceWar.SpacePanel(); + float var23 = var22.getAlignmentX(); + SpaceWar.SpacePanel var24 = new SpaceWar.SpacePanel(); + float var25 = var24.getAlignmentX(); + var24.setVisible(false); + java.awt.Dimension var28 = var24.getPreferredSize(); + boolean var29 = var24.getVerifyInputWhenFocusTarget(); + java.awt.Component var32 = var24.findComponentAt(10, 1); + var22.addKeyListener((java.awt.event.KeyListener)var24); + var24.repaint(100, (-1), (-1), 1); + java.awt.image.ColorModel var39 = var24.getColorModel(); + SpaceWar.SpacePanel var40 = new SpaceWar.SpacePanel(); + float var41 = var40.getAlignmentX(); + var40.setVisible(false); + boolean var44 = var40.isDoubleBuffered(); + var40.list(); + SpaceWar.SpacePanel var46 = new SpaceWar.SpacePanel(); + float var47 = var46.getAlignmentX(); + var46.setVisible(false); + boolean var50 = var46.isDoubleBuffered(); + java.awt.dnd.DropTarget var51 = var46.getDropTarget(); + var46.show(false); + java.awt.Rectangle var54 = var46.getVisibleRect(); + java.awt.image.BufferedImage var56 = var46.loadImg("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + boolean var57 = var40.isAncestorOf((java.awt.Component)var46); + javax.swing.InputVerifier var58 = var46.getInputVerifier(); + var12.putClientProperty((java.lang.Object)var24, (java.lang.Object)var46); + int var60 = var46.getComponentCount(); + java.awt.Component var63 = var46.locate(100, 24); + javax.swing.JPopupMenu var64 = var46.getComponentPopupMenu(); + // The following exception was thrown during execution. + // This behavior will recorded for regression testing. + try { + var0.setComponentZOrder((java.awt.Component)var46, 400); + fail("Expected exception of type java.lang.IllegalArgumentException"); + } catch (java.lang.IllegalArgumentException e) { + // Expected exception. + } + + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var4); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var9); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var28); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var29 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var32); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var39); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var41 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var44 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var47 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var50 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var51); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var54); + + // Regression assertion (captures the current behavior of the code) + assertNull(var56); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var57 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var58); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var60 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var63); + + // Regression assertion (captures the current behavior of the code) + assertNull(var64); + + } + + public void test435() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test435"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + java.awt.im.InputMethodRequests var3 = var0.getInputMethodRequests(); + var0.setDoubleBuffered(true); + var0.show(false); + var0.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", (-1), 24); + boolean var12 = var0.requestFocusInWindow(); + boolean var13 = var0.hasFocus(); + var0.enable(true); + java.util.Locale var16 = var0.getLocale(); + javax.swing.JComponent.setDefaultLocale(var16); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + } + + public void test436() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test436"); + + + SpaceWar.Player var0 = new SpaceWar.Player(); + int var1 = var0.getPower(); + var0.setLeft(true); + var0.increasePower(0); + boolean var6 = var0.isDead(); + int var7 = var0.getX(); + int var8 = var0.getPower(); + var0.setLife(500); + int var11 = var0.getLives(); + var0.increasePower(499); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 400); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == 500); + + } + + public void test437() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test437"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + java.awt.Dimension var4 = var0.getPreferredSize(); + boolean var5 = var0.getVerifyInputWhenFocusTarget(); + java.awt.Component var8 = var0.findComponentAt(10, 1); + boolean var9 = var0.isCursorSet(); + boolean var10 = var0.isFocusTraversalPolicyProvider(); + java.awt.peer.ComponentPeer var11 = var0.getPeer(); + var0.firePropertyChange("SpaceWar.SpacePanel[,-1,1,-1x10,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", 10.0f, 1.0f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var4); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var11); + + } + + public void test438() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test438"); + + + SpaceWar.Player var0 = new SpaceWar.Player(); + int var1 = var0.getPower(); + var0.setLeft(true); + var0.increasePower(0); + int var6 = var0.getR(); + var0.setUp(false); + int var9 = var0.getRequiredPower(); + int var10 = var0.getX(); + var0.setScore(100); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == 25); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 1); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 400); + + } + + public void test439() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test439"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + var0.setRequestFocusEnabled(false); + var0.reshape(100, 0, 100, 0); + javax.swing.event.AncestorListener[] var10 = var0.getAncestorListeners(); + boolean var13 = var0.inside(24, 2); + int var14 = var0.getComponentCount(); + var0.transferFocusBackward(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == 0); + + } + + public void test440() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test440"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + SpaceWar.SpacePanel var4 = new SpaceWar.SpacePanel(); + java.awt.Color var5 = var4.getBackground(); + var0.setForeground(var5); + SpaceWar.SpacePanel var7 = new SpaceWar.SpacePanel(); + float var8 = var7.getAlignmentX(); + var7.setVisible(false); + boolean var11 = var7.isDoubleBuffered(); + java.awt.dnd.DropTarget var12 = var7.getDropTarget(); + var7.show(false); + java.awt.Rectangle var15 = var7.getVisibleRect(); + var0.repaint(var15); + java.awt.FocusTraversalPolicy var17 = var0.getFocusTraversalPolicy(); + java.awt.im.InputMethodRequests var18 = var0.getInputMethodRequests(); + var0.layout(); + java.awt.Container var20 = var0.getFocusCycleRootAncestor(); + var0.setFocusTraversalPolicyProvider(true); + var0.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=1.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", (short)1, (short)1); + var0.setAlignmentY(0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertNull(var20); + + } + + public void test441() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test441"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + boolean var2 = var0.hasFocus(); + boolean var3 = var0.isPreferredSizeSet(); + var0.firePropertyChange("", (short)1, (short)0); + boolean var8 = var0.isMaximumSizeSet(); + java.awt.image.ColorModel var9 = var0.getColorModel(); + var0.enableInputMethods(true); + java.awt.Container var12 = var0.getParent(); + SpaceWar.SpacePanel var13 = new SpaceWar.SpacePanel(); + java.awt.Color var14 = var13.getBackground(); + var13.repaint(); + java.awt.im.InputMethodRequests var16 = var13.getInputMethodRequests(); + int var17 = var13.countComponents(); + java.awt.event.ComponentListener[] var18 = var13.getComponentListeners(); + var13.removeNotify(); + javax.swing.InputMap var20 = var13.getInputMap(); + int var21 = var13.getDebugGraphicsOptions(); + boolean var22 = var13.isFocusable(); + java.lang.String var23 = var13.getUIClassID(); + boolean var24 = var13.isPaintingTile(); + javax.swing.plaf.PanelUI var25 = var13.getUI(); + var0.setUI(var25); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var2 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var9); + + // Regression assertion (captures the current behavior of the code) + assertNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var22 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var23 + "' != '" + "PanelUI"+ "'", var23.equals("PanelUI")); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var24 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var25); + + } + + public void test442() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test442"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.reshape((-1), 1, (-1), 10); + var0.disable(); + java.awt.LayoutManager var11 = var0.getLayout(); + boolean var14 = var0.contains((-1), 0); + SpaceWar.SpacePanel var15 = new SpaceWar.SpacePanel(); + float var16 = var15.getAlignmentX(); + var15.setVisible(false); + var15.nextFocus(); + var15.updateUI(); + var15.enableInputMethods(true); + var15.setSize((-1), 1); + java.awt.Component var26 = var0.add((java.awt.Component)var15); + var15.paintImmediately(100, 25, 2, 2); + SpaceWar.SpacePanel var32 = new SpaceWar.SpacePanel(); + var32.setName(""); + java.awt.Toolkit var35 = var32.getToolkit(); + var32.setEnabled(false); + var32.removeNotify(); + boolean var39 = var32.isDisplayable(); + SpaceWar.SpacePanel var40 = new SpaceWar.SpacePanel(); + java.awt.Color var41 = var40.getBackground(); + var40.repaint(); + var40.setRequestFocusEnabled(false); + var40.reshape(100, 0, 100, 0); + var40.requestFocus(); + java.awt.Rectangle var51 = var40.getVisibleRect(); + java.awt.Rectangle var52 = var40.getBounds(); + java.awt.im.InputMethodRequests var53 = var40.getInputMethodRequests(); + boolean var54 = var40.requestFocusInWindow(); + java.awt.Point var56 = var40.getMousePosition(false); + var40.setDebugGraphicsOptions(1); + java.awt.Graphics var59 = var40.getGraphics(); + var32.paintAll(var59); + var15.paintComponents(var59); + boolean var62 = var15.isRequestFocusEnabled(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var35); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var39 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var41); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var51); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var52); + + // Regression assertion (captures the current behavior of the code) + assertNull(var53); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var54 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var56); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var59); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var62 == true); + + } + + public void test443() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test443"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.setInheritsPopupMenu(false); + boolean var6 = var0.isDoubleBuffered(); + boolean var7 = var0.isMinimumSizeSet(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var14 = new SpaceWar.SpacePanel(); + float var15 = var14.getAlignmentX(); + var14.setVisible(false); + java.awt.Dimension var18 = var14.getPreferredSize(); + var8.setMaximumSize(var18); + boolean var20 = var8.getVerifyInputWhenFocusTarget(); + javax.accessibility.AccessibleContext var21 = var8.getAccessibleContext(); + boolean var22 = var8.isDoubleBuffered(); + java.awt.Rectangle var23 = var8.getVisibleRect(); + var0.setBounds(var23); + SpaceWar.SpacePanel var25 = new SpaceWar.SpacePanel(); + float var26 = var25.getAlignmentX(); + var25.setVisible(false); + boolean var29 = var25.isDoubleBuffered(); + var25.list(); + SpaceWar.SpacePanel var31 = new SpaceWar.SpacePanel(); + float var32 = var31.getAlignmentX(); + var31.setVisible(false); + boolean var35 = var31.isDoubleBuffered(); + java.awt.dnd.DropTarget var36 = var31.getDropTarget(); + var31.show(false); + java.awt.Rectangle var39 = var31.getVisibleRect(); + java.awt.Rectangle var40 = var25.getBounds(var39); + javax.swing.JToolTip var41 = var25.createToolTip(); + var25.firePropertyChange("", false, false); + var25.setFocusTraversalKeysEnabled(false); + boolean var48 = var25.isValid(); + SpaceWar.SpacePanel var49 = new SpaceWar.SpacePanel(); + float var50 = var49.getAlignmentX(); + var49.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var55 = var49.getMouseListeners(); + int var56 = var49.getDebugGraphicsOptions(); + java.awt.Color var57 = var49.getBackground(); + var25.setForeground(var57); + var0.addKeyListener((java.awt.event.KeyListener)var25); + SpaceWar.SpacePanel var60 = new SpaceWar.SpacePanel(); + float var61 = var60.getAlignmentX(); + var60.setVisible(false); + java.awt.Dimension var64 = var60.getPreferredSize(); + java.awt.Toolkit var65 = var60.getToolkit(); + java.awt.Toolkit var66 = var60.getToolkit(); + var60.enable(false); + java.awt.Color var69 = var60.getForeground(); + var0.remove((java.awt.Component)var60); + SpaceWar.SpacePanel var71 = new SpaceWar.SpacePanel(); + float var72 = var71.getAlignmentX(); + boolean var73 = var71.hasFocus(); + boolean var74 = var71.isPreferredSizeSet(); + var71.firePropertyChange("", (short)1, (short)0); + boolean var79 = var71.isMaximumSizeSet(); + var71.list(); + java.awt.Rectangle var81 = var71.getBounds(); + java.awt.Font var82 = var71.getFont(); + var60.setFont(var82); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var21); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var22 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var23); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var29 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var32 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var35 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var36); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var39); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var40); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var41); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var48 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var50 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var55); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var56 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var57); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var61 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var64); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var65); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var66); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var69); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var72 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var73 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var74 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var79 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var81); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var82); + + } + + public void test444() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test444"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + var0.setName(""); + java.awt.Toolkit var3 = var0.getToolkit(); + var0.setEnabled(false); + var0.removeNotify(); + var0.hide(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var3); + + } + + public void test445() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test445"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + var0.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + java.awt.event.ContainerListener[] var5 = var0.getContainerListeners(); + var0.repaint(); + var0.repaint(10L); + java.awt.Dimension var9 = var0.getSize(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var9); + + } + + public void test446() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test446"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var1 = new SpaceWar.SpacePanel(); + java.awt.Color var2 = var1.getBackground(); + SpaceWar.SpacePanel var3 = new SpaceWar.SpacePanel(); + float var4 = var3.getAlignmentX(); + var3.setVisible(false); + var3.nextFocus(); + var3.updateUI(); + var3.enableInputMethods(true); + var0.add((java.awt.Component)var1, (java.lang.Object)true); + java.awt.Image var14 = var1.createImage(1, (-1)); + java.awt.event.MouseListener[] var15 = var1.getMouseListeners(); + var1.firePropertyChange("SpaceWar.SpacePanel[,-1,1,-1x10,invalid,hidden,disabled,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", 100.0d, 1.0d); + var1.setLocation(24, 3); + SpaceWar.SpacePanel var23 = new SpaceWar.SpacePanel(); + float var24 = var23.getAlignmentX(); + var23.setVisible(false); + boolean var27 = var23.isDoubleBuffered(); + java.awt.dnd.DropTarget var28 = var23.getDropTarget(); + var23.show(false); + boolean var31 = var23.isPaintingForPrint(); + SpaceWar.SpacePanel var32 = new SpaceWar.SpacePanel(); + float var33 = var32.getAlignmentX(); + var32.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var38 = var32.getMouseListeners(); + int var39 = var32.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var40 = var32.getInputMethodRequests(); + var23.addKeyListener((java.awt.event.KeyListener)var32); + SpaceWar.SpacePanel var42 = new SpaceWar.SpacePanel(); + float var43 = var42.getAlignmentX(); + var42.setVisible(false); + boolean var46 = var42.isDoubleBuffered(); + var42.list(); + float var48 = var42.getAlignmentY(); + boolean var49 = var32.isFocusCycleRoot((java.awt.Container)var42); + SpaceWar.SpacePanel var51 = new SpaceWar.SpacePanel(); + float var52 = var51.getAlignmentX(); + var51.setVisible(false); + var51.nextFocus(); + var51.updateUI(); + java.awt.Component var57 = var32.add("", (java.awt.Component)var51); + SpaceWar.SpacePanel var59 = new SpaceWar.SpacePanel(); + java.awt.Color var60 = var59.getBackground(); + var59.repaint(); + var59.setRequestFocusEnabled(false); + var59.reshape(100, 0, 100, 0); + var59.requestFocus(); + var59.firePropertyChange("hi!", '4', ' '); + java.awt.Point var74 = var59.getLocation(); + java.awt.Dimension var75 = var59.size(); + java.awt.Component var76 = var32.add("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", (java.awt.Component)var59); + java.awt.Point var77 = var76.getMousePosition(); + boolean var78 = var76.isValid(); + java.awt.Component var80 = var1.add(var76, 0); + var1.setDoubleBuffered(false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var2); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var24 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var28); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var31 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var33 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var38); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var39 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var40); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var43 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var46 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var48 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var49 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var52 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var57); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var60); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var74); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var75); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var76); + + // Regression assertion (captures the current behavior of the code) + assertNull(var77); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var78 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var80); + + } + + public void test447() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test447"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.updateUI(); + var0.enableInputMethods(true); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + boolean var10 = var8.hasFocus(); + java.awt.Insets var11 = var8.getInsets(); + java.awt.Insets var12 = var0.getInsets(var11); + java.awt.Rectangle var13 = var0.bounds(); + java.awt.Image var16 = var0.createImage(2, 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertNull(var16); + + } + + public void test448() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test448"); + + + SpaceWar.Player var0 = new SpaceWar.Player(); + int var1 = var0.getR(); + int var2 = var0.getLives(); + var0.setUp(false); + boolean var5 = var0.isDead(); + var0.setScore(499); + int var8 = var0.getPower(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 25); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var2 == 3); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 0); + + } + + public void test449() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test449"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + boolean var6 = var0.isFocusOwner(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + java.awt.Dimension var12 = var8.getPreferredSize(); + java.awt.Toolkit var13 = var8.getToolkit(); + SpaceWar.SpacePanel var14 = new SpaceWar.SpacePanel(); + var14.setName(""); + int var17 = var14.getX(); + SpaceWar.SpacePanel var18 = new SpaceWar.SpacePanel(); + float var19 = var18.getAlignmentX(); + var18.setVisible(false); + var18.nextFocus(); + SpaceWar.SpacePanel var23 = new SpaceWar.SpacePanel(); + float var24 = var23.getAlignmentX(); + var23.setVisible(false); + SpaceWar.SpacePanel var27 = new SpaceWar.SpacePanel(); + java.awt.Color var28 = var27.getBackground(); + var23.setForeground(var28); + var18.setBackground(var28); + var14.setBackground(var28); + var8.setForeground(var28); + var0.putClientProperty((java.lang.Object)(byte)100, (java.lang.Object)var28); + SpaceWar.SpacePanel var34 = new SpaceWar.SpacePanel(); + var34.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + javax.swing.plaf.PanelUI var39 = var34.getUI(); + var0.setUI(var39); + var0.repaint(100L, 25, 500, 1, 10); + boolean var47 = var0.isPaintingForPrint(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var24 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var28); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var39); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var47 == false); + + } + + public void test450() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test450"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + var0.setRequestFocusEnabled(false); + var0.setIgnoreRepaint(false); + boolean var7 = var0.isFocusable(); + java.awt.Component var10 = var0.locate(100, 0); + SpaceWar.SpacePanel var11 = new SpaceWar.SpacePanel(); + float var12 = var11.getAlignmentX(); + var11.setVisible(false); + SpaceWar.SpacePanel var15 = new SpaceWar.SpacePanel(); + java.awt.Color var16 = var15.getBackground(); + var11.setForeground(var16); + SpaceWar.SpacePanel var18 = new SpaceWar.SpacePanel(); + float var19 = var18.getAlignmentX(); + var18.setVisible(false); + boolean var22 = var18.isDoubleBuffered(); + java.awt.dnd.DropTarget var23 = var18.getDropTarget(); + var18.show(false); + java.awt.Rectangle var26 = var18.getVisibleRect(); + var11.repaint(var26); + java.awt.FocusTraversalPolicy var28 = var11.getFocusTraversalPolicy(); + java.awt.im.InputMethodRequests var29 = var11.getInputMethodRequests(); + var11.layout(); + java.awt.Point var31 = var11.getMousePosition(); + SpaceWar.SpacePanel var32 = new SpaceWar.SpacePanel(); + float var33 = var32.getAlignmentX(); + boolean var34 = var32.hasFocus(); + SpaceWar.SpacePanel var35 = new SpaceWar.SpacePanel(); + float var36 = var35.getAlignmentX(); + var35.setVisible(false); + boolean var39 = var35.isDoubleBuffered(); + java.awt.dnd.DropTarget var40 = var35.getDropTarget(); + boolean var41 = var35.isFocusCycleRoot(); + var35.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", 100, 0); + SpaceWar.SpacePanel var46 = new SpaceWar.SpacePanel(); + float var47 = var46.getAlignmentX(); + var46.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var52 = var46.getUI(); + var35.add((java.awt.Component)var46, (java.lang.Object)(short)0); + java.awt.Insets var55 = var46.getInsets(); + java.awt.Insets var56 = var32.getInsets(var55); + java.awt.Insets var57 = var11.getInsets(var55); + java.awt.Insets var58 = var0.getInsets(var55); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var22 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var23); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertNull(var28); + + // Regression assertion (captures the current behavior of the code) + assertNull(var29); + + // Regression assertion (captures the current behavior of the code) + assertNull(var31); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var33 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var34 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var36 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var39 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var40); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var41 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var47 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var52); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var55); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var56); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var57); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var58); + + } + + public void test451() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test451"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + var0.list(); + float var6 = var0.getAlignmentY(); + boolean var7 = var0.isOpaque(); + var0.resetKeyboardActions(); + boolean var9 = var0.isFocusTraversalPolicyProvider(); + java.awt.im.InputContext var10 = var0.getInputContext(); + var0.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", (short)100, (short)1); + var0.setFocusable(false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var10); + + } + + public void test452() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test452"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + float var7 = var6.getAlignmentX(); + var6.setVisible(false); + java.awt.Dimension var10 = var6.getPreferredSize(); + var0.setMaximumSize(var10); + boolean var12 = var0.getVerifyInputWhenFocusTarget(); + boolean var13 = var0.isFontSet(); + boolean var14 = var0.getIgnoreRepaint(); + java.awt.Component var17 = var0.locate(1, 25); + java.awt.Dimension var18 = var0.getMinimumSize(); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + float var20 = var19.getAlignmentX(); + var19.setVisible(false); + boolean var23 = var19.isDoubleBuffered(); + java.awt.dnd.DropTarget var24 = var19.getDropTarget(); + var19.show(false); + java.awt.Rectangle var27 = var19.getVisibleRect(); + boolean var28 = var19.isFocusTraversalPolicySet(); + SpaceWar.SpacePanel var29 = new SpaceWar.SpacePanel(); + float var30 = var29.getAlignmentX(); + var29.setVisible(false); + boolean var33 = var29.isDoubleBuffered(); + var29.enable(false); + boolean var36 = var29.getFocusTraversalKeysEnabled(); + SpaceWar.SpacePanel var37 = new SpaceWar.SpacePanel(); + float var38 = var37.getAlignmentX(); + var37.setVisible(false); + java.awt.Dimension var41 = var37.getPreferredSize(); + java.awt.Toolkit var42 = var37.getToolkit(); + boolean var43 = var37.isFocusable(); + javax.swing.KeyStroke[] var44 = var37.getRegisteredKeyStrokes(); + SpaceWar.SpacePanel var45 = new SpaceWar.SpacePanel(); + float var46 = var45.getAlignmentX(); + SpaceWar.SpacePanel var47 = new SpaceWar.SpacePanel(); + float var48 = var47.getAlignmentX(); + var47.setVisible(false); + java.awt.Dimension var51 = var47.getPreferredSize(); + boolean var52 = var47.getVerifyInputWhenFocusTarget(); + java.awt.Component var55 = var47.findComponentAt(10, 1); + var45.addKeyListener((java.awt.event.KeyListener)var47); + var47.repaint(100, (-1), (-1), 1); + boolean var62 = var37.isAncestorOf((java.awt.Component)var47); + var29.addKeyListener((java.awt.event.KeyListener)var47); + java.util.Locale var64 = var47.getLocale(); + var19.setLocale(var64); + javax.swing.JComponent.setDefaultLocale(var64); + var0.setLocale(var64); + javax.swing.JComponent.setDefaultLocale(var64); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var27); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var28 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var30 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var33 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var36 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var38 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var41); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var42); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var43 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var44); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var46 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var48 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var51); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var52 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var55); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var62 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var64); + + } + + public void test453() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test453"); + + + SpaceWar.Enemy var2 = new SpaceWar.Enemy(3, 3); + + } + + public void test454() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test454"); + + + SpaceWar.Player var0 = new SpaceWar.Player(); + int var1 = var0.getR(); + int var2 = var0.getLives(); + var0.setUp(false); + int var5 = var0.getRequiredPower(); + int var6 = var0.getPower(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 25); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var2 == 3); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == 1); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == 0); + + } + + public void test455() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test455"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.repaint(1L); + SpaceWar.SpacePanel var7 = new SpaceWar.SpacePanel(); + float var8 = var7.getAlignmentX(); + var7.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var13 = new SpaceWar.SpacePanel(); + float var14 = var13.getAlignmentX(); + var13.setVisible(false); + java.awt.Dimension var17 = var13.getPreferredSize(); + var7.setMaximumSize(var17); + var0.setPreferredSize(var17); + javax.swing.plaf.PanelUI var20 = var0.getUI(); + java.awt.Dimension var21 = var0.getMinimumSize(); + javax.swing.TransferHandler var22 = var0.getTransferHandler(); + boolean var23 = var0.hasFocus(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var21); + + // Regression assertion (captures the current behavior of the code) + assertNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == false); + + } + + public void test456() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test456"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + java.awt.im.InputMethodRequests var3 = var0.getInputMethodRequests(); + java.awt.GraphicsConfiguration var4 = var0.getGraphicsConfiguration(); + boolean var6 = var0.requestFocus(false); + javax.swing.JPopupMenu var7 = var0.getComponentPopupMenu(); + java.awt.Point var8 = var0.location(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + boolean var11 = var9.hasFocus(); + boolean var12 = var9.isPreferredSizeSet(); + var9.firePropertyChange("", (short)1, (short)0); + boolean var17 = var9.isMaximumSizeSet(); + java.awt.peer.ComponentPeer var18 = var9.getPeer(); + java.awt.ComponentOrientation var19 = var9.getComponentOrientation(); + SpaceWar.SpacePanel var20 = new SpaceWar.SpacePanel(); + float var21 = var20.getAlignmentX(); + var20.setVisible(false); + SpaceWar.SpacePanel var24 = new SpaceWar.SpacePanel(); + java.awt.Color var25 = var24.getBackground(); + var20.setForeground(var25); + SpaceWar.SpacePanel var27 = new SpaceWar.SpacePanel(); + float var28 = var27.getAlignmentX(); + var27.setVisible(false); + boolean var31 = var27.isDoubleBuffered(); + java.awt.dnd.DropTarget var32 = var27.getDropTarget(); + var27.show(false); + java.awt.Rectangle var35 = var27.getVisibleRect(); + var20.repaint(var35); + java.awt.FocusTraversalPolicy var37 = var20.getFocusTraversalPolicy(); + var20.resetKeyboardActions(); + SpaceWar.SpacePanel var39 = new SpaceWar.SpacePanel(); + float var40 = var39.getAlignmentX(); + var39.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var45 = var39.getMouseListeners(); + int var46 = var39.getDebugGraphicsOptions(); + SpaceWar.SpacePanel var47 = new SpaceWar.SpacePanel(); + float var48 = var47.getAlignmentX(); + var47.setVisible(false); + boolean var51 = var47.isDoubleBuffered(); + java.awt.dnd.DropTarget var52 = var47.getDropTarget(); + var47.show(false); + java.awt.Rectangle var55 = var47.getVisibleRect(); + var39.paintImmediately(var55); + var20.setBounds(var55); + java.awt.Rectangle var58 = var9.getBounds(var55); + java.awt.Rectangle var59 = var0.getBounds(var55); + boolean var60 = var0.isOptimizedDrawingEnabled(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertNull(var4); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var25); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var28 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var31 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var32); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var35); + + // Regression assertion (captures the current behavior of the code) + assertNull(var37); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var40 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var45); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var46 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var48 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var51 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var52); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var55); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var58); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var59); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var60 == true); + + } + + public void test457() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test457"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + var0.list(); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + float var7 = var6.getAlignmentX(); + var6.setVisible(false); + boolean var10 = var6.isDoubleBuffered(); + java.awt.dnd.DropTarget var11 = var6.getDropTarget(); + var6.show(false); + java.awt.Rectangle var14 = var6.getVisibleRect(); + java.awt.Rectangle var15 = var0.getBounds(var14); + javax.swing.JToolTip var16 = var0.createToolTip(); + var0.firePropertyChange("", false, false); + var0.setFocusTraversalKeysEnabled(false); + var0.setFocusTraversalKeysEnabled(true); + SpaceWar.SpacePanel var25 = new SpaceWar.SpacePanel(); + float var26 = var25.getAlignmentX(); + var25.setVisible(false); + boolean var29 = var25.isDoubleBuffered(); + java.awt.dnd.DropTarget var30 = var25.getDropTarget(); + var25.show(false); + java.awt.Rectangle var33 = var25.getVisibleRect(); + javax.swing.KeyStroke[] var34 = var25.getRegisteredKeyStrokes(); + java.awt.GraphicsConfiguration var35 = var25.getGraphicsConfiguration(); + // The following exception was thrown during execution. + // This behavior will recorded for regression testing. + try { + java.awt.Component var37 = var0.add((java.awt.Component)var25, 400); + fail("Expected exception of type java.lang.IllegalArgumentException"); + } catch (java.lang.IllegalArgumentException e) { + // Expected exception. + } + + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var29 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var30); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var33); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var34); + + // Regression assertion (captures the current behavior of the code) + assertNull(var35); + + } + + public void test458() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test458"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + var0.list(); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + float var7 = var6.getAlignmentX(); + var6.setVisible(false); + boolean var10 = var6.isDoubleBuffered(); + java.awt.dnd.DropTarget var11 = var6.getDropTarget(); + var6.show(false); + java.awt.Rectangle var14 = var6.getVisibleRect(); + java.awt.Rectangle var15 = var0.getBounds(var14); + javax.swing.JToolTip var16 = var0.createToolTip(); + java.awt.Dimension var17 = var0.minimumSize(); + SpaceWar.SpacePanel var18 = new SpaceWar.SpacePanel(); + float var19 = var18.getAlignmentX(); + var18.setVisible(false); + var18.setInheritsPopupMenu(false); + var18.setFocusTraversalPolicyProvider(true); + java.awt.Container var26 = var18.getFocusCycleRootAncestor(); + SpaceWar.SpacePanel var27 = new SpaceWar.SpacePanel(); + float var28 = var27.getAlignmentX(); + var27.removeNotify(); + SpaceWar.SpacePanel var30 = new SpaceWar.SpacePanel(); + float var31 = var30.getAlignmentX(); + var30.setVisible(false); + boolean var34 = var30.isDoubleBuffered(); + var30.list(); + float var36 = var30.getAlignmentY(); + java.awt.Insets var37 = var30.getInsets(); + java.awt.Insets var38 = var27.getInsets(var37); + java.awt.Insets var39 = var18.getInsets(var38); + java.awt.Insets var40 = var0.getInsets(var38); + var0.setFocusCycleRoot(true); + SpaceWar.SpacePanel var43 = new SpaceWar.SpacePanel(); + java.awt.Color var44 = var43.getBackground(); + var43.repaint(); + java.awt.im.InputMethodRequests var46 = var43.getInputMethodRequests(); + int var47 = var43.countComponents(); + java.awt.Dimension var48 = var43.getSize(); + SpaceWar.SpacePanel var49 = new SpaceWar.SpacePanel(); + var49.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + javax.swing.plaf.PanelUI var54 = var49.getUI(); + java.awt.Color var55 = var49.getBackground(); + var43.setBackground(var55); + var0.setForeground(var55); + var0.setAlignmentY(0.5f); + var0.nextFocus(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var28 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var31 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var34 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var36 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var37); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var38); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var39); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var40); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var44); + + // Regression assertion (captures the current behavior of the code) + assertNull(var46); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var47 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var48); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var54); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var55); + + } + + public void test459() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test459"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + boolean var2 = var0.hasFocus(); + java.awt.Insets var3 = var0.getInsets(); + java.awt.Rectangle var4 = var0.bounds(); + boolean var5 = var0.isMaximumSizeSet(); + SpaceWar.Player var6 = new SpaceWar.Player(); + boolean var7 = var6.isRecovering(); + var6.setUp(true); + var6.loseLife(); + var6.setRigth(false); + SpaceWar.SpacePanel var13 = new SpaceWar.SpacePanel(); + float var14 = var13.getAlignmentX(); + var13.setVisible(false); + java.awt.Dimension var17 = var13.getPreferredSize(); + java.awt.Toolkit var18 = var13.getToolkit(); + boolean var19 = var13.isFocusable(); + javax.swing.KeyStroke[] var20 = var13.getRegisteredKeyStrokes(); + java.awt.Component var23 = var13.getComponentAt(100, 100); + java.lang.Object var24 = var13.getTreeLock(); + boolean var27 = var13.inside(400, 0); + java.awt.event.MouseWheelListener[] var28 = var13.getMouseWheelListeners(); + var13.enableInputMethods(true); + var0.putClientProperty((java.lang.Object)false, (java.lang.Object)true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var2 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var4); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertNull(var23); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var28); + + } + + public void test460() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test460"); + + + SpaceWar.Player var0 = new SpaceWar.Player(); + var0.increasePower(25); + int var3 = var0.getR(); + int var4 = var0.getScore(); + var0.loseLife(); + boolean var6 = var0.isRecovering(); + var0.setFiring(false); + int var9 = var0.getX(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == 25); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 400); + + } + + public void test461() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test461"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var1 = new SpaceWar.SpacePanel(); + java.awt.Color var2 = var1.getBackground(); + SpaceWar.SpacePanel var3 = new SpaceWar.SpacePanel(); + float var4 = var3.getAlignmentX(); + var3.setVisible(false); + var3.nextFocus(); + var3.updateUI(); + var3.enableInputMethods(true); + var0.add((java.awt.Component)var1, (java.lang.Object)true); + boolean var12 = var0.isMinimumSizeSet(); + java.awt.event.HierarchyListener[] var13 = var0.getHierarchyListeners(); + SpaceWar.SpacePanel var14 = new SpaceWar.SpacePanel(); + float var15 = var14.getAlignmentX(); + var14.setVisible(false); + SpaceWar.SpacePanel var18 = new SpaceWar.SpacePanel(); + java.awt.Color var19 = var18.getBackground(); + var14.setForeground(var19); + SpaceWar.SpacePanel var21 = new SpaceWar.SpacePanel(); + float var22 = var21.getAlignmentX(); + var21.setVisible(false); + boolean var25 = var21.isDoubleBuffered(); + java.awt.dnd.DropTarget var26 = var21.getDropTarget(); + var21.show(false); + java.awt.Rectangle var29 = var21.getVisibleRect(); + var14.repaint(var29); + java.awt.FocusTraversalPolicy var31 = var14.getFocusTraversalPolicy(); + java.awt.im.InputMethodRequests var32 = var14.getInputMethodRequests(); + var14.layout(); + boolean var34 = var14.isFocusTraversalPolicyProvider(); + java.lang.Object var35 = var0.getClientProperty((java.lang.Object)var34); + java.awt.Dimension var36 = var0.getSize(); + var0.removeNotify(); + java.awt.Cursor var38 = var0.getCursor(); + SpaceWar.SpacePanel var39 = new SpaceWar.SpacePanel(); + java.awt.Color var40 = var39.getBackground(); + boolean var43 = var39.inside(0, (-1)); + SpaceWar.SpacePanel var44 = new SpaceWar.SpacePanel(); + float var45 = var44.getAlignmentX(); + var44.setVisible(false); + SpaceWar.SpacePanel var48 = new SpaceWar.SpacePanel(); + java.awt.Color var49 = var48.getBackground(); + var44.setForeground(var49); + var39.setForeground(var49); + java.awt.image.VolatileImage var54 = var39.createVolatileImage(400, (-1)); + java.awt.LayoutManager var55 = var39.getLayout(); + var0.setLayout(var55); + java.awt.Color var57 = var0.getBackground(); + SpaceWar.SpacePanel var58 = new SpaceWar.SpacePanel(); + float var59 = var58.getAlignmentX(); + var58.setVisible(false); + boolean var62 = var58.isDoubleBuffered(); + java.awt.dnd.DropTarget var63 = var58.getDropTarget(); + var58.show(false); + java.awt.Rectangle var66 = var58.getVisibleRect(); + java.awt.image.BufferedImage var68 = var58.loadImg("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + java.awt.ComponentOrientation var69 = var58.getComponentOrientation(); + var58.show(false); + boolean var72 = var58.isOpaque(); + // The following exception was thrown during execution. + // This behavior will recorded for regression testing. + try { + var0.setComponentZOrder((java.awt.Component)var58, 500); + fail("Expected exception of type java.lang.IllegalArgumentException"); + } catch (java.lang.IllegalArgumentException e) { + // Expected exception. + } + + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var2); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var22 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var29); + + // Regression assertion (captures the current behavior of the code) + assertNull(var31); + + // Regression assertion (captures the current behavior of the code) + assertNull(var32); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var34 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var35); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var36); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var38); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var40); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var43 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var45 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var49); + + // Regression assertion (captures the current behavior of the code) + assertNull(var54); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var55); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var57); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var59 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var62 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var63); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var66); + + // Regression assertion (captures the current behavior of the code) + assertNull(var68); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var69); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var72 == true); + + } + + public void test462() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test462"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + SpaceWar.SpacePanel var4 = new SpaceWar.SpacePanel(); + java.awt.Color var5 = var4.getBackground(); + var0.setForeground(var5); + SpaceWar.SpacePanel var7 = new SpaceWar.SpacePanel(); + float var8 = var7.getAlignmentX(); + var7.setVisible(false); + boolean var11 = var7.isDoubleBuffered(); + java.awt.dnd.DropTarget var12 = var7.getDropTarget(); + var7.show(false); + java.awt.Rectangle var15 = var7.getVisibleRect(); + var0.repaint(var15); + java.awt.FocusTraversalPolicy var17 = var0.getFocusTraversalPolicy(); + java.awt.im.InputMethodRequests var18 = var0.getInputMethodRequests(); + var0.layout(); + java.awt.Point var20 = var0.getMousePosition(); + java.awt.Graphics var21 = var0.getGraphics(); + SpaceWar.SpacePanel var22 = new SpaceWar.SpacePanel(); + float var23 = var22.getAlignmentX(); + var22.setVisible(false); + var22.setInheritsPopupMenu(false); + var22.setFocusTraversalPolicyProvider(true); + SpaceWar.SpacePanel var30 = new SpaceWar.SpacePanel(); + float var31 = var30.getAlignmentX(); + var30.setVisible(false); + boolean var34 = var30.isDoubleBuffered(); + var30.list(); + SpaceWar.SpacePanel var36 = new SpaceWar.SpacePanel(); + float var37 = var36.getAlignmentX(); + var36.setVisible(false); + boolean var40 = var36.isDoubleBuffered(); + java.awt.dnd.DropTarget var41 = var36.getDropTarget(); + var36.show(false); + java.awt.Rectangle var44 = var36.getVisibleRect(); + java.awt.Rectangle var45 = var30.getBounds(var44); + javax.swing.JToolTip var46 = var30.createToolTip(); + var22.removeKeyListener((java.awt.event.KeyListener)var30); + var0.setComponentZOrder((java.awt.Component)var22, 0); + var0.repaint(); + javax.swing.ActionMap var51 = var0.getActionMap(); + java.awt.Color var52 = var0.getBackground(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertNull(var21); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var31 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var34 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var40 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var41); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var44); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var45); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var46); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var51); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var52); + + } + + public void test463() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test463"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.setInheritsPopupMenu(false); + var0.setFocusTraversalPolicyProvider(true); + boolean var10 = var0.inside(25, 3); + SpaceWar.SpacePanel var11 = new SpaceWar.SpacePanel(); + float var12 = var11.getAlignmentX(); + var11.setVisible(false); + boolean var15 = var11.isDoubleBuffered(); + java.awt.dnd.DropTarget var16 = var11.getDropTarget(); + var11.show(false); + boolean var19 = var11.isPaintingForPrint(); + SpaceWar.SpacePanel var20 = new SpaceWar.SpacePanel(); + float var21 = var20.getAlignmentX(); + SpaceWar.SpacePanel var22 = new SpaceWar.SpacePanel(); + float var23 = var22.getAlignmentX(); + var22.setVisible(false); + java.awt.Dimension var26 = var22.getPreferredSize(); + boolean var27 = var22.getVerifyInputWhenFocusTarget(); + java.awt.Component var30 = var22.findComponentAt(10, 1); + var20.addKeyListener((java.awt.event.KeyListener)var22); + java.awt.Dimension var32 = var22.getMinimumSize(); + var11.setMinimumSize(var32); + var0.setPreferredSize(var32); + SpaceWar.SpacePanel var35 = new SpaceWar.SpacePanel(); + float var36 = var35.getAlignmentX(); + var35.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var41 = var35.getUI(); + java.awt.im.InputMethodRequests var42 = var35.getInputMethodRequests(); + SpaceWar.SpacePanel var43 = new SpaceWar.SpacePanel(); + float var44 = var43.getAlignmentX(); + var43.setVisible(false); + var43.nextFocus(); + var43.updateUI(); + var43.enableInputMethods(true); + var43.setSize((-1), 1); + SpaceWar.SpacePanel var54 = new SpaceWar.SpacePanel(); + var54.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var35.add((java.awt.Component)var43, (java.lang.Object)"SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + SpaceWar.SpacePanel var60 = new SpaceWar.SpacePanel(); + var60.setName(""); + java.awt.ComponentOrientation var63 = var60.getComponentOrientation(); + var35.applyComponentOrientation(var63); + var0.setComponentOrientation(var63); + var0.move(400, 499); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var30); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var32); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var36 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var41); + + // Regression assertion (captures the current behavior of the code) + assertNull(var42); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var44 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var63); + + } + + public void test464() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test464"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + var0.list(); + float var6 = var0.getAlignmentY(); + boolean var7 = var0.isOpaque(); + var0.resetKeyboardActions(); + boolean var9 = var0.isFocusTraversalPolicyProvider(); + java.awt.im.InputContext var10 = var0.getInputContext(); + var0.setFocusTraversalKeysEnabled(true); + boolean var13 = var0.isOptimizedDrawingEnabled(); + java.awt.Container var14 = var0.getTopLevelAncestor(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var14); + + } + + public void test465() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test465"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + var0.setName(""); + java.awt.Dimension var3 = var0.minimumSize(); + boolean var4 = var0.isDoubleBuffered(); + java.awt.event.HierarchyListener[] var5 = var0.getHierarchyListeners(); + var0.reshape(499, 2, 3, (-1)); + java.awt.event.ComponentListener[] var11 = var0.getComponentListeners(); + var0.list(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + } + + public void test466() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test466"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + boolean var2 = var0.hasFocus(); + SpaceWar.SpacePanel var3 = new SpaceWar.SpacePanel(); + float var4 = var3.getAlignmentX(); + var3.setVisible(false); + var3.nextFocus(); + var3.reshape((-1), 1, (-1), 10); + var3.disable(); + java.awt.LayoutManager var14 = var3.getLayout(); + var3.setVisible(false); + var0.remove((java.awt.Component)var3); + var3.repaint(); + var3.repaint(); + java.lang.Object var20 = var3.getTreeLock(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var2 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + } + + public void test467() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test467"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + var0.enable(false); + boolean var7 = var0.getFocusTraversalKeysEnabled(); + var0.setToolTipText("PanelUI"); + SpaceWar.SpacePanel var10 = new SpaceWar.SpacePanel(); + float var11 = var10.getAlignmentX(); + var10.setVisible(false); + boolean var14 = var10.isDoubleBuffered(); + java.awt.dnd.DropTarget var15 = var10.getDropTarget(); + var10.show(false); + boolean var18 = var10.isPaintingForPrint(); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + float var20 = var19.getAlignmentX(); + var19.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var25 = var19.getMouseListeners(); + int var26 = var19.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var27 = var19.getInputMethodRequests(); + var10.addKeyListener((java.awt.event.KeyListener)var19); + SpaceWar.SpacePanel var29 = new SpaceWar.SpacePanel(); + float var30 = var29.getAlignmentX(); + var29.setVisible(false); + boolean var33 = var29.isDoubleBuffered(); + var29.list(); + float var35 = var29.getAlignmentY(); + boolean var36 = var19.isFocusCycleRoot((java.awt.Container)var29); + var29.firePropertyChange("", 1L, 1L); + var29.setVerifyInputWhenFocusTarget(true); + SpaceWar.SpacePanel var43 = new SpaceWar.SpacePanel(); + var43.setName(""); + java.awt.Dimension var46 = var43.minimumSize(); + boolean var47 = var43.isDoubleBuffered(); + SpaceWar.SpacePanel var48 = new SpaceWar.SpacePanel(); + float var49 = var48.getAlignmentX(); + SpaceWar.SpacePanel var50 = new SpaceWar.SpacePanel(); + float var51 = var50.getAlignmentX(); + var50.setVisible(false); + java.awt.Dimension var54 = var50.getPreferredSize(); + boolean var55 = var50.getVerifyInputWhenFocusTarget(); + java.awt.Component var58 = var50.findComponentAt(10, 1); + var48.addKeyListener((java.awt.event.KeyListener)var50); + var50.repaint(100, (-1), (-1), 1); + SpaceWar.SpacePanel var65 = new SpaceWar.SpacePanel(); + java.awt.Color var66 = var65.getBackground(); + var65.repaint(); + java.awt.im.InputMethodRequests var68 = var65.getInputMethodRequests(); + java.awt.GraphicsConfiguration var69 = var65.getGraphicsConfiguration(); + var50.remove((java.awt.Component)var65); + java.awt.Font var71 = var65.getFont(); + java.awt.FontMetrics var72 = var43.getFontMetrics(var71); + java.awt.FontMetrics var73 = var29.getFontMetrics(var71); + var0.setFont(var71); + var0.setEnabled(true); + SpaceWar.SpacePanel var77 = new SpaceWar.SpacePanel(); + java.awt.Color var78 = var77.getBackground(); + var77.repaint(); + var77.setRequestFocusEnabled(false); + var77.setIgnoreRepaint(false); + java.lang.String var84 = var77.toString(); + java.awt.Color var85 = var77.getBackground(); + var0.setBackground(var85); + // The following exception was thrown during execution. + // This behavior will recorded for regression testing. + try { + javax.swing.InputMap var88 = var0.getInputMap(500); + fail("Expected exception of type java.lang.IllegalArgumentException"); + } catch (java.lang.IllegalArgumentException e) { + // Expected exception. + } + + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var25); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var27); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var30 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var33 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var35 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var36 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var46); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var47 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var49 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var51 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var54); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var55 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var58); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var66); + + // Regression assertion (captures the current behavior of the code) + assertNull(var68); + + // Regression assertion (captures the current behavior of the code) + assertNull(var69); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var71); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var72); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var73); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var78); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var84 + "' != '" + "SpaceWar.SpacePanel[,0,0,0var84,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"+ "'", var84.equals("SpaceWar.SpacePanel[,0,0,0var84,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]")); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var85); + + } + + public void test468() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test468"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.updateUI(); + java.util.Locale var6 = var0.getLocale(); + var0.paintImmediately(25, 100, 3, 0); + boolean var12 = var0.isCursorSet(); + boolean var13 = var0.isCursorSet(); + boolean var14 = var0.getFocusTraversalKeysEnabled(); + SpaceWar.SpacePanel var15 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var16 = new SpaceWar.SpacePanel(); + java.awt.Color var17 = var16.getBackground(); + SpaceWar.SpacePanel var18 = new SpaceWar.SpacePanel(); + float var19 = var18.getAlignmentX(); + var18.setVisible(false); + var18.nextFocus(); + var18.updateUI(); + var18.enableInputMethods(true); + var15.add((java.awt.Component)var16, (java.lang.Object)true); + boolean var27 = var15.isMinimumSizeSet(); + java.awt.event.HierarchyListener[] var28 = var15.getHierarchyListeners(); + SpaceWar.SpacePanel var29 = new SpaceWar.SpacePanel(); + float var30 = var29.getAlignmentX(); + var29.setVisible(false); + SpaceWar.SpacePanel var33 = new SpaceWar.SpacePanel(); + java.awt.Color var34 = var33.getBackground(); + var29.setForeground(var34); + SpaceWar.SpacePanel var36 = new SpaceWar.SpacePanel(); + float var37 = var36.getAlignmentX(); + var36.setVisible(false); + boolean var40 = var36.isDoubleBuffered(); + java.awt.dnd.DropTarget var41 = var36.getDropTarget(); + var36.show(false); + java.awt.Rectangle var44 = var36.getVisibleRect(); + var29.repaint(var44); + java.awt.FocusTraversalPolicy var46 = var29.getFocusTraversalPolicy(); + java.awt.im.InputMethodRequests var47 = var29.getInputMethodRequests(); + var29.layout(); + boolean var49 = var29.isFocusTraversalPolicyProvider(); + java.lang.Object var50 = var15.getClientProperty((java.lang.Object)var49); + java.awt.Dimension var51 = var15.getSize(); + boolean var52 = var15.isFocusTraversable(); + SpaceWar.SpacePanel var53 = new SpaceWar.SpacePanel(); + float var54 = var53.getAlignmentX(); + var53.setVisible(false); + var53.nextFocus(); + var53.updateUI(); + var53.enableInputMethods(true); + var53.resetKeyboardActions(); + var15.removeKeyListener((java.awt.event.KeyListener)var53); + SpaceWar.SpacePanel var63 = new SpaceWar.SpacePanel(); + float var64 = var63.getAlignmentX(); + var63.setVisible(false); + boolean var67 = var63.isDoubleBuffered(); + java.awt.dnd.DropTarget var68 = var63.getDropTarget(); + var63.show(false); + boolean var71 = var63.isPaintingForPrint(); + SpaceWar.SpacePanel var72 = new SpaceWar.SpacePanel(); + float var73 = var72.getAlignmentX(); + var72.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var78 = var72.getMouseListeners(); + int var79 = var72.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var80 = var72.getInputMethodRequests(); + var63.addKeyListener((java.awt.event.KeyListener)var72); + boolean var82 = var63.isDisplayable(); + java.awt.Dimension var83 = var63.getPreferredSize(); + var15.setSize(var83); + var0.setPreferredSize(var83); + SpaceWar.SpacePanel var86 = new SpaceWar.SpacePanel(); + float var87 = var86.getAlignmentX(); + var86.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var92 = var86.getMouseListeners(); + int var93 = var86.getDebugGraphicsOptions(); + var86.setFocusable(false); + boolean var96 = var0.isFocusCycleRoot((java.awt.Container)var86); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var28); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var30 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var34); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var40 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var41); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var44); + + // Regression assertion (captures the current behavior of the code) + assertNull(var46); + + // Regression assertion (captures the current behavior of the code) + assertNull(var47); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var49 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var50); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var51); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var52 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var54 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var64 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var67 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var68); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var71 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var73 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var78); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var79 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var80); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var82 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var83); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var87 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var92); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var93 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var96 == false); + + } + + public void test469() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test469"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.removeNotify(); + java.awt.Component.BaselineResizeBehavior var3 = var0.getBaselineResizeBehavior(); + boolean var4 = var0.isDoubleBuffered(); + var0.resize(500, 3); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + java.awt.Color var9 = var8.getBackground(); + var0.setForeground(var9); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var9); + + } + + public void test470() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test470"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.setInheritsPopupMenu(false); + var0.move(10, 10); + var0.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var0.removeAll(); + java.awt.Point var14 = var0.location(); + java.awt.Point var15 = var0.location(); + javax.swing.ActionMap var16 = var0.getActionMap(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + } + + public void test471() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test471"); + + + SpaceWar.Text var4 = new SpaceWar.Text(226.53068162065512d, 514.6637810615505d, 10L, "SpaceWar.SpacePanel[,-1,1,-1x10,invalid,hidden,disabled,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + boolean var5 = var4.update(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == false); + + } + + public void test472() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test472"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var6 = var0.getUI(); + java.awt.im.InputMethodRequests var7 = var0.getInputMethodRequests(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + var8.nextFocus(); + var8.updateUI(); + var8.enableInputMethods(true); + var8.setSize((-1), 1); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + var19.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var0.add((java.awt.Component)var8, (java.lang.Object)"SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + java.awt.ComponentOrientation var25 = var8.getComponentOrientation(); + boolean var26 = var8.isMaximumSizeSet(); + SpaceWar.SpacePanel var27 = new SpaceWar.SpacePanel(); + float var28 = var27.getAlignmentX(); + var27.setVisible(false); + boolean var31 = var27.isDoubleBuffered(); + java.awt.dnd.DropTarget var32 = var27.getDropTarget(); + var27.show(false); + boolean var35 = var27.isPaintingForPrint(); + SpaceWar.SpacePanel var36 = new SpaceWar.SpacePanel(); + float var37 = var36.getAlignmentX(); + var36.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var42 = var36.getMouseListeners(); + int var43 = var36.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var44 = var36.getInputMethodRequests(); + var27.addKeyListener((java.awt.event.KeyListener)var36); + SpaceWar.SpacePanel var46 = new SpaceWar.SpacePanel(); + float var47 = var46.getAlignmentX(); + var46.setVisible(false); + boolean var50 = var46.isDoubleBuffered(); + var46.list(); + float var52 = var46.getAlignmentY(); + boolean var53 = var36.isFocusCycleRoot((java.awt.Container)var46); + boolean var54 = var46.isEnabled(); + java.awt.Dimension var55 = var46.getMaximumSize(); + var8.setMinimumSize(var55); + var8.disable(); + int var58 = var8.getComponentCount(); + var8.setRequestFocusEnabled(true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var25); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var28 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var31 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var32); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var35 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var42); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var43 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var44); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var47 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var50 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var52 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var53 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var54 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var55); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var58 == 0); + + } + + public void test473() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test473"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + SpaceWar.SpacePanel var2 = new SpaceWar.SpacePanel(); + float var3 = var2.getAlignmentX(); + var2.setVisible(false); + java.awt.Dimension var6 = var2.getPreferredSize(); + boolean var7 = var2.getVerifyInputWhenFocusTarget(); + java.awt.Component var10 = var2.findComponentAt(10, 1); + var0.addKeyListener((java.awt.event.KeyListener)var2); + var2.repaint(100, (-1), (-1), 1); + java.awt.image.ColorModel var17 = var2.getColorModel(); + var2.setAlignmentX(10.0f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var17); + + } + + public void test474() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test474"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var1 = new SpaceWar.SpacePanel(); + java.awt.Color var2 = var1.getBackground(); + SpaceWar.SpacePanel var3 = new SpaceWar.SpacePanel(); + float var4 = var3.getAlignmentX(); + var3.setVisible(false); + var3.nextFocus(); + var3.updateUI(); + var3.enableInputMethods(true); + var0.add((java.awt.Component)var1, (java.lang.Object)true); + boolean var13 = var1.areFocusTraversalKeysSet(0); + boolean var14 = var1.isFocusable(); + java.awt.event.ComponentListener[] var15 = var1.getComponentListeners(); + java.awt.event.HierarchyListener[] var16 = var1.getHierarchyListeners(); + SpaceWar.SpacePanel var17 = new SpaceWar.SpacePanel(); + float var18 = var17.getAlignmentX(); + var17.setVisible(false); + var17.setInheritsPopupMenu(false); + var17.setFocusTraversalPolicyProvider(true); + SpaceWar.SpacePanel var25 = new SpaceWar.SpacePanel(); + float var26 = var25.getAlignmentX(); + var25.setVisible(false); + boolean var29 = var25.isDoubleBuffered(); + var25.list(); + SpaceWar.SpacePanel var31 = new SpaceWar.SpacePanel(); + float var32 = var31.getAlignmentX(); + var31.setVisible(false); + boolean var35 = var31.isDoubleBuffered(); + java.awt.dnd.DropTarget var36 = var31.getDropTarget(); + var31.show(false); + java.awt.Rectangle var39 = var31.getVisibleRect(); + java.awt.Rectangle var40 = var25.getBounds(var39); + javax.swing.JToolTip var41 = var25.createToolTip(); + var17.removeKeyListener((java.awt.event.KeyListener)var25); + java.awt.Cursor var43 = var25.getCursor(); + java.awt.image.BufferedImage var45 = var25.loadImg("hi!"); + SpaceWar.SpacePanel var46 = new SpaceWar.SpacePanel(); + float var47 = var46.getAlignmentX(); + var46.setVisible(false); + boolean var50 = var46.isDoubleBuffered(); + java.awt.dnd.DropTarget var51 = var46.getDropTarget(); + var46.show(false); + boolean var54 = var46.isPaintingForPrint(); + SpaceWar.SpacePanel var55 = new SpaceWar.SpacePanel(); + float var56 = var55.getAlignmentX(); + var55.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var61 = var55.getMouseListeners(); + int var62 = var55.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var63 = var55.getInputMethodRequests(); + var46.addKeyListener((java.awt.event.KeyListener)var55); + SpaceWar.SpacePanel var65 = new SpaceWar.SpacePanel(); + float var66 = var65.getAlignmentX(); + var65.setVisible(false); + boolean var69 = var65.isDoubleBuffered(); + var65.list(); + float var71 = var65.getAlignmentY(); + boolean var72 = var55.isFocusCycleRoot((java.awt.Container)var65); + boolean var73 = var65.isEnabled(); + java.awt.Dimension var74 = var65.getMaximumSize(); + var25.resize(var74); + var1.setMaximumSize(var74); + java.awt.Insets var77 = var1.insets(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var2); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var29 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var32 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var35 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var36); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var39); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var40); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var41); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var43); + + // Regression assertion (captures the current behavior of the code) + assertNull(var45); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var47 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var50 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var51); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var54 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var56 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var61); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var62 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var63); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var66 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var69 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var71 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var72 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var73 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var74); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var77); + + } + + public void test475() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test475"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + var0.list(); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + float var7 = var6.getAlignmentX(); + var6.setVisible(false); + boolean var10 = var6.isDoubleBuffered(); + java.awt.dnd.DropTarget var11 = var6.getDropTarget(); + var6.show(false); + java.awt.Rectangle var14 = var6.getVisibleRect(); + java.awt.image.BufferedImage var16 = var6.loadImg("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + boolean var17 = var0.isAncestorOf((java.awt.Component)var6); + javax.swing.InputVerifier var18 = var6.getInputVerifier(); + var6.disable(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var18); + + } + + public void test476() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test476"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + float var7 = var6.getAlignmentX(); + var6.setVisible(false); + SpaceWar.SpacePanel var10 = new SpaceWar.SpacePanel(); + java.awt.Color var11 = var10.getBackground(); + var6.setForeground(var11); + var0.setBackground(var11); + var0.grabFocus(); + SpaceWar.SpacePanel var15 = new SpaceWar.SpacePanel(); + float var16 = var15.getAlignmentX(); + var15.setVisible(false); + boolean var19 = var15.isDoubleBuffered(); + java.awt.dnd.DropTarget var20 = var15.getDropTarget(); + boolean var21 = var15.isFocusCycleRoot(); + SpaceWar.SpacePanel var22 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var23 = new SpaceWar.SpacePanel(); + java.awt.Color var24 = var23.getBackground(); + SpaceWar.SpacePanel var25 = new SpaceWar.SpacePanel(); + float var26 = var25.getAlignmentX(); + var25.setVisible(false); + var25.nextFocus(); + var25.updateUI(); + var25.enableInputMethods(true); + var22.add((java.awt.Component)var23, (java.lang.Object)true); + java.awt.Dimension var34 = var23.getPreferredSize(); + var15.setSize(var34); + var0.setMaximumSize(var34); + var0.enable(); + SpaceWar.SpacePanel var38 = new SpaceWar.SpacePanel(); + float var39 = var38.getAlignmentX(); + var38.setVisible(false); + var38.nextFocus(); + var38.reshape((-1), 1, (-1), 10); + var38.disable(); + java.awt.LayoutManager var49 = var38.getLayout(); + boolean var52 = var38.contains((-1), 0); + SpaceWar.SpacePanel var53 = new SpaceWar.SpacePanel(); + float var54 = var53.getAlignmentX(); + var53.setVisible(false); + var53.nextFocus(); + var53.updateUI(); + var53.enableInputMethods(true); + var53.setSize((-1), 1); + java.awt.Component var64 = var38.add((java.awt.Component)var53); + SpaceWar.SpacePanel var65 = new SpaceWar.SpacePanel(); + float var66 = var65.getAlignmentX(); + var65.setVisible(false); + var65.nextFocus(); + var65.updateUI(); + var65.enableInputMethods(true); + java.lang.String var73 = var65.toString(); + java.awt.FocusTraversalPolicy var74 = var65.getFocusTraversalPolicy(); + var53.removeKeyListener((java.awt.event.KeyListener)var65); + var0.addKeyListener((java.awt.event.KeyListener)var65); + java.awt.Dimension var77 = var0.getPreferredSize(); + var0.setBounds(0, 100, 25, 500); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var34); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var39 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var49); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var52 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var54 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var64); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var66 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var73 + "' != '" + "SpaceWar.SpacePanel[,0,0,0var73,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"+ "'", var73.equals("SpaceWar.SpacePanel[,0,0,0var73,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]")); + + // Regression assertion (captures the current behavior of the code) + assertNull(var74); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var77); + + } + + public void test477() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test477"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + boolean var2 = var0.hasFocus(); + boolean var3 = var0.isPreferredSizeSet(); + SpaceWar.SpacePanel var4 = new SpaceWar.SpacePanel(); + java.awt.Color var5 = var4.getBackground(); + var4.repaint(); + var4.setRequestFocusEnabled(false); + int var9 = var0.getComponentZOrder((java.awt.Component)var4); + int var10 = var0.getDebugGraphicsOptions(); + java.awt.Component.BaselineResizeBehavior var11 = var0.getBaselineResizeBehavior(); + java.awt.event.HierarchyBoundsListener[] var12 = var0.getHierarchyBoundsListeners(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var2 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == (-1)); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var12); + + } + + public void test478() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test478"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + var0.setName(""); + java.awt.Dimension var3 = var0.minimumSize(); + boolean var4 = var0.isDoubleBuffered(); + SpaceWar.SpacePanel var5 = new SpaceWar.SpacePanel(); + float var6 = var5.getAlignmentX(); + var5.setVisible(false); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + java.awt.Color var10 = var9.getBackground(); + var5.setForeground(var10); + SpaceWar.SpacePanel var12 = new SpaceWar.SpacePanel(); + float var13 = var12.getAlignmentX(); + var12.setVisible(false); + boolean var16 = var12.isDoubleBuffered(); + java.awt.dnd.DropTarget var17 = var12.getDropTarget(); + var12.show(false); + java.awt.Rectangle var20 = var12.getVisibleRect(); + var5.repaint(var20); + java.awt.FocusTraversalPolicy var22 = var5.getFocusTraversalPolicy(); + java.awt.im.InputMethodRequests var23 = var5.getInputMethodRequests(); + var5.layout(); + boolean var25 = var5.isFocusTraversalPolicyProvider(); + java.awt.Component var26 = var0.add((java.awt.Component)var5); + var0.setAutoscrolls(true); + boolean var29 = var0.isPreferredSizeSet(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertNull(var23); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var29 == true); + + } + + public void test479() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test479"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + boolean var2 = var0.hasFocus(); + java.beans.VetoableChangeListener[] var3 = var0.getVetoableChangeListeners(); + var0.paintImmediately(10, 0, (-1), 25); + boolean var9 = var0.getInheritsPopupMenu(); + var0.resize(500, 10); + SpaceWar.SpacePanel var13 = new SpaceWar.SpacePanel(); + float var14 = var13.getAlignmentX(); + var13.setVisible(false); + boolean var17 = var13.isDoubleBuffered(); + SpaceWar.SpacePanel var18 = new SpaceWar.SpacePanel(); + float var19 = var18.getAlignmentX(); + var18.setVisible(false); + var18.nextFocus(); + var18.reshape((-1), 1, (-1), 10); + var18.disable(); + boolean var29 = var18.isFocusable(); + int var30 = var18.getHeight(); + var13.setNextFocusableComponent((java.awt.Component)var18); + SpaceWar.SpacePanel var32 = new SpaceWar.SpacePanel(); + float var33 = var32.getAlignmentX(); + var32.setVisible(false); + var32.nextFocus(); + SpaceWar.SpacePanel var37 = new SpaceWar.SpacePanel(); + float var38 = var37.getAlignmentX(); + var37.setVisible(false); + SpaceWar.SpacePanel var41 = new SpaceWar.SpacePanel(); + java.awt.Color var42 = var41.getBackground(); + var37.setForeground(var42); + var32.setBackground(var42); + java.awt.Component var45 = var32.getNextFocusableComponent(); + float var46 = var32.getAlignmentY(); + java.awt.event.MouseListener[] var47 = var32.getMouseListeners(); + java.awt.Point var48 = var32.location(); + java.awt.Point var49 = var13.getLocation(var48); + var0.setLocation(var49); + var0.setSize(2, 3); + SpaceWar.Player var54 = new SpaceWar.Player(); + boolean var55 = var54.isRecovering(); + var54.setRigth(false); + int var58 = var54.getPower(); + boolean var59 = var54.isDead(); + SpaceWar.SpacePanel var60 = new SpaceWar.SpacePanel(); + java.awt.Color var61 = var60.getBackground(); + var60.repaint(); + java.awt.im.InputMethodRequests var63 = var60.getInputMethodRequests(); + var60.setDoubleBuffered(true); + var60.setInheritsPopupMenu(false); + boolean var68 = var60.isFocusTraversalPolicySet(); + var0.putClientProperty((java.lang.Object)var54, (java.lang.Object)var68); + SpaceWar.SpacePanel var70 = new SpaceWar.SpacePanel(); + float var71 = var70.getAlignmentX(); + var70.setVisible(false); + java.awt.Dimension var74 = var70.getPreferredSize(); + boolean var75 = var70.getVerifyInputWhenFocusTarget(); + java.awt.Component var78 = var70.findComponentAt(10, 1); + boolean var79 = var70.requestDefaultFocus(); + java.awt.Insets var80 = var70.getInsets(); + var70.setDoubleBuffered(false); + java.awt.Toolkit var83 = var70.getToolkit(); + java.awt.Dimension var84 = var70.getMinimumSize(); + java.awt.Dimension var85 = var0.getSize(var84); + java.beans.PropertyChangeListener[] var87 = var0.getPropertyChangeListeners("SpaceWar.SpacePanel[,10,10,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var2 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var29 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var30 == 10); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var33 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var38 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var42); + + // Regression assertion (captures the current behavior of the code) + assertNull(var45); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var46 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var47); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var48); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var49); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var55 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var58 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var59 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var61); + + // Regression assertion (captures the current behavior of the code) + assertNull(var63); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var68 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var71 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var74); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var75 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var78); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var79 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var80); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var83); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var84); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var85); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var87); + + } + + public void test480() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test480"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.repaint(1L); + SpaceWar.SpacePanel var7 = new SpaceWar.SpacePanel(); + float var8 = var7.getAlignmentX(); + var7.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var13 = new SpaceWar.SpacePanel(); + float var14 = var13.getAlignmentX(); + var13.setVisible(false); + java.awt.Dimension var17 = var13.getPreferredSize(); + var7.setMaximumSize(var17); + var0.setPreferredSize(var17); + javax.swing.plaf.PanelUI var20 = var0.getUI(); + SpaceWar.SpacePanel var21 = new SpaceWar.SpacePanel(); + float var22 = var21.getAlignmentX(); + var21.setVisible(false); + SpaceWar.SpacePanel var25 = new SpaceWar.SpacePanel(); + java.awt.Color var26 = var25.getBackground(); + var21.setForeground(var26); + SpaceWar.SpacePanel var28 = new SpaceWar.SpacePanel(); + float var29 = var28.getAlignmentX(); + var28.setVisible(false); + boolean var32 = var28.isDoubleBuffered(); + java.awt.dnd.DropTarget var33 = var28.getDropTarget(); + var28.show(false); + java.awt.Rectangle var36 = var28.getVisibleRect(); + var21.repaint(var36); + java.awt.FocusTraversalPolicy var38 = var21.getFocusTraversalPolicy(); + var21.resetKeyboardActions(); + SpaceWar.SpacePanel var40 = new SpaceWar.SpacePanel(); + float var41 = var40.getAlignmentX(); + var40.setVisible(false); + boolean var44 = var40.isDoubleBuffered(); + java.awt.dnd.DropTarget var45 = var40.getDropTarget(); + var40.show(false); + java.awt.Rectangle var48 = var40.getVisibleRect(); + var21.computeVisibleRect(var48); + javax.swing.ActionMap var50 = var21.getActionMap(); + var0.setActionMap(var50); + java.awt.Point var52 = var0.getMousePosition(); + boolean var55 = var0.contains(499, 24); + var0.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", (byte)1, (byte)100); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var22 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var29 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var32 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var33); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var36); + + // Regression assertion (captures the current behavior of the code) + assertNull(var38); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var41 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var44 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var45); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var48); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var50); + + // Regression assertion (captures the current behavior of the code) + assertNull(var52); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var55 == false); + + } + + public void test481() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test481"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.setInheritsPopupMenu(false); + boolean var6 = var0.isDoubleBuffered(); + var0.setAlignmentY(100.0f); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var15 = var9.getUI(); + java.awt.im.InputMethodRequests var16 = var9.getInputMethodRequests(); + SpaceWar.SpacePanel var17 = new SpaceWar.SpacePanel(); + float var18 = var17.getAlignmentX(); + var17.setVisible(false); + var17.nextFocus(); + var17.updateUI(); + var17.enableInputMethods(true); + var17.setSize((-1), 1); + SpaceWar.SpacePanel var28 = new SpaceWar.SpacePanel(); + var28.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var9.add((java.awt.Component)var17, (java.lang.Object)"SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + java.awt.event.KeyListener[] var34 = var9.getKeyListeners(); + var9.repaint(3, 1, 25, 0); + SpaceWar.SpacePanel var40 = new SpaceWar.SpacePanel(); + java.awt.Color var41 = var40.getBackground(); + boolean var44 = var40.inside(0, (-1)); + var40.transferFocusUpCycle(); + java.awt.Container var46 = var40.getParent(); + boolean var47 = var40.isMaximumSizeSet(); + SpaceWar.SpacePanel var48 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var49 = new SpaceWar.SpacePanel(); + java.awt.Color var50 = var49.getBackground(); + SpaceWar.SpacePanel var51 = new SpaceWar.SpacePanel(); + float var52 = var51.getAlignmentX(); + var51.setVisible(false); + var51.nextFocus(); + var51.updateUI(); + var51.enableInputMethods(true); + var48.add((java.awt.Component)var49, (java.lang.Object)true); + boolean var61 = var49.areFocusTraversalKeysSet(0); + SpaceWar.SpacePanel var62 = new SpaceWar.SpacePanel(); + float var63 = var62.getAlignmentX(); + var62.setVisible(false); + boolean var66 = var62.isDoubleBuffered(); + java.awt.dnd.DropTarget var67 = var62.getDropTarget(); + var62.show(false); + java.awt.Rectangle var70 = var62.getVisibleRect(); + var49.setBounds(var70); + var40.setBounds(var70); + java.awt.Rectangle var73 = var9.getBounds(var70); + var0.setBounds(var73); + java.lang.String var75 = var0.toString(); + boolean var76 = var0.hasFocus(); + var0.revalidate(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var34); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var41); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var44 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var46); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var47 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var50); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var52 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var61 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var63 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var66 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var67); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var70); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var73); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var75 + "' != '" + "SpaceWar.SpacePanel[,0,0,0var75,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=1.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"+ "'", var75.equals("SpaceWar.SpacePanel[,0,0,0var75,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=1.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]")); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var76 == false); + + } + + public void test482() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test482"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + var0.show(false); + java.awt.event.MouseWheelListener[] var8 = var0.getMouseWheelListeners(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.setVisible(false); + SpaceWar.SpacePanel var13 = new SpaceWar.SpacePanel(); + java.awt.Color var14 = var13.getBackground(); + var9.setForeground(var14); + SpaceWar.SpacePanel var16 = new SpaceWar.SpacePanel(); + float var17 = var16.getAlignmentX(); + var16.setVisible(false); + boolean var20 = var16.isDoubleBuffered(); + java.awt.dnd.DropTarget var21 = var16.getDropTarget(); + var16.show(false); + java.awt.Rectangle var24 = var16.getVisibleRect(); + var9.repaint(var24); + java.awt.FocusTraversalPolicy var26 = var9.getFocusTraversalPolicy(); + java.awt.im.InputMethodRequests var27 = var9.getInputMethodRequests(); + var9.layout(); + var9.setDebugGraphicsOptions(10); + SpaceWar.SpacePanel var31 = new SpaceWar.SpacePanel(); + float var32 = var31.getAlignmentX(); + var31.setVisible(false); + var31.nextFocus(); + var31.reshape((-1), 1, (-1), 10); + SpaceWar.SpacePanel var41 = new SpaceWar.SpacePanel(); + java.awt.Color var42 = var41.getBackground(); + var41.repaint(); + var41.setRequestFocusEnabled(false); + var41.reshape(100, 0, 100, 0); + java.awt.Component var51 = var31.add((java.awt.Component)var41); + SpaceWar.SpacePanel var52 = new SpaceWar.SpacePanel(); + var52.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + javax.swing.plaf.PanelUI var57 = var52.getUI(); + SpaceWar.SpacePanel var58 = new SpaceWar.SpacePanel(); + float var59 = var58.getAlignmentX(); + var58.setVisible(false); + var58.nextFocus(); + var58.repaint(1L); + SpaceWar.SpacePanel var65 = new SpaceWar.SpacePanel(); + float var66 = var65.getAlignmentX(); + var65.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var71 = new SpaceWar.SpacePanel(); + float var72 = var71.getAlignmentX(); + var71.setVisible(false); + java.awt.Dimension var75 = var71.getPreferredSize(); + var65.setMaximumSize(var75); + var58.setPreferredSize(var75); + var52.setMaximumSize(var75); + java.awt.Dimension var79 = var41.getSize(var75); + var9.setSize(var79); + var9.repaint(1L); + var9.setAlignmentX(100.0f); + SpaceWar.SpacePanel var85 = new SpaceWar.SpacePanel(); + float var86 = var85.getAlignmentX(); + var85.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var91 = var85.getMouseListeners(); + java.awt.Dimension var92 = var85.getPreferredSize(); + java.util.Locale var93 = var85.getLocale(); + java.awt.Font var94 = var85.getFont(); + java.awt.Color var95 = var85.getForeground(); + var9.setBackground(var95); + var0.setForeground(var95); + boolean var98 = var0.requestDefaultFocus(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var21); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertNull(var27); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var32 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var42); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var51); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var57); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var59 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var66 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var72 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var75); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var79); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var86 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var91); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var92); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var93); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var94); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var95); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var98 == false); + + } + + public void test483() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test483"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + java.awt.im.InputMethodRequests var3 = var0.getInputMethodRequests(); + var0.setDoubleBuffered(true); + var0.setInheritsPopupMenu(false); + var0.invalidate(); + var0.setRequestFocusEnabled(true); + SpaceWar.SpacePanel var11 = new SpaceWar.SpacePanel(); + float var12 = var11.getAlignmentX(); + var11.setVisible(false); + SpaceWar.SpacePanel var15 = new SpaceWar.SpacePanel(); + java.awt.Color var16 = var15.getBackground(); + var11.setForeground(var16); + SpaceWar.SpacePanel var18 = new SpaceWar.SpacePanel(); + float var19 = var18.getAlignmentX(); + var18.setVisible(false); + boolean var22 = var18.isDoubleBuffered(); + java.awt.dnd.DropTarget var23 = var18.getDropTarget(); + var18.show(false); + java.awt.Rectangle var26 = var18.getVisibleRect(); + var11.repaint(var26); + java.awt.FocusTraversalPolicy var28 = var11.getFocusTraversalPolicy(); + java.awt.im.InputMethodRequests var29 = var11.getInputMethodRequests(); + var11.layout(); + SpaceWar.SpacePanel var31 = new SpaceWar.SpacePanel(); + float var32 = var31.getAlignmentX(); + var31.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var37 = new SpaceWar.SpacePanel(); + float var38 = var37.getAlignmentX(); + var37.setVisible(false); + SpaceWar.SpacePanel var41 = new SpaceWar.SpacePanel(); + java.awt.Color var42 = var41.getBackground(); + var37.setForeground(var42); + var31.setBackground(var42); + var11.setForeground(var42); + int var46 = var11.getWidth(); + int var47 = var0.getComponentZOrder((java.awt.Component)var11); + boolean var48 = var0.isValidateRoot(); + // The following exception was thrown during execution. + // This behavior will recorded for regression testing. + try { + java.awt.Component var50 = var0.getComponent(0); + fail("Expected exception of type java.lang.ArrayIndexOutOfBoundsException"); + } catch (java.lang.ArrayIndexOutOfBoundsException e) { + // Expected exception. + } + + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var22 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var23); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertNull(var28); + + // Regression assertion (captures the current behavior of the code) + assertNull(var29); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var32 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var38 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var42); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var46 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var47 == (-1)); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var48 == false); + + } + + public void test484() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test484"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + boolean var6 = var0.isFocusCycleRoot(); + SpaceWar.SpacePanel var7 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + java.awt.Color var9 = var8.getBackground(); + SpaceWar.SpacePanel var10 = new SpaceWar.SpacePanel(); + float var11 = var10.getAlignmentX(); + var10.setVisible(false); + var10.nextFocus(); + var10.updateUI(); + var10.enableInputMethods(true); + var7.add((java.awt.Component)var8, (java.lang.Object)true); + java.awt.Dimension var19 = var8.getPreferredSize(); + var0.setSize(var19); + var0.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", (-1), 10); + SpaceWar.SpacePanel var25 = new SpaceWar.SpacePanel(); + float var26 = var25.getAlignmentX(); + var25.setVisible(false); + var25.nextFocus(); + var25.repaint(1L); + SpaceWar.SpacePanel var32 = new SpaceWar.SpacePanel(); + float var33 = var32.getAlignmentX(); + var32.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var38 = new SpaceWar.SpacePanel(); + float var39 = var38.getAlignmentX(); + var38.setVisible(false); + java.awt.Dimension var42 = var38.getPreferredSize(); + var32.setMaximumSize(var42); + var25.setPreferredSize(var42); + var0.setSize(var42); + javax.swing.plaf.PanelUI var46 = var0.getUI(); + var0.layout(); + boolean var48 = var0.isEnabled(); + java.awt.event.MouseWheelListener[] var49 = var0.getMouseWheelListeners(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var9); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var33 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var39 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var42); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var46); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var48 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var49); + + } + + public void test485() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test485"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + var0.setName(""); + int var3 = var0.getX(); + java.lang.String var4 = var0.getToolTipText(); + javax.accessibility.AccessibleContext var5 = var0.getAccessibleContext(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var4); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + } + + public void test486() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test486"); + + + SpaceWar.Player var0 = new SpaceWar.Player(); + int var1 = var0.getPower(); + int var2 = var0.getPowerLevel(); + int var3 = var0.getX(); + var0.setRigth(false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var2 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == 400); + + } + + public void test487() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test487"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + java.awt.Dimension var4 = var0.getPreferredSize(); + boolean var5 = var0.getVerifyInputWhenFocusTarget(); + java.awt.Component var8 = var0.findComponentAt(10, 1); + boolean var9 = var0.requestDefaultFocus(); + var0.setVerifyInputWhenFocusTarget(false); + boolean var12 = var0.isPaintingForPrint(); + boolean var13 = var0.getIgnoreRepaint(); + var0.show(false); + SpaceWar.SpacePanel var16 = new SpaceWar.SpacePanel(); + float var17 = var16.getAlignmentX(); + var16.setVisible(false); + var16.nextFocus(); + var16.repaint(1L); + SpaceWar.SpacePanel var23 = new SpaceWar.SpacePanel(); + float var24 = var23.getAlignmentX(); + var23.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var29 = new SpaceWar.SpacePanel(); + float var30 = var29.getAlignmentX(); + var29.setVisible(false); + java.awt.Dimension var33 = var29.getPreferredSize(); + var23.setMaximumSize(var33); + var16.setPreferredSize(var33); + javax.swing.plaf.PanelUI var36 = var16.getUI(); + SpaceWar.SpacePanel var37 = new SpaceWar.SpacePanel(); + float var38 = var37.getAlignmentX(); + var37.setVisible(false); + var37.nextFocus(); + var37.reshape((-1), 1, (-1), 10); + var37.disable(); + java.awt.LayoutManager var48 = var37.getLayout(); + java.awt.Container var49 = var37.getParent(); + java.lang.String var50 = var37.getUIClassID(); + SpaceWar.Enemy var53 = new SpaceWar.Enemy(0, 10); + var16.add((java.awt.Component)var37, (java.lang.Object)10); + SpaceWar.SpacePanel var55 = new SpaceWar.SpacePanel(); + float var56 = var55.getAlignmentX(); + var55.setVisible(false); + boolean var59 = var55.isDoubleBuffered(); + var55.list(); + SpaceWar.SpacePanel var61 = new SpaceWar.SpacePanel(); + float var62 = var61.getAlignmentX(); + var61.setVisible(false); + boolean var65 = var61.isDoubleBuffered(); + java.awt.dnd.DropTarget var66 = var61.getDropTarget(); + var61.show(false); + java.awt.Rectangle var69 = var61.getVisibleRect(); + java.awt.Rectangle var70 = var55.getBounds(var69); + javax.swing.JToolTip var71 = var55.createToolTip(); + java.awt.Dimension var72 = var55.minimumSize(); + boolean var74 = var55.requestFocus(false); + java.awt.Dimension var75 = var55.getMaximumSize(); + SpaceWar.SpacePanel var76 = new SpaceWar.SpacePanel(); + var76.setName(""); + var76.enable(true); + var76.enable(); + java.awt.Point var82 = var76.location(); + var76.repaint(0, 3, (-1), 1); + var76.setBounds(25, 100, 1, 0); + java.awt.Insets var93 = var76.getInsets(); + java.awt.Insets var94 = var55.getInsets(var93); + java.awt.Insets var95 = var16.getInsets(var93); + java.lang.Object var96 = var0.getClientProperty((java.lang.Object)var93); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var4); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var24 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var30 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var33); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var36); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var38 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var48); + + // Regression assertion (captures the current behavior of the code) + assertNull(var49); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var50 + "' != '" + "PanelUI"+ "'", var50.equals("PanelUI")); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var56 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var59 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var62 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var65 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var66); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var69); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var70); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var71); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var72); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var74 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var75); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var82); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var93); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var94); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var95); + + // Regression assertion (captures the current behavior of the code) + assertNull(var96); + + } + + public void test488() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test488"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.updateUI(); + var0.enableInputMethods(true); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + boolean var10 = var8.hasFocus(); + java.awt.Insets var11 = var8.getInsets(); + java.awt.Insets var12 = var0.getInsets(var11); + boolean var13 = var0.isManagingFocus(); + java.awt.Image var16 = var0.createImage(1, 10); + java.awt.Rectangle var17 = var0.bounds(); + var0.transferFocusBackward(); + var0.revalidate(); + boolean var20 = var0.isManagingFocus(); + var0.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=java.awt.Dimension[width=800,height=600],minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", 10.0f, 0.5f); + SpaceWar.SpacePanel var25 = new SpaceWar.SpacePanel(); + var25.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + javax.swing.plaf.PanelUI var30 = var25.getUI(); + java.awt.Color var31 = var25.getBackground(); + var25.removeAll(); + int var33 = var25.getHeight(); + SpaceWar.SpacePanel var34 = new SpaceWar.SpacePanel(); + float var35 = var34.getAlignmentX(); + var34.removeNotify(); + SpaceWar.SpacePanel var37 = new SpaceWar.SpacePanel(); + float var38 = var37.getAlignmentX(); + var37.setVisible(false); + boolean var41 = var37.isDoubleBuffered(); + var37.list(); + float var43 = var37.getAlignmentY(); + java.awt.Insets var44 = var37.getInsets(); + java.awt.Insets var45 = var34.getInsets(var44); + boolean var46 = var34.isDoubleBuffered(); + java.awt.Component var47 = var25.add((java.awt.Component)var34); + // The following exception was thrown during execution. + // This behavior will recorded for regression testing. + try { + var0.setComponentZOrder((java.awt.Component)var34, 24); + fail("Expected exception of type java.lang.IllegalArgumentException"); + } catch (java.lang.IllegalArgumentException e) { + // Expected exception. + } + + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var30); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var31); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var33 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var35 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var38 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var41 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var43 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var44); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var45); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var46 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var47); + + } + + public void test489() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test489"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + SpaceWar.SpacePanel var2 = new SpaceWar.SpacePanel(); + float var3 = var2.getAlignmentX(); + var2.setVisible(false); + java.awt.Dimension var6 = var2.getPreferredSize(); + boolean var7 = var2.getVerifyInputWhenFocusTarget(); + java.awt.Component var10 = var2.findComponentAt(10, 1); + var0.addKeyListener((java.awt.event.KeyListener)var2); + SpaceWar.SpacePanel var12 = new SpaceWar.SpacePanel(); + float var13 = var12.getAlignmentX(); + SpaceWar.SpacePanel var14 = new SpaceWar.SpacePanel(); + float var15 = var14.getAlignmentX(); + var14.setVisible(false); + java.awt.Dimension var18 = var14.getPreferredSize(); + boolean var19 = var14.getVerifyInputWhenFocusTarget(); + java.awt.Component var22 = var14.findComponentAt(10, 1); + var12.addKeyListener((java.awt.event.KeyListener)var14); + var14.repaint(100, (-1), (-1), 1); + java.awt.image.ColorModel var29 = var14.getColorModel(); + SpaceWar.SpacePanel var30 = new SpaceWar.SpacePanel(); + float var31 = var30.getAlignmentX(); + var30.setVisible(false); + boolean var34 = var30.isDoubleBuffered(); + var30.list(); + SpaceWar.SpacePanel var36 = new SpaceWar.SpacePanel(); + float var37 = var36.getAlignmentX(); + var36.setVisible(false); + boolean var40 = var36.isDoubleBuffered(); + java.awt.dnd.DropTarget var41 = var36.getDropTarget(); + var36.show(false); + java.awt.Rectangle var44 = var36.getVisibleRect(); + java.awt.image.BufferedImage var46 = var36.loadImg("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + boolean var47 = var30.isAncestorOf((java.awt.Component)var36); + javax.swing.InputVerifier var48 = var36.getInputVerifier(); + var2.putClientProperty((java.lang.Object)var14, (java.lang.Object)var36); + var14.show(false); + java.awt.im.InputMethodRequests var52 = var14.getInputMethodRequests(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var29); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var31 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var34 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var40 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var41); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var44); + + // Regression assertion (captures the current behavior of the code) + assertNull(var46); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var47 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var48); + + // Regression assertion (captures the current behavior of the code) + assertNull(var52); + + } + + public void test490() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test490"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + var0.enable(false); + boolean var7 = var0.requestDefaultFocus(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var14 = var8.getMouseListeners(); + int var15 = var8.getDebugGraphicsOptions(); + SpaceWar.SpacePanel var16 = new SpaceWar.SpacePanel(); + float var17 = var16.getAlignmentX(); + var16.setVisible(false); + boolean var20 = var16.isDoubleBuffered(); + java.awt.dnd.DropTarget var21 = var16.getDropTarget(); + var16.show(false); + java.awt.Rectangle var24 = var16.getVisibleRect(); + var8.paintImmediately(var24); + var8.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", '#', '#'); + var8.list(); + java.awt.Rectangle var31 = var8.getBounds(); + var0.scrollRectToVisible(var31); + SpaceWar.Player var33 = new SpaceWar.Player(); + boolean var34 = var33.isRecovering(); + var33.setRigth(false); + int var37 = var33.getPowerLevel(); + var33.increasePower((-1)); + java.lang.Object var40 = var0.getClientProperty((java.lang.Object)(-1)); + boolean var41 = var0.hasFocus(); + var0.updateUI(); + SpaceWar.SpacePanel var43 = new SpaceWar.SpacePanel(); + float var44 = var43.getAlignmentX(); + var43.setVisible(false); + var43.nextFocus(); + var43.updateUI(); + var43.enableInputMethods(true); + var43.resetKeyboardActions(); + java.awt.event.HierarchyListener[] var52 = var43.getHierarchyListeners(); + var43.hide(); + var0.setNextFocusableComponent((java.awt.Component)var43); + SpaceWar.SpacePanel var55 = new SpaceWar.SpacePanel(); + float var56 = var55.getAlignmentX(); + var55.firePropertyChange("", (-1), 1); + boolean var61 = var55.isFocusOwner(); + SpaceWar.SpacePanel var63 = new SpaceWar.SpacePanel(); + float var64 = var63.getAlignmentX(); + var63.setVisible(false); + java.awt.Dimension var67 = var63.getPreferredSize(); + java.awt.Toolkit var68 = var63.getToolkit(); + SpaceWar.SpacePanel var69 = new SpaceWar.SpacePanel(); + var69.setName(""); + int var72 = var69.getX(); + SpaceWar.SpacePanel var73 = new SpaceWar.SpacePanel(); + float var74 = var73.getAlignmentX(); + var73.setVisible(false); + var73.nextFocus(); + SpaceWar.SpacePanel var78 = new SpaceWar.SpacePanel(); + float var79 = var78.getAlignmentX(); + var78.setVisible(false); + SpaceWar.SpacePanel var82 = new SpaceWar.SpacePanel(); + java.awt.Color var83 = var82.getBackground(); + var78.setForeground(var83); + var73.setBackground(var83); + var69.setBackground(var83); + var63.setForeground(var83); + var55.putClientProperty((java.lang.Object)(byte)100, (java.lang.Object)var83); + boolean var89 = var55.isEnabled(); + SpaceWar.SpacePanel var90 = new SpaceWar.SpacePanel(); + java.awt.Color var91 = var90.getBackground(); + var90.repaint(); + java.awt.im.InputMethodRequests var93 = var90.getInputMethodRequests(); + int var94 = var90.countComponents(); + java.awt.event.MouseMotionListener[] var95 = var90.getMouseMotionListeners(); + // The following exception was thrown during execution. + // This behavior will recorded for regression testing. + try { + var43.add((java.awt.Component)var55, (java.lang.Object)var95, 100); + fail("Expected exception of type java.lang.IllegalArgumentException"); + } catch (java.lang.IllegalArgumentException e) { + // Expected exception. + } + + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var21); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var31); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var34 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var40); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var41 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var44 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var52); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var56 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var61 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var64 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var67); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var68); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var72 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var74 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var79 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var83); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var89 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var91); + + // Regression assertion (captures the current behavior of the code) + assertNull(var93); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var94 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var95); + + } + + public void test491() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test491"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var6 = var0.getMouseListeners(); + java.awt.Dimension var7 = var0.getPreferredSize(); + int var10 = var0.getBaseline(1, 1); + java.awt.Cursor var11 = var0.getCursor(); + boolean var12 = var0.isFocusTraversable(); + java.awt.peer.ComponentPeer var13 = var0.getPeer(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == (-1)); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var13); + + } + + public void test492() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test492"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.reshape((-1), 1, (-1), 10); + var0.disable(); + boolean var11 = var0.isFocusable(); + SpaceWar.SpacePanel var12 = new SpaceWar.SpacePanel(); + float var13 = var12.getAlignmentX(); + var12.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var18 = var12.getUI(); + java.awt.im.InputMethodRequests var19 = var12.getInputMethodRequests(); + SpaceWar.SpacePanel var20 = new SpaceWar.SpacePanel(); + float var21 = var20.getAlignmentX(); + var20.setVisible(false); + var20.nextFocus(); + var20.updateUI(); + var20.enableInputMethods(true); + var20.setSize((-1), 1); + SpaceWar.SpacePanel var31 = new SpaceWar.SpacePanel(); + var31.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var12.add((java.awt.Component)var20, (java.lang.Object)"SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + java.awt.event.KeyListener[] var37 = var12.getKeyListeners(); + java.awt.FocusTraversalPolicy var38 = var12.getFocusTraversalPolicy(); + SpaceWar.SpacePanel var39 = new SpaceWar.SpacePanel(); + var39.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + java.awt.Toolkit var44 = var39.getToolkit(); + var0.add((java.awt.Component)var12, (java.lang.Object)var39); + SpaceWar.SpacePanel var46 = new SpaceWar.SpacePanel(); + float var47 = var46.getAlignmentX(); + SpaceWar.SpacePanel var48 = new SpaceWar.SpacePanel(); + float var49 = var48.getAlignmentX(); + var48.setVisible(false); + java.awt.Dimension var52 = var48.getPreferredSize(); + boolean var53 = var48.getVerifyInputWhenFocusTarget(); + java.awt.Component var56 = var48.findComponentAt(10, 1); + var46.addKeyListener((java.awt.event.KeyListener)var48); + java.awt.Dimension var58 = var48.getMinimumSize(); + var0.setSize(var58); + var0.setSize(24, 399); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var37); + + // Regression assertion (captures the current behavior of the code) + assertNull(var38); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var44); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var47 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var49 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var52); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var53 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var56); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var58); + + } + + public void test493() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test493"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.updateUI(); + var0.enableInputMethods(true); + java.awt.Point var8 = var0.location(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.setVisible(false); + var9.nextFocus(); + java.awt.Component var14 = var0.add((java.awt.Component)var9); + SpaceWar.SpacePanel var15 = new SpaceWar.SpacePanel(); + float var16 = var15.getAlignmentX(); + var15.setVisible(false); + var15.nextFocus(); + var15.updateUI(); + var15.enableInputMethods(true); + java.awt.Point var24 = var15.getMousePosition(false); + SpaceWar.SpacePanel var25 = new SpaceWar.SpacePanel(); + float var26 = var25.getAlignmentX(); + SpaceWar.SpacePanel var27 = new SpaceWar.SpacePanel(); + float var28 = var27.getAlignmentX(); + var27.setVisible(false); + java.awt.Dimension var31 = var27.getPreferredSize(); + boolean var32 = var27.getVerifyInputWhenFocusTarget(); + java.awt.Component var35 = var27.findComponentAt(10, 1); + var25.addKeyListener((java.awt.event.KeyListener)var27); + var27.repaint(100, (-1), (-1), 1); + SpaceWar.SpacePanel var42 = new SpaceWar.SpacePanel(); + java.awt.Color var43 = var42.getBackground(); + var42.repaint(); + java.awt.im.InputMethodRequests var45 = var42.getInputMethodRequests(); + java.awt.GraphicsConfiguration var46 = var42.getGraphicsConfiguration(); + var27.remove((java.awt.Component)var42); + java.awt.Font var48 = var42.getFont(); + var15.setFont(var48); + var9.setFont(var48); + java.lang.Object var51 = var9.getTreeLock(); + boolean var52 = var9.requestDefaultFocus(); + boolean var53 = var9.getFocusTraversalKeysEnabled(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var28 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var31); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var32 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var35); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var43); + + // Regression assertion (captures the current behavior of the code) + assertNull(var45); + + // Regression assertion (captures the current behavior of the code) + assertNull(var46); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var48); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var51); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var52 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var53 == true); + + } + + public void test494() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test494"); + + + SpaceWar.Player var0 = new SpaceWar.Player(); + var0.increasePower(25); + int var3 = var0.getR(); + int var4 = var0.getScore(); + int var5 = var0.getRequiredPower(); + int var6 = var0.getRequiredPower(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == 25); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == 2); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == 2); + + } + + public void test495() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test495"); + + + SpaceWar.Bullet var3 = new SpaceWar.Bullet(100.0d, 1, 3); + double var4 = var3.getX(); + double var5 = var3.getY(); + double var6 = var3.getY(); + double var7 = var3.getX(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 1.0d); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == 3.0d); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == 3.0d); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 1.0d); + + } + + public void test496() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test496"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + SpaceWar.SpacePanel var2 = new SpaceWar.SpacePanel(); + float var3 = var2.getAlignmentX(); + var2.setVisible(false); + java.awt.Dimension var6 = var2.getPreferredSize(); + boolean var7 = var2.getVerifyInputWhenFocusTarget(); + java.awt.Component var10 = var2.findComponentAt(10, 1); + var0.addKeyListener((java.awt.event.KeyListener)var2); + var2.repaint(100, (-1), (-1), 1); + java.awt.image.ColorModel var17 = var2.getColorModel(); + boolean var18 = var2.isFocusTraversalPolicyProvider(); + float var19 = var2.getAlignmentX(); + var2.enable(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == 0.5f); + + } + + public void test497() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test497"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + var0.setRequestFocusEnabled(false); + var0.reshape(100, 0, 100, 0); + var0.requestFocus(); + var0.firePropertyChange("hi!", '4', ' '); + java.awt.Point var15 = var0.getLocation(); + java.awt.Dimension var16 = var0.size(); + java.awt.Image var19 = var0.createImage((-1), (-1)); + java.awt.event.ComponentListener[] var20 = var0.getComponentListeners(); + SpaceWar.SpacePanel var21 = new SpaceWar.SpacePanel(); + var21.setName(""); + java.awt.ComponentOrientation var24 = var21.getComponentOrientation(); + var21.firePropertyChange("PanelUI", 1.0f, 0.5f); + int var29 = var0.getComponentZOrder((java.awt.Component)var21); + boolean var31 = var0.areFocusTraversalKeysSet(0); + java.awt.Component var34 = var0.findComponentAt(10, 25); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var29 == (-1)); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var31 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var34); + + } + + public void test498() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test498"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + java.awt.im.InputMethodRequests var3 = var0.getInputMethodRequests(); + int var4 = var0.countComponents(); + java.awt.event.ComponentListener[] var5 = var0.getComponentListeners(); + var0.removeNotify(); + java.awt.Component var9 = var0.getComponentAt(1, (-1)); + SpaceWar.SpacePanel var10 = new SpaceWar.SpacePanel(); + float var11 = var10.getAlignmentX(); + var10.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var16 = new SpaceWar.SpacePanel(); + float var17 = var16.getAlignmentX(); + var16.setVisible(false); + java.awt.Dimension var20 = var16.getPreferredSize(); + var10.setMaximumSize(var20); + boolean var22 = var10.getVerifyInputWhenFocusTarget(); + javax.accessibility.AccessibleContext var23 = var10.getAccessibleContext(); + boolean var24 = var10.isDoubleBuffered(); + java.awt.Rectangle var25 = var10.getVisibleRect(); + var0.setBounds(var25); + java.lang.String var27 = var0.toString(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertNull(var9); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var22 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var23); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var24 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var25); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var27 + "' != '" + "SpaceWar.SpacePanel[,0,0,0var27,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"+ "'", var27.equals("SpaceWar.SpacePanel[,0,0,0var27,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]")); + + } + + public void test499() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test499"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + var0.show(false); + java.awt.Rectangle var8 = var0.getVisibleRect(); + java.awt.Toolkit var9 = var0.getToolkit(); + SpaceWar.SpacePanel var10 = new SpaceWar.SpacePanel(); + float var11 = var10.getAlignmentX(); + var10.setVisible(false); + boolean var14 = var10.isDoubleBuffered(); + var10.list(); + SpaceWar.SpacePanel var16 = new SpaceWar.SpacePanel(); + float var17 = var16.getAlignmentX(); + var16.setVisible(false); + boolean var20 = var16.isDoubleBuffered(); + java.awt.dnd.DropTarget var21 = var16.getDropTarget(); + var16.show(false); + java.awt.Rectangle var24 = var16.getVisibleRect(); + java.awt.Rectangle var25 = var10.getBounds(var24); + javax.swing.JToolTip var26 = var10.createToolTip(); + var10.firePropertyChange("", false, false); + var10.validate(); + SpaceWar.SpacePanel var32 = new SpaceWar.SpacePanel(); + float var33 = var32.getAlignmentX(); + var32.setVisible(false); + var32.nextFocus(); + var32.updateUI(); + var32.enableInputMethods(true); + java.lang.String var40 = var32.toString(); + var0.putClientProperty((java.lang.Object)var10, (java.lang.Object)var32); + var10.firePropertyChange("SpaceWar.SpacePanel[,-1,100,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=265,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", (short)10, (short)1); + var10.repaint(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var9); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var21); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var25); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var33 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var40 + "' != '" + "SpaceWar.SpacePanel[,0,0,0var40,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"+ "'", var40.equals("SpaceWar.SpacePanel[,0,0,0var40,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]")); + + } + + public void test500() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest3.test500"); + + + SpaceWar.Player var0 = new SpaceWar.Player(); + boolean var1 = var0.isRecovering(); + var0.loseLife(); + int var3 = var0.getR(); + var0.setDown(true); + var0.setDown(true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == 25); + + } + +} diff --git a/test/randoop/RandoopTest4.java b/test/randoop/RandoopTest4.java new file mode 100644 index 0000000..44054f6 --- /dev/null +++ b/test/randoop/RandoopTest4.java @@ -0,0 +1,36210 @@ +package randoop; + +import junit.framework.*; + +public class RandoopTest4 extends TestCase { + + public static boolean debug = false; + + public void test1() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test1"); + + + SpaceWar.Player var0 = new SpaceWar.Player(); + boolean var1 = var0.isRecovering(); + var0.setRigth(false); + var0.setScore(0); + int var6 = var0.getScore(); + var0.setFiring(true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == 0); + + } + + public void test2() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test2"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + var0.list(); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + float var7 = var6.getAlignmentX(); + var6.setVisible(false); + boolean var10 = var6.isDoubleBuffered(); + java.awt.dnd.DropTarget var11 = var6.getDropTarget(); + var6.show(false); + java.awt.Rectangle var14 = var6.getVisibleRect(); + java.awt.image.BufferedImage var16 = var6.loadImg("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + boolean var17 = var0.isAncestorOf((java.awt.Component)var6); + javax.swing.InputVerifier var18 = var6.getInputVerifier(); + java.awt.ComponentOrientation var19 = var6.getComponentOrientation(); + var6.removeAll(); + SpaceWar.SpacePanel var21 = new SpaceWar.SpacePanel(); + float var22 = var21.getAlignmentX(); + var21.firePropertyChange("", (-1), 1); + java.awt.Rectangle var27 = var21.getVisibleRect(); + java.awt.event.MouseListener[] var28 = var21.getMouseListeners(); + SpaceWar.SpacePanel var29 = new SpaceWar.SpacePanel(); + float var30 = var29.getAlignmentX(); + var29.setVisible(false); + boolean var33 = var29.isDoubleBuffered(); + java.awt.dnd.DropTarget var34 = var29.getDropTarget(); + boolean var35 = var29.isFocusCycleRoot(); + SpaceWar.SpacePanel var36 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var37 = new SpaceWar.SpacePanel(); + java.awt.Color var38 = var37.getBackground(); + SpaceWar.SpacePanel var39 = new SpaceWar.SpacePanel(); + float var40 = var39.getAlignmentX(); + var39.setVisible(false); + var39.nextFocus(); + var39.updateUI(); + var39.enableInputMethods(true); + var36.add((java.awt.Component)var37, (java.lang.Object)true); + java.awt.Dimension var48 = var37.getPreferredSize(); + var29.setSize(var48); + var29.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", (-1), 10); + SpaceWar.SpacePanel var54 = new SpaceWar.SpacePanel(); + float var55 = var54.getAlignmentX(); + var54.setVisible(false); + var54.nextFocus(); + var54.repaint(1L); + SpaceWar.SpacePanel var61 = new SpaceWar.SpacePanel(); + float var62 = var61.getAlignmentX(); + var61.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var67 = new SpaceWar.SpacePanel(); + float var68 = var67.getAlignmentX(); + var67.setVisible(false); + java.awt.Dimension var71 = var67.getPreferredSize(); + var61.setMaximumSize(var71); + var54.setPreferredSize(var71); + var29.setSize(var71); + javax.swing.plaf.PanelUI var75 = var29.getUI(); + var21.setUI(var75); + boolean var77 = var21.isMinimumSizeSet(); + boolean var78 = var6.isFocusCycleRoot((java.awt.Container)var21); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var22 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var27); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var28); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var30 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var33 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var34); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var35 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var38); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var40 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var48); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var55 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var62 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var68 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var71); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var75); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var77 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var78 == false); + + } + + public void test3() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test3"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + var0.list(); + float var6 = var0.getAlignmentY(); + java.awt.event.ComponentListener[] var7 = var0.getComponentListeners(); + java.awt.Component var8 = var0.getNextFocusableComponent(); + boolean var9 = var0.isManagingFocus(); + javax.swing.border.Border var10 = var0.getBorder(); + java.lang.Object var11 = var0.getTreeLock(); + SpaceWar.SpacePanel var12 = new SpaceWar.SpacePanel(); + var12.setName(""); + var12.enable(true); + var12.enable(); + java.awt.Point var18 = var12.location(); + var12.repaint(0, 3, (-1), 1); + var12.setBounds(25, 100, 1, 0); + var0.addKeyListener((java.awt.event.KeyListener)var12); + boolean var30 = var0.isForegroundSet(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var30 == true); + + } + + public void test4() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test4"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var6 = var0.getUI(); + java.awt.im.InputMethodRequests var7 = var0.getInputMethodRequests(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + var8.nextFocus(); + var8.updateUI(); + var8.enableInputMethods(true); + var8.setSize((-1), 1); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + var19.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var0.add((java.awt.Component)var8, (java.lang.Object)"SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + var8.setAutoscrolls(true); + java.awt.Image var29 = var8.createImage(400, 400); + var8.enableInputMethods(true); + javax.swing.plaf.PanelUI var32 = var8.getUI(); + var8.setIgnoreRepaint(true); + SpaceWar.SpacePanel var35 = new SpaceWar.SpacePanel(); + float var36 = var35.getAlignmentX(); + var35.setVisible(false); + boolean var39 = var35.isDoubleBuffered(); + java.awt.dnd.DropTarget var40 = var35.getDropTarget(); + var35.show(false); + boolean var43 = var35.isPaintingForPrint(); + SpaceWar.SpacePanel var44 = new SpaceWar.SpacePanel(); + float var45 = var44.getAlignmentX(); + var44.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var50 = var44.getMouseListeners(); + int var51 = var44.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var52 = var44.getInputMethodRequests(); + var35.addKeyListener((java.awt.event.KeyListener)var44); + java.awt.Container var54 = var44.getFocusCycleRootAncestor(); + boolean var55 = var44.hasFocus(); + SpaceWar.SpacePanel var56 = new SpaceWar.SpacePanel(); + float var57 = var56.getAlignmentX(); + var56.setVisible(false); + var56.setInheritsPopupMenu(false); + boolean var62 = var56.isDoubleBuffered(); + boolean var63 = var56.isMinimumSizeSet(); + SpaceWar.SpacePanel var64 = new SpaceWar.SpacePanel(); + float var65 = var64.getAlignmentX(); + var64.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var70 = new SpaceWar.SpacePanel(); + float var71 = var70.getAlignmentX(); + var70.setVisible(false); + java.awt.Dimension var74 = var70.getPreferredSize(); + var64.setMaximumSize(var74); + boolean var76 = var64.getVerifyInputWhenFocusTarget(); + javax.accessibility.AccessibleContext var77 = var64.getAccessibleContext(); + boolean var78 = var64.isDoubleBuffered(); + java.awt.Rectangle var79 = var64.getVisibleRect(); + var56.setBounds(var79); + java.lang.Object var81 = var44.getClientProperty((java.lang.Object)var56); + java.awt.Cursor var82 = var44.getCursor(); + var8.setCursor(var82); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNull(var29); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var32); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var36 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var39 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var40); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var43 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var45 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var50); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var51 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var52); + + // Regression assertion (captures the current behavior of the code) + assertNull(var54); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var55 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var57 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var62 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var63 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var65 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var71 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var74); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var76 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var77); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var78 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var79); + + // Regression assertion (captures the current behavior of the code) + assertNull(var81); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var82); + + } + + public void test5() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test5"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.Graphics var5 = var0.getGraphics(); + boolean var6 = var0.isMinimumSizeSet(); + var0.hide(); + var0.setSize((-1), 499); + SpaceWar.SpacePanel var11 = new SpaceWar.SpacePanel(); + float var12 = var11.getAlignmentX(); + var11.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var17 = var11.getMouseListeners(); + int var18 = var11.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var19 = var11.getInputMethodRequests(); + java.lang.String var20 = var11.getToolTipText(); + boolean var21 = var11.isOpaque(); + var0.removeKeyListener((java.awt.event.KeyListener)var11); + boolean var23 = var0.isPreferredSizeSet(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == true); + + } + + public void test6() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test6"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + var0.enable(false); + boolean var7 = var0.getFocusTraversalKeysEnabled(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + java.awt.Dimension var12 = var8.getPreferredSize(); + java.awt.Toolkit var13 = var8.getToolkit(); + boolean var14 = var8.isFocusable(); + javax.swing.KeyStroke[] var15 = var8.getRegisteredKeyStrokes(); + SpaceWar.SpacePanel var16 = new SpaceWar.SpacePanel(); + float var17 = var16.getAlignmentX(); + SpaceWar.SpacePanel var18 = new SpaceWar.SpacePanel(); + float var19 = var18.getAlignmentX(); + var18.setVisible(false); + java.awt.Dimension var22 = var18.getPreferredSize(); + boolean var23 = var18.getVerifyInputWhenFocusTarget(); + java.awt.Component var26 = var18.findComponentAt(10, 1); + var16.addKeyListener((java.awt.event.KeyListener)var18); + var18.repaint(100, (-1), (-1), 1); + boolean var33 = var8.isAncestorOf((java.awt.Component)var18); + var0.addKeyListener((java.awt.event.KeyListener)var18); + SpaceWar.SpacePanel var35 = new SpaceWar.SpacePanel(); + float var36 = var35.getAlignmentX(); + var35.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var41 = var35.getUI(); + java.awt.im.InputMethodRequests var42 = var35.getInputMethodRequests(); + SpaceWar.SpacePanel var43 = new SpaceWar.SpacePanel(); + float var44 = var43.getAlignmentX(); + var43.setVisible(false); + var43.nextFocus(); + var43.updateUI(); + var43.enableInputMethods(true); + var43.setSize((-1), 1); + SpaceWar.SpacePanel var54 = new SpaceWar.SpacePanel(); + var54.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var35.add((java.awt.Component)var43, (java.lang.Object)"SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + SpaceWar.SpacePanel var60 = new SpaceWar.SpacePanel(); + float var61 = var60.getAlignmentX(); + var60.setVisible(false); + var60.setInheritsPopupMenu(false); + boolean var66 = var60.isDoubleBuffered(); + boolean var67 = var60.isMinimumSizeSet(); + SpaceWar.SpacePanel var68 = new SpaceWar.SpacePanel(); + float var69 = var68.getAlignmentX(); + var68.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var74 = new SpaceWar.SpacePanel(); + float var75 = var74.getAlignmentX(); + var74.setVisible(false); + java.awt.Dimension var78 = var74.getPreferredSize(); + var68.setMaximumSize(var78); + boolean var80 = var68.getVerifyInputWhenFocusTarget(); + javax.accessibility.AccessibleContext var81 = var68.getAccessibleContext(); + boolean var82 = var68.isDoubleBuffered(); + java.awt.Rectangle var83 = var68.getVisibleRect(); + var60.setBounds(var83); + java.awt.Rectangle var85 = var35.getBounds(var83); + var18.setBounds(var85); + SpaceWar.SpacePanel var87 = new SpaceWar.SpacePanel(); + java.awt.Color var88 = var87.getBackground(); + var87.repaint(); + var87.setRequestFocusEnabled(false); + var87.setIgnoreRepaint(false); + java.lang.String var94 = var87.toString(); + java.awt.Color var95 = var87.getBackground(); + javax.swing.InputMap var96 = var87.getInputMap(); + var18.addKeyListener((java.awt.event.KeyListener)var87); + var87.enableInputMethods(true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var33 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var36 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var41); + + // Regression assertion (captures the current behavior of the code) + assertNull(var42); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var44 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var61 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var66 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var67 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var69 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var75 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var78); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var80 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var81); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var82 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var83); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var85); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var88); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var94 + "' != '" + "SpaceWar.SpacePanel[,0,0,0var94,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"+ "'", var94.equals("SpaceWar.SpacePanel[,0,0,0var94,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]")); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var95); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var96); + + } + + public void test7() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test7"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + SpaceWar.SpacePanel var4 = new SpaceWar.SpacePanel(); + java.awt.Color var5 = var4.getBackground(); + var0.setForeground(var5); + SpaceWar.SpacePanel var7 = new SpaceWar.SpacePanel(); + float var8 = var7.getAlignmentX(); + var7.setVisible(false); + boolean var11 = var7.isDoubleBuffered(); + java.awt.dnd.DropTarget var12 = var7.getDropTarget(); + var7.show(false); + java.awt.Rectangle var15 = var7.getVisibleRect(); + var0.repaint(var15); + java.awt.FocusTraversalPolicy var17 = var0.getFocusTraversalPolicy(); + java.awt.im.InputMethodRequests var18 = var0.getInputMethodRequests(); + var0.layout(); + java.awt.Point var20 = var0.getMousePosition(); + java.awt.Graphics var21 = var0.getGraphics(); + boolean var22 = var0.isManagingFocus(); + var0.transferFocusUpCycle(); + SpaceWar.SpacePanel var24 = new SpaceWar.SpacePanel(); + float var25 = var24.getAlignmentX(); + var24.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var30 = var24.getUI(); + java.awt.im.InputMethodRequests var31 = var24.getInputMethodRequests(); + SpaceWar.SpacePanel var32 = new SpaceWar.SpacePanel(); + float var33 = var32.getAlignmentX(); + var32.setVisible(false); + var32.nextFocus(); + var32.updateUI(); + var32.enableInputMethods(true); + var32.setSize((-1), 1); + SpaceWar.SpacePanel var43 = new SpaceWar.SpacePanel(); + var43.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var24.add((java.awt.Component)var32, (java.lang.Object)"SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + SpaceWar.SpacePanel var49 = new SpaceWar.SpacePanel(); + float var50 = var49.getAlignmentX(); + var49.setVisible(false); + var49.setInheritsPopupMenu(false); + boolean var55 = var49.isDoubleBuffered(); + boolean var56 = var49.isMinimumSizeSet(); + SpaceWar.SpacePanel var57 = new SpaceWar.SpacePanel(); + float var58 = var57.getAlignmentX(); + var57.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var63 = new SpaceWar.SpacePanel(); + float var64 = var63.getAlignmentX(); + var63.setVisible(false); + java.awt.Dimension var67 = var63.getPreferredSize(); + var57.setMaximumSize(var67); + boolean var69 = var57.getVerifyInputWhenFocusTarget(); + javax.accessibility.AccessibleContext var70 = var57.getAccessibleContext(); + boolean var71 = var57.isDoubleBuffered(); + java.awt.Rectangle var72 = var57.getVisibleRect(); + var49.setBounds(var72); + java.awt.Rectangle var74 = var24.getBounds(var72); + var0.computeVisibleRect(var72); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertNull(var21); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var22 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var30); + + // Regression assertion (captures the current behavior of the code) + assertNull(var31); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var33 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var50 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var55 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var56 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var58 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var64 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var67); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var69 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var70); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var71 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var72); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var74); + + } + + public void test8() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test8"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var6 = var0.getUI(); + java.awt.im.InputMethodRequests var7 = var0.getInputMethodRequests(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + var8.nextFocus(); + var8.updateUI(); + var8.enableInputMethods(true); + var8.setSize((-1), 1); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + var19.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var0.add((java.awt.Component)var8, (java.lang.Object)"SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + boolean var25 = var0.isCursorSet(); + var0.removeAll(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == false); + + } + + public void test9() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test9"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + var0.enable(false); + java.awt.Container var7 = var0.getTopLevelAncestor(); + javax.swing.InputMap var9 = var0.getInputMap(1); + SpaceWar.SpacePanel var10 = new SpaceWar.SpacePanel(); + float var11 = var10.getAlignmentX(); + var10.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var16 = var10.getUI(); + java.awt.im.InputMethodRequests var17 = var10.getInputMethodRequests(); + SpaceWar.SpacePanel var18 = new SpaceWar.SpacePanel(); + float var19 = var18.getAlignmentX(); + var18.setVisible(false); + var18.nextFocus(); + var18.updateUI(); + var18.enableInputMethods(true); + var18.setSize((-1), 1); + SpaceWar.SpacePanel var29 = new SpaceWar.SpacePanel(); + var29.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var10.add((java.awt.Component)var18, (java.lang.Object)"SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + SpaceWar.SpacePanel var35 = new SpaceWar.SpacePanel(); + float var36 = var35.getAlignmentX(); + var35.setVisible(false); + java.awt.Dimension var39 = var35.getPreferredSize(); + java.awt.Toolkit var40 = var35.getToolkit(); + java.awt.Toolkit var41 = var35.getToolkit(); + java.awt.Component var42 = var18.add((java.awt.Component)var35); + int var43 = var18.getY(); + var18.removeNotify(); + java.awt.event.KeyListener[] var45 = var18.getKeyListeners(); + boolean var46 = var18.isFocusCycleRoot(); + SpaceWar.SpacePanel var47 = new SpaceWar.SpacePanel(); + java.awt.Color var48 = var47.getBackground(); + boolean var51 = var47.inside(0, (-1)); + SpaceWar.SpacePanel var52 = new SpaceWar.SpacePanel(); + float var53 = var52.getAlignmentX(); + var52.setVisible(false); + SpaceWar.SpacePanel var56 = new SpaceWar.SpacePanel(); + java.awt.Color var57 = var56.getBackground(); + var52.setForeground(var57); + var47.setForeground(var57); + var0.add((java.awt.Component)var18, (java.lang.Object)var47, (-1)); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var9); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var36 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var39); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var40); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var41); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var42); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var43 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var45); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var46 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var48); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var51 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var53 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var57); + + } + + public void test10() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test10"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.reshape((-1), 1, (-1), 10); + var0.disable(); + java.awt.Component var13 = var0.findComponentAt(0, (-1)); + SpaceWar.SpacePanel var14 = new SpaceWar.SpacePanel(); + var14.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + javax.swing.plaf.PanelUI var19 = var14.getUI(); + SpaceWar.SpacePanel var20 = new SpaceWar.SpacePanel(); + float var21 = var20.getAlignmentX(); + var20.setVisible(false); + var20.nextFocus(); + var20.repaint(1L); + SpaceWar.SpacePanel var27 = new SpaceWar.SpacePanel(); + float var28 = var27.getAlignmentX(); + var27.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var33 = new SpaceWar.SpacePanel(); + float var34 = var33.getAlignmentX(); + var33.setVisible(false); + java.awt.Dimension var37 = var33.getPreferredSize(); + var27.setMaximumSize(var37); + var20.setPreferredSize(var37); + var14.setMaximumSize(var37); + var0.setSize(var37); + SpaceWar.SpacePanel var42 = new SpaceWar.SpacePanel(); + float var43 = var42.getAlignmentX(); + boolean var44 = var42.hasFocus(); + boolean var45 = var42.isPreferredSizeSet(); + SpaceWar.SpacePanel var46 = new SpaceWar.SpacePanel(); + java.awt.Color var47 = var46.getBackground(); + var46.repaint(); + var46.setRequestFocusEnabled(false); + int var51 = var42.getComponentZOrder((java.awt.Component)var46); + boolean var52 = var42.requestDefaultFocus(); + javax.swing.border.Border var53 = var42.getBorder(); + int var54 = var0.getComponentZOrder((java.awt.Component)var42); + javax.accessibility.AccessibleContext var55 = var42.getAccessibleContext(); + int var56 = var42.getY(); + java.awt.Rectangle var57 = var42.bounds(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var28 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var34 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var37); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var43 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var44 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var45 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var47); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var51 == (-1)); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var52 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var53); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var54 == (-1)); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var55); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var56 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var57); + + } + + public void test11() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test11"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.updateUI(); + var0.enableInputMethods(true); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + boolean var10 = var8.hasFocus(); + java.awt.Insets var11 = var8.getInsets(); + java.awt.Insets var12 = var0.getInsets(var11); + boolean var13 = var0.isManagingFocus(); + java.awt.Image var16 = var0.createImage(1, 10); + boolean var17 = var0.isOptimizedDrawingEnabled(); + java.lang.String var18 = var0.getToolTipText(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var18); + + } + + public void test12() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test12"); + + + SpaceWar.PowerUp var3 = new SpaceWar.PowerUp(1, 19.998476951563912d, 593.2940477488812d); + + } + + public void test13() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test13"); + + + SpaceWar.Explosion var4 = new SpaceWar.Explosion(100.0d, 514.6637810615505d, 25, 25); + boolean var5 = var4.update(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == true); + + } + + public void test14() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test14"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.setEnabled(false); + java.awt.Image var8 = var0.createImage(10, 100); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + java.awt.Color var10 = var9.getBackground(); + var0.setForeground(var10); + var0.setFocusTraversalPolicyProvider(true); + java.util.Set var15 = var0.getFocusTraversalKeys(2); + boolean var16 = var0.getFocusTraversalKeysEnabled(); + SpaceWar.SpacePanel var17 = new SpaceWar.SpacePanel(); + float var18 = var17.getAlignmentX(); + var17.setVisible(false); + var17.nextFocus(); + var17.reshape((-1), 1, (-1), 10); + var17.disable(); + java.awt.LayoutManager var28 = var17.getLayout(); + java.awt.Container var29 = var17.getParent(); + boolean var30 = var17.isPaintingForPrint(); + SpaceWar.SpacePanel var31 = new SpaceWar.SpacePanel(); + float var32 = var31.getAlignmentX(); + var31.setVisible(false); + var31.nextFocus(); + var31.reshape((-1), 1, (-1), 10); + SpaceWar.SpacePanel var41 = new SpaceWar.SpacePanel(); + java.awt.Color var42 = var41.getBackground(); + var41.repaint(); + var41.setRequestFocusEnabled(false); + var41.reshape(100, 0, 100, 0); + java.awt.Component var51 = var31.add((java.awt.Component)var41); + SpaceWar.SpacePanel var52 = new SpaceWar.SpacePanel(); + var52.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + javax.swing.plaf.PanelUI var57 = var52.getUI(); + SpaceWar.SpacePanel var58 = new SpaceWar.SpacePanel(); + float var59 = var58.getAlignmentX(); + var58.setVisible(false); + var58.nextFocus(); + var58.repaint(1L); + SpaceWar.SpacePanel var65 = new SpaceWar.SpacePanel(); + float var66 = var65.getAlignmentX(); + var65.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var71 = new SpaceWar.SpacePanel(); + float var72 = var71.getAlignmentX(); + var71.setVisible(false); + java.awt.Dimension var75 = var71.getPreferredSize(); + var65.setMaximumSize(var75); + var58.setPreferredSize(var75); + var52.setMaximumSize(var75); + java.awt.Dimension var79 = var41.getSize(var75); + var17.setSize(var79); + var0.setMinimumSize(var79); + java.awt.Point var82 = var0.getLocation(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var28); + + // Regression assertion (captures the current behavior of the code) + assertNull(var29); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var30 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var32 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var42); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var51); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var57); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var59 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var66 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var72 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var75); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var79); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var82); + + } + + public void test15() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test15"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + var0.show(false); + boolean var8 = var0.isPaintingForPrint(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var15 = var9.getMouseListeners(); + int var16 = var9.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var17 = var9.getInputMethodRequests(); + var0.addKeyListener((java.awt.event.KeyListener)var9); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + float var20 = var19.getAlignmentX(); + var19.setVisible(false); + boolean var23 = var19.isDoubleBuffered(); + var19.list(); + float var25 = var19.getAlignmentY(); + boolean var26 = var9.isFocusCycleRoot((java.awt.Container)var19); + javax.swing.JPopupMenu var27 = var19.getComponentPopupMenu(); + var19.move((-1), 100); + var19.validate(); + java.awt.Toolkit var32 = var19.getToolkit(); + SpaceWar.SpacePanel var33 = new SpaceWar.SpacePanel(); + float var34 = var33.getAlignmentX(); + var33.setVisible(false); + boolean var37 = var33.isDoubleBuffered(); + SpaceWar.SpacePanel var38 = new SpaceWar.SpacePanel(); + java.awt.Color var39 = var38.getBackground(); + var38.repaint(); + java.lang.Object var41 = var33.getClientProperty((java.lang.Object)var38); + var38.repaint(10, 1, 25, 0); + var19.removeKeyListener((java.awt.event.KeyListener)var38); + var38.grabFocus(); + var38.setOpaque(true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var27); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var32); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var34 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var39); + + // Regression assertion (captures the current behavior of the code) + assertNull(var41); + + } + + public void test16() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test16"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.setInheritsPopupMenu(false); + boolean var6 = var0.isDoubleBuffered(); + var0.setAlignmentY(100.0f); + var0.setAlignmentX(0.0f); + var0.setVerifyInputWhenFocusTarget(true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == true); + + } + + public void test17() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test17"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var6 = var0.getUI(); + var0.disable(); + javax.swing.InputMap var8 = var0.getInputMap(); + var0.setEnabled(false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var8); + + } + + public void test18() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test18"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + var0.enable(false); + boolean var7 = var0.getFocusTraversalKeysEnabled(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + java.awt.Dimension var12 = var8.getPreferredSize(); + java.awt.Toolkit var13 = var8.getToolkit(); + boolean var14 = var8.isFocusable(); + javax.swing.KeyStroke[] var15 = var8.getRegisteredKeyStrokes(); + SpaceWar.SpacePanel var16 = new SpaceWar.SpacePanel(); + float var17 = var16.getAlignmentX(); + SpaceWar.SpacePanel var18 = new SpaceWar.SpacePanel(); + float var19 = var18.getAlignmentX(); + var18.setVisible(false); + java.awt.Dimension var22 = var18.getPreferredSize(); + boolean var23 = var18.getVerifyInputWhenFocusTarget(); + java.awt.Component var26 = var18.findComponentAt(10, 1); + var16.addKeyListener((java.awt.event.KeyListener)var18); + var18.repaint(100, (-1), (-1), 1); + boolean var33 = var8.isAncestorOf((java.awt.Component)var18); + var0.addKeyListener((java.awt.event.KeyListener)var18); + SpaceWar.SpacePanel var35 = new SpaceWar.SpacePanel(); + float var36 = var35.getAlignmentX(); + var35.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var41 = var35.getUI(); + java.awt.im.InputMethodRequests var42 = var35.getInputMethodRequests(); + SpaceWar.SpacePanel var43 = new SpaceWar.SpacePanel(); + float var44 = var43.getAlignmentX(); + var43.setVisible(false); + var43.nextFocus(); + var43.updateUI(); + var43.enableInputMethods(true); + var43.setSize((-1), 1); + SpaceWar.SpacePanel var54 = new SpaceWar.SpacePanel(); + var54.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var35.add((java.awt.Component)var43, (java.lang.Object)"SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + SpaceWar.SpacePanel var60 = new SpaceWar.SpacePanel(); + float var61 = var60.getAlignmentX(); + var60.setVisible(false); + var60.setInheritsPopupMenu(false); + boolean var66 = var60.isDoubleBuffered(); + boolean var67 = var60.isMinimumSizeSet(); + SpaceWar.SpacePanel var68 = new SpaceWar.SpacePanel(); + float var69 = var68.getAlignmentX(); + var68.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var74 = new SpaceWar.SpacePanel(); + float var75 = var74.getAlignmentX(); + var74.setVisible(false); + java.awt.Dimension var78 = var74.getPreferredSize(); + var68.setMaximumSize(var78); + boolean var80 = var68.getVerifyInputWhenFocusTarget(); + javax.accessibility.AccessibleContext var81 = var68.getAccessibleContext(); + boolean var82 = var68.isDoubleBuffered(); + java.awt.Rectangle var83 = var68.getVisibleRect(); + var60.setBounds(var83); + java.awt.Rectangle var85 = var35.getBounds(var83); + var18.setBounds(var85); + SpaceWar.SpacePanel var87 = new SpaceWar.SpacePanel(); + java.awt.Color var88 = var87.getBackground(); + var87.repaint(); + var87.setRequestFocusEnabled(false); + var87.setIgnoreRepaint(false); + java.lang.String var94 = var87.toString(); + java.awt.Color var95 = var87.getBackground(); + javax.swing.InputMap var96 = var87.getInputMap(); + var18.addKeyListener((java.awt.event.KeyListener)var87); + java.awt.Color var98 = var18.getForeground(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var33 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var36 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var41); + + // Regression assertion (captures the current behavior of the code) + assertNull(var42); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var44 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var61 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var66 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var67 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var69 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var75 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var78); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var80 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var81); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var82 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var83); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var85); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var88); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var94 + "' != '" + "SpaceWar.SpacePanel[,0,0,0var94,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"+ "'", var94.equals("SpaceWar.SpacePanel[,0,0,0var94,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]")); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var95); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var96); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var98); + + } + + public void test19() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test19"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + boolean var2 = var0.hasFocus(); + java.awt.Insets var3 = var0.getInsets(); + java.awt.Rectangle var4 = var0.bounds(); + boolean var5 = var0.isMaximumSizeSet(); + var0.setAlignmentX(1.0f); + var0.list(); + java.awt.peer.ComponentPeer var9 = var0.getPeer(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var2 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var4); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var9); + + } + + public void test20() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test20"); + + + SpaceWar.Player var0 = new SpaceWar.Player(); + int var1 = var0.getR(); + var0.setRigth(false); + var0.setLife(100); + var0.setDown(false); + var0.setFiring(true); + var0.increasePower(400); + int var12 = var0.getPowerLevel(); + int var13 = var0.getScore(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 25); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == 1); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == 0); + + } + + public void test21() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test21"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + SpaceWar.SpacePanel var4 = new SpaceWar.SpacePanel(); + java.awt.Color var5 = var4.getBackground(); + var0.setForeground(var5); + SpaceWar.SpacePanel var7 = new SpaceWar.SpacePanel(); + float var8 = var7.getAlignmentX(); + var7.setVisible(false); + boolean var11 = var7.isDoubleBuffered(); + java.awt.dnd.DropTarget var12 = var7.getDropTarget(); + var7.show(false); + java.awt.Rectangle var15 = var7.getVisibleRect(); + var0.repaint(var15); + java.awt.FocusTraversalPolicy var17 = var0.getFocusTraversalPolicy(); + java.awt.im.InputMethodRequests var18 = var0.getInputMethodRequests(); + var0.layout(); + java.awt.Point var20 = var0.getMousePosition(); + SpaceWar.SpacePanel var21 = new SpaceWar.SpacePanel(); + float var22 = var21.getAlignmentX(); + boolean var23 = var21.hasFocus(); + SpaceWar.SpacePanel var24 = new SpaceWar.SpacePanel(); + float var25 = var24.getAlignmentX(); + var24.setVisible(false); + boolean var28 = var24.isDoubleBuffered(); + java.awt.dnd.DropTarget var29 = var24.getDropTarget(); + boolean var30 = var24.isFocusCycleRoot(); + var24.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", 100, 0); + SpaceWar.SpacePanel var35 = new SpaceWar.SpacePanel(); + float var36 = var35.getAlignmentX(); + var35.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var41 = var35.getUI(); + var24.add((java.awt.Component)var35, (java.lang.Object)(short)0); + java.awt.Insets var44 = var35.getInsets(); + java.awt.Insets var45 = var21.getInsets(var44); + java.awt.Insets var46 = var0.getInsets(var44); + var0.repaint(1L, (-1), 2, 3, 500); + var0.setBounds(500, 500, 100, 24); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var22 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var28 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var29); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var30 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var36 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var41); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var44); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var45); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var46); + + } + + public void test22() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test22"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + java.awt.im.InputMethodRequests var3 = var0.getInputMethodRequests(); + java.awt.GraphicsConfiguration var4 = var0.getGraphicsConfiguration(); + boolean var6 = var0.requestFocus(false); + javax.swing.JPopupMenu var7 = var0.getComponentPopupMenu(); + java.awt.Point var8 = var0.location(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + boolean var11 = var9.hasFocus(); + boolean var12 = var9.isPreferredSizeSet(); + var9.firePropertyChange("", (short)1, (short)0); + boolean var17 = var9.isMaximumSizeSet(); + java.awt.peer.ComponentPeer var18 = var9.getPeer(); + java.awt.ComponentOrientation var19 = var9.getComponentOrientation(); + SpaceWar.SpacePanel var20 = new SpaceWar.SpacePanel(); + float var21 = var20.getAlignmentX(); + var20.setVisible(false); + SpaceWar.SpacePanel var24 = new SpaceWar.SpacePanel(); + java.awt.Color var25 = var24.getBackground(); + var20.setForeground(var25); + SpaceWar.SpacePanel var27 = new SpaceWar.SpacePanel(); + float var28 = var27.getAlignmentX(); + var27.setVisible(false); + boolean var31 = var27.isDoubleBuffered(); + java.awt.dnd.DropTarget var32 = var27.getDropTarget(); + var27.show(false); + java.awt.Rectangle var35 = var27.getVisibleRect(); + var20.repaint(var35); + java.awt.FocusTraversalPolicy var37 = var20.getFocusTraversalPolicy(); + var20.resetKeyboardActions(); + SpaceWar.SpacePanel var39 = new SpaceWar.SpacePanel(); + float var40 = var39.getAlignmentX(); + var39.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var45 = var39.getMouseListeners(); + int var46 = var39.getDebugGraphicsOptions(); + SpaceWar.SpacePanel var47 = new SpaceWar.SpacePanel(); + float var48 = var47.getAlignmentX(); + var47.setVisible(false); + boolean var51 = var47.isDoubleBuffered(); + java.awt.dnd.DropTarget var52 = var47.getDropTarget(); + var47.show(false); + java.awt.Rectangle var55 = var47.getVisibleRect(); + var39.paintImmediately(var55); + var20.setBounds(var55); + java.awt.Rectangle var58 = var9.getBounds(var55); + java.awt.Rectangle var59 = var0.getBounds(var55); + var0.setDoubleBuffered(false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertNull(var4); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var25); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var28 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var31 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var32); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var35); + + // Regression assertion (captures the current behavior of the code) + assertNull(var37); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var40 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var45); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var46 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var48 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var51 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var52); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var55); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var58); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var59); + + } + + public void test23() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test23"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + java.awt.Dimension var4 = var0.getPreferredSize(); + java.awt.Toolkit var5 = var0.getToolkit(); + boolean var6 = var0.isFocusable(); + javax.swing.KeyStroke[] var7 = var0.getRegisteredKeyStrokes(); + boolean var10 = var0.inside(1, 500); + var0.show(true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var4); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == false); + + } + + public void test24() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test24"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + java.awt.Dimension var4 = var0.getPreferredSize(); + boolean var5 = var0.getVerifyInputWhenFocusTarget(); + java.awt.Component var8 = var0.findComponentAt(10, 1); + boolean var9 = var0.requestDefaultFocus(); + boolean var10 = var0.isPaintingTile(); + SpaceWar.SpacePanel var11 = new SpaceWar.SpacePanel(); + var11.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + javax.swing.plaf.PanelUI var16 = var11.getUI(); + java.awt.Color var17 = var11.getBackground(); + var0.addKeyListener((java.awt.event.KeyListener)var11); + int var19 = var0.countComponents(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var4); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == 0); + + } + + public void test25() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test25"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + float var7 = var6.getAlignmentX(); + var6.setVisible(false); + java.awt.Dimension var10 = var6.getPreferredSize(); + var0.setMaximumSize(var10); + boolean var12 = var0.getVerifyInputWhenFocusTarget(); + SpaceWar.SpacePanel var13 = new SpaceWar.SpacePanel(); + float var14 = var13.getAlignmentX(); + var13.setVisible(false); + boolean var17 = var13.isDoubleBuffered(); + var13.list(); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + float var20 = var19.getAlignmentX(); + var19.setVisible(false); + boolean var23 = var19.isDoubleBuffered(); + java.awt.dnd.DropTarget var24 = var19.getDropTarget(); + var19.show(false); + java.awt.Rectangle var27 = var19.getVisibleRect(); + java.awt.image.BufferedImage var29 = var19.loadImg("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + boolean var30 = var13.isAncestorOf((java.awt.Component)var19); + SpaceWar.SpacePanel var31 = new SpaceWar.SpacePanel(); + java.awt.Color var32 = var31.getBackground(); + var31.repaint(); + var31.setRequestFocusEnabled(false); + var31.setIgnoreRepaint(false); + java.lang.String var38 = var31.toString(); + java.awt.Color var39 = var31.getBackground(); + SpaceWar.SpacePanel var40 = new SpaceWar.SpacePanel(); + float var41 = var40.getAlignmentX(); + var40.setVisible(false); + java.awt.Dimension var44 = var40.getPreferredSize(); + java.awt.Toolkit var45 = var40.getToolkit(); + java.awt.Toolkit var46 = var40.getToolkit(); + SpaceWar.Player var47 = new SpaceWar.Player(); + var47.increasePower(25); + int var50 = var47.getScore(); + var47.setRigth(true); + var47.loseLife(); + var31.putClientProperty((java.lang.Object)var40, (java.lang.Object)var47); + java.awt.Rectangle var55 = var40.bounds(); + java.awt.Rectangle var56 = var19.getBounds(var55); + var19.setLocation(499, 25); + var19.transferFocusUpCycle(); + java.awt.Component var61 = var0.add((java.awt.Component)var19); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var27); + + // Regression assertion (captures the current behavior of the code) + assertNull(var29); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var30 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var32); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var38 + "' != '" + "SpaceWar.SpacePanel[,0,0,0var38,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"+ "'", var38.equals("SpaceWar.SpacePanel[,0,0,0var38,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]")); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var39); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var41 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var44); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var45); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var46); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var50 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var55); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var56); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var61); + + } + + public void test26() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test26"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + var0.setRequestFocusEnabled(false); + var0.reshape(100, 0, 100, 0); + javax.swing.event.AncestorListener[] var10 = var0.getAncestorListeners(); + var0.resize(10, 0); + java.awt.event.ComponentListener[] var14 = var0.getComponentListeners(); + int var15 = var0.getDebugGraphicsOptions(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == 0); + + } + + public void test27() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test27"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.reshape((-1), 1, (-1), 10); + var0.disable(); + java.awt.LayoutManager var11 = var0.getLayout(); + var0.setVisible(false); + SpaceWar.SpacePanel var14 = new SpaceWar.SpacePanel(); + float var15 = var14.getAlignmentX(); + var14.setVisible(false); + var14.setInheritsPopupMenu(false); + boolean var20 = var14.isDoubleBuffered(); + boolean var21 = var14.isMinimumSizeSet(); + SpaceWar.SpacePanel var22 = new SpaceWar.SpacePanel(); + float var23 = var22.getAlignmentX(); + var22.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var28 = new SpaceWar.SpacePanel(); + float var29 = var28.getAlignmentX(); + var28.setVisible(false); + java.awt.Dimension var32 = var28.getPreferredSize(); + var22.setMaximumSize(var32); + boolean var34 = var22.getVerifyInputWhenFocusTarget(); + javax.accessibility.AccessibleContext var35 = var22.getAccessibleContext(); + boolean var36 = var22.isDoubleBuffered(); + java.awt.Rectangle var37 = var22.getVisibleRect(); + var14.setBounds(var37); + var0.computeVisibleRect(var37); + SpaceWar.SpacePanel var40 = new SpaceWar.SpacePanel(); + float var41 = var40.getAlignmentX(); + var40.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var46 = new SpaceWar.SpacePanel(); + float var47 = var46.getAlignmentX(); + var46.setVisible(false); + java.awt.Dimension var50 = var46.getPreferredSize(); + var40.setMaximumSize(var50); + boolean var52 = var40.getVerifyInputWhenFocusTarget(); + int var53 = var40.getX(); + java.awt.Rectangle var54 = var40.bounds(); + var0.remove((java.awt.Component)var40); + SpaceWar.SpacePanel var56 = new SpaceWar.SpacePanel(); + java.awt.Color var57 = var56.getBackground(); + var56.repaint(); + var56.setRequestFocusEnabled(false); + var56.setIgnoreRepaint(false); + boolean var63 = var56.requestFocusInWindow(); + float var64 = var56.getAlignmentY(); + SpaceWar.SpacePanel var65 = new SpaceWar.SpacePanel(); + java.awt.Color var66 = var65.getBackground(); + var65.repaint(); + java.awt.im.InputMethodRequests var68 = var65.getInputMethodRequests(); + int var69 = var65.countComponents(); + java.awt.event.ComponentListener[] var70 = var65.getComponentListeners(); + SpaceWar.SpacePanel var71 = new SpaceWar.SpacePanel(); + float var72 = var71.getAlignmentX(); + var71.removeNotify(); + SpaceWar.SpacePanel var74 = new SpaceWar.SpacePanel(); + float var75 = var74.getAlignmentX(); + var74.setVisible(false); + boolean var78 = var74.isDoubleBuffered(); + var74.list(); + float var80 = var74.getAlignmentY(); + java.awt.Insets var81 = var74.getInsets(); + java.awt.Insets var82 = var71.getInsets(var81); + java.awt.Insets var83 = var65.getInsets(var82); + javax.swing.JPopupMenu var84 = var65.getComponentPopupMenu(); + java.awt.image.BufferedImage var86 = var65.loadImg("PanelUI"); + SpaceWar.SpacePanel var87 = new SpaceWar.SpacePanel(); + float var88 = var87.getAlignmentX(); + var87.setVisible(false); + var87.nextFocus(); + var87.updateUI(); + var87.enableInputMethods(true); + int var95 = var87.getY(); + boolean var96 = var87.isDisplayable(); + var56.add((java.awt.Component)var65, (java.lang.Object)var87); + var0.addKeyListener((java.awt.event.KeyListener)var56); + boolean var99 = var0.requestDefaultFocus(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var29 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var32); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var34 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var35); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var36 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var37); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var41 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var47 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var50); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var52 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var53 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var54); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var57); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var63 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var64 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var66); + + // Regression assertion (captures the current behavior of the code) + assertNull(var68); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var69 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var70); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var72 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var75 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var78 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var80 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var81); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var82); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var83); + + // Regression assertion (captures the current behavior of the code) + assertNull(var84); + + // Regression assertion (captures the current behavior of the code) + assertNull(var86); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var88 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var95 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var96 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var99 == false); + + } + + public void test28() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test28"); + + + SpaceWar.Player var0 = new SpaceWar.Player(); + int var1 = var0.getR(); + var0.setUp(false); + var0.update(); + java.awt.image.BufferedImage var6 = var0.loadImg("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + int var7 = var0.getX(); + var0.setLife(10); + int var10 = var0.getRequiredPower(); + int var11 = var0.getLives(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 25); + + // Regression assertion (captures the current behavior of the code) + assertNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 400); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 1); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == 10); + + } + + public void test29() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test29"); + + + SpaceWar.Player var0 = new SpaceWar.Player(); + int var1 = var0.getR(); + boolean var2 = var0.isRecovering(); + int var3 = var0.getRequiredPower(); + var0.setLeft(false); + var0.loseLife(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 25); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var2 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == 1); + + } + + public void test30() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test30"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + var0.setName(""); + int var3 = var0.getX(); + SpaceWar.SpacePanel var4 = new SpaceWar.SpacePanel(); + float var5 = var4.getAlignmentX(); + var4.setVisible(false); + var4.nextFocus(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.setVisible(false); + SpaceWar.SpacePanel var13 = new SpaceWar.SpacePanel(); + java.awt.Color var14 = var13.getBackground(); + var9.setForeground(var14); + var4.setBackground(var14); + var0.setBackground(var14); + boolean var18 = var0.isFocusTraversable(); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + var19.setName(""); + int var22 = var19.getX(); + SpaceWar.SpacePanel var23 = new SpaceWar.SpacePanel(); + float var24 = var23.getAlignmentX(); + var23.setVisible(false); + var23.nextFocus(); + SpaceWar.SpacePanel var28 = new SpaceWar.SpacePanel(); + float var29 = var28.getAlignmentX(); + var28.setVisible(false); + SpaceWar.SpacePanel var32 = new SpaceWar.SpacePanel(); + java.awt.Color var33 = var32.getBackground(); + var28.setForeground(var33); + var23.setBackground(var33); + var19.setBackground(var33); + var0.setBackground(var33); + java.awt.event.InputMethodListener[] var38 = var0.getInputMethodListeners(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var22 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var24 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var29 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var33); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var38); + + } + + public void test31() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test31"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + SpaceWar.SpacePanel var4 = new SpaceWar.SpacePanel(); + java.awt.Color var5 = var4.getBackground(); + var0.setForeground(var5); + SpaceWar.SpacePanel var7 = new SpaceWar.SpacePanel(); + float var8 = var7.getAlignmentX(); + var7.setVisible(false); + boolean var11 = var7.isDoubleBuffered(); + java.awt.dnd.DropTarget var12 = var7.getDropTarget(); + var7.show(false); + java.awt.Rectangle var15 = var7.getVisibleRect(); + var0.repaint(var15); + java.awt.FocusTraversalPolicy var17 = var0.getFocusTraversalPolicy(); + java.awt.im.InputMethodRequests var18 = var0.getInputMethodRequests(); + var0.layout(); + java.awt.Point var20 = var0.getMousePosition(); + java.awt.Graphics var21 = var0.getGraphics(); + SpaceWar.SpacePanel var22 = new SpaceWar.SpacePanel(); + float var23 = var22.getAlignmentX(); + var22.setVisible(false); + var22.setInheritsPopupMenu(false); + var22.setFocusTraversalPolicyProvider(true); + SpaceWar.SpacePanel var30 = new SpaceWar.SpacePanel(); + float var31 = var30.getAlignmentX(); + var30.setVisible(false); + boolean var34 = var30.isDoubleBuffered(); + var30.list(); + SpaceWar.SpacePanel var36 = new SpaceWar.SpacePanel(); + float var37 = var36.getAlignmentX(); + var36.setVisible(false); + boolean var40 = var36.isDoubleBuffered(); + java.awt.dnd.DropTarget var41 = var36.getDropTarget(); + var36.show(false); + java.awt.Rectangle var44 = var36.getVisibleRect(); + java.awt.Rectangle var45 = var30.getBounds(var44); + javax.swing.JToolTip var46 = var30.createToolTip(); + var22.removeKeyListener((java.awt.event.KeyListener)var30); + var0.setComponentZOrder((java.awt.Component)var22, 0); + var0.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", 1.0f, 0.5f); + SpaceWar.SpacePanel var54 = new SpaceWar.SpacePanel(); + var54.setName(""); + java.awt.Graphics var57 = var54.getGraphics(); + java.awt.event.MouseMotionListener[] var58 = var54.getMouseMotionListeners(); + boolean var59 = var54.getIgnoreRepaint(); + var54.transferFocusBackward(); + java.awt.Cursor var61 = var54.getCursor(); + var0.setCursor(var61); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertNull(var21); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var31 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var34 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var40 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var41); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var44); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var45); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var46); + + // Regression assertion (captures the current behavior of the code) + assertNull(var57); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var58); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var59 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var61); + + } + + public void test32() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test32"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.setInheritsPopupMenu(false); + var0.setFocusTraversalPolicyProvider(true); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + java.awt.Color var9 = var8.getBackground(); + var8.repaint(); + java.awt.im.InputMethodRequests var11 = var8.getInputMethodRequests(); + java.awt.GraphicsConfiguration var12 = var8.getGraphicsConfiguration(); + java.awt.Component var13 = var0.add((java.awt.Component)var8); + java.lang.String var14 = var0.getName(); + boolean var15 = var0.isFocusTraversable(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var9); + + // Regression assertion (captures the current behavior of the code) + assertNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == true); + + } + + public void test33() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test33"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + var0.setRequestFocusEnabled(false); + var0.reshape(100, 0, 100, 0); + var0.requestFocus(); + var0.firePropertyChange("hi!", '4', ' '); + java.awt.Point var15 = var0.getLocation(); + java.awt.Dimension var16 = var0.size(); + java.awt.Image var19 = var0.createImage((-1), (-1)); + java.awt.image.VolatileImage var22 = var0.createVolatileImage(3, 2); + SpaceWar.SpacePanel var23 = new SpaceWar.SpacePanel(); + float var24 = var23.getAlignmentX(); + var23.setVisible(false); + boolean var27 = var23.isDoubleBuffered(); + java.awt.dnd.DropTarget var28 = var23.getDropTarget(); + var23.show(false); + java.awt.Rectangle var31 = var23.getVisibleRect(); + boolean var32 = var23.isFocusTraversalPolicySet(); + SpaceWar.SpacePanel var33 = new SpaceWar.SpacePanel(); + float var34 = var33.getAlignmentX(); + var33.setVisible(false); + boolean var37 = var33.isDoubleBuffered(); + var33.enable(false); + boolean var40 = var33.getFocusTraversalKeysEnabled(); + SpaceWar.SpacePanel var41 = new SpaceWar.SpacePanel(); + float var42 = var41.getAlignmentX(); + var41.setVisible(false); + java.awt.Dimension var45 = var41.getPreferredSize(); + java.awt.Toolkit var46 = var41.getToolkit(); + boolean var47 = var41.isFocusable(); + javax.swing.KeyStroke[] var48 = var41.getRegisteredKeyStrokes(); + SpaceWar.SpacePanel var49 = new SpaceWar.SpacePanel(); + float var50 = var49.getAlignmentX(); + SpaceWar.SpacePanel var51 = new SpaceWar.SpacePanel(); + float var52 = var51.getAlignmentX(); + var51.setVisible(false); + java.awt.Dimension var55 = var51.getPreferredSize(); + boolean var56 = var51.getVerifyInputWhenFocusTarget(); + java.awt.Component var59 = var51.findComponentAt(10, 1); + var49.addKeyListener((java.awt.event.KeyListener)var51); + var51.repaint(100, (-1), (-1), 1); + boolean var66 = var41.isAncestorOf((java.awt.Component)var51); + var33.addKeyListener((java.awt.event.KeyListener)var51); + java.util.Locale var68 = var51.getLocale(); + var23.setLocale(var68); + javax.swing.JComponent.setDefaultLocale(var68); + var0.setLocale(var68); + int var72 = var0.getHeight(); + var0.disable(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var24 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var28); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var31); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var32 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var34 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var40 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var42 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var45); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var46); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var47 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var48); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var50 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var52 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var55); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var56 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var59); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var66 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var68); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var72 == 0); + + } + + public void test34() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test34"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.reshape((-1), 1, (-1), 10); + SpaceWar.SpacePanel var10 = new SpaceWar.SpacePanel(); + java.awt.Color var11 = var10.getBackground(); + var10.repaint(); + var10.setRequestFocusEnabled(false); + var10.reshape(100, 0, 100, 0); + java.awt.Component var20 = var0.add((java.awt.Component)var10); + boolean var21 = var10.isEnabled(); + SpaceWar.SpacePanel var22 = new SpaceWar.SpacePanel(); + float var23 = var22.getAlignmentX(); + var22.setVisible(false); + var22.setInheritsPopupMenu(false); + var22.setFocusTraversalPolicyProvider(true); + SpaceWar.SpacePanel var30 = new SpaceWar.SpacePanel(); + float var31 = var30.getAlignmentX(); + var30.setVisible(false); + boolean var34 = var30.isDoubleBuffered(); + var30.list(); + SpaceWar.SpacePanel var36 = new SpaceWar.SpacePanel(); + float var37 = var36.getAlignmentX(); + var36.setVisible(false); + boolean var40 = var36.isDoubleBuffered(); + java.awt.dnd.DropTarget var41 = var36.getDropTarget(); + var36.show(false); + java.awt.Rectangle var44 = var36.getVisibleRect(); + java.awt.Rectangle var45 = var30.getBounds(var44); + javax.swing.JToolTip var46 = var30.createToolTip(); + var22.removeKeyListener((java.awt.event.KeyListener)var30); + javax.swing.TransferHandler var48 = var22.getTransferHandler(); + var22.transferFocus(); + SpaceWar.SpacePanel var50 = new SpaceWar.SpacePanel(); + float var51 = var50.getAlignmentX(); + SpaceWar.SpacePanel var52 = new SpaceWar.SpacePanel(); + float var53 = var52.getAlignmentX(); + var52.setVisible(false); + java.awt.Dimension var56 = var52.getPreferredSize(); + boolean var57 = var52.getVerifyInputWhenFocusTarget(); + java.awt.Component var60 = var52.findComponentAt(10, 1); + var50.addKeyListener((java.awt.event.KeyListener)var52); + java.awt.Dimension var62 = var52.getMinimumSize(); + SpaceWar.SpacePanel var63 = new SpaceWar.SpacePanel(); + java.awt.Color var64 = var63.getBackground(); + var63.repaint(); + var63.setRequestFocusEnabled(false); + var63.reshape(100, 0, 100, 0); + var63.requestFocus(); + java.awt.Rectangle var74 = var63.getVisibleRect(); + var52.setBounds(var74); + var22.scrollRectToVisible(var74); + var10.setBounds(var74); + var10.show(); + var10.enableInputMethods(false); + java.awt.Toolkit var81 = var10.getToolkit(); + // The following exception was thrown during execution. + // This behavior will recorded for regression testing. + try { + java.awt.Component var83 = var10.getComponent(1); + fail("Expected exception of type java.lang.ArrayIndexOutOfBoundsException"); + } catch (java.lang.ArrayIndexOutOfBoundsException e) { + // Expected exception. + } + + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var31 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var34 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var40 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var41); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var44); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var45); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var46); + + // Regression assertion (captures the current behavior of the code) + assertNull(var48); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var51 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var53 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var56); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var57 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var60); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var62); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var64); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var74); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var81); + + } + + public void test35() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test35"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.reshape((-1), 1, (-1), 10); + var0.disable(); + java.awt.LayoutManager var11 = var0.getLayout(); + boolean var14 = var0.contains((-1), 0); + SpaceWar.SpacePanel var15 = new SpaceWar.SpacePanel(); + float var16 = var15.getAlignmentX(); + var15.setVisible(false); + var15.nextFocus(); + var15.updateUI(); + var15.enableInputMethods(true); + var15.setSize((-1), 1); + java.awt.Component var26 = var0.add((java.awt.Component)var15); + SpaceWar.SpacePanel var27 = new SpaceWar.SpacePanel(); + float var28 = var27.getAlignmentX(); + var27.setVisible(false); + var27.nextFocus(); + var27.updateUI(); + var27.enableInputMethods(true); + java.lang.String var35 = var27.toString(); + java.awt.FocusTraversalPolicy var36 = var27.getFocusTraversalPolicy(); + var15.removeKeyListener((java.awt.event.KeyListener)var27); + var15.show(false); + var15.disable(); + java.awt.FocusTraversalPolicy var41 = var15.getFocusTraversalPolicy(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var28 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var35 + "' != '" + "SpaceWar.SpacePanel[,0,0,0var35,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"+ "'", var35.equals("SpaceWar.SpacePanel[,0,0,0var35,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]")); + + // Regression assertion (captures the current behavior of the code) + assertNull(var36); + + // Regression assertion (captures the current behavior of the code) + assertNull(var41); + + } + + public void test36() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test36"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + SpaceWar.SpacePanel var2 = new SpaceWar.SpacePanel(); + float var3 = var2.getAlignmentX(); + var2.setVisible(false); + java.awt.Dimension var6 = var2.getPreferredSize(); + boolean var7 = var2.getVerifyInputWhenFocusTarget(); + java.awt.Component var10 = var2.findComponentAt(10, 1); + var0.addKeyListener((java.awt.event.KeyListener)var2); + var2.repaint(100, (-1), (-1), 1); + SpaceWar.SpacePanel var17 = new SpaceWar.SpacePanel(); + java.awt.Color var18 = var17.getBackground(); + var17.repaint(); + java.awt.im.InputMethodRequests var20 = var17.getInputMethodRequests(); + java.awt.GraphicsConfiguration var21 = var17.getGraphicsConfiguration(); + var2.remove((java.awt.Component)var17); + java.awt.Font var23 = var17.getFont(); + javax.swing.TransferHandler var24 = var17.getTransferHandler(); + SpaceWar.SpacePanel var25 = new SpaceWar.SpacePanel(); + java.awt.Color var26 = var25.getBackground(); + var25.repaint(); + java.awt.im.InputMethodRequests var28 = var25.getInputMethodRequests(); + var25.setDoubleBuffered(true); + var25.show(false); + var25.setAlignmentY(100.0f); + java.awt.Dimension var35 = var25.minimumSize(); + var17.setPreferredSize(var35); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertNull(var21); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var23); + + // Regression assertion (captures the current behavior of the code) + assertNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertNull(var28); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var35); + + } + + public void test37() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test37"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + var0.show(false); + boolean var8 = var0.isPaintingForPrint(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var15 = var9.getMouseListeners(); + int var16 = var9.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var17 = var9.getInputMethodRequests(); + var0.addKeyListener((java.awt.event.KeyListener)var9); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + float var20 = var19.getAlignmentX(); + var19.setVisible(false); + boolean var23 = var19.isDoubleBuffered(); + var19.list(); + float var25 = var19.getAlignmentY(); + boolean var26 = var9.isFocusCycleRoot((java.awt.Container)var19); + var19.firePropertyChange("", 1L, 1L); + var19.setVerifyInputWhenFocusTarget(true); + SpaceWar.SpacePanel var33 = new SpaceWar.SpacePanel(); + var33.setName(""); + java.awt.Dimension var36 = var33.minimumSize(); + boolean var37 = var33.isDoubleBuffered(); + SpaceWar.SpacePanel var38 = new SpaceWar.SpacePanel(); + float var39 = var38.getAlignmentX(); + SpaceWar.SpacePanel var40 = new SpaceWar.SpacePanel(); + float var41 = var40.getAlignmentX(); + var40.setVisible(false); + java.awt.Dimension var44 = var40.getPreferredSize(); + boolean var45 = var40.getVerifyInputWhenFocusTarget(); + java.awt.Component var48 = var40.findComponentAt(10, 1); + var38.addKeyListener((java.awt.event.KeyListener)var40); + var40.repaint(100, (-1), (-1), 1); + SpaceWar.SpacePanel var55 = new SpaceWar.SpacePanel(); + java.awt.Color var56 = var55.getBackground(); + var55.repaint(); + java.awt.im.InputMethodRequests var58 = var55.getInputMethodRequests(); + java.awt.GraphicsConfiguration var59 = var55.getGraphicsConfiguration(); + var40.remove((java.awt.Component)var55); + java.awt.Font var61 = var55.getFont(); + java.awt.FontMetrics var62 = var33.getFontMetrics(var61); + java.awt.FontMetrics var63 = var19.getFontMetrics(var61); + boolean var64 = var19.isFocusTraversalPolicyProvider(); + SpaceWar.SpacePanel var65 = new SpaceWar.SpacePanel(); + float var66 = var65.getAlignmentX(); + var65.firePropertyChange("", (-1), 1); + java.awt.event.MouseMotionListener[] var71 = var65.getMouseMotionListeners(); + java.awt.event.ComponentListener[] var72 = var65.getComponentListeners(); + SpaceWar.SpacePanel var73 = new SpaceWar.SpacePanel(); + float var74 = var73.getAlignmentX(); + var73.setVisible(false); + var73.nextFocus(); + var73.repaint(1L); + SpaceWar.SpacePanel var80 = new SpaceWar.SpacePanel(); + float var81 = var80.getAlignmentX(); + var80.setVisible(false); + boolean var84 = var80.isDoubleBuffered(); + var80.list(); + SpaceWar.SpacePanel var86 = new SpaceWar.SpacePanel(); + float var87 = var86.getAlignmentX(); + var86.setVisible(false); + boolean var90 = var86.isDoubleBuffered(); + java.awt.dnd.DropTarget var91 = var86.getDropTarget(); + var86.show(false); + java.awt.Rectangle var94 = var86.getVisibleRect(); + java.awt.Rectangle var95 = var80.getBounds(var94); + var73.setBounds(var95); + var65.paintImmediately(var95); + var19.repaint(var95); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var36); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var39 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var41 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var44); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var45 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var48); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var56); + + // Regression assertion (captures the current behavior of the code) + assertNull(var58); + + // Regression assertion (captures the current behavior of the code) + assertNull(var59); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var61); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var62); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var63); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var64 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var66 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var71); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var72); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var74 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var81 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var84 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var87 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var90 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var91); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var94); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var95); + + } + + public void test38() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test38"); + + + SpaceWar.Player var0 = new SpaceWar.Player(); + var0.increasePower(25); + int var3 = var0.getScore(); + var0.setRigth(true); + var0.loseLife(); + var0.increasePower(3); + var0.setRigth(true); + var0.setDown(true); + var0.setFiring(false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == 0); + + } + + public void test39() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test39"); + + + SpaceWar.Enemy var2 = new SpaceWar.Enemy(0, 10); + int var3 = var2.getRank(); + double var4 = var2.getY(); + var2.update(); + double var6 = var2.getY(); + var2.update(); + int var8 = var2.getRank(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == 10); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0.0d); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == 0.0d); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 10); + + } + + public void test40() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test40"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + var0.setRequestFocusEnabled(false); + var0.reshape(100, 0, 100, 0); + var0.requestFocus(); + java.awt.Rectangle var11 = var0.getVisibleRect(); + java.awt.Rectangle var12 = var0.getBounds(); + java.awt.im.InputMethodRequests var13 = var0.getInputMethodRequests(); + boolean var14 = var0.requestFocusInWindow(); + java.awt.Rectangle var15 = var0.bounds(); + var0.setAutoscrolls(true); + SpaceWar.SpacePanel var18 = new SpaceWar.SpacePanel(); + float var19 = var18.getAlignmentX(); + var18.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var24 = var18.getUI(); + java.awt.im.InputMethodRequests var25 = var18.getInputMethodRequests(); + SpaceWar.SpacePanel var26 = new SpaceWar.SpacePanel(); + float var27 = var26.getAlignmentX(); + var26.setVisible(false); + var26.nextFocus(); + var26.updateUI(); + var26.enableInputMethods(true); + var26.setSize((-1), 1); + SpaceWar.SpacePanel var37 = new SpaceWar.SpacePanel(); + var37.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var18.add((java.awt.Component)var26, (java.lang.Object)"SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + boolean var43 = var18.isCursorSet(); + javax.swing.TransferHandler var44 = var18.getTransferHandler(); + java.awt.Point var45 = var18.location(); + java.awt.Point var46 = var0.getLocation(var45); + SpaceWar.SpacePanel var47 = new SpaceWar.SpacePanel(); + float var48 = var47.getAlignmentX(); + var47.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var53 = new SpaceWar.SpacePanel(); + float var54 = var53.getAlignmentX(); + var53.setVisible(false); + java.awt.Dimension var57 = var53.getPreferredSize(); + var47.setMaximumSize(var57); + boolean var59 = var47.getVerifyInputWhenFocusTarget(); + boolean var60 = var47.isFontSet(); + boolean var61 = var47.getIgnoreRepaint(); + java.awt.Component var64 = var47.locate(1, 25); + boolean var65 = var47.isLightweight(); + var47.move(100, 500); + var47.resetKeyboardActions(); + java.awt.Dimension var70 = var47.preferredSize(); + java.awt.Point var71 = var47.getLocation(); + java.awt.Component[] var72 = var47.getComponents(); + // The following exception was thrown during execution. + // This behavior will recorded for regression testing. + try { + var0.setComponentZOrder((java.awt.Component)var47, 399); + fail("Expected exception of type java.lang.IllegalArgumentException"); + } catch (java.lang.IllegalArgumentException e) { + // Expected exception. + } + + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertNull(var25); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var43 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var44); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var45); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var46); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var48 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var54 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var57); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var59 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var60 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var61 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var64); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var65 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var70); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var71); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var72); + + } + + public void test41() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test41"); + + + SpaceWar.Player var0 = new SpaceWar.Player(); + int var1 = var0.getPower(); + int var2 = var0.getPowerLevel(); + var0.setLeft(false); + int var5 = var0.getScore(); + int var6 = var0.getX(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var2 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == 400); + + } + + public void test42() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test42"); + + + SpaceWar.Bullet var3 = new SpaceWar.Bullet(5.0d, 24, 499); + double var4 = var3.getX(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 24.0d); + + } + + public void test43() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test43"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + var0.setRequestFocusEnabled(false); + var0.reshape(100, 0, 100, 0); + var0.requestFocus(); + var0.firePropertyChange("hi!", '4', ' '); + SpaceWar.Enemy var17 = new SpaceWar.Enemy(0, 100); + int var18 = var17.getR(); + var17.explode(); + var0.putClientProperty((java.lang.Object)var17, (java.lang.Object)(short)10); + var17.hit(); + int var23 = var17.getR(); + int var24 = var17.getType(); + var17.hit(); + java.awt.image.BufferedImage var27 = var17.loadImg(""); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var24 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var27); + + } + + public void test44() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test44"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + var0.setRequestFocusEnabled(false); + var0.reshape(100, 0, 100, 0); + javax.swing.event.AncestorListener[] var10 = var0.getAncestorListeners(); + SpaceWar.SpacePanel var11 = new SpaceWar.SpacePanel(); + float var12 = var11.getAlignmentX(); + SpaceWar.SpacePanel var13 = new SpaceWar.SpacePanel(); + float var14 = var13.getAlignmentX(); + var13.setVisible(false); + java.awt.Dimension var17 = var13.getPreferredSize(); + boolean var18 = var13.getVerifyInputWhenFocusTarget(); + java.awt.Component var21 = var13.findComponentAt(10, 1); + var11.addKeyListener((java.awt.event.KeyListener)var13); + java.awt.Cursor var23 = var11.getCursor(); + var0.setCursor(var23); + SpaceWar.SpacePanel var26 = new SpaceWar.SpacePanel(); + float var27 = var26.getAlignmentX(); + var26.setVisible(false); + boolean var30 = var26.isDoubleBuffered(); + var26.list(); + SpaceWar.SpacePanel var32 = new SpaceWar.SpacePanel(); + float var33 = var32.getAlignmentX(); + var32.setVisible(false); + boolean var36 = var32.isDoubleBuffered(); + java.awt.dnd.DropTarget var37 = var32.getDropTarget(); + var32.show(false); + java.awt.Rectangle var40 = var32.getVisibleRect(); + java.awt.Rectangle var41 = var26.getBounds(var40); + javax.swing.JToolTip var42 = var26.createToolTip(); + java.awt.Graphics var43 = var26.getGraphics(); + var26.setAutoscrolls(false); + boolean var46 = var26.requestFocusInWindow(); + javax.swing.InputMap var47 = var26.getInputMap(); + // The following exception was thrown during execution. + // This behavior will recorded for regression testing. + try { + var0.setInputMap(100, var47); + fail("Expected exception of type java.lang.IllegalArgumentException"); + } catch (java.lang.IllegalArgumentException e) { + // Expected exception. + } + + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var21); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var23); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var30 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var33 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var36 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var37); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var40); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var41); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var42); + + // Regression assertion (captures the current behavior of the code) + assertNull(var43); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var46 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var47); + + } + + public void test45() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test45"); + + + SpaceWar.Player var0 = new SpaceWar.Player(); + var0.increasePower(25); + int var3 = var0.getScore(); + var0.setRigth(true); + var0.loseLife(); + int var7 = var0.getPower(); + var0.setLife(0); + var0.setScore(100); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 24); + + } + + public void test46() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test46"); + + + SpaceWar.Player var0 = new SpaceWar.Player(); + var0.increasePower(25); + int var3 = var0.getR(); + int var4 = var0.getScore(); + var0.loseLife(); + int var6 = var0.getX(); + var0.loseLife(); + var0.setLeft(true); + var0.update(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == 25); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == 400); + + } + + public void test47() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test47"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + java.awt.Dimension var4 = var0.getPreferredSize(); + java.awt.Toolkit var5 = var0.getToolkit(); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + var6.setName(""); + int var9 = var6.getX(); + SpaceWar.SpacePanel var10 = new SpaceWar.SpacePanel(); + float var11 = var10.getAlignmentX(); + var10.setVisible(false); + var10.nextFocus(); + SpaceWar.SpacePanel var15 = new SpaceWar.SpacePanel(); + float var16 = var15.getAlignmentX(); + var15.setVisible(false); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + java.awt.Color var20 = var19.getBackground(); + var15.setForeground(var20); + var10.setBackground(var20); + var6.setBackground(var20); + var0.setForeground(var20); + SpaceWar.SpacePanel var25 = new SpaceWar.SpacePanel(); + float var26 = var25.getAlignmentX(); + var25.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var31 = new SpaceWar.SpacePanel(); + float var32 = var31.getAlignmentX(); + var31.setVisible(false); + java.awt.Dimension var35 = var31.getPreferredSize(); + var25.setMaximumSize(var35); + boolean var37 = var25.getVerifyInputWhenFocusTarget(); + javax.accessibility.AccessibleContext var38 = var25.getAccessibleContext(); + boolean var39 = var25.isDoubleBuffered(); + java.awt.Rectangle var40 = var25.getVisibleRect(); + var0.scrollRectToVisible(var40); + SpaceWar.SpacePanel var42 = new SpaceWar.SpacePanel(); + float var43 = var42.getAlignmentX(); + var42.setVisible(false); + java.awt.Dimension var46 = var42.getPreferredSize(); + java.awt.Toolkit var47 = var42.getToolkit(); + SpaceWar.SpacePanel var48 = new SpaceWar.SpacePanel(); + var48.setName(""); + int var51 = var48.getX(); + SpaceWar.SpacePanel var52 = new SpaceWar.SpacePanel(); + float var53 = var52.getAlignmentX(); + var52.setVisible(false); + var52.nextFocus(); + SpaceWar.SpacePanel var57 = new SpaceWar.SpacePanel(); + float var58 = var57.getAlignmentX(); + var57.setVisible(false); + SpaceWar.SpacePanel var61 = new SpaceWar.SpacePanel(); + java.awt.Color var62 = var61.getBackground(); + var57.setForeground(var62); + var52.setBackground(var62); + var48.setBackground(var62); + var42.setForeground(var62); + SpaceWar.SpacePanel var67 = new SpaceWar.SpacePanel(); + float var68 = var67.getAlignmentX(); + var67.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var73 = new SpaceWar.SpacePanel(); + float var74 = var73.getAlignmentX(); + var73.setVisible(false); + java.awt.Dimension var77 = var73.getPreferredSize(); + var67.setMaximumSize(var77); + boolean var79 = var67.getVerifyInputWhenFocusTarget(); + javax.accessibility.AccessibleContext var80 = var67.getAccessibleContext(); + boolean var81 = var67.isDoubleBuffered(); + java.awt.Rectangle var82 = var67.getVisibleRect(); + var42.scrollRectToVisible(var82); + var0.removeKeyListener((java.awt.event.KeyListener)var42); + var42.firePropertyChange("PanelUI", (short)1, (short)1); + int var89 = var42.getHeight(); + var42.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", 10L, 100L); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var4); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var32 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var35); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var38); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var39 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var40); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var43 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var46); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var47); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var51 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var53 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var58 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var62); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var68 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var74 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var77); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var79 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var80); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var81 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var82); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var89 == 0); + + } + + public void test48() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test48"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + java.awt.im.InputMethodRequests var3 = var0.getInputMethodRequests(); + var0.setDoubleBuffered(true); + var0.setInheritsPopupMenu(false); + var0.invalidate(); + var0.setRequestFocusEnabled(true); + SpaceWar.SpacePanel var11 = new SpaceWar.SpacePanel(); + float var12 = var11.getAlignmentX(); + var11.setVisible(false); + SpaceWar.SpacePanel var15 = new SpaceWar.SpacePanel(); + java.awt.Color var16 = var15.getBackground(); + var11.setForeground(var16); + SpaceWar.SpacePanel var18 = new SpaceWar.SpacePanel(); + float var19 = var18.getAlignmentX(); + var18.setVisible(false); + boolean var22 = var18.isDoubleBuffered(); + java.awt.dnd.DropTarget var23 = var18.getDropTarget(); + var18.show(false); + java.awt.Rectangle var26 = var18.getVisibleRect(); + var11.repaint(var26); + java.awt.FocusTraversalPolicy var28 = var11.getFocusTraversalPolicy(); + java.awt.im.InputMethodRequests var29 = var11.getInputMethodRequests(); + var11.layout(); + SpaceWar.SpacePanel var31 = new SpaceWar.SpacePanel(); + float var32 = var31.getAlignmentX(); + var31.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var37 = new SpaceWar.SpacePanel(); + float var38 = var37.getAlignmentX(); + var37.setVisible(false); + SpaceWar.SpacePanel var41 = new SpaceWar.SpacePanel(); + java.awt.Color var42 = var41.getBackground(); + var37.setForeground(var42); + var31.setBackground(var42); + var11.setForeground(var42); + int var46 = var11.getWidth(); + int var47 = var0.getComponentZOrder((java.awt.Component)var11); + java.awt.Color var48 = var11.getBackground(); + int var49 = var11.getY(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var22 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var23); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertNull(var28); + + // Regression assertion (captures the current behavior of the code) + assertNull(var29); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var32 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var38 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var42); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var46 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var47 == (-1)); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var48); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var49 == 0); + + } + + public void test49() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test49"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var6 = var0.getMouseListeners(); + int var7 = var0.getDebugGraphicsOptions(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + boolean var12 = var8.isDoubleBuffered(); + java.awt.dnd.DropTarget var13 = var8.getDropTarget(); + var8.show(false); + java.awt.Rectangle var16 = var8.getVisibleRect(); + var0.paintImmediately(var16); + java.awt.Rectangle var18 = var0.getBounds(); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + float var20 = var19.getAlignmentX(); + var19.setVisible(false); + boolean var23 = var19.isDoubleBuffered(); + java.awt.dnd.DropTarget var24 = var19.getDropTarget(); + var19.show(false); + boolean var27 = var19.isPaintingForPrint(); + SpaceWar.SpacePanel var28 = new SpaceWar.SpacePanel(); + float var29 = var28.getAlignmentX(); + var28.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var34 = var28.getMouseListeners(); + int var35 = var28.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var36 = var28.getInputMethodRequests(); + var19.addKeyListener((java.awt.event.KeyListener)var28); + SpaceWar.SpacePanel var38 = new SpaceWar.SpacePanel(); + float var39 = var38.getAlignmentX(); + var38.setVisible(false); + boolean var42 = var38.isDoubleBuffered(); + var38.list(); + float var44 = var38.getAlignmentY(); + boolean var45 = var28.isFocusCycleRoot((java.awt.Container)var38); + boolean var46 = var38.isEnabled(); + java.awt.Dimension var47 = var38.getMaximumSize(); + var38.setFocusCycleRoot(false); + java.awt.event.ComponentListener[] var50 = var38.getComponentListeners(); + boolean var51 = var38.isFocusCycleRoot(); + var38.show(); + SpaceWar.SpacePanel var53 = new SpaceWar.SpacePanel(); + float var54 = var53.getAlignmentX(); + var53.setVisible(false); + boolean var57 = var53.isDoubleBuffered(); + var53.list(); + SpaceWar.SpacePanel var59 = new SpaceWar.SpacePanel(); + float var60 = var59.getAlignmentX(); + var59.setVisible(false); + boolean var63 = var59.isDoubleBuffered(); + java.awt.dnd.DropTarget var64 = var59.getDropTarget(); + var59.show(false); + java.awt.Rectangle var67 = var59.getVisibleRect(); + java.awt.Rectangle var68 = var53.getBounds(var67); + javax.swing.JToolTip var69 = var53.createToolTip(); + var53.firePropertyChange("", false, false); + var53.revalidate(); + int var75 = var53.getComponentCount(); + var0.add((java.awt.Component)var38, (java.lang.Object)var75); + java.lang.String var77 = var38.getUIClassID(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var29 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var34); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var35 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var36); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var39 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var42 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var44 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var45 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var46 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var47); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var50); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var51 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var54 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var57 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var60 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var63 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var64); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var67); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var68); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var69); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var75 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var77 + "' != '" + "PanelUI"+ "'", var77.equals("PanelUI")); + + } + + public void test50() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test50"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + boolean var2 = var0.hasFocus(); + boolean var3 = var0.isPreferredSizeSet(); + int var4 = var0.getDebugGraphicsOptions(); + var0.setLocation(400, 24); + var0.setFocusTraversalPolicyProvider(false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var2 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0); + + } + + public void test51() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test51"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + java.awt.Dimension var4 = var0.getPreferredSize(); + java.awt.Toolkit var5 = var0.getToolkit(); + boolean var6 = var0.isFocusable(); + javax.swing.KeyStroke[] var7 = var0.getRegisteredKeyStrokes(); + java.awt.Component var10 = var0.getComponentAt(100, 100); + java.lang.Object var11 = var0.getTreeLock(); + boolean var14 = var0.inside(400, 0); + java.awt.event.MouseWheelListener[] var15 = var0.getMouseWheelListeners(); + var0.enableInputMethods(true); + SpaceWar.SpacePanel var18 = new SpaceWar.SpacePanel(); + float var19 = var18.getAlignmentX(); + var18.setVisible(false); + java.awt.Dimension var22 = var18.getPreferredSize(); + java.awt.Toolkit var23 = var18.getToolkit(); + boolean var24 = var18.isFocusable(); + javax.swing.KeyStroke[] var25 = var18.getRegisteredKeyStrokes(); + SpaceWar.SpacePanel var26 = new SpaceWar.SpacePanel(); + float var27 = var26.getAlignmentX(); + var26.setVisible(false); + var26.nextFocus(); + SpaceWar.SpacePanel var31 = new SpaceWar.SpacePanel(); + float var32 = var31.getAlignmentX(); + var31.setVisible(false); + SpaceWar.SpacePanel var35 = new SpaceWar.SpacePanel(); + java.awt.Color var36 = var35.getBackground(); + var31.setForeground(var36); + var26.setBackground(var36); + var18.setBackground(var36); + var0.addKeyListener((java.awt.event.KeyListener)var18); + var0.repaint(399, 24, 400, 25); + boolean var46 = var0.getAutoscrolls(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var4); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var23); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var24 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var25); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var32 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var36); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var46 == false); + + } + + public void test52() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test52"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + var0.enable(false); + boolean var7 = var0.getFocusTraversalKeysEnabled(); + var0.setToolTipText("PanelUI"); + javax.swing.border.Border var10 = var0.getBorder(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var10); + + } + + public void test53() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test53"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + java.awt.im.InputMethodRequests var3 = var0.getInputMethodRequests(); + var0.setDoubleBuffered(true); + var0.setInheritsPopupMenu(false); + boolean var8 = var0.isFocusTraversalPolicySet(); + var0.transferFocusUpCycle(); + SpaceWar.SpacePanel var10 = new SpaceWar.SpacePanel(); + float var11 = var10.getAlignmentX(); + var10.setVisible(false); + boolean var14 = var10.isDoubleBuffered(); + java.awt.dnd.DropTarget var15 = var10.getDropTarget(); + var10.show(false); + java.awt.Rectangle var18 = var10.getVisibleRect(); + java.awt.image.BufferedImage var20 = var10.loadImg("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + java.awt.ComponentOrientation var21 = var10.getComponentOrientation(); + java.awt.Component var22 = var0.add((java.awt.Component)var10); + var0.enable(); + boolean var24 = javax.swing.JComponent.isLightweightComponent((java.awt.Component)var0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var21); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var24 == false); + + } + + public void test54() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test54"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + boolean var4 = var0.inside(0, (-1)); + var0.transferFocusUpCycle(); + java.awt.Container var6 = var0.getParent(); + boolean var7 = var0.isMaximumSizeSet(); + java.awt.event.InputMethodListener[] var8 = var0.getInputMethodListeners(); + javax.swing.TransferHandler var9 = var0.getTransferHandler(); + javax.swing.JPopupMenu var10 = var0.getComponentPopupMenu(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertNull(var9); + + // Regression assertion (captures the current behavior of the code) + assertNull(var10); + + } + + public void test55() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test55"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + java.awt.event.MouseMotionListener[] var6 = var0.getMouseMotionListeners(); + java.awt.event.ComponentListener[] var7 = var0.getComponentListeners(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + var8.nextFocus(); + var8.repaint(1L); + SpaceWar.SpacePanel var15 = new SpaceWar.SpacePanel(); + float var16 = var15.getAlignmentX(); + var15.setVisible(false); + boolean var19 = var15.isDoubleBuffered(); + var15.list(); + SpaceWar.SpacePanel var21 = new SpaceWar.SpacePanel(); + float var22 = var21.getAlignmentX(); + var21.setVisible(false); + boolean var25 = var21.isDoubleBuffered(); + java.awt.dnd.DropTarget var26 = var21.getDropTarget(); + var21.show(false); + java.awt.Rectangle var29 = var21.getVisibleRect(); + java.awt.Rectangle var30 = var15.getBounds(var29); + var8.setBounds(var30); + var0.paintImmediately(var30); + java.awt.Point var33 = var0.getMousePosition(); + javax.swing.border.Border var34 = var0.getBorder(); + boolean var35 = var0.isEnabled(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var22 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var29); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var30); + + // Regression assertion (captures the current behavior of the code) + assertNull(var33); + + // Regression assertion (captures the current behavior of the code) + assertNull(var34); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var35 == true); + + } + + public void test56() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test56"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.updateUI(); + var0.enableInputMethods(true); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + boolean var10 = var8.hasFocus(); + java.awt.Insets var11 = var8.getInsets(); + java.awt.Insets var12 = var0.getInsets(var11); + boolean var13 = var0.isManagingFocus(); + java.awt.Image var16 = var0.createImage(1, 10); + java.awt.Rectangle var17 = var0.bounds(); + var0.transferFocusBackward(); + var0.revalidate(); + var0.enable(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var17); + + } + + public void test57() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test57"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + var0.show(false); + boolean var8 = var0.isPaintingForPrint(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var15 = var9.getMouseListeners(); + int var16 = var9.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var17 = var9.getInputMethodRequests(); + var0.addKeyListener((java.awt.event.KeyListener)var9); + var9.repaint(); + java.awt.Point var20 = var9.location(); + java.awt.Container var21 = var9.getFocusCycleRootAncestor(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertNull(var21); + + } + + public void test58() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test58"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + var0.list(); + float var6 = var0.getAlignmentY(); + java.awt.event.ComponentListener[] var7 = var0.getComponentListeners(); + java.awt.Component var8 = var0.getNextFocusableComponent(); + boolean var9 = var0.isManagingFocus(); + javax.swing.border.Border var10 = var0.getBorder(); + java.lang.Object var11 = var0.getTreeLock(); + SpaceWar.SpacePanel var12 = new SpaceWar.SpacePanel(); + var12.setName(""); + var12.enable(true); + var12.enable(); + java.awt.Point var18 = var12.location(); + var12.repaint(0, 3, (-1), 1); + var12.setBounds(25, 100, 1, 0); + var0.addKeyListener((java.awt.event.KeyListener)var12); + java.awt.event.FocusListener[] var30 = var0.getFocusListeners(); + java.awt.Container var31 = var0.getFocusCycleRootAncestor(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var30); + + // Regression assertion (captures the current behavior of the code) + assertNull(var31); + + } + + public void test59() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test59"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + boolean var6 = var0.isFocusCycleRoot(); + SpaceWar.SpacePanel var7 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + java.awt.Color var9 = var8.getBackground(); + SpaceWar.SpacePanel var10 = new SpaceWar.SpacePanel(); + float var11 = var10.getAlignmentX(); + var10.setVisible(false); + var10.nextFocus(); + var10.updateUI(); + var10.enableInputMethods(true); + var7.add((java.awt.Component)var8, (java.lang.Object)true); + java.awt.Dimension var19 = var8.getPreferredSize(); + var0.setSize(var19); + var0.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", (-1), 10); + SpaceWar.SpacePanel var25 = new SpaceWar.SpacePanel(); + float var26 = var25.getAlignmentX(); + var25.setVisible(false); + var25.nextFocus(); + var25.repaint(1L); + SpaceWar.SpacePanel var32 = new SpaceWar.SpacePanel(); + float var33 = var32.getAlignmentX(); + var32.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var38 = new SpaceWar.SpacePanel(); + float var39 = var38.getAlignmentX(); + var38.setVisible(false); + java.awt.Dimension var42 = var38.getPreferredSize(); + var32.setMaximumSize(var42); + var25.setPreferredSize(var42); + var0.setSize(var42); + SpaceWar.SpacePanel var47 = new SpaceWar.SpacePanel(); + float var48 = var47.getAlignmentX(); + var47.setVisible(false); + SpaceWar.SpacePanel var51 = new SpaceWar.SpacePanel(); + java.awt.Color var52 = var51.getBackground(); + var47.setForeground(var52); + javax.swing.InputMap var54 = var47.getInputMap(); + var0.setInputMap(0, var54); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var9); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var33 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var39 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var42); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var48 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var52); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var54); + + } + + public void test60() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test60"); + + + SpaceWar.PowerUp var3 = new SpaceWar.PowerUp(499, 495.44236387443226d, 0.0d); + boolean var4 = var3.update(); + int var5 = var3.getType(); + int var6 = var3.getType(); + boolean var7 = var3.update(); + double var8 = var3.getX(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == 499); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == 499); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 495.44236387443226d); + + } + + public void test61() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test61"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.updateUI(); + var0.enableInputMethods(true); + int var8 = var0.getY(); + boolean var9 = var0.isDisplayable(); + SpaceWar.SpacePanel var10 = new SpaceWar.SpacePanel(); + float var11 = var10.getAlignmentX(); + var10.setVisible(false); + var10.setInheritsPopupMenu(false); + var10.move(10, 10); + var10.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + java.awt.Rectangle var23 = var10.bounds(); + java.awt.image.ColorModel var24 = var10.getColorModel(); + var0.setComponentZOrder((java.awt.Component)var10, 0); + java.awt.GraphicsConfiguration var27 = var10.getGraphicsConfiguration(); + var10.setVerifyInputWhenFocusTarget(true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var23); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertNull(var27); + + } + + public void test62() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test62"); + + + SpaceWar.Player var0 = new SpaceWar.Player(); + int var1 = var0.getPower(); + int var2 = var0.getPowerLevel(); + var0.setLeft(false); + int var5 = var0.getRequiredPower(); + var0.setFiring(false); + int var8 = var0.getLives(); + int var9 = var0.getPowerLevel(); + int var10 = var0.getPower(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var2 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == 1); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 3); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0); + + } + + public void test63() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test63"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.updateUI(); + java.util.Locale var6 = var0.getLocale(); + var0.paintImmediately(25, 100, 3, 0); + boolean var12 = var0.isCursorSet(); + boolean var13 = var0.isCursorSet(); + boolean var14 = var0.isFocusCycleRoot(); + javax.swing.InputMap var15 = var0.getInputMap(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + } + + public void test64() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test64"); + + + SpaceWar.Bullet var3 = new SpaceWar.Bullet(495.44236387443226d, 25, 0); + boolean var4 = var3.update(); + double var5 = var3.getR(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == 5.0d); + + } + + public void test65() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test65"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + var0.show(false); + boolean var8 = var0.isPaintingForPrint(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var15 = var9.getMouseListeners(); + int var16 = var9.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var17 = var9.getInputMethodRequests(); + var0.addKeyListener((java.awt.event.KeyListener)var9); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + float var20 = var19.getAlignmentX(); + var19.setVisible(false); + boolean var23 = var19.isDoubleBuffered(); + var19.list(); + float var25 = var19.getAlignmentY(); + boolean var26 = var9.isFocusCycleRoot((java.awt.Container)var19); + SpaceWar.SpacePanel var28 = new SpaceWar.SpacePanel(); + float var29 = var28.getAlignmentX(); + var28.setVisible(false); + var28.nextFocus(); + var28.updateUI(); + java.awt.Component var34 = var9.add("", (java.awt.Component)var28); + java.lang.Object var35 = var34.getTreeLock(); + SpaceWar.SpacePanel var36 = new SpaceWar.SpacePanel(); + float var37 = var36.getAlignmentX(); + var36.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var42 = new SpaceWar.SpacePanel(); + float var43 = var42.getAlignmentX(); + var42.setVisible(false); + java.awt.Dimension var46 = var42.getPreferredSize(); + var36.setMaximumSize(var46); + boolean var48 = var36.getVerifyInputWhenFocusTarget(); + javax.accessibility.AccessibleContext var49 = var36.getAccessibleContext(); + boolean var50 = var36.isDoubleBuffered(); + boolean var51 = var36.getAutoscrolls(); + var36.repaint(10L, (-1), 25, (-1), 100); + var36.updateUI(); + boolean var59 = var36.requestDefaultFocus(); + SpaceWar.SpacePanel var60 = new SpaceWar.SpacePanel(); + float var61 = var60.getAlignmentX(); + var60.setVisible(false); + boolean var64 = var60.isDoubleBuffered(); + SpaceWar.SpacePanel var65 = new SpaceWar.SpacePanel(); + float var66 = var65.getAlignmentX(); + var65.setVisible(false); + var65.nextFocus(); + var65.reshape((-1), 1, (-1), 10); + var65.disable(); + boolean var76 = var65.isFocusable(); + int var77 = var65.getHeight(); + var60.setNextFocusableComponent((java.awt.Component)var65); + SpaceWar.SpacePanel var79 = new SpaceWar.SpacePanel(); + float var80 = var79.getAlignmentX(); + var79.setVisible(false); + var79.nextFocus(); + SpaceWar.SpacePanel var84 = new SpaceWar.SpacePanel(); + float var85 = var84.getAlignmentX(); + var84.setVisible(false); + SpaceWar.SpacePanel var88 = new SpaceWar.SpacePanel(); + java.awt.Color var89 = var88.getBackground(); + var84.setForeground(var89); + var79.setBackground(var89); + java.awt.Component var92 = var79.getNextFocusableComponent(); + float var93 = var79.getAlignmentY(); + java.awt.event.MouseListener[] var94 = var79.getMouseListeners(); + java.awt.Point var95 = var79.location(); + java.awt.Point var96 = var60.getLocation(var95); + java.awt.Point var97 = var36.getLocation(var95); + var34.setLocation(var97); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var29 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var34); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var35); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var43 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var46); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var48 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var49); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var50 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var51 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var59 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var61 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var64 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var66 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var76 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var77 == 10); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var80 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var85 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var89); + + // Regression assertion (captures the current behavior of the code) + assertNull(var92); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var93 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var94); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var95); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var96); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var97); + + } + + public void test66() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test66"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + var0.setRequestFocusEnabled(false); + var0.setIgnoreRepaint(false); + java.lang.String var7 = var0.toString(); + java.awt.Color var8 = var0.getBackground(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.setVisible(false); + java.awt.Dimension var13 = var9.getPreferredSize(); + java.awt.Toolkit var14 = var9.getToolkit(); + java.awt.Toolkit var15 = var9.getToolkit(); + SpaceWar.Player var16 = new SpaceWar.Player(); + var16.increasePower(25); + int var19 = var16.getScore(); + var16.setRigth(true); + var16.loseLife(); + var0.putClientProperty((java.lang.Object)var9, (java.lang.Object)var16); + int var24 = var16.getPowerLevel(); + var16.update(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var7 + "' != '" + "SpaceWar.SpacePanel[,0,0,0var7,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"+ "'", var7.equals("SpaceWar.SpacePanel[,0,0,0var7,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]")); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var24 == 1); + + } + + public void test67() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test67"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.setInheritsPopupMenu(false); + var0.setFocusTraversalPolicyProvider(true); + boolean var10 = var0.inside(25, 3); + SpaceWar.SpacePanel var11 = new SpaceWar.SpacePanel(); + float var12 = var11.getAlignmentX(); + var11.setVisible(false); + boolean var15 = var11.isDoubleBuffered(); + java.awt.dnd.DropTarget var16 = var11.getDropTarget(); + var11.show(false); + boolean var19 = var11.isPaintingForPrint(); + SpaceWar.SpacePanel var20 = new SpaceWar.SpacePanel(); + float var21 = var20.getAlignmentX(); + SpaceWar.SpacePanel var22 = new SpaceWar.SpacePanel(); + float var23 = var22.getAlignmentX(); + var22.setVisible(false); + java.awt.Dimension var26 = var22.getPreferredSize(); + boolean var27 = var22.getVerifyInputWhenFocusTarget(); + java.awt.Component var30 = var22.findComponentAt(10, 1); + var20.addKeyListener((java.awt.event.KeyListener)var22); + java.awt.Dimension var32 = var22.getMinimumSize(); + var11.setMinimumSize(var32); + var0.setPreferredSize(var32); + boolean var36 = var0.requestFocus(true); + var0.reshape((-1), 10, 24, 0); + java.awt.event.MouseWheelListener[] var42 = var0.getMouseWheelListeners(); + var0.setLocation(2, 400); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var30); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var32); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var36 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var42); + + } + + public void test68() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test68"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + var0.enable(false); + java.awt.Container var7 = var0.getTopLevelAncestor(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + boolean var12 = var8.isDoubleBuffered(); + var8.list(); + SpaceWar.SpacePanel var14 = new SpaceWar.SpacePanel(); + float var15 = var14.getAlignmentX(); + var14.setVisible(false); + boolean var18 = var14.isDoubleBuffered(); + java.awt.dnd.DropTarget var19 = var14.getDropTarget(); + var14.show(false); + java.awt.Rectangle var22 = var14.getVisibleRect(); + java.awt.Rectangle var23 = var8.getBounds(var22); + var0.computeVisibleRect(var22); + var0.removeNotify(); + java.awt.GraphicsConfiguration var26 = var0.getGraphicsConfiguration(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var23); + + // Regression assertion (captures the current behavior of the code) + assertNull(var26); + + } + + public void test69() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test69"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.setInheritsPopupMenu(false); + var0.setFocusTraversalPolicyProvider(true); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + boolean var12 = var8.isDoubleBuffered(); + var8.list(); + SpaceWar.SpacePanel var14 = new SpaceWar.SpacePanel(); + float var15 = var14.getAlignmentX(); + var14.setVisible(false); + boolean var18 = var14.isDoubleBuffered(); + java.awt.dnd.DropTarget var19 = var14.getDropTarget(); + var14.show(false); + java.awt.Rectangle var22 = var14.getVisibleRect(); + java.awt.Rectangle var23 = var8.getBounds(var22); + javax.swing.JToolTip var24 = var8.createToolTip(); + var0.removeKeyListener((java.awt.event.KeyListener)var8); + var0.setFocusTraversalKeysEnabled(true); + javax.swing.KeyStroke[] var28 = var0.getRegisteredKeyStrokes(); + java.lang.String var29 = var0.getName(); + java.lang.String var30 = var0.getName(); + boolean var31 = var0.getVerifyInputWhenFocusTarget(); + var0.setAlignmentX((-1.0f)); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var23); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var28); + + // Regression assertion (captures the current behavior of the code) + assertNull(var29); + + // Regression assertion (captures the current behavior of the code) + assertNull(var30); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var31 == true); + + } + + public void test70() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test70"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + var0.setRequestFocusEnabled(false); + var0.reshape(100, 0, 100, 0); + var0.requestFocus(); + java.awt.Rectangle var11 = var0.getVisibleRect(); + java.awt.Rectangle var12 = var0.getBounds(); + java.awt.im.InputMethodRequests var13 = var0.getInputMethodRequests(); + boolean var14 = var0.requestFocusInWindow(); + java.awt.Point var16 = var0.getMousePosition(false); + var0.setDebugGraphicsOptions(1); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + float var20 = var19.getAlignmentX(); + var19.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var25 = var19.getUI(); + var0.setUI(var25); + java.awt.event.FocusListener[] var27 = var0.getFocusListeners(); + boolean var28 = var0.isVisible(); + var0.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=1.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", (short)10, (short)10); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var25); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var27); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var28 == true); + + } + + public void test71() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test71"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + java.awt.im.InputMethodRequests var3 = var0.getInputMethodRequests(); + int var4 = var0.countComponents(); + java.awt.event.ComponentListener[] var5 = var0.getComponentListeners(); + var0.transferFocusBackward(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + boolean var12 = var8.isDoubleBuffered(); + var8.enable(false); + SpaceWar.SpacePanel var15 = new SpaceWar.SpacePanel(); + float var16 = var15.getAlignmentX(); + boolean var17 = var15.hasFocus(); + java.awt.Insets var18 = var15.getInsets(); + java.awt.Rectangle var19 = var15.bounds(); + var8.repaint(var19); + java.awt.Component var21 = var0.add("", (java.awt.Component)var8); + java.awt.Component.BaselineResizeBehavior var22 = var8.getBaselineResizeBehavior(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var21); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var22); + + } + + public void test72() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test72"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + var0.show(false); + boolean var8 = var0.isPaintingForPrint(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var15 = var9.getMouseListeners(); + int var16 = var9.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var17 = var9.getInputMethodRequests(); + var0.addKeyListener((java.awt.event.KeyListener)var9); + java.awt.Container var19 = var9.getFocusCycleRootAncestor(); + SpaceWar.SpacePanel var20 = new SpaceWar.SpacePanel(); + float var21 = var20.getAlignmentX(); + var20.setVisible(false); + var20.nextFocus(); + var20.reshape((-1), 1, (-1), 10); + var20.disable(); + java.awt.LayoutManager var31 = var20.getLayout(); + java.awt.Container var32 = var20.getParent(); + java.beans.PropertyChangeListener[] var34 = var20.getPropertyChangeListeners("SpaceWar.SpacePanel[,0,0,0x0,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + var9.setNextFocusableComponent((java.awt.Component)var20); + var20.removeNotify(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var31); + + // Regression assertion (captures the current behavior of the code) + assertNull(var32); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var34); + + } + + public void test73() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test73"); + + + SpaceWar.Player var0 = new SpaceWar.Player(); + int var1 = var0.getR(); + var0.setRigth(false); + var0.setLife(100); + var0.setDown(false); + var0.setFiring(true); + var0.increasePower(400); + int var12 = var0.getPowerLevel(); + int var13 = var0.getRequiredPower(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 25); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == 1); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == 2); + + } + + public void test74() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test74"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + var0.list(); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + float var7 = var6.getAlignmentX(); + var6.setVisible(false); + boolean var10 = var6.isDoubleBuffered(); + java.awt.dnd.DropTarget var11 = var6.getDropTarget(); + var6.show(false); + java.awt.Rectangle var14 = var6.getVisibleRect(); + java.awt.Rectangle var15 = var0.getBounds(var14); + javax.swing.JToolTip var16 = var0.createToolTip(); + java.awt.Dimension var17 = var0.minimumSize(); + SpaceWar.SpacePanel var18 = new SpaceWar.SpacePanel(); + float var19 = var18.getAlignmentX(); + var18.setVisible(false); + var18.setInheritsPopupMenu(false); + var18.setFocusTraversalPolicyProvider(true); + java.awt.Container var26 = var18.getFocusCycleRootAncestor(); + SpaceWar.SpacePanel var27 = new SpaceWar.SpacePanel(); + float var28 = var27.getAlignmentX(); + var27.removeNotify(); + SpaceWar.SpacePanel var30 = new SpaceWar.SpacePanel(); + float var31 = var30.getAlignmentX(); + var30.setVisible(false); + boolean var34 = var30.isDoubleBuffered(); + var30.list(); + float var36 = var30.getAlignmentY(); + java.awt.Insets var37 = var30.getInsets(); + java.awt.Insets var38 = var27.getInsets(var37); + java.awt.Insets var39 = var18.getInsets(var38); + java.awt.Insets var40 = var0.getInsets(var38); + java.awt.ComponentOrientation var41 = var0.getComponentOrientation(); + SpaceWar.SpacePanel var42 = new SpaceWar.SpacePanel(); + float var43 = var42.getAlignmentX(); + var42.setVisible(false); + SpaceWar.SpacePanel var46 = new SpaceWar.SpacePanel(); + java.awt.Color var47 = var46.getBackground(); + var42.setForeground(var47); + SpaceWar.SpacePanel var49 = new SpaceWar.SpacePanel(); + float var50 = var49.getAlignmentX(); + var49.setVisible(false); + boolean var53 = var49.isDoubleBuffered(); + java.awt.dnd.DropTarget var54 = var49.getDropTarget(); + var49.show(false); + java.awt.Rectangle var57 = var49.getVisibleRect(); + var42.repaint(var57); + java.awt.FocusTraversalPolicy var59 = var42.getFocusTraversalPolicy(); + javax.swing.TransferHandler var60 = var42.getTransferHandler(); + javax.swing.JToolTip var61 = var42.createToolTip(); + boolean var62 = var61.isValidateRoot(); + SpaceWar.SpacePanel var63 = new SpaceWar.SpacePanel(); + float var64 = var63.getAlignmentX(); + var63.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var69 = var63.getUI(); + java.awt.im.InputMethodRequests var70 = var63.getInputMethodRequests(); + SpaceWar.SpacePanel var71 = new SpaceWar.SpacePanel(); + float var72 = var71.getAlignmentX(); + var71.setVisible(false); + var71.nextFocus(); + var71.updateUI(); + var71.enableInputMethods(true); + var71.setSize((-1), 1); + SpaceWar.SpacePanel var82 = new SpaceWar.SpacePanel(); + var82.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var63.add((java.awt.Component)var71, (java.lang.Object)"SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + java.awt.event.KeyListener[] var88 = var63.getKeyListeners(); + var63.reshape(10, 100, 3, 3); + javax.accessibility.AccessibleContext var94 = var63.getAccessibleContext(); + java.awt.Rectangle var95 = var63.getVisibleRect(); + var61.paintImmediately(var95); + var0.repaint(var95); + java.awt.Color var98 = var0.getForeground(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var28 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var31 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var34 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var36 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var37); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var38); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var39); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var40); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var41); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var43 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var47); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var50 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var53 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var54); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var57); + + // Regression assertion (captures the current behavior of the code) + assertNull(var59); + + // Regression assertion (captures the current behavior of the code) + assertNull(var60); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var61); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var62 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var64 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var69); + + // Regression assertion (captures the current behavior of the code) + assertNull(var70); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var72 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var88); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var94); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var95); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var98); + + } + + public void test75() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test75"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + java.awt.im.InputMethodRequests var3 = var0.getInputMethodRequests(); + var0.setDoubleBuffered(true); + var0.show(false); + var0.setAlignmentY(100.0f); + SpaceWar.SpacePanel var10 = new SpaceWar.SpacePanel(); + float var11 = var10.getAlignmentX(); + var10.setVisible(false); + SpaceWar.SpacePanel var14 = new SpaceWar.SpacePanel(); + java.awt.Color var15 = var14.getBackground(); + var10.setForeground(var15); + SpaceWar.SpacePanel var17 = new SpaceWar.SpacePanel(); + float var18 = var17.getAlignmentX(); + var17.setVisible(false); + boolean var21 = var17.isDoubleBuffered(); + java.awt.dnd.DropTarget var22 = var17.getDropTarget(); + var17.show(false); + java.awt.Rectangle var25 = var17.getVisibleRect(); + var10.repaint(var25); + java.awt.FocusTraversalPolicy var27 = var10.getFocusTraversalPolicy(); + java.awt.im.InputMethodRequests var28 = var10.getInputMethodRequests(); + var10.layout(); + boolean var30 = var10.isFocusTraversalPolicyProvider(); + java.awt.Insets var31 = var10.insets(); + java.awt.Dimension var32 = var10.getMinimumSize(); + java.awt.Dimension var33 = var0.getSize(var32); + java.awt.Component var36 = var0.locate(10, 400); + boolean var37 = var0.isFocusTraversalPolicySet(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var25); + + // Regression assertion (captures the current behavior of the code) + assertNull(var27); + + // Regression assertion (captures the current behavior of the code) + assertNull(var28); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var30 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var31); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var32); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var33); + + // Regression assertion (captures the current behavior of the code) + assertNull(var36); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == false); + + } + + public void test76() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test76"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var6 = var0.getMouseListeners(); + int var7 = var0.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var8 = var0.getInputMethodRequests(); + var0.removeNotify(); + var0.enable(); + SpaceWar.SpacePanel var11 = new SpaceWar.SpacePanel(); + java.awt.Color var12 = var11.getBackground(); + boolean var15 = var11.inside(0, (-1)); + var11.transferFocusUpCycle(); + java.lang.String var17 = var11.getName(); + boolean var18 = var0.isFocusCycleRoot((java.awt.Container)var11); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + java.awt.Color var20 = var19.getBackground(); + var19.repaint(); + var19.setRequestFocusEnabled(false); + var19.reshape(100, 0, 100, 0); + var19.requestFocus(); + var19.firePropertyChange("hi!", '4', ' '); + java.awt.Point var34 = var19.getLocation(); + java.awt.Component var35 = var11.getComponentAt(var34); + java.beans.VetoableChangeListener[] var36 = var11.getVetoableChangeListeners(); + var11.removeAll(); + java.awt.event.HierarchyListener[] var38 = var11.getHierarchyListeners(); + var11.repaint(500, 499, 10, 25); + boolean var44 = var11.isFocusable(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var34); + + // Regression assertion (captures the current behavior of the code) + assertNull(var35); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var36); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var38); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var44 == true); + + } + + public void test77() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test77"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + var0.show(false); + boolean var8 = var0.isPaintingForPrint(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var15 = var9.getMouseListeners(); + int var16 = var9.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var17 = var9.getInputMethodRequests(); + var0.addKeyListener((java.awt.event.KeyListener)var9); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + float var20 = var19.getAlignmentX(); + var19.setVisible(false); + boolean var23 = var19.isDoubleBuffered(); + var19.list(); + float var25 = var19.getAlignmentY(); + boolean var26 = var9.isFocusCycleRoot((java.awt.Container)var19); + boolean var27 = var19.isEnabled(); + java.awt.Dimension var28 = var19.getMaximumSize(); + var19.setName("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + SpaceWar.SpacePanel var31 = new SpaceWar.SpacePanel(); + float var32 = var31.getAlignmentX(); + SpaceWar.SpacePanel var33 = new SpaceWar.SpacePanel(); + float var34 = var33.getAlignmentX(); + var33.setVisible(false); + java.awt.Dimension var37 = var33.getPreferredSize(); + boolean var38 = var33.getVerifyInputWhenFocusTarget(); + java.awt.Component var41 = var33.findComponentAt(10, 1); + var31.addKeyListener((java.awt.event.KeyListener)var33); + boolean var43 = var33.getFocusTraversalKeysEnabled(); + var33.requestFocus(); + var33.layout(); + var19.remove((java.awt.Component)var33); + float var47 = var19.getAlignmentY(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var28); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var32 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var34 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var37); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var38 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var41); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var43 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var47 == 0.5f); + + } + + public void test78() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test78"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var6 = var0.getUI(); + java.awt.im.InputMethodRequests var7 = var0.getInputMethodRequests(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + var8.nextFocus(); + var8.updateUI(); + var8.enableInputMethods(true); + var8.setSize((-1), 1); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + var19.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var0.add((java.awt.Component)var8, (java.lang.Object)"SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + SpaceWar.SpacePanel var25 = new SpaceWar.SpacePanel(); + float var26 = var25.getAlignmentX(); + var25.setVisible(false); + java.awt.Dimension var29 = var25.getPreferredSize(); + java.awt.Toolkit var30 = var25.getToolkit(); + java.awt.Toolkit var31 = var25.getToolkit(); + java.awt.Component var32 = var8.add((java.awt.Component)var25); + var8.setDebugGraphicsOptions(0); + java.awt.im.InputMethodRequests var35 = var8.getInputMethodRequests(); + SpaceWar.SpacePanel var36 = new SpaceWar.SpacePanel(); + java.awt.Color var37 = var36.getBackground(); + var8.setForeground(var37); + SpaceWar.SpacePanel var39 = new SpaceWar.SpacePanel(); + java.awt.Color var40 = var39.getBackground(); + var39.repaint(); + java.awt.im.InputMethodRequests var42 = var39.getInputMethodRequests(); + int var43 = var39.countComponents(); + java.awt.event.ComponentListener[] var44 = var39.getComponentListeners(); + var39.removeNotify(); + javax.swing.InputMap var46 = var39.getInputMap(); + SpaceWar.SpacePanel var47 = new SpaceWar.SpacePanel(); + float var48 = var47.getAlignmentX(); + var47.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var53 = new SpaceWar.SpacePanel(); + float var54 = var53.getAlignmentX(); + var53.setVisible(false); + SpaceWar.SpacePanel var57 = new SpaceWar.SpacePanel(); + java.awt.Color var58 = var57.getBackground(); + var53.setForeground(var58); + var47.setBackground(var58); + java.awt.Point var61 = var47.location(); + var39.setLocation(var61); + boolean var63 = var8.contains(var61); + int var64 = var8.getHeight(); + boolean var65 = var8.isForegroundSet(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var29); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var30); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var31); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var32); + + // Regression assertion (captures the current behavior of the code) + assertNull(var35); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var37); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var40); + + // Regression assertion (captures the current behavior of the code) + assertNull(var42); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var43 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var44); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var46); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var48 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var54 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var58); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var61); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var63 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var64 == 1); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var65 == true); + + } + + public void test79() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test79"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + var0.enable(false); + SpaceWar.SpacePanel var7 = new SpaceWar.SpacePanel(); + float var8 = var7.getAlignmentX(); + boolean var9 = var7.hasFocus(); + java.awt.Insets var10 = var7.getInsets(); + java.awt.Rectangle var11 = var7.bounds(); + var0.repaint(var11); + boolean var13 = var0.hasFocus(); + float var14 = var0.getAlignmentX(); + boolean var15 = var0.isCursorSet(); + java.beans.VetoableChangeListener[] var16 = var0.getVetoableChangeListeners(); + var0.firePropertyChange("hi!", 0, 25); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + } + + public void test80() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test80"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.reshape((-1), 1, (-1), 10); + var0.disable(); + java.awt.LayoutManager var11 = var0.getLayout(); + java.awt.Container var12 = var0.getParent(); + boolean var13 = var0.isPaintingForPrint(); + SpaceWar.SpacePanel var14 = new SpaceWar.SpacePanel(); + float var15 = var14.getAlignmentX(); + var14.setVisible(false); + boolean var18 = var14.isDoubleBuffered(); + java.awt.dnd.DropTarget var19 = var14.getDropTarget(); + var14.show(false); + java.awt.Rectangle var22 = var14.getVisibleRect(); + java.awt.Toolkit var23 = var14.getToolkit(); + SpaceWar.SpacePanel var24 = new SpaceWar.SpacePanel(); + float var25 = var24.getAlignmentX(); + var24.setVisible(false); + boolean var28 = var24.isDoubleBuffered(); + var24.list(); + SpaceWar.SpacePanel var30 = new SpaceWar.SpacePanel(); + float var31 = var30.getAlignmentX(); + var30.setVisible(false); + boolean var34 = var30.isDoubleBuffered(); + java.awt.dnd.DropTarget var35 = var30.getDropTarget(); + var30.show(false); + java.awt.Rectangle var38 = var30.getVisibleRect(); + java.awt.Rectangle var39 = var24.getBounds(var38); + javax.swing.JToolTip var40 = var24.createToolTip(); + var24.firePropertyChange("", false, false); + var24.validate(); + SpaceWar.SpacePanel var46 = new SpaceWar.SpacePanel(); + float var47 = var46.getAlignmentX(); + var46.setVisible(false); + var46.nextFocus(); + var46.updateUI(); + var46.enableInputMethods(true); + java.lang.String var54 = var46.toString(); + var14.putClientProperty((java.lang.Object)var24, (java.lang.Object)var46); + SpaceWar.Player var56 = new SpaceWar.Player(); + int var57 = var56.getPower(); + var56.setLeft(true); + var56.increasePower(0); + int var62 = var56.getR(); + var56.setUp(false); + var56.setLeft(true); + var56.setUp(true); + int var69 = var56.getRequiredPower(); + var0.putClientProperty((java.lang.Object)var24, (java.lang.Object)var69); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var23); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var28 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var31 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var34 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var35); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var38); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var39); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var40); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var47 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var54 + "' != '" + "SpaceWar.SpacePanel[,0,0,0var54,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"+ "'", var54.equals("SpaceWar.SpacePanel[,0,0,0var54,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]")); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var57 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var62 == 25); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var69 == 1); + + } + + public void test81() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test81"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + var0.list(); + float var6 = var0.getAlignmentY(); + java.awt.event.ComponentListener[] var7 = var0.getComponentListeners(); + java.awt.Component var8 = var0.getNextFocusableComponent(); + boolean var9 = var0.isManagingFocus(); + javax.swing.border.Border var10 = var0.getBorder(); + java.lang.Object var11 = var0.getTreeLock(); + javax.swing.border.Border var12 = var0.getBorder(); + var0.setEnabled(false); + SpaceWar.SpacePanel var15 = new SpaceWar.SpacePanel(); + float var16 = var15.getAlignmentX(); + SpaceWar.SpacePanel var17 = new SpaceWar.SpacePanel(); + float var18 = var17.getAlignmentX(); + var17.setVisible(false); + java.awt.Dimension var21 = var17.getPreferredSize(); + boolean var22 = var17.getVerifyInputWhenFocusTarget(); + java.awt.Component var25 = var17.findComponentAt(10, 1); + var15.addKeyListener((java.awt.event.KeyListener)var17); + var17.repaint(100, (-1), (-1), 1); + java.awt.image.ColorModel var32 = var17.getColorModel(); + boolean var33 = var17.isFocusTraversalPolicyProvider(); + var17.show(false); + boolean var36 = var17.isManagingFocus(); + SpaceWar.SpacePanel var37 = new SpaceWar.SpacePanel(); + java.awt.Color var38 = var37.getBackground(); + var37.repaint(); + var37.setRequestFocusEnabled(false); + var37.reshape(100, 0, 100, 0); + var37.requestFocus(); + java.awt.Rectangle var48 = var37.getVisibleRect(); + java.awt.Rectangle var49 = var37.getBounds(); + java.awt.im.InputMethodRequests var50 = var37.getInputMethodRequests(); + boolean var51 = var37.requestFocusInWindow(); + java.awt.Point var53 = var37.getMousePosition(false); + var37.setDebugGraphicsOptions(1); + java.awt.Graphics var56 = var37.getGraphics(); + var17.paint(var56); + var0.paintComponents(var56); + var0.removeAll(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var21); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var22 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var25); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var32); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var33 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var36 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var38); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var48); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var49); + + // Regression assertion (captures the current behavior of the code) + assertNull(var50); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var51 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var53); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var56); + + } + + public void test82() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test82"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + java.awt.Dimension var4 = var0.getPreferredSize(); + boolean var5 = var0.getVerifyInputWhenFocusTarget(); + java.awt.Component var8 = var0.findComponentAt(10, 1); + boolean var9 = var0.requestDefaultFocus(); + var0.setVerifyInputWhenFocusTarget(true); + var0.setFocusTraversalKeysEnabled(false); + var0.invalidate(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var4); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == false); + + } + + public void test83() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test83"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.reshape((-1), 1, (-1), 10); + var0.disable(); + var0.show(); + SpaceWar.SpacePanel var12 = new SpaceWar.SpacePanel(); + float var13 = var12.getAlignmentX(); + var12.setVisible(false); + boolean var16 = var12.isDoubleBuffered(); + var12.list(); + SpaceWar.SpacePanel var18 = new SpaceWar.SpacePanel(); + float var19 = var18.getAlignmentX(); + var18.setVisible(false); + boolean var22 = var18.isDoubleBuffered(); + java.awt.dnd.DropTarget var23 = var18.getDropTarget(); + var18.show(false); + java.awt.Rectangle var26 = var18.getVisibleRect(); + java.awt.Rectangle var27 = var12.getBounds(var26); + javax.swing.JToolTip var28 = var12.createToolTip(); + var12.firePropertyChange("", false, false); + var12.validate(); + SpaceWar.SpacePanel var34 = new SpaceWar.SpacePanel(); + float var35 = var34.getAlignmentX(); + var34.setVisible(false); + boolean var38 = var34.isDoubleBuffered(); + java.awt.dnd.DropTarget var39 = var34.getDropTarget(); + var34.show(false); + boolean var42 = var34.isPaintingForPrint(); + SpaceWar.SpacePanel var43 = new SpaceWar.SpacePanel(); + float var44 = var43.getAlignmentX(); + var43.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var49 = var43.getMouseListeners(); + int var50 = var43.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var51 = var43.getInputMethodRequests(); + var34.addKeyListener((java.awt.event.KeyListener)var43); + var43.repaint(); + java.awt.Point var54 = var43.location(); + java.awt.Component var55 = var12.getComponentAt(var54); + java.awt.Point var56 = var0.getLocation(var54); + var0.setAlignmentY(0.5f); + boolean var59 = var0.getVerifyInputWhenFocusTarget(); + boolean var60 = var0.isBackgroundSet(); + SpaceWar.SpacePanel var61 = new SpaceWar.SpacePanel(); + float var62 = var61.getAlignmentX(); + var61.setVisible(false); + boolean var65 = var61.isDoubleBuffered(); + java.awt.dnd.DropTarget var66 = var61.getDropTarget(); + var61.show(false); + java.awt.Rectangle var69 = var61.getVisibleRect(); + java.awt.image.BufferedImage var71 = var61.loadImg("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + java.awt.ComponentOrientation var72 = var61.getComponentOrientation(); + boolean var73 = var0.isAncestorOf((java.awt.Component)var61); + java.awt.Rectangle var74 = var61.getBounds(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var22 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var23); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var27); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var28); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var35 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var38 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var39); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var42 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var44 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var49); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var50 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var51); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var54); + + // Regression assertion (captures the current behavior of the code) + assertNull(var55); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var56); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var59 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var60 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var62 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var65 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var66); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var69); + + // Regression assertion (captures the current behavior of the code) + assertNull(var71); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var72); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var73 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var74); + + } + + public void test84() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test84"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + var0.setRequestFocusEnabled(false); + var0.reshape(100, 0, 100, 0); + var0.requestFocus(); + var0.firePropertyChange("hi!", '4', ' '); + SpaceWar.Enemy var17 = new SpaceWar.Enemy(0, 100); + int var18 = var17.getR(); + var17.explode(); + var0.putClientProperty((java.lang.Object)var17, (java.lang.Object)(short)10); + boolean var23 = var0.requestFocus(false); + boolean var24 = var0.isFocusTraversalPolicyProvider(); + boolean var25 = var0.isFocusCycleRoot(); + java.lang.String var26 = var0.getUIClassID(); + SpaceWar.SpacePanel var27 = new SpaceWar.SpacePanel(); + float var28 = var27.getAlignmentX(); + var27.setVisible(false); + var27.nextFocus(); + var27.reshape((-1), 1, (-1), 10); + var27.disable(); + java.awt.LayoutManager var38 = var27.getLayout(); + java.awt.Container var39 = var27.getParent(); + boolean var40 = var27.isOptimizedDrawingEnabled(); + var27.enableInputMethods(true); + var27.setFocusTraversalKeysEnabled(false); + var0.addKeyListener((java.awt.event.KeyListener)var27); + var27.setLocation(399, (-1)); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var24 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var26 + "' != '" + "PanelUI"+ "'", var26.equals("PanelUI")); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var28 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var38); + + // Regression assertion (captures the current behavior of the code) + assertNull(var39); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var40 == true); + + } + + public void test85() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test85"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.reshape((-1), 1, (-1), 10); + SpaceWar.SpacePanel var10 = new SpaceWar.SpacePanel(); + java.awt.Color var11 = var10.getBackground(); + var10.repaint(); + var10.setRequestFocusEnabled(false); + var10.reshape(100, 0, 100, 0); + java.awt.Component var20 = var0.add((java.awt.Component)var10); + boolean var21 = var10.isCursorSet(); + var10.paintImmediately(3, 10, (-1), (-1)); + javax.swing.plaf.PanelUI var27 = var10.getUI(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var27); + + } + + public void test86() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test86"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + var0.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + javax.swing.plaf.PanelUI var5 = var0.getUI(); + java.awt.Color var6 = var0.getBackground(); + var0.removeAll(); + int var8 = var0.getHeight(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.removeNotify(); + SpaceWar.SpacePanel var12 = new SpaceWar.SpacePanel(); + float var13 = var12.getAlignmentX(); + var12.setVisible(false); + boolean var16 = var12.isDoubleBuffered(); + var12.list(); + float var18 = var12.getAlignmentY(); + java.awt.Insets var19 = var12.getInsets(); + java.awt.Insets var20 = var9.getInsets(var19); + boolean var21 = var9.isDoubleBuffered(); + java.awt.Component var22 = var0.add((java.awt.Component)var9); + boolean var23 = var0.isBackgroundSet(); + java.awt.event.MouseListener[] var24 = var0.getMouseListeners(); + var0.list(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var24); + + } + + public void test87() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test87"); + + + SpaceWar.Enemy var2 = new SpaceWar.Enemy((-1), 2); + int var3 = var2.getType(); + var2.hit(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == (-1)); + + } + + public void test88() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test88"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.setInheritsPopupMenu(false); + var0.move(10, 10); + var0.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var0.removeAll(); + java.awt.Point var14 = var0.location(); + SpaceWar.SpacePanel var15 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var16 = new SpaceWar.SpacePanel(); + java.awt.Color var17 = var16.getBackground(); + SpaceWar.SpacePanel var18 = new SpaceWar.SpacePanel(); + float var19 = var18.getAlignmentX(); + var18.setVisible(false); + var18.nextFocus(); + var18.updateUI(); + var18.enableInputMethods(true); + var15.add((java.awt.Component)var16, (java.lang.Object)true); + java.awt.Dimension var27 = var16.getPreferredSize(); + var16.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", (-1.0f), 100.0f); + SpaceWar.SpacePanel var32 = new SpaceWar.SpacePanel(); + float var33 = var32.getAlignmentX(); + var32.setVisible(false); + boolean var36 = var32.isDoubleBuffered(); + SpaceWar.SpacePanel var37 = new SpaceWar.SpacePanel(); + java.awt.Color var38 = var37.getBackground(); + var37.repaint(); + java.lang.Object var40 = var32.getClientProperty((java.lang.Object)var37); + var16.remove((java.awt.Component)var32); + SpaceWar.SpacePanel var42 = new SpaceWar.SpacePanel(); + float var43 = var42.getAlignmentX(); + var42.firePropertyChange("", (-1), 1); + java.awt.event.MouseMotionListener[] var48 = var42.getMouseMotionListeners(); + java.awt.Dimension var49 = var42.getMinimumSize(); + var16.setMaximumSize(var49); + var0.setMinimumSize(var49); + var0.layout(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var27); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var33 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var36 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var38); + + // Regression assertion (captures the current behavior of the code) + assertNull(var40); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var43 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var48); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var49); + + } + + public void test89() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test89"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + java.awt.im.InputMethodRequests var3 = var0.getInputMethodRequests(); + int var4 = var0.countComponents(); + java.awt.event.ComponentListener[] var5 = var0.getComponentListeners(); + var0.removeNotify(); + javax.swing.InputMap var7 = var0.getInputMap(); + int var8 = var0.getDebugGraphicsOptions(); + java.awt.Rectangle var9 = var0.getBounds(); + var0.setFocusCycleRoot(false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var9); + + } + + public void test90() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test90"); + + + SpaceWar.PowerUp var3 = new SpaceWar.PowerUp(100, (-1.0d), 0.0d); + double var4 = var3.getX(); + double var5 = var3.getY(); + boolean var6 = var3.update(); + double var7 = var3.getY(); + int var8 = var3.getType(); + double var9 = var3.getY(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == (-1.0d)); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == 0.0d); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 2.0d); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 100); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 2.0d); + + } + + public void test91() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test91"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var6 = var0.getMouseListeners(); + int var7 = var0.getDebugGraphicsOptions(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + boolean var12 = var8.isDoubleBuffered(); + java.awt.dnd.DropTarget var13 = var8.getDropTarget(); + var8.show(false); + java.awt.Rectangle var16 = var8.getVisibleRect(); + var0.paintImmediately(var16); + java.awt.Rectangle var18 = var0.getBounds(); + var0.show(true); + boolean var21 = var0.hasFocus(); + var0.hide(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == false); + + } + + public void test92() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test92"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + var0.setRequestFocusEnabled(false); + var0.reshape(100, 0, 100, 0); + java.beans.VetoableChangeListener[] var10 = var0.getVetoableChangeListeners(); + java.awt.event.ComponentListener[] var11 = var0.getComponentListeners(); + var0.reshape(400, 3, 500, 100); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + } + + public void test93() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test93"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + var0.setRequestFocusEnabled(false); + var0.reshape(100, 0, 100, 0); + javax.swing.event.AncestorListener[] var10 = var0.getAncestorListeners(); + int var11 = var0.getWidth(); + SpaceWar.SpacePanel var12 = new SpaceWar.SpacePanel(); + float var13 = var12.getAlignmentX(); + var12.setVisible(false); + var12.nextFocus(); + var12.reshape((-1), 1, (-1), 10); + var12.disable(); + java.awt.Component var25 = var12.findComponentAt(0, (-1)); + SpaceWar.SpacePanel var26 = new SpaceWar.SpacePanel(); + var26.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + javax.swing.plaf.PanelUI var31 = var26.getUI(); + SpaceWar.SpacePanel var32 = new SpaceWar.SpacePanel(); + float var33 = var32.getAlignmentX(); + var32.setVisible(false); + var32.nextFocus(); + var32.repaint(1L); + SpaceWar.SpacePanel var39 = new SpaceWar.SpacePanel(); + float var40 = var39.getAlignmentX(); + var39.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var45 = new SpaceWar.SpacePanel(); + float var46 = var45.getAlignmentX(); + var45.setVisible(false); + java.awt.Dimension var49 = var45.getPreferredSize(); + var39.setMaximumSize(var49); + var32.setPreferredSize(var49); + var26.setMaximumSize(var49); + var12.setSize(var49); + var12.show(); + int var55 = var0.getComponentZOrder((java.awt.Component)var12); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == 100); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNull(var25); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var31); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var33 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var40 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var46 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var49); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var55 == (-1)); + + } + + public void test94() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test94"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + var0.show(false); + boolean var8 = var0.isPaintingForPrint(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var15 = var9.getMouseListeners(); + int var16 = var9.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var17 = var9.getInputMethodRequests(); + var0.addKeyListener((java.awt.event.KeyListener)var9); + boolean var19 = var0.isDisplayable(); + var0.resize(400, 2); + boolean var23 = var0.isFocusTraversalPolicySet(); + SpaceWar.SpacePanel var24 = new SpaceWar.SpacePanel(); + float var25 = var24.getAlignmentX(); + var24.setVisible(false); + var24.nextFocus(); + var24.reshape((-1), 1, (-1), 10); + var24.disable(); + boolean var35 = var24.isFocusable(); + int var36 = var24.getHeight(); + javax.swing.InputVerifier var37 = var24.getInputVerifier(); + java.awt.Graphics var38 = var24.getGraphics(); + java.awt.Color var39 = var24.getForeground(); + SpaceWar.SpacePanel var40 = new SpaceWar.SpacePanel(); + float var41 = var40.getAlignmentX(); + var40.setVisible(false); + boolean var44 = var40.isDoubleBuffered(); + java.awt.dnd.DropTarget var45 = var40.getDropTarget(); + var40.show(false); + java.awt.Rectangle var48 = var40.getVisibleRect(); + java.awt.Toolkit var49 = var40.getToolkit(); + java.awt.event.MouseMotionListener[] var50 = var40.getMouseMotionListeners(); + SpaceWar.SpacePanel var51 = new SpaceWar.SpacePanel(); + float var52 = var51.getAlignmentX(); + var51.setVisible(false); + boolean var55 = var51.isDoubleBuffered(); + java.awt.dnd.DropTarget var56 = var51.getDropTarget(); + var51.show(false); + boolean var59 = var51.isPaintingForPrint(); + SpaceWar.SpacePanel var60 = new SpaceWar.SpacePanel(); + float var61 = var60.getAlignmentX(); + var60.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var66 = var60.getMouseListeners(); + int var67 = var60.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var68 = var60.getInputMethodRequests(); + var51.addKeyListener((java.awt.event.KeyListener)var60); + SpaceWar.SpacePanel var70 = new SpaceWar.SpacePanel(); + float var71 = var70.getAlignmentX(); + var70.setVisible(false); + boolean var74 = var70.isDoubleBuffered(); + var70.list(); + float var76 = var70.getAlignmentY(); + boolean var77 = var60.isFocusCycleRoot((java.awt.Container)var70); + javax.swing.JPopupMenu var78 = var70.getComponentPopupMenu(); + var70.move((-1), 100); + var70.validate(); + java.awt.Rectangle var83 = var70.getVisibleRect(); + var40.paintImmediately(var83); + var24.paintImmediately(var83); + var0.scrollRectToVisible(var83); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var35 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var36 == 10); + + // Regression assertion (captures the current behavior of the code) + assertNull(var37); + + // Regression assertion (captures the current behavior of the code) + assertNull(var38); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var39); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var41 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var44 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var45); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var48); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var49); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var50); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var52 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var55 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var56); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var59 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var61 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var66); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var67 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var68); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var71 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var74 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var76 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var77 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var78); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var83); + + } + + public void test95() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test95"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + var0.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + javax.swing.plaf.PanelUI var5 = var0.getUI(); + java.awt.Color var6 = var0.getBackground(); + var0.removeAll(); + int var8 = var0.getHeight(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.removeNotify(); + SpaceWar.SpacePanel var12 = new SpaceWar.SpacePanel(); + float var13 = var12.getAlignmentX(); + var12.setVisible(false); + boolean var16 = var12.isDoubleBuffered(); + var12.list(); + float var18 = var12.getAlignmentY(); + java.awt.Insets var19 = var12.getInsets(); + java.awt.Insets var20 = var9.getInsets(var19); + boolean var21 = var9.isDoubleBuffered(); + java.awt.Component var22 = var0.add((java.awt.Component)var9); + // The following exception was thrown during execution. + // This behavior will recorded for regression testing. + try { + var9.remove(2); + fail("Expected exception of type java.lang.ArrayIndexOutOfBoundsException"); + } catch (java.lang.ArrayIndexOutOfBoundsException e) { + // Expected exception. + } + + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var22); + + } + + public void test96() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test96"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.setInheritsPopupMenu(false); + boolean var6 = var0.isDoubleBuffered(); + var0.setAlignmentY(100.0f); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var15 = var9.getUI(); + java.awt.im.InputMethodRequests var16 = var9.getInputMethodRequests(); + SpaceWar.SpacePanel var17 = new SpaceWar.SpacePanel(); + float var18 = var17.getAlignmentX(); + var17.setVisible(false); + var17.nextFocus(); + var17.updateUI(); + var17.enableInputMethods(true); + var17.setSize((-1), 1); + SpaceWar.SpacePanel var28 = new SpaceWar.SpacePanel(); + var28.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var9.add((java.awt.Component)var17, (java.lang.Object)"SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + java.awt.event.KeyListener[] var34 = var9.getKeyListeners(); + var9.repaint(3, 1, 25, 0); + SpaceWar.SpacePanel var40 = new SpaceWar.SpacePanel(); + java.awt.Color var41 = var40.getBackground(); + boolean var44 = var40.inside(0, (-1)); + var40.transferFocusUpCycle(); + java.awt.Container var46 = var40.getParent(); + boolean var47 = var40.isMaximumSizeSet(); + SpaceWar.SpacePanel var48 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var49 = new SpaceWar.SpacePanel(); + java.awt.Color var50 = var49.getBackground(); + SpaceWar.SpacePanel var51 = new SpaceWar.SpacePanel(); + float var52 = var51.getAlignmentX(); + var51.setVisible(false); + var51.nextFocus(); + var51.updateUI(); + var51.enableInputMethods(true); + var48.add((java.awt.Component)var49, (java.lang.Object)true); + boolean var61 = var49.areFocusTraversalKeysSet(0); + SpaceWar.SpacePanel var62 = new SpaceWar.SpacePanel(); + float var63 = var62.getAlignmentX(); + var62.setVisible(false); + boolean var66 = var62.isDoubleBuffered(); + java.awt.dnd.DropTarget var67 = var62.getDropTarget(); + var62.show(false); + java.awt.Rectangle var70 = var62.getVisibleRect(); + var49.setBounds(var70); + var40.setBounds(var70); + java.awt.Rectangle var73 = var9.getBounds(var70); + var0.setBounds(var73); + java.lang.String var75 = var0.toString(); + javax.swing.border.Border var76 = var0.getBorder(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var34); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var41); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var44 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var46); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var47 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var50); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var52 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var61 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var63 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var66 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var67); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var70); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var73); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var75 + "' != '" + "SpaceWar.SpacePanel[,0,0,0var75,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=1.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"+ "'", var75.equals("SpaceWar.SpacePanel[,0,0,0var75,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=1.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]")); + + // Regression assertion (captures the current behavior of the code) + assertNull(var76); + + } + + public void test97() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test97"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + boolean var2 = var0.hasFocus(); + SpaceWar.SpacePanel var3 = new SpaceWar.SpacePanel(); + float var4 = var3.getAlignmentX(); + var3.setVisible(false); + var3.nextFocus(); + var3.reshape((-1), 1, (-1), 10); + var3.disable(); + java.awt.LayoutManager var14 = var3.getLayout(); + var3.setVisible(false); + var0.remove((java.awt.Component)var3); + var3.repaint(); + boolean var19 = var3.hasFocus(); + javax.swing.plaf.PanelUI var20 = var3.getUI(); + var3.enableInputMethods(true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var2 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + } + + public void test98() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test98"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.setEnabled(false); + java.awt.Image var8 = var0.createImage(10, 100); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + java.awt.Color var10 = var9.getBackground(); + var0.setForeground(var10); + var0.setFocusTraversalPolicyProvider(true); + boolean var14 = var0.getAutoscrolls(); + java.lang.String var15 = var0.getToolTipText(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var15); + + } + + public void test99() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test99"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + float var7 = var6.getAlignmentX(); + var6.setVisible(false); + java.awt.Dimension var10 = var6.getPreferredSize(); + var0.setMaximumSize(var10); + boolean var12 = var0.getVerifyInputWhenFocusTarget(); + boolean var13 = var0.isFontSet(); + boolean var14 = var0.getIgnoreRepaint(); + java.awt.Component var17 = var0.locate(1, 25); + boolean var18 = var0.isLightweight(); + boolean var21 = var0.contains(3, 3); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == false); + + } + + public void test100() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test100"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + var0.list(); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + float var7 = var6.getAlignmentX(); + var6.setVisible(false); + boolean var10 = var6.isDoubleBuffered(); + java.awt.dnd.DropTarget var11 = var6.getDropTarget(); + var6.show(false); + java.awt.Rectangle var14 = var6.getVisibleRect(); + java.awt.Rectangle var15 = var0.getBounds(var14); + javax.swing.JToolTip var16 = var0.createToolTip(); + var0.firePropertyChange("", false, false); + var0.setFocusTraversalKeysEnabled(false); + boolean var23 = var0.isValid(); + var0.setFocusCycleRoot(true); + java.awt.event.KeyListener[] var26 = var0.getKeyListeners(); + java.awt.LayoutManager var27 = var0.getLayout(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var27); + + } + + public void test101() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test101"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + java.awt.event.MouseMotionListener[] var6 = var0.getMouseMotionListeners(); + java.awt.event.ComponentListener[] var7 = var0.getComponentListeners(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + var8.nextFocus(); + var8.repaint(1L); + SpaceWar.SpacePanel var15 = new SpaceWar.SpacePanel(); + float var16 = var15.getAlignmentX(); + var15.setVisible(false); + boolean var19 = var15.isDoubleBuffered(); + var15.list(); + SpaceWar.SpacePanel var21 = new SpaceWar.SpacePanel(); + float var22 = var21.getAlignmentX(); + var21.setVisible(false); + boolean var25 = var21.isDoubleBuffered(); + java.awt.dnd.DropTarget var26 = var21.getDropTarget(); + var21.show(false); + java.awt.Rectangle var29 = var21.getVisibleRect(); + java.awt.Rectangle var30 = var15.getBounds(var29); + var8.setBounds(var30); + var0.paintImmediately(var30); + java.awt.Point var33 = var0.getMousePosition(); + java.awt.image.BufferedImage var35 = var0.loadImg("SpaceWar.SpacePanel[,-1,1,-1x10,invalid,hidden,disabled,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + var0.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", 3, 100); + boolean var40 = var0.isMaximumSizeSet(); + var0.updateUI(); + SpaceWar.SpacePanel var42 = new SpaceWar.SpacePanel(); + float var43 = var42.getAlignmentX(); + var42.setVisible(false); + SpaceWar.SpacePanel var46 = new SpaceWar.SpacePanel(); + java.awt.Color var47 = var46.getBackground(); + var42.setForeground(var47); + SpaceWar.SpacePanel var49 = new SpaceWar.SpacePanel(); + float var50 = var49.getAlignmentX(); + var49.setVisible(false); + boolean var53 = var49.isDoubleBuffered(); + java.awt.dnd.DropTarget var54 = var49.getDropTarget(); + var49.show(false); + java.awt.Rectangle var57 = var49.getVisibleRect(); + var42.repaint(var57); + java.awt.FocusTraversalPolicy var59 = var42.getFocusTraversalPolicy(); + java.awt.im.InputMethodRequests var60 = var42.getInputMethodRequests(); + var42.layout(); + var42.setDebugGraphicsOptions(10); + javax.swing.ActionMap var64 = var42.getActionMap(); + var0.setActionMap(var64); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var22 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var29); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var30); + + // Regression assertion (captures the current behavior of the code) + assertNull(var33); + + // Regression assertion (captures the current behavior of the code) + assertNull(var35); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var40 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var43 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var47); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var50 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var53 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var54); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var57); + + // Regression assertion (captures the current behavior of the code) + assertNull(var59); + + // Regression assertion (captures the current behavior of the code) + assertNull(var60); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var64); + + } + + public void test102() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test102"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + java.awt.im.InputMethodRequests var3 = var0.getInputMethodRequests(); + int var4 = var0.countComponents(); + java.awt.event.MouseMotionListener[] var5 = var0.getMouseMotionListeners(); + java.awt.Dimension var6 = var0.size(); + var0.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=10,height=10]]", (byte)100, (byte)10); + var0.setDebugGraphicsOptions(2); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + } + + public void test103() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test103"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + java.awt.im.InputMethodRequests var3 = var0.getInputMethodRequests(); + java.awt.GraphicsConfiguration var4 = var0.getGraphicsConfiguration(); + boolean var6 = var0.requestFocus(false); + java.awt.Container var7 = var0.getTopLevelAncestor(); + var0.setFocusTraversalPolicyProvider(false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertNull(var4); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var7); + + } + + public void test104() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test104"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.repaint(1L); + javax.swing.KeyStroke[] var7 = var0.getRegisteredKeyStrokes(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var7); + + } + + public void test105() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test105"); + + + SpaceWar.Player var0 = new SpaceWar.Player(); + int var1 = var0.getPower(); + var0.setLeft(true); + var0.increasePower(0); + var0.setRigth(false); + int var8 = var0.getPower(); + var0.setRigth(false); + boolean var11 = var0.isRecovering(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == false); + + } + + public void test106() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test106"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var6 = var0.getMouseListeners(); + int var7 = var0.getDebugGraphicsOptions(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + boolean var12 = var8.isDoubleBuffered(); + java.awt.dnd.DropTarget var13 = var8.getDropTarget(); + var8.show(false); + java.awt.Rectangle var16 = var8.getVisibleRect(); + var0.paintImmediately(var16); + int var18 = var0.getWidth(); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + float var20 = var19.getAlignmentX(); + var19.setVisible(false); + SpaceWar.SpacePanel var23 = new SpaceWar.SpacePanel(); + java.awt.Color var24 = var23.getBackground(); + var19.setForeground(var24); + SpaceWar.SpacePanel var26 = new SpaceWar.SpacePanel(); + float var27 = var26.getAlignmentX(); + var26.setVisible(false); + boolean var30 = var26.isDoubleBuffered(); + java.awt.dnd.DropTarget var31 = var26.getDropTarget(); + var26.show(false); + java.awt.Rectangle var34 = var26.getVisibleRect(); + var19.repaint(var34); + java.awt.FocusTraversalPolicy var36 = var19.getFocusTraversalPolicy(); + java.awt.im.InputMethodRequests var37 = var19.getInputMethodRequests(); + var19.layout(); + java.awt.Container var39 = var19.getFocusCycleRootAncestor(); + SpaceWar.SpacePanel var40 = new SpaceWar.SpacePanel(); + float var41 = var40.getAlignmentX(); + var40.setVisible(false); + boolean var44 = var40.isDoubleBuffered(); + var40.list(); + SpaceWar.SpacePanel var46 = new SpaceWar.SpacePanel(); + float var47 = var46.getAlignmentX(); + var46.setVisible(false); + boolean var50 = var46.isDoubleBuffered(); + java.awt.dnd.DropTarget var51 = var46.getDropTarget(); + var46.show(false); + java.awt.Rectangle var54 = var46.getVisibleRect(); + java.awt.Rectangle var55 = var40.getBounds(var54); + javax.swing.JToolTip var56 = var40.createToolTip(); + var40.firePropertyChange("", false, false); + var40.validate(); + SpaceWar.SpacePanel var62 = new SpaceWar.SpacePanel(); + float var63 = var62.getAlignmentX(); + var62.setVisible(false); + boolean var66 = var62.isDoubleBuffered(); + java.awt.dnd.DropTarget var67 = var62.getDropTarget(); + var62.show(false); + boolean var70 = var62.isPaintingForPrint(); + SpaceWar.SpacePanel var71 = new SpaceWar.SpacePanel(); + float var72 = var71.getAlignmentX(); + var71.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var77 = var71.getMouseListeners(); + int var78 = var71.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var79 = var71.getInputMethodRequests(); + var62.addKeyListener((java.awt.event.KeyListener)var71); + var71.repaint(); + java.awt.Point var82 = var71.location(); + java.awt.Component var83 = var40.getComponentAt(var82); + var19.setLocation(var82); + java.beans.VetoableChangeListener[] var85 = var19.getVetoableChangeListeners(); + java.awt.Dimension var86 = var19.getMaximumSize(); + var0.setPreferredSize(var86); + var0.setOpaque(false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var30 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var31); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var34); + + // Regression assertion (captures the current behavior of the code) + assertNull(var36); + + // Regression assertion (captures the current behavior of the code) + assertNull(var37); + + // Regression assertion (captures the current behavior of the code) + assertNull(var39); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var41 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var44 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var47 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var50 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var51); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var54); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var55); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var56); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var63 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var66 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var67); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var70 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var72 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var77); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var78 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var79); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var82); + + // Regression assertion (captures the current behavior of the code) + assertNull(var83); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var85); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var86); + + } + + public void test107() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test107"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var1 = new SpaceWar.SpacePanel(); + java.awt.Color var2 = var1.getBackground(); + SpaceWar.SpacePanel var3 = new SpaceWar.SpacePanel(); + float var4 = var3.getAlignmentX(); + var3.setVisible(false); + var3.nextFocus(); + var3.updateUI(); + var3.enableInputMethods(true); + var0.add((java.awt.Component)var1, (java.lang.Object)true); + boolean var12 = var0.isMinimumSizeSet(); + java.awt.event.HierarchyListener[] var13 = var0.getHierarchyListeners(); + SpaceWar.SpacePanel var14 = new SpaceWar.SpacePanel(); + float var15 = var14.getAlignmentX(); + var14.setVisible(false); + SpaceWar.SpacePanel var18 = new SpaceWar.SpacePanel(); + java.awt.Color var19 = var18.getBackground(); + var14.setForeground(var19); + SpaceWar.SpacePanel var21 = new SpaceWar.SpacePanel(); + float var22 = var21.getAlignmentX(); + var21.setVisible(false); + boolean var25 = var21.isDoubleBuffered(); + java.awt.dnd.DropTarget var26 = var21.getDropTarget(); + var21.show(false); + java.awt.Rectangle var29 = var21.getVisibleRect(); + var14.repaint(var29); + java.awt.FocusTraversalPolicy var31 = var14.getFocusTraversalPolicy(); + java.awt.im.InputMethodRequests var32 = var14.getInputMethodRequests(); + var14.layout(); + boolean var34 = var14.isFocusTraversalPolicyProvider(); + java.lang.Object var35 = var0.getClientProperty((java.lang.Object)var34); + java.awt.Dimension var36 = var0.getSize(); + var0.removeNotify(); + java.awt.Cursor var38 = var0.getCursor(); + SpaceWar.SpacePanel var39 = new SpaceWar.SpacePanel(); + java.awt.Color var40 = var39.getBackground(); + boolean var43 = var39.inside(0, (-1)); + SpaceWar.SpacePanel var44 = new SpaceWar.SpacePanel(); + float var45 = var44.getAlignmentX(); + var44.setVisible(false); + SpaceWar.SpacePanel var48 = new SpaceWar.SpacePanel(); + java.awt.Color var49 = var48.getBackground(); + var44.setForeground(var49); + var39.setForeground(var49); + java.awt.image.VolatileImage var54 = var39.createVolatileImage(400, (-1)); + java.awt.LayoutManager var55 = var39.getLayout(); + var0.setLayout(var55); + SpaceWar.SpacePanel var57 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var58 = new SpaceWar.SpacePanel(); + java.awt.Color var59 = var58.getBackground(); + SpaceWar.SpacePanel var60 = new SpaceWar.SpacePanel(); + float var61 = var60.getAlignmentX(); + var60.setVisible(false); + var60.nextFocus(); + var60.updateUI(); + var60.enableInputMethods(true); + var57.add((java.awt.Component)var58, (java.lang.Object)true); + java.awt.Dimension var69 = var58.getPreferredSize(); + var58.move(100, 10); + java.awt.Graphics var73 = var58.getGraphics(); + var58.setVisible(true); + boolean var76 = var0.isFocusCycleRoot((java.awt.Container)var58); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var2); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var22 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var29); + + // Regression assertion (captures the current behavior of the code) + assertNull(var31); + + // Regression assertion (captures the current behavior of the code) + assertNull(var32); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var34 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var35); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var36); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var38); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var40); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var43 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var45 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var49); + + // Regression assertion (captures the current behavior of the code) + assertNull(var54); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var55); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var59); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var61 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var69); + + // Regression assertion (captures the current behavior of the code) + assertNull(var73); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var76 == false); + + } + + public void test108() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test108"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + boolean var6 = var0.isFocusCycleRoot(); + var0.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", 100, 0); + SpaceWar.SpacePanel var11 = new SpaceWar.SpacePanel(); + float var12 = var11.getAlignmentX(); + var11.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var17 = var11.getUI(); + var0.add((java.awt.Component)var11, (java.lang.Object)(short)0); + java.awt.event.InputMethodListener[] var20 = var11.getInputMethodListeners(); + java.awt.Toolkit var21 = var11.getToolkit(); + var11.setSize(24, 2); + java.awt.Dimension var25 = var11.getPreferredSize(); + boolean var26 = var11.getAutoscrolls(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var21); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var25); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == false); + + } + + public void test109() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test109"); + + + SpaceWar.Player var0 = new SpaceWar.Player(); + var0.setScore(3); + int var3 = var0.getY(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == 500); + + } + + public void test110() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test110"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.setInheritsPopupMenu(false); + var0.setFocusTraversalPolicyProvider(true); + boolean var10 = var0.inside(25, 3); + var0.setAlignmentX(0.0f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == false); + + } + + public void test111() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test111"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + boolean var2 = var0.hasFocus(); + java.beans.VetoableChangeListener[] var3 = var0.getVetoableChangeListeners(); + var0.paintImmediately(10, 0, (-1), 25); + boolean var9 = var0.getInheritsPopupMenu(); + var0.resize(500, 10); + SpaceWar.SpacePanel var13 = new SpaceWar.SpacePanel(); + float var14 = var13.getAlignmentX(); + var13.setVisible(false); + boolean var17 = var13.isDoubleBuffered(); + SpaceWar.SpacePanel var18 = new SpaceWar.SpacePanel(); + float var19 = var18.getAlignmentX(); + var18.setVisible(false); + var18.nextFocus(); + var18.reshape((-1), 1, (-1), 10); + var18.disable(); + boolean var29 = var18.isFocusable(); + int var30 = var18.getHeight(); + var13.setNextFocusableComponent((java.awt.Component)var18); + SpaceWar.SpacePanel var32 = new SpaceWar.SpacePanel(); + float var33 = var32.getAlignmentX(); + var32.setVisible(false); + var32.nextFocus(); + SpaceWar.SpacePanel var37 = new SpaceWar.SpacePanel(); + float var38 = var37.getAlignmentX(); + var37.setVisible(false); + SpaceWar.SpacePanel var41 = new SpaceWar.SpacePanel(); + java.awt.Color var42 = var41.getBackground(); + var37.setForeground(var42); + var32.setBackground(var42); + java.awt.Component var45 = var32.getNextFocusableComponent(); + float var46 = var32.getAlignmentY(); + java.awt.event.MouseListener[] var47 = var32.getMouseListeners(); + java.awt.Point var48 = var32.location(); + java.awt.Point var49 = var13.getLocation(var48); + var0.setLocation(var49); + var0.setSize(2, 3); + SpaceWar.Player var54 = new SpaceWar.Player(); + boolean var55 = var54.isRecovering(); + var54.setRigth(false); + int var58 = var54.getPower(); + boolean var59 = var54.isDead(); + SpaceWar.SpacePanel var60 = new SpaceWar.SpacePanel(); + java.awt.Color var61 = var60.getBackground(); + var60.repaint(); + java.awt.im.InputMethodRequests var63 = var60.getInputMethodRequests(); + var60.setDoubleBuffered(true); + var60.setInheritsPopupMenu(false); + boolean var68 = var60.isFocusTraversalPolicySet(); + var0.putClientProperty((java.lang.Object)var54, (java.lang.Object)var68); + SpaceWar.SpacePanel var70 = new SpaceWar.SpacePanel(); + var70.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + javax.swing.plaf.PanelUI var75 = var70.getUI(); + // The following exception was thrown during execution. + // This behavior will recorded for regression testing. + try { + java.awt.Component var77 = var0.add((java.awt.Component)var70, 399); + fail("Expected exception of type java.lang.IllegalArgumentException"); + } catch (java.lang.IllegalArgumentException e) { + // Expected exception. + } + + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var2 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var29 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var30 == 10); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var33 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var38 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var42); + + // Regression assertion (captures the current behavior of the code) + assertNull(var45); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var46 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var47); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var48); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var49); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var55 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var58 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var59 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var61); + + // Regression assertion (captures the current behavior of the code) + assertNull(var63); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var68 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var75); + + } + + public void test112() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test112"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var1 = new SpaceWar.SpacePanel(); + java.awt.Color var2 = var1.getBackground(); + SpaceWar.SpacePanel var3 = new SpaceWar.SpacePanel(); + float var4 = var3.getAlignmentX(); + var3.setVisible(false); + var3.nextFocus(); + var3.updateUI(); + var3.enableInputMethods(true); + var0.add((java.awt.Component)var1, (java.lang.Object)true); + java.awt.Dimension var12 = var1.getPreferredSize(); + var1.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", (-1.0f), 100.0f); + SpaceWar.SpacePanel var17 = new SpaceWar.SpacePanel(); + float var18 = var17.getAlignmentX(); + var17.setVisible(false); + boolean var21 = var17.isDoubleBuffered(); + SpaceWar.SpacePanel var22 = new SpaceWar.SpacePanel(); + java.awt.Color var23 = var22.getBackground(); + var22.repaint(); + java.lang.Object var25 = var17.getClientProperty((java.lang.Object)var22); + var1.remove((java.awt.Component)var17); + var1.enable(); + var1.setIgnoreRepaint(true); + java.awt.Point var30 = var1.location(); + float var31 = var1.getAlignmentX(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var2); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var23); + + // Regression assertion (captures the current behavior of the code) + assertNull(var25); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var30); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var31 == 0.5f); + + } + + public void test113() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test113"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + var0.show(false); + boolean var8 = var0.isPaintingForPrint(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var15 = var9.getMouseListeners(); + int var16 = var9.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var17 = var9.getInputMethodRequests(); + var0.addKeyListener((java.awt.event.KeyListener)var9); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + float var20 = var19.getAlignmentX(); + var19.setVisible(false); + boolean var23 = var19.isDoubleBuffered(); + var19.list(); + float var25 = var19.getAlignmentY(); + boolean var26 = var9.isFocusCycleRoot((java.awt.Container)var19); + SpaceWar.SpacePanel var28 = new SpaceWar.SpacePanel(); + float var29 = var28.getAlignmentX(); + var28.setVisible(false); + var28.nextFocus(); + var28.updateUI(); + java.awt.Component var34 = var9.add("", (java.awt.Component)var28); + java.awt.ComponentOrientation var35 = var28.getComponentOrientation(); + var28.transferFocusUpCycle(); + var28.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=java.awt.Dimension[width=800,height=600],minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", 10, 24); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var29 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var34); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var35); + + } + + public void test114() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test114"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + boolean var5 = javax.swing.JComponent.isLightweightComponent((java.awt.Component)var0); + java.awt.event.MouseWheelListener[] var6 = var0.getMouseWheelListeners(); + var0.transferFocusUpCycle(); + boolean var8 = var0.isOptimizedDrawingEnabled(); + boolean var9 = var0.isOpaque(); + java.awt.Point var11 = var0.getMousePosition(true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var11); + + } + + public void test115() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test115"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + var0.setRequestFocusEnabled(false); + var0.setIgnoreRepaint(false); + boolean var7 = var0.requestFocusInWindow(); + java.awt.Point var9 = var0.getMousePosition(false); + boolean var10 = javax.swing.JComponent.isLightweightComponent((java.awt.Component)var0); + boolean var11 = var0.getVerifyInputWhenFocusTarget(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var9); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == true); + + } + + public void test116() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test116"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var6 = var0.getMouseListeners(); + int var7 = var0.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var8 = var0.getInputMethodRequests(); + var0.removeNotify(); + var0.enable(); + SpaceWar.SpacePanel var11 = new SpaceWar.SpacePanel(); + java.awt.Color var12 = var11.getBackground(); + boolean var15 = var11.inside(0, (-1)); + var11.transferFocusUpCycle(); + java.lang.String var17 = var11.getName(); + boolean var18 = var0.isFocusCycleRoot((java.awt.Container)var11); + java.awt.Graphics var19 = var11.getGraphics(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var19); + + } + + public void test117() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test117"); + + + SpaceWar.Enemy var2 = new SpaceWar.Enemy((-1), 2); + int var3 = var2.getType(); + double var4 = var2.getX(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == (-1)); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 212.52893787993318d); + + } + + public void test118() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test118"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + var0.enable(false); + boolean var7 = var0.getFocusTraversalKeysEnabled(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + java.awt.Dimension var12 = var8.getPreferredSize(); + java.awt.Toolkit var13 = var8.getToolkit(); + boolean var14 = var8.isFocusable(); + javax.swing.KeyStroke[] var15 = var8.getRegisteredKeyStrokes(); + SpaceWar.SpacePanel var16 = new SpaceWar.SpacePanel(); + float var17 = var16.getAlignmentX(); + SpaceWar.SpacePanel var18 = new SpaceWar.SpacePanel(); + float var19 = var18.getAlignmentX(); + var18.setVisible(false); + java.awt.Dimension var22 = var18.getPreferredSize(); + boolean var23 = var18.getVerifyInputWhenFocusTarget(); + java.awt.Component var26 = var18.findComponentAt(10, 1); + var16.addKeyListener((java.awt.event.KeyListener)var18); + var18.repaint(100, (-1), (-1), 1); + boolean var33 = var8.isAncestorOf((java.awt.Component)var18); + var0.addKeyListener((java.awt.event.KeyListener)var18); + boolean var35 = var18.isPaintingTile(); + boolean var36 = var18.isDoubleBuffered(); + boolean var37 = var18.isShowing(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var33 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var35 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var36 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == false); + + } + + public void test119() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test119"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + java.awt.Color var7 = var6.getBackground(); + var6.repaint(); + var6.setRequestFocusEnabled(false); + var6.reshape(100, 0, 100, 0); + var6.requestFocus(); + SpaceWar.SpacePanel var17 = new SpaceWar.SpacePanel(); + float var18 = var17.getAlignmentX(); + var17.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var23 = var17.getUI(); + java.awt.im.InputMethodRequests var24 = var17.getInputMethodRequests(); + SpaceWar.SpacePanel var25 = new SpaceWar.SpacePanel(); + float var26 = var25.getAlignmentX(); + var25.setVisible(false); + var25.nextFocus(); + var25.updateUI(); + var25.enableInputMethods(true); + var25.setSize((-1), 1); + SpaceWar.SpacePanel var36 = new SpaceWar.SpacePanel(); + var36.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var17.add((java.awt.Component)var25, (java.lang.Object)"SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + SpaceWar.SpacePanel var42 = new SpaceWar.SpacePanel(); + var42.setName(""); + java.awt.ComponentOrientation var45 = var42.getComponentOrientation(); + var17.applyComponentOrientation(var45); + var6.setComponentOrientation(var45); + var0.applyComponentOrientation(var45); + int var49 = var0.getHeight(); + boolean var50 = var0.isBackgroundSet(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var23); + + // Regression assertion (captures the current behavior of the code) + assertNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var45); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var49 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var50 == true); + + } + + public void test120() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test120"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.setInheritsPopupMenu(false); + boolean var6 = var0.isDoubleBuffered(); + var0.setAlignmentY(100.0f); + var0.setAlignmentX(0.0f); + java.awt.Component var13 = var0.getComponentAt(24, 100); + SpaceWar.SpacePanel var14 = new SpaceWar.SpacePanel(); + var14.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + javax.swing.plaf.PanelUI var19 = var14.getUI(); + var0.setUI(var19); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var19); + + } + + public void test121() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test121"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + var0.show(false); + boolean var8 = var0.isPaintingForPrint(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var15 = var9.getMouseListeners(); + int var16 = var9.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var17 = var9.getInputMethodRequests(); + var0.addKeyListener((java.awt.event.KeyListener)var9); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + float var20 = var19.getAlignmentX(); + var19.setVisible(false); + boolean var23 = var19.isDoubleBuffered(); + var19.list(); + float var25 = var19.getAlignmentY(); + boolean var26 = var9.isFocusCycleRoot((java.awt.Container)var19); + boolean var27 = var19.isEnabled(); + java.awt.Dimension var28 = var19.getMaximumSize(); + var19.setFocusCycleRoot(false); + SpaceWar.SpacePanel var32 = new SpaceWar.SpacePanel(); + java.awt.Color var33 = var32.getBackground(); + var32.repaint(); + java.awt.im.InputMethodRequests var35 = var32.getInputMethodRequests(); + int var36 = var32.countComponents(); + java.awt.event.ComponentListener[] var37 = var32.getComponentListeners(); + var32.removeNotify(); + javax.swing.InputMap var39 = var32.getInputMap(); + SpaceWar.SpacePanel var40 = new SpaceWar.SpacePanel(); + float var41 = var40.getAlignmentX(); + var40.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var46 = new SpaceWar.SpacePanel(); + float var47 = var46.getAlignmentX(); + var46.setVisible(false); + SpaceWar.SpacePanel var50 = new SpaceWar.SpacePanel(); + java.awt.Color var51 = var50.getBackground(); + var46.setForeground(var51); + var40.setBackground(var51); + java.awt.Point var54 = var40.location(); + var32.setLocation(var54); + SpaceWar.SpacePanel var56 = new SpaceWar.SpacePanel(); + float var57 = var56.getAlignmentX(); + var56.setVisible(false); + var56.nextFocus(); + var56.reshape((-1), 1, (-1), 10); + SpaceWar.SpacePanel var66 = new SpaceWar.SpacePanel(); + java.awt.Color var67 = var66.getBackground(); + var66.repaint(); + var66.setRequestFocusEnabled(false); + var66.reshape(100, 0, 100, 0); + java.awt.Component var76 = var56.add((java.awt.Component)var66); + var56.enable(); + SpaceWar.SpacePanel var78 = new SpaceWar.SpacePanel(); + float var79 = var78.getAlignmentX(); + boolean var80 = var78.hasFocus(); + boolean var81 = var78.isPreferredSizeSet(); + var32.putClientProperty((java.lang.Object)var56, (java.lang.Object)var78); + java.awt.Component var83 = var19.add("PanelUI", (java.awt.Component)var78); + javax.swing.plaf.PanelUI var84 = var78.getUI(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var28); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var33); + + // Regression assertion (captures the current behavior of the code) + assertNull(var35); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var36 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var37); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var39); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var41 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var47 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var51); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var54); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var57 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var67); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var76); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var79 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var80 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var81 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var83); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var84); + + } + + public void test122() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test122"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + SpaceWar.SpacePanel var4 = new SpaceWar.SpacePanel(); + java.awt.Color var5 = var4.getBackground(); + var0.setForeground(var5); + SpaceWar.SpacePanel var7 = new SpaceWar.SpacePanel(); + float var8 = var7.getAlignmentX(); + var7.setVisible(false); + boolean var11 = var7.isDoubleBuffered(); + java.awt.dnd.DropTarget var12 = var7.getDropTarget(); + var7.show(false); + java.awt.Rectangle var15 = var7.getVisibleRect(); + var0.repaint(var15); + java.awt.FocusTraversalPolicy var17 = var0.getFocusTraversalPolicy(); + SpaceWar.SpacePanel var18 = new SpaceWar.SpacePanel(); + float var19 = var18.getAlignmentX(); + var18.firePropertyChange("", (-1), 1); + boolean var24 = var18.isFocusOwner(); + SpaceWar.SpacePanel var26 = new SpaceWar.SpacePanel(); + float var27 = var26.getAlignmentX(); + var26.setVisible(false); + java.awt.Dimension var30 = var26.getPreferredSize(); + java.awt.Toolkit var31 = var26.getToolkit(); + SpaceWar.SpacePanel var32 = new SpaceWar.SpacePanel(); + var32.setName(""); + int var35 = var32.getX(); + SpaceWar.SpacePanel var36 = new SpaceWar.SpacePanel(); + float var37 = var36.getAlignmentX(); + var36.setVisible(false); + var36.nextFocus(); + SpaceWar.SpacePanel var41 = new SpaceWar.SpacePanel(); + float var42 = var41.getAlignmentX(); + var41.setVisible(false); + SpaceWar.SpacePanel var45 = new SpaceWar.SpacePanel(); + java.awt.Color var46 = var45.getBackground(); + var41.setForeground(var46); + var36.setBackground(var46); + var32.setBackground(var46); + var26.setForeground(var46); + var18.putClientProperty((java.lang.Object)(byte)100, (java.lang.Object)var46); + var0.setBackground(var46); + javax.swing.JToolTip var53 = var0.createToolTip(); + var53.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, true); + SpaceWar.SpacePanel var58 = new SpaceWar.SpacePanel(); + float var59 = var58.getAlignmentX(); + var58.setVisible(false); + var58.setInheritsPopupMenu(false); + var58.setFocusTraversalPolicyProvider(true); + SpaceWar.SpacePanel var66 = new SpaceWar.SpacePanel(); + float var67 = var66.getAlignmentX(); + var66.setVisible(false); + boolean var70 = var66.isDoubleBuffered(); + var66.list(); + SpaceWar.SpacePanel var72 = new SpaceWar.SpacePanel(); + float var73 = var72.getAlignmentX(); + var72.setVisible(false); + boolean var76 = var72.isDoubleBuffered(); + java.awt.dnd.DropTarget var77 = var72.getDropTarget(); + var72.show(false); + java.awt.Rectangle var80 = var72.getVisibleRect(); + java.awt.Rectangle var81 = var66.getBounds(var80); + javax.swing.JToolTip var82 = var66.createToolTip(); + var58.removeKeyListener((java.awt.event.KeyListener)var66); + java.awt.Rectangle var84 = var58.getVisibleRect(); + var53.paintImmediately(var84); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var24 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var30); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var31); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var35 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var42 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var46); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var53); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var59 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var67 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var70 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var73 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var76 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var77); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var80); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var81); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var82); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var84); + + } + + public void test123() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test123"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + var0.list(); + float var6 = var0.getAlignmentY(); + java.awt.Insets var7 = var0.getInsets(); + java.awt.im.InputContext var8 = var0.getInputContext(); + var0.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", (byte)10, (byte)(-1)); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertNull(var8); + + } + + public void test124() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test124"); + + + SpaceWar.Enemy var2 = new SpaceWar.Enemy(0, 100); + int var3 = var2.getR(); + java.awt.image.BufferedImage var5 = var2.loadImg("SpaceWar.SpacePanel[,0,0,0x0,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + int var6 = var2.getRank(); + var2.hit(); + double var8 = var2.getY(); + double var9 = var2.getX(); + var2.update(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == 100); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 0.0d); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 289.89972941256605d); + + } + + public void test125() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test125"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + SpaceWar.SpacePanel var5 = new SpaceWar.SpacePanel(); + java.awt.Color var6 = var5.getBackground(); + var5.repaint(); + java.lang.Object var8 = var0.getClientProperty((java.lang.Object)var5); + boolean var11 = var5.contains(1, 500); + var5.firePropertyChange("PanelUI", 100L, 0L); + java.awt.Dimension var16 = var5.preferredSize(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + } + + public void test126() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test126"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + boolean var2 = var0.hasFocus(); + java.awt.Insets var3 = var0.getInsets(); + java.awt.Dimension var4 = var0.getPreferredSize(); + SpaceWar.SpacePanel var5 = new SpaceWar.SpacePanel(); + var5.setName(""); + java.awt.Dimension var8 = var5.minimumSize(); + boolean var9 = var5.isDoubleBuffered(); + java.awt.event.HierarchyListener[] var10 = var5.getHierarchyListeners(); + java.awt.Font var11 = var5.getFont(); + var0.setFont(var11); + var0.setDebugGraphicsOptions(1); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var2 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var4); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + } + + public void test127() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test127"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var1 = new SpaceWar.SpacePanel(); + java.awt.Color var2 = var1.getBackground(); + SpaceWar.SpacePanel var3 = new SpaceWar.SpacePanel(); + float var4 = var3.getAlignmentX(); + var3.setVisible(false); + var3.nextFocus(); + var3.updateUI(); + var3.enableInputMethods(true); + var0.add((java.awt.Component)var1, (java.lang.Object)true); + boolean var12 = var0.isMinimumSizeSet(); + java.awt.event.HierarchyListener[] var13 = var0.getHierarchyListeners(); + SpaceWar.SpacePanel var14 = new SpaceWar.SpacePanel(); + float var15 = var14.getAlignmentX(); + var14.setVisible(false); + SpaceWar.SpacePanel var18 = new SpaceWar.SpacePanel(); + java.awt.Color var19 = var18.getBackground(); + var14.setForeground(var19); + SpaceWar.SpacePanel var21 = new SpaceWar.SpacePanel(); + float var22 = var21.getAlignmentX(); + var21.setVisible(false); + boolean var25 = var21.isDoubleBuffered(); + java.awt.dnd.DropTarget var26 = var21.getDropTarget(); + var21.show(false); + java.awt.Rectangle var29 = var21.getVisibleRect(); + var14.repaint(var29); + java.awt.FocusTraversalPolicy var31 = var14.getFocusTraversalPolicy(); + java.awt.im.InputMethodRequests var32 = var14.getInputMethodRequests(); + var14.layout(); + boolean var34 = var14.isFocusTraversalPolicyProvider(); + java.lang.Object var35 = var0.getClientProperty((java.lang.Object)var34); + java.awt.Dimension var36 = var0.getSize(); + boolean var37 = var0.isFocusTraversable(); + SpaceWar.SpacePanel var38 = new SpaceWar.SpacePanel(); + float var39 = var38.getAlignmentX(); + var38.setVisible(false); + var38.nextFocus(); + var38.updateUI(); + var38.enableInputMethods(true); + var38.resetKeyboardActions(); + var0.removeKeyListener((java.awt.event.KeyListener)var38); + SpaceWar.SpacePanel var48 = new SpaceWar.SpacePanel(); + float var49 = var48.getAlignmentX(); + var48.setVisible(false); + boolean var52 = var48.isDoubleBuffered(); + java.awt.dnd.DropTarget var53 = var48.getDropTarget(); + var48.show(false); + boolean var56 = var48.isPaintingForPrint(); + SpaceWar.SpacePanel var57 = new SpaceWar.SpacePanel(); + float var58 = var57.getAlignmentX(); + var57.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var63 = var57.getMouseListeners(); + int var64 = var57.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var65 = var57.getInputMethodRequests(); + var48.addKeyListener((java.awt.event.KeyListener)var57); + boolean var67 = var48.isDisplayable(); + java.awt.Dimension var68 = var48.getPreferredSize(); + var0.setSize(var68); + java.awt.Graphics var70 = var0.getGraphics(); + boolean var71 = var0.requestDefaultFocus(); + java.awt.event.MouseWheelListener[] var72 = var0.getMouseWheelListeners(); + boolean var73 = var0.isCursorSet(); + var0.reshape(1, 399, 399, 10); + javax.swing.border.Border var79 = var0.getBorder(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var2); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var22 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var29); + + // Regression assertion (captures the current behavior of the code) + assertNull(var31); + + // Regression assertion (captures the current behavior of the code) + assertNull(var32); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var34 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var35); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var36); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var39 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var49 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var52 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var53); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var56 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var58 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var63); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var64 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var65); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var67 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var68); + + // Regression assertion (captures the current behavior of the code) + assertNull(var70); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var71 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var72); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var73 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var79); + + } + + public void test128() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test128"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.updateUI(); + var0.enableInputMethods(true); + var0.resetKeyboardActions(); + java.awt.event.HierarchyListener[] var9 = var0.getHierarchyListeners(); + boolean var10 = var0.getAutoscrolls(); + var0.firePropertyChange("hi!", 0.5f, 100.0f); + var0.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=java.awt.Dimension[width=800,height=600],minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", 499, 500); + var0.repaint(100L, 500, 25, 1, 2); + java.awt.Container var25 = var0.getParent(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var9); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var25); + + } + + public void test129() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test129"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + java.awt.im.InputMethodRequests var3 = var0.getInputMethodRequests(); + int var4 = var0.countComponents(); + java.awt.event.ComponentListener[] var5 = var0.getComponentListeners(); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + float var7 = var6.getAlignmentX(); + var6.removeNotify(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.setVisible(false); + boolean var13 = var9.isDoubleBuffered(); + var9.list(); + float var15 = var9.getAlignmentY(); + java.awt.Insets var16 = var9.getInsets(); + java.awt.Insets var17 = var6.getInsets(var16); + java.awt.Insets var18 = var0.getInsets(var17); + javax.swing.JPopupMenu var19 = var0.getComponentPopupMenu(); + java.awt.image.BufferedImage var21 = var0.loadImg("PanelUI"); + var0.setVerifyInputWhenFocusTarget(false); + SpaceWar.SpacePanel var24 = new SpaceWar.SpacePanel(); + java.awt.Color var25 = var24.getBackground(); + boolean var28 = var24.inside(0, (-1)); + SpaceWar.SpacePanel var30 = new SpaceWar.SpacePanel(); + float var31 = var30.getAlignmentX(); + var30.setVisible(false); + var30.nextFocus(); + var30.reshape((-1), 1, (-1), 10); + var30.disable(); + boolean var41 = var30.isFocusable(); + SpaceWar.SpacePanel var42 = new SpaceWar.SpacePanel(); + float var43 = var42.getAlignmentX(); + var42.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var48 = var42.getUI(); + java.awt.im.InputMethodRequests var49 = var42.getInputMethodRequests(); + SpaceWar.SpacePanel var50 = new SpaceWar.SpacePanel(); + float var51 = var50.getAlignmentX(); + var50.setVisible(false); + var50.nextFocus(); + var50.updateUI(); + var50.enableInputMethods(true); + var50.setSize((-1), 1); + SpaceWar.SpacePanel var61 = new SpaceWar.SpacePanel(); + var61.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var42.add((java.awt.Component)var50, (java.lang.Object)"SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + java.awt.event.KeyListener[] var67 = var42.getKeyListeners(); + java.awt.FocusTraversalPolicy var68 = var42.getFocusTraversalPolicy(); + SpaceWar.SpacePanel var69 = new SpaceWar.SpacePanel(); + var69.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + java.awt.Toolkit var74 = var69.getToolkit(); + var30.add((java.awt.Component)var42, (java.lang.Object)var69); + var30.layout(); + java.awt.Component var77 = var24.add("", (java.awt.Component)var30); + java.lang.Object var78 = var0.getClientProperty((java.lang.Object)var77); + javax.swing.KeyStroke[] var79 = var0.getRegisteredKeyStrokes(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertNull(var21); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var25); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var28 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var31 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var41 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var43 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var48); + + // Regression assertion (captures the current behavior of the code) + assertNull(var49); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var51 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var67); + + // Regression assertion (captures the current behavior of the code) + assertNull(var68); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var74); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var77); + + // Regression assertion (captures the current behavior of the code) + assertNull(var78); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var79); + + } + + public void test130() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test130"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + var0.list(); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + float var7 = var6.getAlignmentX(); + var6.setVisible(false); + boolean var10 = var6.isDoubleBuffered(); + java.awt.dnd.DropTarget var11 = var6.getDropTarget(); + var6.show(false); + java.awt.Rectangle var14 = var6.getVisibleRect(); + java.awt.Rectangle var15 = var0.getBounds(var14); + javax.swing.JToolTip var16 = var0.createToolTip(); + java.awt.Dimension var17 = var0.minimumSize(); + SpaceWar.SpacePanel var18 = new SpaceWar.SpacePanel(); + float var19 = var18.getAlignmentX(); + var18.setVisible(false); + var18.setInheritsPopupMenu(false); + var18.setFocusTraversalPolicyProvider(true); + java.awt.Container var26 = var18.getFocusCycleRootAncestor(); + SpaceWar.SpacePanel var27 = new SpaceWar.SpacePanel(); + float var28 = var27.getAlignmentX(); + var27.removeNotify(); + SpaceWar.SpacePanel var30 = new SpaceWar.SpacePanel(); + float var31 = var30.getAlignmentX(); + var30.setVisible(false); + boolean var34 = var30.isDoubleBuffered(); + var30.list(); + float var36 = var30.getAlignmentY(); + java.awt.Insets var37 = var30.getInsets(); + java.awt.Insets var38 = var27.getInsets(var37); + java.awt.Insets var39 = var18.getInsets(var38); + java.awt.Insets var40 = var0.getInsets(var38); + var0.setFocusCycleRoot(true); + SpaceWar.SpacePanel var43 = new SpaceWar.SpacePanel(); + java.awt.Color var44 = var43.getBackground(); + var43.repaint(); + java.awt.im.InputMethodRequests var46 = var43.getInputMethodRequests(); + int var47 = var43.countComponents(); + java.awt.Dimension var48 = var43.getSize(); + SpaceWar.SpacePanel var49 = new SpaceWar.SpacePanel(); + var49.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + javax.swing.plaf.PanelUI var54 = var49.getUI(); + java.awt.Color var55 = var49.getBackground(); + var43.setBackground(var55); + var0.setForeground(var55); + var0.enable(); + javax.accessibility.AccessibleContext var59 = var0.getAccessibleContext(); + int var60 = var0.getY(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var28 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var31 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var34 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var36 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var37); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var38); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var39); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var40); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var44); + + // Regression assertion (captures the current behavior of the code) + assertNull(var46); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var47 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var48); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var54); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var55); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var59); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var60 == 0); + + } + + public void test131() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test131"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var6 = var0.getMouseListeners(); + java.awt.Dimension var7 = var0.getPreferredSize(); + java.util.Locale var8 = var0.getLocale(); + var0.setFocusable(true); + var0.setSize(3, 10); + var0.invalidate(); + var0.firePropertyChange("hi!", '4', '#'); + var0.enableInputMethods(false); + javax.swing.InputMap var21 = var0.getInputMap(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var21); + + } + + public void test132() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test132"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + var0.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + javax.swing.plaf.PanelUI var5 = var0.getUI(); + java.awt.Color var6 = var0.getBackground(); + var0.reshape((-1), (-1), 100, 100); + var0.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", 10, 0); + SpaceWar.SpacePanel var16 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var17 = new SpaceWar.SpacePanel(); + java.awt.Color var18 = var17.getBackground(); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + float var20 = var19.getAlignmentX(); + var19.setVisible(false); + var19.nextFocus(); + var19.updateUI(); + var19.enableInputMethods(true); + var16.add((java.awt.Component)var17, (java.lang.Object)true); + java.awt.Dimension var28 = var17.getPreferredSize(); + var17.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=1.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", '#', ' '); + java.lang.String var33 = var17.getUIClassID(); + var0.setNextFocusableComponent((java.awt.Component)var17); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var28); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var33 + "' != '" + "PanelUI"+ "'", var33.equals("PanelUI")); + + } + + public void test133() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test133"); + + + SpaceWar.Bullet var3 = new SpaceWar.Bullet(289.89972941256605d, 3, 10); + + } + + public void test134() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test134"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var6 = var0.getMouseListeners(); + var0.firePropertyChange("", 0.5f, 100.0f); + var0.enable(false); + boolean var13 = var0.isOpaque(); + var0.enableInputMethods(false); + var0.setAlignmentX(0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == true); + + } + + public void test135() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test135"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + var0.setName(""); + java.awt.Dimension var3 = var0.minimumSize(); + boolean var4 = var0.isDoubleBuffered(); + SpaceWar.SpacePanel var5 = new SpaceWar.SpacePanel(); + float var6 = var5.getAlignmentX(); + var5.setVisible(false); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + java.awt.Color var10 = var9.getBackground(); + var5.setForeground(var10); + SpaceWar.SpacePanel var12 = new SpaceWar.SpacePanel(); + float var13 = var12.getAlignmentX(); + var12.setVisible(false); + boolean var16 = var12.isDoubleBuffered(); + java.awt.dnd.DropTarget var17 = var12.getDropTarget(); + var12.show(false); + java.awt.Rectangle var20 = var12.getVisibleRect(); + var5.repaint(var20); + java.awt.FocusTraversalPolicy var22 = var5.getFocusTraversalPolicy(); + java.awt.im.InputMethodRequests var23 = var5.getInputMethodRequests(); + var5.layout(); + boolean var25 = var5.isFocusTraversalPolicyProvider(); + java.awt.Component var26 = var0.add((java.awt.Component)var5); + java.awt.event.KeyListener[] var27 = var5.getKeyListeners(); + var5.enable(); + int var31 = var5.getBaseline(24, 1); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertNull(var23); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var27); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var31 == (-1)); + + } + + public void test136() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test136"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + var0.show(false); + java.awt.Rectangle var8 = var0.getVisibleRect(); + java.awt.image.BufferedImage var10 = var0.loadImg("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + int var11 = var0.getComponentCount(); + SpaceWar.SpacePanel var12 = new SpaceWar.SpacePanel(); + float var13 = var12.getAlignmentX(); + var12.setVisible(false); + var12.nextFocus(); + var12.repaint(1L); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + float var20 = var19.getAlignmentX(); + var19.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var25 = new SpaceWar.SpacePanel(); + float var26 = var25.getAlignmentX(); + var25.setVisible(false); + java.awt.Dimension var29 = var25.getPreferredSize(); + var19.setMaximumSize(var29); + var12.setPreferredSize(var29); + java.awt.Container var32 = var12.getFocusCycleRootAncestor(); + java.awt.image.ColorModel var33 = var12.getColorModel(); + SpaceWar.SpacePanel var34 = new SpaceWar.SpacePanel(); + float var35 = var34.getAlignmentX(); + var34.setVisible(false); + boolean var38 = var34.isDoubleBuffered(); + java.awt.dnd.DropTarget var39 = var34.getDropTarget(); + var34.show(false); + boolean var42 = var34.isPaintingForPrint(); + SpaceWar.SpacePanel var43 = new SpaceWar.SpacePanel(); + float var44 = var43.getAlignmentX(); + var43.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var49 = var43.getMouseListeners(); + int var50 = var43.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var51 = var43.getInputMethodRequests(); + var34.addKeyListener((java.awt.event.KeyListener)var43); + SpaceWar.SpacePanel var53 = new SpaceWar.SpacePanel(); + float var54 = var53.getAlignmentX(); + var53.setVisible(false); + boolean var57 = var53.isDoubleBuffered(); + var53.list(); + float var59 = var53.getAlignmentY(); + boolean var60 = var43.isFocusCycleRoot((java.awt.Container)var53); + var53.firePropertyChange("", 1L, 1L); + var53.setVerifyInputWhenFocusTarget(true); + var53.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", '4', '4'); + java.awt.Point var71 = var53.getLocation(); + java.awt.Point var72 = var12.getLocation(var71); + java.awt.Component var73 = var0.findComponentAt(var71); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var29); + + // Regression assertion (captures the current behavior of the code) + assertNull(var32); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var33); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var35 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var38 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var39); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var42 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var44 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var49); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var50 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var51); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var54 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var57 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var59 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var60 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var71); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var72); + + // Regression assertion (captures the current behavior of the code) + assertNull(var73); + + } + + public void test137() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test137"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + var0.show(false); + java.awt.Rectangle var8 = var0.getVisibleRect(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var15 = var9.getMouseListeners(); + int var16 = var9.getDebugGraphicsOptions(); + SpaceWar.SpacePanel var17 = new SpaceWar.SpacePanel(); + float var18 = var17.getAlignmentX(); + var17.setVisible(false); + boolean var21 = var17.isDoubleBuffered(); + java.awt.dnd.DropTarget var22 = var17.getDropTarget(); + var17.show(false); + java.awt.Rectangle var25 = var17.getVisibleRect(); + var9.paintImmediately(var25); + java.awt.Rectangle var27 = var9.getBounds(); + var0.scrollRectToVisible(var27); + boolean var29 = var0.getIgnoreRepaint(); + java.lang.String var30 = var0.toString(); + var0.setBounds(0, 25, 1, 3); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var25); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var27); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var29 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var30 + "' != '" + "SpaceWar.SpacePanel[,0,0,0var30,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"+ "'", var30.equals("SpaceWar.SpacePanel[,0,0,0var30,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]")); + + } + + public void test138() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test138"); + + + SpaceWar.Text var4 = new SpaceWar.Text(561.355847267745d, 495.44236387443226d, 1L, "SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=8,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + + } + + public void test139() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test139"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.setInheritsPopupMenu(false); + var0.setFocusTraversalPolicyProvider(true); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + boolean var12 = var8.isDoubleBuffered(); + var8.list(); + SpaceWar.SpacePanel var14 = new SpaceWar.SpacePanel(); + float var15 = var14.getAlignmentX(); + var14.setVisible(false); + boolean var18 = var14.isDoubleBuffered(); + java.awt.dnd.DropTarget var19 = var14.getDropTarget(); + var14.show(false); + java.awt.Rectangle var22 = var14.getVisibleRect(); + java.awt.Rectangle var23 = var8.getBounds(var22); + javax.swing.JToolTip var24 = var8.createToolTip(); + var0.removeKeyListener((java.awt.event.KeyListener)var8); + javax.swing.TransferHandler var26 = var0.getTransferHandler(); + SpaceWar.SpacePanel var27 = new SpaceWar.SpacePanel(); + float var28 = var27.getAlignmentX(); + var27.setVisible(false); + var27.nextFocus(); + var27.repaint(1L); + SpaceWar.SpacePanel var34 = new SpaceWar.SpacePanel(); + float var35 = var34.getAlignmentX(); + var34.setVisible(false); + boolean var38 = var34.isDoubleBuffered(); + var34.list(); + SpaceWar.SpacePanel var40 = new SpaceWar.SpacePanel(); + float var41 = var40.getAlignmentX(); + var40.setVisible(false); + boolean var44 = var40.isDoubleBuffered(); + java.awt.dnd.DropTarget var45 = var40.getDropTarget(); + var40.show(false); + java.awt.Rectangle var48 = var40.getVisibleRect(); + java.awt.Rectangle var49 = var34.getBounds(var48); + var27.setBounds(var49); + var0.setBounds(var49); + boolean var52 = var0.isVisible(); + java.awt.Insets var53 = var0.getInsets(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var23); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var28 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var35 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var38 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var41 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var44 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var45); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var48); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var49); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var52 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var53); + + } + + public void test140() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test140"); + + + SpaceWar.Enemy var2 = new SpaceWar.Enemy(0, 100); + boolean var3 = var2.isDead(); + int var4 = var2.getType(); + var2.hit(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0); + + } + + public void test141() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test141"); + + + SpaceWar.Text var4 = new SpaceWar.Text(408.3256835490439d, 432.7832140219743d, 100L, "SpaceWar.SpacePanel[,-1,1,-1x10,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + + } + + public void test142() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test142"); + + + SpaceWar.Text var4 = new SpaceWar.Text((-8.529389630162045d), 240.9713786093358d, (-1L), "SpaceWar.SpacePanel[,100,0,100x0,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + boolean var5 = var4.update(); + boolean var6 = var4.update(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == true); + + } + + public void test143() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test143"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + var0.show(false); + boolean var8 = var0.isPaintingForPrint(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var15 = var9.getMouseListeners(); + int var16 = var9.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var17 = var9.getInputMethodRequests(); + var0.addKeyListener((java.awt.event.KeyListener)var9); + java.awt.Container var19 = var9.getFocusCycleRootAncestor(); + boolean var20 = var9.hasFocus(); + SpaceWar.SpacePanel var21 = new SpaceWar.SpacePanel(); + float var22 = var21.getAlignmentX(); + var21.setVisible(false); + var21.setInheritsPopupMenu(false); + boolean var27 = var21.isDoubleBuffered(); + boolean var28 = var21.isMinimumSizeSet(); + SpaceWar.SpacePanel var29 = new SpaceWar.SpacePanel(); + float var30 = var29.getAlignmentX(); + var29.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var35 = new SpaceWar.SpacePanel(); + float var36 = var35.getAlignmentX(); + var35.setVisible(false); + java.awt.Dimension var39 = var35.getPreferredSize(); + var29.setMaximumSize(var39); + boolean var41 = var29.getVerifyInputWhenFocusTarget(); + javax.accessibility.AccessibleContext var42 = var29.getAccessibleContext(); + boolean var43 = var29.isDoubleBuffered(); + java.awt.Rectangle var44 = var29.getVisibleRect(); + var21.setBounds(var44); + java.lang.Object var46 = var9.getClientProperty((java.lang.Object)var21); + java.awt.Insets var47 = var9.insets(); + SpaceWar.SpacePanel var48 = new SpaceWar.SpacePanel(); + float var49 = var48.getAlignmentX(); + var48.setVisible(false); + var48.setInheritsPopupMenu(false); + boolean var54 = var48.isMinimumSizeSet(); + java.awt.Point var56 = var48.getMousePosition(true); + boolean var57 = var9.isFocusCycleRoot((java.awt.Container)var48); + var9.revalidate(); + boolean var59 = var9.isOptimizedDrawingEnabled(); + java.awt.Rectangle var60 = var9.getBounds(); + var9.setAlignmentX(1.0f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var22 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var28 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var30 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var36 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var39); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var41 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var42); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var43 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var44); + + // Regression assertion (captures the current behavior of the code) + assertNull(var46); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var47); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var49 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var54 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var56); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var57 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var59 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var60); + + } + + public void test144() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test144"); + + + SpaceWar.Player var0 = new SpaceWar.Player(); + var0.increasePower(25); + var0.increasePower(0); + int var5 = var0.getX(); + var0.setDown(true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == 400); + + } + + public void test145() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test145"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.updateUI(); + var0.enableInputMethods(true); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + boolean var10 = var8.hasFocus(); + java.awt.Insets var11 = var8.getInsets(); + java.awt.Insets var12 = var0.getInsets(var11); + var0.enable(true); + boolean var15 = var0.getVerifyInputWhenFocusTarget(); + int var16 = var0.getWidth(); + java.lang.Object var17 = var0.getTreeLock(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var17); + + } + + public void test146() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test146"); + + + SpaceWar.Player var0 = new SpaceWar.Player(); + int var1 = var0.getPower(); + var0.setLeft(true); + var0.increasePower(0); + boolean var6 = var0.isDead(); + int var7 = var0.getPower(); + var0.increasePower(10); + var0.setFiring(true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0); + + } + + public void test147() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test147"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var1 = new SpaceWar.SpacePanel(); + java.awt.Color var2 = var1.getBackground(); + SpaceWar.SpacePanel var3 = new SpaceWar.SpacePanel(); + float var4 = var3.getAlignmentX(); + var3.setVisible(false); + var3.nextFocus(); + var3.updateUI(); + var3.enableInputMethods(true); + var0.add((java.awt.Component)var1, (java.lang.Object)true); + boolean var12 = var0.isMinimumSizeSet(); + var0.reshape(499, 2, 499, 500); + var0.repaint(1L); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var2); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == false); + + } + + public void test148() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test148"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + var0.list(); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + float var7 = var6.getAlignmentX(); + var6.setVisible(false); + boolean var10 = var6.isDoubleBuffered(); + java.awt.dnd.DropTarget var11 = var6.getDropTarget(); + var6.show(false); + java.awt.Rectangle var14 = var6.getVisibleRect(); + java.awt.image.BufferedImage var16 = var6.loadImg("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + boolean var17 = var0.isAncestorOf((java.awt.Component)var6); + float var18 = var0.getAlignmentX(); + java.awt.image.VolatileImage var21 = var0.createVolatileImage(25, 1); + java.beans.PropertyChangeListener[] var23 = var0.getPropertyChangeListeners("PanelUI"); + boolean var24 = var0.isPaintingForPrint(); + java.awt.im.InputContext var25 = var0.getInputContext(); + SpaceWar.SpacePanel var26 = new SpaceWar.SpacePanel(); + float var27 = var26.getAlignmentX(); + var26.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var32 = var26.getUI(); + java.awt.im.InputMethodRequests var33 = var26.getInputMethodRequests(); + SpaceWar.SpacePanel var34 = new SpaceWar.SpacePanel(); + float var35 = var34.getAlignmentX(); + var34.setVisible(false); + var34.nextFocus(); + var34.updateUI(); + var34.enableInputMethods(true); + var34.setSize((-1), 1); + SpaceWar.SpacePanel var45 = new SpaceWar.SpacePanel(); + var45.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var26.add((java.awt.Component)var34, (java.lang.Object)"SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + SpaceWar.SpacePanel var51 = new SpaceWar.SpacePanel(); + float var52 = var51.getAlignmentX(); + var51.setVisible(false); + var51.setInheritsPopupMenu(false); + boolean var57 = var51.isDoubleBuffered(); + boolean var58 = var51.isMinimumSizeSet(); + SpaceWar.SpacePanel var59 = new SpaceWar.SpacePanel(); + float var60 = var59.getAlignmentX(); + var59.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var65 = new SpaceWar.SpacePanel(); + float var66 = var65.getAlignmentX(); + var65.setVisible(false); + java.awt.Dimension var69 = var65.getPreferredSize(); + var59.setMaximumSize(var69); + boolean var71 = var59.getVerifyInputWhenFocusTarget(); + javax.accessibility.AccessibleContext var72 = var59.getAccessibleContext(); + boolean var73 = var59.isDoubleBuffered(); + java.awt.Rectangle var74 = var59.getVisibleRect(); + var51.setBounds(var74); + java.awt.Rectangle var76 = var26.getBounds(var74); + var0.scrollRectToVisible(var76); + int var78 = var0.getDebugGraphicsOptions(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNull(var21); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var23); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var24 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var25); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var32); + + // Regression assertion (captures the current behavior of the code) + assertNull(var33); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var35 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var52 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var57 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var58 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var60 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var66 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var69); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var71 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var72); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var73 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var74); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var76); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var78 == 0); + + } + + public void test149() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test149"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + boolean var2 = var0.hasFocus(); + java.awt.Insets var3 = var0.getInsets(); + boolean var4 = var0.isFocusTraversalPolicyProvider(); + java.beans.PropertyChangeListener[] var6 = var0.getPropertyChangeListeners("hi!"); + boolean var7 = var0.getIgnoreRepaint(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + boolean var12 = var8.isDoubleBuffered(); + var8.list(); + float var14 = var8.getAlignmentY(); + java.awt.Insets var15 = var8.getInsets(); + SpaceWar.SpacePanel var16 = new SpaceWar.SpacePanel(); + float var17 = var16.getAlignmentX(); + var16.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var22 = var16.getMouseListeners(); + var16.firePropertyChange("", 0.5f, 100.0f); + var16.enable(false); + SpaceWar.SpacePanel var29 = new SpaceWar.SpacePanel(); + float var30 = var29.getAlignmentX(); + SpaceWar.SpacePanel var31 = new SpaceWar.SpacePanel(); + float var32 = var31.getAlignmentX(); + var31.setVisible(false); + java.awt.Dimension var35 = var31.getPreferredSize(); + boolean var36 = var31.getVerifyInputWhenFocusTarget(); + java.awt.Component var39 = var31.findComponentAt(10, 1); + var29.addKeyListener((java.awt.event.KeyListener)var31); + java.awt.Cursor var41 = var29.getCursor(); + java.awt.Dimension var42 = var29.getMinimumSize(); + var16.setSize(var42); + java.awt.Dimension var44 = var8.getSize(var42); + var0.setPreferredSize(var44); + var0.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", (short)10, (short)0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var2 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var30 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var32 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var35); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var36 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var39); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var41); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var42); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var44); + + } + + public void test150() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test150"); + + + SpaceWar.Player var0 = new SpaceWar.Player(); + var0.increasePower(25); + int var3 = var0.getR(); + int var4 = var0.getScore(); + var0.loseLife(); + int var6 = var0.getX(); + int var7 = var0.getLives(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == 25); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == 400); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 2); + + } + + public void test151() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test151"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + boolean var2 = var0.hasFocus(); + boolean var3 = var0.isPreferredSizeSet(); + var0.firePropertyChange("", (short)1, (short)0); + boolean var8 = var0.isMaximumSizeSet(); + java.awt.image.ColorModel var9 = var0.getColorModel(); + var0.enableInputMethods(true); + boolean var12 = var0.isPaintingForPrint(); + boolean var13 = var0.isValidateRoot(); + java.awt.Toolkit var14 = var0.getToolkit(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var2 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var9); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + } + + public void test152() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test152"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var6 = var0.getMouseListeners(); + int var7 = var0.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var8 = var0.getInputMethodRequests(); + var0.setToolTipText(""); + boolean var11 = var0.isOpaque(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == true); + + } + + public void test153() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test153"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + float var7 = var6.getAlignmentX(); + var6.setVisible(false); + SpaceWar.SpacePanel var10 = new SpaceWar.SpacePanel(); + java.awt.Color var11 = var10.getBackground(); + var6.setForeground(var11); + var0.setBackground(var11); + java.awt.Point var14 = var0.location(); + var0.setToolTipText("SpaceWar.SpacePanel[,0,0,0x0,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + var0.setName(""); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + float var20 = var19.getAlignmentX(); + var19.setVisible(false); + var19.nextFocus(); + var19.repaint(1L); + SpaceWar.SpacePanel var26 = new SpaceWar.SpacePanel(); + float var27 = var26.getAlignmentX(); + var26.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var32 = new SpaceWar.SpacePanel(); + float var33 = var32.getAlignmentX(); + var32.setVisible(false); + java.awt.Dimension var36 = var32.getPreferredSize(); + var26.setMaximumSize(var36); + var19.setPreferredSize(var36); + javax.swing.plaf.PanelUI var39 = var19.getUI(); + java.awt.Dimension var40 = var19.getMinimumSize(); + boolean var41 = var19.isFocusable(); + var19.enable(); + boolean var43 = var0.isAncestorOf((java.awt.Component)var19); + var19.setAutoscrolls(false); + SpaceWar.SpacePanel var46 = new SpaceWar.SpacePanel(); + float var47 = var46.getAlignmentX(); + boolean var48 = var46.hasFocus(); + java.awt.Insets var49 = var46.getInsets(); + java.awt.Rectangle var50 = var46.bounds(); + java.awt.event.MouseMotionListener[] var51 = var46.getMouseMotionListeners(); + boolean var52 = var46.isMaximumSizeSet(); + java.awt.LayoutManager var53 = var46.getLayout(); + java.awt.Rectangle var54 = var46.getBounds(); + var19.remove((java.awt.Component)var46); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var33 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var36); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var39); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var40); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var41 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var43 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var47 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var48 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var49); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var50); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var51); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var52 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var53); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var54); + + } + + public void test154() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test154"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + var0.show(false); + boolean var8 = var0.isPaintingForPrint(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var15 = var9.getMouseListeners(); + int var16 = var9.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var17 = var9.getInputMethodRequests(); + var0.addKeyListener((java.awt.event.KeyListener)var9); + boolean var19 = var0.isDisplayable(); + java.awt.Point var20 = var0.getLocation(); + var0.layout(); + java.awt.peer.ComponentPeer var22 = var0.getPeer(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertNull(var22); + + } + + public void test155() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test155"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + java.awt.Dimension var4 = var0.getPreferredSize(); + boolean var5 = var0.getVerifyInputWhenFocusTarget(); + java.awt.Component var8 = var0.findComponentAt(10, 1); + boolean var9 = var0.requestDefaultFocus(); + boolean var10 = var0.isPaintingTile(); + SpaceWar.SpacePanel var11 = new SpaceWar.SpacePanel(); + var11.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + javax.swing.plaf.PanelUI var16 = var11.getUI(); + java.awt.Color var17 = var11.getBackground(); + var0.addKeyListener((java.awt.event.KeyListener)var11); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + float var20 = var19.getAlignmentX(); + var19.setVisible(false); + var19.nextFocus(); + var19.repaint(1L); + var19.firePropertyChange("", (short)(-1), (short)(-1)); + java.awt.Component var32 = var19.getComponentAt(0, 100); + var19.nextFocus(); + boolean var34 = var0.isAncestorOf((java.awt.Component)var19); + var0.hide(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var4); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNull(var32); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var34 == false); + + } + + public void test156() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test156"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.setInheritsPopupMenu(false); + var0.setFocusTraversalPolicyProvider(true); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + boolean var12 = var8.isDoubleBuffered(); + var8.list(); + SpaceWar.SpacePanel var14 = new SpaceWar.SpacePanel(); + float var15 = var14.getAlignmentX(); + var14.setVisible(false); + boolean var18 = var14.isDoubleBuffered(); + java.awt.dnd.DropTarget var19 = var14.getDropTarget(); + var14.show(false); + java.awt.Rectangle var22 = var14.getVisibleRect(); + java.awt.Rectangle var23 = var8.getBounds(var22); + javax.swing.JToolTip var24 = var8.createToolTip(); + var0.removeKeyListener((java.awt.event.KeyListener)var8); + var0.setFocusTraversalKeysEnabled(true); + javax.swing.KeyStroke[] var28 = var0.getRegisteredKeyStrokes(); + SpaceWar.SpacePanel var29 = new SpaceWar.SpacePanel(); + float var30 = var29.getAlignmentX(); + var29.setVisible(false); + java.awt.Dimension var33 = var29.getPreferredSize(); + java.awt.Toolkit var34 = var29.getToolkit(); + boolean var35 = var29.isFocusable(); + javax.swing.KeyStroke[] var36 = var29.getRegisteredKeyStrokes(); + java.awt.Component var39 = var29.getComponentAt(100, 100); + java.lang.Object var40 = var29.getTreeLock(); + boolean var43 = var29.inside(400, 0); + java.awt.event.MouseWheelListener[] var44 = var29.getMouseWheelListeners(); + var29.enableInputMethods(true); + boolean var47 = var0.isAncestorOf((java.awt.Component)var29); + boolean var48 = var0.isEnabled(); + SpaceWar.SpacePanel var49 = new SpaceWar.SpacePanel(); + float var50 = var49.getAlignmentX(); + var49.setVisible(false); + java.awt.Dimension var53 = var49.getPreferredSize(); + boolean var54 = var49.getVerifyInputWhenFocusTarget(); + java.awt.Component var57 = var49.findComponentAt(10, 1); + boolean var58 = var49.requestDefaultFocus(); + var49.setVerifyInputWhenFocusTarget(false); + java.awt.Point var61 = var49.getLocation(); + boolean var62 = var0.contains(var61); + boolean var63 = var0.requestDefaultFocus(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var23); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var28); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var30 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var33); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var34); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var35 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var36); + + // Regression assertion (captures the current behavior of the code) + assertNull(var39); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var40); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var43 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var44); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var47 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var48 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var50 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var53); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var54 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var57); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var58 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var61); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var62 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var63 == false); + + } + + public void test157() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test157"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + java.awt.Dimension var4 = var0.getPreferredSize(); + boolean var5 = var0.getVerifyInputWhenFocusTarget(); + java.awt.Component var8 = var0.findComponentAt(10, 1); + boolean var9 = var0.isCursorSet(); + SpaceWar.SpacePanel var10 = new SpaceWar.SpacePanel(); + float var11 = var10.getAlignmentX(); + var10.setVisible(false); + var10.nextFocus(); + var10.updateUI(); + var10.enableInputMethods(true); + java.awt.Point var18 = var10.location(); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + float var20 = var19.getAlignmentX(); + var19.setVisible(false); + var19.nextFocus(); + var19.reshape((-1), 1, (-1), 10); + SpaceWar.SpacePanel var29 = new SpaceWar.SpacePanel(); + java.awt.Color var30 = var29.getBackground(); + var29.repaint(); + var29.setRequestFocusEnabled(false); + var29.reshape(100, 0, 100, 0); + java.awt.Component var39 = var19.add((java.awt.Component)var29); + SpaceWar.SpacePanel var40 = new SpaceWar.SpacePanel(); + var40.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + javax.swing.plaf.PanelUI var45 = var40.getUI(); + SpaceWar.SpacePanel var46 = new SpaceWar.SpacePanel(); + float var47 = var46.getAlignmentX(); + var46.setVisible(false); + var46.nextFocus(); + var46.repaint(1L); + SpaceWar.SpacePanel var53 = new SpaceWar.SpacePanel(); + float var54 = var53.getAlignmentX(); + var53.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var59 = new SpaceWar.SpacePanel(); + float var60 = var59.getAlignmentX(); + var59.setVisible(false); + java.awt.Dimension var63 = var59.getPreferredSize(); + var53.setMaximumSize(var63); + var46.setPreferredSize(var63); + var40.setMaximumSize(var63); + java.awt.Dimension var67 = var29.getSize(var63); + var10.setMaximumSize(var63); + var0.setMinimumSize(var63); + boolean var70 = var0.isValidateRoot(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var4); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var30); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var39); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var45); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var47 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var54 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var60 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var63); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var67); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var70 == false); + + } + + public void test158() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test158"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + java.awt.im.InputMethodRequests var3 = var0.getInputMethodRequests(); + var0.setDoubleBuffered(true); + var0.setInheritsPopupMenu(false); + javax.swing.plaf.PanelUI var8 = var0.getUI(); + java.util.Set var10 = var0.getFocusTraversalKeys(3); + var0.requestFocus(); + var0.setLocation(0, 24); + var0.doLayout(); + SpaceWar.SpacePanel var16 = new SpaceWar.SpacePanel(); + float var17 = var16.getAlignmentX(); + var16.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var22 = var16.getMouseListeners(); + var16.firePropertyChange("", 0.5f, 100.0f); + var16.enable(false); + int var29 = var16.getDebugGraphicsOptions(); + SpaceWar.SpacePanel var30 = new SpaceWar.SpacePanel(); + float var31 = var30.getAlignmentX(); + var30.setVisible(false); + var30.nextFocus(); + var30.repaint(1L); + SpaceWar.SpacePanel var37 = new SpaceWar.SpacePanel(); + float var38 = var37.getAlignmentX(); + var37.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var43 = new SpaceWar.SpacePanel(); + float var44 = var43.getAlignmentX(); + var43.setVisible(false); + java.awt.Dimension var47 = var43.getPreferredSize(); + var37.setMaximumSize(var47); + var30.setPreferredSize(var47); + java.awt.Container var50 = var30.getFocusCycleRootAncestor(); + java.awt.image.ColorModel var51 = var30.getColorModel(); + int var52 = var30.getComponentCount(); + java.awt.Component var53 = var16.add((java.awt.Component)var30); + var30.setBounds((-1), 25, 10, (-1)); + var30.grabFocus(); + boolean var60 = var0.isAncestorOf((java.awt.Component)var30); + var30.setFocusTraversalKeysEnabled(false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var29 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var31 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var38 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var44 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var47); + + // Regression assertion (captures the current behavior of the code) + assertNull(var50); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var51); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var52 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var53); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var60 == false); + + } + + public void test159() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test159"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + java.awt.Dimension var4 = var0.getPreferredSize(); + java.awt.Toolkit var5 = var0.getToolkit(); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + var6.setName(""); + int var9 = var6.getX(); + SpaceWar.SpacePanel var10 = new SpaceWar.SpacePanel(); + float var11 = var10.getAlignmentX(); + var10.setVisible(false); + var10.nextFocus(); + SpaceWar.SpacePanel var15 = new SpaceWar.SpacePanel(); + float var16 = var15.getAlignmentX(); + var15.setVisible(false); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + java.awt.Color var20 = var19.getBackground(); + var15.setForeground(var20); + var10.setBackground(var20); + var6.setBackground(var20); + var0.setForeground(var20); + SpaceWar.SpacePanel var25 = new SpaceWar.SpacePanel(); + float var26 = var25.getAlignmentX(); + var25.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var31 = new SpaceWar.SpacePanel(); + float var32 = var31.getAlignmentX(); + var31.setVisible(false); + java.awt.Dimension var35 = var31.getPreferredSize(); + var25.setMaximumSize(var35); + boolean var37 = var25.getVerifyInputWhenFocusTarget(); + javax.accessibility.AccessibleContext var38 = var25.getAccessibleContext(); + boolean var39 = var25.isDoubleBuffered(); + java.awt.Rectangle var40 = var25.getVisibleRect(); + var0.scrollRectToVisible(var40); + SpaceWar.SpacePanel var42 = new SpaceWar.SpacePanel(); + float var43 = var42.getAlignmentX(); + var42.setVisible(false); + java.awt.Dimension var46 = var42.getPreferredSize(); + java.awt.Toolkit var47 = var42.getToolkit(); + SpaceWar.SpacePanel var48 = new SpaceWar.SpacePanel(); + var48.setName(""); + int var51 = var48.getX(); + SpaceWar.SpacePanel var52 = new SpaceWar.SpacePanel(); + float var53 = var52.getAlignmentX(); + var52.setVisible(false); + var52.nextFocus(); + SpaceWar.SpacePanel var57 = new SpaceWar.SpacePanel(); + float var58 = var57.getAlignmentX(); + var57.setVisible(false); + SpaceWar.SpacePanel var61 = new SpaceWar.SpacePanel(); + java.awt.Color var62 = var61.getBackground(); + var57.setForeground(var62); + var52.setBackground(var62); + var48.setBackground(var62); + var42.setForeground(var62); + SpaceWar.SpacePanel var67 = new SpaceWar.SpacePanel(); + float var68 = var67.getAlignmentX(); + var67.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var73 = new SpaceWar.SpacePanel(); + float var74 = var73.getAlignmentX(); + var73.setVisible(false); + java.awt.Dimension var77 = var73.getPreferredSize(); + var67.setMaximumSize(var77); + boolean var79 = var67.getVerifyInputWhenFocusTarget(); + javax.accessibility.AccessibleContext var80 = var67.getAccessibleContext(); + boolean var81 = var67.isDoubleBuffered(); + java.awt.Rectangle var82 = var67.getVisibleRect(); + var42.scrollRectToVisible(var82); + var0.removeKeyListener((java.awt.event.KeyListener)var42); + var42.firePropertyChange("PanelUI", (short)1, (short)1); + int var89 = var42.getHeight(); + var42.layout(); + var42.resize(499, 24); + java.lang.String var94 = var42.getName(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var4); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var32 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var35); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var38); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var39 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var40); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var43 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var46); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var47); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var51 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var53 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var58 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var62); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var68 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var74 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var77); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var79 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var80); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var81 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var82); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var89 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var94); + + } + + public void test160() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test160"); + + + SpaceWar.Player var0 = new SpaceWar.Player(); + int var1 = var0.getPower(); + int var2 = var0.getPower(); + int var3 = var0.getLives(); + boolean var4 = var0.isRecovering(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var2 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == 3); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == false); + + } + + public void test161() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test161"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.setInheritsPopupMenu(false); + var0.setFocusTraversalPolicyProvider(true); + boolean var10 = var0.inside(25, 3); + SpaceWar.SpacePanel var11 = new SpaceWar.SpacePanel(); + float var12 = var11.getAlignmentX(); + var11.setVisible(false); + boolean var15 = var11.isDoubleBuffered(); + java.awt.dnd.DropTarget var16 = var11.getDropTarget(); + var11.show(false); + boolean var19 = var11.isPaintingForPrint(); + SpaceWar.SpacePanel var20 = new SpaceWar.SpacePanel(); + float var21 = var20.getAlignmentX(); + SpaceWar.SpacePanel var22 = new SpaceWar.SpacePanel(); + float var23 = var22.getAlignmentX(); + var22.setVisible(false); + java.awt.Dimension var26 = var22.getPreferredSize(); + boolean var27 = var22.getVerifyInputWhenFocusTarget(); + java.awt.Component var30 = var22.findComponentAt(10, 1); + var20.addKeyListener((java.awt.event.KeyListener)var22); + java.awt.Dimension var32 = var22.getMinimumSize(); + var11.setMinimumSize(var32); + var0.setPreferredSize(var32); + boolean var36 = var0.requestFocus(true); + java.awt.Dimension var37 = var0.getMinimumSize(); + java.lang.String var38 = var0.toString(); + int var39 = var0.countComponents(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var30); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var32); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var36 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var37); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var38 + "' != '" + "SpaceWar.SpacePanel[,0,0,0var38,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=10,height=10]]"+ "'", var38.equals("SpaceWar.SpacePanel[,0,0,0var38,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=10,height=10]]")); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var39 == 0); + + } + + public void test162() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test162"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + SpaceWar.SpacePanel var5 = new SpaceWar.SpacePanel(); + java.awt.Color var6 = var5.getBackground(); + var5.repaint(); + java.lang.Object var8 = var0.getClientProperty((java.lang.Object)var5); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + java.awt.Color var10 = var9.getBackground(); + boolean var13 = var9.inside(0, (-1)); + SpaceWar.SpacePanel var14 = new SpaceWar.SpacePanel(); + float var15 = var14.getAlignmentX(); + var14.setVisible(false); + SpaceWar.SpacePanel var18 = new SpaceWar.SpacePanel(); + java.awt.Color var19 = var18.getBackground(); + var14.setForeground(var19); + var9.setForeground(var19); + var5.setBackground(var19); + java.awt.Image var25 = var5.createImage(100, 24); + SpaceWar.SpacePanel var26 = new SpaceWar.SpacePanel(); + var26.setName(""); + java.awt.Dimension var29 = var26.minimumSize(); + boolean var30 = var26.isDoubleBuffered(); + java.awt.event.HierarchyListener[] var31 = var26.getHierarchyListeners(); + java.awt.Font var32 = var26.getFont(); + var5.setFont(var32); + SpaceWar.SpacePanel var35 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var36 = new SpaceWar.SpacePanel(); + java.awt.Color var37 = var36.getBackground(); + SpaceWar.SpacePanel var38 = new SpaceWar.SpacePanel(); + float var39 = var38.getAlignmentX(); + var38.setVisible(false); + var38.nextFocus(); + var38.updateUI(); + var38.enableInputMethods(true); + var35.add((java.awt.Component)var36, (java.lang.Object)true); + boolean var47 = var35.isMinimumSizeSet(); + var35.reshape(499, 2, 499, 500); + java.awt.Component var53 = var5.add("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=10,height=10]]", (java.awt.Component)var35); + SpaceWar.SpacePanel var54 = new SpaceWar.SpacePanel(); + float var55 = var54.getAlignmentX(); + var54.setVisible(false); + boolean var58 = var54.isDoubleBuffered(); + java.awt.dnd.DropTarget var59 = var54.getDropTarget(); + var54.show(false); + java.awt.Rectangle var62 = var54.getVisibleRect(); + java.awt.image.BufferedImage var64 = var54.loadImg("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + java.awt.ComponentOrientation var65 = var54.getComponentOrientation(); + var35.setComponentOrientation(var65); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertNull(var25); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var29); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var30 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var31); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var32); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var37); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var39 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var47 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var53); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var55 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var58 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var59); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var62); + + // Regression assertion (captures the current behavior of the code) + assertNull(var64); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var65); + + } + + public void test163() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test163"); + + + SpaceWar.Text var4 = new SpaceWar.Text(506.9915098063617d, 323.62099822147866d, 10L, "hi!"); + boolean var5 = var4.update(); + boolean var6 = var4.update(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == false); + + } + + public void test164() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test164"); + + + SpaceWar.Player var0 = new SpaceWar.Player(); + int var1 = var0.getPower(); + var0.setFiring(true); + var0.loseLife(); + int var5 = var0.getR(); + boolean var6 = var0.isDead(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == 25); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == false); + + } + + public void test165() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test165"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + var0.list(); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + float var7 = var6.getAlignmentX(); + var6.setVisible(false); + boolean var10 = var6.isDoubleBuffered(); + java.awt.dnd.DropTarget var11 = var6.getDropTarget(); + var6.show(false); + java.awt.Rectangle var14 = var6.getVisibleRect(); + java.awt.Rectangle var15 = var0.getBounds(var14); + javax.swing.JToolTip var16 = var0.createToolTip(); + java.awt.Dimension var17 = var0.minimumSize(); + SpaceWar.SpacePanel var18 = new SpaceWar.SpacePanel(); + float var19 = var18.getAlignmentX(); + var18.setVisible(false); + var18.setInheritsPopupMenu(false); + var18.setFocusTraversalPolicyProvider(true); + java.awt.Container var26 = var18.getFocusCycleRootAncestor(); + SpaceWar.SpacePanel var27 = new SpaceWar.SpacePanel(); + float var28 = var27.getAlignmentX(); + var27.removeNotify(); + SpaceWar.SpacePanel var30 = new SpaceWar.SpacePanel(); + float var31 = var30.getAlignmentX(); + var30.setVisible(false); + boolean var34 = var30.isDoubleBuffered(); + var30.list(); + float var36 = var30.getAlignmentY(); + java.awt.Insets var37 = var30.getInsets(); + java.awt.Insets var38 = var27.getInsets(var37); + java.awt.Insets var39 = var18.getInsets(var38); + java.awt.Insets var40 = var0.getInsets(var38); + java.awt.image.VolatileImage var43 = var0.createVolatileImage(3, 0); + int var44 = var0.getHeight(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var28 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var31 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var34 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var36 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var37); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var38); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var39); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var40); + + // Regression assertion (captures the current behavior of the code) + assertNull(var43); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var44 == 0); + + } + + public void test166() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test166"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + var0.show(false); + boolean var8 = var0.isPaintingForPrint(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var15 = var9.getMouseListeners(); + int var16 = var9.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var17 = var9.getInputMethodRequests(); + var0.addKeyListener((java.awt.event.KeyListener)var9); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + float var20 = var19.getAlignmentX(); + var19.setVisible(false); + boolean var23 = var19.isDoubleBuffered(); + var19.list(); + float var25 = var19.getAlignmentY(); + boolean var26 = var9.isFocusCycleRoot((java.awt.Container)var19); + javax.swing.JPopupMenu var27 = var19.getComponentPopupMenu(); + var19.firePropertyChange("hi!", 3, 0); + boolean var32 = var19.isValidateRoot(); + java.awt.Rectangle var33 = var19.getVisibleRect(); + var19.setSize(500, 499); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var27); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var32 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var33); + + } + + public void test167() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test167"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + float var7 = var6.getAlignmentX(); + var6.setVisible(false); + SpaceWar.SpacePanel var10 = new SpaceWar.SpacePanel(); + java.awt.Color var11 = var10.getBackground(); + var6.setForeground(var11); + var0.setBackground(var11); + var0.grabFocus(); + SpaceWar.SpacePanel var15 = new SpaceWar.SpacePanel(); + float var16 = var15.getAlignmentX(); + var15.setVisible(false); + boolean var19 = var15.isDoubleBuffered(); + java.awt.dnd.DropTarget var20 = var15.getDropTarget(); + boolean var21 = var15.isFocusCycleRoot(); + SpaceWar.SpacePanel var22 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var23 = new SpaceWar.SpacePanel(); + java.awt.Color var24 = var23.getBackground(); + SpaceWar.SpacePanel var25 = new SpaceWar.SpacePanel(); + float var26 = var25.getAlignmentX(); + var25.setVisible(false); + var25.nextFocus(); + var25.updateUI(); + var25.enableInputMethods(true); + var22.add((java.awt.Component)var23, (java.lang.Object)true); + java.awt.Dimension var34 = var23.getPreferredSize(); + var15.setSize(var34); + var0.setMaximumSize(var34); + float var37 = var0.getAlignmentY(); + boolean var38 = var0.getFocusTraversalKeysEnabled(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var34); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var38 == true); + + } + + public void test168() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test168"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + SpaceWar.SpacePanel var4 = new SpaceWar.SpacePanel(); + java.awt.Color var5 = var4.getBackground(); + var0.setForeground(var5); + SpaceWar.SpacePanel var7 = new SpaceWar.SpacePanel(); + float var8 = var7.getAlignmentX(); + var7.setVisible(false); + boolean var11 = var7.isDoubleBuffered(); + java.awt.dnd.DropTarget var12 = var7.getDropTarget(); + var7.show(false); + java.awt.Rectangle var15 = var7.getVisibleRect(); + var0.repaint(var15); + java.awt.FocusTraversalPolicy var17 = var0.getFocusTraversalPolicy(); + java.awt.im.InputMethodRequests var18 = var0.getInputMethodRequests(); + var0.layout(); + boolean var20 = var0.isCursorSet(); + java.awt.Dimension var21 = var0.size(); + var0.enable(); + java.awt.Rectangle var23 = var0.getVisibleRect(); + var0.setAlignmentY((-1.0f)); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var21); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var23); + + } + + public void test169() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test169"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.repaint(1L); + SpaceWar.SpacePanel var7 = new SpaceWar.SpacePanel(); + float var8 = var7.getAlignmentX(); + var7.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var13 = new SpaceWar.SpacePanel(); + float var14 = var13.getAlignmentX(); + var13.setVisible(false); + java.awt.Dimension var17 = var13.getPreferredSize(); + var7.setMaximumSize(var17); + var0.setPreferredSize(var17); + var0.enable(); + boolean var21 = var0.requestDefaultFocus(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == false); + + } + + public void test170() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test170"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + java.awt.Dimension var4 = var0.getPreferredSize(); + boolean var5 = var0.getVerifyInputWhenFocusTarget(); + boolean var6 = var0.isShowing(); + boolean var7 = var0.isBackgroundSet(); + java.awt.im.InputContext var8 = var0.getInputContext(); + var0.firePropertyChange("hi!", (short)100, (short)1); + javax.swing.plaf.PanelUI var13 = var0.getUI(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var4); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var13); + + } + + public void test171() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test171"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var1 = new SpaceWar.SpacePanel(); + java.awt.Color var2 = var1.getBackground(); + SpaceWar.SpacePanel var3 = new SpaceWar.SpacePanel(); + float var4 = var3.getAlignmentX(); + var3.setVisible(false); + var3.nextFocus(); + var3.updateUI(); + var3.enableInputMethods(true); + var0.add((java.awt.Component)var1, (java.lang.Object)true); + java.awt.Dimension var12 = var1.getPreferredSize(); + var1.move(100, 10); + java.awt.Graphics var16 = var1.getGraphics(); + boolean var17 = var1.isMinimumSizeSet(); + var1.firePropertyChange("SpaceWar.SpacePanel[,-1,100,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=265,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", (short)10, (short)0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var2); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == false); + + } + + public void test172() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test172"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.setInheritsPopupMenu(false); + var0.setFocusTraversalPolicyProvider(true); + float var8 = var0.getAlignmentX(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.setVisible(false); + var9.nextFocus(); + SpaceWar.SpacePanel var14 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var15 = new SpaceWar.SpacePanel(); + java.awt.Color var16 = var15.getBackground(); + SpaceWar.SpacePanel var17 = new SpaceWar.SpacePanel(); + float var18 = var17.getAlignmentX(); + var17.setVisible(false); + var17.nextFocus(); + var17.updateUI(); + var17.enableInputMethods(true); + var14.add((java.awt.Component)var15, (java.lang.Object)true); + java.awt.Dimension var26 = var15.getPreferredSize(); + var9.setMaximumSize(var26); + java.awt.Dimension var28 = var9.preferredSize(); + boolean var29 = var9.getVerifyInputWhenFocusTarget(); + java.awt.Rectangle var30 = var9.bounds(); + var0.computeVisibleRect(var30); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var28); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var29 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var30); + + } + + public void test173() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test173"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + var0.show(false); + java.awt.Rectangle var8 = var0.getVisibleRect(); + java.awt.Dimension var9 = var0.getMinimumSize(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var9); + + } + + public void test174() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test174"); + + + SpaceWar.Enemy var2 = new SpaceWar.Enemy(0, 100); + var2.explode(); + java.awt.image.BufferedImage var5 = var2.loadImg("SpaceWar.SpacePanel[,-1,1,-1x10,invalid,hidden,disabled,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + int var6 = var2.getType(); + int var7 = var2.getType(); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0); + + } + + public void test175() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test175"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + var0.show(false); + boolean var8 = var0.isPaintingForPrint(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var15 = var9.getMouseListeners(); + int var16 = var9.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var17 = var9.getInputMethodRequests(); + var0.addKeyListener((java.awt.event.KeyListener)var9); + boolean var19 = var0.isDisplayable(); + var0.resize(400, 2); + boolean var23 = var0.isFocusTraversalPolicySet(); + SpaceWar.SpacePanel var24 = new SpaceWar.SpacePanel(); + float var25 = var24.getAlignmentX(); + boolean var26 = var24.hasFocus(); + boolean var27 = var24.isPreferredSizeSet(); + var24.firePropertyChange("", (short)1, (short)0); + boolean var32 = var24.isMaximumSizeSet(); + java.awt.peer.ComponentPeer var33 = var24.getPeer(); + java.awt.ComponentOrientation var34 = var24.getComponentOrientation(); + SpaceWar.SpacePanel var35 = new SpaceWar.SpacePanel(); + float var36 = var35.getAlignmentX(); + var35.setVisible(false); + SpaceWar.SpacePanel var39 = new SpaceWar.SpacePanel(); + java.awt.Color var40 = var39.getBackground(); + var35.setForeground(var40); + SpaceWar.SpacePanel var42 = new SpaceWar.SpacePanel(); + float var43 = var42.getAlignmentX(); + var42.setVisible(false); + boolean var46 = var42.isDoubleBuffered(); + java.awt.dnd.DropTarget var47 = var42.getDropTarget(); + var42.show(false); + java.awt.Rectangle var50 = var42.getVisibleRect(); + var35.repaint(var50); + java.awt.FocusTraversalPolicy var52 = var35.getFocusTraversalPolicy(); + var35.resetKeyboardActions(); + SpaceWar.SpacePanel var54 = new SpaceWar.SpacePanel(); + float var55 = var54.getAlignmentX(); + var54.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var60 = var54.getMouseListeners(); + int var61 = var54.getDebugGraphicsOptions(); + SpaceWar.SpacePanel var62 = new SpaceWar.SpacePanel(); + float var63 = var62.getAlignmentX(); + var62.setVisible(false); + boolean var66 = var62.isDoubleBuffered(); + java.awt.dnd.DropTarget var67 = var62.getDropTarget(); + var62.show(false); + java.awt.Rectangle var70 = var62.getVisibleRect(); + var54.paintImmediately(var70); + var35.setBounds(var70); + java.awt.Rectangle var73 = var24.getBounds(var70); + var0.paintImmediately(var73); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var32 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var33); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var34); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var36 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var40); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var43 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var46 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var47); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var50); + + // Regression assertion (captures the current behavior of the code) + assertNull(var52); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var55 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var60); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var61 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var63 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var66 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var67); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var70); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var73); + + } + + public void test176() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test176"); + + + SpaceWar.Enemy var2 = new SpaceWar.Enemy(10, 2); + var2.update(); + var2.explode(); + + } + + public void test177() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test177"); + + + SpaceWar.Player var0 = new SpaceWar.Player(); + int var1 = var0.getR(); + var0.setRigth(false); + int var4 = var0.getY(); + var0.increasePower(499); + var0.setRigth(true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 25); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 500); + + } + + public void test178() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test178"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var6 = var0.getMouseListeners(); + int var7 = var0.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var8 = var0.getInputMethodRequests(); + var0.removeNotify(); + var0.enable(); + SpaceWar.SpacePanel var11 = new SpaceWar.SpacePanel(); + java.awt.Color var12 = var11.getBackground(); + boolean var15 = var11.inside(0, (-1)); + var11.transferFocusUpCycle(); + java.lang.String var17 = var11.getName(); + boolean var18 = var0.isFocusCycleRoot((java.awt.Container)var11); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + java.awt.Color var20 = var19.getBackground(); + var19.repaint(); + var19.setRequestFocusEnabled(false); + var19.reshape(100, 0, 100, 0); + var19.requestFocus(); + var19.firePropertyChange("hi!", '4', ' '); + java.awt.Point var34 = var19.getLocation(); + java.awt.Component var35 = var11.getComponentAt(var34); + SpaceWar.SpacePanel var36 = new SpaceWar.SpacePanel(); + float var37 = var36.getAlignmentX(); + var36.setVisible(false); + boolean var40 = var36.isDoubleBuffered(); + java.awt.dnd.DropTarget var41 = var36.getDropTarget(); + boolean var42 = var36.isFocusCycleRoot(); + SpaceWar.SpacePanel var43 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var44 = new SpaceWar.SpacePanel(); + java.awt.Color var45 = var44.getBackground(); + SpaceWar.SpacePanel var46 = new SpaceWar.SpacePanel(); + float var47 = var46.getAlignmentX(); + var46.setVisible(false); + var46.nextFocus(); + var46.updateUI(); + var46.enableInputMethods(true); + var43.add((java.awt.Component)var44, (java.lang.Object)true); + java.awt.Dimension var55 = var44.getPreferredSize(); + var36.setSize(var55); + var36.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", (-1), 10); + SpaceWar.SpacePanel var61 = new SpaceWar.SpacePanel(); + float var62 = var61.getAlignmentX(); + var61.setVisible(false); + var61.nextFocus(); + var61.repaint(1L); + SpaceWar.SpacePanel var68 = new SpaceWar.SpacePanel(); + float var69 = var68.getAlignmentX(); + var68.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var74 = new SpaceWar.SpacePanel(); + float var75 = var74.getAlignmentX(); + var74.setVisible(false); + java.awt.Dimension var78 = var74.getPreferredSize(); + var68.setMaximumSize(var78); + var61.setPreferredSize(var78); + var36.setSize(var78); + javax.swing.plaf.PanelUI var82 = var36.getUI(); + var11.setUI(var82); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var34); + + // Regression assertion (captures the current behavior of the code) + assertNull(var35); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var40 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var41); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var42 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var45); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var47 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var55); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var62 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var69 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var75 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var78); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var82); + + } + + public void test179() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test179"); + + + SpaceWar.Player var0 = new SpaceWar.Player(); + int var1 = var0.getR(); + var0.setRigth(false); + int var4 = var0.getY(); + var0.increasePower(499); + java.awt.image.BufferedImage var8 = var0.loadImg("SpaceWar.SpacePanel[,0,0,0x0,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + boolean var9 = var0.isDead(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 25); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 500); + + // Regression assertion (captures the current behavior of the code) + assertNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == false); + + } + + public void test180() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test180"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.setInheritsPopupMenu(false); + var0.setFocusTraversalPolicyProvider(true); + boolean var10 = var0.inside(25, 3); + SpaceWar.SpacePanel var11 = new SpaceWar.SpacePanel(); + float var12 = var11.getAlignmentX(); + var11.setVisible(false); + boolean var15 = var11.isDoubleBuffered(); + java.awt.dnd.DropTarget var16 = var11.getDropTarget(); + var11.show(false); + boolean var19 = var11.isPaintingForPrint(); + SpaceWar.SpacePanel var20 = new SpaceWar.SpacePanel(); + float var21 = var20.getAlignmentX(); + SpaceWar.SpacePanel var22 = new SpaceWar.SpacePanel(); + float var23 = var22.getAlignmentX(); + var22.setVisible(false); + java.awt.Dimension var26 = var22.getPreferredSize(); + boolean var27 = var22.getVerifyInputWhenFocusTarget(); + java.awt.Component var30 = var22.findComponentAt(10, 1); + var20.addKeyListener((java.awt.event.KeyListener)var22); + java.awt.Dimension var32 = var22.getMinimumSize(); + var11.setMinimumSize(var32); + var0.setPreferredSize(var32); + java.awt.Point var35 = var0.location(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var30); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var32); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var35); + + } + + public void test181() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test181"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + java.awt.im.InputMethodRequests var3 = var0.getInputMethodRequests(); + int var4 = var0.countComponents(); + java.awt.event.ComponentListener[] var5 = var0.getComponentListeners(); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + float var7 = var6.getAlignmentX(); + var6.removeNotify(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.setVisible(false); + boolean var13 = var9.isDoubleBuffered(); + var9.list(); + float var15 = var9.getAlignmentY(); + java.awt.Insets var16 = var9.getInsets(); + java.awt.Insets var17 = var6.getInsets(var16); + java.awt.Insets var18 = var0.getInsets(var17); + javax.swing.JPopupMenu var19 = var0.getComponentPopupMenu(); + java.awt.image.BufferedImage var21 = var0.loadImg("PanelUI"); + var0.setVerifyInputWhenFocusTarget(false); + SpaceWar.SpacePanel var24 = new SpaceWar.SpacePanel(); + java.awt.Color var25 = var24.getBackground(); + boolean var28 = var24.inside(0, (-1)); + SpaceWar.SpacePanel var30 = new SpaceWar.SpacePanel(); + float var31 = var30.getAlignmentX(); + var30.setVisible(false); + var30.nextFocus(); + var30.reshape((-1), 1, (-1), 10); + var30.disable(); + boolean var41 = var30.isFocusable(); + SpaceWar.SpacePanel var42 = new SpaceWar.SpacePanel(); + float var43 = var42.getAlignmentX(); + var42.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var48 = var42.getUI(); + java.awt.im.InputMethodRequests var49 = var42.getInputMethodRequests(); + SpaceWar.SpacePanel var50 = new SpaceWar.SpacePanel(); + float var51 = var50.getAlignmentX(); + var50.setVisible(false); + var50.nextFocus(); + var50.updateUI(); + var50.enableInputMethods(true); + var50.setSize((-1), 1); + SpaceWar.SpacePanel var61 = new SpaceWar.SpacePanel(); + var61.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var42.add((java.awt.Component)var50, (java.lang.Object)"SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + java.awt.event.KeyListener[] var67 = var42.getKeyListeners(); + java.awt.FocusTraversalPolicy var68 = var42.getFocusTraversalPolicy(); + SpaceWar.SpacePanel var69 = new SpaceWar.SpacePanel(); + var69.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + java.awt.Toolkit var74 = var69.getToolkit(); + var30.add((java.awt.Component)var42, (java.lang.Object)var69); + var30.layout(); + java.awt.Component var77 = var24.add("", (java.awt.Component)var30); + java.lang.Object var78 = var0.getClientProperty((java.lang.Object)var77); + boolean var79 = var0.isPaintingForPrint(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertNull(var21); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var25); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var28 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var31 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var41 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var43 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var48); + + // Regression assertion (captures the current behavior of the code) + assertNull(var49); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var51 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var67); + + // Regression assertion (captures the current behavior of the code) + assertNull(var68); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var74); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var77); + + // Regression assertion (captures the current behavior of the code) + assertNull(var78); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var79 == false); + + } + + public void test182() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test182"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + java.awt.Dimension var4 = var0.getPreferredSize(); + boolean var5 = var0.getVerifyInputWhenFocusTarget(); + java.awt.Component var8 = var0.findComponentAt(10, 1); + boolean var9 = var0.requestDefaultFocus(); + java.awt.Insets var10 = var0.getInsets(); + var0.setDoubleBuffered(false); + java.awt.Point var14 = var0.getMousePosition(true); + boolean var15 = var0.getFocusTraversalKeysEnabled(); + java.awt.Dimension var16 = var0.getSize(); + java.awt.image.ColorModel var17 = var0.getColorModel(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var4); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var17); + + } + + public void test183() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test183"); + + + SpaceWar.Player var0 = new SpaceWar.Player(); + var0.increasePower(25); + int var3 = var0.getScore(); + var0.setRigth(true); + var0.update(); + var0.increasePower(499); + var0.setLife(2); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == 0); + + } + + public void test184() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test184"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + SpaceWar.SpacePanel var4 = new SpaceWar.SpacePanel(); + java.awt.Color var5 = var4.getBackground(); + var0.setForeground(var5); + SpaceWar.SpacePanel var7 = new SpaceWar.SpacePanel(); + float var8 = var7.getAlignmentX(); + var7.setVisible(false); + boolean var11 = var7.isDoubleBuffered(); + java.awt.dnd.DropTarget var12 = var7.getDropTarget(); + var7.show(false); + java.awt.Rectangle var15 = var7.getVisibleRect(); + var0.repaint(var15); + java.awt.FocusTraversalPolicy var17 = var0.getFocusTraversalPolicy(); + SpaceWar.SpacePanel var18 = new SpaceWar.SpacePanel(); + float var19 = var18.getAlignmentX(); + var18.firePropertyChange("", (-1), 1); + boolean var24 = var18.isFocusOwner(); + SpaceWar.SpacePanel var26 = new SpaceWar.SpacePanel(); + float var27 = var26.getAlignmentX(); + var26.setVisible(false); + java.awt.Dimension var30 = var26.getPreferredSize(); + java.awt.Toolkit var31 = var26.getToolkit(); + SpaceWar.SpacePanel var32 = new SpaceWar.SpacePanel(); + var32.setName(""); + int var35 = var32.getX(); + SpaceWar.SpacePanel var36 = new SpaceWar.SpacePanel(); + float var37 = var36.getAlignmentX(); + var36.setVisible(false); + var36.nextFocus(); + SpaceWar.SpacePanel var41 = new SpaceWar.SpacePanel(); + float var42 = var41.getAlignmentX(); + var41.setVisible(false); + SpaceWar.SpacePanel var45 = new SpaceWar.SpacePanel(); + java.awt.Color var46 = var45.getBackground(); + var41.setForeground(var46); + var36.setBackground(var46); + var32.setBackground(var46); + var26.setForeground(var46); + var18.putClientProperty((java.lang.Object)(byte)100, (java.lang.Object)var46); + var0.setBackground(var46); + SpaceWar.SpacePanel var53 = new SpaceWar.SpacePanel(); + float var54 = var53.getAlignmentX(); + var53.setVisible(false); + boolean var57 = var53.isDoubleBuffered(); + java.awt.dnd.DropTarget var58 = var53.getDropTarget(); + var53.show(false); + boolean var61 = var53.isPaintingForPrint(); + SpaceWar.SpacePanel var62 = new SpaceWar.SpacePanel(); + float var63 = var62.getAlignmentX(); + SpaceWar.SpacePanel var64 = new SpaceWar.SpacePanel(); + float var65 = var64.getAlignmentX(); + var64.setVisible(false); + java.awt.Dimension var68 = var64.getPreferredSize(); + boolean var69 = var64.getVerifyInputWhenFocusTarget(); + java.awt.Component var72 = var64.findComponentAt(10, 1); + var62.addKeyListener((java.awt.event.KeyListener)var64); + java.awt.Dimension var74 = var64.getMinimumSize(); + var53.setMinimumSize(var74); + java.awt.Dimension var76 = var0.getSize(var74); + boolean var77 = var0.isValid(); + int var78 = var0.getWidth(); + var0.setAlignmentY(0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var24 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var30); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var31); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var35 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var42 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var46); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var54 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var57 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var58); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var61 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var63 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var65 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var68); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var69 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var72); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var74); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var76); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var77 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var78 == 0); + + } + + public void test185() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test185"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var1 = new SpaceWar.SpacePanel(); + java.awt.Color var2 = var1.getBackground(); + SpaceWar.SpacePanel var3 = new SpaceWar.SpacePanel(); + float var4 = var3.getAlignmentX(); + var3.setVisible(false); + var3.nextFocus(); + var3.updateUI(); + var3.enableInputMethods(true); + var0.add((java.awt.Component)var1, (java.lang.Object)true); + var1.show(true); + boolean var14 = var1.isShowing(); + java.awt.Color var15 = var1.getBackground(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var2); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + } + + public void test186() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test186"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + java.awt.im.InputMethodRequests var3 = var0.getInputMethodRequests(); + var0.setDoubleBuffered(true); + var0.show(false); + var0.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", (-1), 24); + SpaceWar.SpacePanel var12 = new SpaceWar.SpacePanel(); + java.awt.Color var13 = var12.getBackground(); + var12.repaint(); + java.awt.im.InputMethodRequests var15 = var12.getInputMethodRequests(); + int var16 = var12.countComponents(); + java.awt.event.ComponentListener[] var17 = var12.getComponentListeners(); + var12.removeNotify(); + javax.swing.InputMap var19 = var12.getInputMap(); + SpaceWar.SpacePanel var20 = new SpaceWar.SpacePanel(); + float var21 = var20.getAlignmentX(); + var20.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var26 = new SpaceWar.SpacePanel(); + float var27 = var26.getAlignmentX(); + var26.setVisible(false); + SpaceWar.SpacePanel var30 = new SpaceWar.SpacePanel(); + java.awt.Color var31 = var30.getBackground(); + var26.setForeground(var31); + var20.setBackground(var31); + java.awt.Point var34 = var20.location(); + var12.setLocation(var34); + var0.setLocation(var34); + java.awt.Image var39 = var0.createImage(399, 1); + var0.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=java.awt.Dimension[width=800,height=600],minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", true, false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var31); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var34); + + // Regression assertion (captures the current behavior of the code) + assertNull(var39); + + } + + public void test187() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test187"); + + + SpaceWar.Player var0 = new SpaceWar.Player(); + var0.increasePower(25); + int var3 = var0.getScore(); + var0.setRigth(true); + var0.loseLife(); + var0.increasePower(3); + var0.setRigth(true); + var0.setScore(2); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == 0); + + } + + public void test188() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test188"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + SpaceWar.SpacePanel var2 = new SpaceWar.SpacePanel(); + float var3 = var2.getAlignmentX(); + var2.setVisible(false); + java.awt.Dimension var6 = var2.getPreferredSize(); + boolean var7 = var2.getVerifyInputWhenFocusTarget(); + java.awt.Component var10 = var2.findComponentAt(10, 1); + var0.addKeyListener((java.awt.event.KeyListener)var2); + SpaceWar.SpacePanel var12 = new SpaceWar.SpacePanel(); + float var13 = var12.getAlignmentX(); + SpaceWar.SpacePanel var14 = new SpaceWar.SpacePanel(); + float var15 = var14.getAlignmentX(); + var14.setVisible(false); + java.awt.Dimension var18 = var14.getPreferredSize(); + boolean var19 = var14.getVerifyInputWhenFocusTarget(); + java.awt.Component var22 = var14.findComponentAt(10, 1); + var12.addKeyListener((java.awt.event.KeyListener)var14); + var14.repaint(100, (-1), (-1), 1); + java.awt.image.ColorModel var29 = var14.getColorModel(); + SpaceWar.SpacePanel var30 = new SpaceWar.SpacePanel(); + float var31 = var30.getAlignmentX(); + var30.setVisible(false); + boolean var34 = var30.isDoubleBuffered(); + var30.list(); + SpaceWar.SpacePanel var36 = new SpaceWar.SpacePanel(); + float var37 = var36.getAlignmentX(); + var36.setVisible(false); + boolean var40 = var36.isDoubleBuffered(); + java.awt.dnd.DropTarget var41 = var36.getDropTarget(); + var36.show(false); + java.awt.Rectangle var44 = var36.getVisibleRect(); + java.awt.image.BufferedImage var46 = var36.loadImg("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + boolean var47 = var30.isAncestorOf((java.awt.Component)var36); + javax.swing.InputVerifier var48 = var36.getInputVerifier(); + var2.putClientProperty((java.lang.Object)var14, (java.lang.Object)var36); + java.lang.String var50 = var2.getUIClassID(); + SpaceWar.SpacePanel var51 = new SpaceWar.SpacePanel(); + float var52 = var51.getAlignmentX(); + var51.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var57 = var51.getMouseListeners(); + int var58 = var51.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var59 = var51.getInputMethodRequests(); + var51.removeNotify(); + var51.enable(); + SpaceWar.SpacePanel var62 = new SpaceWar.SpacePanel(); + java.awt.Color var63 = var62.getBackground(); + boolean var66 = var62.inside(0, (-1)); + var62.transferFocusUpCycle(); + java.lang.String var68 = var62.getName(); + boolean var69 = var51.isFocusCycleRoot((java.awt.Container)var62); + java.awt.Dimension var70 = var51.getMinimumSize(); + boolean var73 = var51.inside(500, 3); + boolean var74 = var2.isFocusCycleRoot((java.awt.Container)var51); + java.awt.image.ColorModel var75 = var2.getColorModel(); + var2.setLocation(3, 1); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var29); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var31 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var34 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var40 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var41); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var44); + + // Regression assertion (captures the current behavior of the code) + assertNull(var46); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var47 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var48); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var50 + "' != '" + "PanelUI"+ "'", var50.equals("PanelUI")); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var52 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var57); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var58 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var59); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var63); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var66 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var68); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var69 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var70); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var73 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var74 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var75); + + } + + public void test189() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test189"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + var0.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + java.awt.event.ContainerListener[] var5 = var0.getContainerListeners(); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + float var7 = var6.getAlignmentX(); + var6.setVisible(false); + var6.setInheritsPopupMenu(false); + boolean var12 = var6.isDoubleBuffered(); + SpaceWar.SpacePanel var13 = new SpaceWar.SpacePanel(); + float var14 = var13.getAlignmentX(); + var13.setVisible(false); + var13.nextFocus(); + var13.reshape((-1), 1, (-1), 10); + var13.disable(); + java.awt.LayoutManager var24 = var13.getLayout(); + var6.setLayout(var24); + var0.setLayout(var24); + int var27 = var0.getComponentCount(); + java.awt.LayoutManager var28 = var0.getLayout(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var28); + + } + + public void test190() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test190"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + var0.enable(false); + boolean var7 = var0.getFocusTraversalKeysEnabled(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + java.awt.Dimension var12 = var8.getPreferredSize(); + java.awt.Toolkit var13 = var8.getToolkit(); + boolean var14 = var8.isFocusable(); + javax.swing.KeyStroke[] var15 = var8.getRegisteredKeyStrokes(); + SpaceWar.SpacePanel var16 = new SpaceWar.SpacePanel(); + float var17 = var16.getAlignmentX(); + SpaceWar.SpacePanel var18 = new SpaceWar.SpacePanel(); + float var19 = var18.getAlignmentX(); + var18.setVisible(false); + java.awt.Dimension var22 = var18.getPreferredSize(); + boolean var23 = var18.getVerifyInputWhenFocusTarget(); + java.awt.Component var26 = var18.findComponentAt(10, 1); + var16.addKeyListener((java.awt.event.KeyListener)var18); + var18.repaint(100, (-1), (-1), 1); + boolean var33 = var8.isAncestorOf((java.awt.Component)var18); + var0.addKeyListener((java.awt.event.KeyListener)var18); + var18.hide(); + java.awt.event.MouseWheelListener[] var36 = var18.getMouseWheelListeners(); + var18.setLocation((-1), 500); + java.awt.Insets var40 = var18.insets(); + boolean var41 = var18.isCursorSet(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var33 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var36); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var40); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var41 == false); + + } + + public void test191() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test191"); + + + SpaceWar.Enemy var2 = new SpaceWar.Enemy(25, (-1)); + var2.update(); + var2.update(); + double var5 = var2.getX(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == 261.0993676452089d); + + } + + public void test192() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test192"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + java.awt.Dimension var4 = var0.getPreferredSize(); + java.awt.Toolkit var5 = var0.getToolkit(); + boolean var6 = var0.isFocusable(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + var8.nextFocus(); + var8.reshape((-1), 1, (-1), 10); + java.util.Set var19 = var8.getFocusTraversalKeys(3); + var0.setFocusTraversalKeys(1, var19); + SpaceWar.SpacePanel var21 = new SpaceWar.SpacePanel(); + float var22 = var21.getAlignmentX(); + var21.setVisible(false); + SpaceWar.SpacePanel var25 = new SpaceWar.SpacePanel(); + java.awt.Color var26 = var25.getBackground(); + var21.setForeground(var26); + SpaceWar.SpacePanel var28 = new SpaceWar.SpacePanel(); + float var29 = var28.getAlignmentX(); + var28.setVisible(false); + boolean var32 = var28.isDoubleBuffered(); + java.awt.dnd.DropTarget var33 = var28.getDropTarget(); + var28.show(false); + java.awt.Rectangle var36 = var28.getVisibleRect(); + var21.repaint(var36); + java.awt.FocusTraversalPolicy var38 = var21.getFocusTraversalPolicy(); + java.awt.im.InputMethodRequests var39 = var21.getInputMethodRequests(); + var21.layout(); + java.awt.Container var41 = var21.getFocusCycleRootAncestor(); + SpaceWar.SpacePanel var42 = new SpaceWar.SpacePanel(); + float var43 = var42.getAlignmentX(); + var42.setVisible(false); + boolean var46 = var42.isDoubleBuffered(); + var42.list(); + SpaceWar.SpacePanel var48 = new SpaceWar.SpacePanel(); + float var49 = var48.getAlignmentX(); + var48.setVisible(false); + boolean var52 = var48.isDoubleBuffered(); + java.awt.dnd.DropTarget var53 = var48.getDropTarget(); + var48.show(false); + java.awt.Rectangle var56 = var48.getVisibleRect(); + java.awt.Rectangle var57 = var42.getBounds(var56); + javax.swing.JToolTip var58 = var42.createToolTip(); + var42.firePropertyChange("", false, false); + var42.validate(); + SpaceWar.SpacePanel var64 = new SpaceWar.SpacePanel(); + float var65 = var64.getAlignmentX(); + var64.setVisible(false); + boolean var68 = var64.isDoubleBuffered(); + java.awt.dnd.DropTarget var69 = var64.getDropTarget(); + var64.show(false); + boolean var72 = var64.isPaintingForPrint(); + SpaceWar.SpacePanel var73 = new SpaceWar.SpacePanel(); + float var74 = var73.getAlignmentX(); + var73.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var79 = var73.getMouseListeners(); + int var80 = var73.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var81 = var73.getInputMethodRequests(); + var64.addKeyListener((java.awt.event.KeyListener)var73); + var73.repaint(); + java.awt.Point var84 = var73.location(); + java.awt.Component var85 = var42.getComponentAt(var84); + var21.setLocation(var84); + java.awt.Point var87 = var0.getLocation(var84); + java.awt.Component var90 = var0.locate(10, 25); + var0.setVerifyInputWhenFocusTarget(false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var4); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var22 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var29 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var32 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var33); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var36); + + // Regression assertion (captures the current behavior of the code) + assertNull(var38); + + // Regression assertion (captures the current behavior of the code) + assertNull(var39); + + // Regression assertion (captures the current behavior of the code) + assertNull(var41); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var43 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var46 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var49 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var52 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var53); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var56); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var57); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var58); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var65 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var68 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var69); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var72 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var74 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var79); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var80 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var81); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var84); + + // Regression assertion (captures the current behavior of the code) + assertNull(var85); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var87); + + // Regression assertion (captures the current behavior of the code) + assertNull(var90); + + } + + public void test193() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test193"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.requestFocus(); + boolean var6 = var0.isBackgroundSet(); + SpaceWar.SpacePanel var7 = new SpaceWar.SpacePanel(); + java.awt.Color var8 = var7.getBackground(); + var7.repaint(); + var7.setRequestFocusEnabled(false); + var7.reshape(100, 0, 100, 0); + SpaceWar.SpacePanel var17 = new SpaceWar.SpacePanel(); + float var18 = var17.getAlignmentX(); + var17.setVisible(false); + var17.setInheritsPopupMenu(false); + boolean var23 = var17.isDoubleBuffered(); + SpaceWar.SpacePanel var24 = new SpaceWar.SpacePanel(); + float var25 = var24.getAlignmentX(); + var24.setVisible(false); + var24.nextFocus(); + var24.reshape((-1), 1, (-1), 10); + var24.disable(); + java.awt.LayoutManager var35 = var24.getLayout(); + var17.setLayout(var35); + var0.add((java.awt.Component)var7, (java.lang.Object)var35); + var7.hide(); + java.awt.Component var41 = var7.locate(2, 24); + var7.show(false); + boolean var44 = var7.isLightweight(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var35); + + // Regression assertion (captures the current behavior of the code) + assertNull(var41); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var44 == false); + + } + + public void test194() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test194"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + var0.show(false); + boolean var8 = var0.isPaintingForPrint(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var15 = var9.getMouseListeners(); + int var16 = var9.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var17 = var9.getInputMethodRequests(); + var0.addKeyListener((java.awt.event.KeyListener)var9); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + float var20 = var19.getAlignmentX(); + var19.setVisible(false); + boolean var23 = var19.isDoubleBuffered(); + var19.list(); + float var25 = var19.getAlignmentY(); + boolean var26 = var9.isFocusCycleRoot((java.awt.Container)var19); + SpaceWar.SpacePanel var28 = new SpaceWar.SpacePanel(); + float var29 = var28.getAlignmentX(); + var28.setVisible(false); + var28.nextFocus(); + var28.updateUI(); + java.awt.Component var34 = var9.add("", (java.awt.Component)var28); + var9.firePropertyChange("hi!", 'a', '4'); + java.awt.Color var39 = var9.getBackground(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var29 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var34); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var39); + + } + + public void test195() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test195"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.updateUI(); + var0.enableInputMethods(true); + java.awt.Point var9 = var0.getMousePosition(false); + java.awt.Component.BaselineResizeBehavior var10 = var0.getBaselineResizeBehavior(); + boolean var11 = var0.isMaximumSizeSet(); + // The following exception was thrown during execution. + // This behavior will recorded for regression testing. + try { + var0.remove(2); + fail("Expected exception of type java.lang.ArrayIndexOutOfBoundsException"); + } catch (java.lang.ArrayIndexOutOfBoundsException e) { + // Expected exception. + } + + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNull(var9); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == false); + + } + + public void test196() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test196"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + java.lang.String var2 = var0.toString(); + var0.setAlignmentX(0.5f); + SpaceWar.SpacePanel var5 = new SpaceWar.SpacePanel(); + float var6 = var5.getAlignmentX(); + var5.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var11 = var5.getUI(); + java.awt.im.InputMethodRequests var12 = var5.getInputMethodRequests(); + SpaceWar.SpacePanel var13 = new SpaceWar.SpacePanel(); + float var14 = var13.getAlignmentX(); + var13.setVisible(false); + var13.nextFocus(); + var13.updateUI(); + var13.enableInputMethods(true); + var13.setSize((-1), 1); + SpaceWar.SpacePanel var24 = new SpaceWar.SpacePanel(); + var24.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var5.add((java.awt.Component)var13, (java.lang.Object)"SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + SpaceWar.SpacePanel var30 = new SpaceWar.SpacePanel(); + float var31 = var30.getAlignmentX(); + var30.setVisible(false); + java.awt.Dimension var34 = var30.getPreferredSize(); + java.awt.Toolkit var35 = var30.getToolkit(); + java.awt.Toolkit var36 = var30.getToolkit(); + java.awt.Component var37 = var13.add((java.awt.Component)var30); + int var38 = var13.getY(); + int var41 = var13.getBaseline(25, 10); + var0.setComponentZOrder((java.awt.Component)var13, 0); + java.awt.event.HierarchyBoundsListener[] var44 = var13.getHierarchyBoundsListeners(); + var13.validate(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var2 + "' != '" + "SpaceWar.SpacePanel[,0,0,0var2,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"+ "'", var2.equals("SpaceWar.SpacePanel[,0,0,0var2,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]")); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var31 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var34); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var35); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var36); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var37); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var38 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var41 == (-1)); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var44); + + } + + public void test197() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test197"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var1 = new SpaceWar.SpacePanel(); + java.awt.Color var2 = var1.getBackground(); + SpaceWar.SpacePanel var3 = new SpaceWar.SpacePanel(); + float var4 = var3.getAlignmentX(); + var3.setVisible(false); + var3.nextFocus(); + var3.updateUI(); + var3.enableInputMethods(true); + var0.add((java.awt.Component)var1, (java.lang.Object)true); + boolean var12 = var0.isMinimumSizeSet(); + java.awt.event.HierarchyListener[] var13 = var0.getHierarchyListeners(); + var0.repaint(0L); + boolean var16 = var0.isShowing(); + java.awt.event.InputMethodListener[] var17 = var0.getInputMethodListeners(); + var0.updateUI(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var2); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var17); + + } + + public void test198() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test198"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.setInheritsPopupMenu(false); + boolean var6 = var0.isDoubleBuffered(); + SpaceWar.SpacePanel var7 = new SpaceWar.SpacePanel(); + float var8 = var7.getAlignmentX(); + var7.setVisible(false); + var7.nextFocus(); + var7.reshape((-1), 1, (-1), 10); + var7.disable(); + java.awt.LayoutManager var18 = var7.getLayout(); + var0.setLayout(var18); + java.awt.event.MouseMotionListener[] var20 = var0.getMouseMotionListeners(); + java.awt.event.MouseWheelListener[] var21 = var0.getMouseWheelListeners(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var21); + + } + + public void test199() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test199"); + + + SpaceWar.PowerUp var3 = new SpaceWar.PowerUp(10, 370.2289277239558d, 5.0d); + + } + + public void test200() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test200"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + java.awt.im.InputMethodRequests var3 = var0.getInputMethodRequests(); + java.awt.GraphicsConfiguration var4 = var0.getGraphicsConfiguration(); + boolean var6 = var0.requestFocus(false); + var0.validate(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertNull(var4); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == false); + + } + + public void test201() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test201"); + + + SpaceWar.Player var0 = new SpaceWar.Player(); + boolean var1 = var0.isRecovering(); + var0.loseLife(); + int var3 = var0.getR(); + var0.loseLife(); + int var5 = var0.getY(); + var0.setRigth(true); + int var8 = var0.getLives(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == 25); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == 500); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 1); + + } + + public void test202() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test202"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var1 = new SpaceWar.SpacePanel(); + java.awt.Color var2 = var1.getBackground(); + SpaceWar.SpacePanel var3 = new SpaceWar.SpacePanel(); + float var4 = var3.getAlignmentX(); + var3.setVisible(false); + var3.nextFocus(); + var3.updateUI(); + var3.enableInputMethods(true); + var0.add((java.awt.Component)var1, (java.lang.Object)true); + boolean var13 = var1.areFocusTraversalKeysSet(0); + SpaceWar.SpacePanel var14 = new SpaceWar.SpacePanel(); + float var15 = var14.getAlignmentX(); + var14.setVisible(false); + SpaceWar.SpacePanel var18 = new SpaceWar.SpacePanel(); + java.awt.Color var19 = var18.getBackground(); + var14.setForeground(var19); + SpaceWar.SpacePanel var21 = new SpaceWar.SpacePanel(); + float var22 = var21.getAlignmentX(); + var21.setVisible(false); + boolean var25 = var21.isDoubleBuffered(); + java.awt.dnd.DropTarget var26 = var21.getDropTarget(); + var21.show(false); + java.awt.Rectangle var29 = var21.getVisibleRect(); + var14.repaint(var29); + java.awt.FocusTraversalPolicy var31 = var14.getFocusTraversalPolicy(); + SpaceWar.SpacePanel var32 = new SpaceWar.SpacePanel(); + float var33 = var32.getAlignmentX(); + var32.firePropertyChange("", (-1), 1); + boolean var38 = var32.isFocusOwner(); + SpaceWar.SpacePanel var40 = new SpaceWar.SpacePanel(); + float var41 = var40.getAlignmentX(); + var40.setVisible(false); + java.awt.Dimension var44 = var40.getPreferredSize(); + java.awt.Toolkit var45 = var40.getToolkit(); + SpaceWar.SpacePanel var46 = new SpaceWar.SpacePanel(); + var46.setName(""); + int var49 = var46.getX(); + SpaceWar.SpacePanel var50 = new SpaceWar.SpacePanel(); + float var51 = var50.getAlignmentX(); + var50.setVisible(false); + var50.nextFocus(); + SpaceWar.SpacePanel var55 = new SpaceWar.SpacePanel(); + float var56 = var55.getAlignmentX(); + var55.setVisible(false); + SpaceWar.SpacePanel var59 = new SpaceWar.SpacePanel(); + java.awt.Color var60 = var59.getBackground(); + var55.setForeground(var60); + var50.setBackground(var60); + var46.setBackground(var60); + var40.setForeground(var60); + var32.putClientProperty((java.lang.Object)(byte)100, (java.lang.Object)var60); + var14.setBackground(var60); + SpaceWar.SpacePanel var67 = new SpaceWar.SpacePanel(); + float var68 = var67.getAlignmentX(); + var67.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var73 = new SpaceWar.SpacePanel(); + float var74 = var73.getAlignmentX(); + var73.setVisible(false); + SpaceWar.SpacePanel var77 = new SpaceWar.SpacePanel(); + java.awt.Color var78 = var77.getBackground(); + var73.setForeground(var78); + var67.setBackground(var78); + java.awt.Point var81 = var67.location(); + java.awt.Point var82 = var14.getLocation(var81); + boolean var83 = var1.contains(var82); + boolean var84 = var1.isDisplayable(); + boolean var85 = var1.isFocusTraversalPolicyProvider(); + var1.resize((-1), 3); + var1.setFocusTraversalPolicyProvider(true); + boolean var91 = var1.isFontSet(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var2); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var22 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var29); + + // Regression assertion (captures the current behavior of the code) + assertNull(var31); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var33 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var38 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var41 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var44); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var45); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var49 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var51 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var56 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var60); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var68 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var74 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var78); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var81); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var82); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var83 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var84 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var85 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var91 == true); + + } + + public void test203() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test203"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + java.awt.Dimension var4 = var0.getPreferredSize(); + java.awt.Toolkit var5 = var0.getToolkit(); + boolean var6 = var0.isFocusable(); + javax.swing.KeyStroke[] var7 = var0.getRegisteredKeyStrokes(); + java.awt.Component var10 = var0.getComponentAt(100, 100); + java.lang.Object var11 = var0.getTreeLock(); + SpaceWar.SpacePanel var12 = new SpaceWar.SpacePanel(); + float var13 = var12.getAlignmentX(); + var12.setVisible(false); + boolean var16 = var12.isDoubleBuffered(); + java.awt.dnd.DropTarget var17 = var12.getDropTarget(); + java.awt.Point var18 = var12.getMousePosition(); + java.lang.String var19 = var12.getUIClassID(); + var0.setNextFocusableComponent((java.awt.Component)var12); + SpaceWar.SpacePanel var21 = new SpaceWar.SpacePanel(); + float var22 = var21.getAlignmentX(); + var21.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var27 = var21.getUI(); + java.awt.im.InputMethodRequests var28 = var21.getInputMethodRequests(); + SpaceWar.SpacePanel var29 = new SpaceWar.SpacePanel(); + float var30 = var29.getAlignmentX(); + var29.setVisible(false); + var29.nextFocus(); + var29.updateUI(); + var29.enableInputMethods(true); + var29.setSize((-1), 1); + SpaceWar.SpacePanel var40 = new SpaceWar.SpacePanel(); + var40.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var21.add((java.awt.Component)var29, (java.lang.Object)"SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + SpaceWar.SpacePanel var46 = new SpaceWar.SpacePanel(); + float var47 = var46.getAlignmentX(); + var46.setVisible(false); + java.awt.Dimension var50 = var46.getPreferredSize(); + java.awt.Toolkit var51 = var46.getToolkit(); + java.awt.Toolkit var52 = var46.getToolkit(); + java.awt.Component var53 = var29.add((java.awt.Component)var46); + var29.setDebugGraphicsOptions(0); + var29.setVerifyInputWhenFocusTarget(false); + var29.nextFocus(); + var29.repaint(100, 0, 10, 3); + java.awt.Dimension var64 = var29.getSize(); + javax.swing.InputVerifier var65 = var29.getInputVerifier(); + var0.remove((java.awt.Component)var29); + var0.setFocusTraversalPolicyProvider(false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var4); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var19 + "' != '" + "PanelUI"+ "'", var19.equals("PanelUI")); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var22 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var27); + + // Regression assertion (captures the current behavior of the code) + assertNull(var28); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var30 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var47 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var50); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var51); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var52); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var53); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var64); + + // Regression assertion (captures the current behavior of the code) + assertNull(var65); + + } + + public void test204() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test204"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + java.awt.Dimension var4 = var0.getPreferredSize(); + java.awt.Toolkit var5 = var0.getToolkit(); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + var6.setName(""); + int var9 = var6.getX(); + SpaceWar.SpacePanel var10 = new SpaceWar.SpacePanel(); + float var11 = var10.getAlignmentX(); + var10.setVisible(false); + var10.nextFocus(); + SpaceWar.SpacePanel var15 = new SpaceWar.SpacePanel(); + float var16 = var15.getAlignmentX(); + var15.setVisible(false); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + java.awt.Color var20 = var19.getBackground(); + var15.setForeground(var20); + var10.setBackground(var20); + var6.setBackground(var20); + var0.setForeground(var20); + SpaceWar.SpacePanel var25 = new SpaceWar.SpacePanel(); + float var26 = var25.getAlignmentX(); + var25.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var31 = new SpaceWar.SpacePanel(); + float var32 = var31.getAlignmentX(); + var31.setVisible(false); + java.awt.Dimension var35 = var31.getPreferredSize(); + var25.setMaximumSize(var35); + boolean var37 = var25.getVerifyInputWhenFocusTarget(); + javax.accessibility.AccessibleContext var38 = var25.getAccessibleContext(); + boolean var39 = var25.isDoubleBuffered(); + java.awt.Rectangle var40 = var25.getVisibleRect(); + var0.scrollRectToVisible(var40); + SpaceWar.SpacePanel var42 = new SpaceWar.SpacePanel(); + float var43 = var42.getAlignmentX(); + var42.setVisible(false); + java.awt.Dimension var46 = var42.getPreferredSize(); + java.awt.Toolkit var47 = var42.getToolkit(); + SpaceWar.SpacePanel var48 = new SpaceWar.SpacePanel(); + var48.setName(""); + int var51 = var48.getX(); + SpaceWar.SpacePanel var52 = new SpaceWar.SpacePanel(); + float var53 = var52.getAlignmentX(); + var52.setVisible(false); + var52.nextFocus(); + SpaceWar.SpacePanel var57 = new SpaceWar.SpacePanel(); + float var58 = var57.getAlignmentX(); + var57.setVisible(false); + SpaceWar.SpacePanel var61 = new SpaceWar.SpacePanel(); + java.awt.Color var62 = var61.getBackground(); + var57.setForeground(var62); + var52.setBackground(var62); + var48.setBackground(var62); + var42.setForeground(var62); + SpaceWar.SpacePanel var67 = new SpaceWar.SpacePanel(); + float var68 = var67.getAlignmentX(); + var67.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var73 = new SpaceWar.SpacePanel(); + float var74 = var73.getAlignmentX(); + var73.setVisible(false); + java.awt.Dimension var77 = var73.getPreferredSize(); + var67.setMaximumSize(var77); + boolean var79 = var67.getVerifyInputWhenFocusTarget(); + javax.accessibility.AccessibleContext var80 = var67.getAccessibleContext(); + boolean var81 = var67.isDoubleBuffered(); + java.awt.Rectangle var82 = var67.getVisibleRect(); + var42.scrollRectToVisible(var82); + var0.removeKeyListener((java.awt.event.KeyListener)var42); + boolean var85 = var0.getFocusTraversalKeysEnabled(); + java.awt.event.InputMethodListener[] var86 = var0.getInputMethodListeners(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var4); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var32 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var35); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var38); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var39 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var40); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var43 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var46); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var47); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var51 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var53 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var58 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var62); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var68 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var74 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var77); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var79 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var80); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var81 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var82); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var85 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var86); + + } + + public void test205() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test205"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + var0.setRequestFocusEnabled(false); + var0.setIgnoreRepaint(false); + java.lang.String var7 = var0.toString(); + boolean var9 = var0.requestFocus(false); + var0.setDebugGraphicsOptions(25); + int var12 = var0.getHeight(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var7 + "' != '" + "SpaceWar.SpacePanel[,0,0,0var7,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"+ "'", var7.equals("SpaceWar.SpacePanel[,0,0,0var7,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]")); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == 0); + + } + + public void test206() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test206"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + boolean var4 = var0.inside(0, (-1)); + SpaceWar.SpacePanel var5 = new SpaceWar.SpacePanel(); + float var6 = var5.getAlignmentX(); + var5.setVisible(false); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + java.awt.Color var10 = var9.getBackground(); + var5.setForeground(var10); + var0.setForeground(var10); + var0.setAutoscrolls(false); + SpaceWar.SpacePanel var15 = new SpaceWar.SpacePanel(); + float var16 = var15.getAlignmentX(); + var15.setVisible(false); + boolean var19 = var15.isDoubleBuffered(); + java.awt.dnd.DropTarget var20 = var15.getDropTarget(); + var15.show(false); + boolean var23 = var15.isPaintingForPrint(); + SpaceWar.SpacePanel var24 = new SpaceWar.SpacePanel(); + float var25 = var24.getAlignmentX(); + var24.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var30 = var24.getMouseListeners(); + int var31 = var24.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var32 = var24.getInputMethodRequests(); + var15.addKeyListener((java.awt.event.KeyListener)var24); + SpaceWar.SpacePanel var34 = new SpaceWar.SpacePanel(); + float var35 = var34.getAlignmentX(); + var34.setVisible(false); + boolean var38 = var34.isDoubleBuffered(); + var34.list(); + float var40 = var34.getAlignmentY(); + boolean var41 = var24.isFocusCycleRoot((java.awt.Container)var34); + var34.firePropertyChange("", 1L, 1L); + var34.setVerifyInputWhenFocusTarget(true); + SpaceWar.SpacePanel var48 = new SpaceWar.SpacePanel(); + var48.setName(""); + java.awt.Dimension var51 = var48.minimumSize(); + boolean var52 = var48.isDoubleBuffered(); + SpaceWar.SpacePanel var53 = new SpaceWar.SpacePanel(); + float var54 = var53.getAlignmentX(); + SpaceWar.SpacePanel var55 = new SpaceWar.SpacePanel(); + float var56 = var55.getAlignmentX(); + var55.setVisible(false); + java.awt.Dimension var59 = var55.getPreferredSize(); + boolean var60 = var55.getVerifyInputWhenFocusTarget(); + java.awt.Component var63 = var55.findComponentAt(10, 1); + var53.addKeyListener((java.awt.event.KeyListener)var55); + var55.repaint(100, (-1), (-1), 1); + SpaceWar.SpacePanel var70 = new SpaceWar.SpacePanel(); + java.awt.Color var71 = var70.getBackground(); + var70.repaint(); + java.awt.im.InputMethodRequests var73 = var70.getInputMethodRequests(); + java.awt.GraphicsConfiguration var74 = var70.getGraphicsConfiguration(); + var55.remove((java.awt.Component)var70); + java.awt.Font var76 = var70.getFont(); + java.awt.FontMetrics var77 = var48.getFontMetrics(var76); + java.awt.FontMetrics var78 = var34.getFontMetrics(var76); + var0.setFont(var76); + SpaceWar.SpacePanel var81 = new SpaceWar.SpacePanel(); + float var82 = var81.getAlignmentX(); + var81.setVisible(false); + var81.setEnabled(false); + java.awt.Image var89 = var81.createImage(10, 100); + SpaceWar.SpacePanel var90 = new SpaceWar.SpacePanel(); + java.awt.Color var91 = var90.getBackground(); + var81.setForeground(var91); + var81.setFocusTraversalPolicyProvider(true); + java.util.Set var96 = var81.getFocusTraversalKeys(2); + // The following exception was thrown during execution. + // This behavior will recorded for regression testing. + try { + var0.setFocusTraversalKeys(10, var96); + fail("Expected exception of type java.lang.IllegalArgumentException"); + } catch (java.lang.IllegalArgumentException e) { + // Expected exception. + } + + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var30); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var31 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var32); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var35 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var38 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var40 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var41 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var51); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var52 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var54 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var56 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var59); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var60 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var63); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var71); + + // Regression assertion (captures the current behavior of the code) + assertNull(var73); + + // Regression assertion (captures the current behavior of the code) + assertNull(var74); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var76); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var77); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var78); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var82 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNull(var89); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var91); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var96); + + } + + public void test207() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test207"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.setInheritsPopupMenu(false); + boolean var6 = var0.isDoubleBuffered(); + boolean var7 = var0.getAutoscrolls(); + java.awt.Image var10 = var0.createImage(100, 25); + boolean var11 = var0.isPaintingForPrint(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == false); + + } + + public void test208() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test208"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.setInheritsPopupMenu(false); + boolean var6 = var0.isMinimumSizeSet(); + java.awt.FocusTraversalPolicy var7 = var0.getFocusTraversalPolicy(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.setVisible(false); + var9.setInheritsPopupMenu(false); + var9.setFocusTraversalPolicyProvider(true); + SpaceWar.SpacePanel var17 = new SpaceWar.SpacePanel(); + float var18 = var17.getAlignmentX(); + var17.setVisible(false); + boolean var21 = var17.isDoubleBuffered(); + var17.list(); + SpaceWar.SpacePanel var23 = new SpaceWar.SpacePanel(); + float var24 = var23.getAlignmentX(); + var23.setVisible(false); + boolean var27 = var23.isDoubleBuffered(); + java.awt.dnd.DropTarget var28 = var23.getDropTarget(); + var23.show(false); + java.awt.Rectangle var31 = var23.getVisibleRect(); + java.awt.Rectangle var32 = var17.getBounds(var31); + javax.swing.JToolTip var33 = var17.createToolTip(); + var9.removeKeyListener((java.awt.event.KeyListener)var17); + var9.setFocusTraversalKeysEnabled(true); + javax.swing.KeyStroke[] var37 = var9.getRegisteredKeyStrokes(); + SpaceWar.SpacePanel var38 = new SpaceWar.SpacePanel(); + float var39 = var38.getAlignmentX(); + var38.setVisible(false); + java.awt.Dimension var42 = var38.getPreferredSize(); + java.awt.Toolkit var43 = var38.getToolkit(); + boolean var44 = var38.isFocusable(); + javax.swing.KeyStroke[] var45 = var38.getRegisteredKeyStrokes(); + java.awt.Component var48 = var38.getComponentAt(100, 100); + java.lang.Object var49 = var38.getTreeLock(); + boolean var52 = var38.inside(400, 0); + java.awt.event.MouseWheelListener[] var53 = var38.getMouseWheelListeners(); + var38.enableInputMethods(true); + boolean var56 = var9.isAncestorOf((java.awt.Component)var38); + java.awt.Component var57 = var0.add("SpaceWar.SpacePanel[,-1,1,-1x10,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", (java.awt.Component)var38); + boolean var58 = var57.isLightweight(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var24 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var28); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var31); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var32); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var33); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var37); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var39 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var42); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var43); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var44 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var45); + + // Regression assertion (captures the current behavior of the code) + assertNull(var48); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var49); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var52 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var53); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var56 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var57); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var58 == false); + + } + + public void test209() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test209"); + + + SpaceWar.Player var0 = new SpaceWar.Player(); + var0.increasePower(25); + int var3 = var0.getScore(); + int var4 = var0.getX(); + var0.setLife(100); + boolean var7 = var0.isRecovering(); + var0.setUp(true); + var0.increasePower((-1)); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 400); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == false); + + } + + public void test210() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test210"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var6 = var0.getMouseListeners(); + var0.firePropertyChange("", 0.5f, 100.0f); + var0.enable(false); + var0.transferFocusDownCycle(); + var0.firePropertyChange("SpaceWar.SpacePanel[,-1,1,-1x10,invalid,hidden,disabled,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", (-1.0f), 1.0f); + java.awt.Dimension var18 = var0.minimumSize(); + java.lang.Object var19 = var0.getTreeLock(); + java.awt.Rectangle var20 = var0.bounds(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + } + + public void test211() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test211"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var6 = var0.getMouseListeners(); + java.awt.Dimension var7 = var0.getPreferredSize(); + java.util.Locale var8 = var0.getLocale(); + var0.setFocusable(true); + var0.setSize(3, 10); + var0.invalidate(); + boolean var15 = var0.isValid(); + boolean var16 = var0.getVerifyInputWhenFocusTarget(); + var0.removeNotify(); + java.awt.dnd.DropTarget var18 = var0.getDropTarget(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var18); + + } + + public void test212() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test212"); + + + SpaceWar.Enemy var2 = new SpaceWar.Enemy(0, 100); + boolean var3 = var2.isDead(); + var2.hit(); + double var5 = var2.getY(); + double var6 = var2.getY(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == 0.0d); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == 0.0d); + + } + + public void test213() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test213"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + var0.list(); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + float var7 = var6.getAlignmentX(); + var6.setVisible(false); + boolean var10 = var6.isDoubleBuffered(); + java.awt.dnd.DropTarget var11 = var6.getDropTarget(); + var6.show(false); + java.awt.Rectangle var14 = var6.getVisibleRect(); + java.awt.Rectangle var15 = var0.getBounds(var14); + javax.swing.JToolTip var16 = var0.createToolTip(); + java.awt.Dimension var17 = var0.minimumSize(); + boolean var19 = var0.requestFocus(false); + java.awt.Dimension var20 = var0.minimumSize(); + java.awt.image.VolatileImage var23 = var0.createVolatileImage(24, 10); + SpaceWar.SpacePanel var24 = new SpaceWar.SpacePanel(); + float var25 = var24.getAlignmentX(); + var24.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var30 = new SpaceWar.SpacePanel(); + float var31 = var30.getAlignmentX(); + var30.setVisible(false); + java.awt.Dimension var34 = var30.getPreferredSize(); + var24.setMaximumSize(var34); + boolean var36 = var24.getVerifyInputWhenFocusTarget(); + int var37 = var24.getX(); + java.awt.Rectangle var38 = var24.bounds(); + var0.repaint(var38); + boolean var40 = var0.isRequestFocusEnabled(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertNull(var23); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var31 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var34); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var36 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var38); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var40 == true); + + } + + public void test214() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test214"); + + + SpaceWar.PowerUp var3 = new SpaceWar.PowerUp(400, 241.4584513263457d, 475.3294093279198d); + double var4 = var3.getY(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 475.3294093279198d); + + } + + public void test215() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test215"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.reshape((-1), 1, (-1), 10); + var0.disable(); + java.awt.Component var13 = var0.findComponentAt(0, (-1)); + SpaceWar.SpacePanel var14 = new SpaceWar.SpacePanel(); + var14.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + javax.swing.plaf.PanelUI var19 = var14.getUI(); + SpaceWar.SpacePanel var20 = new SpaceWar.SpacePanel(); + float var21 = var20.getAlignmentX(); + var20.setVisible(false); + var20.nextFocus(); + var20.repaint(1L); + SpaceWar.SpacePanel var27 = new SpaceWar.SpacePanel(); + float var28 = var27.getAlignmentX(); + var27.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var33 = new SpaceWar.SpacePanel(); + float var34 = var33.getAlignmentX(); + var33.setVisible(false); + java.awt.Dimension var37 = var33.getPreferredSize(); + var27.setMaximumSize(var37); + var20.setPreferredSize(var37); + var14.setMaximumSize(var37); + var0.setSize(var37); + SpaceWar.SpacePanel var42 = new SpaceWar.SpacePanel(); + float var43 = var42.getAlignmentX(); + var42.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var48 = var42.getUI(); + java.awt.im.InputMethodRequests var49 = var42.getInputMethodRequests(); + SpaceWar.SpacePanel var50 = new SpaceWar.SpacePanel(); + float var51 = var50.getAlignmentX(); + var50.setVisible(false); + var50.nextFocus(); + var50.updateUI(); + var50.enableInputMethods(true); + var50.setSize((-1), 1); + SpaceWar.SpacePanel var61 = new SpaceWar.SpacePanel(); + var61.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var42.add((java.awt.Component)var50, (java.lang.Object)"SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + java.awt.event.KeyListener[] var67 = var42.getKeyListeners(); + SpaceWar.SpacePanel var68 = new SpaceWar.SpacePanel(); + float var69 = var68.getAlignmentX(); + var68.setVisible(false); + boolean var72 = var68.isDoubleBuffered(); + var68.list(); + SpaceWar.SpacePanel var74 = new SpaceWar.SpacePanel(); + float var75 = var74.getAlignmentX(); + var74.setVisible(false); + boolean var78 = var74.isDoubleBuffered(); + java.awt.dnd.DropTarget var79 = var74.getDropTarget(); + var74.show(false); + java.awt.Rectangle var82 = var74.getVisibleRect(); + java.awt.image.BufferedImage var84 = var74.loadImg("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + boolean var85 = var68.isAncestorOf((java.awt.Component)var74); + java.awt.GraphicsConfiguration var86 = var74.getGraphicsConfiguration(); + java.awt.Font var87 = var74.getFont(); + var42.setFont(var87); + var42.nextFocus(); + java.awt.Point var90 = var42.getLocation(); + java.awt.Component var91 = var0.getComponentAt(var90); + var91.setSize(10, 100); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var28 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var34 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var37); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var43 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var48); + + // Regression assertion (captures the current behavior of the code) + assertNull(var49); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var51 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var67); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var69 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var72 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var75 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var78 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var79); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var82); + + // Regression assertion (captures the current behavior of the code) + assertNull(var84); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var85 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var86); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var87); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var90); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var91); + + } + + public void test216() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test216"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + var0.setName(""); + java.awt.Graphics var3 = var0.getGraphics(); + java.awt.event.MouseMotionListener[] var4 = var0.getMouseMotionListeners(); + boolean var5 = var0.getIgnoreRepaint(); + var0.transferFocusBackward(); + java.awt.Cursor var7 = var0.getCursor(); + java.awt.Point var8 = var0.getMousePosition(); + + // Regression assertion (captures the current behavior of the code) + assertNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var4); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertNull(var8); + + } + + public void test217() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test217"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + SpaceWar.SpacePanel var4 = new SpaceWar.SpacePanel(); + java.awt.Color var5 = var4.getBackground(); + var0.setForeground(var5); + SpaceWar.SpacePanel var7 = new SpaceWar.SpacePanel(); + float var8 = var7.getAlignmentX(); + var7.setVisible(false); + boolean var11 = var7.isDoubleBuffered(); + java.awt.dnd.DropTarget var12 = var7.getDropTarget(); + var7.show(false); + java.awt.Rectangle var15 = var7.getVisibleRect(); + var0.repaint(var15); + java.awt.FocusTraversalPolicy var17 = var0.getFocusTraversalPolicy(); + java.awt.im.InputMethodRequests var18 = var0.getInputMethodRequests(); + var0.layout(); + java.awt.Point var20 = var0.getMousePosition(); + boolean var21 = var0.isRequestFocusEnabled(); + float var22 = var0.getAlignmentX(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var22 == 0.5f); + + } + + public void test218() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test218"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + SpaceWar.SpacePanel var4 = new SpaceWar.SpacePanel(); + java.awt.Color var5 = var4.getBackground(); + var0.setForeground(var5); + SpaceWar.SpacePanel var7 = new SpaceWar.SpacePanel(); + float var8 = var7.getAlignmentX(); + var7.setVisible(false); + boolean var11 = var7.isDoubleBuffered(); + java.awt.dnd.DropTarget var12 = var7.getDropTarget(); + var7.show(false); + java.awt.Rectangle var15 = var7.getVisibleRect(); + var0.repaint(var15); + java.awt.FocusTraversalPolicy var17 = var0.getFocusTraversalPolicy(); + java.awt.im.InputMethodRequests var18 = var0.getInputMethodRequests(); + var0.layout(); + boolean var20 = var0.isFocusTraversalPolicyProvider(); + java.awt.Insets var21 = var0.insets(); + java.awt.Rectangle var22 = var0.getVisibleRect(); + boolean var23 = var0.isMinimumSizeSet(); + boolean var24 = var0.isMinimumSizeSet(); + boolean var25 = var0.isFocusable(); + java.awt.Dimension var26 = var0.size(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var21); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var24 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var26); + + } + + public void test219() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test219"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.reshape((-1), 1, (-1), 10); + var0.disable(); + java.awt.LayoutManager var11 = var0.getLayout(); + var0.setVisible(false); + SpaceWar.SpacePanel var14 = new SpaceWar.SpacePanel(); + float var15 = var14.getAlignmentX(); + var14.setVisible(false); + var14.setInheritsPopupMenu(false); + boolean var20 = var14.isDoubleBuffered(); + boolean var21 = var14.isMinimumSizeSet(); + SpaceWar.SpacePanel var22 = new SpaceWar.SpacePanel(); + float var23 = var22.getAlignmentX(); + var22.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var28 = new SpaceWar.SpacePanel(); + float var29 = var28.getAlignmentX(); + var28.setVisible(false); + java.awt.Dimension var32 = var28.getPreferredSize(); + var22.setMaximumSize(var32); + boolean var34 = var22.getVerifyInputWhenFocusTarget(); + javax.accessibility.AccessibleContext var35 = var22.getAccessibleContext(); + boolean var36 = var22.isDoubleBuffered(); + java.awt.Rectangle var37 = var22.getVisibleRect(); + var14.setBounds(var37); + var0.computeVisibleRect(var37); + SpaceWar.SpacePanel var40 = new SpaceWar.SpacePanel(); + float var41 = var40.getAlignmentX(); + var40.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var46 = new SpaceWar.SpacePanel(); + float var47 = var46.getAlignmentX(); + var46.setVisible(false); + java.awt.Dimension var50 = var46.getPreferredSize(); + var40.setMaximumSize(var50); + boolean var52 = var40.getVerifyInputWhenFocusTarget(); + int var53 = var40.getX(); + java.awt.Rectangle var54 = var40.bounds(); + var0.remove((java.awt.Component)var40); + boolean var56 = var0.getIgnoreRepaint(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var29 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var32); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var34 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var35); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var36 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var37); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var41 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var47 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var50); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var52 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var53 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var54); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var56 == false); + + } + + public void test220() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test220"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var1 = new SpaceWar.SpacePanel(); + java.awt.Color var2 = var1.getBackground(); + SpaceWar.SpacePanel var3 = new SpaceWar.SpacePanel(); + float var4 = var3.getAlignmentX(); + var3.setVisible(false); + var3.nextFocus(); + var3.updateUI(); + var3.enableInputMethods(true); + var0.add((java.awt.Component)var1, (java.lang.Object)true); + java.awt.Dimension var12 = var1.getPreferredSize(); + var1.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", (-1.0f), 100.0f); + SpaceWar.SpacePanel var17 = new SpaceWar.SpacePanel(); + float var18 = var17.getAlignmentX(); + var17.setVisible(false); + boolean var21 = var17.isDoubleBuffered(); + SpaceWar.SpacePanel var22 = new SpaceWar.SpacePanel(); + java.awt.Color var23 = var22.getBackground(); + var22.repaint(); + java.lang.Object var25 = var17.getClientProperty((java.lang.Object)var22); + var1.remove((java.awt.Component)var17); + var1.enable(); + var1.setIgnoreRepaint(true); + boolean var30 = var1.isPaintingForPrint(); + int var31 = var1.countComponents(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var2); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var23); + + // Regression assertion (captures the current behavior of the code) + assertNull(var25); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var30 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var31 == 0); + + } + + public void test221() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test221"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.setInheritsPopupMenu(false); + var0.setFocusTraversalPolicyProvider(true); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + boolean var12 = var8.isDoubleBuffered(); + var8.list(); + SpaceWar.SpacePanel var14 = new SpaceWar.SpacePanel(); + float var15 = var14.getAlignmentX(); + var14.setVisible(false); + boolean var18 = var14.isDoubleBuffered(); + java.awt.dnd.DropTarget var19 = var14.getDropTarget(); + var14.show(false); + java.awt.Rectangle var22 = var14.getVisibleRect(); + java.awt.Rectangle var23 = var8.getBounds(var22); + javax.swing.JToolTip var24 = var8.createToolTip(); + var0.removeKeyListener((java.awt.event.KeyListener)var8); + var0.setFocusTraversalKeysEnabled(true); + javax.swing.KeyStroke[] var28 = var0.getRegisteredKeyStrokes(); + java.lang.String var29 = var0.getName(); + var0.repaint(1L); + SpaceWar.SpacePanel var32 = new SpaceWar.SpacePanel(); + float var33 = var32.getAlignmentX(); + boolean var34 = var32.hasFocus(); + boolean var35 = var32.isPreferredSizeSet(); + var32.firePropertyChange("", (short)1, (short)0); + boolean var40 = var32.isMaximumSizeSet(); + var32.list(); + SpaceWar.SpacePanel var42 = new SpaceWar.SpacePanel(); + float var43 = var42.getAlignmentX(); + var42.setVisible(false); + boolean var46 = var42.isDoubleBuffered(); + java.awt.dnd.DropTarget var47 = var42.getDropTarget(); + var42.show(false); + java.awt.Rectangle var50 = var42.getVisibleRect(); + java.awt.image.BufferedImage var52 = var42.loadImg("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + java.awt.ComponentOrientation var53 = var42.getComponentOrientation(); + var42.transferFocusBackward(); + SpaceWar.SpacePanel var55 = new SpaceWar.SpacePanel(); + java.awt.Color var56 = var55.getBackground(); + var55.setFocusCycleRoot(true); + var32.add((java.awt.Component)var42, (java.lang.Object)true); + var0.removeKeyListener((java.awt.event.KeyListener)var42); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var23); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var28); + + // Regression assertion (captures the current behavior of the code) + assertNull(var29); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var33 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var34 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var35 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var40 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var43 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var46 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var47); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var50); + + // Regression assertion (captures the current behavior of the code) + assertNull(var52); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var53); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var56); + + } + + public void test222() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test222"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + var0.show(false); + boolean var8 = var0.isPaintingForPrint(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var15 = var9.getMouseListeners(); + int var16 = var9.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var17 = var9.getInputMethodRequests(); + var0.addKeyListener((java.awt.event.KeyListener)var9); + boolean var19 = var0.isDisplayable(); + var0.doLayout(); + boolean var21 = javax.swing.JComponent.isLightweightComponent((java.awt.Component)var0); + boolean var22 = var0.isOpaque(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var22 == true); + + } + + public void test223() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test223"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + var0.setRequestFocusEnabled(false); + var0.reshape(100, 0, 100, 0); + var0.requestFocus(); + java.awt.Rectangle var11 = var0.getVisibleRect(); + java.awt.Rectangle var12 = var0.getBounds(); + java.awt.im.InputMethodRequests var13 = var0.getInputMethodRequests(); + boolean var14 = var0.requestFocusInWindow(); + java.awt.Rectangle var15 = var0.bounds(); + SpaceWar.SpacePanel var16 = new SpaceWar.SpacePanel(); + float var17 = var16.getAlignmentX(); + var16.setVisible(false); + var16.nextFocus(); + var16.reshape((-1), 1, (-1), 10); + var16.disable(); + boolean var27 = var16.isFocusable(); + java.awt.Dimension var28 = var16.getSize(); + var0.setSize(var28); + boolean var30 = var0.isShowing(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var28); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var30 == false); + + } + + public void test224() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test224"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.repaint(1L); + java.awt.image.VolatileImage var9 = var0.createVolatileImage(0, (-1)); + var0.transferFocusUpCycle(); + var0.setAlignmentY(0.0f); + var0.setVisible(true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNull(var9); + + } + + public void test225() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test225"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + SpaceWar.SpacePanel var4 = new SpaceWar.SpacePanel(); + java.awt.Color var5 = var4.getBackground(); + var0.setForeground(var5); + SpaceWar.SpacePanel var7 = new SpaceWar.SpacePanel(); + float var8 = var7.getAlignmentX(); + var7.setVisible(false); + boolean var11 = var7.isDoubleBuffered(); + java.awt.dnd.DropTarget var12 = var7.getDropTarget(); + var7.show(false); + java.awt.Rectangle var15 = var7.getVisibleRect(); + var0.repaint(var15); + java.awt.FocusTraversalPolicy var17 = var0.getFocusTraversalPolicy(); + SpaceWar.SpacePanel var18 = new SpaceWar.SpacePanel(); + float var19 = var18.getAlignmentX(); + var18.firePropertyChange("", (-1), 1); + boolean var24 = var18.isFocusOwner(); + SpaceWar.SpacePanel var26 = new SpaceWar.SpacePanel(); + float var27 = var26.getAlignmentX(); + var26.setVisible(false); + java.awt.Dimension var30 = var26.getPreferredSize(); + java.awt.Toolkit var31 = var26.getToolkit(); + SpaceWar.SpacePanel var32 = new SpaceWar.SpacePanel(); + var32.setName(""); + int var35 = var32.getX(); + SpaceWar.SpacePanel var36 = new SpaceWar.SpacePanel(); + float var37 = var36.getAlignmentX(); + var36.setVisible(false); + var36.nextFocus(); + SpaceWar.SpacePanel var41 = new SpaceWar.SpacePanel(); + float var42 = var41.getAlignmentX(); + var41.setVisible(false); + SpaceWar.SpacePanel var45 = new SpaceWar.SpacePanel(); + java.awt.Color var46 = var45.getBackground(); + var41.setForeground(var46); + var36.setBackground(var46); + var32.setBackground(var46); + var26.setForeground(var46); + var18.putClientProperty((java.lang.Object)(byte)100, (java.lang.Object)var46); + var0.setBackground(var46); + javax.swing.JToolTip var53 = var0.createToolTip(); + var0.repaint(25, 25, 24, 10); + var0.transferFocusBackward(); + var0.layout(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var24 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var30); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var31); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var35 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var42 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var46); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var53); + + } + + public void test226() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test226"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var1 = new SpaceWar.SpacePanel(); + java.awt.Color var2 = var1.getBackground(); + SpaceWar.SpacePanel var3 = new SpaceWar.SpacePanel(); + float var4 = var3.getAlignmentX(); + var3.setVisible(false); + var3.nextFocus(); + var3.updateUI(); + var3.enableInputMethods(true); + var0.add((java.awt.Component)var1, (java.lang.Object)true); + java.awt.Dimension var12 = var1.getPreferredSize(); + var1.move(100, 10); + java.awt.Graphics var16 = var1.getGraphics(); + boolean var17 = var1.isMinimumSizeSet(); + SpaceWar.SpacePanel var18 = new SpaceWar.SpacePanel(); + float var19 = var18.getAlignmentX(); + var18.setVisible(false); + boolean var22 = var18.isDoubleBuffered(); + java.awt.dnd.DropTarget var23 = var18.getDropTarget(); + var18.show(false); + java.awt.Rectangle var26 = var18.getVisibleRect(); + java.awt.Toolkit var27 = var18.getToolkit(); + java.awt.event.MouseMotionListener[] var28 = var18.getMouseMotionListeners(); + SpaceWar.SpacePanel var29 = new SpaceWar.SpacePanel(); + float var30 = var29.getAlignmentX(); + var29.setVisible(false); + boolean var33 = var29.isDoubleBuffered(); + java.awt.dnd.DropTarget var34 = var29.getDropTarget(); + var29.show(false); + boolean var37 = var29.isPaintingForPrint(); + SpaceWar.SpacePanel var38 = new SpaceWar.SpacePanel(); + float var39 = var38.getAlignmentX(); + var38.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var44 = var38.getMouseListeners(); + int var45 = var38.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var46 = var38.getInputMethodRequests(); + var29.addKeyListener((java.awt.event.KeyListener)var38); + SpaceWar.SpacePanel var48 = new SpaceWar.SpacePanel(); + float var49 = var48.getAlignmentX(); + var48.setVisible(false); + boolean var52 = var48.isDoubleBuffered(); + var48.list(); + float var54 = var48.getAlignmentY(); + boolean var55 = var38.isFocusCycleRoot((java.awt.Container)var48); + javax.swing.JPopupMenu var56 = var48.getComponentPopupMenu(); + var48.move((-1), 100); + var48.validate(); + java.awt.Rectangle var61 = var48.getVisibleRect(); + var18.paintImmediately(var61); + var1.repaint(var61); + var1.setOpaque(false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var2); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var22 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var23); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var27); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var28); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var30 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var33 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var34); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var39 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var44); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var45 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var46); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var49 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var52 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var54 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var55 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var56); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var61); + + } + + public void test227() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test227"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.updateUI(); + var0.enableInputMethods(true); + java.awt.Point var9 = var0.getMousePosition(false); + boolean var10 = var0.isShowing(); + var0.repaint(10, 100, 100, 25); + javax.swing.ActionMap var16 = var0.getActionMap(); + var0.setRequestFocusEnabled(false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNull(var9); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + } + + public void test228() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test228"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + var0.list(); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + float var7 = var6.getAlignmentX(); + var6.setVisible(false); + boolean var10 = var6.isDoubleBuffered(); + java.awt.dnd.DropTarget var11 = var6.getDropTarget(); + var6.show(false); + java.awt.Rectangle var14 = var6.getVisibleRect(); + java.awt.Rectangle var15 = var0.getBounds(var14); + javax.swing.JToolTip var16 = var0.createToolTip(); + java.awt.Graphics var17 = var0.getGraphics(); + float var18 = var0.getAlignmentY(); + boolean var19 = var0.getInheritsPopupMenu(); + boolean var20 = var0.isMaximumSizeSet(); + javax.swing.plaf.PanelUI var21 = var0.getUI(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var21); + + } + + public void test229() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test229"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + java.awt.Dimension var4 = var0.getPreferredSize(); + java.awt.Toolkit var5 = var0.getToolkit(); + boolean var6 = var0.isFocusable(); + javax.swing.KeyStroke[] var7 = var0.getRegisteredKeyStrokes(); + var0.setFocusCycleRoot(false); + SpaceWar.SpacePanel var10 = new SpaceWar.SpacePanel(); + java.awt.Color var11 = var10.getBackground(); + var10.repaint(); + javax.swing.plaf.PanelUI var13 = var10.getUI(); + SpaceWar.SpacePanel var14 = new SpaceWar.SpacePanel(); + float var15 = var14.getAlignmentX(); + var14.setVisible(false); + boolean var18 = var14.isDoubleBuffered(); + java.awt.dnd.DropTarget var19 = var14.getDropTarget(); + var14.show(false); + boolean var22 = var14.isPaintingForPrint(); + SpaceWar.SpacePanel var23 = new SpaceWar.SpacePanel(); + float var24 = var23.getAlignmentX(); + var23.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var29 = var23.getMouseListeners(); + int var30 = var23.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var31 = var23.getInputMethodRequests(); + var14.addKeyListener((java.awt.event.KeyListener)var23); + SpaceWar.SpacePanel var33 = new SpaceWar.SpacePanel(); + float var34 = var33.getAlignmentX(); + var33.setVisible(false); + boolean var37 = var33.isDoubleBuffered(); + var33.list(); + float var39 = var33.getAlignmentY(); + boolean var40 = var23.isFocusCycleRoot((java.awt.Container)var33); + SpaceWar.SpacePanel var42 = new SpaceWar.SpacePanel(); + float var43 = var42.getAlignmentX(); + var42.setVisible(false); + var42.nextFocus(); + var42.updateUI(); + java.awt.Component var48 = var23.add("", (java.awt.Component)var42); + java.awt.ComponentOrientation var49 = var42.getComponentOrientation(); + boolean var50 = var42.isFocusable(); + var10.remove((java.awt.Component)var42); + SpaceWar.SpacePanel var52 = new SpaceWar.SpacePanel(); + float var53 = var52.getAlignmentX(); + var52.setVisible(false); + var52.setInheritsPopupMenu(false); + boolean var58 = var52.isDoubleBuffered(); + SpaceWar.SpacePanel var59 = new SpaceWar.SpacePanel(); + float var60 = var59.getAlignmentX(); + var59.setVisible(false); + var59.nextFocus(); + var59.reshape((-1), 1, (-1), 10); + var59.disable(); + java.awt.LayoutManager var70 = var59.getLayout(); + var52.setLayout(var70); + var0.add((java.awt.Component)var10, (java.lang.Object)var70); + int var73 = var0.getX(); + java.awt.LayoutManager var74 = var0.getLayout(); + javax.swing.JToolTip var75 = var0.createToolTip(); + var0.setOpaque(false); + boolean var78 = var0.hasFocus(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var4); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var22 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var24 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var29); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var30 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var31); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var34 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var39 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var40 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var43 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var48); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var49); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var50 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var53 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var58 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var60 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var70); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var73 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var74); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var75); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var78 == false); + + } + + public void test230() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test230"); + + + SpaceWar.Player var0 = new SpaceWar.Player(); + int var1 = var0.getPower(); + var0.setLeft(true); + var0.update(); + java.awt.image.BufferedImage var6 = var0.loadImg("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=8,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var6); + + } + + public void test231() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test231"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.setEnabled(false); + var0.invalidate(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + var8.nextFocus(); + var8.updateUI(); + var8.enableInputMethods(true); + SpaceWar.SpacePanel var16 = new SpaceWar.SpacePanel(); + float var17 = var16.getAlignmentX(); + boolean var18 = var16.hasFocus(); + java.awt.Insets var19 = var16.getInsets(); + java.awt.Insets var20 = var8.getInsets(var19); + boolean var21 = var8.isManagingFocus(); + java.awt.Image var24 = var8.createImage(1, 10); + SpaceWar.SpacePanel var25 = new SpaceWar.SpacePanel(); + float var26 = var25.getAlignmentX(); + var25.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var31 = new SpaceWar.SpacePanel(); + float var32 = var31.getAlignmentX(); + var31.setVisible(false); + java.awt.Dimension var35 = var31.getPreferredSize(); + var25.setMaximumSize(var35); + boolean var37 = var25.getVerifyInputWhenFocusTarget(); + int var38 = var25.getX(); + SpaceWar.SpacePanel var39 = new SpaceWar.SpacePanel(); + float var40 = var39.getAlignmentX(); + var39.setVisible(false); + var39.setEnabled(false); + var8.add((java.awt.Component)var25, (java.lang.Object)false); + boolean var46 = var8.isForegroundSet(); + java.awt.Component var47 = var0.add("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", (java.awt.Component)var8); + var8.revalidate(); + SpaceWar.SpacePanel var49 = new SpaceWar.SpacePanel(); + float var50 = var49.getAlignmentX(); + var49.firePropertyChange("", (-1), 1); + java.awt.Rectangle var55 = var49.getVisibleRect(); + var8.repaint(var55); + SpaceWar.SpacePanel var57 = new SpaceWar.SpacePanel(); + float var58 = var57.getAlignmentX(); + var57.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var63 = var57.getMouseListeners(); + int var64 = var57.getDebugGraphicsOptions(); + SpaceWar.SpacePanel var65 = new SpaceWar.SpacePanel(); + float var66 = var65.getAlignmentX(); + var65.setVisible(false); + boolean var69 = var65.isDoubleBuffered(); + java.awt.dnd.DropTarget var70 = var65.getDropTarget(); + var65.show(false); + java.awt.Rectangle var73 = var65.getVisibleRect(); + var57.paintImmediately(var73); + java.awt.Rectangle var75 = var57.getBounds(); + var8.paintImmediately(var75); + SpaceWar.SpacePanel var77 = new SpaceWar.SpacePanel(); + float var78 = var77.getAlignmentX(); + boolean var79 = var77.hasFocus(); + boolean var80 = var77.isPreferredSizeSet(); + var77.firePropertyChange("", (short)1, (short)0); + boolean var85 = var77.isMaximumSizeSet(); + var77.list(); + java.awt.Rectangle var87 = var77.getBounds(); + java.awt.Font var88 = var77.getFont(); + var8.setFont(var88); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var32 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var35); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var38 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var40 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var46 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var47); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var50 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var55); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var58 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var63); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var64 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var66 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var69 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var70); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var73); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var75); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var78 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var79 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var80 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var85 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var87); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var88); + + } + + public void test232() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test232"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + var0.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + javax.swing.plaf.PanelUI var5 = var0.getUI(); + java.awt.Color var6 = var0.getBackground(); + var0.removeAll(); + int var8 = var0.getHeight(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.setVisible(false); + SpaceWar.SpacePanel var13 = new SpaceWar.SpacePanel(); + java.awt.Color var14 = var13.getBackground(); + var9.setForeground(var14); + SpaceWar.SpacePanel var16 = new SpaceWar.SpacePanel(); + float var17 = var16.getAlignmentX(); + var16.setVisible(false); + boolean var20 = var16.isDoubleBuffered(); + java.awt.dnd.DropTarget var21 = var16.getDropTarget(); + var16.show(false); + java.awt.Rectangle var24 = var16.getVisibleRect(); + var9.repaint(var24); + SpaceWar.SpacePanel var26 = new SpaceWar.SpacePanel(); + float var27 = var26.getAlignmentX(); + var26.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var32 = var26.getMouseListeners(); + java.awt.Dimension var33 = var26.getPreferredSize(); + java.util.Locale var34 = var26.getLocale(); + var9.setLocale(var34); + var0.setLocale(var34); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var21); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var32); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var33); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var34); + + } + + public void test233() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test233"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var6 = var0.getUI(); + java.awt.im.InputMethodRequests var7 = var0.getInputMethodRequests(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + var8.nextFocus(); + var8.updateUI(); + var8.enableInputMethods(true); + var8.setSize((-1), 1); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + var19.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var0.add((java.awt.Component)var8, (java.lang.Object)"SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + var8.setAutoscrolls(true); + java.awt.Image var29 = var8.createImage(400, 400); + var8.enableInputMethods(true); + javax.swing.plaf.PanelUI var32 = var8.getUI(); + SpaceWar.SpacePanel var33 = new SpaceWar.SpacePanel(); + float var34 = var33.getAlignmentX(); + var33.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var39 = var33.getMouseListeners(); + int var40 = var33.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var41 = var33.getInputMethodRequests(); + var33.removeNotify(); + var33.enable(); + SpaceWar.SpacePanel var44 = new SpaceWar.SpacePanel(); + java.awt.Color var45 = var44.getBackground(); + boolean var48 = var44.inside(0, (-1)); + var44.transferFocusUpCycle(); + java.lang.String var50 = var44.getName(); + boolean var51 = var33.isFocusCycleRoot((java.awt.Container)var44); + var8.addKeyListener((java.awt.event.KeyListener)var33); + var33.layout(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNull(var29); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var32); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var34 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var39); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var40 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var41); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var45); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var48 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var50); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var51 == false); + + } + + public void test234() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test234"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + java.awt.im.InputMethodRequests var3 = var0.getInputMethodRequests(); + java.awt.GraphicsConfiguration var4 = var0.getGraphicsConfiguration(); + SpaceWar.SpacePanel var5 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + java.awt.Color var7 = var6.getBackground(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + var8.nextFocus(); + var8.updateUI(); + var8.enableInputMethods(true); + var5.add((java.awt.Component)var6, (java.lang.Object)true); + java.awt.Dimension var17 = var6.getPreferredSize(); + var6.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", (-1.0f), 100.0f); + SpaceWar.SpacePanel var22 = new SpaceWar.SpacePanel(); + float var23 = var22.getAlignmentX(); + var22.setVisible(false); + boolean var26 = var22.isDoubleBuffered(); + SpaceWar.SpacePanel var27 = new SpaceWar.SpacePanel(); + java.awt.Color var28 = var27.getBackground(); + var27.repaint(); + java.lang.Object var30 = var22.getClientProperty((java.lang.Object)var27); + var6.remove((java.awt.Component)var22); + SpaceWar.SpacePanel var32 = new SpaceWar.SpacePanel(); + float var33 = var32.getAlignmentX(); + var32.firePropertyChange("", (-1), 1); + java.awt.event.MouseMotionListener[] var38 = var32.getMouseMotionListeners(); + java.awt.Dimension var39 = var32.getMinimumSize(); + var6.setMaximumSize(var39); + var0.setPreferredSize(var39); + java.awt.Toolkit var42 = var0.getToolkit(); + javax.swing.InputMap var43 = var0.getInputMap(); + java.beans.PropertyChangeListener[] var44 = var0.getPropertyChangeListeners(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertNull(var4); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var28); + + // Regression assertion (captures the current behavior of the code) + assertNull(var30); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var33 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var38); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var39); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var42); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var43); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var44); + + } + + public void test235() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test235"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + float var7 = var6.getAlignmentX(); + var6.setVisible(false); + java.awt.Dimension var10 = var6.getPreferredSize(); + var0.setMaximumSize(var10); + boolean var12 = var0.getVerifyInputWhenFocusTarget(); + int var13 = var0.getX(); + java.awt.Rectangle var14 = var0.bounds(); + SpaceWar.SpacePanel var15 = new SpaceWar.SpacePanel(); + java.awt.Color var16 = var15.getBackground(); + var15.repaint(); + java.awt.im.InputMethodRequests var18 = var15.getInputMethodRequests(); + int var19 = var15.countComponents(); + java.awt.event.ComponentListener[] var20 = var15.getComponentListeners(); + var15.removeNotify(); + javax.swing.InputMap var22 = var15.getInputMap(); + int var23 = var15.getDebugGraphicsOptions(); + var0.addKeyListener((java.awt.event.KeyListener)var15); + boolean var25 = var0.isShowing(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == false); + + } + + public void test236() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test236"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.setInheritsPopupMenu(false); + var0.setFocusTraversalPolicyProvider(true); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + boolean var12 = var8.isDoubleBuffered(); + var8.list(); + SpaceWar.SpacePanel var14 = new SpaceWar.SpacePanel(); + float var15 = var14.getAlignmentX(); + var14.setVisible(false); + boolean var18 = var14.isDoubleBuffered(); + java.awt.dnd.DropTarget var19 = var14.getDropTarget(); + var14.show(false); + java.awt.Rectangle var22 = var14.getVisibleRect(); + java.awt.Rectangle var23 = var8.getBounds(var22); + javax.swing.JToolTip var24 = var8.createToolTip(); + var0.removeKeyListener((java.awt.event.KeyListener)var8); + javax.swing.TransferHandler var26 = var0.getTransferHandler(); + var0.transferFocus(); + boolean var28 = var0.isFocusable(); + var0.disable(); + var0.setDebugGraphicsOptions(24); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var23); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var28 == true); + + } + + public void test237() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test237"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + SpaceWar.SpacePanel var4 = new SpaceWar.SpacePanel(); + java.awt.Color var5 = var4.getBackground(); + var0.setForeground(var5); + SpaceWar.SpacePanel var7 = new SpaceWar.SpacePanel(); + float var8 = var7.getAlignmentX(); + var7.setVisible(false); + boolean var11 = var7.isDoubleBuffered(); + java.awt.dnd.DropTarget var12 = var7.getDropTarget(); + var7.show(false); + java.awt.Rectangle var15 = var7.getVisibleRect(); + var0.repaint(var15); + java.awt.FocusTraversalPolicy var17 = var0.getFocusTraversalPolicy(); + SpaceWar.SpacePanel var18 = new SpaceWar.SpacePanel(); + float var19 = var18.getAlignmentX(); + var18.firePropertyChange("", (-1), 1); + boolean var24 = var18.isFocusOwner(); + SpaceWar.SpacePanel var26 = new SpaceWar.SpacePanel(); + float var27 = var26.getAlignmentX(); + var26.setVisible(false); + java.awt.Dimension var30 = var26.getPreferredSize(); + java.awt.Toolkit var31 = var26.getToolkit(); + SpaceWar.SpacePanel var32 = new SpaceWar.SpacePanel(); + var32.setName(""); + int var35 = var32.getX(); + SpaceWar.SpacePanel var36 = new SpaceWar.SpacePanel(); + float var37 = var36.getAlignmentX(); + var36.setVisible(false); + var36.nextFocus(); + SpaceWar.SpacePanel var41 = new SpaceWar.SpacePanel(); + float var42 = var41.getAlignmentX(); + var41.setVisible(false); + SpaceWar.SpacePanel var45 = new SpaceWar.SpacePanel(); + java.awt.Color var46 = var45.getBackground(); + var41.setForeground(var46); + var36.setBackground(var46); + var32.setBackground(var46); + var26.setForeground(var46); + var18.putClientProperty((java.lang.Object)(byte)100, (java.lang.Object)var46); + var0.setBackground(var46); + javax.swing.JToolTip var53 = var0.createToolTip(); + var53.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, true); + SpaceWar.SpacePanel var58 = new SpaceWar.SpacePanel(); + var58.setName(""); + java.awt.Dimension var61 = var58.minimumSize(); + boolean var62 = var58.isDoubleBuffered(); + java.awt.event.HierarchyListener[] var63 = var58.getHierarchyListeners(); + java.awt.Font var64 = var58.getFont(); + java.awt.FontMetrics var65 = var53.getFontMetrics(var64); + int var66 = var53.getX(); + boolean var67 = var53.isOptimizedDrawingEnabled(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var24 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var30); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var31); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var35 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var42 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var46); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var53); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var61); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var62 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var63); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var64); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var65); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var66 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var67 == true); + + } + + public void test238() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test238"); + + + SpaceWar.Player var0 = new SpaceWar.Player(); + boolean var1 = var0.isRecovering(); + var0.setRigth(false); + int var4 = var0.getPowerLevel(); + var0.increasePower((-1)); + boolean var7 = var0.isRecovering(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == false); + + } + + public void test239() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test239"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + var0.list(); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + float var7 = var6.getAlignmentX(); + var6.setVisible(false); + boolean var10 = var6.isDoubleBuffered(); + java.awt.dnd.DropTarget var11 = var6.getDropTarget(); + var6.show(false); + java.awt.Rectangle var14 = var6.getVisibleRect(); + java.awt.Rectangle var15 = var0.getBounds(var14); + javax.swing.JToolTip var16 = var0.createToolTip(); + var0.firePropertyChange("", false, false); + boolean var21 = var0.isFocusTraversalPolicySet(); + SpaceWar.SpacePanel var22 = new SpaceWar.SpacePanel(); + float var23 = var22.getAlignmentX(); + var22.setVisible(false); + java.awt.Dimension var26 = var22.getPreferredSize(); + boolean var27 = var22.getVerifyInputWhenFocusTarget(); + java.awt.Component var30 = var22.findComponentAt(10, 1); + boolean var31 = var22.requestDefaultFocus(); + var22.setVerifyInputWhenFocusTarget(false); + java.awt.Point var34 = var22.getLocation(); + java.awt.Point var35 = var0.getLocation(var34); + var0.setSize(24, 3); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var30); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var31 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var34); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var35); + + } + + public void test240() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test240"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + var0.setRequestFocusEnabled(false); + var0.setIgnoreRepaint(false); + boolean var7 = var0.requestFocusInWindow(); + float var8 = var0.getAlignmentY(); + java.awt.LayoutManager var9 = var0.getLayout(); + SpaceWar.SpacePanel var10 = new SpaceWar.SpacePanel(); + float var11 = var10.getAlignmentX(); + var10.setVisible(false); + var10.nextFocus(); + var10.updateUI(); + var10.enableInputMethods(true); + var10.setSize((-1), 1); + java.awt.Rectangle var21 = var10.bounds(); + var0.setBounds(var21); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var9); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var21); + + } + + public void test241() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test241"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.setInheritsPopupMenu(false); + boolean var6 = var0.isDoubleBuffered(); + java.awt.Rectangle var7 = var0.getBounds(); + int var8 = var0.getY(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 0); + + } + + public void test242() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test242"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + java.awt.im.InputMethodRequests var3 = var0.getInputMethodRequests(); + java.awt.GraphicsConfiguration var4 = var0.getGraphicsConfiguration(); + boolean var6 = var0.requestFocus(false); + java.awt.Dimension var7 = var0.size(); + boolean var8 = var0.isShowing(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.setVisible(false); + var9.nextFocus(); + var9.updateUI(); + var9.enableInputMethods(true); + var9.setSize((-1), 1); + boolean var22 = var9.contains(1, 1); + java.awt.Component var25 = var9.getComponentAt(100, 3); + SpaceWar.SpacePanel var26 = new SpaceWar.SpacePanel(); + float var27 = var26.getAlignmentX(); + var26.setVisible(false); + boolean var30 = var26.isDoubleBuffered(); + var26.enable(false); + boolean var33 = var26.getFocusTraversalKeysEnabled(); + SpaceWar.SpacePanel var34 = new SpaceWar.SpacePanel(); + float var35 = var34.getAlignmentX(); + var34.setVisible(false); + java.awt.Dimension var38 = var34.getPreferredSize(); + java.awt.Toolkit var39 = var34.getToolkit(); + boolean var40 = var34.isFocusable(); + javax.swing.KeyStroke[] var41 = var34.getRegisteredKeyStrokes(); + SpaceWar.SpacePanel var42 = new SpaceWar.SpacePanel(); + float var43 = var42.getAlignmentX(); + SpaceWar.SpacePanel var44 = new SpaceWar.SpacePanel(); + float var45 = var44.getAlignmentX(); + var44.setVisible(false); + java.awt.Dimension var48 = var44.getPreferredSize(); + boolean var49 = var44.getVerifyInputWhenFocusTarget(); + java.awt.Component var52 = var44.findComponentAt(10, 1); + var42.addKeyListener((java.awt.event.KeyListener)var44); + var44.repaint(100, (-1), (-1), 1); + boolean var59 = var34.isAncestorOf((java.awt.Component)var44); + var26.addKeyListener((java.awt.event.KeyListener)var44); + java.awt.ComponentOrientation var61 = var26.getComponentOrientation(); + var9.setComponentOrientation(var61); + var0.applyComponentOrientation(var61); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertNull(var4); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var22 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var25); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var30 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var33 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var35 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var38); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var39); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var40 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var41); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var43 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var45 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var48); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var49 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var52); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var59 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var61); + + } + + public void test243() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test243"); + + + SpaceWar.Player var0 = new SpaceWar.Player(); + var0.increasePower(25); + int var3 = var0.getScore(); + var0.setRigth(true); + int var6 = var0.getRequiredPower(); + var0.setLeft(false); + int var9 = var0.getR(); + int var10 = var0.getPowerLevel(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == 2); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 25); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 1); + + } + + public void test244() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test244"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + java.awt.im.InputMethodRequests var3 = var0.getInputMethodRequests(); + int var4 = var0.countComponents(); + java.awt.event.ComponentListener[] var5 = var0.getComponentListeners(); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + float var7 = var6.getAlignmentX(); + var6.removeNotify(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.setVisible(false); + boolean var13 = var9.isDoubleBuffered(); + var9.list(); + float var15 = var9.getAlignmentY(); + java.awt.Insets var16 = var9.getInsets(); + java.awt.Insets var17 = var6.getInsets(var16); + java.awt.Insets var18 = var0.getInsets(var17); + javax.swing.JPopupMenu var19 = var0.getComponentPopupMenu(); + java.awt.image.BufferedImage var21 = var0.loadImg("PanelUI"); + java.awt.Dimension var22 = var0.getMaximumSize(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertNull(var21); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var22); + + } + + public void test245() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test245"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + SpaceWar.SpacePanel var5 = new SpaceWar.SpacePanel(); + float var6 = var5.getAlignmentX(); + var5.setVisible(false); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + java.awt.Color var10 = var9.getBackground(); + var5.setForeground(var10); + var0.setBackground(var10); + SpaceWar.SpacePanel var13 = new SpaceWar.SpacePanel(); + float var14 = var13.getAlignmentX(); + var13.setVisible(false); + boolean var17 = var13.isDoubleBuffered(); + var13.list(); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + float var20 = var19.getAlignmentX(); + var19.setVisible(false); + boolean var23 = var19.isDoubleBuffered(); + java.awt.dnd.DropTarget var24 = var19.getDropTarget(); + var19.show(false); + java.awt.Rectangle var27 = var19.getVisibleRect(); + java.awt.Rectangle var28 = var13.getBounds(var27); + javax.swing.JToolTip var29 = var13.createToolTip(); + var13.firePropertyChange("", false, false); + var13.validate(); + boolean var35 = var13.isEnabled(); + java.awt.Color var36 = var13.getBackground(); + var0.setForeground(var36); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var27); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var28); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var29); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var35 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var36); + + } + + public void test246() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test246"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + var0.show(false); + boolean var8 = var0.isPaintingForPrint(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var15 = var9.getMouseListeners(); + int var16 = var9.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var17 = var9.getInputMethodRequests(); + var0.addKeyListener((java.awt.event.KeyListener)var9); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + float var20 = var19.getAlignmentX(); + var19.setVisible(false); + boolean var23 = var19.isDoubleBuffered(); + var19.list(); + float var25 = var19.getAlignmentY(); + boolean var26 = var9.isFocusCycleRoot((java.awt.Container)var19); + javax.swing.JPopupMenu var27 = var19.getComponentPopupMenu(); + var19.firePropertyChange("hi!", 3, 0); + var19.setAlignmentY(100.0f); + boolean var34 = var19.getAutoscrolls(); + var19.invalidate(); + SpaceWar.SpacePanel var36 = new SpaceWar.SpacePanel(); + float var37 = var36.getAlignmentX(); + var36.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var42 = var36.getMouseListeners(); + java.awt.Dimension var43 = var36.getPreferredSize(); + java.util.Locale var44 = var36.getLocale(); + var36.setFocusable(true); + var36.setSize(3, 10); + var36.invalidate(); + javax.swing.plaf.PanelUI var51 = var36.getUI(); + var36.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", 1.0f, 0.5f); + var19.remove((java.awt.Component)var36); + SpaceWar.SpacePanel var57 = new SpaceWar.SpacePanel(); + float var58 = var57.getAlignmentX(); + var57.setVisible(false); + java.awt.Dimension var61 = var57.getPreferredSize(); + boolean var62 = var57.getVerifyInputWhenFocusTarget(); + java.awt.Component var65 = var57.findComponentAt(10, 1); + java.awt.Dimension var66 = var57.minimumSize(); + var36.setPreferredSize(var66); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var27); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var34 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var42); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var43); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var44); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var51); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var58 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var61); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var62 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var65); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var66); + + } + + public void test247() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test247"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + var0.setRequestFocusEnabled(false); + var0.reshape(100, 0, 100, 0); + var0.requestFocus(); + var0.firePropertyChange("hi!", '4', ' '); + java.awt.Point var15 = var0.getLocation(); + java.awt.Dimension var16 = var0.size(); + java.awt.Image var19 = var0.createImage((-1), (-1)); + java.awt.event.ComponentListener[] var20 = var0.getComponentListeners(); + SpaceWar.SpacePanel var21 = new SpaceWar.SpacePanel(); + var21.setName(""); + java.awt.ComponentOrientation var24 = var21.getComponentOrientation(); + var21.firePropertyChange("PanelUI", 1.0f, 0.5f); + int var29 = var0.getComponentZOrder((java.awt.Component)var21); + boolean var31 = var0.areFocusTraversalKeysSet(0); + var0.removeAll(); + int var33 = var0.getX(); + boolean var34 = var0.isMaximumSizeSet(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var29 == (-1)); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var31 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var33 == 100); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var34 == false); + + } + + public void test248() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test248"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var1 = new SpaceWar.SpacePanel(); + java.awt.Color var2 = var1.getBackground(); + SpaceWar.SpacePanel var3 = new SpaceWar.SpacePanel(); + float var4 = var3.getAlignmentX(); + var3.setVisible(false); + var3.nextFocus(); + var3.updateUI(); + var3.enableInputMethods(true); + var0.add((java.awt.Component)var1, (java.lang.Object)true); + java.awt.Image var14 = var1.createImage(1, (-1)); + java.awt.event.MouseListener[] var15 = var1.getMouseListeners(); + java.awt.Color var16 = var1.getBackground(); + boolean var17 = var1.getIgnoreRepaint(); + java.awt.Dimension var18 = var1.minimumSize(); + java.awt.Insets var19 = var1.getInsets(); + int var20 = var1.getHeight(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var2); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == 0); + + } + + public void test249() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test249"); + + + SpaceWar.Player var0 = new SpaceWar.Player(); + int var1 = var0.getPower(); + var0.setLeft(true); + var0.increasePower(0); + int var6 = var0.getR(); + int var7 = var0.getLives(); + var0.loseLife(); + var0.update(); + var0.setFiring(true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == 25); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 3); + + } + + public void test250() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test250"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + boolean var6 = var0.isFocusCycleRoot(); + var0.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", 100, 0); + SpaceWar.SpacePanel var11 = new SpaceWar.SpacePanel(); + float var12 = var11.getAlignmentX(); + var11.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var17 = var11.getUI(); + var0.add((java.awt.Component)var11, (java.lang.Object)(short)0); + java.awt.event.InputMethodListener[] var20 = var11.getInputMethodListeners(); + java.awt.Toolkit var21 = var11.getToolkit(); + var11.setSize(24, 2); + java.awt.Container var25 = var11.getTopLevelAncestor(); + boolean var28 = var11.contains(1, 2); + boolean var30 = var11.areFocusTraversalKeysSet(0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var21); + + // Regression assertion (captures the current behavior of the code) + assertNull(var25); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var28 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var30 == false); + + } + + public void test251() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test251"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + boolean var6 = var0.isFocusCycleRoot(); + var0.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", 100, 0); + SpaceWar.SpacePanel var11 = new SpaceWar.SpacePanel(); + float var12 = var11.getAlignmentX(); + var11.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var17 = var11.getUI(); + var0.add((java.awt.Component)var11, (java.lang.Object)(short)0); + SpaceWar.SpacePanel var20 = new SpaceWar.SpacePanel(); + float var21 = var20.getAlignmentX(); + var20.setVisible(false); + var20.nextFocus(); + var20.repaint(1L); + SpaceWar.SpacePanel var27 = new SpaceWar.SpacePanel(); + float var28 = var27.getAlignmentX(); + var27.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var33 = new SpaceWar.SpacePanel(); + float var34 = var33.getAlignmentX(); + var33.setVisible(false); + java.awt.Dimension var37 = var33.getPreferredSize(); + var27.setMaximumSize(var37); + var20.setPreferredSize(var37); + javax.swing.plaf.PanelUI var40 = var20.getUI(); + SpaceWar.SpacePanel var41 = new SpaceWar.SpacePanel(); + float var42 = var41.getAlignmentX(); + var41.setVisible(false); + SpaceWar.SpacePanel var45 = new SpaceWar.SpacePanel(); + java.awt.Color var46 = var45.getBackground(); + var41.setForeground(var46); + SpaceWar.SpacePanel var48 = new SpaceWar.SpacePanel(); + float var49 = var48.getAlignmentX(); + var48.setVisible(false); + boolean var52 = var48.isDoubleBuffered(); + java.awt.dnd.DropTarget var53 = var48.getDropTarget(); + var48.show(false); + java.awt.Rectangle var56 = var48.getVisibleRect(); + var41.repaint(var56); + java.awt.FocusTraversalPolicy var58 = var41.getFocusTraversalPolicy(); + var41.resetKeyboardActions(); + SpaceWar.SpacePanel var60 = new SpaceWar.SpacePanel(); + float var61 = var60.getAlignmentX(); + var60.setVisible(false); + boolean var64 = var60.isDoubleBuffered(); + java.awt.dnd.DropTarget var65 = var60.getDropTarget(); + var60.show(false); + java.awt.Rectangle var68 = var60.getVisibleRect(); + var41.computeVisibleRect(var68); + javax.swing.ActionMap var70 = var41.getActionMap(); + var20.setActionMap(var70); + java.awt.Point var72 = var20.getMousePosition(); + int var73 = var11.getComponentZOrder((java.awt.Component)var20); + java.awt.Point var74 = var20.location(); + java.awt.event.HierarchyBoundsListener[] var75 = var20.getHierarchyBoundsListeners(); + java.beans.PropertyChangeListener[] var77 = var20.getPropertyChangeListeners("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=1.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var28 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var34 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var37); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var40); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var42 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var46); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var49 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var52 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var53); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var56); + + // Regression assertion (captures the current behavior of the code) + assertNull(var58); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var61 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var64 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var65); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var68); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var70); + + // Regression assertion (captures the current behavior of the code) + assertNull(var72); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var73 == (-1)); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var74); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var75); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var77); + + } + + public void test252() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test252"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + boolean var2 = var0.hasFocus(); + SpaceWar.SpacePanel var3 = new SpaceWar.SpacePanel(); + float var4 = var3.getAlignmentX(); + var3.setVisible(false); + var3.nextFocus(); + var3.reshape((-1), 1, (-1), 10); + var3.disable(); + java.awt.LayoutManager var14 = var3.getLayout(); + var3.setVisible(false); + var0.remove((java.awt.Component)var3); + boolean var18 = var3.hasFocus(); + java.lang.String var19 = var3.toString(); + int var20 = var3.getX(); + java.awt.Graphics var21 = var3.getGraphics(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var2 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var19 + "' != '" + "SpaceWar.SpacePanel[,-1,1,-1x10,invalid,hidden,disabled,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"+ "'", var19.equals("SpaceWar.SpacePanel[,-1,1,-1x10,invalid,hidden,disabled,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]")); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == (-1)); + + // Regression assertion (captures the current behavior of the code) + assertNull(var21); + + } + + public void test253() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test253"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + var0.list(); + float var6 = var0.getAlignmentY(); + java.awt.event.ComponentListener[] var7 = var0.getComponentListeners(); + java.awt.Component var8 = var0.getNextFocusableComponent(); + boolean var9 = var0.isManagingFocus(); + javax.swing.border.Border var10 = var0.getBorder(); + javax.swing.ActionMap var11 = var0.getActionMap(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + } + + public void test254() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test254"); + + + SpaceWar.Explosion var4 = new SpaceWar.Explosion(2.0d, 240.9713786093358d, 24, 24); + + } + + public void test255() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test255"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + boolean var2 = var0.hasFocus(); + java.awt.Insets var3 = var0.getInsets(); + boolean var4 = var0.isFocusTraversalPolicyProvider(); + java.beans.PropertyChangeListener[] var6 = var0.getPropertyChangeListeners("hi!"); + java.awt.Cursor var7 = var0.getCursor(); + var0.paintImmediately(24, 500, 3, 100); + SpaceWar.SpacePanel var13 = new SpaceWar.SpacePanel(); + float var14 = var13.getAlignmentX(); + var13.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var19 = var13.getUI(); + java.awt.im.InputMethodRequests var20 = var13.getInputMethodRequests(); + SpaceWar.SpacePanel var21 = new SpaceWar.SpacePanel(); + float var22 = var21.getAlignmentX(); + var21.setVisible(false); + var21.nextFocus(); + var21.updateUI(); + var21.enableInputMethods(true); + var21.setSize((-1), 1); + SpaceWar.SpacePanel var32 = new SpaceWar.SpacePanel(); + var32.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var13.add((java.awt.Component)var21, (java.lang.Object)"SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + var21.setAutoscrolls(true); + SpaceWar.SpacePanel var40 = new SpaceWar.SpacePanel(); + float var41 = var40.getAlignmentX(); + var40.setVisible(false); + var40.nextFocus(); + var40.reshape((-1), 1, (-1), 10); + var40.disable(); + java.awt.Component var53 = var40.findComponentAt(0, (-1)); + SpaceWar.SpacePanel var54 = new SpaceWar.SpacePanel(); + var54.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + javax.swing.plaf.PanelUI var59 = var54.getUI(); + SpaceWar.SpacePanel var60 = new SpaceWar.SpacePanel(); + float var61 = var60.getAlignmentX(); + var60.setVisible(false); + var60.nextFocus(); + var60.repaint(1L); + SpaceWar.SpacePanel var67 = new SpaceWar.SpacePanel(); + float var68 = var67.getAlignmentX(); + var67.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var73 = new SpaceWar.SpacePanel(); + float var74 = var73.getAlignmentX(); + var73.setVisible(false); + java.awt.Dimension var77 = var73.getPreferredSize(); + var67.setMaximumSize(var77); + var60.setPreferredSize(var77); + var54.setMaximumSize(var77); + var40.setSize(var77); + var21.setMaximumSize(var77); + var0.setMaximumSize(var77); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var2 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var22 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var41 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNull(var53); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var59); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var61 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var68 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var74 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var77); + + } + + public void test256() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test256"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.setInheritsPopupMenu(false); + var0.move(10, 10); + var0.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var0.removeAll(); + var0.setOpaque(false); + var0.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=java.awt.Dimension[width=800,height=600],minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", 500, 25); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + } + + public void test257() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test257"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var6 = var0.getMouseListeners(); + int var7 = var0.getDebugGraphicsOptions(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + boolean var12 = var8.isDoubleBuffered(); + java.awt.dnd.DropTarget var13 = var8.getDropTarget(); + var8.show(false); + java.awt.Rectangle var16 = var8.getVisibleRect(); + var0.paintImmediately(var16); + SpaceWar.SpacePanel var18 = new SpaceWar.SpacePanel(); + float var19 = var18.getAlignmentX(); + var18.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var24 = var18.getMouseListeners(); + int var25 = var18.getDebugGraphicsOptions(); + SpaceWar.SpacePanel var26 = new SpaceWar.SpacePanel(); + float var27 = var26.getAlignmentX(); + var26.setVisible(false); + boolean var30 = var26.isDoubleBuffered(); + java.awt.dnd.DropTarget var31 = var26.getDropTarget(); + var26.show(false); + java.awt.Rectangle var34 = var26.getVisibleRect(); + var18.paintImmediately(var34); + java.awt.Rectangle var36 = var18.getBounds(); + var0.scrollRectToVisible(var36); + var0.setFocusTraversalPolicyProvider(true); + java.awt.Container var40 = var0.getParent(); + var0.transferFocusBackward(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var30 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var31); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var34); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var36); + + // Regression assertion (captures the current behavior of the code) + assertNull(var40); + + } + + public void test258() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test258"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var6 = var0.getUI(); + java.awt.im.InputMethodRequests var7 = var0.getInputMethodRequests(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + var8.nextFocus(); + var8.updateUI(); + var8.enableInputMethods(true); + var8.setSize((-1), 1); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + var19.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var0.add((java.awt.Component)var8, (java.lang.Object)"SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + java.awt.event.KeyListener[] var25 = var0.getKeyListeners(); + var0.repaint(3, 1, 25, 0); + SpaceWar.SpacePanel var31 = new SpaceWar.SpacePanel(); + float var32 = var31.getAlignmentX(); + var31.setVisible(false); + java.awt.Dimension var35 = var31.getPreferredSize(); + boolean var36 = var31.getVerifyInputWhenFocusTarget(); + java.awt.Dimension var37 = var31.size(); + var0.resize(var37); + var0.reshape(2, 499, 399, 2); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var25); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var32 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var35); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var36 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var37); + + } + + public void test259() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test259"); + + + SpaceWar.Enemy var2 = new SpaceWar.Enemy((-1), 3); + var2.explode(); + + } + + public void test260() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test260"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + var0.list(); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + float var7 = var6.getAlignmentX(); + var6.setVisible(false); + boolean var10 = var6.isDoubleBuffered(); + java.awt.dnd.DropTarget var11 = var6.getDropTarget(); + var6.show(false); + java.awt.Rectangle var14 = var6.getVisibleRect(); + java.awt.Rectangle var15 = var0.getBounds(var14); + javax.swing.JToolTip var16 = var0.createToolTip(); + var0.firePropertyChange("", false, false); + var0.setFocusTraversalKeysEnabled(false); + boolean var23 = var0.isValid(); + var0.setFocusCycleRoot(true); + var0.setFocusTraversalPolicyProvider(true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == false); + + } + + public void test261() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test261"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + java.awt.Cursor var2 = var0.getCursor(); + java.awt.Color var3 = var0.getBackground(); + var0.setInheritsPopupMenu(true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var2); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var3); + + } + + public void test262() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test262"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + var0.setRequestFocusEnabled(false); + var0.setIgnoreRepaint(false); + java.lang.String var7 = var0.toString(); + boolean var9 = var0.requestFocus(false); + var0.hide(); + java.awt.Point var11 = var0.getLocation(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var7 + "' != '" + "SpaceWar.SpacePanel[,0,0,0var7,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"+ "'", var7.equals("SpaceWar.SpacePanel[,0,0,0var7,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]")); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + } + + public void test263() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test263"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.setInheritsPopupMenu(false); + java.awt.im.InputContext var6 = var0.getInputContext(); + boolean var7 = var0.isMinimumSizeSet(); + java.awt.image.BufferedImage var9 = var0.loadImg("SpaceWar.SpacePanel[,-1,100,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=265,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + var0.resize(2, 2); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var9); + + } + + public void test264() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test264"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var6 = var0.getMouseListeners(); + java.awt.Dimension var7 = var0.getPreferredSize(); + java.util.Locale var8 = var0.getLocale(); + var0.setFocusable(true); + var0.setSize(3, 10); + var0.invalidate(); + boolean var15 = var0.isValid(); + boolean var16 = var0.getVerifyInputWhenFocusTarget(); + var0.setEnabled(true); + var0.setToolTipText("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=10,height=10]]"); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == true); + + } + + public void test265() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test265"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var1 = new SpaceWar.SpacePanel(); + java.awt.Color var2 = var1.getBackground(); + SpaceWar.SpacePanel var3 = new SpaceWar.SpacePanel(); + float var4 = var3.getAlignmentX(); + var3.setVisible(false); + var3.nextFocus(); + var3.updateUI(); + var3.enableInputMethods(true); + var0.add((java.awt.Component)var1, (java.lang.Object)true); + java.awt.Image var14 = var1.createImage(1, (-1)); + java.awt.event.MouseListener[] var15 = var1.getMouseListeners(); + var1.firePropertyChange("PanelUI", 499, 2); + SpaceWar.SpacePanel var20 = new SpaceWar.SpacePanel(); + float var21 = var20.getAlignmentX(); + var20.setVisible(false); + SpaceWar.SpacePanel var24 = new SpaceWar.SpacePanel(); + java.awt.Color var25 = var24.getBackground(); + var20.setForeground(var25); + SpaceWar.SpacePanel var27 = new SpaceWar.SpacePanel(); + float var28 = var27.getAlignmentX(); + var27.setVisible(false); + boolean var31 = var27.isDoubleBuffered(); + java.awt.dnd.DropTarget var32 = var27.getDropTarget(); + var27.show(false); + java.awt.Rectangle var35 = var27.getVisibleRect(); + var20.repaint(var35); + java.awt.FocusTraversalPolicy var37 = var20.getFocusTraversalPolicy(); + java.awt.im.InputMethodRequests var38 = var20.getInputMethodRequests(); + var20.layout(); + java.awt.Point var40 = var20.getMousePosition(); + java.awt.Graphics var41 = var20.getGraphics(); + javax.swing.TransferHandler var42 = var20.getTransferHandler(); + SpaceWar.SpacePanel var43 = new SpaceWar.SpacePanel(); + float var44 = var43.getAlignmentX(); + var43.setVisible(false); + var43.nextFocus(); + var43.reshape((-1), 1, (-1), 10); + var43.disable(); + SpaceWar.SpacePanel var55 = new SpaceWar.SpacePanel(); + float var56 = var55.getAlignmentX(); + var55.setVisible(false); + java.awt.Dimension var59 = var55.getPreferredSize(); + java.awt.Toolkit var60 = var55.getToolkit(); + boolean var61 = var55.isFocusable(); + SpaceWar.SpacePanel var63 = new SpaceWar.SpacePanel(); + float var64 = var63.getAlignmentX(); + var63.setVisible(false); + var63.nextFocus(); + var63.reshape((-1), 1, (-1), 10); + java.util.Set var74 = var63.getFocusTraversalKeys(3); + var55.setFocusTraversalKeys(1, var74); + var43.setFocusTraversalKeys(0, var74); + java.awt.Rectangle var77 = var43.getVisibleRect(); + var20.scrollRectToVisible(var77); + java.awt.Rectangle var79 = var1.getBounds(var77); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var2); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var25); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var28 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var31 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var32); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var35); + + // Regression assertion (captures the current behavior of the code) + assertNull(var37); + + // Regression assertion (captures the current behavior of the code) + assertNull(var38); + + // Regression assertion (captures the current behavior of the code) + assertNull(var40); + + // Regression assertion (captures the current behavior of the code) + assertNull(var41); + + // Regression assertion (captures the current behavior of the code) + assertNull(var42); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var44 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var56 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var59); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var60); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var61 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var64 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var74); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var77); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var79); + + } + + public void test266() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test266"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + java.awt.im.InputMethodRequests var3 = var0.getInputMethodRequests(); + int var4 = var0.countComponents(); + java.awt.event.ComponentListener[] var5 = var0.getComponentListeners(); + var0.removeNotify(); + javax.swing.InputMap var7 = var0.getInputMap(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var14 = new SpaceWar.SpacePanel(); + float var15 = var14.getAlignmentX(); + var14.setVisible(false); + SpaceWar.SpacePanel var18 = new SpaceWar.SpacePanel(); + java.awt.Color var19 = var18.getBackground(); + var14.setForeground(var19); + var8.setBackground(var19); + java.awt.Point var22 = var8.location(); + var0.setLocation(var22); + SpaceWar.SpacePanel var24 = new SpaceWar.SpacePanel(); + float var25 = var24.getAlignmentX(); + var24.setVisible(false); + var24.nextFocus(); + var24.reshape((-1), 1, (-1), 10); + SpaceWar.SpacePanel var34 = new SpaceWar.SpacePanel(); + java.awt.Color var35 = var34.getBackground(); + var34.repaint(); + var34.setRequestFocusEnabled(false); + var34.reshape(100, 0, 100, 0); + java.awt.Component var44 = var24.add((java.awt.Component)var34); + var24.enable(); + SpaceWar.SpacePanel var46 = new SpaceWar.SpacePanel(); + float var47 = var46.getAlignmentX(); + boolean var48 = var46.hasFocus(); + boolean var49 = var46.isPreferredSizeSet(); + var0.putClientProperty((java.lang.Object)var24, (java.lang.Object)var46); + SpaceWar.SpacePanel var51 = new SpaceWar.SpacePanel(); + float var52 = var51.getAlignmentX(); + var51.setVisible(false); + var51.nextFocus(); + var51.repaint(1L); + SpaceWar.SpacePanel var58 = new SpaceWar.SpacePanel(); + float var59 = var58.getAlignmentX(); + var58.setVisible(false); + boolean var62 = var58.isDoubleBuffered(); + var58.list(); + SpaceWar.SpacePanel var64 = new SpaceWar.SpacePanel(); + float var65 = var64.getAlignmentX(); + var64.setVisible(false); + boolean var68 = var64.isDoubleBuffered(); + java.awt.dnd.DropTarget var69 = var64.getDropTarget(); + var64.show(false); + java.awt.Rectangle var72 = var64.getVisibleRect(); + java.awt.Rectangle var73 = var58.getBounds(var72); + var51.setBounds(var73); + var46.repaint(var73); + boolean var76 = var46.isVisible(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var35); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var44); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var47 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var48 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var49 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var52 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var59 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var62 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var65 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var68 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var69); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var72); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var73); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var76 == true); + + } + + public void test267() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test267"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + var0.show(false); + boolean var8 = var0.isPaintingForPrint(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var15 = var9.getMouseListeners(); + int var16 = var9.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var17 = var9.getInputMethodRequests(); + var0.addKeyListener((java.awt.event.KeyListener)var9); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + float var20 = var19.getAlignmentX(); + var19.setVisible(false); + boolean var23 = var19.isDoubleBuffered(); + var19.list(); + float var25 = var19.getAlignmentY(); + boolean var26 = var9.isFocusCycleRoot((java.awt.Container)var19); + boolean var27 = var19.isEnabled(); + java.awt.Dimension var28 = var19.getMaximumSize(); + var19.disable(); + java.awt.peer.ComponentPeer var30 = var19.getPeer(); + SpaceWar.SpacePanel var31 = new SpaceWar.SpacePanel(); + java.awt.Color var32 = var31.getBackground(); + var31.repaint(); + java.awt.im.InputMethodRequests var34 = var31.getInputMethodRequests(); + var31.setDoubleBuffered(true); + SpaceWar.SpacePanel var37 = new SpaceWar.SpacePanel(); + float var38 = var37.getAlignmentX(); + boolean var39 = var37.hasFocus(); + java.awt.Insets var40 = var37.getInsets(); + java.awt.Insets var41 = var31.getInsets(var40); + java.awt.Insets var42 = var19.getInsets(var41); + SpaceWar.SpacePanel var43 = new SpaceWar.SpacePanel(); + float var44 = var43.getAlignmentX(); + var43.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var49 = var43.getMouseListeners(); + int var50 = var43.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var51 = var43.getInputMethodRequests(); + var43.removeNotify(); + var43.enable(); + SpaceWar.SpacePanel var54 = new SpaceWar.SpacePanel(); + java.awt.Color var55 = var54.getBackground(); + boolean var58 = var54.inside(0, (-1)); + var54.transferFocusUpCycle(); + java.lang.String var60 = var54.getName(); + boolean var61 = var43.isFocusCycleRoot((java.awt.Container)var54); + java.awt.Dimension var62 = var43.getMinimumSize(); + boolean var63 = var43.getFocusTraversalKeysEnabled(); + SpaceWar.SpacePanel var64 = new SpaceWar.SpacePanel(); + float var65 = var64.getAlignmentX(); + var64.setVisible(false); + boolean var68 = var64.isDoubleBuffered(); + java.awt.Graphics var69 = var64.getGraphics(); + java.awt.event.MouseMotionListener[] var70 = var64.getMouseMotionListeners(); + SpaceWar.SpacePanel var71 = new SpaceWar.SpacePanel(); + float var72 = var71.getAlignmentX(); + var71.setVisible(false); + var71.setInheritsPopupMenu(false); + boolean var77 = var71.isDoubleBuffered(); + boolean var78 = var71.isMinimumSizeSet(); + java.awt.Font var79 = var71.getFont(); + var64.setFont(var79); + java.awt.FontMetrics var81 = var43.getFontMetrics(var79); + var19.setFont(var79); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var28); + + // Regression assertion (captures the current behavior of the code) + assertNull(var30); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var32); + + // Regression assertion (captures the current behavior of the code) + assertNull(var34); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var38 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var39 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var40); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var41); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var42); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var44 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var49); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var50 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var51); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var55); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var58 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var60); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var61 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var62); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var63 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var65 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var68 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var69); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var70); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var72 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var77 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var78 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var79); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var81); + + } + + public void test268() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test268"); + + + SpaceWar.PowerUp var3 = new SpaceWar.PowerUp(0, 226.53068162065512d, 215.19350638961689d); + + } + + public void test269() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test269"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.reshape((-1), 1, (-1), 10); + var0.disable(); + java.awt.LayoutManager var11 = var0.getLayout(); + boolean var14 = var0.contains((-1), 0); + SpaceWar.SpacePanel var15 = new SpaceWar.SpacePanel(); + float var16 = var15.getAlignmentX(); + var15.setVisible(false); + var15.nextFocus(); + var15.updateUI(); + var15.enableInputMethods(true); + var15.setSize((-1), 1); + java.awt.Component var26 = var0.add((java.awt.Component)var15); + SpaceWar.SpacePanel var27 = new SpaceWar.SpacePanel(); + float var28 = var27.getAlignmentX(); + var27.setVisible(false); + var27.nextFocus(); + var27.updateUI(); + var27.enableInputMethods(true); + java.lang.String var35 = var27.toString(); + java.awt.FocusTraversalPolicy var36 = var27.getFocusTraversalPolicy(); + var15.removeKeyListener((java.awt.event.KeyListener)var27); + boolean var38 = var27.isShowing(); + java.awt.GraphicsConfiguration var39 = var27.getGraphicsConfiguration(); + var27.setDebugGraphicsOptions(24); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var28 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var35 + "' != '" + "SpaceWar.SpacePanel[,0,0,0var35,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"+ "'", var35.equals("SpaceWar.SpacePanel[,0,0,0var35,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]")); + + // Regression assertion (captures the current behavior of the code) + assertNull(var36); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var38 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var39); + + } + + public void test270() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test270"); + + + SpaceWar.Enemy var2 = new SpaceWar.Enemy(0, 100); + var2.explode(); + double var4 = var2.getY(); + var2.explode(); + int var6 = var2.getR(); + int var7 = var2.getRank(); + int var8 = var2.getRank(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0.0d); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 100); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 100); + + } + + public void test271() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test271"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.setInheritsPopupMenu(false); + boolean var6 = var0.isMinimumSizeSet(); + java.awt.LayoutManager var7 = var0.getLayout(); + java.awt.event.HierarchyListener[] var8 = var0.getHierarchyListeners(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var8); + + } + + public void test272() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test272"); + + + SpaceWar.Player var0 = new SpaceWar.Player(); + boolean var1 = var0.isRecovering(); + var0.setRigth(false); + int var4 = var0.getPowerLevel(); + var0.increasePower((-1)); + int var7 = var0.getLives(); + int var8 = var0.getRequiredPower(); + java.awt.image.BufferedImage var10 = var0.loadImg("SpaceWar.SpacePanel[,0,0,0x0,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 3); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 1); + + // Regression assertion (captures the current behavior of the code) + assertNull(var10); + + } + + public void test273() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test273"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + java.awt.im.InputMethodRequests var3 = var0.getInputMethodRequests(); + var0.setDoubleBuffered(true); + var0.setInheritsPopupMenu(false); + var0.setOpaque(true); + var0.grabFocus(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNull(var3); + + } + + public void test274() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test274"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + float var7 = var6.getAlignmentX(); + var6.setVisible(false); + SpaceWar.SpacePanel var10 = new SpaceWar.SpacePanel(); + java.awt.Color var11 = var10.getBackground(); + var6.setForeground(var11); + var0.setBackground(var11); + var0.grabFocus(); + SpaceWar.SpacePanel var15 = new SpaceWar.SpacePanel(); + float var16 = var15.getAlignmentX(); + var15.setVisible(false); + boolean var19 = var15.isDoubleBuffered(); + java.awt.dnd.DropTarget var20 = var15.getDropTarget(); + boolean var21 = var15.isFocusCycleRoot(); + SpaceWar.SpacePanel var22 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var23 = new SpaceWar.SpacePanel(); + java.awt.Color var24 = var23.getBackground(); + SpaceWar.SpacePanel var25 = new SpaceWar.SpacePanel(); + float var26 = var25.getAlignmentX(); + var25.setVisible(false); + var25.nextFocus(); + var25.updateUI(); + var25.enableInputMethods(true); + var22.add((java.awt.Component)var23, (java.lang.Object)true); + java.awt.Dimension var34 = var23.getPreferredSize(); + var15.setSize(var34); + var0.setMaximumSize(var34); + var0.enable(); + var0.repaint(0L); + var0.move(1, 400); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var34); + + } + + public void test275() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test275"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.updateUI(); + var0.enableInputMethods(true); + java.awt.Point var9 = var0.getMousePosition(false); + boolean var10 = var0.isShowing(); + boolean var12 = var0.requestFocus(true); + java.beans.PropertyChangeListener[] var14 = var0.getPropertyChangeListeners("SpaceWar.SpacePanel[,0,0,0x0,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + javax.swing.event.AncestorListener[] var15 = var0.getAncestorListeners(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNull(var9); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + } + + public void test276() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test276"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + java.awt.Dimension var4 = var0.getPreferredSize(); + java.awt.Toolkit var5 = var0.getToolkit(); + boolean var6 = var0.isFocusable(); + javax.swing.KeyStroke[] var7 = var0.getRegisteredKeyStrokes(); + java.awt.Component var10 = var0.getComponentAt(100, 100); + java.lang.Object var11 = var0.getTreeLock(); + SpaceWar.SpacePanel var12 = new SpaceWar.SpacePanel(); + float var13 = var12.getAlignmentX(); + var12.setVisible(false); + boolean var16 = var12.isDoubleBuffered(); + java.awt.dnd.DropTarget var17 = var12.getDropTarget(); + java.awt.Point var18 = var12.getMousePosition(); + java.lang.String var19 = var12.getUIClassID(); + var0.setNextFocusableComponent((java.awt.Component)var12); + SpaceWar.SpacePanel var21 = new SpaceWar.SpacePanel(); + float var22 = var21.getAlignmentX(); + var21.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var27 = var21.getUI(); + java.awt.im.InputMethodRequests var28 = var21.getInputMethodRequests(); + SpaceWar.SpacePanel var29 = new SpaceWar.SpacePanel(); + float var30 = var29.getAlignmentX(); + var29.setVisible(false); + var29.nextFocus(); + var29.updateUI(); + var29.enableInputMethods(true); + var29.setSize((-1), 1); + SpaceWar.SpacePanel var40 = new SpaceWar.SpacePanel(); + var40.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var21.add((java.awt.Component)var29, (java.lang.Object)"SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + SpaceWar.SpacePanel var46 = new SpaceWar.SpacePanel(); + float var47 = var46.getAlignmentX(); + var46.setVisible(false); + java.awt.Dimension var50 = var46.getPreferredSize(); + java.awt.Toolkit var51 = var46.getToolkit(); + java.awt.Toolkit var52 = var46.getToolkit(); + java.awt.Component var53 = var29.add((java.awt.Component)var46); + var29.setDebugGraphicsOptions(0); + var29.setVerifyInputWhenFocusTarget(false); + var29.nextFocus(); + var29.repaint(100, 0, 10, 3); + java.awt.Dimension var64 = var29.getSize(); + javax.swing.InputVerifier var65 = var29.getInputVerifier(); + var0.remove((java.awt.Component)var29); + boolean var67 = var0.hasFocus(); + java.awt.image.ColorModel var68 = var0.getColorModel(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var4); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var19 + "' != '" + "PanelUI"+ "'", var19.equals("PanelUI")); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var22 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var27); + + // Regression assertion (captures the current behavior of the code) + assertNull(var28); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var30 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var47 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var50); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var51); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var52); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var53); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var64); + + // Regression assertion (captures the current behavior of the code) + assertNull(var65); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var67 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var68); + + } + + public void test277() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test277"); + + + SpaceWar.Enemy var2 = new SpaceWar.Enemy(0, 10); + var2.update(); + double var4 = var2.getX(); + var2.explode(); + var2.explode(); + int var7 = var2.getType(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 273.15587563254314d); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0); + + } + + public void test278() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test278"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + boolean var2 = var0.hasFocus(); + boolean var3 = var0.isPreferredSizeSet(); + var0.firePropertyChange("", (short)1, (short)0); + boolean var8 = var0.isMaximumSizeSet(); + java.awt.image.ColorModel var9 = var0.getColorModel(); + var0.enableInputMethods(true); + boolean var12 = var0.isPaintingForPrint(); + boolean var13 = var0.isValidateRoot(); + java.awt.FocusTraversalPolicy var14 = var0.getFocusTraversalPolicy(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var2 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var9); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var14); + + } + + public void test279() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test279"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.setInheritsPopupMenu(false); + java.awt.im.InputContext var6 = var0.getInputContext(); + boolean var7 = var0.isFontSet(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == true); + + } + + public void test280() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test280"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + SpaceWar.SpacePanel var4 = new SpaceWar.SpacePanel(); + java.awt.Color var5 = var4.getBackground(); + var0.setForeground(var5); + SpaceWar.SpacePanel var7 = new SpaceWar.SpacePanel(); + float var8 = var7.getAlignmentX(); + var7.setVisible(false); + boolean var11 = var7.isDoubleBuffered(); + java.awt.dnd.DropTarget var12 = var7.getDropTarget(); + var7.show(false); + java.awt.Rectangle var15 = var7.getVisibleRect(); + var0.repaint(var15); + java.awt.FocusTraversalPolicy var17 = var0.getFocusTraversalPolicy(); + java.awt.im.InputMethodRequests var18 = var0.getInputMethodRequests(); + var0.layout(); + boolean var20 = var0.isFocusTraversalPolicyProvider(); + java.awt.Insets var21 = var0.insets(); + SpaceWar.SpacePanel var22 = new SpaceWar.SpacePanel(); + float var23 = var22.getAlignmentX(); + var22.firePropertyChange("", (-1), 1); + java.awt.event.MouseMotionListener[] var28 = var22.getMouseMotionListeners(); + java.awt.event.ComponentListener[] var29 = var22.getComponentListeners(); + SpaceWar.SpacePanel var30 = new SpaceWar.SpacePanel(); + float var31 = var30.getAlignmentX(); + var30.setVisible(false); + var30.nextFocus(); + var30.repaint(1L); + SpaceWar.SpacePanel var37 = new SpaceWar.SpacePanel(); + float var38 = var37.getAlignmentX(); + var37.setVisible(false); + boolean var41 = var37.isDoubleBuffered(); + var37.list(); + SpaceWar.SpacePanel var43 = new SpaceWar.SpacePanel(); + float var44 = var43.getAlignmentX(); + var43.setVisible(false); + boolean var47 = var43.isDoubleBuffered(); + java.awt.dnd.DropTarget var48 = var43.getDropTarget(); + var43.show(false); + java.awt.Rectangle var51 = var43.getVisibleRect(); + java.awt.Rectangle var52 = var37.getBounds(var51); + var30.setBounds(var52); + var22.paintImmediately(var52); + java.awt.Point var55 = var22.getMousePosition(); + boolean var56 = var22.isFocusCycleRoot(); + java.awt.Rectangle var57 = var22.getVisibleRect(); + var0.repaint(var57); + SpaceWar.SpacePanel var59 = new SpaceWar.SpacePanel(); + float var60 = var59.getAlignmentX(); + SpaceWar.SpacePanel var61 = new SpaceWar.SpacePanel(); + float var62 = var61.getAlignmentX(); + var61.setVisible(false); + java.awt.Dimension var65 = var61.getPreferredSize(); + boolean var66 = var61.getVerifyInputWhenFocusTarget(); + java.awt.Component var69 = var61.findComponentAt(10, 1); + var59.addKeyListener((java.awt.event.KeyListener)var61); + boolean var71 = var61.getFocusTraversalKeysEnabled(); + var0.remove((java.awt.Component)var61); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var21); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var28); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var29); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var31 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var38 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var41 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var44 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var47 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var48); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var51); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var52); + + // Regression assertion (captures the current behavior of the code) + assertNull(var55); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var56 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var57); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var60 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var62 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var65); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var66 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var69); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var71 == true); + + } + + public void test281() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test281"); + + + SpaceWar.Player var0 = new SpaceWar.Player(); + int var1 = var0.getR(); + var0.setRigth(false); + int var4 = var0.getY(); + var0.increasePower(499); + java.awt.image.BufferedImage var8 = var0.loadImg("SpaceWar.SpacePanel[,0,0,0x0,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + boolean var9 = var0.isRecovering(); + var0.setLeft(true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 25); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 500); + + // Regression assertion (captures the current behavior of the code) + assertNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == false); + + } + + public void test282() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test282"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var1 = new SpaceWar.SpacePanel(); + java.awt.Color var2 = var1.getBackground(); + SpaceWar.SpacePanel var3 = new SpaceWar.SpacePanel(); + float var4 = var3.getAlignmentX(); + var3.setVisible(false); + var3.nextFocus(); + var3.updateUI(); + var3.enableInputMethods(true); + var0.add((java.awt.Component)var1, (java.lang.Object)true); + java.awt.Image var14 = var1.createImage(1, (-1)); + java.awt.event.MouseListener[] var15 = var1.getMouseListeners(); + java.awt.Color var16 = var1.getBackground(); + boolean var17 = var1.getIgnoreRepaint(); + java.lang.String var18 = var1.toString(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var2); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var18 + "' != '" + "SpaceWar.SpacePanel[,0,0,0var18,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"+ "'", var18.equals("SpaceWar.SpacePanel[,0,0,0var18,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]")); + + } + + public void test283() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test283"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + boolean var2 = var0.hasFocus(); + boolean var3 = var0.isPreferredSizeSet(); + SpaceWar.SpacePanel var4 = new SpaceWar.SpacePanel(); + java.awt.Color var5 = var4.getBackground(); + var4.repaint(); + var4.setRequestFocusEnabled(false); + int var9 = var0.getComponentZOrder((java.awt.Component)var4); + java.awt.GraphicsConfiguration var10 = var4.getGraphicsConfiguration(); + java.lang.String var11 = var4.getUIClassID(); + javax.swing.ActionMap var12 = var4.getActionMap(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var2 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == (-1)); + + // Regression assertion (captures the current behavior of the code) + assertNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var11 + "' != '" + "PanelUI"+ "'", var11.equals("PanelUI")); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var12); + + } + + public void test284() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test284"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + java.awt.Dimension var4 = var0.getPreferredSize(); + java.awt.Toolkit var5 = var0.getToolkit(); + boolean var6 = var0.isFocusable(); + javax.swing.KeyStroke[] var7 = var0.getRegisteredKeyStrokes(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + SpaceWar.SpacePanel var10 = new SpaceWar.SpacePanel(); + float var11 = var10.getAlignmentX(); + var10.setVisible(false); + java.awt.Dimension var14 = var10.getPreferredSize(); + boolean var15 = var10.getVerifyInputWhenFocusTarget(); + java.awt.Component var18 = var10.findComponentAt(10, 1); + var8.addKeyListener((java.awt.event.KeyListener)var10); + var10.repaint(100, (-1), (-1), 1); + boolean var25 = var0.isAncestorOf((java.awt.Component)var10); + var0.nextFocus(); + var0.disable(); + int var28 = var0.countComponents(); + var0.firePropertyChange("SpaceWar.SpacePanel[,-1,1,-1x10,invalid,hidden,disabled,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", (-1.0d), 467.04063594113916d); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var4); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var28 == 0); + + } + + public void test285() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test285"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + java.awt.im.InputMethodRequests var3 = var0.getInputMethodRequests(); + int var4 = var0.countComponents(); + java.awt.event.ComponentListener[] var5 = var0.getComponentListeners(); + var0.removeNotify(); + javax.swing.InputMap var7 = var0.getInputMap(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var14 = new SpaceWar.SpacePanel(); + float var15 = var14.getAlignmentX(); + var14.setVisible(false); + SpaceWar.SpacePanel var18 = new SpaceWar.SpacePanel(); + java.awt.Color var19 = var18.getBackground(); + var14.setForeground(var19); + var8.setBackground(var19); + java.awt.Point var22 = var8.location(); + var0.setLocation(var22); + SpaceWar.SpacePanel var24 = new SpaceWar.SpacePanel(); + float var25 = var24.getAlignmentX(); + var24.setVisible(false); + var24.nextFocus(); + var24.reshape((-1), 1, (-1), 10); + SpaceWar.SpacePanel var34 = new SpaceWar.SpacePanel(); + java.awt.Color var35 = var34.getBackground(); + var34.repaint(); + var34.setRequestFocusEnabled(false); + var34.reshape(100, 0, 100, 0); + java.awt.Component var44 = var24.add((java.awt.Component)var34); + var24.enable(); + SpaceWar.SpacePanel var46 = new SpaceWar.SpacePanel(); + float var47 = var46.getAlignmentX(); + boolean var48 = var46.hasFocus(); + boolean var49 = var46.isPreferredSizeSet(); + var0.putClientProperty((java.lang.Object)var24, (java.lang.Object)var46); + var0.nextFocus(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var35); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var44); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var47 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var48 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var49 == true); + + } + + public void test286() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test286"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + var0.setName(""); + java.awt.Dimension var3 = var0.minimumSize(); + boolean var4 = var0.isDoubleBuffered(); + SpaceWar.SpacePanel var5 = new SpaceWar.SpacePanel(); + float var6 = var5.getAlignmentX(); + var5.setVisible(false); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + java.awt.Color var10 = var9.getBackground(); + var5.setForeground(var10); + SpaceWar.SpacePanel var12 = new SpaceWar.SpacePanel(); + float var13 = var12.getAlignmentX(); + var12.setVisible(false); + boolean var16 = var12.isDoubleBuffered(); + java.awt.dnd.DropTarget var17 = var12.getDropTarget(); + var12.show(false); + java.awt.Rectangle var20 = var12.getVisibleRect(); + var5.repaint(var20); + java.awt.FocusTraversalPolicy var22 = var5.getFocusTraversalPolicy(); + java.awt.im.InputMethodRequests var23 = var5.getInputMethodRequests(); + var5.layout(); + boolean var25 = var5.isFocusTraversalPolicyProvider(); + java.awt.Component var26 = var0.add((java.awt.Component)var5); + var0.transferFocusUpCycle(); + java.awt.Image var30 = var0.createImage(1, 25); + var0.setFocusCycleRoot(false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertNull(var23); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertNull(var30); + + } + + public void test287() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test287"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + SpaceWar.SpacePanel var4 = new SpaceWar.SpacePanel(); + java.awt.Color var5 = var4.getBackground(); + var0.setForeground(var5); + SpaceWar.SpacePanel var7 = new SpaceWar.SpacePanel(); + float var8 = var7.getAlignmentX(); + var7.setVisible(false); + boolean var11 = var7.isDoubleBuffered(); + java.awt.dnd.DropTarget var12 = var7.getDropTarget(); + var7.show(false); + java.awt.Rectangle var15 = var7.getVisibleRect(); + var0.repaint(var15); + java.awt.FocusTraversalPolicy var17 = var0.getFocusTraversalPolicy(); + java.awt.im.InputMethodRequests var18 = var0.getInputMethodRequests(); + var0.layout(); + java.awt.Point var20 = var0.getMousePosition(); + java.awt.Graphics var21 = var0.getGraphics(); + javax.swing.TransferHandler var22 = var0.getTransferHandler(); + boolean var23 = var0.isFocusOwner(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertNull(var21); + + // Regression assertion (captures the current behavior of the code) + assertNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == false); + + } + + public void test288() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test288"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + java.awt.Dimension var4 = var0.getPreferredSize(); + boolean var5 = var0.getVerifyInputWhenFocusTarget(); + java.awt.Component var8 = var0.findComponentAt(10, 1); + boolean var9 = var0.requestDefaultFocus(); + var0.setVerifyInputWhenFocusTarget(true); + var0.setFocusTraversalKeysEnabled(false); + SpaceWar.SpacePanel var15 = new SpaceWar.SpacePanel(); + var15.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + javax.swing.plaf.PanelUI var20 = var15.getUI(); + boolean var21 = var15.isDisplayable(); + SpaceWar.SpacePanel var22 = new SpaceWar.SpacePanel(); + float var23 = var22.getAlignmentX(); + var22.removeNotify(); + SpaceWar.SpacePanel var25 = new SpaceWar.SpacePanel(); + float var26 = var25.getAlignmentX(); + var25.setVisible(false); + boolean var29 = var25.isDoubleBuffered(); + var25.list(); + float var31 = var25.getAlignmentY(); + java.awt.Insets var32 = var25.getInsets(); + java.awt.Insets var33 = var22.getInsets(var32); + java.awt.Insets var34 = var15.getInsets(var33); + java.awt.Graphics var35 = var15.getGraphics(); + java.awt.Component var36 = var0.add("SpaceWar.SpacePanel[,-1,1,-1x10,invalid,hidden,disabled,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", (java.awt.Component)var15); + java.awt.Dimension var37 = var0.size(); + var0.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=8,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", 594.7973940347722d, 475.3294093279198d); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var4); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var29 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var31 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var32); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var33); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var34); + + // Regression assertion (captures the current behavior of the code) + assertNull(var35); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var36); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var37); + + } + + public void test289() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test289"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + boolean var2 = var0.hasFocus(); + boolean var3 = var0.isPreferredSizeSet(); + SpaceWar.SpacePanel var4 = new SpaceWar.SpacePanel(); + java.awt.Color var5 = var4.getBackground(); + var4.repaint(); + var4.setRequestFocusEnabled(false); + int var9 = var0.getComponentZOrder((java.awt.Component)var4); + int var10 = var0.getDebugGraphicsOptions(); + var0.enableInputMethods(true); + var0.setFocusTraversalPolicyProvider(true); + java.awt.Container var15 = var0.getFocusCycleRootAncestor(); + java.awt.Component.BaselineResizeBehavior var16 = var0.getBaselineResizeBehavior(); + var0.revalidate(); + SpaceWar.SpacePanel var18 = new SpaceWar.SpacePanel(); + java.awt.Color var19 = var18.getBackground(); + var18.repaint(); + java.awt.im.InputMethodRequests var21 = var18.getInputMethodRequests(); + int var22 = var18.countComponents(); + java.awt.event.ComponentListener[] var23 = var18.getComponentListeners(); + var18.removeNotify(); + javax.swing.InputMap var25 = var18.getInputMap(); + SpaceWar.SpacePanel var26 = new SpaceWar.SpacePanel(); + float var27 = var26.getAlignmentX(); + var26.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var32 = new SpaceWar.SpacePanel(); + float var33 = var32.getAlignmentX(); + var32.setVisible(false); + SpaceWar.SpacePanel var36 = new SpaceWar.SpacePanel(); + java.awt.Color var37 = var36.getBackground(); + var32.setForeground(var37); + var26.setBackground(var37); + java.awt.Point var40 = var26.location(); + var18.setLocation(var40); + SpaceWar.SpacePanel var42 = new SpaceWar.SpacePanel(); + float var43 = var42.getAlignmentX(); + var42.setVisible(false); + var42.nextFocus(); + var42.reshape((-1), 1, (-1), 10); + SpaceWar.SpacePanel var52 = new SpaceWar.SpacePanel(); + java.awt.Color var53 = var52.getBackground(); + var52.repaint(); + var52.setRequestFocusEnabled(false); + var52.reshape(100, 0, 100, 0); + java.awt.Component var62 = var42.add((java.awt.Component)var52); + var42.enable(); + SpaceWar.SpacePanel var64 = new SpaceWar.SpacePanel(); + float var65 = var64.getAlignmentX(); + boolean var66 = var64.hasFocus(); + boolean var67 = var64.isPreferredSizeSet(); + var18.putClientProperty((java.lang.Object)var42, (java.lang.Object)var64); + javax.swing.ActionMap var69 = var18.getActionMap(); + var0.setActionMap(var69); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var2 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == (-1)); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertNull(var21); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var22 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var23); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var25); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var33 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var37); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var40); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var43 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var53); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var62); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var65 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var66 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var67 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var69); + + } + + public void test290() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test290"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + var0.show(false); + boolean var8 = var0.isPaintingForPrint(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var15 = var9.getMouseListeners(); + int var16 = var9.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var17 = var9.getInputMethodRequests(); + var0.addKeyListener((java.awt.event.KeyListener)var9); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + float var20 = var19.getAlignmentX(); + var19.setVisible(false); + boolean var23 = var19.isDoubleBuffered(); + var19.list(); + float var25 = var19.getAlignmentY(); + boolean var26 = var9.isFocusCycleRoot((java.awt.Container)var19); + boolean var27 = var19.isEnabled(); + java.awt.Dimension var28 = var19.getMaximumSize(); + var19.setFocusCycleRoot(false); + java.awt.event.ComponentListener[] var31 = var19.getComponentListeners(); + boolean var32 = var19.isFocusCycleRoot(); + var19.firePropertyChange("PanelUI", 83.657626403857d, 10.0d); + java.awt.Cursor var37 = var19.getCursor(); + SpaceWar.SpacePanel var38 = new SpaceWar.SpacePanel(); + float var39 = var38.getAlignmentX(); + var38.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var44 = var38.getUI(); + java.awt.im.InputMethodRequests var45 = var38.getInputMethodRequests(); + SpaceWar.SpacePanel var46 = new SpaceWar.SpacePanel(); + float var47 = var46.getAlignmentX(); + var46.setVisible(false); + var46.nextFocus(); + var46.updateUI(); + var46.enableInputMethods(true); + var46.setSize((-1), 1); + SpaceWar.SpacePanel var57 = new SpaceWar.SpacePanel(); + var57.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var38.add((java.awt.Component)var46, (java.lang.Object)"SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + java.awt.ComponentOrientation var63 = var46.getComponentOrientation(); + boolean var64 = var46.isMaximumSizeSet(); + java.beans.PropertyChangeListener[] var66 = var46.getPropertyChangeListeners("SpaceWar.SpacePanel[,0,0,0x0,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + SpaceWar.SpacePanel var67 = new SpaceWar.SpacePanel(); + float var68 = var67.getAlignmentX(); + var67.setVisible(false); + SpaceWar.SpacePanel var71 = new SpaceWar.SpacePanel(); + java.awt.Color var72 = var71.getBackground(); + var67.setForeground(var72); + SpaceWar.SpacePanel var74 = new SpaceWar.SpacePanel(); + float var75 = var74.getAlignmentX(); + var74.setVisible(false); + boolean var78 = var74.isDoubleBuffered(); + java.awt.dnd.DropTarget var79 = var74.getDropTarget(); + var74.show(false); + java.awt.Rectangle var82 = var74.getVisibleRect(); + var67.repaint(var82); + SpaceWar.SpacePanel var84 = new SpaceWar.SpacePanel(); + float var85 = var84.getAlignmentX(); + var84.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var90 = var84.getMouseListeners(); + java.awt.Dimension var91 = var84.getPreferredSize(); + java.util.Locale var92 = var84.getLocale(); + var67.setLocale(var92); + java.util.Locale var94 = var67.getLocale(); + var46.setLocale(var94); + var19.setLocale(var94); + java.awt.im.InputContext var97 = var19.getInputContext(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var28); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var31); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var32 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var37); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var39 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var44); + + // Regression assertion (captures the current behavior of the code) + assertNull(var45); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var47 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var63); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var64 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var66); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var68 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var72); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var75 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var78 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var79); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var82); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var85 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var90); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var91); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var92); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var94); + + // Regression assertion (captures the current behavior of the code) + assertNull(var97); + + } + + public void test291() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test291"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + float var7 = var6.getAlignmentX(); + var6.setVisible(false); + SpaceWar.SpacePanel var10 = new SpaceWar.SpacePanel(); + java.awt.Color var11 = var10.getBackground(); + var6.setForeground(var11); + var0.setBackground(var11); + java.awt.Point var14 = var0.location(); + var0.setToolTipText("SpaceWar.SpacePanel[,0,0,0x0,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + java.awt.event.HierarchyBoundsListener[] var17 = var0.getHierarchyBoundsListeners(); + var0.revalidate(); + var0.setDoubleBuffered(false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var17); + + } + + public void test292() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test292"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + var0.setName(""); + java.awt.Graphics var3 = var0.getGraphics(); + java.awt.event.MouseMotionListener[] var4 = var0.getMouseMotionListeners(); + boolean var5 = var0.getIgnoreRepaint(); + var0.transferFocusBackward(); + boolean var7 = var0.hasFocus(); + java.awt.Component var10 = var0.findComponentAt(0, 10); + + // Regression assertion (captures the current behavior of the code) + assertNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var4); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var10); + + } + + public void test293() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test293"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + SpaceWar.SpacePanel var4 = new SpaceWar.SpacePanel(); + java.awt.Color var5 = var4.getBackground(); + var0.setForeground(var5); + SpaceWar.SpacePanel var7 = new SpaceWar.SpacePanel(); + float var8 = var7.getAlignmentX(); + var7.setVisible(false); + boolean var11 = var7.isDoubleBuffered(); + java.awt.dnd.DropTarget var12 = var7.getDropTarget(); + var7.show(false); + java.awt.Rectangle var15 = var7.getVisibleRect(); + var0.repaint(var15); + java.awt.FocusTraversalPolicy var17 = var0.getFocusTraversalPolicy(); + SpaceWar.SpacePanel var18 = new SpaceWar.SpacePanel(); + float var19 = var18.getAlignmentX(); + var18.firePropertyChange("", (-1), 1); + boolean var24 = var18.isFocusOwner(); + SpaceWar.SpacePanel var26 = new SpaceWar.SpacePanel(); + float var27 = var26.getAlignmentX(); + var26.setVisible(false); + java.awt.Dimension var30 = var26.getPreferredSize(); + java.awt.Toolkit var31 = var26.getToolkit(); + SpaceWar.SpacePanel var32 = new SpaceWar.SpacePanel(); + var32.setName(""); + int var35 = var32.getX(); + SpaceWar.SpacePanel var36 = new SpaceWar.SpacePanel(); + float var37 = var36.getAlignmentX(); + var36.setVisible(false); + var36.nextFocus(); + SpaceWar.SpacePanel var41 = new SpaceWar.SpacePanel(); + float var42 = var41.getAlignmentX(); + var41.setVisible(false); + SpaceWar.SpacePanel var45 = new SpaceWar.SpacePanel(); + java.awt.Color var46 = var45.getBackground(); + var41.setForeground(var46); + var36.setBackground(var46); + var32.setBackground(var46); + var26.setForeground(var46); + var18.putClientProperty((java.lang.Object)(byte)100, (java.lang.Object)var46); + var0.setBackground(var46); + SpaceWar.SpacePanel var53 = new SpaceWar.SpacePanel(); + float var54 = var53.getAlignmentX(); + var53.setVisible(false); + boolean var57 = var53.isDoubleBuffered(); + java.awt.dnd.DropTarget var58 = var53.getDropTarget(); + var53.show(false); + boolean var61 = var53.isPaintingForPrint(); + SpaceWar.SpacePanel var62 = new SpaceWar.SpacePanel(); + float var63 = var62.getAlignmentX(); + SpaceWar.SpacePanel var64 = new SpaceWar.SpacePanel(); + float var65 = var64.getAlignmentX(); + var64.setVisible(false); + java.awt.Dimension var68 = var64.getPreferredSize(); + boolean var69 = var64.getVerifyInputWhenFocusTarget(); + java.awt.Component var72 = var64.findComponentAt(10, 1); + var62.addKeyListener((java.awt.event.KeyListener)var64); + java.awt.Dimension var74 = var64.getMinimumSize(); + var53.setMinimumSize(var74); + java.awt.Dimension var76 = var0.getSize(var74); + boolean var77 = var0.isValid(); + var0.setOpaque(true); + java.awt.GraphicsConfiguration var80 = var0.getGraphicsConfiguration(); + var0.setName("SpaceWar.SpacePanel[,0,0,0x0,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var24 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var30); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var31); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var35 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var42 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var46); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var54 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var57 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var58); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var61 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var63 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var65 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var68); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var69 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var72); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var74); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var76); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var77 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var80); + + } + + public void test294() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test294"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.reshape((-1), 1, (-1), 10); + SpaceWar.SpacePanel var10 = new SpaceWar.SpacePanel(); + java.awt.Color var11 = var10.getBackground(); + var10.repaint(); + var10.setRequestFocusEnabled(false); + var10.reshape(100, 0, 100, 0); + java.awt.Component var20 = var0.add((java.awt.Component)var10); + var0.removeNotify(); + SpaceWar.SpacePanel var22 = new SpaceWar.SpacePanel(); + float var23 = var22.getAlignmentX(); + var22.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var28 = var22.getUI(); + java.awt.im.InputMethodRequests var29 = var22.getInputMethodRequests(); + SpaceWar.SpacePanel var30 = new SpaceWar.SpacePanel(); + float var31 = var30.getAlignmentX(); + var30.setVisible(false); + var30.nextFocus(); + var30.updateUI(); + var30.enableInputMethods(true); + var30.setSize((-1), 1); + SpaceWar.SpacePanel var41 = new SpaceWar.SpacePanel(); + var41.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var22.add((java.awt.Component)var30, (java.lang.Object)"SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + java.awt.event.KeyListener[] var47 = var22.getKeyListeners(); + var22.repaint(3, 1, 25, 0); + java.awt.Color var53 = var22.getForeground(); + var0.setForeground(var53); + java.awt.image.VolatileImage var57 = var0.createVolatileImage(3, 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var28); + + // Regression assertion (captures the current behavior of the code) + assertNull(var29); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var31 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var47); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var53); + + // Regression assertion (captures the current behavior of the code) + assertNull(var57); + + } + + public void test295() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test295"); + + + SpaceWar.PowerUp var3 = new SpaceWar.PowerUp(500, 594.7973940347722d, 475.3294093279198d); + + } + + public void test296() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test296"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + var0.show(false); + boolean var8 = var0.isPaintingForPrint(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var15 = var9.getMouseListeners(); + int var16 = var9.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var17 = var9.getInputMethodRequests(); + var0.addKeyListener((java.awt.event.KeyListener)var9); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + float var20 = var19.getAlignmentX(); + var19.setVisible(false); + boolean var23 = var19.isDoubleBuffered(); + var19.list(); + float var25 = var19.getAlignmentY(); + boolean var26 = var9.isFocusCycleRoot((java.awt.Container)var19); + boolean var27 = var19.isEnabled(); + java.awt.Dimension var28 = var19.getMaximumSize(); + var19.setFocusCycleRoot(false); + var19.setInheritsPopupMenu(false); + java.awt.Image var35 = var19.createImage((-1), 100); + SpaceWar.SpacePanel var36 = new SpaceWar.SpacePanel(); + java.awt.Color var37 = var36.getBackground(); + var36.repaint(); + java.awt.im.InputMethodRequests var39 = var36.getInputMethodRequests(); + int var40 = var36.countComponents(); + java.awt.event.ComponentListener[] var41 = var36.getComponentListeners(); + var36.transferFocusBackward(); + java.awt.LayoutManager var43 = var36.getLayout(); + var19.setLayout(var43); + boolean var45 = var19.isEnabled(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var28); + + // Regression assertion (captures the current behavior of the code) + assertNull(var35); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var37); + + // Regression assertion (captures the current behavior of the code) + assertNull(var39); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var40 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var41); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var43); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var45 == true); + + } + + public void test297() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test297"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + var0.list(); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + float var7 = var6.getAlignmentX(); + var6.setVisible(false); + boolean var10 = var6.isDoubleBuffered(); + java.awt.dnd.DropTarget var11 = var6.getDropTarget(); + var6.show(false); + java.awt.Rectangle var14 = var6.getVisibleRect(); + java.awt.Rectangle var15 = var0.getBounds(var14); + javax.swing.JToolTip var16 = var0.createToolTip(); + var0.firePropertyChange("", false, false); + var0.setFocusTraversalKeysEnabled(false); + boolean var23 = var0.isValid(); + // The following exception was thrown during execution. + // This behavior will recorded for regression testing. + try { + boolean var25 = var0.areFocusTraversalKeysSet(100); + fail("Expected exception of type java.lang.IllegalArgumentException"); + } catch (java.lang.IllegalArgumentException e) { + // Expected exception. + } + + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == false); + + } + + public void test298() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test298"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + SpaceWar.SpacePanel var4 = new SpaceWar.SpacePanel(); + java.awt.Color var5 = var4.getBackground(); + var0.setForeground(var5); + SpaceWar.SpacePanel var7 = new SpaceWar.SpacePanel(); + float var8 = var7.getAlignmentX(); + var7.setVisible(false); + boolean var11 = var7.isDoubleBuffered(); + java.awt.dnd.DropTarget var12 = var7.getDropTarget(); + var7.show(false); + java.awt.Rectangle var15 = var7.getVisibleRect(); + var0.repaint(var15); + java.awt.FocusTraversalPolicy var17 = var0.getFocusTraversalPolicy(); + var0.resetKeyboardActions(); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + float var20 = var19.getAlignmentX(); + var19.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var25 = var19.getMouseListeners(); + int var26 = var19.getDebugGraphicsOptions(); + SpaceWar.SpacePanel var27 = new SpaceWar.SpacePanel(); + float var28 = var27.getAlignmentX(); + var27.setVisible(false); + boolean var31 = var27.isDoubleBuffered(); + java.awt.dnd.DropTarget var32 = var27.getDropTarget(); + var27.show(false); + java.awt.Rectangle var35 = var27.getVisibleRect(); + var19.paintImmediately(var35); + var0.setBounds(var35); + boolean var38 = var0.getVerifyInputWhenFocusTarget(); + var0.setFocusTraversalKeysEnabled(false); + int var41 = var0.getY(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var25); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var28 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var31 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var32); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var35); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var38 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var41 == 0); + + } + + public void test299() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test299"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + boolean var2 = var0.hasFocus(); + SpaceWar.SpacePanel var3 = new SpaceWar.SpacePanel(); + float var4 = var3.getAlignmentX(); + var3.setVisible(false); + boolean var7 = var3.isDoubleBuffered(); + java.awt.dnd.DropTarget var8 = var3.getDropTarget(); + boolean var9 = var3.isFocusCycleRoot(); + var3.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", 100, 0); + SpaceWar.SpacePanel var14 = new SpaceWar.SpacePanel(); + float var15 = var14.getAlignmentX(); + var14.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var20 = var14.getUI(); + var3.add((java.awt.Component)var14, (java.lang.Object)(short)0); + java.awt.Insets var23 = var14.getInsets(); + java.awt.Insets var24 = var0.getInsets(var23); + var0.firePropertyChange("PanelUI", 296.18869876326414d, 203.2601655108183d); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var2 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var23); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var24); + + } + + public void test300() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test300"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + float var6 = var0.getAlignmentY(); + var0.repaint((-1L)); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.firePropertyChange("", (-1), 1); + java.awt.event.MouseMotionListener[] var15 = var9.getMouseMotionListeners(); + java.awt.event.ComponentListener[] var16 = var9.getComponentListeners(); + SpaceWar.SpacePanel var17 = new SpaceWar.SpacePanel(); + float var18 = var17.getAlignmentX(); + var17.setVisible(false); + var17.nextFocus(); + var17.repaint(1L); + SpaceWar.SpacePanel var24 = new SpaceWar.SpacePanel(); + float var25 = var24.getAlignmentX(); + var24.setVisible(false); + boolean var28 = var24.isDoubleBuffered(); + var24.list(); + SpaceWar.SpacePanel var30 = new SpaceWar.SpacePanel(); + float var31 = var30.getAlignmentX(); + var30.setVisible(false); + boolean var34 = var30.isDoubleBuffered(); + java.awt.dnd.DropTarget var35 = var30.getDropTarget(); + var30.show(false); + java.awt.Rectangle var38 = var30.getVisibleRect(); + java.awt.Rectangle var39 = var24.getBounds(var38); + var17.setBounds(var39); + var9.paintImmediately(var39); + var0.scrollRectToVisible(var39); + var0.setSize(10, 25); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var28 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var31 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var34 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var35); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var38); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var39); + + } + + public void test301() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test301"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + boolean var2 = var0.hasFocus(); + java.awt.Insets var3 = var0.getInsets(); + java.awt.Rectangle var4 = var0.bounds(); + java.awt.event.MouseMotionListener[] var5 = var0.getMouseMotionListeners(); + boolean var6 = var0.isMaximumSizeSet(); + java.awt.LayoutManager var7 = var0.getLayout(); + boolean var8 = var0.isLightweight(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var2 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var4); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + } + + public void test302() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test302"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.updateUI(); + var0.enableInputMethods(true); + int var8 = var0.getY(); + boolean var9 = var0.isDisplayable(); + SpaceWar.SpacePanel var10 = new SpaceWar.SpacePanel(); + float var11 = var10.getAlignmentX(); + var10.setVisible(false); + var10.setInheritsPopupMenu(false); + var10.move(10, 10); + var10.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + java.awt.Rectangle var23 = var10.bounds(); + java.awt.image.ColorModel var24 = var10.getColorModel(); + var0.setComponentZOrder((java.awt.Component)var10, 0); + java.awt.GraphicsConfiguration var27 = var10.getGraphicsConfiguration(); + SpaceWar.SpacePanel var28 = new SpaceWar.SpacePanel(); + float var29 = var28.getAlignmentX(); + var28.setVisible(false); + var28.setDoubleBuffered(true); + java.awt.Point var34 = var28.getLocation(); + java.awt.Point var35 = var10.getLocation(var34); + var10.firePropertyChange("SpaceWar.SpacePanel[,10,10,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", ' ', '4'); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var23); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertNull(var27); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var29 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var34); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var35); + + } + + public void test303() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test303"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var6 = var0.getUI(); + java.awt.im.InputMethodRequests var7 = var0.getInputMethodRequests(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + var8.nextFocus(); + var8.updateUI(); + var8.enableInputMethods(true); + var8.setSize((-1), 1); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + var19.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var0.add((java.awt.Component)var8, (java.lang.Object)"SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + java.awt.event.KeyListener[] var25 = var0.getKeyListeners(); + var0.reshape(10, 100, 3, 3); + javax.accessibility.AccessibleContext var31 = var0.getAccessibleContext(); + java.awt.Rectangle var32 = var0.getVisibleRect(); + int var33 = var0.getComponentCount(); + SpaceWar.SpacePanel var34 = new SpaceWar.SpacePanel(); + float var35 = var34.getAlignmentX(); + var34.setVisible(false); + boolean var38 = var34.isDoubleBuffered(); + java.awt.dnd.DropTarget var39 = var34.getDropTarget(); + var34.show(false); + java.awt.Rectangle var42 = var34.getVisibleRect(); + java.awt.image.BufferedImage var44 = var34.loadImg("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + java.awt.ComponentOrientation var45 = var34.getComponentOrientation(); + var0.setComponentOrientation(var45); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var25); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var31); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var32); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var33 == 1); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var35 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var38 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var39); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var42); + + // Regression assertion (captures the current behavior of the code) + assertNull(var44); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var45); + + } + + public void test304() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test304"); + + + SpaceWar.Player var0 = new SpaceWar.Player(); + var0.increasePower(25); + int var3 = var0.getScore(); + var0.setRigth(true); + var0.loseLife(); + int var7 = var0.getPower(); + int var8 = var0.getX(); + int var9 = var0.getPower(); + int var10 = var0.getY(); + int var11 = var0.getY(); + int var12 = var0.getPower(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 24); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 400); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 24); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 500); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == 500); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == 24); + + } + + public void test305() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test305"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + var0.setRequestFocusEnabled(false); + var0.reshape(100, 0, 100, 0); + var0.requestFocus(); + var0.firePropertyChange("hi!", '4', ' '); + java.awt.Point var15 = var0.getLocation(); + java.awt.Dimension var16 = var0.size(); + java.awt.Image var19 = var0.createImage((-1), (-1)); + java.awt.event.ComponentListener[] var20 = var0.getComponentListeners(); + java.awt.Component var23 = var0.findComponentAt((-1), 500); + java.awt.Toolkit var24 = var0.getToolkit(); + SpaceWar.SpacePanel var25 = new SpaceWar.SpacePanel(); + float var26 = var25.getAlignmentX(); + var25.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var31 = var25.getUI(); + java.awt.im.InputMethodRequests var32 = var25.getInputMethodRequests(); + SpaceWar.SpacePanel var33 = new SpaceWar.SpacePanel(); + float var34 = var33.getAlignmentX(); + var33.setVisible(false); + var33.nextFocus(); + var33.updateUI(); + var33.enableInputMethods(true); + var33.setSize((-1), 1); + SpaceWar.SpacePanel var44 = new SpaceWar.SpacePanel(); + var44.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var25.add((java.awt.Component)var33, (java.lang.Object)"SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + java.awt.ComponentOrientation var50 = var33.getComponentOrientation(); + java.beans.VetoableChangeListener[] var51 = var33.getVetoableChangeListeners(); + int var52 = var33.countComponents(); + boolean var53 = var33.isFocusOwner(); + var33.enable(false); + var33.nextFocus(); + java.awt.Component var57 = var0.add((java.awt.Component)var33); + var0.firePropertyChange("SpaceWar.SpacePanel[,-1,100,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=265,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", 500, 1); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertNull(var23); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var31); + + // Regression assertion (captures the current behavior of the code) + assertNull(var32); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var34 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var50); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var51); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var52 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var53 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var57); + + } + + public void test306() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test306"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + java.awt.Dimension var4 = var0.getPreferredSize(); + boolean var5 = var0.getVerifyInputWhenFocusTarget(); + java.awt.Component var8 = var0.findComponentAt(10, 1); + boolean var9 = var0.requestDefaultFocus(); + var0.setVerifyInputWhenFocusTarget(true); + var0.transferFocusDownCycle(); + var0.transferFocusUpCycle(); + javax.swing.border.Border var14 = var0.getBorder(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var4); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var14); + + } + + public void test307() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test307"); + + + SpaceWar.Player var0 = new SpaceWar.Player(); + int var1 = var0.getR(); + var0.setRigth(false); + int var4 = var0.getY(); + int var5 = var0.getPowerLevel(); + int var6 = var0.getPower(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 25); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 500); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == 0); + + } + + public void test308() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test308"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var1 = new SpaceWar.SpacePanel(); + java.awt.Color var2 = var1.getBackground(); + SpaceWar.SpacePanel var3 = new SpaceWar.SpacePanel(); + float var4 = var3.getAlignmentX(); + var3.setVisible(false); + var3.nextFocus(); + var3.updateUI(); + var3.enableInputMethods(true); + var0.add((java.awt.Component)var1, (java.lang.Object)true); + boolean var13 = var1.areFocusTraversalKeysSet(0); + SpaceWar.SpacePanel var14 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var15 = new SpaceWar.SpacePanel(); + java.awt.Color var16 = var15.getBackground(); + SpaceWar.SpacePanel var17 = new SpaceWar.SpacePanel(); + float var18 = var17.getAlignmentX(); + var17.setVisible(false); + var17.nextFocus(); + var17.updateUI(); + var17.enableInputMethods(true); + var14.add((java.awt.Component)var15, (java.lang.Object)true); + boolean var26 = var14.isMinimumSizeSet(); + java.awt.event.HierarchyListener[] var27 = var14.getHierarchyListeners(); + SpaceWar.SpacePanel var28 = new SpaceWar.SpacePanel(); + float var29 = var28.getAlignmentX(); + var28.setVisible(false); + SpaceWar.SpacePanel var32 = new SpaceWar.SpacePanel(); + java.awt.Color var33 = var32.getBackground(); + var28.setForeground(var33); + SpaceWar.SpacePanel var35 = new SpaceWar.SpacePanel(); + float var36 = var35.getAlignmentX(); + var35.setVisible(false); + boolean var39 = var35.isDoubleBuffered(); + java.awt.dnd.DropTarget var40 = var35.getDropTarget(); + var35.show(false); + java.awt.Rectangle var43 = var35.getVisibleRect(); + var28.repaint(var43); + java.awt.FocusTraversalPolicy var45 = var28.getFocusTraversalPolicy(); + java.awt.im.InputMethodRequests var46 = var28.getInputMethodRequests(); + var28.layout(); + boolean var48 = var28.isFocusTraversalPolicyProvider(); + java.lang.Object var49 = var14.getClientProperty((java.lang.Object)var48); + boolean var50 = var14.isFocusTraversable(); + var1.remove((java.awt.Component)var14); + SpaceWar.SpacePanel var52 = new SpaceWar.SpacePanel(); + float var53 = var52.getAlignmentX(); + var52.setVisible(false); + var52.nextFocus(); + var52.updateUI(); + var52.enableInputMethods(true); + SpaceWar.SpacePanel var60 = new SpaceWar.SpacePanel(); + float var61 = var60.getAlignmentX(); + boolean var62 = var60.hasFocus(); + java.awt.Insets var63 = var60.getInsets(); + java.awt.Insets var64 = var52.getInsets(var63); + boolean var65 = var52.isManagingFocus(); + java.awt.Image var68 = var52.createImage(1, 10); + SpaceWar.SpacePanel var69 = new SpaceWar.SpacePanel(); + float var70 = var69.getAlignmentX(); + var69.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var75 = new SpaceWar.SpacePanel(); + float var76 = var75.getAlignmentX(); + var75.setVisible(false); + java.awt.Dimension var79 = var75.getPreferredSize(); + var69.setMaximumSize(var79); + boolean var81 = var69.getVerifyInputWhenFocusTarget(); + int var82 = var69.getX(); + SpaceWar.SpacePanel var83 = new SpaceWar.SpacePanel(); + float var84 = var83.getAlignmentX(); + var83.setVisible(false); + var83.setEnabled(false); + var52.add((java.awt.Component)var69, (java.lang.Object)false); + int var90 = var14.getComponentZOrder((java.awt.Component)var69); + var14.show(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var2); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var27); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var29 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var33); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var36 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var39 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var40); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var43); + + // Regression assertion (captures the current behavior of the code) + assertNull(var45); + + // Regression assertion (captures the current behavior of the code) + assertNull(var46); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var48 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var49); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var50 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var53 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var61 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var62 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var63); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var64); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var65 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var68); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var70 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var76 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var79); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var81 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var82 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var84 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var90 == (-1)); + + } + + public void test309() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test309"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + float var7 = var6.getAlignmentX(); + var6.setVisible(false); + java.awt.Dimension var10 = var6.getPreferredSize(); + var0.setMaximumSize(var10); + boolean var12 = var0.getVerifyInputWhenFocusTarget(); + boolean var13 = var0.isFontSet(); + boolean var14 = var0.getIgnoreRepaint(); + boolean var15 = var0.isPaintingForPrint(); + int var16 = var0.getDebugGraphicsOptions(); + java.awt.event.ComponentListener[] var17 = var0.getComponentListeners(); + var0.transferFocusUpCycle(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var17); + + } + + public void test310() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test310"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + var0.show(false); + boolean var8 = var0.isPaintingForPrint(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var15 = var9.getMouseListeners(); + int var16 = var9.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var17 = var9.getInputMethodRequests(); + var0.addKeyListener((java.awt.event.KeyListener)var9); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + float var20 = var19.getAlignmentX(); + var19.setVisible(false); + boolean var23 = var19.isDoubleBuffered(); + var19.list(); + float var25 = var19.getAlignmentY(); + boolean var26 = var9.isFocusCycleRoot((java.awt.Container)var19); + boolean var27 = var19.isEnabled(); + java.awt.Dimension var28 = var19.getMaximumSize(); + var19.setFocusCycleRoot(false); + SpaceWar.SpacePanel var32 = new SpaceWar.SpacePanel(); + java.awt.Color var33 = var32.getBackground(); + var32.repaint(); + java.awt.im.InputMethodRequests var35 = var32.getInputMethodRequests(); + int var36 = var32.countComponents(); + java.awt.event.ComponentListener[] var37 = var32.getComponentListeners(); + var32.removeNotify(); + javax.swing.InputMap var39 = var32.getInputMap(); + SpaceWar.SpacePanel var40 = new SpaceWar.SpacePanel(); + float var41 = var40.getAlignmentX(); + var40.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var46 = new SpaceWar.SpacePanel(); + float var47 = var46.getAlignmentX(); + var46.setVisible(false); + SpaceWar.SpacePanel var50 = new SpaceWar.SpacePanel(); + java.awt.Color var51 = var50.getBackground(); + var46.setForeground(var51); + var40.setBackground(var51); + java.awt.Point var54 = var40.location(); + var32.setLocation(var54); + SpaceWar.SpacePanel var56 = new SpaceWar.SpacePanel(); + float var57 = var56.getAlignmentX(); + var56.setVisible(false); + var56.nextFocus(); + var56.reshape((-1), 1, (-1), 10); + SpaceWar.SpacePanel var66 = new SpaceWar.SpacePanel(); + java.awt.Color var67 = var66.getBackground(); + var66.repaint(); + var66.setRequestFocusEnabled(false); + var66.reshape(100, 0, 100, 0); + java.awt.Component var76 = var56.add((java.awt.Component)var66); + var56.enable(); + SpaceWar.SpacePanel var78 = new SpaceWar.SpacePanel(); + float var79 = var78.getAlignmentX(); + boolean var80 = var78.hasFocus(); + boolean var81 = var78.isPreferredSizeSet(); + var32.putClientProperty((java.lang.Object)var56, (java.lang.Object)var78); + java.awt.Component var83 = var19.add("PanelUI", (java.awt.Component)var78); + var19.setFocusTraversalPolicyProvider(false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var28); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var33); + + // Regression assertion (captures the current behavior of the code) + assertNull(var35); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var36 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var37); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var39); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var41 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var47 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var51); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var54); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var57 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var67); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var76); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var79 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var80 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var81 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var83); + + } + + public void test311() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test311"); + + + SpaceWar.Text var4 = new SpaceWar.Text(383.0566534864913d, 365.5281187817767d, 1L, ""); + boolean var5 = var4.update(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == false); + + } + + public void test312() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test312"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var6 = var0.getMouseListeners(); + java.awt.Dimension var7 = var0.getPreferredSize(); + java.util.Locale var8 = var0.getLocale(); + var0.setFocusable(true); + var0.setSize(3, 10); + var0.invalidate(); + javax.swing.plaf.PanelUI var15 = var0.getUI(); + var0.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", 1.0f, 0.5f); + int var20 = var0.getComponentCount(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == 0); + + } + + public void test313() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test313"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.setInheritsPopupMenu(false); + var0.setFocusTraversalPolicyProvider(true); + boolean var10 = var0.inside(25, 3); + SpaceWar.SpacePanel var11 = new SpaceWar.SpacePanel(); + float var12 = var11.getAlignmentX(); + var11.setVisible(false); + boolean var15 = var11.isDoubleBuffered(); + java.awt.dnd.DropTarget var16 = var11.getDropTarget(); + var11.show(false); + boolean var19 = var11.isPaintingForPrint(); + SpaceWar.SpacePanel var20 = new SpaceWar.SpacePanel(); + float var21 = var20.getAlignmentX(); + SpaceWar.SpacePanel var22 = new SpaceWar.SpacePanel(); + float var23 = var22.getAlignmentX(); + var22.setVisible(false); + java.awt.Dimension var26 = var22.getPreferredSize(); + boolean var27 = var22.getVerifyInputWhenFocusTarget(); + java.awt.Component var30 = var22.findComponentAt(10, 1); + var20.addKeyListener((java.awt.event.KeyListener)var22); + java.awt.Dimension var32 = var22.getMinimumSize(); + var11.setMinimumSize(var32); + var0.setPreferredSize(var32); + java.awt.Insets var35 = var0.insets(); + boolean var36 = var0.isFocusTraversalPolicySet(); + SpaceWar.SpacePanel var37 = new SpaceWar.SpacePanel(); + float var38 = var37.getAlignmentX(); + boolean var39 = var37.hasFocus(); + boolean var40 = var37.isPreferredSizeSet(); + SpaceWar.SpacePanel var41 = new SpaceWar.SpacePanel(); + java.awt.Color var42 = var41.getBackground(); + var41.repaint(); + var41.setRequestFocusEnabled(false); + int var46 = var37.getComponentZOrder((java.awt.Component)var41); + boolean var47 = var37.requestDefaultFocus(); + var37.resetKeyboardActions(); + boolean var49 = var0.isFocusCycleRoot((java.awt.Container)var37); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var30); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var32); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var35); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var36 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var38 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var39 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var40 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var42); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var46 == (-1)); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var47 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var49 == false); + + } + + public void test314() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test314"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.reshape((-1), 1, (-1), 10); + var0.disable(); + java.awt.Component var13 = var0.findComponentAt(0, (-1)); + SpaceWar.SpacePanel var14 = new SpaceWar.SpacePanel(); + var14.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + javax.swing.plaf.PanelUI var19 = var14.getUI(); + SpaceWar.SpacePanel var20 = new SpaceWar.SpacePanel(); + float var21 = var20.getAlignmentX(); + var20.setVisible(false); + var20.nextFocus(); + var20.repaint(1L); + SpaceWar.SpacePanel var27 = new SpaceWar.SpacePanel(); + float var28 = var27.getAlignmentX(); + var27.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var33 = new SpaceWar.SpacePanel(); + float var34 = var33.getAlignmentX(); + var33.setVisible(false); + java.awt.Dimension var37 = var33.getPreferredSize(); + var27.setMaximumSize(var37); + var20.setPreferredSize(var37); + var14.setMaximumSize(var37); + var0.setSize(var37); + java.awt.Container var42 = var0.getParent(); + SpaceWar.SpacePanel var43 = new SpaceWar.SpacePanel(); + float var44 = var43.getAlignmentX(); + var43.setVisible(false); + var43.nextFocus(); + var43.reshape((-1), 1, (-1), 10); + java.util.Set var54 = var43.getFocusTraversalKeys(3); + java.awt.Point var55 = var43.getLocation(); + boolean var56 = var0.contains(var55); + boolean var57 = var0.isForegroundSet(); + SpaceWar.SpacePanel var58 = new SpaceWar.SpacePanel(); + java.awt.Color var59 = var58.getBackground(); + var58.repaint(); + java.awt.im.InputMethodRequests var61 = var58.getInputMethodRequests(); + java.awt.GraphicsConfiguration var62 = var58.getGraphicsConfiguration(); + boolean var64 = var58.requestFocus(false); + javax.swing.JPopupMenu var65 = var58.getComponentPopupMenu(); + java.awt.Point var66 = var58.location(); + var0.setLocation(var66); + boolean var68 = var0.isShowing(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var28 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var34 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var37); + + // Regression assertion (captures the current behavior of the code) + assertNull(var42); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var44 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var54); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var55); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var56 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var57 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var59); + + // Regression assertion (captures the current behavior of the code) + assertNull(var61); + + // Regression assertion (captures the current behavior of the code) + assertNull(var62); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var64 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var65); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var66); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var68 == false); + + } + + public void test315() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test315"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + var0.setRequestFocusEnabled(false); + var0.setIgnoreRepaint(false); + java.lang.String var7 = var0.toString(); + boolean var9 = var0.requestFocus(false); + var0.setDebugGraphicsOptions(25); + SpaceWar.SpacePanel var12 = new SpaceWar.SpacePanel(); + float var13 = var12.getAlignmentX(); + var12.setVisible(false); + boolean var16 = var12.isDoubleBuffered(); + var12.enable(false); + boolean var19 = var12.getFocusTraversalKeysEnabled(); + SpaceWar.SpacePanel var20 = new SpaceWar.SpacePanel(); + float var21 = var20.getAlignmentX(); + var20.setVisible(false); + java.awt.Dimension var24 = var20.getPreferredSize(); + java.awt.Toolkit var25 = var20.getToolkit(); + boolean var26 = var20.isFocusable(); + javax.swing.KeyStroke[] var27 = var20.getRegisteredKeyStrokes(); + SpaceWar.SpacePanel var28 = new SpaceWar.SpacePanel(); + float var29 = var28.getAlignmentX(); + SpaceWar.SpacePanel var30 = new SpaceWar.SpacePanel(); + float var31 = var30.getAlignmentX(); + var30.setVisible(false); + java.awt.Dimension var34 = var30.getPreferredSize(); + boolean var35 = var30.getVerifyInputWhenFocusTarget(); + java.awt.Component var38 = var30.findComponentAt(10, 1); + var28.addKeyListener((java.awt.event.KeyListener)var30); + var30.repaint(100, (-1), (-1), 1); + boolean var45 = var20.isAncestorOf((java.awt.Component)var30); + var12.addKeyListener((java.awt.event.KeyListener)var30); + var30.hide(); + java.awt.Point var48 = var30.getLocation(); + boolean var49 = var0.isAncestorOf((java.awt.Component)var30); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var7 + "' != '" + "SpaceWar.SpacePanel[,0,0,0var7,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"+ "'", var7.equals("SpaceWar.SpacePanel[,0,0,0var7,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]")); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var25); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var27); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var29 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var31 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var34); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var35 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var38); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var45 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var48); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var49 == false); + + } + + public void test316() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test316"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var6 = var0.getUI(); + java.awt.im.InputMethodRequests var7 = var0.getInputMethodRequests(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + var8.nextFocus(); + var8.updateUI(); + var8.enableInputMethods(true); + var8.setSize((-1), 1); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + var19.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var0.add((java.awt.Component)var8, (java.lang.Object)"SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + SpaceWar.SpacePanel var25 = new SpaceWar.SpacePanel(); + float var26 = var25.getAlignmentX(); + var25.setVisible(false); + var25.setInheritsPopupMenu(false); + boolean var31 = var25.isDoubleBuffered(); + boolean var32 = var25.isMinimumSizeSet(); + SpaceWar.SpacePanel var33 = new SpaceWar.SpacePanel(); + float var34 = var33.getAlignmentX(); + var33.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var39 = new SpaceWar.SpacePanel(); + float var40 = var39.getAlignmentX(); + var39.setVisible(false); + java.awt.Dimension var43 = var39.getPreferredSize(); + var33.setMaximumSize(var43); + boolean var45 = var33.getVerifyInputWhenFocusTarget(); + javax.accessibility.AccessibleContext var46 = var33.getAccessibleContext(); + boolean var47 = var33.isDoubleBuffered(); + java.awt.Rectangle var48 = var33.getVisibleRect(); + var25.setBounds(var48); + java.awt.Rectangle var50 = var0.getBounds(var48); + SpaceWar.SpacePanel var51 = new SpaceWar.SpacePanel(); + float var52 = var51.getAlignmentX(); + var51.setVisible(false); + boolean var55 = var51.isDoubleBuffered(); + var51.list(); + float var57 = var51.getAlignmentY(); + java.awt.Insets var58 = var51.getInsets(); + SpaceWar.SpacePanel var59 = new SpaceWar.SpacePanel(); + float var60 = var59.getAlignmentX(); + var59.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var65 = new SpaceWar.SpacePanel(); + float var66 = var65.getAlignmentX(); + var65.setVisible(false); + java.awt.Dimension var69 = var65.getPreferredSize(); + var59.setMaximumSize(var69); + java.awt.Dimension var71 = var51.getSize(var69); + var0.setPreferredSize(var69); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var31 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var32 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var34 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var40 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var43); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var45 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var46); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var47 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var48); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var50); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var52 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var55 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var57 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var58); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var60 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var66 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var69); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var71); + + } + + public void test317() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test317"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + var0.setName(""); + java.awt.Graphics var3 = var0.getGraphics(); + SpaceWar.SpacePanel var4 = new SpaceWar.SpacePanel(); + float var5 = var4.getAlignmentX(); + var4.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var10 = new SpaceWar.SpacePanel(); + float var11 = var10.getAlignmentX(); + var10.setVisible(false); + java.awt.Dimension var14 = var10.getPreferredSize(); + var4.setMaximumSize(var14); + boolean var16 = var4.getVerifyInputWhenFocusTarget(); + int var17 = var4.getX(); + SpaceWar.SpacePanel var18 = new SpaceWar.SpacePanel(); + float var19 = var18.getAlignmentX(); + SpaceWar.SpacePanel var20 = new SpaceWar.SpacePanel(); + float var21 = var20.getAlignmentX(); + var20.setVisible(false); + java.awt.Dimension var24 = var20.getPreferredSize(); + boolean var25 = var20.getVerifyInputWhenFocusTarget(); + java.awt.Component var28 = var20.findComponentAt(10, 1); + var18.addKeyListener((java.awt.event.KeyListener)var20); + var20.repaint(100, (-1), (-1), 1); + SpaceWar.SpacePanel var35 = new SpaceWar.SpacePanel(); + java.awt.Color var36 = var35.getBackground(); + var35.repaint(); + java.awt.im.InputMethodRequests var38 = var35.getInputMethodRequests(); + java.awt.GraphicsConfiguration var39 = var35.getGraphicsConfiguration(); + var20.remove((java.awt.Component)var35); + java.awt.Font var41 = var35.getFont(); + var4.setFont(var41); + var0.setFont(var41); + boolean var44 = var0.isLightweight(); + boolean var45 = var0.isPaintingForPrint(); + + // Regression assertion (captures the current behavior of the code) + assertNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var28); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var36); + + // Regression assertion (captures the current behavior of the code) + assertNull(var38); + + // Regression assertion (captures the current behavior of the code) + assertNull(var39); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var41); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var44 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var45 == false); + + } + + public void test318() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test318"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + float var7 = var6.getAlignmentX(); + var6.setVisible(false); + SpaceWar.SpacePanel var10 = new SpaceWar.SpacePanel(); + java.awt.Color var11 = var10.getBackground(); + var6.setForeground(var11); + var0.setBackground(var11); + java.awt.Point var14 = var0.location(); + var0.setToolTipText("SpaceWar.SpacePanel[,0,0,0x0,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + java.awt.event.HierarchyBoundsListener[] var17 = var0.getHierarchyBoundsListeners(); + var0.revalidate(); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + java.awt.Color var20 = var19.getBackground(); + var19.repaint(); + java.awt.im.InputMethodRequests var22 = var19.getInputMethodRequests(); + int var23 = var19.countComponents(); + java.awt.event.ComponentListener[] var24 = var19.getComponentListeners(); + var19.removeNotify(); + javax.swing.InputMap var26 = var19.getInputMap(); + int var27 = var19.getDebugGraphicsOptions(); + java.awt.Graphics var28 = var19.getGraphics(); + var19.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", (short)(-1), (short)100); + boolean var33 = var19.isEnabled(); + SpaceWar.SpacePanel var34 = new SpaceWar.SpacePanel(); + var34.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + javax.swing.plaf.PanelUI var39 = var34.getUI(); + boolean var40 = var34.isDisplayable(); + SpaceWar.SpacePanel var41 = new SpaceWar.SpacePanel(); + float var42 = var41.getAlignmentX(); + var41.removeNotify(); + SpaceWar.SpacePanel var44 = new SpaceWar.SpacePanel(); + float var45 = var44.getAlignmentX(); + var44.setVisible(false); + boolean var48 = var44.isDoubleBuffered(); + var44.list(); + float var50 = var44.getAlignmentY(); + java.awt.Insets var51 = var44.getInsets(); + java.awt.Insets var52 = var41.getInsets(var51); + java.awt.Insets var53 = var34.getInsets(var52); + java.awt.Insets var54 = var19.getInsets(var53); + java.awt.Insets var55 = var0.getInsets(var54); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var28); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var33 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var39); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var40 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var42 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var45 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var48 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var50 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var51); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var52); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var53); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var54); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var55); + + } + + public void test319() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test319"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + SpaceWar.SpacePanel var2 = new SpaceWar.SpacePanel(); + float var3 = var2.getAlignmentX(); + var2.setVisible(false); + java.awt.Dimension var6 = var2.getPreferredSize(); + boolean var7 = var2.getVerifyInputWhenFocusTarget(); + java.awt.Component var10 = var2.findComponentAt(10, 1); + var0.addKeyListener((java.awt.event.KeyListener)var2); + SpaceWar.SpacePanel var12 = new SpaceWar.SpacePanel(); + float var13 = var12.getAlignmentX(); + SpaceWar.SpacePanel var14 = new SpaceWar.SpacePanel(); + float var15 = var14.getAlignmentX(); + var14.setVisible(false); + java.awt.Dimension var18 = var14.getPreferredSize(); + boolean var19 = var14.getVerifyInputWhenFocusTarget(); + java.awt.Component var22 = var14.findComponentAt(10, 1); + var12.addKeyListener((java.awt.event.KeyListener)var14); + var14.repaint(100, (-1), (-1), 1); + java.awt.image.ColorModel var29 = var14.getColorModel(); + SpaceWar.SpacePanel var30 = new SpaceWar.SpacePanel(); + float var31 = var30.getAlignmentX(); + var30.setVisible(false); + boolean var34 = var30.isDoubleBuffered(); + var30.list(); + SpaceWar.SpacePanel var36 = new SpaceWar.SpacePanel(); + float var37 = var36.getAlignmentX(); + var36.setVisible(false); + boolean var40 = var36.isDoubleBuffered(); + java.awt.dnd.DropTarget var41 = var36.getDropTarget(); + var36.show(false); + java.awt.Rectangle var44 = var36.getVisibleRect(); + java.awt.image.BufferedImage var46 = var36.loadImg("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + boolean var47 = var30.isAncestorOf((java.awt.Component)var36); + javax.swing.InputVerifier var48 = var36.getInputVerifier(); + var2.putClientProperty((java.lang.Object)var14, (java.lang.Object)var36); + boolean var50 = var14.isFocusTraversable(); + var14.revalidate(); + SpaceWar.SpacePanel var52 = new SpaceWar.SpacePanel(); + float var53 = var52.getAlignmentX(); + var52.setVisible(false); + var52.setInheritsPopupMenu(false); + boolean var58 = var52.isDoubleBuffered(); + SpaceWar.SpacePanel var59 = new SpaceWar.SpacePanel(); + float var60 = var59.getAlignmentX(); + var59.setVisible(false); + var59.nextFocus(); + var59.reshape((-1), 1, (-1), 10); + var59.disable(); + java.awt.LayoutManager var70 = var59.getLayout(); + var52.setLayout(var70); + java.awt.event.MouseMotionListener[] var72 = var52.getMouseMotionListeners(); + javax.swing.event.AncestorListener[] var73 = var52.getAncestorListeners(); + boolean var74 = var14.isFocusCycleRoot((java.awt.Container)var52); + javax.swing.TransferHandler var75 = var14.getTransferHandler(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var29); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var31 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var34 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var40 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var41); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var44); + + // Regression assertion (captures the current behavior of the code) + assertNull(var46); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var47 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var48); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var50 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var53 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var58 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var60 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var70); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var72); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var73); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var74 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var75); + + } + + public void test320() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test320"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + var0.show(false); + java.awt.Rectangle var8 = var0.getVisibleRect(); + java.awt.Toolkit var9 = var0.getToolkit(); + java.awt.event.MouseMotionListener[] var10 = var0.getMouseMotionListeners(); + SpaceWar.SpacePanel var11 = new SpaceWar.SpacePanel(); + float var12 = var11.getAlignmentX(); + var11.setVisible(false); + boolean var15 = var11.isDoubleBuffered(); + java.awt.dnd.DropTarget var16 = var11.getDropTarget(); + var11.show(false); + boolean var19 = var11.isPaintingForPrint(); + SpaceWar.SpacePanel var20 = new SpaceWar.SpacePanel(); + float var21 = var20.getAlignmentX(); + var20.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var26 = var20.getMouseListeners(); + int var27 = var20.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var28 = var20.getInputMethodRequests(); + var11.addKeyListener((java.awt.event.KeyListener)var20); + SpaceWar.SpacePanel var30 = new SpaceWar.SpacePanel(); + float var31 = var30.getAlignmentX(); + var30.setVisible(false); + boolean var34 = var30.isDoubleBuffered(); + var30.list(); + float var36 = var30.getAlignmentY(); + boolean var37 = var20.isFocusCycleRoot((java.awt.Container)var30); + javax.swing.JPopupMenu var38 = var30.getComponentPopupMenu(); + var30.move((-1), 100); + var30.validate(); + java.awt.Rectangle var43 = var30.getVisibleRect(); + var0.paintImmediately(var43); + boolean var45 = var0.isForegroundSet(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var9); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var28); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var31 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var34 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var36 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var38); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var43); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var45 == true); + + } + + public void test321() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test321"); + + + SpaceWar.Player var0 = new SpaceWar.Player(); + int var1 = var0.getPower(); + var0.setLeft(true); + var0.increasePower(0); + int var6 = var0.getR(); + var0.setDown(true); + var0.loseLife(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == 25); + + } + + public void test322() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test322"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + var0.list(); + float var6 = var0.getAlignmentY(); + java.awt.event.ComponentListener[] var7 = var0.getComponentListeners(); + java.awt.Component var8 = var0.getNextFocusableComponent(); + boolean var9 = var0.isManagingFocus(); + javax.swing.border.Border var10 = var0.getBorder(); + java.lang.Object var11 = var0.getTreeLock(); + var0.show(); + var0.setFocusTraversalKeysEnabled(true); + var0.list(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + } + + public void test323() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test323"); + + + SpaceWar.Player var0 = new SpaceWar.Player(); + boolean var1 = var0.isRecovering(); + int var2 = var0.getRequiredPower(); + var0.setRigth(true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var2 == 1); + + } + + public void test324() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test324"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + var0.setRequestFocusEnabled(false); + var0.reshape(100, 0, 100, 0); + var0.requestFocus(); + var0.firePropertyChange("hi!", '4', ' '); + java.awt.Point var15 = var0.getLocation(); + java.awt.Dimension var16 = var0.size(); + java.awt.Image var19 = var0.createImage((-1), (-1)); + java.awt.event.ComponentListener[] var20 = var0.getComponentListeners(); + SpaceWar.SpacePanel var21 = new SpaceWar.SpacePanel(); + var21.setName(""); + java.awt.ComponentOrientation var24 = var21.getComponentOrientation(); + var21.firePropertyChange("PanelUI", 1.0f, 0.5f); + int var29 = var0.getComponentZOrder((java.awt.Component)var21); + boolean var31 = var0.areFocusTraversalKeysSet(0); + java.awt.LayoutManager var32 = var0.getLayout(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var29 == (-1)); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var31 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var32); + + } + + public void test325() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test325"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + java.awt.im.InputMethodRequests var3 = var0.getInputMethodRequests(); + int var4 = var0.countComponents(); + java.awt.event.ComponentListener[] var5 = var0.getComponentListeners(); + var0.transferFocusBackward(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + boolean var12 = var8.isDoubleBuffered(); + var8.enable(false); + SpaceWar.SpacePanel var15 = new SpaceWar.SpacePanel(); + float var16 = var15.getAlignmentX(); + boolean var17 = var15.hasFocus(); + java.awt.Insets var18 = var15.getInsets(); + java.awt.Rectangle var19 = var15.bounds(); + var8.repaint(var19); + java.awt.Component var21 = var0.add("", (java.awt.Component)var8); + boolean var22 = var8.getInheritsPopupMenu(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var21); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var22 == false); + + } + + public void test326() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test326"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + float var7 = var6.getAlignmentX(); + var6.setVisible(false); + SpaceWar.SpacePanel var10 = new SpaceWar.SpacePanel(); + java.awt.Color var11 = var10.getBackground(); + var6.setForeground(var11); + var0.setBackground(var11); + java.awt.Point var14 = var0.location(); + java.awt.Image var17 = var0.createImage((-1), 10); + var0.setInheritsPopupMenu(true); + javax.swing.border.Border var20 = var0.getBorder(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertNull(var20); + + } + + public void test327() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test327"); + + + SpaceWar.Enemy var2 = new SpaceWar.Enemy(24, 24); + + } + + public void test328() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test328"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var6 = var0.getUI(); + java.awt.im.InputMethodRequests var7 = var0.getInputMethodRequests(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + var8.nextFocus(); + var8.updateUI(); + var8.enableInputMethods(true); + var8.setSize((-1), 1); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + var19.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var0.add((java.awt.Component)var8, (java.lang.Object)"SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + SpaceWar.SpacePanel var25 = new SpaceWar.SpacePanel(); + float var26 = var25.getAlignmentX(); + var25.setVisible(false); + var25.setInheritsPopupMenu(false); + boolean var31 = var25.isDoubleBuffered(); + boolean var32 = var25.isMinimumSizeSet(); + SpaceWar.SpacePanel var33 = new SpaceWar.SpacePanel(); + float var34 = var33.getAlignmentX(); + var33.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var39 = new SpaceWar.SpacePanel(); + float var40 = var39.getAlignmentX(); + var39.setVisible(false); + java.awt.Dimension var43 = var39.getPreferredSize(); + var33.setMaximumSize(var43); + boolean var45 = var33.getVerifyInputWhenFocusTarget(); + javax.accessibility.AccessibleContext var46 = var33.getAccessibleContext(); + boolean var47 = var33.isDoubleBuffered(); + java.awt.Rectangle var48 = var33.getVisibleRect(); + var25.setBounds(var48); + java.awt.Rectangle var50 = var0.getBounds(var48); + SpaceWar.SpacePanel var51 = new SpaceWar.SpacePanel(); + float var52 = var51.getAlignmentX(); + var51.setVisible(false); + boolean var55 = var51.isDoubleBuffered(); + java.awt.dnd.DropTarget var56 = var51.getDropTarget(); + var51.show(false); + boolean var59 = var51.isPaintingForPrint(); + SpaceWar.SpacePanel var60 = new SpaceWar.SpacePanel(); + float var61 = var60.getAlignmentX(); + var60.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var66 = var60.getMouseListeners(); + int var67 = var60.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var68 = var60.getInputMethodRequests(); + var51.addKeyListener((java.awt.event.KeyListener)var60); + SpaceWar.SpacePanel var70 = new SpaceWar.SpacePanel(); + float var71 = var70.getAlignmentX(); + var70.setVisible(false); + boolean var74 = var70.isDoubleBuffered(); + var70.list(); + float var76 = var70.getAlignmentY(); + boolean var77 = var60.isFocusCycleRoot((java.awt.Container)var70); + SpaceWar.SpacePanel var79 = new SpaceWar.SpacePanel(); + float var80 = var79.getAlignmentX(); + var79.setVisible(false); + var79.nextFocus(); + var79.updateUI(); + java.awt.Component var85 = var60.add("", (java.awt.Component)var79); + java.awt.ComponentOrientation var86 = var79.getComponentOrientation(); + var0.applyComponentOrientation(var86); + javax.swing.JRootPane var88 = var0.getRootPane(); + javax.swing.JToolTip var89 = var0.createToolTip(); + var89.setName("SpaceWar.SpacePanel[,-1,1,-1x10,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + java.awt.event.MouseListener[] var92 = var89.getMouseListeners(); + boolean var93 = var89.requestDefaultFocus(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var31 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var32 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var34 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var40 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var43); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var45 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var46); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var47 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var48); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var50); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var52 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var55 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var56); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var59 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var61 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var66); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var67 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var68); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var71 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var74 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var76 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var77 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var80 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var85); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var86); + + // Regression assertion (captures the current behavior of the code) + assertNull(var88); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var89); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var92); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var93 == false); + + } + + public void test329() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test329"); + + + SpaceWar.Enemy var2 = new SpaceWar.Enemy(0, 100); + int var3 = var2.getR(); + int var4 = var2.getR(); + int var5 = var2.getR(); + var2.explode(); + var2.update(); + int var8 = var2.getRank(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 100); + + } + + public void test330() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test330"); + + + SpaceWar.Player var0 = new SpaceWar.Player(); + int var1 = var0.getPower(); + var0.setLeft(true); + var0.increasePower(0); + int var6 = var0.getR(); + int var7 = var0.getLives(); + int var8 = var0.getPowerLevel(); + var0.setDown(false); + var0.setLeft(false); + int var13 = var0.getPower(); + int var14 = var0.getPowerLevel(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == 25); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 3); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == 0); + + } + + public void test331() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test331"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + var0.setRequestFocusEnabled(false); + java.lang.String var5 = var0.getUIClassID(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var5 + "' != '" + "PanelUI"+ "'", var5.equals("PanelUI")); + + } + + public void test332() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test332"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + boolean var2 = var0.hasFocus(); + boolean var3 = var0.isPreferredSizeSet(); + var0.firePropertyChange("", (short)1, (short)0); + boolean var8 = var0.isMaximumSizeSet(); + var0.list(); + boolean var10 = var0.requestFocusInWindow(); + SpaceWar.SpacePanel var11 = new SpaceWar.SpacePanel(); + java.awt.Color var12 = var11.getBackground(); + var11.repaint(); + java.awt.im.InputMethodRequests var14 = var11.getInputMethodRequests(); + int var15 = var11.countComponents(); + java.awt.event.ComponentListener[] var16 = var11.getComponentListeners(); + var11.transferFocusBackward(); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + float var20 = var19.getAlignmentX(); + var19.setVisible(false); + boolean var23 = var19.isDoubleBuffered(); + var19.enable(false); + SpaceWar.SpacePanel var26 = new SpaceWar.SpacePanel(); + float var27 = var26.getAlignmentX(); + boolean var28 = var26.hasFocus(); + java.awt.Insets var29 = var26.getInsets(); + java.awt.Rectangle var30 = var26.bounds(); + var19.repaint(var30); + java.awt.Component var32 = var11.add("", (java.awt.Component)var19); + SpaceWar.SpacePanel var33 = new SpaceWar.SpacePanel(); + float var34 = var33.getAlignmentX(); + var33.setVisible(false); + var33.nextFocus(); + var33.reshape((-1), 1, (-1), 10); + java.util.Set var44 = var33.getFocusTraversalKeys(3); + java.awt.Point var45 = var33.getLocation(); + var32.setLocation(var45); + boolean var47 = var0.contains(var45); + java.awt.Dimension var48 = var0.getMinimumSize(); + boolean var49 = javax.swing.JComponent.isLightweightComponent((java.awt.Component)var0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var2 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var28 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var29); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var30); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var32); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var34 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var44); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var45); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var47 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var48); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var49 == false); + + } + + public void test333() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test333"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var1 = new SpaceWar.SpacePanel(); + java.awt.Color var2 = var1.getBackground(); + SpaceWar.SpacePanel var3 = new SpaceWar.SpacePanel(); + float var4 = var3.getAlignmentX(); + var3.setVisible(false); + var3.nextFocus(); + var3.updateUI(); + var3.enableInputMethods(true); + var0.add((java.awt.Component)var1, (java.lang.Object)true); + boolean var12 = var0.isMinimumSizeSet(); + java.awt.event.HierarchyListener[] var13 = var0.getHierarchyListeners(); + var0.repaint(0L); + boolean var16 = var0.isValidateRoot(); + // The following exception was thrown during execution. + // This behavior will recorded for regression testing. + try { + javax.swing.InputMap var18 = var0.getInputMap(3); + fail("Expected exception of type java.lang.IllegalArgumentException"); + } catch (java.lang.IllegalArgumentException e) { + // Expected exception. + } + + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var2); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == false); + + } + + public void test334() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test334"); + + + SpaceWar.Bullet var3 = new SpaceWar.Bullet(83.657626403857d, 499, (-1)); + + } + + public void test335() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test335"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + var0.list(); + float var6 = var0.getAlignmentY(); + boolean var7 = var0.isOpaque(); + var0.resetKeyboardActions(); + var0.setInheritsPopupMenu(false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == true); + + } + + public void test336() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test336"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + var0.show(false); + boolean var8 = var0.isPaintingForPrint(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var15 = var9.getMouseListeners(); + int var16 = var9.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var17 = var9.getInputMethodRequests(); + var0.addKeyListener((java.awt.event.KeyListener)var9); + boolean var19 = var0.isDisplayable(); + var0.doLayout(); + SpaceWar.SpacePanel var21 = new SpaceWar.SpacePanel(); + float var22 = var21.getAlignmentX(); + var21.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var27 = new SpaceWar.SpacePanel(); + float var28 = var27.getAlignmentX(); + var27.setVisible(false); + java.awt.Dimension var31 = var27.getPreferredSize(); + var21.setMaximumSize(var31); + boolean var33 = var21.getVerifyInputWhenFocusTarget(); + java.awt.Toolkit var34 = var21.getToolkit(); + java.awt.Dimension var35 = var21.minimumSize(); + java.awt.Image var38 = var21.createImage((-1), 400); + java.awt.event.MouseMotionListener[] var39 = var21.getMouseMotionListeners(); + java.awt.Component var40 = var0.add((java.awt.Component)var21); + var40.repaint(399, 100, 399, 399); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var22 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var28 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var31); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var33 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var34); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var35); + + // Regression assertion (captures the current behavior of the code) + assertNull(var38); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var39); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var40); + + } + + public void test337() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test337"); + + + SpaceWar.Bullet var3 = new SpaceWar.Bullet(241.4584513263457d, 499, 10); + + } + + public void test338() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test338"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.updateUI(); + var0.enableInputMethods(true); + java.awt.Point var8 = var0.location(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.setVisible(false); + var9.nextFocus(); + var9.reshape((-1), 1, (-1), 10); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + java.awt.Color var20 = var19.getBackground(); + var19.repaint(); + var19.setRequestFocusEnabled(false); + var19.reshape(100, 0, 100, 0); + java.awt.Component var29 = var9.add((java.awt.Component)var19); + SpaceWar.SpacePanel var30 = new SpaceWar.SpacePanel(); + var30.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + javax.swing.plaf.PanelUI var35 = var30.getUI(); + SpaceWar.SpacePanel var36 = new SpaceWar.SpacePanel(); + float var37 = var36.getAlignmentX(); + var36.setVisible(false); + var36.nextFocus(); + var36.repaint(1L); + SpaceWar.SpacePanel var43 = new SpaceWar.SpacePanel(); + float var44 = var43.getAlignmentX(); + var43.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var49 = new SpaceWar.SpacePanel(); + float var50 = var49.getAlignmentX(); + var49.setVisible(false); + java.awt.Dimension var53 = var49.getPreferredSize(); + var43.setMaximumSize(var53); + var36.setPreferredSize(var53); + var30.setMaximumSize(var53); + java.awt.Dimension var57 = var19.getSize(var53); + var0.setMaximumSize(var53); + boolean var59 = var0.getIgnoreRepaint(); + boolean var60 = var0.isFontSet(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var29); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var35); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var44 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var50 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var53); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var57); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var59 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var60 == true); + + } + + public void test339() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test339"); + + + SpaceWar.Player var0 = new SpaceWar.Player(); + var0.increasePower(25); + int var3 = var0.getScore(); + var0.setRigth(true); + var0.update(); + var0.setDown(false); + var0.loseLife(); + var0.setLeft(true); + var0.loseLife(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == 0); + + } + + public void test340() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test340"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + SpaceWar.SpacePanel var2 = new SpaceWar.SpacePanel(); + float var3 = var2.getAlignmentX(); + var2.setVisible(false); + java.awt.Dimension var6 = var2.getPreferredSize(); + boolean var7 = var2.getVerifyInputWhenFocusTarget(); + java.awt.Component var10 = var2.findComponentAt(10, 1); + var0.addKeyListener((java.awt.event.KeyListener)var2); + var2.repaint(100, (-1), (-1), 1); + SpaceWar.SpacePanel var17 = new SpaceWar.SpacePanel(); + java.awt.Color var18 = var17.getBackground(); + var17.repaint(); + java.awt.im.InputMethodRequests var20 = var17.getInputMethodRequests(); + java.awt.GraphicsConfiguration var21 = var17.getGraphicsConfiguration(); + var2.remove((java.awt.Component)var17); + boolean var23 = var17.isOptimizedDrawingEnabled(); + var17.setBounds(3, 1, 0, 10); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertNull(var21); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == true); + + } + + public void test341() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test341"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + boolean var6 = var0.isFocusCycleRoot(); + var0.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", 100, 0); + SpaceWar.SpacePanel var11 = new SpaceWar.SpacePanel(); + float var12 = var11.getAlignmentX(); + var11.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var17 = var11.getUI(); + var0.add((java.awt.Component)var11, (java.lang.Object)(short)0); + SpaceWar.SpacePanel var20 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var21 = new SpaceWar.SpacePanel(); + float var22 = var21.getAlignmentX(); + var21.setVisible(false); + var21.nextFocus(); + var21.reshape((-1), 1, (-1), 10); + SpaceWar.SpacePanel var31 = new SpaceWar.SpacePanel(); + java.awt.Color var32 = var31.getBackground(); + var31.repaint(); + var31.setRequestFocusEnabled(false); + var31.reshape(100, 0, 100, 0); + java.awt.Component var41 = var21.add((java.awt.Component)var31); + SpaceWar.SpacePanel var42 = new SpaceWar.SpacePanel(); + var42.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + javax.swing.plaf.PanelUI var47 = var42.getUI(); + SpaceWar.SpacePanel var48 = new SpaceWar.SpacePanel(); + float var49 = var48.getAlignmentX(); + var48.setVisible(false); + var48.nextFocus(); + var48.repaint(1L); + SpaceWar.SpacePanel var55 = new SpaceWar.SpacePanel(); + float var56 = var55.getAlignmentX(); + var55.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var61 = new SpaceWar.SpacePanel(); + float var62 = var61.getAlignmentX(); + var61.setVisible(false); + java.awt.Dimension var65 = var61.getPreferredSize(); + var55.setMaximumSize(var65); + var48.setPreferredSize(var65); + var42.setMaximumSize(var65); + java.awt.Dimension var69 = var31.getSize(var65); + java.awt.Dimension var70 = var20.getSize(var69); + java.awt.Dimension var71 = var11.getSize(var69); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var22 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var32); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var41); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var47); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var49 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var56 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var62 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var65); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var69); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var70); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var71); + + } + + public void test342() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test342"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + var0.show(false); + boolean var8 = var0.isPaintingForPrint(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var15 = var9.getMouseListeners(); + int var16 = var9.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var17 = var9.getInputMethodRequests(); + var0.addKeyListener((java.awt.event.KeyListener)var9); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + float var20 = var19.getAlignmentX(); + var19.setVisible(false); + boolean var23 = var19.isDoubleBuffered(); + var19.list(); + float var25 = var19.getAlignmentY(); + boolean var26 = var9.isFocusCycleRoot((java.awt.Container)var19); + javax.swing.JPopupMenu var27 = var19.getComponentPopupMenu(); + var19.move((-1), 100); + var19.validate(); + boolean var32 = var19.isPaintingForPrint(); + var19.repaint(); + SpaceWar.SpacePanel var34 = new SpaceWar.SpacePanel(); + float var35 = var34.getAlignmentX(); + var34.setVisible(false); + boolean var38 = var34.isDoubleBuffered(); + var34.list(); + SpaceWar.SpacePanel var40 = new SpaceWar.SpacePanel(); + float var41 = var40.getAlignmentX(); + var40.setVisible(false); + boolean var44 = var40.isDoubleBuffered(); + java.awt.dnd.DropTarget var45 = var40.getDropTarget(); + var40.show(false); + java.awt.Rectangle var48 = var40.getVisibleRect(); + java.awt.Rectangle var49 = var34.getBounds(var48); + javax.swing.JToolTip var50 = var34.createToolTip(); + java.awt.Dimension var51 = var34.minimumSize(); + SpaceWar.SpacePanel var52 = new SpaceWar.SpacePanel(); + float var53 = var52.getAlignmentX(); + var52.setVisible(false); + var52.setInheritsPopupMenu(false); + var52.setFocusTraversalPolicyProvider(true); + java.awt.Container var60 = var52.getFocusCycleRootAncestor(); + SpaceWar.SpacePanel var61 = new SpaceWar.SpacePanel(); + float var62 = var61.getAlignmentX(); + var61.removeNotify(); + SpaceWar.SpacePanel var64 = new SpaceWar.SpacePanel(); + float var65 = var64.getAlignmentX(); + var64.setVisible(false); + boolean var68 = var64.isDoubleBuffered(); + var64.list(); + float var70 = var64.getAlignmentY(); + java.awt.Insets var71 = var64.getInsets(); + java.awt.Insets var72 = var61.getInsets(var71); + java.awt.Insets var73 = var52.getInsets(var72); + java.awt.Insets var74 = var34.getInsets(var72); + java.awt.Insets var75 = var19.getInsets(var72); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var27); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var32 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var35 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var38 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var41 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var44 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var45); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var48); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var49); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var50); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var51); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var53 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNull(var60); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var62 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var65 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var68 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var70 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var71); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var72); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var73); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var74); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var75); + + } + + public void test343() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test343"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + java.awt.event.MouseMotionListener[] var6 = var0.getMouseMotionListeners(); + java.awt.event.ComponentListener[] var7 = var0.getComponentListeners(); + var0.setFocusTraversalPolicyProvider(false); + boolean var12 = var0.inside(25, 1); + boolean var13 = var0.isFocusTraversalPolicySet(); + java.awt.Dimension var14 = var0.minimumSize(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + } + + public void test344() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test344"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var6 = var0.getUI(); + java.awt.im.InputMethodRequests var7 = var0.getInputMethodRequests(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + var8.nextFocus(); + var8.updateUI(); + var8.enableInputMethods(true); + var8.setSize((-1), 1); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + var19.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var0.add((java.awt.Component)var8, (java.lang.Object)"SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + java.awt.ComponentOrientation var25 = var8.getComponentOrientation(); + java.beans.VetoableChangeListener[] var26 = var8.getVetoableChangeListeners(); + int var27 = var8.getHeight(); + var8.enable(true); + int var30 = var8.getY(); + var8.enableInputMethods(true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var25); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == 1); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var30 == 0); + + } + + public void test345() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test345"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var6 = var0.getUI(); + java.awt.im.InputMethodRequests var7 = var0.getInputMethodRequests(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + var8.nextFocus(); + var8.updateUI(); + var8.enableInputMethods(true); + var8.setSize((-1), 1); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + var19.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var0.add((java.awt.Component)var8, (java.lang.Object)"SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + boolean var25 = var0.isCursorSet(); + java.awt.Dimension var26 = var0.getMinimumSize(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var26); + + } + + public void test346() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test346"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + boolean var2 = var0.hasFocus(); + boolean var3 = var0.isPreferredSizeSet(); + var0.firePropertyChange("", (short)1, (short)0); + boolean var8 = var0.isMaximumSizeSet(); + java.awt.peer.ComponentPeer var9 = var0.getPeer(); + SpaceWar.SpacePanel var10 = new SpaceWar.SpacePanel(); + float var11 = var10.getAlignmentX(); + var10.setVisible(false); + boolean var14 = var10.isDoubleBuffered(); + java.awt.dnd.DropTarget var15 = var10.getDropTarget(); + var10.show(false); + SpaceWar.SpacePanel var18 = new SpaceWar.SpacePanel(); + float var19 = var18.getAlignmentX(); + var18.setVisible(false); + SpaceWar.SpacePanel var22 = new SpaceWar.SpacePanel(); + java.awt.Color var23 = var22.getBackground(); + var18.setForeground(var23); + SpaceWar.SpacePanel var25 = new SpaceWar.SpacePanel(); + float var26 = var25.getAlignmentX(); + var25.setVisible(false); + boolean var29 = var25.isDoubleBuffered(); + java.awt.dnd.DropTarget var30 = var25.getDropTarget(); + var25.show(false); + java.awt.Rectangle var33 = var25.getVisibleRect(); + var18.repaint(var33); + java.awt.FocusTraversalPolicy var35 = var18.getFocusTraversalPolicy(); + java.awt.im.InputMethodRequests var36 = var18.getInputMethodRequests(); + var18.layout(); + SpaceWar.SpacePanel var38 = new SpaceWar.SpacePanel(); + float var39 = var38.getAlignmentX(); + var38.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var44 = new SpaceWar.SpacePanel(); + float var45 = var44.getAlignmentX(); + var44.setVisible(false); + SpaceWar.SpacePanel var48 = new SpaceWar.SpacePanel(); + java.awt.Color var49 = var48.getBackground(); + var44.setForeground(var49); + var38.setBackground(var49); + var18.setForeground(var49); + int var53 = var18.getWidth(); + javax.swing.plaf.PanelUI var54 = var18.getUI(); + var10.setUI(var54); + var0.setUI(var54); + java.awt.event.MouseListener[] var57 = var0.getMouseListeners(); + var0.enableInputMethods(false); + var0.transferFocusDownCycle(); + var0.repaint(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var2 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var9); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var23); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var29 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var30); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var33); + + // Regression assertion (captures the current behavior of the code) + assertNull(var35); + + // Regression assertion (captures the current behavior of the code) + assertNull(var36); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var39 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var45 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var49); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var53 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var54); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var57); + + } + + public void test347() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test347"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.updateUI(); + var0.enableInputMethods(true); + var0.show(); + var0.setBounds(24, 25, 100, 25); + var0.removeAll(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + } + + public void test348() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test348"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + var0.show(false); + boolean var8 = var0.isPaintingForPrint(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var15 = var9.getMouseListeners(); + int var16 = var9.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var17 = var9.getInputMethodRequests(); + var0.addKeyListener((java.awt.event.KeyListener)var9); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + float var20 = var19.getAlignmentX(); + var19.setVisible(false); + boolean var23 = var19.isDoubleBuffered(); + var19.list(); + float var25 = var19.getAlignmentY(); + boolean var26 = var9.isFocusCycleRoot((java.awt.Container)var19); + var19.firePropertyChange("", 1L, 1L); + var19.setVerifyInputWhenFocusTarget(true); + java.awt.Cursor var33 = var19.getCursor(); + var19.resetKeyboardActions(); + var19.grabFocus(); + boolean var36 = var19.isForegroundSet(); + var19.repaint(10L, 505, 3, 24, 25); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var33); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var36 == true); + + } + + public void test349() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test349"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + var0.list(); + float var6 = var0.getAlignmentY(); + java.awt.event.ComponentListener[] var7 = var0.getComponentListeners(); + java.awt.Component var8 = var0.getNextFocusableComponent(); + boolean var9 = var0.isManagingFocus(); + javax.swing.border.Border var10 = var0.getBorder(); + java.lang.Object var11 = var0.getTreeLock(); + SpaceWar.SpacePanel var12 = new SpaceWar.SpacePanel(); + var12.setName(""); + var12.enable(true); + var12.enable(); + java.awt.Point var18 = var12.location(); + var12.repaint(0, 3, (-1), 1); + var12.setBounds(25, 100, 1, 0); + var0.addKeyListener((java.awt.event.KeyListener)var12); + java.awt.Dimension var30 = var0.minimumSize(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var30); + + } + + public void test350() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test350"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + var0.show(false); + boolean var8 = var0.isPaintingForPrint(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var15 = var9.getMouseListeners(); + int var16 = var9.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var17 = var9.getInputMethodRequests(); + var0.addKeyListener((java.awt.event.KeyListener)var9); + boolean var19 = var0.isDisplayable(); + java.awt.event.MouseListener[] var20 = var0.getMouseListeners(); + java.lang.String var21 = var0.getName(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertNull(var21); + + } + + public void test351() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test351"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + boolean var2 = var0.hasFocus(); + SpaceWar.SpacePanel var3 = new SpaceWar.SpacePanel(); + float var4 = var3.getAlignmentX(); + var3.setVisible(false); + var3.nextFocus(); + var3.reshape((-1), 1, (-1), 10); + var3.disable(); + java.awt.LayoutManager var14 = var3.getLayout(); + var3.setVisible(false); + var0.remove((java.awt.Component)var3); + var3.repaint(); + boolean var19 = var3.hasFocus(); + java.awt.event.MouseWheelListener[] var20 = var3.getMouseWheelListeners(); + SpaceWar.SpacePanel var21 = new SpaceWar.SpacePanel(); + java.awt.Color var22 = var21.getBackground(); + var21.repaint(); + var21.setRequestFocusEnabled(false); + var21.reshape(100, 0, 100, 0); + var21.requestFocus(); + java.awt.Rectangle var32 = var21.getVisibleRect(); + java.awt.Rectangle var33 = var21.getBounds(); + java.awt.im.InputMethodRequests var34 = var21.getInputMethodRequests(); + boolean var35 = var21.requestFocusInWindow(); + java.awt.Point var37 = var21.getMousePosition(false); + var21.setDebugGraphicsOptions(1); + java.awt.Graphics var40 = var21.getGraphics(); + var3.printAll(var40); + SpaceWar.SpacePanel var42 = new SpaceWar.SpacePanel(); + float var43 = var42.getAlignmentX(); + var42.setVisible(false); + var42.nextFocus(); + var42.updateUI(); + var42.enableInputMethods(true); + int var50 = var42.getY(); + boolean var51 = var42.isDisplayable(); + SpaceWar.SpacePanel var52 = new SpaceWar.SpacePanel(); + float var53 = var52.getAlignmentX(); + var52.setVisible(false); + var52.setInheritsPopupMenu(false); + var52.move(10, 10); + var52.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + java.awt.Rectangle var65 = var52.bounds(); + java.awt.image.ColorModel var66 = var52.getColorModel(); + var42.setComponentZOrder((java.awt.Component)var52, 0); + javax.swing.plaf.PanelUI var69 = var52.getUI(); + var3.setUI(var69); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var2 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var32); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var33); + + // Regression assertion (captures the current behavior of the code) + assertNull(var34); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var35 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var37); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var40); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var43 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var50 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var51 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var53 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var65); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var66); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var69); + + } + + public void test352() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test352"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var1 = new SpaceWar.SpacePanel(); + java.awt.Color var2 = var1.getBackground(); + SpaceWar.SpacePanel var3 = new SpaceWar.SpacePanel(); + float var4 = var3.getAlignmentX(); + var3.setVisible(false); + var3.nextFocus(); + var3.updateUI(); + var3.enableInputMethods(true); + var0.add((java.awt.Component)var1, (java.lang.Object)true); + java.awt.Image var14 = var1.createImage(1, (-1)); + java.beans.PropertyChangeListener[] var15 = var1.getPropertyChangeListeners(); + java.awt.FocusTraversalPolicy var16 = var1.getFocusTraversalPolicy(); + var1.show(false); + java.awt.Component[] var19 = var1.getComponents(); + var1.resetKeyboardActions(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var2); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var19); + + } + + public void test353() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test353"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.setEnabled(false); + java.awt.Image var8 = var0.createImage(10, 100); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + java.awt.Color var10 = var9.getBackground(); + var0.setForeground(var10); + java.awt.event.HierarchyBoundsListener[] var12 = var0.getHierarchyBoundsListeners(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var12); + + } + + public void test354() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test354"); + + + SpaceWar.PowerUp var3 = new SpaceWar.PowerUp(100, (-1.0d), 0.0d); + double var4 = var3.getR(); + int var5 = var3.getType(); + double var6 = var3.getX(); + int var7 = var3.getType(); + double var8 = var3.getR(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0.0d); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == 100); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == (-1.0d)); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 100); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 0.0d); + + } + + public void test355() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test355"); + + + SpaceWar.Player var0 = new SpaceWar.Player(); + var0.increasePower(25); + int var3 = var0.getScore(); + var0.setFiring(false); + var0.setFiring(true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == 0); + + } + + public void test356() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test356"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.setInheritsPopupMenu(false); + boolean var6 = var0.isDoubleBuffered(); + boolean var7 = var0.isMinimumSizeSet(); + java.awt.Font var8 = var0.getFont(); + java.awt.event.MouseListener[] var9 = var0.getMouseListeners(); + boolean var10 = var0.getAutoscrolls(); + // The following exception was thrown during execution. + // This behavior will recorded for regression testing. + try { + java.awt.Point var11 = var0.getLocationOnScreen(); + fail("Expected exception of type java.awt.IllegalComponentStateException"); + } catch (java.awt.IllegalComponentStateException e) { + // Expected exception. + } + + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var9); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == false); + + } + + public void test357() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test357"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + var0.show(false); + boolean var8 = var0.isPaintingForPrint(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var15 = var9.getMouseListeners(); + int var16 = var9.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var17 = var9.getInputMethodRequests(); + var0.addKeyListener((java.awt.event.KeyListener)var9); + java.awt.Container var19 = var9.getFocusCycleRootAncestor(); + SpaceWar.SpacePanel var20 = new SpaceWar.SpacePanel(); + float var21 = var20.getAlignmentX(); + var20.setVisible(false); + var20.nextFocus(); + var20.reshape((-1), 1, (-1), 10); + var20.disable(); + java.awt.LayoutManager var31 = var20.getLayout(); + java.awt.Container var32 = var20.getParent(); + java.beans.PropertyChangeListener[] var34 = var20.getPropertyChangeListeners("SpaceWar.SpacePanel[,0,0,0x0,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + var9.setNextFocusableComponent((java.awt.Component)var20); + var9.resetKeyboardActions(); + boolean var37 = var9.isMaximumSizeSet(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var31); + + // Regression assertion (captures the current behavior of the code) + assertNull(var32); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var34); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == false); + + } + + public void test358() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test358"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + var0.show(false); + java.awt.Rectangle var8 = var0.getVisibleRect(); + java.awt.Toolkit var9 = var0.getToolkit(); + java.awt.event.MouseMotionListener[] var10 = var0.getMouseMotionListeners(); + SpaceWar.SpacePanel var11 = new SpaceWar.SpacePanel(); + float var12 = var11.getAlignmentX(); + var11.setVisible(false); + boolean var15 = var11.isDoubleBuffered(); + java.awt.dnd.DropTarget var16 = var11.getDropTarget(); + var11.show(false); + boolean var19 = var11.isPaintingForPrint(); + SpaceWar.SpacePanel var20 = new SpaceWar.SpacePanel(); + float var21 = var20.getAlignmentX(); + var20.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var26 = var20.getMouseListeners(); + int var27 = var20.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var28 = var20.getInputMethodRequests(); + var11.addKeyListener((java.awt.event.KeyListener)var20); + SpaceWar.SpacePanel var30 = new SpaceWar.SpacePanel(); + float var31 = var30.getAlignmentX(); + var30.setVisible(false); + boolean var34 = var30.isDoubleBuffered(); + var30.list(); + float var36 = var30.getAlignmentY(); + boolean var37 = var20.isFocusCycleRoot((java.awt.Container)var30); + javax.swing.JPopupMenu var38 = var30.getComponentPopupMenu(); + var30.move((-1), 100); + var30.validate(); + java.awt.Rectangle var43 = var30.getVisibleRect(); + var0.paintImmediately(var43); + boolean var45 = var0.isBackgroundSet(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var9); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var28); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var31 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var34 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var36 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var38); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var43); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var45 == true); + + } + + public void test359() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test359"); + + + SpaceWar.Player var0 = new SpaceWar.Player(); + boolean var1 = var0.isRecovering(); + var0.setUp(true); + int var4 = var0.getRequiredPower(); + var0.setScore(400); + int var7 = var0.getPowerLevel(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 1); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0); + + } + + public void test360() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test360"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + boolean var5 = javax.swing.JComponent.isLightweightComponent((java.awt.Component)var0); + var0.removeAll(); + java.awt.Component.BaselineResizeBehavior var7 = var0.getBaselineResizeBehavior(); + boolean var8 = var0.isVisible(); + java.awt.event.InputMethodListener[] var9 = var0.getInputMethodListeners(); + boolean var10 = var0.hasFocus(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var9); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == false); + + } + + public void test361() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test361"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.Graphics var5 = var0.getGraphics(); + java.awt.event.MouseMotionListener[] var6 = var0.getMouseMotionListeners(); + java.awt.Point var8 = var0.getMousePosition(true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertNull(var8); + + } + + public void test362() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test362"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + var0.setName(""); + java.awt.Dimension var3 = var0.minimumSize(); + boolean var4 = var0.isDoubleBuffered(); + java.awt.event.HierarchyListener[] var5 = var0.getHierarchyListeners(); + java.awt.Font var6 = var0.getFont(); + SpaceWar.SpacePanel var7 = new SpaceWar.SpacePanel(); + float var8 = var7.getAlignmentX(); + var7.setVisible(false); + var7.setInheritsPopupMenu(false); + var7.move(10, 10); + var7.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var7.removeAll(); + javax.accessibility.AccessibleContext var21 = var7.getAccessibleContext(); + SpaceWar.SpacePanel var22 = new SpaceWar.SpacePanel(); + float var23 = var22.getAlignmentX(); + var22.setVisible(false); + var22.nextFocus(); + var22.requestFocus(); + boolean var28 = var22.isBackgroundSet(); + SpaceWar.SpacePanel var29 = new SpaceWar.SpacePanel(); + java.awt.Color var30 = var29.getBackground(); + var29.repaint(); + var29.setRequestFocusEnabled(false); + var29.reshape(100, 0, 100, 0); + SpaceWar.SpacePanel var39 = new SpaceWar.SpacePanel(); + float var40 = var39.getAlignmentX(); + var39.setVisible(false); + var39.setInheritsPopupMenu(false); + boolean var45 = var39.isDoubleBuffered(); + SpaceWar.SpacePanel var46 = new SpaceWar.SpacePanel(); + float var47 = var46.getAlignmentX(); + var46.setVisible(false); + var46.nextFocus(); + var46.reshape((-1), 1, (-1), 10); + var46.disable(); + java.awt.LayoutManager var57 = var46.getLayout(); + var39.setLayout(var57); + var22.add((java.awt.Component)var29, (java.lang.Object)var57); + var7.setLayout(var57); + java.awt.Rectangle var61 = var7.bounds(); + var0.scrollRectToVisible(var61); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var21); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var28 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var30); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var40 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var45 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var47 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var57); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var61); + + } + + public void test363() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test363"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.reshape((-1), 1, (-1), 10); + var0.disable(); + java.awt.LayoutManager var11 = var0.getLayout(); + java.awt.Container var12 = var0.getParent(); + java.lang.String var13 = var0.getUIClassID(); + var0.setVerifyInputWhenFocusTarget(true); + boolean var16 = var0.isRequestFocusEnabled(); + var0.setVerifyInputWhenFocusTarget(false); + boolean var19 = var0.isLightweight(); + boolean var20 = var0.isShowing(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var13 + "' != '" + "PanelUI"+ "'", var13.equals("PanelUI")); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == false); + + } + + public void test364() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test364"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + float var7 = var6.getAlignmentX(); + var6.setVisible(false); + java.awt.Dimension var10 = var6.getPreferredSize(); + var0.setMaximumSize(var10); + boolean var12 = var0.getVerifyInputWhenFocusTarget(); + var0.transferFocusUpCycle(); + java.awt.Point var14 = var0.location(); + SpaceWar.SpacePanel var15 = new SpaceWar.SpacePanel(); + java.awt.Color var16 = var15.getBackground(); + var15.repaint(); + java.awt.im.InputMethodRequests var18 = var15.getInputMethodRequests(); + var15.setDoubleBuffered(true); + SpaceWar.SpacePanel var21 = new SpaceWar.SpacePanel(); + float var22 = var21.getAlignmentX(); + boolean var23 = var21.hasFocus(); + java.awt.Insets var24 = var21.getInsets(); + java.awt.Insets var25 = var15.getInsets(var24); + SpaceWar.SpacePanel var26 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var27 = new SpaceWar.SpacePanel(); + java.awt.Color var28 = var27.getBackground(); + SpaceWar.SpacePanel var29 = new SpaceWar.SpacePanel(); + float var30 = var29.getAlignmentX(); + var29.setVisible(false); + var29.nextFocus(); + var29.updateUI(); + var29.enableInputMethods(true); + var26.add((java.awt.Component)var27, (java.lang.Object)true); + java.awt.Image var40 = var27.createImage(1, (-1)); + SpaceWar.SpacePanel var41 = new SpaceWar.SpacePanel(); + float var42 = var41.getAlignmentX(); + var41.setVisible(false); + var41.nextFocus(); + var41.updateUI(); + var41.enableInputMethods(true); + SpaceWar.SpacePanel var49 = new SpaceWar.SpacePanel(); + float var50 = var49.getAlignmentX(); + boolean var51 = var49.hasFocus(); + java.awt.Insets var52 = var49.getInsets(); + java.awt.Insets var53 = var41.getInsets(var52); + java.awt.Insets var54 = var27.getInsets(var52); + java.awt.Insets var55 = var15.getInsets(var52); + java.awt.Component var56 = var0.add((java.awt.Component)var15); + java.lang.String var57 = var15.toString(); + SpaceWar.SpacePanel var58 = new SpaceWar.SpacePanel(); + java.awt.Color var59 = var58.getBackground(); + var58.repaint(); + java.awt.im.InputMethodRequests var61 = var58.getInputMethodRequests(); + var58.setDoubleBuffered(true); + var58.setInheritsPopupMenu(false); + javax.swing.plaf.PanelUI var66 = var58.getUI(); + java.util.Set var68 = var58.getFocusTraversalKeys(3); + var58.enable(); + var58.resize(500, 25); + java.awt.FocusTraversalPolicy var73 = var58.getFocusTraversalPolicy(); + java.awt.Dimension var74 = var58.minimumSize(); + SpaceWar.SpacePanel var75 = new SpaceWar.SpacePanel(); + float var76 = var75.getAlignmentX(); + var75.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var81 = var75.getMouseListeners(); + java.awt.Dimension var82 = var75.getPreferredSize(); + var58.setSize(var82); + var15.setPreferredSize(var82); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var22 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var25); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var28); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var30 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNull(var40); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var42 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var50 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var51 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var52); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var53); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var54); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var55); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var56); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var57 + "' != '" + "SpaceWar.SpacePanel[,0,0,0var57,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"+ "'", var57.equals("SpaceWar.SpacePanel[,0,0,0var57,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]")); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var59); + + // Regression assertion (captures the current behavior of the code) + assertNull(var61); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var66); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var68); + + // Regression assertion (captures the current behavior of the code) + assertNull(var73); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var74); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var76 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var81); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var82); + + } + + public void test365() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test365"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + java.awt.Dimension var4 = var0.getPreferredSize(); + boolean var5 = var0.getVerifyInputWhenFocusTarget(); + java.awt.Component var8 = var0.findComponentAt(10, 1); + boolean var9 = var0.isCursorSet(); + boolean var10 = var0.isFocusTraversalPolicyProvider(); + java.awt.ComponentOrientation var11 = var0.getComponentOrientation(); + java.lang.Object var12 = var0.getTreeLock(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var4); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var12); + + } + + public void test366() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test366"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.reshape((-1), 1, (-1), 10); + SpaceWar.SpacePanel var10 = new SpaceWar.SpacePanel(); + java.awt.Color var11 = var10.getBackground(); + var10.repaint(); + var10.setRequestFocusEnabled(false); + var10.reshape(100, 0, 100, 0); + java.awt.Component var20 = var0.add((java.awt.Component)var10); + java.awt.Point var21 = var0.getMousePosition(); + java.awt.Dimension var22 = var0.size(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertNull(var21); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var22); + + } + + public void test367() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test367"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + var0.list(); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + float var7 = var6.getAlignmentX(); + var6.setVisible(false); + boolean var10 = var6.isDoubleBuffered(); + java.awt.dnd.DropTarget var11 = var6.getDropTarget(); + var6.show(false); + java.awt.Rectangle var14 = var6.getVisibleRect(); + java.awt.Rectangle var15 = var0.getBounds(var14); + javax.swing.JToolTip var16 = var0.createToolTip(); + java.awt.Graphics var17 = var0.getGraphics(); + float var18 = var0.getAlignmentY(); + boolean var19 = var0.getInheritsPopupMenu(); + boolean var20 = var0.isMaximumSizeSet(); + int var21 = var0.countComponents(); + SpaceWar.SpacePanel var22 = new SpaceWar.SpacePanel(); + float var23 = var22.getAlignmentX(); + boolean var24 = var22.hasFocus(); + SpaceWar.SpacePanel var25 = new SpaceWar.SpacePanel(); + float var26 = var25.getAlignmentX(); + var25.setVisible(false); + var25.nextFocus(); + var25.reshape((-1), 1, (-1), 10); + var25.disable(); + java.awt.LayoutManager var36 = var25.getLayout(); + var25.setVisible(false); + var22.remove((java.awt.Component)var25); + var25.repaint(); + boolean var41 = var25.hasFocus(); + javax.swing.plaf.PanelUI var42 = var25.getUI(); + SpaceWar.SpacePanel var43 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var44 = new SpaceWar.SpacePanel(); + java.awt.Color var45 = var44.getBackground(); + SpaceWar.SpacePanel var46 = new SpaceWar.SpacePanel(); + float var47 = var46.getAlignmentX(); + var46.setVisible(false); + var46.nextFocus(); + var46.updateUI(); + var46.enableInputMethods(true); + var43.add((java.awt.Component)var44, (java.lang.Object)true); + java.awt.Image var57 = var44.createImage(1, (-1)); + java.awt.event.MouseListener[] var58 = var44.getMouseListeners(); + java.awt.Color var59 = var44.getBackground(); + // The following exception was thrown during execution. + // This behavior will recorded for regression testing. + try { + var0.add((java.awt.Component)var25, (java.lang.Object)var44, 3); + fail("Expected exception of type java.lang.IllegalArgumentException"); + } catch (java.lang.IllegalArgumentException e) { + // Expected exception. + } + + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var24 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var36); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var41 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var42); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var45); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var47 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNull(var57); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var58); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var59); + + } + + public void test368() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test368"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + var0.list(); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + float var7 = var6.getAlignmentX(); + var6.setVisible(false); + boolean var10 = var6.isDoubleBuffered(); + java.awt.dnd.DropTarget var11 = var6.getDropTarget(); + var6.show(false); + java.awt.Rectangle var14 = var6.getVisibleRect(); + java.awt.Rectangle var15 = var0.getBounds(var14); + boolean var16 = var0.isFocusOwner(); + java.awt.event.KeyListener[] var17 = var0.getKeyListeners(); + var0.setLocation(25, 1); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var17); + + } + + public void test369() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test369"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + var0.setRequestFocusEnabled(false); + var0.setIgnoreRepaint(false); + java.lang.String var7 = var0.toString(); + java.awt.Color var8 = var0.getBackground(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.setVisible(false); + java.awt.Dimension var13 = var9.getPreferredSize(); + java.awt.Toolkit var14 = var9.getToolkit(); + java.awt.Toolkit var15 = var9.getToolkit(); + SpaceWar.Player var16 = new SpaceWar.Player(); + var16.increasePower(25); + int var19 = var16.getScore(); + var16.setRigth(true); + var16.loseLife(); + var0.putClientProperty((java.lang.Object)var9, (java.lang.Object)var16); + java.awt.image.ColorModel var24 = var9.getColorModel(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var7 + "' != '" + "SpaceWar.SpacePanel[,0,0,0var7,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"+ "'", var7.equals("SpaceWar.SpacePanel[,0,0,0var7,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]")); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var24); + + } + + public void test370() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test370"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + SpaceWar.SpacePanel var2 = new SpaceWar.SpacePanel(); + float var3 = var2.getAlignmentX(); + var2.setVisible(false); + java.awt.Dimension var6 = var2.getPreferredSize(); + boolean var7 = var2.getVerifyInputWhenFocusTarget(); + java.awt.Component var10 = var2.findComponentAt(10, 1); + var0.addKeyListener((java.awt.event.KeyListener)var2); + java.awt.Dimension var12 = var2.getMinimumSize(); + java.lang.String var13 = var2.getToolTipText(); + SpaceWar.SpacePanel var14 = new SpaceWar.SpacePanel(); + var14.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", 10.0d, 100.0d); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + float var20 = var19.getAlignmentX(); + var19.setVisible(false); + boolean var23 = var19.isDoubleBuffered(); + java.awt.dnd.DropTarget var24 = var19.getDropTarget(); + boolean var25 = var19.isFocusCycleRoot(); + var19.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", 100, 0); + SpaceWar.SpacePanel var30 = new SpaceWar.SpacePanel(); + java.awt.Color var31 = var30.getBackground(); + var30.repaint(); + var30.setRequestFocusEnabled(false); + var30.reshape(100, 0, 100, 0); + javax.swing.event.AncestorListener[] var40 = var30.getAncestorListeners(); + var30.grabFocus(); + boolean var42 = var19.isFocusCycleRoot((java.awt.Container)var30); + javax.swing.ActionMap var43 = var30.getActionMap(); + var14.setActionMap(var43); + var2.setActionMap(var43); + int var46 = var2.getDebugGraphicsOptions(); + SpaceWar.SpacePanel var47 = new SpaceWar.SpacePanel(); + java.awt.Color var48 = var47.getBackground(); + var47.repaint(); + var47.setRequestFocusEnabled(false); + var47.reshape(100, 0, 100, 0); + javax.swing.event.AncestorListener[] var57 = var47.getAncestorListeners(); + var47.resize(10, 0); + java.awt.Dimension var61 = var47.preferredSize(); + var2.setSize(var61); + var2.repaint(0L); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var31); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var40); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var42 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var43); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var46 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var48); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var57); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var61); + + } + + public void test371() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test371"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var6 = var0.getMouseListeners(); + java.awt.Dimension var7 = var0.getPreferredSize(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + var8.nextFocus(); + var8.reshape((-1), 1, (-1), 10); + SpaceWar.SpacePanel var18 = new SpaceWar.SpacePanel(); + java.awt.Color var19 = var18.getBackground(); + var18.repaint(); + var18.setRequestFocusEnabled(false); + var18.reshape(100, 0, 100, 0); + java.awt.Component var28 = var8.add((java.awt.Component)var18); + SpaceWar.SpacePanel var29 = new SpaceWar.SpacePanel(); + var29.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + javax.swing.plaf.PanelUI var34 = var29.getUI(); + SpaceWar.SpacePanel var35 = new SpaceWar.SpacePanel(); + float var36 = var35.getAlignmentX(); + var35.setVisible(false); + var35.nextFocus(); + var35.repaint(1L); + SpaceWar.SpacePanel var42 = new SpaceWar.SpacePanel(); + float var43 = var42.getAlignmentX(); + var42.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var48 = new SpaceWar.SpacePanel(); + float var49 = var48.getAlignmentX(); + var48.setVisible(false); + java.awt.Dimension var52 = var48.getPreferredSize(); + var42.setMaximumSize(var52); + var35.setPreferredSize(var52); + var29.setMaximumSize(var52); + java.awt.Dimension var56 = var18.getSize(var52); + SpaceWar.SpacePanel var57 = new SpaceWar.SpacePanel(); + float var58 = var57.getAlignmentX(); + var57.setVisible(false); + boolean var61 = var57.isDoubleBuffered(); + java.awt.dnd.DropTarget var62 = var57.getDropTarget(); + var57.show(false); + boolean var65 = var57.isPaintingForPrint(); + SpaceWar.SpacePanel var66 = new SpaceWar.SpacePanel(); + float var67 = var66.getAlignmentX(); + var66.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var72 = var66.getMouseListeners(); + int var73 = var66.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var74 = var66.getInputMethodRequests(); + var57.addKeyListener((java.awt.event.KeyListener)var66); + SpaceWar.SpacePanel var76 = new SpaceWar.SpacePanel(); + float var77 = var76.getAlignmentX(); + var76.setVisible(false); + boolean var80 = var76.isDoubleBuffered(); + var76.list(); + float var82 = var76.getAlignmentY(); + boolean var83 = var66.isFocusCycleRoot((java.awt.Container)var76); + var18.setNextFocusableComponent((java.awt.Component)var76); + var76.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=1.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", 0.0f, 0.5f); + var76.show(false); + var0.addKeyListener((java.awt.event.KeyListener)var76); + int var94 = var0.getBaseline(2, 1); + java.awt.Dimension var95 = var0.preferredSize(); + var0.requestFocus(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var28); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var34); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var36 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var43 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var49 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var52); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var56); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var58 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var61 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var62); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var65 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var67 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var72); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var73 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var74); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var77 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var80 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var82 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var83 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var94 == (-1)); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var95); + + } + + public void test372() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test372"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.updateUI(); + var0.enableInputMethods(true); + java.awt.Point var8 = var0.location(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.setVisible(false); + var9.nextFocus(); + var9.reshape((-1), 1, (-1), 10); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + java.awt.Color var20 = var19.getBackground(); + var19.repaint(); + var19.setRequestFocusEnabled(false); + var19.reshape(100, 0, 100, 0); + java.awt.Component var29 = var9.add((java.awt.Component)var19); + SpaceWar.SpacePanel var30 = new SpaceWar.SpacePanel(); + var30.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + javax.swing.plaf.PanelUI var35 = var30.getUI(); + SpaceWar.SpacePanel var36 = new SpaceWar.SpacePanel(); + float var37 = var36.getAlignmentX(); + var36.setVisible(false); + var36.nextFocus(); + var36.repaint(1L); + SpaceWar.SpacePanel var43 = new SpaceWar.SpacePanel(); + float var44 = var43.getAlignmentX(); + var43.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var49 = new SpaceWar.SpacePanel(); + float var50 = var49.getAlignmentX(); + var49.setVisible(false); + java.awt.Dimension var53 = var49.getPreferredSize(); + var43.setMaximumSize(var53); + var36.setPreferredSize(var53); + var30.setMaximumSize(var53); + java.awt.Dimension var57 = var19.getSize(var53); + var0.setMaximumSize(var53); + boolean var59 = var0.isFocusTraversalPolicyProvider(); + var0.setLocation(1, 10); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var29); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var35); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var44 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var50 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var53); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var57); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var59 == false); + + } + + public void test373() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test373"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + float var7 = var6.getAlignmentX(); + var6.setVisible(false); + java.awt.Dimension var10 = var6.getPreferredSize(); + var0.setMaximumSize(var10); + boolean var12 = var0.getVerifyInputWhenFocusTarget(); + int var13 = var0.getX(); + SpaceWar.SpacePanel var14 = new SpaceWar.SpacePanel(); + float var15 = var14.getAlignmentX(); + SpaceWar.SpacePanel var16 = new SpaceWar.SpacePanel(); + float var17 = var16.getAlignmentX(); + var16.setVisible(false); + java.awt.Dimension var20 = var16.getPreferredSize(); + boolean var21 = var16.getVerifyInputWhenFocusTarget(); + java.awt.Component var24 = var16.findComponentAt(10, 1); + var14.addKeyListener((java.awt.event.KeyListener)var16); + var16.repaint(100, (-1), (-1), 1); + SpaceWar.SpacePanel var31 = new SpaceWar.SpacePanel(); + java.awt.Color var32 = var31.getBackground(); + var31.repaint(); + java.awt.im.InputMethodRequests var34 = var31.getInputMethodRequests(); + java.awt.GraphicsConfiguration var35 = var31.getGraphicsConfiguration(); + var16.remove((java.awt.Component)var31); + java.awt.Font var37 = var31.getFont(); + var0.setFont(var37); + SpaceWar.SpacePanel var39 = new SpaceWar.SpacePanel(); + float var40 = var39.getAlignmentX(); + var39.setVisible(false); + var39.nextFocus(); + var39.reshape((-1), 1, (-1), 10); + var39.disable(); + java.awt.LayoutManager var50 = var39.getLayout(); + var0.setLayout(var50); + SpaceWar.SpacePanel var52 = new SpaceWar.SpacePanel(); + float var53 = var52.getAlignmentX(); + var52.setVisible(false); + var52.nextFocus(); + SpaceWar.SpacePanel var57 = new SpaceWar.SpacePanel(); + float var58 = var57.getAlignmentX(); + var57.setVisible(false); + SpaceWar.SpacePanel var61 = new SpaceWar.SpacePanel(); + java.awt.Color var62 = var61.getBackground(); + var57.setForeground(var62); + var52.setBackground(var62); + java.awt.Component var65 = var52.getNextFocusableComponent(); + float var66 = var52.getAlignmentY(); + java.awt.event.MouseListener[] var67 = var52.getMouseListeners(); + java.awt.Point var68 = var52.location(); + boolean var69 = var0.contains(var68); + java.awt.event.FocusListener[] var70 = var0.getFocusListeners(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var32); + + // Regression assertion (captures the current behavior of the code) + assertNull(var34); + + // Regression assertion (captures the current behavior of the code) + assertNull(var35); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var37); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var40 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var50); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var53 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var58 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var62); + + // Regression assertion (captures the current behavior of the code) + assertNull(var65); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var66 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var67); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var68); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var69 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var70); + + } + + public void test374() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test374"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + var0.setRequestFocusEnabled(false); + var0.setIgnoreRepaint(false); + java.lang.String var7 = var0.toString(); + boolean var8 = var0.isFocusCycleRoot(); + java.awt.dnd.DropTarget var9 = var0.getDropTarget(); + java.awt.Image var12 = var0.createImage(24, 499); + boolean var13 = var0.isRequestFocusEnabled(); + boolean var14 = var0.isFocusCycleRoot(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var7 + "' != '" + "SpaceWar.SpacePanel[,0,0,0var7,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"+ "'", var7.equals("SpaceWar.SpacePanel[,0,0,0var7,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]")); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var9); + + // Regression assertion (captures the current behavior of the code) + assertNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == false); + + } + + public void test375() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test375"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var6 = var0.getMouseListeners(); + int var7 = var0.getDebugGraphicsOptions(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + boolean var12 = var8.isDoubleBuffered(); + java.awt.dnd.DropTarget var13 = var8.getDropTarget(); + var8.show(false); + java.awt.Rectangle var16 = var8.getVisibleRect(); + var0.paintImmediately(var16); + SpaceWar.SpacePanel var18 = new SpaceWar.SpacePanel(); + float var19 = var18.getAlignmentX(); + var18.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var24 = var18.getMouseListeners(); + int var25 = var18.getDebugGraphicsOptions(); + SpaceWar.SpacePanel var26 = new SpaceWar.SpacePanel(); + float var27 = var26.getAlignmentX(); + var26.setVisible(false); + boolean var30 = var26.isDoubleBuffered(); + java.awt.dnd.DropTarget var31 = var26.getDropTarget(); + var26.show(false); + java.awt.Rectangle var34 = var26.getVisibleRect(); + var18.paintImmediately(var34); + java.awt.Rectangle var36 = var18.getBounds(); + var0.scrollRectToVisible(var36); + SpaceWar.SpacePanel var38 = new SpaceWar.SpacePanel(); + java.awt.Color var39 = var38.getBackground(); + var38.repaint(); + var38.setRequestFocusEnabled(false); + var38.setIgnoreRepaint(false); + boolean var45 = var38.requestFocusInWindow(); + float var46 = var38.getAlignmentY(); + java.awt.LayoutManager var47 = var38.getLayout(); + var0.setLayout(var47); + SpaceWar.SpacePanel var49 = new SpaceWar.SpacePanel(); + float var50 = var49.getAlignmentX(); + var49.setVisible(false); + java.awt.Dimension var53 = var49.getPreferredSize(); + java.awt.Toolkit var54 = var49.getToolkit(); + boolean var55 = var49.isFocusable(); + javax.swing.KeyStroke[] var56 = var49.getRegisteredKeyStrokes(); + SpaceWar.SpacePanel var57 = new SpaceWar.SpacePanel(); + float var58 = var57.getAlignmentX(); + SpaceWar.SpacePanel var59 = new SpaceWar.SpacePanel(); + float var60 = var59.getAlignmentX(); + var59.setVisible(false); + java.awt.Dimension var63 = var59.getPreferredSize(); + boolean var64 = var59.getVerifyInputWhenFocusTarget(); + java.awt.Component var67 = var59.findComponentAt(10, 1); + var57.addKeyListener((java.awt.event.KeyListener)var59); + var59.repaint(100, (-1), (-1), 1); + boolean var74 = var49.isAncestorOf((java.awt.Component)var59); + var49.nextFocus(); + var49.disable(); + SpaceWar.SpacePanel var77 = new SpaceWar.SpacePanel(); + float var78 = var77.getAlignmentX(); + var77.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var83 = new SpaceWar.SpacePanel(); + float var84 = var83.getAlignmentX(); + var83.setVisible(false); + SpaceWar.SpacePanel var87 = new SpaceWar.SpacePanel(); + java.awt.Color var88 = var87.getBackground(); + var83.setForeground(var88); + var77.setBackground(var88); + var49.setBackground(var88); + var0.setBackground(var88); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var30 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var31); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var34); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var36); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var39); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var45 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var46 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var47); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var50 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var53); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var54); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var55 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var56); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var58 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var60 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var63); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var64 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var67); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var74 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var78 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var84 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var88); + + } + + public void test376() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test376"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.setInheritsPopupMenu(false); + var0.move(10, 10); + var0.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var0.removeAll(); + java.awt.Point var14 = var0.location(); + SpaceWar.SpacePanel var15 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var16 = new SpaceWar.SpacePanel(); + java.awt.Color var17 = var16.getBackground(); + SpaceWar.SpacePanel var18 = new SpaceWar.SpacePanel(); + float var19 = var18.getAlignmentX(); + var18.setVisible(false); + var18.nextFocus(); + var18.updateUI(); + var18.enableInputMethods(true); + var15.add((java.awt.Component)var16, (java.lang.Object)true); + java.awt.Dimension var27 = var16.getPreferredSize(); + var16.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", (-1.0f), 100.0f); + SpaceWar.SpacePanel var32 = new SpaceWar.SpacePanel(); + float var33 = var32.getAlignmentX(); + var32.setVisible(false); + boolean var36 = var32.isDoubleBuffered(); + SpaceWar.SpacePanel var37 = new SpaceWar.SpacePanel(); + java.awt.Color var38 = var37.getBackground(); + var37.repaint(); + java.lang.Object var40 = var32.getClientProperty((java.lang.Object)var37); + var16.remove((java.awt.Component)var32); + SpaceWar.SpacePanel var42 = new SpaceWar.SpacePanel(); + float var43 = var42.getAlignmentX(); + var42.firePropertyChange("", (-1), 1); + java.awt.event.MouseMotionListener[] var48 = var42.getMouseMotionListeners(); + java.awt.Dimension var49 = var42.getMinimumSize(); + var16.setMaximumSize(var49); + var0.setMinimumSize(var49); + java.awt.Dimension var52 = var0.getSize(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var27); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var33 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var36 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var38); + + // Regression assertion (captures the current behavior of the code) + assertNull(var40); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var43 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var48); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var49); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var52); + + } + + public void test377() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test377"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + java.awt.im.InputMethodRequests var3 = var0.getInputMethodRequests(); + int var4 = var0.countComponents(); + java.awt.event.ComponentListener[] var5 = var0.getComponentListeners(); + java.awt.Dimension var6 = var0.preferredSize(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + } + + public void test378() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test378"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + var0.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + javax.swing.plaf.PanelUI var5 = var0.getUI(); + java.awt.Color var6 = var0.getBackground(); + var0.removeAll(); + var0.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", (short)(-1), (short)100); + var0.setBounds(1, 24, 24, 10); + var0.doLayout(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + } + + public void test379() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test379"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var1 = new SpaceWar.SpacePanel(); + java.awt.Color var2 = var1.getBackground(); + SpaceWar.SpacePanel var3 = new SpaceWar.SpacePanel(); + float var4 = var3.getAlignmentX(); + var3.setVisible(false); + var3.nextFocus(); + var3.updateUI(); + var3.enableInputMethods(true); + var0.add((java.awt.Component)var1, (java.lang.Object)true); + java.awt.Image var14 = var1.createImage(1, (-1)); + java.beans.PropertyChangeListener[] var15 = var1.getPropertyChangeListeners(); + SpaceWar.SpacePanel var16 = new SpaceWar.SpacePanel(); + java.awt.Color var17 = var16.getBackground(); + var16.repaint(); + java.awt.im.InputMethodRequests var19 = var16.getInputMethodRequests(); + int var20 = var16.countComponents(); + java.awt.event.ComponentListener[] var21 = var16.getComponentListeners(); + var16.removeNotify(); + java.awt.Component var25 = var16.getComponentAt(1, (-1)); + SpaceWar.SpacePanel var26 = new SpaceWar.SpacePanel(); + float var27 = var26.getAlignmentX(); + var26.setVisible(false); + SpaceWar.SpacePanel var30 = new SpaceWar.SpacePanel(); + java.awt.Color var31 = var30.getBackground(); + var26.setForeground(var31); + SpaceWar.SpacePanel var33 = new SpaceWar.SpacePanel(); + float var34 = var33.getAlignmentX(); + var33.setVisible(false); + boolean var37 = var33.isDoubleBuffered(); + java.awt.dnd.DropTarget var38 = var33.getDropTarget(); + var33.show(false); + java.awt.Rectangle var41 = var33.getVisibleRect(); + var26.repaint(var41); + java.awt.Component.BaselineResizeBehavior var43 = var26.getBaselineResizeBehavior(); + SpaceWar.SpacePanel var44 = new SpaceWar.SpacePanel(); + float var45 = var44.getAlignmentX(); + var44.setVisible(false); + var44.nextFocus(); + var44.repaint(1L); + SpaceWar.SpacePanel var51 = new SpaceWar.SpacePanel(); + float var52 = var51.getAlignmentX(); + var51.setVisible(false); + boolean var55 = var51.isDoubleBuffered(); + var51.list(); + SpaceWar.SpacePanel var57 = new SpaceWar.SpacePanel(); + float var58 = var57.getAlignmentX(); + var57.setVisible(false); + boolean var61 = var57.isDoubleBuffered(); + java.awt.dnd.DropTarget var62 = var57.getDropTarget(); + var57.show(false); + java.awt.Rectangle var65 = var57.getVisibleRect(); + java.awt.Rectangle var66 = var51.getBounds(var65); + var44.setBounds(var66); + var26.paintImmediately(var66); + var16.repaint(var66); + java.awt.Dimension var70 = var16.minimumSize(); + var1.setMinimumSize(var70); + boolean var72 = var1.isLightweight(); + boolean var73 = var1.isFocusTraversalPolicySet(); + int var74 = var1.getComponentCount(); + // The following exception was thrown during execution. + // This behavior will recorded for regression testing. + try { + java.awt.Point var75 = var1.getLocationOnScreen(); + fail("Expected exception of type java.awt.IllegalComponentStateException"); + } catch (java.awt.IllegalComponentStateException e) { + // Expected exception. + } + + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var2); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var21); + + // Regression assertion (captures the current behavior of the code) + assertNull(var25); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var31); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var34 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var38); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var41); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var43); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var45 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var52 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var55 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var58 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var61 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var62); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var65); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var66); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var70); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var72 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var73 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var74 == 0); + + } + + public void test380() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test380"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + SpaceWar.SpacePanel var2 = new SpaceWar.SpacePanel(); + float var3 = var2.getAlignmentX(); + var2.setVisible(false); + java.awt.Dimension var6 = var2.getPreferredSize(); + boolean var7 = var2.getVerifyInputWhenFocusTarget(); + java.awt.Component var10 = var2.findComponentAt(10, 1); + var0.addKeyListener((java.awt.event.KeyListener)var2); + SpaceWar.SpacePanel var12 = new SpaceWar.SpacePanel(); + float var13 = var12.getAlignmentX(); + SpaceWar.SpacePanel var14 = new SpaceWar.SpacePanel(); + float var15 = var14.getAlignmentX(); + var14.setVisible(false); + java.awt.Dimension var18 = var14.getPreferredSize(); + boolean var19 = var14.getVerifyInputWhenFocusTarget(); + java.awt.Component var22 = var14.findComponentAt(10, 1); + var12.addKeyListener((java.awt.event.KeyListener)var14); + var14.repaint(100, (-1), (-1), 1); + java.awt.image.ColorModel var29 = var14.getColorModel(); + SpaceWar.SpacePanel var30 = new SpaceWar.SpacePanel(); + float var31 = var30.getAlignmentX(); + var30.setVisible(false); + boolean var34 = var30.isDoubleBuffered(); + var30.list(); + SpaceWar.SpacePanel var36 = new SpaceWar.SpacePanel(); + float var37 = var36.getAlignmentX(); + var36.setVisible(false); + boolean var40 = var36.isDoubleBuffered(); + java.awt.dnd.DropTarget var41 = var36.getDropTarget(); + var36.show(false); + java.awt.Rectangle var44 = var36.getVisibleRect(); + java.awt.image.BufferedImage var46 = var36.loadImg("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + boolean var47 = var30.isAncestorOf((java.awt.Component)var36); + javax.swing.InputVerifier var48 = var36.getInputVerifier(); + var2.putClientProperty((java.lang.Object)var14, (java.lang.Object)var36); + java.awt.Image var52 = var36.createImage(0, 25); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var29); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var31 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var34 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var40 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var41); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var44); + + // Regression assertion (captures the current behavior of the code) + assertNull(var46); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var47 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var48); + + // Regression assertion (captures the current behavior of the code) + assertNull(var52); + + } + + public void test381() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test381"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + float var7 = var6.getAlignmentX(); + var6.setVisible(false); + SpaceWar.SpacePanel var10 = new SpaceWar.SpacePanel(); + java.awt.Color var11 = var10.getBackground(); + var6.setForeground(var11); + var0.setBackground(var11); + java.awt.Point var14 = var0.location(); + float var15 = var0.getAlignmentX(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == 0.5f); + + } + + public void test382() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test382"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + var0.list(); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + float var7 = var6.getAlignmentX(); + var6.setVisible(false); + boolean var10 = var6.isDoubleBuffered(); + java.awt.dnd.DropTarget var11 = var6.getDropTarget(); + var6.show(false); + java.awt.Rectangle var14 = var6.getVisibleRect(); + java.awt.Rectangle var15 = var0.getBounds(var14); + javax.swing.JToolTip var16 = var0.createToolTip(); + java.awt.Dimension var17 = var0.minimumSize(); + SpaceWar.SpacePanel var18 = new SpaceWar.SpacePanel(); + float var19 = var18.getAlignmentX(); + var18.setVisible(false); + var18.setInheritsPopupMenu(false); + var18.setFocusTraversalPolicyProvider(true); + java.awt.Container var26 = var18.getFocusCycleRootAncestor(); + SpaceWar.SpacePanel var27 = new SpaceWar.SpacePanel(); + float var28 = var27.getAlignmentX(); + var27.removeNotify(); + SpaceWar.SpacePanel var30 = new SpaceWar.SpacePanel(); + float var31 = var30.getAlignmentX(); + var30.setVisible(false); + boolean var34 = var30.isDoubleBuffered(); + var30.list(); + float var36 = var30.getAlignmentY(); + java.awt.Insets var37 = var30.getInsets(); + java.awt.Insets var38 = var27.getInsets(var37); + java.awt.Insets var39 = var18.getInsets(var38); + java.awt.Insets var40 = var0.getInsets(var38); + var0.setSize(2, 1); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var28 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var31 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var34 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var36 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var37); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var38); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var39); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var40); + + } + + public void test383() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test383"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.setEnabled(false); + var0.invalidate(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + var8.nextFocus(); + var8.updateUI(); + var8.enableInputMethods(true); + SpaceWar.SpacePanel var16 = new SpaceWar.SpacePanel(); + float var17 = var16.getAlignmentX(); + boolean var18 = var16.hasFocus(); + java.awt.Insets var19 = var16.getInsets(); + java.awt.Insets var20 = var8.getInsets(var19); + boolean var21 = var8.isManagingFocus(); + java.awt.Image var24 = var8.createImage(1, 10); + SpaceWar.SpacePanel var25 = new SpaceWar.SpacePanel(); + float var26 = var25.getAlignmentX(); + var25.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var31 = new SpaceWar.SpacePanel(); + float var32 = var31.getAlignmentX(); + var31.setVisible(false); + java.awt.Dimension var35 = var31.getPreferredSize(); + var25.setMaximumSize(var35); + boolean var37 = var25.getVerifyInputWhenFocusTarget(); + int var38 = var25.getX(); + SpaceWar.SpacePanel var39 = new SpaceWar.SpacePanel(); + float var40 = var39.getAlignmentX(); + var39.setVisible(false); + var39.setEnabled(false); + var8.add((java.awt.Component)var25, (java.lang.Object)false); + boolean var46 = var8.isForegroundSet(); + java.awt.Component var47 = var0.add("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", (java.awt.Component)var8); + var8.requestFocus(); + var8.setFocusTraversalKeysEnabled(false); + var8.setAlignmentY(0.0f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var32 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var35); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var38 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var40 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var46 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var47); + + } + + public void test384() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test384"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.updateUI(); + var0.enableInputMethods(true); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + boolean var10 = var8.hasFocus(); + java.awt.Insets var11 = var8.getInsets(); + java.awt.Insets var12 = var0.getInsets(var11); + javax.swing.JRootPane var13 = var0.getRootPane(); + int var14 = var0.getY(); + var0.setLocation(2, 2); + var0.layout(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == 0); + + } + + public void test385() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test385"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.requestFocus(); + boolean var6 = var0.isBackgroundSet(); + SpaceWar.SpacePanel var7 = new SpaceWar.SpacePanel(); + java.awt.Color var8 = var7.getBackground(); + var7.repaint(); + var7.setRequestFocusEnabled(false); + var7.reshape(100, 0, 100, 0); + SpaceWar.SpacePanel var17 = new SpaceWar.SpacePanel(); + float var18 = var17.getAlignmentX(); + var17.setVisible(false); + var17.setInheritsPopupMenu(false); + boolean var23 = var17.isDoubleBuffered(); + SpaceWar.SpacePanel var24 = new SpaceWar.SpacePanel(); + float var25 = var24.getAlignmentX(); + var24.setVisible(false); + var24.nextFocus(); + var24.reshape((-1), 1, (-1), 10); + var24.disable(); + java.awt.LayoutManager var35 = var24.getLayout(); + var17.setLayout(var35); + var0.add((java.awt.Component)var7, (java.lang.Object)var35); + var7.hide(); + java.awt.Component var41 = var7.locate(2, 24); + var7.setDebugGraphicsOptions(400); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var35); + + // Regression assertion (captures the current behavior of the code) + assertNull(var41); + + } + + public void test386() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test386"); + + + SpaceWar.Enemy var2 = new SpaceWar.Enemy(0, 10); + var2.hit(); + double var4 = var2.getX(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 261.2028294988706d); + + } + + public void test387() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test387"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.requestFocus(); + boolean var6 = var0.getInheritsPopupMenu(); + boolean var7 = var0.isFocusOwner(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + var8.nextFocus(); + var8.updateUI(); + var8.enableInputMethods(true); + java.awt.Point var17 = var8.getMousePosition(false); + java.awt.Component.BaselineResizeBehavior var18 = var8.getBaselineResizeBehavior(); + boolean var19 = var8.isMaximumSizeSet(); + SpaceWar.SpacePanel var20 = new SpaceWar.SpacePanel(); + float var21 = var20.getAlignmentX(); + var20.setVisible(false); + boolean var24 = var20.isDoubleBuffered(); + var20.list(); + SpaceWar.SpacePanel var26 = new SpaceWar.SpacePanel(); + float var27 = var26.getAlignmentX(); + var26.setVisible(false); + boolean var30 = var26.isDoubleBuffered(); + java.awt.dnd.DropTarget var31 = var26.getDropTarget(); + var26.show(false); + java.awt.Rectangle var34 = var26.getVisibleRect(); + java.awt.Rectangle var35 = var20.getBounds(var34); + javax.swing.JToolTip var36 = var20.createToolTip(); + java.awt.Dimension var37 = var20.minimumSize(); + boolean var39 = var20.requestFocus(false); + java.awt.Dimension var40 = var20.getMaximumSize(); + var0.putClientProperty((java.lang.Object)var8, (java.lang.Object)var20); + javax.swing.InputVerifier var42 = var0.getInputVerifier(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var24 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var30 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var31); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var34); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var35); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var36); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var37); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var39 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var40); + + // Regression assertion (captures the current behavior of the code) + assertNull(var42); + + } + + public void test388() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test388"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + float var7 = var6.getAlignmentX(); + var6.setVisible(false); + java.awt.Dimension var10 = var6.getPreferredSize(); + var0.setMaximumSize(var10); + boolean var12 = var0.getVerifyInputWhenFocusTarget(); + javax.accessibility.AccessibleContext var13 = var0.getAccessibleContext(); + boolean var14 = var0.isOpaque(); + java.awt.Container var15 = var0.getParent(); + SpaceWar.SpacePanel var16 = new SpaceWar.SpacePanel(); + float var17 = var16.getAlignmentX(); + var16.setVisible(false); + var16.nextFocus(); + var16.updateUI(); + var16.enableInputMethods(true); + java.awt.Point var25 = var16.getMousePosition(false); + SpaceWar.SpacePanel var26 = new SpaceWar.SpacePanel(); + float var27 = var26.getAlignmentX(); + var26.setVisible(false); + boolean var30 = var26.isDoubleBuffered(); + java.awt.dnd.DropTarget var31 = var26.getDropTarget(); + var26.show(false); + boolean var34 = var26.isPaintingForPrint(); + boolean var35 = var26.getIgnoreRepaint(); + var26.repaint(100, 10, 100, 0); + SpaceWar.SpacePanel var41 = new SpaceWar.SpacePanel(); + float var42 = var41.getAlignmentX(); + var41.setVisible(false); + boolean var45 = var41.isDoubleBuffered(); + var41.list(); + SpaceWar.SpacePanel var47 = new SpaceWar.SpacePanel(); + float var48 = var47.getAlignmentX(); + var47.setVisible(false); + boolean var51 = var47.isDoubleBuffered(); + java.awt.dnd.DropTarget var52 = var47.getDropTarget(); + var47.show(false); + java.awt.Rectangle var55 = var47.getVisibleRect(); + java.awt.Rectangle var56 = var41.getBounds(var55); + javax.swing.JToolTip var57 = var41.createToolTip(); + var41.firePropertyChange("", false, false); + var41.validate(); + SpaceWar.SpacePanel var63 = new SpaceWar.SpacePanel(); + float var64 = var63.getAlignmentX(); + var63.setVisible(false); + boolean var67 = var63.isDoubleBuffered(); + java.awt.dnd.DropTarget var68 = var63.getDropTarget(); + var63.show(false); + boolean var71 = var63.isPaintingForPrint(); + SpaceWar.SpacePanel var72 = new SpaceWar.SpacePanel(); + float var73 = var72.getAlignmentX(); + var72.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var78 = var72.getMouseListeners(); + int var79 = var72.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var80 = var72.getInputMethodRequests(); + var63.addKeyListener((java.awt.event.KeyListener)var72); + var72.repaint(); + java.awt.Point var83 = var72.location(); + java.awt.Component var84 = var41.getComponentAt(var83); + var26.setLocation(var83); + java.awt.Component var86 = var16.getComponentAt(var83); + var0.setLocation(var83); + int var88 = var0.getDebugGraphicsOptions(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNull(var25); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var30 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var31); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var34 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var35 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var42 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var45 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var48 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var51 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var52); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var55); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var56); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var57); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var64 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var67 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var68); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var71 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var73 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var78); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var79 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var80); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var83); + + // Regression assertion (captures the current behavior of the code) + assertNull(var84); + + // Regression assertion (captures the current behavior of the code) + assertNull(var86); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var88 == 0); + + } + + public void test389() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test389"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.reshape((-1), 1, (-1), 10); + var0.disable(); + var0.show(); + SpaceWar.SpacePanel var12 = new SpaceWar.SpacePanel(); + float var13 = var12.getAlignmentX(); + var12.setVisible(false); + boolean var16 = var12.isDoubleBuffered(); + var12.list(); + SpaceWar.SpacePanel var18 = new SpaceWar.SpacePanel(); + float var19 = var18.getAlignmentX(); + var18.setVisible(false); + boolean var22 = var18.isDoubleBuffered(); + java.awt.dnd.DropTarget var23 = var18.getDropTarget(); + var18.show(false); + java.awt.Rectangle var26 = var18.getVisibleRect(); + java.awt.Rectangle var27 = var12.getBounds(var26); + javax.swing.JToolTip var28 = var12.createToolTip(); + var12.firePropertyChange("", false, false); + var12.validate(); + SpaceWar.SpacePanel var34 = new SpaceWar.SpacePanel(); + float var35 = var34.getAlignmentX(); + var34.setVisible(false); + boolean var38 = var34.isDoubleBuffered(); + java.awt.dnd.DropTarget var39 = var34.getDropTarget(); + var34.show(false); + boolean var42 = var34.isPaintingForPrint(); + SpaceWar.SpacePanel var43 = new SpaceWar.SpacePanel(); + float var44 = var43.getAlignmentX(); + var43.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var49 = var43.getMouseListeners(); + int var50 = var43.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var51 = var43.getInputMethodRequests(); + var34.addKeyListener((java.awt.event.KeyListener)var43); + var43.repaint(); + java.awt.Point var54 = var43.location(); + java.awt.Component var55 = var12.getComponentAt(var54); + java.awt.Point var56 = var0.getLocation(var54); + var0.setAlignmentY(0.5f); + SpaceWar.SpacePanel var59 = new SpaceWar.SpacePanel(); + java.awt.Color var60 = var59.getBackground(); + var59.repaint(); + java.awt.im.InputMethodRequests var62 = var59.getInputMethodRequests(); + var59.setDoubleBuffered(true); + SpaceWar.SpacePanel var65 = new SpaceWar.SpacePanel(); + float var66 = var65.getAlignmentX(); + boolean var67 = var65.hasFocus(); + java.awt.Insets var68 = var65.getInsets(); + java.awt.Insets var69 = var59.getInsets(var68); + java.awt.Insets var70 = var0.getInsets(var68); + boolean var71 = var0.isValid(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var22 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var23); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var27); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var28); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var35 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var38 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var39); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var42 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var44 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var49); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var50 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var51); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var54); + + // Regression assertion (captures the current behavior of the code) + assertNull(var55); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var56); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var60); + + // Regression assertion (captures the current behavior of the code) + assertNull(var62); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var66 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var67 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var68); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var69); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var70); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var71 == false); + + } + + public void test390() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test390"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + java.awt.Dimension var4 = var0.getPreferredSize(); + java.awt.Toolkit var5 = var0.getToolkit(); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + var6.setName(""); + int var9 = var6.getX(); + SpaceWar.SpacePanel var10 = new SpaceWar.SpacePanel(); + float var11 = var10.getAlignmentX(); + var10.setVisible(false); + var10.nextFocus(); + SpaceWar.SpacePanel var15 = new SpaceWar.SpacePanel(); + float var16 = var15.getAlignmentX(); + var15.setVisible(false); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + java.awt.Color var20 = var19.getBackground(); + var15.setForeground(var20); + var10.setBackground(var20); + var6.setBackground(var20); + var0.setForeground(var20); + SpaceWar.SpacePanel var25 = new SpaceWar.SpacePanel(); + float var26 = var25.getAlignmentX(); + var25.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var31 = new SpaceWar.SpacePanel(); + float var32 = var31.getAlignmentX(); + var31.setVisible(false); + java.awt.Dimension var35 = var31.getPreferredSize(); + var25.setMaximumSize(var35); + boolean var37 = var25.getVerifyInputWhenFocusTarget(); + javax.accessibility.AccessibleContext var38 = var25.getAccessibleContext(); + boolean var39 = var25.isDoubleBuffered(); + java.awt.Rectangle var40 = var25.getVisibleRect(); + var0.scrollRectToVisible(var40); + SpaceWar.SpacePanel var42 = new SpaceWar.SpacePanel(); + float var43 = var42.getAlignmentX(); + var42.setVisible(false); + java.awt.Dimension var46 = var42.getPreferredSize(); + java.awt.Toolkit var47 = var42.getToolkit(); + SpaceWar.SpacePanel var48 = new SpaceWar.SpacePanel(); + var48.setName(""); + int var51 = var48.getX(); + SpaceWar.SpacePanel var52 = new SpaceWar.SpacePanel(); + float var53 = var52.getAlignmentX(); + var52.setVisible(false); + var52.nextFocus(); + SpaceWar.SpacePanel var57 = new SpaceWar.SpacePanel(); + float var58 = var57.getAlignmentX(); + var57.setVisible(false); + SpaceWar.SpacePanel var61 = new SpaceWar.SpacePanel(); + java.awt.Color var62 = var61.getBackground(); + var57.setForeground(var62); + var52.setBackground(var62); + var48.setBackground(var62); + var42.setForeground(var62); + SpaceWar.SpacePanel var67 = new SpaceWar.SpacePanel(); + float var68 = var67.getAlignmentX(); + var67.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var73 = new SpaceWar.SpacePanel(); + float var74 = var73.getAlignmentX(); + var73.setVisible(false); + java.awt.Dimension var77 = var73.getPreferredSize(); + var67.setMaximumSize(var77); + boolean var79 = var67.getVerifyInputWhenFocusTarget(); + javax.accessibility.AccessibleContext var80 = var67.getAccessibleContext(); + boolean var81 = var67.isDoubleBuffered(); + java.awt.Rectangle var82 = var67.getVisibleRect(); + var42.scrollRectToVisible(var82); + var0.removeKeyListener((java.awt.event.KeyListener)var42); + javax.swing.InputVerifier var85 = var0.getInputVerifier(); + var0.enable(); + var0.repaint(400, 10, 0, 1); + var0.enableInputMethods(true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var4); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var32 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var35); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var38); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var39 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var40); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var43 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var46); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var47); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var51 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var53 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var58 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var62); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var68 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var74 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var77); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var79 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var80); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var81 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var82); + + // Regression assertion (captures the current behavior of the code) + assertNull(var85); + + } + + public void test391() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test391"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.updateUI(); + var0.enableInputMethods(true); + var0.setSize((-1), 1); + boolean var13 = var0.contains(1, 1); + javax.swing.TransferHandler var14 = var0.getTransferHandler(); + SpaceWar.SpacePanel var15 = new SpaceWar.SpacePanel(); + float var16 = var15.getAlignmentX(); + var15.setVisible(false); + boolean var19 = var15.isDoubleBuffered(); + var15.enable(false); + java.lang.Object var22 = var0.getClientProperty((java.lang.Object)false); + SpaceWar.SpacePanel var23 = new SpaceWar.SpacePanel(); + float var24 = var23.getAlignmentX(); + var23.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var29 = var23.getMouseListeners(); + java.awt.Dimension var30 = var23.getPreferredSize(); + java.util.Locale var31 = var23.getLocale(); + var23.setFocusable(true); + var23.setSize(3, 10); + SpaceWar.SpacePanel var37 = new SpaceWar.SpacePanel(); + float var38 = var37.getAlignmentX(); + var37.setVisible(false); + java.awt.Dimension var41 = var37.getPreferredSize(); + boolean var42 = var37.getVerifyInputWhenFocusTarget(); + java.awt.Dimension var43 = var37.size(); + var23.setSize(var43); + var0.setPreferredSize(var43); + var0.transferFocus(); + SpaceWar.SpacePanel var48 = new SpaceWar.SpacePanel(); + java.awt.Color var49 = var48.getBackground(); + boolean var52 = var48.inside(0, (-1)); + SpaceWar.SpacePanel var53 = new SpaceWar.SpacePanel(); + float var54 = var53.getAlignmentX(); + var53.setVisible(false); + SpaceWar.SpacePanel var57 = new SpaceWar.SpacePanel(); + java.awt.Color var58 = var57.getBackground(); + var53.setForeground(var58); + var48.setForeground(var58); + java.awt.image.VolatileImage var63 = var48.createVolatileImage(400, (-1)); + java.util.Set var65 = var48.getFocusTraversalKeys(2); + // The following exception was thrown during execution. + // This behavior will recorded for regression testing. + try { + var0.setFocusTraversalKeys(505, var65); + fail("Expected exception of type java.lang.IllegalArgumentException"); + } catch (java.lang.IllegalArgumentException e) { + // Expected exception. + } + + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var24 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var29); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var30); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var31); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var38 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var41); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var42 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var43); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var49); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var52 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var54 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var58); + + // Regression assertion (captures the current behavior of the code) + assertNull(var63); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var65); + + } + + public void test392() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test392"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.updateUI(); + var0.enableInputMethods(true); + java.awt.Image var10 = var0.createImage(25, 500); + SpaceWar.SpacePanel var11 = new SpaceWar.SpacePanel(); + float var12 = var11.getAlignmentX(); + var11.setVisible(false); + boolean var15 = var11.isDoubleBuffered(); + java.awt.dnd.DropTarget var16 = var11.getDropTarget(); + var11.show(false); + boolean var19 = var11.isPaintingForPrint(); + SpaceWar.SpacePanel var20 = new SpaceWar.SpacePanel(); + float var21 = var20.getAlignmentX(); + var20.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var26 = var20.getMouseListeners(); + int var27 = var20.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var28 = var20.getInputMethodRequests(); + var11.addKeyListener((java.awt.event.KeyListener)var20); + SpaceWar.SpacePanel var30 = new SpaceWar.SpacePanel(); + float var31 = var30.getAlignmentX(); + var30.setVisible(false); + boolean var34 = var30.isDoubleBuffered(); + var30.list(); + float var36 = var30.getAlignmentY(); + boolean var37 = var20.isFocusCycleRoot((java.awt.Container)var30); + var30.firePropertyChange("", 1L, 1L); + var30.setVerifyInputWhenFocusTarget(true); + var30.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", '4', '4'); + java.awt.Point var48 = var30.getLocation(); + var30.transferFocusUpCycle(); + boolean var51 = var30.areFocusTraversalKeysSet(0); + int var52 = var0.getComponentZOrder((java.awt.Component)var30); + var30.setOpaque(false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var28); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var31 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var34 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var36 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var48); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var51 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var52 == (-1)); + + } + + public void test393() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test393"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + SpaceWar.SpacePanel var2 = new SpaceWar.SpacePanel(); + float var3 = var2.getAlignmentX(); + var2.setVisible(false); + java.awt.Dimension var6 = var2.getPreferredSize(); + boolean var7 = var2.getVerifyInputWhenFocusTarget(); + java.awt.Component var10 = var2.findComponentAt(10, 1); + var0.addKeyListener((java.awt.event.KeyListener)var2); + java.lang.String var12 = var2.getUIClassID(); + SpaceWar.SpacePanel var13 = new SpaceWar.SpacePanel(); + float var14 = var13.getAlignmentX(); + SpaceWar.SpacePanel var15 = new SpaceWar.SpacePanel(); + float var16 = var15.getAlignmentX(); + var15.setVisible(false); + java.awt.Dimension var19 = var15.getPreferredSize(); + boolean var20 = var15.getVerifyInputWhenFocusTarget(); + java.awt.Component var23 = var15.findComponentAt(10, 1); + var13.addKeyListener((java.awt.event.KeyListener)var15); + var15.repaint(100, (-1), (-1), 1); + SpaceWar.SpacePanel var30 = new SpaceWar.SpacePanel(); + java.awt.Color var31 = var30.getBackground(); + var30.repaint(); + java.awt.im.InputMethodRequests var33 = var30.getInputMethodRequests(); + java.awt.GraphicsConfiguration var34 = var30.getGraphicsConfiguration(); + var15.remove((java.awt.Component)var30); + var30.setName(""); + java.lang.String var38 = var30.getName(); + var2.addKeyListener((java.awt.event.KeyListener)var30); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var12 + "' != '" + "PanelUI"+ "'", var12.equals("PanelUI")); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var23); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var31); + + // Regression assertion (captures the current behavior of the code) + assertNull(var33); + + // Regression assertion (captures the current behavior of the code) + assertNull(var34); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var38 + "' != '" + ""+ "'", var38.equals("")); + + } + + public void test394() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test394"); + + + SpaceWar.Player var0 = new SpaceWar.Player(); + int var1 = var0.getR(); + int var2 = var0.getLives(); + var0.setUp(false); + boolean var5 = var0.isDead(); + var0.setRigth(false); + boolean var8 = var0.isRecovering(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 25); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var2 == 3); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + } + + public void test395() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test395"); + + + SpaceWar.Bullet var3 = new SpaceWar.Bullet(509.27513824562607d, 2, 10); + double var4 = var3.getX(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 2.0d); + + } + + public void test396() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test396"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var6 = var0.getUI(); + java.awt.im.InputMethodRequests var7 = var0.getInputMethodRequests(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + var8.nextFocus(); + var8.updateUI(); + var8.enableInputMethods(true); + var8.setSize((-1), 1); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + var19.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var0.add((java.awt.Component)var8, (java.lang.Object)"SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + java.awt.ComponentOrientation var25 = var8.getComponentOrientation(); + java.beans.VetoableChangeListener[] var26 = var8.getVetoableChangeListeners(); + int var27 = var8.getHeight(); + var8.enable(true); + boolean var30 = var8.isFocusTraversalPolicyProvider(); + SpaceWar.SpacePanel var31 = new SpaceWar.SpacePanel(); + java.awt.Color var32 = var31.getBackground(); + var31.repaint(); + var31.setRequestFocusEnabled(false); + var31.reshape(100, 0, 100, 0); + var31.requestFocus(); + var31.firePropertyChange("hi!", '4', ' '); + java.awt.Point var46 = var31.getLocation(); + var8.setLocation(var46); + boolean var48 = var8.isManagingFocus(); + java.lang.String var49 = var8.getUIClassID(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var25); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == 1); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var30 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var32); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var46); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var48 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var49 + "' != '" + "PanelUI"+ "'", var49.equals("PanelUI")); + + } + + public void test397() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test397"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + var0.show(false); + boolean var8 = var0.isPaintingForPrint(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var15 = var9.getMouseListeners(); + int var16 = var9.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var17 = var9.getInputMethodRequests(); + var0.addKeyListener((java.awt.event.KeyListener)var9); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + float var20 = var19.getAlignmentX(); + var19.setVisible(false); + boolean var23 = var19.isDoubleBuffered(); + var19.list(); + float var25 = var19.getAlignmentY(); + boolean var26 = var9.isFocusCycleRoot((java.awt.Container)var19); + SpaceWar.SpacePanel var28 = new SpaceWar.SpacePanel(); + float var29 = var28.getAlignmentX(); + var28.setVisible(false); + var28.nextFocus(); + var28.updateUI(); + java.awt.Component var34 = var9.add("", (java.awt.Component)var28); + java.awt.ComponentOrientation var35 = var28.getComponentOrientation(); + boolean var36 = var28.isFocusable(); + SpaceWar.SpacePanel var37 = new SpaceWar.SpacePanel(); + float var38 = var37.getAlignmentX(); + var37.setVisible(false); + var37.nextFocus(); + var37.reshape((-1), 1, (-1), 10); + var37.disable(); + java.awt.LayoutManager var48 = var37.getLayout(); + java.awt.Container var49 = var37.getParent(); + boolean var50 = var37.isOptimizedDrawingEnabled(); + var28.addKeyListener((java.awt.event.KeyListener)var37); + var37.setFocusTraversalPolicyProvider(true); + SpaceWar.SpacePanel var54 = new SpaceWar.SpacePanel(); + float var55 = var54.getAlignmentX(); + var54.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var60 = new SpaceWar.SpacePanel(); + float var61 = var60.getAlignmentX(); + var60.setVisible(false); + java.awt.Dimension var64 = var60.getPreferredSize(); + var54.setMaximumSize(var64); + boolean var66 = var54.getVerifyInputWhenFocusTarget(); + boolean var67 = var54.isFontSet(); + boolean var68 = var54.getIgnoreRepaint(); + java.awt.Component var71 = var54.locate(1, 25); + boolean var72 = var54.isLightweight(); + boolean var75 = var54.inside(0, 1); + // The following exception was thrown during execution. + // This behavior will recorded for regression testing. + try { + var37.setComponentZOrder((java.awt.Component)var54, 2); + fail("Expected exception of type java.lang.IllegalArgumentException"); + } catch (java.lang.IllegalArgumentException e) { + // Expected exception. + } + + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var29 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var34); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var35); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var36 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var38 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var48); + + // Regression assertion (captures the current behavior of the code) + assertNull(var49); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var50 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var55 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var61 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var64); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var66 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var67 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var68 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var71); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var72 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var75 == false); + + } + + public void test398() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test398"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + var0.show(false); + boolean var8 = var0.isPaintingForPrint(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var15 = var9.getMouseListeners(); + int var16 = var9.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var17 = var9.getInputMethodRequests(); + var0.addKeyListener((java.awt.event.KeyListener)var9); + java.awt.Container var19 = var9.getFocusCycleRootAncestor(); + boolean var20 = var9.hasFocus(); + SpaceWar.SpacePanel var21 = new SpaceWar.SpacePanel(); + float var22 = var21.getAlignmentX(); + var21.setVisible(false); + var21.setInheritsPopupMenu(false); + boolean var27 = var21.isDoubleBuffered(); + boolean var28 = var21.isMinimumSizeSet(); + SpaceWar.SpacePanel var29 = new SpaceWar.SpacePanel(); + float var30 = var29.getAlignmentX(); + var29.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var35 = new SpaceWar.SpacePanel(); + float var36 = var35.getAlignmentX(); + var35.setVisible(false); + java.awt.Dimension var39 = var35.getPreferredSize(); + var29.setMaximumSize(var39); + boolean var41 = var29.getVerifyInputWhenFocusTarget(); + javax.accessibility.AccessibleContext var42 = var29.getAccessibleContext(); + boolean var43 = var29.isDoubleBuffered(); + java.awt.Rectangle var44 = var29.getVisibleRect(); + var21.setBounds(var44); + java.lang.Object var46 = var9.getClientProperty((java.lang.Object)var21); + java.awt.Insets var47 = var9.insets(); + var9.doLayout(); + java.awt.Dimension var49 = var9.size(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var22 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var28 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var30 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var36 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var39); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var41 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var42); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var43 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var44); + + // Regression assertion (captures the current behavior of the code) + assertNull(var46); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var47); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var49); + + } + + public void test399() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test399"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + var0.show(false); + boolean var8 = var0.isPaintingForPrint(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var15 = var9.getMouseListeners(); + int var16 = var9.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var17 = var9.getInputMethodRequests(); + var0.addKeyListener((java.awt.event.KeyListener)var9); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + float var20 = var19.getAlignmentX(); + var19.setVisible(false); + boolean var23 = var19.isDoubleBuffered(); + var19.list(); + float var25 = var19.getAlignmentY(); + boolean var26 = var9.isFocusCycleRoot((java.awt.Container)var19); + javax.swing.JPopupMenu var27 = var19.getComponentPopupMenu(); + boolean var28 = var19.hasFocus(); + var19.repaint((-1L)); + java.awt.event.InputMethodListener[] var31 = var19.getInputMethodListeners(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var27); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var28 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var31); + + } + + public void test400() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test400"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + var0.show(false); + boolean var8 = var0.isPaintingForPrint(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var15 = var9.getMouseListeners(); + int var16 = var9.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var17 = var9.getInputMethodRequests(); + var0.addKeyListener((java.awt.event.KeyListener)var9); + boolean var19 = var0.isDisplayable(); + java.awt.Dimension var20 = var0.getPreferredSize(); + java.awt.Dimension var21 = var0.preferredSize(); + var0.revalidate(); + var0.grabFocus(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var21); + + } + + public void test401() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test401"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.requestFocus(); + boolean var6 = var0.getInheritsPopupMenu(); + boolean var7 = var0.isFocusOwner(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + var8.nextFocus(); + var8.updateUI(); + var8.enableInputMethods(true); + java.awt.Point var17 = var8.getMousePosition(false); + java.awt.Component.BaselineResizeBehavior var18 = var8.getBaselineResizeBehavior(); + boolean var19 = var8.isMaximumSizeSet(); + SpaceWar.SpacePanel var20 = new SpaceWar.SpacePanel(); + float var21 = var20.getAlignmentX(); + var20.setVisible(false); + boolean var24 = var20.isDoubleBuffered(); + var20.list(); + SpaceWar.SpacePanel var26 = new SpaceWar.SpacePanel(); + float var27 = var26.getAlignmentX(); + var26.setVisible(false); + boolean var30 = var26.isDoubleBuffered(); + java.awt.dnd.DropTarget var31 = var26.getDropTarget(); + var26.show(false); + java.awt.Rectangle var34 = var26.getVisibleRect(); + java.awt.Rectangle var35 = var20.getBounds(var34); + javax.swing.JToolTip var36 = var20.createToolTip(); + java.awt.Dimension var37 = var20.minimumSize(); + boolean var39 = var20.requestFocus(false); + java.awt.Dimension var40 = var20.getMaximumSize(); + var0.putClientProperty((java.lang.Object)var8, (java.lang.Object)var20); + java.awt.image.VolatileImage var44 = var20.createVolatileImage(100, 499); + var20.resize(500, 399); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var24 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var30 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var31); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var34); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var35); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var36); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var37); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var39 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var40); + + // Regression assertion (captures the current behavior of the code) + assertNull(var44); + + } + + public void test402() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test402"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + var0.show(false); + boolean var8 = var0.isPaintingForPrint(); + javax.swing.TransferHandler var9 = var0.getTransferHandler(); + java.util.Locale var10 = var0.getLocale(); + var0.removeAll(); + var0.enableInputMethods(true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var9); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var10); + + } + + public void test403() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test403"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var6 = var0.getMouseListeners(); + int var7 = var0.getDebugGraphicsOptions(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + boolean var12 = var8.isDoubleBuffered(); + java.awt.dnd.DropTarget var13 = var8.getDropTarget(); + var8.show(false); + java.awt.Rectangle var16 = var8.getVisibleRect(); + var0.paintImmediately(var16); + java.awt.Rectangle var18 = var0.getBounds(); + java.awt.Component var21 = var0.getComponentAt((-1), 25); + java.awt.Insets var22 = var0.getInsets(); + SpaceWar.SpacePanel var23 = new SpaceWar.SpacePanel(); + float var24 = var23.getAlignmentX(); + SpaceWar.SpacePanel var25 = new SpaceWar.SpacePanel(); + float var26 = var25.getAlignmentX(); + var25.setVisible(false); + java.awt.Dimension var29 = var25.getPreferredSize(); + boolean var30 = var25.getVerifyInputWhenFocusTarget(); + java.awt.Component var33 = var25.findComponentAt(10, 1); + var23.addKeyListener((java.awt.event.KeyListener)var25); + var25.repaint(100, (-1), (-1), 1); + java.awt.image.ColorModel var40 = var25.getColorModel(); + boolean var41 = var25.isFocusTraversalPolicyProvider(); + var25.show(false); + boolean var44 = var25.isPreferredSizeSet(); + SpaceWar.SpacePanel var45 = new SpaceWar.SpacePanel(); + float var46 = var45.getAlignmentX(); + var45.setVisible(false); + boolean var49 = var45.isDoubleBuffered(); + var45.list(); + float var51 = var45.getAlignmentY(); + java.awt.Insets var52 = var45.getInsets(); + SpaceWar.SpacePanel var53 = new SpaceWar.SpacePanel(); + float var54 = var53.getAlignmentX(); + var53.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var59 = new SpaceWar.SpacePanel(); + float var60 = var59.getAlignmentX(); + var59.setVisible(false); + java.awt.Dimension var63 = var59.getPreferredSize(); + var53.setMaximumSize(var63); + java.awt.Dimension var65 = var45.getSize(var63); + var45.setFocusTraversalKeysEnabled(false); + SpaceWar.SpacePanel var68 = new SpaceWar.SpacePanel(); + var68.setName(""); + java.awt.Toolkit var71 = var68.getToolkit(); + var68.setEnabled(false); + var68.removeNotify(); + boolean var75 = var68.isDisplayable(); + SpaceWar.SpacePanel var76 = new SpaceWar.SpacePanel(); + java.awt.Color var77 = var76.getBackground(); + var76.repaint(); + var76.setRequestFocusEnabled(false); + var76.reshape(100, 0, 100, 0); + var76.requestFocus(); + java.awt.Rectangle var87 = var76.getVisibleRect(); + java.awt.Rectangle var88 = var76.getBounds(); + java.awt.im.InputMethodRequests var89 = var76.getInputMethodRequests(); + boolean var90 = var76.requestFocusInWindow(); + java.awt.Point var92 = var76.getMousePosition(false); + var76.setDebugGraphicsOptions(1); + java.awt.Graphics var95 = var76.getGraphics(); + var68.paintAll(var95); + var45.printAll(var95); + var25.printAll(var95); + var0.paint(var95); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertNull(var21); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var24 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var29); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var30 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var33); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var40); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var41 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var44 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var46 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var49 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var51 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var52); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var54 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var60 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var63); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var65); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var71); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var75 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var77); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var87); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var88); + + // Regression assertion (captures the current behavior of the code) + assertNull(var89); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var90 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var92); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var95); + + } + + public void test404() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test404"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + var0.show(false); + java.awt.Rectangle var8 = var0.getVisibleRect(); + javax.swing.KeyStroke[] var9 = var0.getRegisteredKeyStrokes(); + java.awt.GraphicsConfiguration var10 = var0.getGraphicsConfiguration(); + var0.show(); + java.awt.dnd.DropTarget var12 = var0.getDropTarget(); + // The following exception was thrown during execution. + // This behavior will recorded for regression testing. + try { + var0.remove(24); + fail("Expected exception of type java.lang.ArrayIndexOutOfBoundsException"); + } catch (java.lang.ArrayIndexOutOfBoundsException e) { + // Expected exception. + } + + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var9); + + // Regression assertion (captures the current behavior of the code) + assertNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertNull(var12); + + } + + public void test405() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test405"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.setInheritsPopupMenu(false); + boolean var6 = var0.isMinimumSizeSet(); + java.awt.Point var8 = var0.getMousePosition(true); + java.awt.Image var11 = var0.createImage(24, 3); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertNull(var11); + + } + + public void test406() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test406"); + + + SpaceWar.Player var0 = new SpaceWar.Player(); + var0.increasePower(25); + int var3 = var0.getScore(); + var0.setRigth(true); + var0.loseLife(); + int var7 = var0.getPower(); + int var8 = var0.getX(); + int var9 = var0.getPower(); + int var10 = var0.getLives(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 24); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 400); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 24); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 2); + + } + + public void test407() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test407"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var6 = var0.getUI(); + java.awt.im.InputMethodRequests var7 = var0.getInputMethodRequests(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + var8.nextFocus(); + var8.updateUI(); + var8.enableInputMethods(true); + var8.setSize((-1), 1); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + var19.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var0.add((java.awt.Component)var8, (java.lang.Object)"SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + var0.setAutoscrolls(false); + SpaceWar.SpacePanel var27 = new SpaceWar.SpacePanel(); + java.awt.Color var28 = var27.getBackground(); + var27.repaint(); + var27.setRequestFocusEnabled(false); + var27.setIgnoreRepaint(false); + boolean var34 = var27.requestFocusInWindow(); + float var35 = var27.getAlignmentY(); + java.awt.LayoutManager var36 = var27.getLayout(); + var0.setLayout(var36); + var0.validate(); + javax.swing.InputVerifier var39 = var0.getInputVerifier(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var28); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var34 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var35 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var36); + + // Regression assertion (captures the current behavior of the code) + assertNull(var39); + + } + + public void test408() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test408"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + java.awt.im.InputMethodRequests var3 = var0.getInputMethodRequests(); + int var4 = var0.countComponents(); + java.awt.event.ComponentListener[] var5 = var0.getComponentListeners(); + var0.removeNotify(); + java.awt.Component var9 = var0.getComponentAt(1, (-1)); + java.awt.event.HierarchyBoundsListener[] var10 = var0.getHierarchyBoundsListeners(); + var0.reshape(499, 100, 10, 499); + java.awt.Component.BaselineResizeBehavior var16 = var0.getBaselineResizeBehavior(); + javax.swing.border.Border var17 = var0.getBorder(); + java.awt.Image var20 = var0.createImage(399, 1); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertNull(var9); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertNull(var20); + + } + + public void test409() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test409"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + var0.show(false); + boolean var8 = var0.isPaintingForPrint(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var15 = var9.getMouseListeners(); + int var16 = var9.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var17 = var9.getInputMethodRequests(); + var0.addKeyListener((java.awt.event.KeyListener)var9); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + float var20 = var19.getAlignmentX(); + var19.setVisible(false); + boolean var23 = var19.isDoubleBuffered(); + var19.list(); + float var25 = var19.getAlignmentY(); + boolean var26 = var9.isFocusCycleRoot((java.awt.Container)var19); + boolean var27 = var19.isEnabled(); + java.awt.Dimension var28 = var19.getMaximumSize(); + var19.disable(); + var19.updateUI(); + // The following exception was thrown during execution. + // This behavior will recorded for regression testing. + try { + java.awt.Component var32 = var19.getComponent(399); + fail("Expected exception of type java.lang.ArrayIndexOutOfBoundsException"); + } catch (java.lang.ArrayIndexOutOfBoundsException e) { + // Expected exception. + } + + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var28); + + } + + public void test410() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test410"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + float var7 = var6.getAlignmentX(); + var6.setVisible(false); + java.awt.Dimension var10 = var6.getPreferredSize(); + var0.setMaximumSize(var10); + boolean var12 = var0.getVerifyInputWhenFocusTarget(); + javax.accessibility.AccessibleContext var13 = var0.getAccessibleContext(); + boolean var14 = var0.isDoubleBuffered(); + boolean var15 = var0.getAutoscrolls(); + var0.repaint(10L, (-1), 25, (-1), 100); + var0.updateUI(); + boolean var23 = var0.requestDefaultFocus(); + SpaceWar.SpacePanel var24 = new SpaceWar.SpacePanel(); + float var25 = var24.getAlignmentX(); + SpaceWar.SpacePanel var26 = new SpaceWar.SpacePanel(); + float var27 = var26.getAlignmentX(); + var26.setVisible(false); + java.awt.Dimension var30 = var26.getPreferredSize(); + boolean var31 = var26.getVerifyInputWhenFocusTarget(); + java.awt.Component var34 = var26.findComponentAt(10, 1); + var24.addKeyListener((java.awt.event.KeyListener)var26); + java.awt.Cursor var36 = var24.getCursor(); + var0.setCursor(var36); + SpaceWar.SpacePanel var38 = new SpaceWar.SpacePanel(); + var38.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + javax.swing.plaf.PanelUI var43 = var38.getUI(); + java.awt.Color var44 = var38.getBackground(); + var38.removeAll(); + int var46 = var38.getHeight(); + java.awt.Dimension var47 = var38.getMaximumSize(); + var0.setPreferredSize(var47); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var30); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var31 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var34); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var36); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var43); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var44); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var46 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var47); + + } + + public void test411() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test411"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.updateUI(); + var0.enableInputMethods(true); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + boolean var10 = var8.hasFocus(); + java.awt.Insets var11 = var8.getInsets(); + java.awt.Insets var12 = var0.getInsets(var11); + var0.disable(); + SpaceWar.SpacePanel var14 = new SpaceWar.SpacePanel(); + float var15 = var14.getAlignmentX(); + var14.setVisible(false); + var14.nextFocus(); + var14.reshape((-1), 1, (-1), 10); + var14.disable(); + boolean var25 = var14.isFocusable(); + int var26 = var14.getHeight(); + javax.swing.InputVerifier var27 = var14.getInputVerifier(); + java.awt.Graphics var28 = var14.getGraphics(); + java.awt.Color var29 = var14.getForeground(); + var0.setBackground(var29); + java.awt.Dimension var31 = var0.getSize(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == 10); + + // Regression assertion (captures the current behavior of the code) + assertNull(var27); + + // Regression assertion (captures the current behavior of the code) + assertNull(var28); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var29); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var31); + + } + + public void test412() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test412"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.reshape((-1), 1, (-1), 10); + var0.disable(); + java.awt.LayoutManager var11 = var0.getLayout(); + boolean var14 = var0.contains((-1), 0); + SpaceWar.SpacePanel var15 = new SpaceWar.SpacePanel(); + float var16 = var15.getAlignmentX(); + var15.setVisible(false); + var15.nextFocus(); + var15.updateUI(); + var15.enableInputMethods(true); + var15.setSize((-1), 1); + java.awt.Component var26 = var0.add((java.awt.Component)var15); + var26.repaint(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var26); + + } + + public void test413() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test413"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + boolean var5 = javax.swing.JComponent.isLightweightComponent((java.awt.Component)var0); + var0.removeAll(); + java.awt.image.ColorModel var7 = var0.getColorModel(); + java.lang.Object var8 = var0.getTreeLock(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var8); + + } + + public void test414() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test414"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + var0.list(); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + float var7 = var6.getAlignmentX(); + var6.setVisible(false); + boolean var10 = var6.isDoubleBuffered(); + java.awt.dnd.DropTarget var11 = var6.getDropTarget(); + var6.show(false); + java.awt.Rectangle var14 = var6.getVisibleRect(); + java.awt.Rectangle var15 = var0.getBounds(var14); + javax.swing.JToolTip var16 = var0.createToolTip(); + var0.firePropertyChange("", false, false); + var0.validate(); + var0.setAlignmentY((-1.0f)); + java.awt.Component var24 = var0.getNextFocusableComponent(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertNull(var24); + + } + + public void test415() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test415"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var6 = var0.getUI(); + var0.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", ' ', '#'); + var0.removeNotify(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + } + + public void test416() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test416"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + var0.list(); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + float var7 = var6.getAlignmentX(); + var6.setVisible(false); + boolean var10 = var6.isDoubleBuffered(); + java.awt.dnd.DropTarget var11 = var6.getDropTarget(); + var6.show(false); + java.awt.Rectangle var14 = var6.getVisibleRect(); + java.awt.Rectangle var15 = var0.getBounds(var14); + javax.swing.JToolTip var16 = var0.createToolTip(); + java.awt.Dimension var17 = var0.minimumSize(); + var0.setAutoscrolls(true); + boolean var21 = var0.requestFocus(true); + SpaceWar.SpacePanel var22 = new SpaceWar.SpacePanel(); + float var23 = var22.getAlignmentX(); + var22.setVisible(false); + var22.setInheritsPopupMenu(false); + var22.move(10, 10); + var22.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + java.awt.Rectangle var35 = var22.bounds(); + java.awt.image.ColorModel var36 = var22.getColorModel(); + boolean var37 = var0.isFocusCycleRoot((java.awt.Container)var22); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var35); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var36); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == false); + + } + + public void test417() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test417"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var1 = new SpaceWar.SpacePanel(); + java.awt.Color var2 = var1.getBackground(); + SpaceWar.SpacePanel var3 = new SpaceWar.SpacePanel(); + float var4 = var3.getAlignmentX(); + var3.setVisible(false); + var3.nextFocus(); + var3.updateUI(); + var3.enableInputMethods(true); + var0.add((java.awt.Component)var1, (java.lang.Object)true); + java.awt.Dimension var12 = var1.getPreferredSize(); + java.awt.Component[] var13 = var1.getComponents(); + var1.repaint(25, 25, 100, 1); + javax.swing.KeyStroke[] var19 = var1.getRegisteredKeyStrokes(); + var1.validate(); + boolean var21 = var1.isForegroundSet(); + var1.setDebugGraphicsOptions(399); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var2); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == true); + + } + + public void test418() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test418"); + + + SpaceWar.Player var0 = new SpaceWar.Player(); + int var1 = var0.getR(); + var0.setRigth(false); + var0.setLife(100); + var0.setDown(false); + var0.loseLife(); + int var9 = var0.getLives(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 25); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 99); + + } + + public void test419() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test419"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.updateUI(); + var0.enableInputMethods(true); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + boolean var10 = var8.hasFocus(); + java.awt.Insets var11 = var8.getInsets(); + java.awt.Insets var12 = var0.getInsets(var11); + var0.enable(true); + var0.nextFocus(); + var0.setBounds((-1), 3, 499, 100); + var0.setLocation(399, 25); + SpaceWar.SpacePanel var24 = new SpaceWar.SpacePanel(); + float var25 = var24.getAlignmentX(); + var24.setVisible(false); + var24.setInheritsPopupMenu(false); + var24.setFocusTraversalPolicyProvider(true); + SpaceWar.SpacePanel var32 = new SpaceWar.SpacePanel(); + float var33 = var32.getAlignmentX(); + var32.setVisible(false); + boolean var36 = var32.isDoubleBuffered(); + var32.list(); + SpaceWar.SpacePanel var38 = new SpaceWar.SpacePanel(); + float var39 = var38.getAlignmentX(); + var38.setVisible(false); + boolean var42 = var38.isDoubleBuffered(); + java.awt.dnd.DropTarget var43 = var38.getDropTarget(); + var38.show(false); + java.awt.Rectangle var46 = var38.getVisibleRect(); + java.awt.Rectangle var47 = var32.getBounds(var46); + javax.swing.JToolTip var48 = var32.createToolTip(); + var24.removeKeyListener((java.awt.event.KeyListener)var32); + var24.setFocusTraversalKeysEnabled(true); + javax.swing.KeyStroke[] var52 = var24.getRegisteredKeyStrokes(); + SpaceWar.SpacePanel var53 = new SpaceWar.SpacePanel(); + float var54 = var53.getAlignmentX(); + var53.setVisible(false); + java.awt.Dimension var57 = var53.getPreferredSize(); + java.awt.Toolkit var58 = var53.getToolkit(); + boolean var59 = var53.isFocusable(); + javax.swing.KeyStroke[] var60 = var53.getRegisteredKeyStrokes(); + java.awt.Component var63 = var53.getComponentAt(100, 100); + java.lang.Object var64 = var53.getTreeLock(); + boolean var67 = var53.inside(400, 0); + java.awt.event.MouseWheelListener[] var68 = var53.getMouseWheelListeners(); + var53.enableInputMethods(true); + boolean var71 = var24.isAncestorOf((java.awt.Component)var53); + boolean var72 = var24.isEnabled(); + SpaceWar.SpacePanel var73 = new SpaceWar.SpacePanel(); + float var74 = var73.getAlignmentX(); + var73.setVisible(false); + java.awt.Dimension var77 = var73.getPreferredSize(); + boolean var78 = var73.getVerifyInputWhenFocusTarget(); + java.awt.Component var81 = var73.findComponentAt(10, 1); + boolean var82 = var73.requestDefaultFocus(); + var73.setVerifyInputWhenFocusTarget(false); + java.awt.Point var85 = var73.getLocation(); + boolean var86 = var24.contains(var85); + java.beans.VetoableChangeListener[] var87 = var24.getVetoableChangeListeners(); + // The following exception was thrown during execution. + // This behavior will recorded for regression testing. + try { + java.awt.Component var89 = var0.add((java.awt.Component)var24, 10); + fail("Expected exception of type java.lang.IllegalArgumentException"); + } catch (java.lang.IllegalArgumentException e) { + // Expected exception. + } + + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var33 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var36 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var39 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var42 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var43); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var46); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var47); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var48); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var52); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var54 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var57); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var58); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var59 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var60); + + // Regression assertion (captures the current behavior of the code) + assertNull(var63); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var64); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var67 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var68); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var71 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var72 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var74 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var77); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var78 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var81); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var82 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var85); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var86 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var87); + + } + + public void test420() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test420"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + boolean var2 = var0.hasFocus(); + boolean var3 = var0.isPreferredSizeSet(); + SpaceWar.SpacePanel var4 = new SpaceWar.SpacePanel(); + java.awt.Color var5 = var4.getBackground(); + var4.repaint(); + var4.setRequestFocusEnabled(false); + int var9 = var0.getComponentZOrder((java.awt.Component)var4); + var0.show(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var2 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == (-1)); + + } + + public void test421() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test421"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + var0.setRequestFocusEnabled(false); + var0.reshape(100, 0, 100, 0); + var0.requestFocus(); + var0.firePropertyChange("hi!", '4', ' '); + SpaceWar.Enemy var17 = new SpaceWar.Enemy(0, 100); + int var18 = var17.getR(); + var17.explode(); + var0.putClientProperty((java.lang.Object)var17, (java.lang.Object)(short)10); + int var22 = var17.getRank(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var22 == 100); + + } + + public void test422() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test422"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + SpaceWar.SpacePanel var4 = new SpaceWar.SpacePanel(); + java.awt.Color var5 = var4.getBackground(); + var0.setForeground(var5); + SpaceWar.SpacePanel var7 = new SpaceWar.SpacePanel(); + float var8 = var7.getAlignmentX(); + var7.setVisible(false); + boolean var11 = var7.isDoubleBuffered(); + java.awt.dnd.DropTarget var12 = var7.getDropTarget(); + var7.show(false); + java.awt.Rectangle var15 = var7.getVisibleRect(); + var0.repaint(var15); + java.awt.FocusTraversalPolicy var17 = var0.getFocusTraversalPolicy(); + var0.resetKeyboardActions(); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + float var20 = var19.getAlignmentX(); + var19.setVisible(false); + boolean var23 = var19.isDoubleBuffered(); + java.awt.dnd.DropTarget var24 = var19.getDropTarget(); + var19.show(false); + java.awt.Rectangle var27 = var19.getVisibleRect(); + var0.computeVisibleRect(var27); + var0.reshape(24, 3, 1, 0); + java.awt.event.HierarchyBoundsListener[] var34 = var0.getHierarchyBoundsListeners(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var27); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var34); + + } + + public void test423() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test423"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + boolean var2 = var0.hasFocus(); + SpaceWar.SpacePanel var3 = new SpaceWar.SpacePanel(); + float var4 = var3.getAlignmentX(); + var3.setVisible(false); + var3.nextFocus(); + var3.reshape((-1), 1, (-1), 10); + var3.disable(); + java.awt.LayoutManager var14 = var3.getLayout(); + var3.setVisible(false); + var0.remove((java.awt.Component)var3); + var3.repaint(); + var3.repaint(); + SpaceWar.SpacePanel var20 = new SpaceWar.SpacePanel(); + float var21 = var20.getAlignmentX(); + var20.setVisible(false); + var20.nextFocus(); + var20.repaint(1L); + SpaceWar.SpacePanel var27 = new SpaceWar.SpacePanel(); + float var28 = var27.getAlignmentX(); + var27.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var33 = new SpaceWar.SpacePanel(); + float var34 = var33.getAlignmentX(); + var33.setVisible(false); + java.awt.Dimension var37 = var33.getPreferredSize(); + var27.setMaximumSize(var37); + var20.setPreferredSize(var37); + javax.swing.plaf.PanelUI var40 = var20.getUI(); + SpaceWar.SpacePanel var41 = new SpaceWar.SpacePanel(); + float var42 = var41.getAlignmentX(); + var41.setVisible(false); + var41.nextFocus(); + var41.reshape((-1), 1, (-1), 10); + var41.disable(); + java.awt.LayoutManager var52 = var41.getLayout(); + java.awt.Container var53 = var41.getParent(); + java.lang.String var54 = var41.getUIClassID(); + SpaceWar.Enemy var57 = new SpaceWar.Enemy(0, 10); + var20.add((java.awt.Component)var41, (java.lang.Object)10); + java.awt.event.MouseListener[] var59 = var20.getMouseListeners(); + java.awt.Component var61 = var3.add((java.awt.Component)var20, (-1)); + java.awt.Component var64 = var20.locate((-1), 100); + SpaceWar.SpacePanel var65 = new SpaceWar.SpacePanel(); + float var66 = var65.getAlignmentX(); + var65.setVisible(false); + boolean var69 = var65.isDoubleBuffered(); + var65.enable(false); + java.awt.Container var72 = var65.getTopLevelAncestor(); + java.awt.Dimension var73 = var65.minimumSize(); + java.awt.Dimension var74 = var65.preferredSize(); + var20.setPreferredSize(var74); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var2 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var28 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var34 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var37); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var40); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var42 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var52); + + // Regression assertion (captures the current behavior of the code) + assertNull(var53); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var54 + "' != '" + "PanelUI"+ "'", var54.equals("PanelUI")); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var59); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var61); + + // Regression assertion (captures the current behavior of the code) + assertNull(var64); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var66 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var69 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var72); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var73); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var74); + + } + + public void test424() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test424"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var6 = var0.getMouseListeners(); + int var7 = var0.getDebugGraphicsOptions(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + boolean var12 = var8.isDoubleBuffered(); + java.awt.dnd.DropTarget var13 = var8.getDropTarget(); + var8.show(false); + java.awt.Rectangle var16 = var8.getVisibleRect(); + var0.paintImmediately(var16); + java.awt.Rectangle var18 = var0.getBounds(); + java.beans.PropertyChangeListener[] var20 = var0.getPropertyChangeListeners("SpaceWar.SpacePanel[,0,0,0x0,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + java.awt.Insets var21 = var0.getInsets(); + boolean var22 = var0.isVisible(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var21); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var22 == true); + + } + + public void test425() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test425"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + var0.setName(""); + java.awt.ComponentOrientation var3 = var0.getComponentOrientation(); + int var4 = var0.getComponentCount(); + java.awt.image.ColorModel var5 = var0.getColorModel(); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + java.awt.Color var7 = var6.getBackground(); + var6.repaint(); + var6.setRequestFocusEnabled(false); + var6.reshape(100, 0, 100, 0); + javax.swing.event.AncestorListener[] var16 = var6.getAncestorListeners(); + var6.grabFocus(); + java.lang.Object var18 = var0.getClientProperty((java.lang.Object)var6); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + float var20 = var19.getAlignmentX(); + var19.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var25 = var19.getUI(); + java.awt.im.InputMethodRequests var26 = var19.getInputMethodRequests(); + SpaceWar.SpacePanel var27 = new SpaceWar.SpacePanel(); + float var28 = var27.getAlignmentX(); + var27.setVisible(false); + var27.nextFocus(); + var27.updateUI(); + var27.enableInputMethods(true); + var27.setSize((-1), 1); + SpaceWar.SpacePanel var38 = new SpaceWar.SpacePanel(); + var38.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var19.add((java.awt.Component)var27, (java.lang.Object)"SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + SpaceWar.SpacePanel var44 = new SpaceWar.SpacePanel(); + float var45 = var44.getAlignmentX(); + var44.setVisible(false); + var44.setInheritsPopupMenu(false); + boolean var50 = var44.isDoubleBuffered(); + boolean var51 = var44.isMinimumSizeSet(); + SpaceWar.SpacePanel var52 = new SpaceWar.SpacePanel(); + float var53 = var52.getAlignmentX(); + var52.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var58 = new SpaceWar.SpacePanel(); + float var59 = var58.getAlignmentX(); + var58.setVisible(false); + java.awt.Dimension var62 = var58.getPreferredSize(); + var52.setMaximumSize(var62); + boolean var64 = var52.getVerifyInputWhenFocusTarget(); + javax.accessibility.AccessibleContext var65 = var52.getAccessibleContext(); + boolean var66 = var52.isDoubleBuffered(); + java.awt.Rectangle var67 = var52.getVisibleRect(); + var44.setBounds(var67); + java.awt.Rectangle var69 = var19.getBounds(var67); + java.lang.String var70 = var19.getUIClassID(); + var6.setNextFocusableComponent((java.awt.Component)var19); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var25); + + // Regression assertion (captures the current behavior of the code) + assertNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var28 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var45 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var50 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var51 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var53 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var59 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var62); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var64 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var65); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var66 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var67); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var69); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var70 + "' != '" + "PanelUI"+ "'", var70.equals("PanelUI")); + + } + + public void test426() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test426"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + java.awt.im.InputMethodRequests var3 = var0.getInputMethodRequests(); + int var4 = var0.countComponents(); + java.awt.event.ComponentListener[] var5 = var0.getComponentListeners(); + var0.removeNotify(); + javax.swing.InputMap var7 = var0.getInputMap(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var14 = new SpaceWar.SpacePanel(); + float var15 = var14.getAlignmentX(); + var14.setVisible(false); + SpaceWar.SpacePanel var18 = new SpaceWar.SpacePanel(); + java.awt.Color var19 = var18.getBackground(); + var14.setForeground(var19); + var8.setBackground(var19); + java.awt.Point var22 = var8.location(); + var0.setLocation(var22); + SpaceWar.SpacePanel var24 = new SpaceWar.SpacePanel(); + float var25 = var24.getAlignmentX(); + var24.setVisible(false); + var24.nextFocus(); + var24.reshape((-1), 1, (-1), 10); + SpaceWar.SpacePanel var34 = new SpaceWar.SpacePanel(); + java.awt.Color var35 = var34.getBackground(); + var34.repaint(); + var34.setRequestFocusEnabled(false); + var34.reshape(100, 0, 100, 0); + java.awt.Component var44 = var24.add((java.awt.Component)var34); + var24.enable(); + SpaceWar.SpacePanel var46 = new SpaceWar.SpacePanel(); + float var47 = var46.getAlignmentX(); + boolean var48 = var46.hasFocus(); + boolean var49 = var46.isPreferredSizeSet(); + var0.putClientProperty((java.lang.Object)var24, (java.lang.Object)var46); + boolean var51 = javax.swing.JComponent.isLightweightComponent((java.awt.Component)var46); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var35); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var44); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var47 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var48 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var49 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var51 == false); + + } + + public void test427() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test427"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + java.awt.Dimension var4 = var0.getPreferredSize(); + boolean var5 = var0.getVerifyInputWhenFocusTarget(); + java.awt.Component var8 = var0.findComponentAt(10, 1); + boolean var9 = var0.requestDefaultFocus(); + java.awt.Insets var10 = var0.getInsets(); + var0.setDoubleBuffered(false); + SpaceWar.SpacePanel var13 = new SpaceWar.SpacePanel(); + float var14 = var13.getAlignmentX(); + var13.setVisible(false); + boolean var17 = var13.isDoubleBuffered(); + java.awt.dnd.DropTarget var18 = var13.getDropTarget(); + var13.show(false); + java.awt.Rectangle var21 = var13.getVisibleRect(); + java.awt.Toolkit var22 = var13.getToolkit(); + java.awt.event.MouseMotionListener[] var23 = var13.getMouseMotionListeners(); + SpaceWar.SpacePanel var24 = new SpaceWar.SpacePanel(); + float var25 = var24.getAlignmentX(); + var24.setVisible(false); + SpaceWar.SpacePanel var28 = new SpaceWar.SpacePanel(); + java.awt.Color var29 = var28.getBackground(); + var24.setForeground(var29); + SpaceWar.SpacePanel var31 = new SpaceWar.SpacePanel(); + float var32 = var31.getAlignmentX(); + var31.setVisible(false); + boolean var35 = var31.isDoubleBuffered(); + java.awt.dnd.DropTarget var36 = var31.getDropTarget(); + var31.show(false); + java.awt.Rectangle var39 = var31.getVisibleRect(); + var24.repaint(var39); + java.awt.Component.BaselineResizeBehavior var41 = var24.getBaselineResizeBehavior(); + SpaceWar.SpacePanel var42 = new SpaceWar.SpacePanel(); + float var43 = var42.getAlignmentX(); + var42.setVisible(false); + var42.nextFocus(); + var42.repaint(1L); + SpaceWar.SpacePanel var49 = new SpaceWar.SpacePanel(); + float var50 = var49.getAlignmentX(); + var49.setVisible(false); + boolean var53 = var49.isDoubleBuffered(); + var49.list(); + SpaceWar.SpacePanel var55 = new SpaceWar.SpacePanel(); + float var56 = var55.getAlignmentX(); + var55.setVisible(false); + boolean var59 = var55.isDoubleBuffered(); + java.awt.dnd.DropTarget var60 = var55.getDropTarget(); + var55.show(false); + java.awt.Rectangle var63 = var55.getVisibleRect(); + java.awt.Rectangle var64 = var49.getBounds(var63); + var42.setBounds(var64); + var24.paintImmediately(var64); + var13.setBounds(var64); + SpaceWar.SpacePanel var68 = new SpaceWar.SpacePanel(); + float var69 = var68.getAlignmentX(); + var68.setVisible(false); + SpaceWar.SpacePanel var72 = new SpaceWar.SpacePanel(); + java.awt.Color var73 = var72.getBackground(); + var68.setForeground(var73); + SpaceWar.SpacePanel var75 = new SpaceWar.SpacePanel(); + float var76 = var75.getAlignmentX(); + var75.setVisible(false); + boolean var79 = var75.isDoubleBuffered(); + java.awt.dnd.DropTarget var80 = var75.getDropTarget(); + var75.show(false); + java.awt.Rectangle var83 = var75.getVisibleRect(); + var68.repaint(var83); + java.awt.Component.BaselineResizeBehavior var85 = var68.getBaselineResizeBehavior(); + var0.add((java.awt.Component)var13, (java.lang.Object)var85); + java.beans.VetoableChangeListener[] var87 = var13.getVetoableChangeListeners(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var4); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var21); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var23); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var29); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var32 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var35 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var36); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var39); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var41); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var43 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var50 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var53 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var56 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var59 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var60); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var63); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var64); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var69 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var73); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var76 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var79 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var80); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var83); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var85); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var87); + + } + + public void test428() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test428"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + SpaceWar.SpacePanel var4 = new SpaceWar.SpacePanel(); + java.awt.Color var5 = var4.getBackground(); + var0.setForeground(var5); + SpaceWar.SpacePanel var7 = new SpaceWar.SpacePanel(); + float var8 = var7.getAlignmentX(); + var7.setVisible(false); + boolean var11 = var7.isDoubleBuffered(); + java.awt.dnd.DropTarget var12 = var7.getDropTarget(); + var7.show(false); + java.awt.Rectangle var15 = var7.getVisibleRect(); + var0.repaint(var15); + java.awt.FocusTraversalPolicy var17 = var0.getFocusTraversalPolicy(); + SpaceWar.SpacePanel var18 = new SpaceWar.SpacePanel(); + float var19 = var18.getAlignmentX(); + var18.firePropertyChange("", (-1), 1); + boolean var24 = var18.isFocusOwner(); + SpaceWar.SpacePanel var26 = new SpaceWar.SpacePanel(); + float var27 = var26.getAlignmentX(); + var26.setVisible(false); + java.awt.Dimension var30 = var26.getPreferredSize(); + java.awt.Toolkit var31 = var26.getToolkit(); + SpaceWar.SpacePanel var32 = new SpaceWar.SpacePanel(); + var32.setName(""); + int var35 = var32.getX(); + SpaceWar.SpacePanel var36 = new SpaceWar.SpacePanel(); + float var37 = var36.getAlignmentX(); + var36.setVisible(false); + var36.nextFocus(); + SpaceWar.SpacePanel var41 = new SpaceWar.SpacePanel(); + float var42 = var41.getAlignmentX(); + var41.setVisible(false); + SpaceWar.SpacePanel var45 = new SpaceWar.SpacePanel(); + java.awt.Color var46 = var45.getBackground(); + var41.setForeground(var46); + var36.setBackground(var46); + var32.setBackground(var46); + var26.setForeground(var46); + var18.putClientProperty((java.lang.Object)(byte)100, (java.lang.Object)var46); + var0.setBackground(var46); + SpaceWar.SpacePanel var53 = new SpaceWar.SpacePanel(); + float var54 = var53.getAlignmentX(); + var53.setVisible(false); + boolean var57 = var53.isDoubleBuffered(); + java.awt.dnd.DropTarget var58 = var53.getDropTarget(); + var53.show(false); + boolean var61 = var53.isPaintingForPrint(); + SpaceWar.SpacePanel var62 = new SpaceWar.SpacePanel(); + float var63 = var62.getAlignmentX(); + SpaceWar.SpacePanel var64 = new SpaceWar.SpacePanel(); + float var65 = var64.getAlignmentX(); + var64.setVisible(false); + java.awt.Dimension var68 = var64.getPreferredSize(); + boolean var69 = var64.getVerifyInputWhenFocusTarget(); + java.awt.Component var72 = var64.findComponentAt(10, 1); + var62.addKeyListener((java.awt.event.KeyListener)var64); + java.awt.Dimension var74 = var64.getMinimumSize(); + var53.setMinimumSize(var74); + java.awt.Dimension var76 = var0.getSize(var74); + var0.setFocusTraversalKeysEnabled(false); + java.awt.event.MouseMotionListener[] var79 = var0.getMouseMotionListeners(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var24 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var30); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var31); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var35 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var42 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var46); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var54 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var57 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var58); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var61 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var63 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var65 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var68); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var69 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var72); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var74); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var76); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var79); + + } + + public void test429() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test429"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var1 = new SpaceWar.SpacePanel(); + java.awt.Color var2 = var1.getBackground(); + SpaceWar.SpacePanel var3 = new SpaceWar.SpacePanel(); + float var4 = var3.getAlignmentX(); + var3.setVisible(false); + var3.nextFocus(); + var3.updateUI(); + var3.enableInputMethods(true); + var0.add((java.awt.Component)var1, (java.lang.Object)true); + java.awt.Image var14 = var1.createImage(1, (-1)); + java.beans.PropertyChangeListener[] var15 = var1.getPropertyChangeListeners(); + java.awt.FocusTraversalPolicy var16 = var1.getFocusTraversalPolicy(); + var1.show(false); + java.awt.im.InputMethodRequests var19 = var1.getInputMethodRequests(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var2); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertNull(var19); + + } + + public void test430() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test430"); + + + SpaceWar.Player var0 = new SpaceWar.Player(); + boolean var1 = var0.isRecovering(); + java.awt.image.BufferedImage var3 = var0.loadImg("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + int var4 = var0.getRequiredPower(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 1); + + } + + public void test431() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test431"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + java.awt.im.InputMethodRequests var3 = var0.getInputMethodRequests(); + int var4 = var0.countComponents(); + java.awt.event.ComponentListener[] var5 = var0.getComponentListeners(); + var0.removeNotify(); + javax.swing.InputMap var7 = var0.getInputMap(); + int var8 = var0.getDebugGraphicsOptions(); + java.awt.Rectangle var9 = var0.getBounds(); + javax.swing.JToolTip var10 = var0.createToolTip(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var9); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var10); + + } + + public void test432() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test432"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + boolean var4 = var0.inside(0, (-1)); + var0.transferFocusUpCycle(); + java.awt.Container var6 = var0.getParent(); + boolean var7 = var0.isMaximumSizeSet(); + java.awt.event.InputMethodListener[] var8 = var0.getInputMethodListeners(); + javax.swing.TransferHandler var9 = var0.getTransferHandler(); + boolean var10 = var0.isBackgroundSet(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertNull(var9); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == true); + + } + + public void test433() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test433"); + + + SpaceWar.Player var0 = new SpaceWar.Player(); + boolean var1 = var0.isRecovering(); + var0.setUp(true); + java.awt.image.BufferedImage var5 = var0.loadImg("SpaceWar.SpacePanel[,0,0,0x0,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + int var6 = var0.getPower(); + int var7 = var0.getRequiredPower(); + var0.setRigth(false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 1); + + } + + public void test434() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test434"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.reshape((-1), 1, (-1), 10); + var0.disable(); + boolean var11 = var0.isFocusable(); + SpaceWar.SpacePanel var12 = new SpaceWar.SpacePanel(); + float var13 = var12.getAlignmentX(); + var12.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var18 = var12.getUI(); + java.awt.im.InputMethodRequests var19 = var12.getInputMethodRequests(); + SpaceWar.SpacePanel var20 = new SpaceWar.SpacePanel(); + float var21 = var20.getAlignmentX(); + var20.setVisible(false); + var20.nextFocus(); + var20.updateUI(); + var20.enableInputMethods(true); + var20.setSize((-1), 1); + SpaceWar.SpacePanel var31 = new SpaceWar.SpacePanel(); + var31.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var12.add((java.awt.Component)var20, (java.lang.Object)"SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + java.awt.event.KeyListener[] var37 = var12.getKeyListeners(); + java.awt.FocusTraversalPolicy var38 = var12.getFocusTraversalPolicy(); + SpaceWar.SpacePanel var39 = new SpaceWar.SpacePanel(); + var39.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + java.awt.Toolkit var44 = var39.getToolkit(); + var0.add((java.awt.Component)var12, (java.lang.Object)var39); + java.beans.VetoableChangeListener[] var46 = var39.getVetoableChangeListeners(); + var39.setSize(0, 399); + boolean var50 = var39.isCursorSet(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var37); + + // Regression assertion (captures the current behavior of the code) + assertNull(var38); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var44); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var46); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var50 == false); + + } + + public void test435() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test435"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var1 = new SpaceWar.SpacePanel(); + java.awt.Color var2 = var1.getBackground(); + SpaceWar.SpacePanel var3 = new SpaceWar.SpacePanel(); + float var4 = var3.getAlignmentX(); + var3.setVisible(false); + var3.nextFocus(); + var3.updateUI(); + var3.enableInputMethods(true); + var0.add((java.awt.Component)var1, (java.lang.Object)true); + java.awt.Image var14 = var1.createImage(1, (-1)); + java.awt.event.MouseListener[] var15 = var1.getMouseListeners(); + java.awt.Color var16 = var1.getBackground(); + boolean var17 = var1.getIgnoreRepaint(); + var1.enable(); + var1.show(false); + var1.firePropertyChange("PanelUI", false, false); + // The following exception was thrown during execution. + // This behavior will recorded for regression testing. + try { + java.util.Set var26 = var1.getFocusTraversalKeys(24); + fail("Expected exception of type java.lang.IllegalArgumentException"); + } catch (java.lang.IllegalArgumentException e) { + // Expected exception. + } + + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var2); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == false); + + } + + public void test436() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test436"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.setInheritsPopupMenu(false); + var0.move(10, 10); + var0.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + java.awt.Rectangle var13 = var0.bounds(); + java.awt.event.ComponentListener[] var14 = var0.getComponentListeners(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + } + + public void test437() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test437"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + SpaceWar.SpacePanel var4 = new SpaceWar.SpacePanel(); + java.awt.Color var5 = var4.getBackground(); + var0.setForeground(var5); + SpaceWar.SpacePanel var7 = new SpaceWar.SpacePanel(); + float var8 = var7.getAlignmentX(); + var7.setVisible(false); + boolean var11 = var7.isDoubleBuffered(); + java.awt.dnd.DropTarget var12 = var7.getDropTarget(); + var7.show(false); + java.awt.Rectangle var15 = var7.getVisibleRect(); + var0.repaint(var15); + java.awt.FocusTraversalPolicy var17 = var0.getFocusTraversalPolicy(); + SpaceWar.SpacePanel var18 = new SpaceWar.SpacePanel(); + float var19 = var18.getAlignmentX(); + var18.firePropertyChange("", (-1), 1); + boolean var24 = var18.isFocusOwner(); + SpaceWar.SpacePanel var26 = new SpaceWar.SpacePanel(); + float var27 = var26.getAlignmentX(); + var26.setVisible(false); + java.awt.Dimension var30 = var26.getPreferredSize(); + java.awt.Toolkit var31 = var26.getToolkit(); + SpaceWar.SpacePanel var32 = new SpaceWar.SpacePanel(); + var32.setName(""); + int var35 = var32.getX(); + SpaceWar.SpacePanel var36 = new SpaceWar.SpacePanel(); + float var37 = var36.getAlignmentX(); + var36.setVisible(false); + var36.nextFocus(); + SpaceWar.SpacePanel var41 = new SpaceWar.SpacePanel(); + float var42 = var41.getAlignmentX(); + var41.setVisible(false); + SpaceWar.SpacePanel var45 = new SpaceWar.SpacePanel(); + java.awt.Color var46 = var45.getBackground(); + var41.setForeground(var46); + var36.setBackground(var46); + var32.setBackground(var46); + var26.setForeground(var46); + var18.putClientProperty((java.lang.Object)(byte)100, (java.lang.Object)var46); + var0.setBackground(var46); + SpaceWar.SpacePanel var53 = new SpaceWar.SpacePanel(); + float var54 = var53.getAlignmentX(); + var53.setVisible(false); + boolean var57 = var53.isDoubleBuffered(); + java.awt.dnd.DropTarget var58 = var53.getDropTarget(); + var53.show(false); + boolean var61 = var53.isPaintingForPrint(); + SpaceWar.SpacePanel var62 = new SpaceWar.SpacePanel(); + float var63 = var62.getAlignmentX(); + SpaceWar.SpacePanel var64 = new SpaceWar.SpacePanel(); + float var65 = var64.getAlignmentX(); + var64.setVisible(false); + java.awt.Dimension var68 = var64.getPreferredSize(); + boolean var69 = var64.getVerifyInputWhenFocusTarget(); + java.awt.Component var72 = var64.findComponentAt(10, 1); + var62.addKeyListener((java.awt.event.KeyListener)var64); + java.awt.Dimension var74 = var64.getMinimumSize(); + var53.setMinimumSize(var74); + java.awt.Dimension var76 = var0.getSize(var74); + boolean var77 = var0.isValid(); + int var78 = var0.getWidth(); + java.awt.event.HierarchyListener[] var79 = var0.getHierarchyListeners(); + java.awt.Component var82 = var0.locate(1, 1); + java.awt.image.BufferedImage var84 = var0.loadImg("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=1.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + var0.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", (-1.0f), 100.0f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var24 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var30); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var31); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var35 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var42 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var46); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var54 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var57 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var58); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var61 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var63 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var65 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var68); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var69 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var72); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var74); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var76); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var77 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var78 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var79); + + // Regression assertion (captures the current behavior of the code) + assertNull(var82); + + // Regression assertion (captures the current behavior of the code) + assertNull(var84); + + } + + public void test438() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test438"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + java.awt.Dimension var4 = var0.getPreferredSize(); + java.awt.Toolkit var5 = var0.getToolkit(); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + var6.setName(""); + int var9 = var6.getX(); + SpaceWar.SpacePanel var10 = new SpaceWar.SpacePanel(); + float var11 = var10.getAlignmentX(); + var10.setVisible(false); + var10.nextFocus(); + SpaceWar.SpacePanel var15 = new SpaceWar.SpacePanel(); + float var16 = var15.getAlignmentX(); + var15.setVisible(false); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + java.awt.Color var20 = var19.getBackground(); + var15.setForeground(var20); + var10.setBackground(var20); + var6.setBackground(var20); + var0.setForeground(var20); + SpaceWar.SpacePanel var25 = new SpaceWar.SpacePanel(); + float var26 = var25.getAlignmentX(); + var25.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var31 = new SpaceWar.SpacePanel(); + float var32 = var31.getAlignmentX(); + var31.setVisible(false); + java.awt.Dimension var35 = var31.getPreferredSize(); + var25.setMaximumSize(var35); + boolean var37 = var25.getVerifyInputWhenFocusTarget(); + javax.accessibility.AccessibleContext var38 = var25.getAccessibleContext(); + boolean var39 = var25.isDoubleBuffered(); + java.awt.Rectangle var40 = var25.getVisibleRect(); + var0.scrollRectToVisible(var40); + SpaceWar.SpacePanel var42 = new SpaceWar.SpacePanel(); + float var43 = var42.getAlignmentX(); + var42.setVisible(false); + java.awt.Dimension var46 = var42.getPreferredSize(); + java.awt.Toolkit var47 = var42.getToolkit(); + SpaceWar.SpacePanel var48 = new SpaceWar.SpacePanel(); + var48.setName(""); + int var51 = var48.getX(); + SpaceWar.SpacePanel var52 = new SpaceWar.SpacePanel(); + float var53 = var52.getAlignmentX(); + var52.setVisible(false); + var52.nextFocus(); + SpaceWar.SpacePanel var57 = new SpaceWar.SpacePanel(); + float var58 = var57.getAlignmentX(); + var57.setVisible(false); + SpaceWar.SpacePanel var61 = new SpaceWar.SpacePanel(); + java.awt.Color var62 = var61.getBackground(); + var57.setForeground(var62); + var52.setBackground(var62); + var48.setBackground(var62); + var42.setForeground(var62); + SpaceWar.SpacePanel var67 = new SpaceWar.SpacePanel(); + float var68 = var67.getAlignmentX(); + var67.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var73 = new SpaceWar.SpacePanel(); + float var74 = var73.getAlignmentX(); + var73.setVisible(false); + java.awt.Dimension var77 = var73.getPreferredSize(); + var67.setMaximumSize(var77); + boolean var79 = var67.getVerifyInputWhenFocusTarget(); + javax.accessibility.AccessibleContext var80 = var67.getAccessibleContext(); + boolean var81 = var67.isDoubleBuffered(); + java.awt.Rectangle var82 = var67.getVisibleRect(); + var42.scrollRectToVisible(var82); + var0.removeKeyListener((java.awt.event.KeyListener)var42); + var42.firePropertyChange("PanelUI", (short)1, (short)1); + int var89 = var42.getHeight(); + boolean var92 = var42.inside(99, 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var4); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var32 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var35); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var38); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var39 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var40); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var43 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var46); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var47); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var51 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var53 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var58 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var62); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var68 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var74 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var77); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var79 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var80); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var81 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var82); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var89 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var92 == false); + + } + + public void test439() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test439"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + var0.list(); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + float var7 = var6.getAlignmentX(); + var6.setVisible(false); + boolean var10 = var6.isDoubleBuffered(); + java.awt.dnd.DropTarget var11 = var6.getDropTarget(); + var6.show(false); + java.awt.Rectangle var14 = var6.getVisibleRect(); + java.awt.image.BufferedImage var16 = var6.loadImg("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + boolean var17 = var0.isAncestorOf((java.awt.Component)var6); + float var18 = var0.getAlignmentX(); + java.awt.image.VolatileImage var21 = var0.createVolatileImage(25, 1); + java.beans.PropertyChangeListener[] var23 = var0.getPropertyChangeListeners("PanelUI"); + boolean var24 = var0.isPaintingForPrint(); + boolean var25 = var0.isPreferredSizeSet(); + int var26 = var0.getComponentCount(); + javax.swing.TransferHandler var27 = var0.getTransferHandler(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNull(var21); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var23); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var24 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var27); + + } + + public void test440() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test440"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.reshape((-1), 1, (-1), 10); + var0.disable(); + java.awt.LayoutManager var11 = var0.getLayout(); + boolean var14 = var0.contains((-1), 0); + SpaceWar.SpacePanel var15 = new SpaceWar.SpacePanel(); + float var16 = var15.getAlignmentX(); + var15.setVisible(false); + var15.nextFocus(); + var15.updateUI(); + var15.enableInputMethods(true); + var15.setSize((-1), 1); + java.awt.Component var26 = var0.add((java.awt.Component)var15); + var15.nextFocus(); + var15.updateUI(); + int var29 = var15.getWidth(); + boolean var30 = var15.isFontSet(); + java.awt.Point var31 = var15.getMousePosition(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var29 == (-1)); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var30 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var31); + + } + + public void test441() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test441"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + boolean var2 = var0.hasFocus(); + java.awt.Insets var3 = var0.getInsets(); + boolean var4 = var0.isFocusTraversalPolicyProvider(); + java.beans.PropertyChangeListener[] var6 = var0.getPropertyChangeListeners("hi!"); + boolean var7 = var0.getIgnoreRepaint(); + boolean var8 = var0.isRequestFocusEnabled(); + boolean var9 = var0.requestFocusInWindow(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var2 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == false); + + } + + public void test442() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test442"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var6 = var0.getMouseListeners(); + java.awt.Dimension var7 = var0.getPreferredSize(); + java.beans.PropertyChangeListener[] var8 = var0.getPropertyChangeListeners(); + java.awt.LayoutManager var9 = var0.getLayout(); + var0.show(); + java.awt.event.ContainerListener[] var11 = var0.getContainerListeners(); + var0.firePropertyChange("SpaceWar.SpacePanel[,-1,1,-1x10,invalid,hidden,disabled,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", '#', 'a'); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var9); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + } + + public void test443() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test443"); + + + SpaceWar.Enemy var2 = new SpaceWar.Enemy(0, 100); + int var3 = var2.getR(); + int var4 = var2.getR(); + double var5 = var2.getY(); + var2.hit(); + double var7 = var2.getY(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == 0.0d); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.0d); + + } + + public void test444() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test444"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var6 = var0.getUI(); + java.awt.im.InputMethodRequests var7 = var0.getInputMethodRequests(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + var8.nextFocus(); + var8.updateUI(); + var8.enableInputMethods(true); + var8.setSize((-1), 1); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + var19.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var0.add((java.awt.Component)var8, (java.lang.Object)"SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + var8.setAutoscrolls(true); + java.awt.Image var29 = var8.createImage(400, 400); + var8.enableInputMethods(true); + javax.swing.plaf.PanelUI var32 = var8.getUI(); + SpaceWar.SpacePanel var33 = new SpaceWar.SpacePanel(); + float var34 = var33.getAlignmentX(); + var33.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var39 = var33.getMouseListeners(); + int var40 = var33.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var41 = var33.getInputMethodRequests(); + var33.removeNotify(); + var33.enable(); + SpaceWar.SpacePanel var44 = new SpaceWar.SpacePanel(); + java.awt.Color var45 = var44.getBackground(); + boolean var48 = var44.inside(0, (-1)); + var44.transferFocusUpCycle(); + java.lang.String var50 = var44.getName(); + boolean var51 = var33.isFocusCycleRoot((java.awt.Container)var44); + var8.addKeyListener((java.awt.event.KeyListener)var33); + java.awt.Component var53 = var33.getNextFocusableComponent(); + java.awt.Component.BaselineResizeBehavior var54 = var33.getBaselineResizeBehavior(); + boolean var55 = var33.isFocusTraversalPolicyProvider(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNull(var29); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var32); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var34 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var39); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var40 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var41); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var45); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var48 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var50); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var51 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var53); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var54); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var55 == false); + + } + + public void test445() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test445"); + + + SpaceWar.Player var0 = new SpaceWar.Player(); + boolean var1 = var0.isRecovering(); + int var2 = var0.getRequiredPower(); + var0.increasePower(0); + int var5 = var0.getLives(); + var0.setLeft(false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var2 == 1); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == 3); + + } + + public void test446() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test446"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.reshape((-1), 1, (-1), 10); + SpaceWar.SpacePanel var10 = new SpaceWar.SpacePanel(); + java.awt.Color var11 = var10.getBackground(); + var10.repaint(); + var10.setRequestFocusEnabled(false); + var10.reshape(100, 0, 100, 0); + java.awt.Component var20 = var0.add((java.awt.Component)var10); + var0.enable(); + javax.accessibility.AccessibleContext var22 = var0.getAccessibleContext(); + javax.swing.JRootPane var23 = var0.getRootPane(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertNull(var23); + + } + + public void test447() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test447"); + + + SpaceWar.Enemy var2 = new SpaceWar.Enemy(3, 10); + int var3 = var2.getType(); + double var4 = var2.getX(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == 3); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 493.38933439027335d); + + } + + public void test448() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test448"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + java.awt.im.InputMethodRequests var3 = var0.getInputMethodRequests(); + var0.setDoubleBuffered(true); + var0.setInheritsPopupMenu(false); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + var8.setName(""); + java.awt.Graphics var11 = var8.getGraphics(); + java.awt.event.MouseMotionListener[] var12 = var8.getMouseMotionListeners(); + boolean var13 = var8.getIgnoreRepaint(); + var8.transferFocusBackward(); + java.awt.Cursor var15 = var8.getCursor(); + var0.setCursor(var15); + var0.repaint((-1L)); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + } + + public void test449() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test449"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.setEnabled(false); + java.awt.Image var8 = var0.createImage(10, 100); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + java.awt.Color var10 = var9.getBackground(); + var0.setForeground(var10); + var0.setFocusTraversalPolicyProvider(true); + java.awt.event.InputMethodListener[] var14 = var0.getInputMethodListeners(); + boolean var15 = var0.isFocusCycleRoot(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == false); + + } + + public void test450() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test450"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + var0.show(false); + boolean var8 = var0.isPaintingForPrint(); + boolean var9 = var0.getIgnoreRepaint(); + java.awt.Component[] var10 = var0.getComponents(); + var0.revalidate(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var10); + + } + + public void test451() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test451"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + java.awt.im.InputMethodRequests var3 = var0.getInputMethodRequests(); + var0.setDoubleBuffered(true); + var0.show(false); + var0.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", (-1), 24); + SpaceWar.SpacePanel var12 = new SpaceWar.SpacePanel(); + java.awt.Color var13 = var12.getBackground(); + var12.repaint(); + java.awt.im.InputMethodRequests var15 = var12.getInputMethodRequests(); + int var16 = var12.countComponents(); + java.awt.event.ComponentListener[] var17 = var12.getComponentListeners(); + var12.removeNotify(); + javax.swing.InputMap var19 = var12.getInputMap(); + SpaceWar.SpacePanel var20 = new SpaceWar.SpacePanel(); + float var21 = var20.getAlignmentX(); + var20.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var26 = new SpaceWar.SpacePanel(); + float var27 = var26.getAlignmentX(); + var26.setVisible(false); + SpaceWar.SpacePanel var30 = new SpaceWar.SpacePanel(); + java.awt.Color var31 = var30.getBackground(); + var26.setForeground(var31); + var20.setBackground(var31); + java.awt.Point var34 = var20.location(); + var12.setLocation(var34); + var0.setLocation(var34); + var0.setDebugGraphicsOptions(100); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var31); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var34); + + } + + public void test452() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test452"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + var0.enable(false); + SpaceWar.SpacePanel var7 = new SpaceWar.SpacePanel(); + float var8 = var7.getAlignmentX(); + boolean var9 = var7.hasFocus(); + java.awt.Insets var10 = var7.getInsets(); + java.awt.Rectangle var11 = var7.bounds(); + var0.repaint(var11); + boolean var13 = var0.hasFocus(); + java.awt.Dimension var14 = var0.getMinimumSize(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + } + + public void test453() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test453"); + + + SpaceWar.PowerUp var3 = new SpaceWar.PowerUp(10, 10.0d, 10.0d); + boolean var4 = var3.update(); + double var5 = var3.getY(); + double var6 = var3.getY(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == 12.0d); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == 12.0d); + + } + + public void test454() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test454"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + SpaceWar.SpacePanel var2 = new SpaceWar.SpacePanel(); + float var3 = var2.getAlignmentX(); + var2.setVisible(false); + java.awt.Dimension var6 = var2.getPreferredSize(); + boolean var7 = var2.getVerifyInputWhenFocusTarget(); + java.awt.Component var10 = var2.findComponentAt(10, 1); + var0.addKeyListener((java.awt.event.KeyListener)var2); + var0.firePropertyChange("", false, true); + boolean var16 = var0.requestFocusInWindow(); + int var17 = var0.getComponentCount(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == 0); + + } + + public void test455() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test455"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + boolean var2 = var0.hasFocus(); + SpaceWar.SpacePanel var3 = new SpaceWar.SpacePanel(); + float var4 = var3.getAlignmentX(); + var3.setVisible(false); + var3.nextFocus(); + var3.reshape((-1), 1, (-1), 10); + var3.disable(); + java.awt.LayoutManager var14 = var3.getLayout(); + var3.setVisible(false); + var0.remove((java.awt.Component)var3); + var3.repaint(); + var3.repaint(); + SpaceWar.SpacePanel var20 = new SpaceWar.SpacePanel(); + float var21 = var20.getAlignmentX(); + var20.setVisible(false); + var20.nextFocus(); + var20.repaint(1L); + SpaceWar.SpacePanel var27 = new SpaceWar.SpacePanel(); + float var28 = var27.getAlignmentX(); + var27.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var33 = new SpaceWar.SpacePanel(); + float var34 = var33.getAlignmentX(); + var33.setVisible(false); + java.awt.Dimension var37 = var33.getPreferredSize(); + var27.setMaximumSize(var37); + var20.setPreferredSize(var37); + javax.swing.plaf.PanelUI var40 = var20.getUI(); + SpaceWar.SpacePanel var41 = new SpaceWar.SpacePanel(); + float var42 = var41.getAlignmentX(); + var41.setVisible(false); + var41.nextFocus(); + var41.reshape((-1), 1, (-1), 10); + var41.disable(); + java.awt.LayoutManager var52 = var41.getLayout(); + java.awt.Container var53 = var41.getParent(); + java.lang.String var54 = var41.getUIClassID(); + SpaceWar.Enemy var57 = new SpaceWar.Enemy(0, 10); + var20.add((java.awt.Component)var41, (java.lang.Object)10); + java.awt.event.MouseListener[] var59 = var20.getMouseListeners(); + java.awt.Component var61 = var3.add((java.awt.Component)var20, (-1)); + java.awt.event.HierarchyBoundsListener[] var62 = var3.getHierarchyBoundsListeners(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var2 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var28 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var34 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var37); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var40); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var42 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var52); + + // Regression assertion (captures the current behavior of the code) + assertNull(var53); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var54 + "' != '" + "PanelUI"+ "'", var54.equals("PanelUI")); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var59); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var61); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var62); + + } + + public void test456() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test456"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var1 = new SpaceWar.SpacePanel(); + java.awt.Color var2 = var1.getBackground(); + SpaceWar.SpacePanel var3 = new SpaceWar.SpacePanel(); + float var4 = var3.getAlignmentX(); + var3.setVisible(false); + var3.nextFocus(); + var3.updateUI(); + var3.enableInputMethods(true); + var0.add((java.awt.Component)var1, (java.lang.Object)true); + java.awt.Dimension var12 = var1.getPreferredSize(); + var1.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", (-1.0f), 100.0f); + SpaceWar.SpacePanel var17 = new SpaceWar.SpacePanel(); + float var18 = var17.getAlignmentX(); + var17.setVisible(false); + boolean var21 = var17.isDoubleBuffered(); + SpaceWar.SpacePanel var22 = new SpaceWar.SpacePanel(); + java.awt.Color var23 = var22.getBackground(); + var22.repaint(); + java.lang.Object var25 = var17.getClientProperty((java.lang.Object)var22); + var1.remove((java.awt.Component)var17); + SpaceWar.SpacePanel var27 = new SpaceWar.SpacePanel(); + float var28 = var27.getAlignmentX(); + SpaceWar.SpacePanel var29 = new SpaceWar.SpacePanel(); + float var30 = var29.getAlignmentX(); + var29.setVisible(false); + java.awt.Dimension var33 = var29.getPreferredSize(); + boolean var34 = var29.getVerifyInputWhenFocusTarget(); + java.awt.Component var37 = var29.findComponentAt(10, 1); + var27.addKeyListener((java.awt.event.KeyListener)var29); + var29.repaint(100, (-1), (-1), 1); + SpaceWar.SpacePanel var44 = new SpaceWar.SpacePanel(); + java.awt.Color var45 = var44.getBackground(); + var44.repaint(); + java.awt.im.InputMethodRequests var47 = var44.getInputMethodRequests(); + java.awt.GraphicsConfiguration var48 = var44.getGraphicsConfiguration(); + var29.remove((java.awt.Component)var44); + var29.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", 0.0f, 1.0f); + SpaceWar.SpacePanel var54 = new SpaceWar.SpacePanel(); + float var55 = var54.getAlignmentX(); + var54.setVisible(false); + java.awt.Dimension var58 = var54.getPreferredSize(); + boolean var59 = var54.getVerifyInputWhenFocusTarget(); + SpaceWar.SpacePanel var60 = new SpaceWar.SpacePanel(); + var60.setName(""); + int var63 = var60.getX(); + SpaceWar.SpacePanel var64 = new SpaceWar.SpacePanel(); + float var65 = var64.getAlignmentX(); + var64.setVisible(false); + var64.nextFocus(); + SpaceWar.SpacePanel var69 = new SpaceWar.SpacePanel(); + float var70 = var69.getAlignmentX(); + var69.setVisible(false); + SpaceWar.SpacePanel var73 = new SpaceWar.SpacePanel(); + java.awt.Color var74 = var73.getBackground(); + var69.setForeground(var74); + var64.setBackground(var74); + var60.setBackground(var74); + var29.add((java.awt.Component)var54, (java.lang.Object)var60); + var60.transferFocus(); + java.util.Locale var80 = var60.getLocale(); + var17.setLocale(var80); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var2); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var23); + + // Regression assertion (captures the current behavior of the code) + assertNull(var25); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var28 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var30 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var33); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var34 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var37); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var45); + + // Regression assertion (captures the current behavior of the code) + assertNull(var47); + + // Regression assertion (captures the current behavior of the code) + assertNull(var48); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var55 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var58); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var59 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var63 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var65 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var70 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var74); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var80); + + } + + public void test457() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test457"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var1 = new SpaceWar.SpacePanel(); + java.awt.Color var2 = var1.getBackground(); + SpaceWar.SpacePanel var3 = new SpaceWar.SpacePanel(); + float var4 = var3.getAlignmentX(); + var3.setVisible(false); + var3.nextFocus(); + var3.updateUI(); + var3.enableInputMethods(true); + var0.add((java.awt.Component)var1, (java.lang.Object)true); + java.awt.Dimension var12 = var1.getPreferredSize(); + var1.move(100, 10); + java.awt.Graphics var16 = var1.getGraphics(); + boolean var17 = var1.getInheritsPopupMenu(); + javax.swing.event.AncestorListener[] var18 = var1.getAncestorListeners(); + var1.doLayout(); + var1.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=1.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", '#', 'a'); + java.awt.Component var24 = var1.getNextFocusableComponent(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var2); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertNull(var24); + + } + + public void test458() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test458"); + + + SpaceWar.PowerUp var3 = new SpaceWar.PowerUp(100, (-1.0d), 0.0d); + double var4 = var3.getX(); + double var5 = var3.getY(); + double var6 = var3.getY(); + double var7 = var3.getY(); + double var8 = var3.getR(); + double var9 = var3.getX(); + double var10 = var3.getR(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == (-1.0d)); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == 0.0d); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == 0.0d); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.0d); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 0.0d); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == (-1.0d)); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.0d); + + } + + public void test459() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test459"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + SpaceWar.SpacePanel var2 = new SpaceWar.SpacePanel(); + float var3 = var2.getAlignmentX(); + var2.setVisible(false); + java.awt.Dimension var6 = var2.getPreferredSize(); + boolean var7 = var2.getVerifyInputWhenFocusTarget(); + java.awt.Component var10 = var2.findComponentAt(10, 1); + var0.addKeyListener((java.awt.event.KeyListener)var2); + java.awt.Dimension var12 = var2.getMinimumSize(); + SpaceWar.SpacePanel var13 = new SpaceWar.SpacePanel(); + java.awt.Color var14 = var13.getBackground(); + var13.repaint(); + var13.setRequestFocusEnabled(false); + var13.reshape(100, 0, 100, 0); + var13.requestFocus(); + java.awt.Rectangle var24 = var13.getVisibleRect(); + var2.setBounds(var24); + java.awt.event.HierarchyBoundsListener[] var26 = var2.getHierarchyBoundsListeners(); + boolean var27 = var2.isFocusOwner(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == false); + + } + + public void test460() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test460"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + java.awt.im.InputMethodRequests var3 = var0.getInputMethodRequests(); + int var4 = var0.countComponents(); + java.awt.event.MouseMotionListener[] var5 = var0.getMouseMotionListeners(); + var0.repaint(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + } + + public void test461() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test461"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.setInheritsPopupMenu(false); + var0.setFocusTraversalPolicyProvider(true); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + boolean var12 = var8.isDoubleBuffered(); + var8.list(); + SpaceWar.SpacePanel var14 = new SpaceWar.SpacePanel(); + float var15 = var14.getAlignmentX(); + var14.setVisible(false); + boolean var18 = var14.isDoubleBuffered(); + java.awt.dnd.DropTarget var19 = var14.getDropTarget(); + var14.show(false); + java.awt.Rectangle var22 = var14.getVisibleRect(); + java.awt.Rectangle var23 = var8.getBounds(var22); + javax.swing.JToolTip var24 = var8.createToolTip(); + var0.removeKeyListener((java.awt.event.KeyListener)var8); + javax.swing.TransferHandler var26 = var0.getTransferHandler(); + var0.transferFocus(); + boolean var28 = var0.isFocusable(); + var0.disable(); + java.awt.event.ComponentListener[] var30 = var0.getComponentListeners(); + int var31 = var0.getComponentCount(); + SpaceWar.SpacePanel var32 = new SpaceWar.SpacePanel(); + float var33 = var32.getAlignmentX(); + var32.setVisible(false); + var32.nextFocus(); + var32.reshape((-1), 1, (-1), 10); + var32.disable(); + java.awt.LayoutManager var43 = var32.getLayout(); + boolean var46 = var32.contains((-1), 0); + SpaceWar.SpacePanel var47 = new SpaceWar.SpacePanel(); + float var48 = var47.getAlignmentX(); + var47.setVisible(false); + var47.nextFocus(); + var47.updateUI(); + var47.enableInputMethods(true); + var47.setSize((-1), 1); + java.awt.Component var58 = var32.add((java.awt.Component)var47); + SpaceWar.SpacePanel var59 = new SpaceWar.SpacePanel(); + float var60 = var59.getAlignmentX(); + var59.setVisible(false); + var59.nextFocus(); + var59.updateUI(); + var59.enableInputMethods(true); + java.lang.String var67 = var59.toString(); + java.awt.FocusTraversalPolicy var68 = var59.getFocusTraversalPolicy(); + var47.removeKeyListener((java.awt.event.KeyListener)var59); + boolean var70 = var59.isShowing(); + java.awt.GraphicsConfiguration var71 = var59.getGraphicsConfiguration(); + java.awt.Cursor var72 = var59.getCursor(); + var0.setCursor(var72); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var23); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var28 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var30); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var31 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var33 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var43); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var46 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var48 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var58); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var60 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var67 + "' != '" + "SpaceWar.SpacePanel[,0,0,0var67,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"+ "'", var67.equals("SpaceWar.SpacePanel[,0,0,0var67,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]")); + + // Regression assertion (captures the current behavior of the code) + assertNull(var68); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var70 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var71); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var72); + + } + + public void test462() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test462"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + float var7 = var6.getAlignmentX(); + var6.setVisible(false); + java.awt.Dimension var10 = var6.getPreferredSize(); + var0.setMaximumSize(var10); + boolean var12 = var0.getVerifyInputWhenFocusTarget(); + int var13 = var0.getX(); + SpaceWar.SpacePanel var14 = new SpaceWar.SpacePanel(); + float var15 = var14.getAlignmentX(); + SpaceWar.SpacePanel var16 = new SpaceWar.SpacePanel(); + float var17 = var16.getAlignmentX(); + var16.setVisible(false); + java.awt.Dimension var20 = var16.getPreferredSize(); + boolean var21 = var16.getVerifyInputWhenFocusTarget(); + java.awt.Component var24 = var16.findComponentAt(10, 1); + var14.addKeyListener((java.awt.event.KeyListener)var16); + var16.repaint(100, (-1), (-1), 1); + SpaceWar.SpacePanel var31 = new SpaceWar.SpacePanel(); + java.awt.Color var32 = var31.getBackground(); + var31.repaint(); + java.awt.im.InputMethodRequests var34 = var31.getInputMethodRequests(); + java.awt.GraphicsConfiguration var35 = var31.getGraphicsConfiguration(); + var16.remove((java.awt.Component)var31); + java.awt.Font var37 = var31.getFont(); + var0.setFont(var37); + boolean var39 = var0.isShowing(); + SpaceWar.SpacePanel var40 = new SpaceWar.SpacePanel(); + java.awt.Color var41 = var40.getBackground(); + var40.repaint(); + java.awt.im.InputMethodRequests var43 = var40.getInputMethodRequests(); + var40.setDoubleBuffered(true); + var40.setInheritsPopupMenu(false); + boolean var48 = var40.isFocusTraversalPolicySet(); + var40.transferFocusUpCycle(); + SpaceWar.SpacePanel var50 = new SpaceWar.SpacePanel(); + float var51 = var50.getAlignmentX(); + var50.setVisible(false); + boolean var54 = var50.isDoubleBuffered(); + java.awt.dnd.DropTarget var55 = var50.getDropTarget(); + var50.show(false); + java.awt.Rectangle var58 = var50.getVisibleRect(); + java.awt.image.BufferedImage var60 = var50.loadImg("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + java.awt.ComponentOrientation var61 = var50.getComponentOrientation(); + java.awt.Component var62 = var40.add((java.awt.Component)var50); + SpaceWar.SpacePanel var63 = new SpaceWar.SpacePanel(); + java.awt.Color var64 = var63.getBackground(); + boolean var67 = var63.inside(0, (-1)); + SpaceWar.SpacePanel var68 = new SpaceWar.SpacePanel(); + float var69 = var68.getAlignmentX(); + var68.setVisible(false); + SpaceWar.SpacePanel var72 = new SpaceWar.SpacePanel(); + java.awt.Color var73 = var72.getBackground(); + var68.setForeground(var73); + var63.setForeground(var73); + java.awt.image.VolatileImage var78 = var63.createVolatileImage(400, (-1)); + var0.add((java.awt.Component)var40, (java.lang.Object)400); + var40.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=8,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", 24, (-1)); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var32); + + // Regression assertion (captures the current behavior of the code) + assertNull(var34); + + // Regression assertion (captures the current behavior of the code) + assertNull(var35); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var37); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var39 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var41); + + // Regression assertion (captures the current behavior of the code) + assertNull(var43); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var48 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var51 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var54 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var55); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var58); + + // Regression assertion (captures the current behavior of the code) + assertNull(var60); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var61); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var62); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var64); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var67 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var69 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var73); + + // Regression assertion (captures the current behavior of the code) + assertNull(var78); + + } + + public void test463() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test463"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.updateUI(); + var0.enableInputMethods(true); + java.awt.Point var9 = var0.getMousePosition(false); + java.awt.Component.BaselineResizeBehavior var10 = var0.getBaselineResizeBehavior(); + java.awt.Dimension var11 = var0.getPreferredSize(); + var0.repaint(100, 400, 10, (-1)); + SpaceWar.SpacePanel var17 = new SpaceWar.SpacePanel(); + float var18 = var17.getAlignmentX(); + var17.setVisible(false); + java.awt.Dimension var21 = var17.getPreferredSize(); + java.awt.Toolkit var22 = var17.getToolkit(); + boolean var23 = var17.isFocusable(); + javax.swing.KeyStroke[] var24 = var17.getRegisteredKeyStrokes(); + var17.setFocusCycleRoot(false); + SpaceWar.SpacePanel var27 = new SpaceWar.SpacePanel(); + java.awt.Color var28 = var27.getBackground(); + var27.repaint(); + javax.swing.plaf.PanelUI var30 = var27.getUI(); + SpaceWar.SpacePanel var31 = new SpaceWar.SpacePanel(); + float var32 = var31.getAlignmentX(); + var31.setVisible(false); + boolean var35 = var31.isDoubleBuffered(); + java.awt.dnd.DropTarget var36 = var31.getDropTarget(); + var31.show(false); + boolean var39 = var31.isPaintingForPrint(); + SpaceWar.SpacePanel var40 = new SpaceWar.SpacePanel(); + float var41 = var40.getAlignmentX(); + var40.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var46 = var40.getMouseListeners(); + int var47 = var40.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var48 = var40.getInputMethodRequests(); + var31.addKeyListener((java.awt.event.KeyListener)var40); + SpaceWar.SpacePanel var50 = new SpaceWar.SpacePanel(); + float var51 = var50.getAlignmentX(); + var50.setVisible(false); + boolean var54 = var50.isDoubleBuffered(); + var50.list(); + float var56 = var50.getAlignmentY(); + boolean var57 = var40.isFocusCycleRoot((java.awt.Container)var50); + SpaceWar.SpacePanel var59 = new SpaceWar.SpacePanel(); + float var60 = var59.getAlignmentX(); + var59.setVisible(false); + var59.nextFocus(); + var59.updateUI(); + java.awt.Component var65 = var40.add("", (java.awt.Component)var59); + java.awt.ComponentOrientation var66 = var59.getComponentOrientation(); + boolean var67 = var59.isFocusable(); + var27.remove((java.awt.Component)var59); + SpaceWar.SpacePanel var69 = new SpaceWar.SpacePanel(); + float var70 = var69.getAlignmentX(); + var69.setVisible(false); + var69.setInheritsPopupMenu(false); + boolean var75 = var69.isDoubleBuffered(); + SpaceWar.SpacePanel var76 = new SpaceWar.SpacePanel(); + float var77 = var76.getAlignmentX(); + var76.setVisible(false); + var76.nextFocus(); + var76.reshape((-1), 1, (-1), 10); + var76.disable(); + java.awt.LayoutManager var87 = var76.getLayout(); + var69.setLayout(var87); + var17.add((java.awt.Component)var27, (java.lang.Object)var87); + var0.setLayout(var87); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNull(var9); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var21); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var28); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var30); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var32 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var35 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var36); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var39 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var41 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var46); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var47 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var48); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var51 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var54 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var56 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var57 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var60 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var65); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var66); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var67 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var70 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var75 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var77 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var87); + + } + + public void test464() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test464"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + float var7 = var6.getAlignmentX(); + var6.setVisible(false); + java.awt.Dimension var10 = var6.getPreferredSize(); + var0.setMaximumSize(var10); + boolean var12 = var0.getVerifyInputWhenFocusTarget(); + boolean var13 = var0.isFontSet(); + boolean var14 = var0.getIgnoreRepaint(); + java.awt.Component var17 = var0.locate(1, 25); + boolean var18 = var0.isLightweight(); + var0.move(100, 500); + SpaceWar.SpacePanel var22 = new SpaceWar.SpacePanel(); + float var23 = var22.getAlignmentX(); + var22.setVisible(false); + var22.nextFocus(); + SpaceWar.SpacePanel var27 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var28 = new SpaceWar.SpacePanel(); + java.awt.Color var29 = var28.getBackground(); + SpaceWar.SpacePanel var30 = new SpaceWar.SpacePanel(); + float var31 = var30.getAlignmentX(); + var30.setVisible(false); + var30.nextFocus(); + var30.updateUI(); + var30.enableInputMethods(true); + var27.add((java.awt.Component)var28, (java.lang.Object)true); + java.awt.Dimension var39 = var28.getPreferredSize(); + var22.setMaximumSize(var39); + java.awt.Dimension var41 = var22.preferredSize(); + java.lang.String var42 = var22.getToolTipText(); + var0.removeKeyListener((java.awt.event.KeyListener)var22); + javax.swing.TransferHandler var44 = var0.getTransferHandler(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var29); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var31 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var39); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var41); + + // Regression assertion (captures the current behavior of the code) + assertNull(var42); + + // Regression assertion (captures the current behavior of the code) + assertNull(var44); + + } + + public void test465() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test465"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var6 = var0.getMouseListeners(); + int var7 = var0.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var8 = var0.getInputMethodRequests(); + var0.removeNotify(); + var0.enable(); + SpaceWar.SpacePanel var11 = new SpaceWar.SpacePanel(); + java.awt.Color var12 = var11.getBackground(); + boolean var15 = var11.inside(0, (-1)); + var11.transferFocusUpCycle(); + java.lang.String var17 = var11.getName(); + boolean var18 = var0.isFocusCycleRoot((java.awt.Container)var11); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + float var20 = var19.getAlignmentX(); + var19.setVisible(false); + SpaceWar.SpacePanel var23 = new SpaceWar.SpacePanel(); + java.awt.Color var24 = var23.getBackground(); + var19.setForeground(var24); + SpaceWar.SpacePanel var26 = new SpaceWar.SpacePanel(); + float var27 = var26.getAlignmentX(); + var26.setVisible(false); + boolean var30 = var26.isDoubleBuffered(); + java.awt.dnd.DropTarget var31 = var26.getDropTarget(); + var26.show(false); + java.awt.Rectangle var34 = var26.getVisibleRect(); + var19.repaint(var34); + java.awt.Component.BaselineResizeBehavior var36 = var19.getBaselineResizeBehavior(); + var11.addKeyListener((java.awt.event.KeyListener)var19); + boolean var38 = var19.requestDefaultFocus(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var30 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var31); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var34); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var36); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var38 == false); + + } + + public void test466() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test466"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + var0.list(); + float var6 = var0.getAlignmentY(); + boolean var7 = var0.isOpaque(); + var0.resetKeyboardActions(); + boolean var9 = var0.isFocusTraversalPolicyProvider(); + java.awt.im.InputContext var10 = var0.getInputContext(); + var0.setFocusTraversalKeysEnabled(true); + javax.swing.KeyStroke[] var13 = var0.getRegisteredKeyStrokes(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var13); + + } + + public void test467() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test467"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + SpaceWar.SpacePanel var4 = new SpaceWar.SpacePanel(); + java.awt.Color var5 = var4.getBackground(); + var0.setForeground(var5); + SpaceWar.SpacePanel var7 = new SpaceWar.SpacePanel(); + float var8 = var7.getAlignmentX(); + var7.setVisible(false); + boolean var11 = var7.isDoubleBuffered(); + java.awt.dnd.DropTarget var12 = var7.getDropTarget(); + var7.show(false); + java.awt.Rectangle var15 = var7.getVisibleRect(); + var0.repaint(var15); + java.awt.FocusTraversalPolicy var17 = var0.getFocusTraversalPolicy(); + java.awt.im.InputMethodRequests var18 = var0.getInputMethodRequests(); + var0.layout(); + boolean var20 = var0.isFocusTraversalPolicyProvider(); + java.awt.Insets var21 = var0.insets(); + java.awt.Dimension var22 = var0.getMinimumSize(); + SpaceWar.SpacePanel var23 = new SpaceWar.SpacePanel(); + float var24 = var23.getAlignmentX(); + var23.setVisible(false); + boolean var27 = var23.isDoubleBuffered(); + java.awt.dnd.DropTarget var28 = var23.getDropTarget(); + var23.show(false); + java.awt.event.MouseWheelListener[] var31 = var23.getMouseWheelListeners(); + SpaceWar.SpacePanel var32 = new SpaceWar.SpacePanel(); + float var33 = var32.getAlignmentX(); + var32.setVisible(false); + SpaceWar.SpacePanel var36 = new SpaceWar.SpacePanel(); + java.awt.Color var37 = var36.getBackground(); + var32.setForeground(var37); + SpaceWar.SpacePanel var39 = new SpaceWar.SpacePanel(); + float var40 = var39.getAlignmentX(); + var39.setVisible(false); + boolean var43 = var39.isDoubleBuffered(); + java.awt.dnd.DropTarget var44 = var39.getDropTarget(); + var39.show(false); + java.awt.Rectangle var47 = var39.getVisibleRect(); + var32.repaint(var47); + SpaceWar.SpacePanel var49 = new SpaceWar.SpacePanel(); + float var50 = var49.getAlignmentX(); + var49.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var55 = var49.getMouseListeners(); + java.awt.Dimension var56 = var49.getPreferredSize(); + java.util.Locale var57 = var49.getLocale(); + var32.setLocale(var57); + java.util.Locale var59 = var32.getLocale(); + var23.setLocale(var59); + var0.setLocale(var59); + var0.invalidate(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var21); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var24 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var28); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var31); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var33 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var37); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var40 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var43 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var44); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var47); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var50 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var55); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var56); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var57); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var59); + + } + + public void test468() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test468"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + SpaceWar.SpacePanel var4 = new SpaceWar.SpacePanel(); + java.awt.Color var5 = var4.getBackground(); + var0.setForeground(var5); + SpaceWar.SpacePanel var7 = new SpaceWar.SpacePanel(); + float var8 = var7.getAlignmentX(); + var7.setVisible(false); + boolean var11 = var7.isDoubleBuffered(); + java.awt.dnd.DropTarget var12 = var7.getDropTarget(); + var7.show(false); + java.awt.Rectangle var15 = var7.getVisibleRect(); + var0.repaint(var15); + java.awt.FocusTraversalPolicy var17 = var0.getFocusTraversalPolicy(); + SpaceWar.SpacePanel var18 = new SpaceWar.SpacePanel(); + float var19 = var18.getAlignmentX(); + var18.firePropertyChange("", (-1), 1); + boolean var24 = var18.isFocusOwner(); + SpaceWar.SpacePanel var26 = new SpaceWar.SpacePanel(); + float var27 = var26.getAlignmentX(); + var26.setVisible(false); + java.awt.Dimension var30 = var26.getPreferredSize(); + java.awt.Toolkit var31 = var26.getToolkit(); + SpaceWar.SpacePanel var32 = new SpaceWar.SpacePanel(); + var32.setName(""); + int var35 = var32.getX(); + SpaceWar.SpacePanel var36 = new SpaceWar.SpacePanel(); + float var37 = var36.getAlignmentX(); + var36.setVisible(false); + var36.nextFocus(); + SpaceWar.SpacePanel var41 = new SpaceWar.SpacePanel(); + float var42 = var41.getAlignmentX(); + var41.setVisible(false); + SpaceWar.SpacePanel var45 = new SpaceWar.SpacePanel(); + java.awt.Color var46 = var45.getBackground(); + var41.setForeground(var46); + var36.setBackground(var46); + var32.setBackground(var46); + var26.setForeground(var46); + var18.putClientProperty((java.lang.Object)(byte)100, (java.lang.Object)var46); + var0.setBackground(var46); + javax.swing.JToolTip var53 = var0.createToolTip(); + var0.repaint(25, 25, 24, 10); + var0.transferFocusBackward(); + SpaceWar.SpacePanel var60 = new SpaceWar.SpacePanel(); + float var61 = var60.getAlignmentX(); + var60.setVisible(false); + java.awt.Dimension var64 = var60.getPreferredSize(); + boolean var65 = var60.getVerifyInputWhenFocusTarget(); + java.awt.Component var68 = var60.findComponentAt(10, 1); + boolean var69 = var60.requestDefaultFocus(); + var60.firePropertyChange("hi!", false, true); + javax.swing.ActionMap var74 = var60.getActionMap(); + var60.setDebugGraphicsOptions(10); + java.awt.LayoutManager var77 = var60.getLayout(); + var0.setLayout(var77); + var0.requestFocus(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var24 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var30); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var31); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var35 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var42 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var46); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var53); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var61 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var64); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var65 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var68); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var69 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var74); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var77); + + } + + public void test469() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test469"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var6 = var0.getMouseListeners(); + var0.firePropertyChange("", 0.5f, 100.0f); + var0.enable(false); + var0.setVerifyInputWhenFocusTarget(true); + java.awt.event.MouseListener[] var15 = var0.getMouseListeners(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + } + + public void test470() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test470"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var6 = var0.getUI(); + java.awt.im.InputMethodRequests var7 = var0.getInputMethodRequests(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + var8.nextFocus(); + var8.updateUI(); + var8.enableInputMethods(true); + var8.setSize((-1), 1); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + var19.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var0.add((java.awt.Component)var8, (java.lang.Object)"SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + java.awt.event.KeyListener[] var25 = var0.getKeyListeners(); + var0.reshape(10, 100, 3, 3); + javax.accessibility.AccessibleContext var31 = var0.getAccessibleContext(); + java.awt.Rectangle var32 = var0.getVisibleRect(); + int var33 = var0.getComponentCount(); + boolean var34 = var0.hasFocus(); + SpaceWar.SpacePanel var35 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var36 = new SpaceWar.SpacePanel(); + java.awt.Color var37 = var36.getBackground(); + SpaceWar.SpacePanel var38 = new SpaceWar.SpacePanel(); + float var39 = var38.getAlignmentX(); + var38.setVisible(false); + var38.nextFocus(); + var38.updateUI(); + var38.enableInputMethods(true); + var35.add((java.awt.Component)var36, (java.lang.Object)true); + boolean var48 = var36.areFocusTraversalKeysSet(0); + SpaceWar.SpacePanel var49 = new SpaceWar.SpacePanel(); + float var50 = var49.getAlignmentX(); + var49.setVisible(false); + boolean var53 = var49.isDoubleBuffered(); + java.awt.dnd.DropTarget var54 = var49.getDropTarget(); + var49.show(false); + java.awt.Rectangle var57 = var49.getVisibleRect(); + var36.setBounds(var57); + java.awt.Rectangle var59 = var0.getBounds(var57); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var25); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var31); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var32); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var33 == 1); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var34 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var37); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var39 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var48 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var50 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var53 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var54); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var57); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var59); + + } + + public void test471() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test471"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + var0.show(false); + boolean var8 = var0.isPaintingForPrint(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var15 = var9.getMouseListeners(); + int var16 = var9.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var17 = var9.getInputMethodRequests(); + var0.addKeyListener((java.awt.event.KeyListener)var9); + boolean var19 = var9.isShowing(); + boolean var20 = var9.isOpaque(); + SpaceWar.SpacePanel var21 = new SpaceWar.SpacePanel(); + float var22 = var21.getAlignmentX(); + var21.setVisible(false); + boolean var25 = var21.isDoubleBuffered(); + var21.list(); + SpaceWar.SpacePanel var27 = new SpaceWar.SpacePanel(); + float var28 = var27.getAlignmentX(); + var27.setVisible(false); + boolean var31 = var27.isDoubleBuffered(); + java.awt.dnd.DropTarget var32 = var27.getDropTarget(); + var27.show(false); + java.awt.Rectangle var35 = var27.getVisibleRect(); + java.awt.Rectangle var36 = var21.getBounds(var35); + javax.swing.JToolTip var37 = var21.createToolTip(); + java.awt.Dimension var38 = var21.minimumSize(); + SpaceWar.SpacePanel var39 = new SpaceWar.SpacePanel(); + float var40 = var39.getAlignmentX(); + var39.setVisible(false); + var39.setInheritsPopupMenu(false); + var39.setFocusTraversalPolicyProvider(true); + java.awt.Container var47 = var39.getFocusCycleRootAncestor(); + SpaceWar.SpacePanel var48 = new SpaceWar.SpacePanel(); + float var49 = var48.getAlignmentX(); + var48.removeNotify(); + SpaceWar.SpacePanel var51 = new SpaceWar.SpacePanel(); + float var52 = var51.getAlignmentX(); + var51.setVisible(false); + boolean var55 = var51.isDoubleBuffered(); + var51.list(); + float var57 = var51.getAlignmentY(); + java.awt.Insets var58 = var51.getInsets(); + java.awt.Insets var59 = var48.getInsets(var58); + java.awt.Insets var60 = var39.getInsets(var59); + java.awt.Insets var61 = var21.getInsets(var59); + java.awt.ComponentOrientation var62 = var21.getComponentOrientation(); + var9.applyComponentOrientation(var62); + var9.enable(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var22 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var28 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var31 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var32); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var35); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var36); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var37); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var38); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var40 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNull(var47); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var49 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var52 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var55 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var57 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var58); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var59); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var60); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var61); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var62); + + } + + public void test472() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test472"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + SpaceWar.SpacePanel var5 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + java.awt.Color var7 = var6.getBackground(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + var8.nextFocus(); + var8.updateUI(); + var8.enableInputMethods(true); + var5.add((java.awt.Component)var6, (java.lang.Object)true); + java.awt.Dimension var17 = var6.getPreferredSize(); + var0.setMaximumSize(var17); + javax.swing.InputVerifier var19 = var0.getInputVerifier(); + java.beans.VetoableChangeListener[] var20 = var0.getVetoableChangeListeners(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + } + + public void test473() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test473"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + float var7 = var6.getAlignmentX(); + var6.setVisible(false); + java.awt.Dimension var10 = var6.getPreferredSize(); + var0.setMaximumSize(var10); + boolean var12 = var0.getVerifyInputWhenFocusTarget(); + javax.accessibility.AccessibleContext var13 = var0.getAccessibleContext(); + boolean var14 = var0.isOpaque(); + java.lang.String var15 = var0.toString(); + SpaceWar.SpacePanel var16 = new SpaceWar.SpacePanel(); + float var17 = var16.getAlignmentX(); + SpaceWar.SpacePanel var18 = new SpaceWar.SpacePanel(); + float var19 = var18.getAlignmentX(); + var18.setVisible(false); + java.awt.Dimension var22 = var18.getPreferredSize(); + boolean var23 = var18.getVerifyInputWhenFocusTarget(); + java.awt.Component var26 = var18.findComponentAt(10, 1); + var16.addKeyListener((java.awt.event.KeyListener)var18); + var18.repaint(100, (-1), (-1), 1); + java.awt.image.ColorModel var33 = var18.getColorModel(); + boolean var34 = var18.isFocusTraversalPolicyProvider(); + var18.show(false); + boolean var37 = var18.isPreferredSizeSet(); + SpaceWar.SpacePanel var38 = new SpaceWar.SpacePanel(); + float var39 = var38.getAlignmentX(); + var38.setVisible(false); + boolean var42 = var38.isDoubleBuffered(); + var38.list(); + float var44 = var38.getAlignmentY(); + java.awt.Insets var45 = var38.getInsets(); + SpaceWar.SpacePanel var46 = new SpaceWar.SpacePanel(); + float var47 = var46.getAlignmentX(); + var46.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var52 = new SpaceWar.SpacePanel(); + float var53 = var52.getAlignmentX(); + var52.setVisible(false); + java.awt.Dimension var56 = var52.getPreferredSize(); + var46.setMaximumSize(var56); + java.awt.Dimension var58 = var38.getSize(var56); + var38.setFocusTraversalKeysEnabled(false); + SpaceWar.SpacePanel var61 = new SpaceWar.SpacePanel(); + var61.setName(""); + java.awt.Toolkit var64 = var61.getToolkit(); + var61.setEnabled(false); + var61.removeNotify(); + boolean var68 = var61.isDisplayable(); + SpaceWar.SpacePanel var69 = new SpaceWar.SpacePanel(); + java.awt.Color var70 = var69.getBackground(); + var69.repaint(); + var69.setRequestFocusEnabled(false); + var69.reshape(100, 0, 100, 0); + var69.requestFocus(); + java.awt.Rectangle var80 = var69.getVisibleRect(); + java.awt.Rectangle var81 = var69.getBounds(); + java.awt.im.InputMethodRequests var82 = var69.getInputMethodRequests(); + boolean var83 = var69.requestFocusInWindow(); + java.awt.Point var85 = var69.getMousePosition(false); + var69.setDebugGraphicsOptions(1); + java.awt.Graphics var88 = var69.getGraphics(); + var61.paintAll(var88); + var38.printAll(var88); + var18.printAll(var88); + var0.update(var88); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var15 + "' != '" + "SpaceWar.SpacePanel[,0,0,0var15,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=java.awt.Dimension[width=800,height=600],minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"+ "'", var15.equals("SpaceWar.SpacePanel[,0,0,0var15,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=java.awt.Dimension[width=800,height=600],minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]")); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var33); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var34 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var39 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var42 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var44 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var45); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var47 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var53 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var56); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var58); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var64); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var68 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var70); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var80); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var81); + + // Regression assertion (captures the current behavior of the code) + assertNull(var82); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var83 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var85); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var88); + + } + + public void test474() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test474"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + var0.setRequestFocusEnabled(false); + var0.reshape(100, 0, 100, 0); + var0.requestFocus(); + var0.firePropertyChange("hi!", '4', ' '); + SpaceWar.Enemy var17 = new SpaceWar.Enemy(0, 100); + int var18 = var17.getR(); + var17.explode(); + var0.putClientProperty((java.lang.Object)var17, (java.lang.Object)(short)10); + boolean var23 = var0.requestFocus(false); + java.awt.Component var24 = var0.getNextFocusableComponent(); + float var25 = var0.getAlignmentX(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == 0.5f); + + } + + public void test475() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test475"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.updateUI(); + var0.enableInputMethods(true); + java.lang.String var8 = var0.toString(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.setVisible(false); + boolean var13 = var9.isDoubleBuffered(); + java.awt.dnd.DropTarget var14 = var9.getDropTarget(); + var9.show(false); + java.awt.Rectangle var17 = var9.getVisibleRect(); + java.awt.image.BufferedImage var19 = var9.loadImg("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + java.awt.ComponentOrientation var20 = var9.getComponentOrientation(); + boolean var21 = var9.isPaintingTile(); + boolean var22 = var9.isOptimizedDrawingEnabled(); + int var23 = var0.getComponentZOrder((java.awt.Component)var9); + javax.swing.JRootPane var24 = var0.getRootPane(); + boolean var25 = var0.isMaximumSizeSet(); + boolean var26 = var0.isVisible(); + java.awt.event.HierarchyListener[] var27 = var0.getHierarchyListeners(); + // The following exception was thrown during execution. + // This behavior will recorded for regression testing. + try { + java.awt.Component var29 = var0.getComponent(2); + fail("Expected exception of type java.lang.ArrayIndexOutOfBoundsException"); + } catch (java.lang.ArrayIndexOutOfBoundsException e) { + // Expected exception. + } + + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var8 + "' != '" + "SpaceWar.SpacePanel[,0,0,0var8,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"+ "'", var8.equals("SpaceWar.SpacePanel[,0,0,0var8,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]")); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var22 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == (-1)); + + // Regression assertion (captures the current behavior of the code) + assertNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var27); + + } + + public void test476() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test476"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + var0.show(false); + boolean var8 = var0.isPaintingForPrint(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var15 = var9.getMouseListeners(); + int var16 = var9.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var17 = var9.getInputMethodRequests(); + var0.addKeyListener((java.awt.event.KeyListener)var9); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + float var20 = var19.getAlignmentX(); + var19.setVisible(false); + boolean var23 = var19.isDoubleBuffered(); + var19.list(); + float var25 = var19.getAlignmentY(); + boolean var26 = var9.isFocusCycleRoot((java.awt.Container)var19); + SpaceWar.SpacePanel var28 = new SpaceWar.SpacePanel(); + float var29 = var28.getAlignmentX(); + var28.setVisible(false); + var28.nextFocus(); + var28.updateUI(); + java.awt.Component var34 = var9.add("", (java.awt.Component)var28); + java.awt.ComponentOrientation var35 = var28.getComponentOrientation(); + java.awt.Dimension var36 = var28.minimumSize(); + boolean var37 = var28.isEnabled(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var29 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var34); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var35); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var36); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == true); + + } + + public void test477() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test477"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + boolean var6 = var0.isFocusCycleRoot(); + SpaceWar.SpacePanel var7 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + java.awt.Color var9 = var8.getBackground(); + SpaceWar.SpacePanel var10 = new SpaceWar.SpacePanel(); + float var11 = var10.getAlignmentX(); + var10.setVisible(false); + var10.nextFocus(); + var10.updateUI(); + var10.enableInputMethods(true); + var7.add((java.awt.Component)var8, (java.lang.Object)true); + java.awt.Dimension var19 = var8.getPreferredSize(); + var0.setSize(var19); + var0.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", (-1), 10); + var0.setLocation(10, 100); + javax.accessibility.AccessibleContext var28 = var0.getAccessibleContext(); + int var29 = var0.getX(); + SpaceWar.SpacePanel var30 = new SpaceWar.SpacePanel(); + float var31 = var30.getAlignmentX(); + var30.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var36 = var30.getUI(); + java.awt.im.InputMethodRequests var37 = var30.getInputMethodRequests(); + SpaceWar.SpacePanel var38 = new SpaceWar.SpacePanel(); + float var39 = var38.getAlignmentX(); + var38.setVisible(false); + var38.nextFocus(); + var38.updateUI(); + var38.enableInputMethods(true); + var38.setSize((-1), 1); + SpaceWar.SpacePanel var49 = new SpaceWar.SpacePanel(); + var49.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var30.add((java.awt.Component)var38, (java.lang.Object)"SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + SpaceWar.SpacePanel var55 = new SpaceWar.SpacePanel(); + float var56 = var55.getAlignmentX(); + var55.setVisible(false); + java.awt.Dimension var59 = var55.getPreferredSize(); + java.awt.Toolkit var60 = var55.getToolkit(); + java.awt.Toolkit var61 = var55.getToolkit(); + java.awt.Component var62 = var38.add((java.awt.Component)var55); + int var63 = var38.getY(); + int var66 = var38.getBaseline(25, 10); + java.awt.im.InputMethodRequests var67 = var38.getInputMethodRequests(); + java.awt.Point var69 = var38.getMousePosition(true); + java.awt.Component var70 = var0.add((java.awt.Component)var38); + java.awt.Component var73 = var38.locate(100, 24); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var9); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var28); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var29 == 10); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var31 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var36); + + // Regression assertion (captures the current behavior of the code) + assertNull(var37); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var39 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var56 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var59); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var60); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var61); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var62); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var63 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var66 == (-1)); + + // Regression assertion (captures the current behavior of the code) + assertNull(var67); + + // Regression assertion (captures the current behavior of the code) + assertNull(var69); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var70); + + // Regression assertion (captures the current behavior of the code) + assertNull(var73); + + } + + public void test478() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test478"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + java.awt.Dimension var4 = var0.getPreferredSize(); + boolean var5 = var0.getVerifyInputWhenFocusTarget(); + java.awt.event.MouseWheelListener[] var6 = var0.getMouseWheelListeners(); + java.awt.event.MouseWheelListener[] var7 = var0.getMouseWheelListeners(); + boolean var8 = var0.isShowing(); + var0.setFocusCycleRoot(false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var4); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + } + + public void test479() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test479"); + + + SpaceWar.Enemy var2 = new SpaceWar.Enemy(0, 10); + int var3 = var2.getRank(); + int var4 = var2.getR(); + int var5 = var2.getRank(); + var2.explode(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == 10); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == 10); + + } + + public void test480() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test480"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var1 = new SpaceWar.SpacePanel(); + java.awt.Color var2 = var1.getBackground(); + SpaceWar.SpacePanel var3 = new SpaceWar.SpacePanel(); + float var4 = var3.getAlignmentX(); + var3.setVisible(false); + var3.nextFocus(); + var3.updateUI(); + var3.enableInputMethods(true); + var0.add((java.awt.Component)var1, (java.lang.Object)true); + boolean var12 = var0.isMinimumSizeSet(); + java.awt.event.HierarchyListener[] var13 = var0.getHierarchyListeners(); + SpaceWar.SpacePanel var14 = new SpaceWar.SpacePanel(); + float var15 = var14.getAlignmentX(); + var14.setVisible(false); + SpaceWar.SpacePanel var18 = new SpaceWar.SpacePanel(); + java.awt.Color var19 = var18.getBackground(); + var14.setForeground(var19); + SpaceWar.SpacePanel var21 = new SpaceWar.SpacePanel(); + float var22 = var21.getAlignmentX(); + var21.setVisible(false); + boolean var25 = var21.isDoubleBuffered(); + java.awt.dnd.DropTarget var26 = var21.getDropTarget(); + var21.show(false); + java.awt.Rectangle var29 = var21.getVisibleRect(); + var14.repaint(var29); + java.awt.FocusTraversalPolicy var31 = var14.getFocusTraversalPolicy(); + java.awt.im.InputMethodRequests var32 = var14.getInputMethodRequests(); + var14.layout(); + boolean var34 = var14.isFocusTraversalPolicyProvider(); + java.lang.Object var35 = var0.getClientProperty((java.lang.Object)var34); + java.awt.Dimension var36 = var0.getSize(); + boolean var37 = var0.isFocusTraversable(); + var0.show(false); + SpaceWar.SpacePanel var40 = new SpaceWar.SpacePanel(); + java.awt.Color var41 = var40.getBackground(); + var40.repaint(); + java.awt.im.InputMethodRequests var43 = var40.getInputMethodRequests(); + int var44 = var40.countComponents(); + java.awt.Dimension var45 = var40.getSize(); + java.awt.event.MouseWheelListener[] var46 = var40.getMouseWheelListeners(); + int var47 = var0.getComponentZOrder((java.awt.Component)var40); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var2); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var22 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var29); + + // Regression assertion (captures the current behavior of the code) + assertNull(var31); + + // Regression assertion (captures the current behavior of the code) + assertNull(var32); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var34 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var35); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var36); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var41); + + // Regression assertion (captures the current behavior of the code) + assertNull(var43); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var44 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var45); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var46); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var47 == (-1)); + + } + + public void test481() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test481"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + var0.setRequestFocusEnabled(false); + var0.reshape(100, 0, 100, 0); + var0.requestFocus(); + var0.firePropertyChange("hi!", '4', ' '); + java.awt.Point var15 = var0.getLocation(); + java.awt.event.MouseWheelListener[] var16 = var0.getMouseWheelListeners(); + SpaceWar.SpacePanel var17 = new SpaceWar.SpacePanel(); + float var18 = var17.getAlignmentX(); + var17.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var23 = var17.getUI(); + var0.setUI(var23); + java.awt.dnd.DropTarget var25 = var0.getDropTarget(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var23); + + // Regression assertion (captures the current behavior of the code) + assertNull(var25); + + } + + public void test482() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test482"); + + + SpaceWar.Player var0 = new SpaceWar.Player(); + boolean var1 = var0.isRecovering(); + var0.setUp(true); + java.awt.image.BufferedImage var5 = var0.loadImg("SpaceWar.SpacePanel[,0,0,0x0,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + var0.setLife(100); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + } + + public void test483() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test483"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + boolean var2 = var0.hasFocus(); + java.beans.VetoableChangeListener[] var3 = var0.getVetoableChangeListeners(); + var0.paintImmediately(10, 0, (-1), 25); + boolean var9 = var0.getInheritsPopupMenu(); + var0.resize(500, 10); + SpaceWar.SpacePanel var13 = new SpaceWar.SpacePanel(); + float var14 = var13.getAlignmentX(); + var13.setVisible(false); + boolean var17 = var13.isDoubleBuffered(); + SpaceWar.SpacePanel var18 = new SpaceWar.SpacePanel(); + float var19 = var18.getAlignmentX(); + var18.setVisible(false); + var18.nextFocus(); + var18.reshape((-1), 1, (-1), 10); + var18.disable(); + boolean var29 = var18.isFocusable(); + int var30 = var18.getHeight(); + var13.setNextFocusableComponent((java.awt.Component)var18); + SpaceWar.SpacePanel var32 = new SpaceWar.SpacePanel(); + float var33 = var32.getAlignmentX(); + var32.setVisible(false); + var32.nextFocus(); + SpaceWar.SpacePanel var37 = new SpaceWar.SpacePanel(); + float var38 = var37.getAlignmentX(); + var37.setVisible(false); + SpaceWar.SpacePanel var41 = new SpaceWar.SpacePanel(); + java.awt.Color var42 = var41.getBackground(); + var37.setForeground(var42); + var32.setBackground(var42); + java.awt.Component var45 = var32.getNextFocusableComponent(); + float var46 = var32.getAlignmentY(); + java.awt.event.MouseListener[] var47 = var32.getMouseListeners(); + java.awt.Point var48 = var32.location(); + java.awt.Point var49 = var13.getLocation(var48); + var0.setLocation(var49); + var0.setSize(2, 3); + SpaceWar.Player var54 = new SpaceWar.Player(); + boolean var55 = var54.isRecovering(); + var54.setRigth(false); + int var58 = var54.getPower(); + boolean var59 = var54.isDead(); + SpaceWar.SpacePanel var60 = new SpaceWar.SpacePanel(); + java.awt.Color var61 = var60.getBackground(); + var60.repaint(); + java.awt.im.InputMethodRequests var63 = var60.getInputMethodRequests(); + var60.setDoubleBuffered(true); + var60.setInheritsPopupMenu(false); + boolean var68 = var60.isFocusTraversalPolicySet(); + var0.putClientProperty((java.lang.Object)var54, (java.lang.Object)var68); + SpaceWar.SpacePanel var70 = new SpaceWar.SpacePanel(); + float var71 = var70.getAlignmentX(); + var70.setVisible(false); + java.awt.Dimension var74 = var70.getPreferredSize(); + boolean var75 = var70.getVerifyInputWhenFocusTarget(); + java.awt.Component var78 = var70.findComponentAt(10, 1); + boolean var79 = var70.requestDefaultFocus(); + java.awt.Insets var80 = var70.getInsets(); + var70.setDoubleBuffered(false); + java.awt.Toolkit var83 = var70.getToolkit(); + java.awt.Dimension var84 = var70.getMinimumSize(); + java.awt.Dimension var85 = var0.getSize(var84); + java.awt.Dimension var86 = var0.getMinimumSize(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var2 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var29 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var30 == 10); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var33 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var38 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var42); + + // Regression assertion (captures the current behavior of the code) + assertNull(var45); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var46 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var47); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var48); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var49); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var55 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var58 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var59 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var61); + + // Regression assertion (captures the current behavior of the code) + assertNull(var63); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var68 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var71 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var74); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var75 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var78); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var79 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var80); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var83); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var84); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var85); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var86); + + } + + public void test484() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test484"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + var0.show(false); + boolean var8 = var0.isPaintingForPrint(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var15 = var9.getMouseListeners(); + int var16 = var9.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var17 = var9.getInputMethodRequests(); + var0.addKeyListener((java.awt.event.KeyListener)var9); + boolean var19 = var9.isShowing(); + boolean var20 = var9.requestFocusInWindow(); + var9.firePropertyChange("hi!", true, false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == false); + + } + + public void test485() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test485"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + var0.setRequestFocusEnabled(false); + var0.setIgnoreRepaint(false); + boolean var7 = var0.requestFocusInWindow(); + var0.setAlignmentY(100.0f); + SpaceWar.SpacePanel var10 = new SpaceWar.SpacePanel(); + float var11 = var10.getAlignmentX(); + var10.setVisible(false); + var10.nextFocus(); + var10.reshape((-1), 1, (-1), 10); + var10.disable(); + var10.show(); + SpaceWar.SpacePanel var22 = new SpaceWar.SpacePanel(); + float var23 = var22.getAlignmentX(); + var22.setVisible(false); + boolean var26 = var22.isDoubleBuffered(); + var22.list(); + SpaceWar.SpacePanel var28 = new SpaceWar.SpacePanel(); + float var29 = var28.getAlignmentX(); + var28.setVisible(false); + boolean var32 = var28.isDoubleBuffered(); + java.awt.dnd.DropTarget var33 = var28.getDropTarget(); + var28.show(false); + java.awt.Rectangle var36 = var28.getVisibleRect(); + java.awt.Rectangle var37 = var22.getBounds(var36); + javax.swing.JToolTip var38 = var22.createToolTip(); + var22.firePropertyChange("", false, false); + var22.validate(); + SpaceWar.SpacePanel var44 = new SpaceWar.SpacePanel(); + float var45 = var44.getAlignmentX(); + var44.setVisible(false); + boolean var48 = var44.isDoubleBuffered(); + java.awt.dnd.DropTarget var49 = var44.getDropTarget(); + var44.show(false); + boolean var52 = var44.isPaintingForPrint(); + SpaceWar.SpacePanel var53 = new SpaceWar.SpacePanel(); + float var54 = var53.getAlignmentX(); + var53.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var59 = var53.getMouseListeners(); + int var60 = var53.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var61 = var53.getInputMethodRequests(); + var44.addKeyListener((java.awt.event.KeyListener)var53); + var53.repaint(); + java.awt.Point var64 = var53.location(); + java.awt.Component var65 = var22.getComponentAt(var64); + java.awt.Point var66 = var10.getLocation(var64); + var0.setLocation(var66); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var29 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var32 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var33); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var36); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var37); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var38); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var45 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var48 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var49); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var52 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var54 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var59); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var60 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var61); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var64); + + // Regression assertion (captures the current behavior of the code) + assertNull(var65); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var66); + + } + + public void test486() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test486"); + + + SpaceWar.Bullet var3 = new SpaceWar.Bullet(83.657626403857d, 1, 24); + double var4 = var3.getY(); + double var5 = var3.getR(); + boolean var6 = var3.update(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 24.0d); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == 5.0d); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == false); + + } + + public void test487() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test487"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + java.awt.Dimension var4 = var0.getPreferredSize(); + boolean var5 = var0.getVerifyInputWhenFocusTarget(); + java.awt.Component var8 = var0.findComponentAt(10, 1); + boolean var9 = var0.requestDefaultFocus(); + var0.firePropertyChange("hi!", false, true); + boolean var14 = var0.isManagingFocus(); + boolean var15 = var0.isOpaque(); + java.awt.Image var18 = var0.createImage(100, 10); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var4); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var18); + + } + + public void test488() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test488"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + SpaceWar.SpacePanel var2 = new SpaceWar.SpacePanel(); + float var3 = var2.getAlignmentX(); + var2.setVisible(false); + java.awt.Dimension var6 = var2.getPreferredSize(); + boolean var7 = var2.getVerifyInputWhenFocusTarget(); + java.awt.Component var10 = var2.findComponentAt(10, 1); + var0.addKeyListener((java.awt.event.KeyListener)var2); + boolean var12 = var2.getFocusTraversalKeysEnabled(); + var2.requestFocus(); + // The following exception was thrown during execution. + // This behavior will recorded for regression testing. + try { + java.awt.Component var15 = var2.getComponent(499); + fail("Expected exception of type java.lang.ArrayIndexOutOfBoundsException"); + } catch (java.lang.ArrayIndexOutOfBoundsException e) { + // Expected exception. + } + + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == true); + + } + + public void test489() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test489"); + + + SpaceWar.Player var0 = new SpaceWar.Player(); + int var1 = var0.getR(); + var0.setRigth(false); + var0.setLife(100); + var0.setDown(false); + var0.setScore(3); + var0.increasePower(0); + int var12 = var0.getPowerLevel(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 25); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == 0); + + } + + public void test490() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test490"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + SpaceWar.SpacePanel var4 = new SpaceWar.SpacePanel(); + java.awt.Color var5 = var4.getBackground(); + var0.setForeground(var5); + SpaceWar.SpacePanel var7 = new SpaceWar.SpacePanel(); + float var8 = var7.getAlignmentX(); + var7.setVisible(false); + boolean var11 = var7.isDoubleBuffered(); + java.awt.dnd.DropTarget var12 = var7.getDropTarget(); + var7.show(false); + java.awt.Rectangle var15 = var7.getVisibleRect(); + var0.repaint(var15); + java.awt.FocusTraversalPolicy var17 = var0.getFocusTraversalPolicy(); + javax.swing.TransferHandler var18 = var0.getTransferHandler(); + int var21 = var0.getBaseline(24, 25); + var0.move(2, 10); + // The following exception was thrown during execution. + // This behavior will recorded for regression testing. + try { + var0.remove(99); + fail("Expected exception of type java.lang.ArrayIndexOutOfBoundsException"); + } catch (java.lang.ArrayIndexOutOfBoundsException e) { + // Expected exception. + } + + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == (-1)); + + } + + public void test491() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test491"); + + + SpaceWar.Player var0 = new SpaceWar.Player(); + int var1 = var0.getPower(); + var0.setLeft(true); + var0.increasePower(0); + boolean var6 = var0.isDead(); + var0.setFiring(true); + var0.setRigth(false); + var0.setLeft(true); + int var13 = var0.getPower(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == 0); + + } + + public void test492() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test492"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.removeNotify(); + java.awt.dnd.DropTarget var3 = var0.getDropTarget(); + java.awt.Component.BaselineResizeBehavior var4 = var0.getBaselineResizeBehavior(); + var0.setOpaque(true); + java.awt.Container var7 = var0.getFocusCycleRootAncestor(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var4); + + // Regression assertion (captures the current behavior of the code) + assertNull(var7); + + } + + public void test493() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test493"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + var0.show(false); + boolean var8 = var0.isPaintingForPrint(); + javax.swing.TransferHandler var9 = var0.getTransferHandler(); + java.lang.String var10 = var0.getUIClassID(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var9); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var10 + "' != '" + "PanelUI"+ "'", var10.equals("PanelUI")); + + } + + public void test494() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test494"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + var0.show(false); + boolean var8 = var0.isPaintingForPrint(); + javax.swing.TransferHandler var9 = var0.getTransferHandler(); + SpaceWar.SpacePanel var10 = new SpaceWar.SpacePanel(); + float var11 = var10.getAlignmentX(); + var10.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var16 = var10.getUI(); + java.awt.im.InputMethodRequests var17 = var10.getInputMethodRequests(); + SpaceWar.SpacePanel var18 = new SpaceWar.SpacePanel(); + float var19 = var18.getAlignmentX(); + var18.setVisible(false); + var18.nextFocus(); + var18.updateUI(); + var18.enableInputMethods(true); + var18.setSize((-1), 1); + SpaceWar.SpacePanel var29 = new SpaceWar.SpacePanel(); + var29.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var10.add((java.awt.Component)var18, (java.lang.Object)"SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + java.awt.event.KeyListener[] var35 = var10.getKeyListeners(); + var10.repaint(3, 1, 25, 0); + java.awt.Color var41 = var10.getForeground(); + var0.setForeground(var41); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var9); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var35); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var41); + + } + + public void test495() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test495"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.setInheritsPopupMenu(false); + var0.setFocusTraversalPolicyProvider(true); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + boolean var12 = var8.isDoubleBuffered(); + var8.list(); + SpaceWar.SpacePanel var14 = new SpaceWar.SpacePanel(); + float var15 = var14.getAlignmentX(); + var14.setVisible(false); + boolean var18 = var14.isDoubleBuffered(); + java.awt.dnd.DropTarget var19 = var14.getDropTarget(); + var14.show(false); + java.awt.Rectangle var22 = var14.getVisibleRect(); + java.awt.Rectangle var23 = var8.getBounds(var22); + javax.swing.JToolTip var24 = var8.createToolTip(); + var0.removeKeyListener((java.awt.event.KeyListener)var8); + javax.swing.TransferHandler var26 = var0.getTransferHandler(); + boolean var27 = var0.isPaintingForPrint(); + int var28 = var0.getComponentCount(); + var0.setSize(400, 24); + SpaceWar.SpacePanel var32 = new SpaceWar.SpacePanel(); + float var33 = var32.getAlignmentX(); + var32.setVisible(false); + var32.nextFocus(); + var32.reshape((-1), 1, (-1), 10); + var32.disable(); + java.awt.LayoutManager var43 = var32.getLayout(); + java.lang.Object var44 = var0.getClientProperty((java.lang.Object)var32); + var0.setBounds((-1), 499, (-1), 500); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var23); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var28 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var33 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var43); + + // Regression assertion (captures the current behavior of the code) + assertNull(var44); + + } + + public void test496() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test496"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + var0.list(); + float var6 = var0.getAlignmentY(); + java.awt.Dimension var7 = var0.getPreferredSize(); + boolean var10 = var0.contains(500, 100); + var0.setOpaque(false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == false); + + } + + public void test497() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test497"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + var0.setName(""); + int var3 = var0.getX(); + java.lang.String var4 = var0.getToolTipText(); + java.awt.Point var5 = var0.getLocation(); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + java.awt.Color var7 = var6.getBackground(); + var6.repaint(); + var6.setRequestFocusEnabled(false); + var6.reshape(100, 0, 100, 0); + javax.swing.event.AncestorListener[] var16 = var6.getAncestorListeners(); + var6.setOpaque(true); + var6.show(); + SpaceWar.SpacePanel var20 = new SpaceWar.SpacePanel(); + float var21 = var20.getAlignmentX(); + var20.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var26 = var20.getMouseListeners(); + java.awt.Dimension var27 = var20.getPreferredSize(); + java.util.Locale var28 = var20.getLocale(); + java.awt.Font var29 = var20.getFont(); + java.awt.Container var30 = var20.getTopLevelAncestor(); + var0.add((java.awt.Component)var6, (java.lang.Object)var20); + boolean var32 = var0.requestFocusInWindow(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var4); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var27); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var28); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var29); + + // Regression assertion (captures the current behavior of the code) + assertNull(var30); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var32 == false); + + } + + public void test498() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test498"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + var0.list(); + var0.setAutoscrolls(false); + java.awt.Component.BaselineResizeBehavior var8 = var0.getBaselineResizeBehavior(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.setVisible(false); + boolean var13 = var9.isDoubleBuffered(); + var9.list(); + SpaceWar.SpacePanel var15 = new SpaceWar.SpacePanel(); + float var16 = var15.getAlignmentX(); + var15.setVisible(false); + boolean var19 = var15.isDoubleBuffered(); + java.awt.dnd.DropTarget var20 = var15.getDropTarget(); + var15.show(false); + java.awt.Rectangle var23 = var15.getVisibleRect(); + java.awt.Rectangle var24 = var9.getBounds(var23); + javax.swing.JToolTip var25 = var9.createToolTip(); + var9.firePropertyChange("", false, false); + var9.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", (-1L), (-1L)); + var9.validate(); + SpaceWar.SpacePanel var35 = new SpaceWar.SpacePanel(); + java.awt.Color var36 = var35.getBackground(); + var35.repaint(); + java.awt.im.InputMethodRequests var38 = var35.getInputMethodRequests(); + int var39 = var35.countComponents(); + java.awt.event.ComponentListener[] var40 = var35.getComponentListeners(); + var35.removeNotify(); + java.awt.Component var44 = var35.getComponentAt(1, (-1)); + SpaceWar.SpacePanel var45 = new SpaceWar.SpacePanel(); + float var46 = var45.getAlignmentX(); + var45.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var51 = new SpaceWar.SpacePanel(); + float var52 = var51.getAlignmentX(); + var51.setVisible(false); + java.awt.Dimension var55 = var51.getPreferredSize(); + var45.setMaximumSize(var55); + boolean var57 = var45.getVerifyInputWhenFocusTarget(); + javax.accessibility.AccessibleContext var58 = var45.getAccessibleContext(); + boolean var59 = var45.isDoubleBuffered(); + java.awt.Rectangle var60 = var45.getVisibleRect(); + var35.setBounds(var60); + var9.scrollRectToVisible(var60); + var0.computeVisibleRect(var60); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var23); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var25); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var36); + + // Regression assertion (captures the current behavior of the code) + assertNull(var38); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var39 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var40); + + // Regression assertion (captures the current behavior of the code) + assertNull(var44); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var46 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var52 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var55); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var57 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var58); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var59 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var60); + + } + + public void test499() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test499"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var6 = var0.getMouseListeners(); + var0.firePropertyChange("", 0.5f, 100.0f); + var0.enable(false); + int var13 = var0.getDebugGraphicsOptions(); + var0.setRequestFocusEnabled(false); + var0.setFocusTraversalPolicyProvider(true); + SpaceWar.SpacePanel var18 = new SpaceWar.SpacePanel(); + float var19 = var18.getAlignmentX(); + var18.setVisible(false); + SpaceWar.SpacePanel var22 = new SpaceWar.SpacePanel(); + java.awt.Color var23 = var22.getBackground(); + var18.setForeground(var23); + SpaceWar.SpacePanel var25 = new SpaceWar.SpacePanel(); + float var26 = var25.getAlignmentX(); + var25.setVisible(false); + boolean var29 = var25.isDoubleBuffered(); + java.awt.dnd.DropTarget var30 = var25.getDropTarget(); + var25.show(false); + java.awt.Rectangle var33 = var25.getVisibleRect(); + var18.repaint(var33); + java.awt.FocusTraversalPolicy var35 = var18.getFocusTraversalPolicy(); + SpaceWar.SpacePanel var36 = new SpaceWar.SpacePanel(); + float var37 = var36.getAlignmentX(); + var36.firePropertyChange("", (-1), 1); + boolean var42 = var36.isFocusOwner(); + SpaceWar.SpacePanel var44 = new SpaceWar.SpacePanel(); + float var45 = var44.getAlignmentX(); + var44.setVisible(false); + java.awt.Dimension var48 = var44.getPreferredSize(); + java.awt.Toolkit var49 = var44.getToolkit(); + SpaceWar.SpacePanel var50 = new SpaceWar.SpacePanel(); + var50.setName(""); + int var53 = var50.getX(); + SpaceWar.SpacePanel var54 = new SpaceWar.SpacePanel(); + float var55 = var54.getAlignmentX(); + var54.setVisible(false); + var54.nextFocus(); + SpaceWar.SpacePanel var59 = new SpaceWar.SpacePanel(); + float var60 = var59.getAlignmentX(); + var59.setVisible(false); + SpaceWar.SpacePanel var63 = new SpaceWar.SpacePanel(); + java.awt.Color var64 = var63.getBackground(); + var59.setForeground(var64); + var54.setBackground(var64); + var50.setBackground(var64); + var44.setForeground(var64); + var36.putClientProperty((java.lang.Object)(byte)100, (java.lang.Object)var64); + var18.setBackground(var64); + var0.setBackground(var64); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var23); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var29 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var30); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var33); + + // Regression assertion (captures the current behavior of the code) + assertNull(var35); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var42 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var45 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var48); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var49); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var53 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var55 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var60 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var64); + + } + + public void test500() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest4.test500"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + SpaceWar.SpacePanel var4 = new SpaceWar.SpacePanel(); + java.awt.Color var5 = var4.getBackground(); + var0.setForeground(var5); + var0.repaint(0L); + var0.show(); + SpaceWar.SpacePanel var10 = new SpaceWar.SpacePanel(); + float var11 = var10.getAlignmentX(); + var10.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var16 = new SpaceWar.SpacePanel(); + float var17 = var16.getAlignmentX(); + var16.setVisible(false); + java.awt.Dimension var20 = var16.getPreferredSize(); + var10.setMaximumSize(var20); + boolean var22 = var10.getVerifyInputWhenFocusTarget(); + boolean var23 = var10.isFontSet(); + boolean var24 = var10.getIgnoreRepaint(); + java.awt.Component var27 = var10.locate(1, 25); + boolean var28 = var10.isLightweight(); + var10.move(100, 500); + var10.resetKeyboardActions(); + boolean var33 = var10.isForegroundSet(); + java.awt.Insets var34 = var10.getInsets(); + java.awt.Insets var35 = var0.getInsets(var34); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var22 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var24 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var27); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var28 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var33 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var34); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var35); + + } + +} diff --git a/test/randoop/RandoopTest5.java b/test/randoop/RandoopTest5.java new file mode 100644 index 0000000..9468333 --- /dev/null +++ b/test/randoop/RandoopTest5.java @@ -0,0 +1,35903 @@ +package randoop; + +import junit.framework.*; + +public class RandoopTest5 extends TestCase { + + public static boolean debug = false; + + public void test1() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test1"); + + + SpaceWar.Player var0 = new SpaceWar.Player(); + int var1 = var0.getPower(); + var0.setLeft(true); + var0.increasePower(0); + boolean var6 = var0.isDead(); + var0.setFiring(true); + var0.setRigth(false); + var0.update(); + var0.setLife(1); + var0.setDown(false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == false); + + } + + public void test2() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test2"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var1 = new SpaceWar.SpacePanel(); + java.awt.Color var2 = var1.getBackground(); + SpaceWar.SpacePanel var3 = new SpaceWar.SpacePanel(); + float var4 = var3.getAlignmentX(); + var3.setVisible(false); + var3.nextFocus(); + var3.updateUI(); + var3.enableInputMethods(true); + var0.add((java.awt.Component)var1, (java.lang.Object)true); + java.awt.Image var14 = var1.createImage(1, (-1)); + java.awt.event.MouseListener[] var15 = var1.getMouseListeners(); + java.awt.Color var16 = var1.getBackground(); + boolean var17 = var1.getIgnoreRepaint(); + var1.enable(); + var1.show(false); + SpaceWar.SpacePanel var21 = new SpaceWar.SpacePanel(); + float var22 = var21.getAlignmentX(); + var21.setVisible(false); + boolean var25 = var21.isDoubleBuffered(); + java.awt.dnd.DropTarget var26 = var21.getDropTarget(); + var21.show(false); + boolean var29 = var21.isPaintingForPrint(); + SpaceWar.SpacePanel var30 = new SpaceWar.SpacePanel(); + float var31 = var30.getAlignmentX(); + var30.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var36 = var30.getMouseListeners(); + int var37 = var30.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var38 = var30.getInputMethodRequests(); + var21.addKeyListener((java.awt.event.KeyListener)var30); + SpaceWar.SpacePanel var40 = new SpaceWar.SpacePanel(); + float var41 = var40.getAlignmentX(); + var40.setVisible(false); + boolean var44 = var40.isDoubleBuffered(); + var40.list(); + float var46 = var40.getAlignmentY(); + boolean var47 = var30.isFocusCycleRoot((java.awt.Container)var40); + var40.firePropertyChange("", 1L, 1L); + var40.setVerifyInputWhenFocusTarget(true); + var40.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", '4', '4'); + java.awt.Point var58 = var40.getLocation(); + java.awt.Point var59 = var1.getLocation(var58); + var1.repaint(1L); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var2); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var22 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var29 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var31 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var36); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var38); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var41 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var44 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var46 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var47 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var58); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var59); + + } + + public void test3() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test3"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + var0.show(false); + boolean var8 = var0.isPaintingForPrint(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var15 = var9.getMouseListeners(); + int var16 = var9.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var17 = var9.getInputMethodRequests(); + var0.addKeyListener((java.awt.event.KeyListener)var9); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + float var20 = var19.getAlignmentX(); + var19.setVisible(false); + boolean var23 = var19.isDoubleBuffered(); + var19.list(); + float var25 = var19.getAlignmentY(); + boolean var26 = var9.isFocusCycleRoot((java.awt.Container)var19); + var19.firePropertyChange("", 1L, 1L); + var19.setVerifyInputWhenFocusTarget(true); + java.awt.Cursor var33 = var19.getCursor(); + var19.layout(); + SpaceWar.SpacePanel var35 = new SpaceWar.SpacePanel(); + float var36 = var35.getAlignmentX(); + var35.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var41 = var35.getMouseListeners(); + int var42 = var35.getDebugGraphicsOptions(); + SpaceWar.SpacePanel var43 = new SpaceWar.SpacePanel(); + float var44 = var43.getAlignmentX(); + var43.setVisible(false); + boolean var47 = var43.isDoubleBuffered(); + java.awt.dnd.DropTarget var48 = var43.getDropTarget(); + var43.show(false); + java.awt.Rectangle var51 = var43.getVisibleRect(); + var35.paintImmediately(var51); + boolean var53 = var35.isFocusCycleRoot(); + var35.list(); + boolean var55 = var19.isFocusCycleRoot((java.awt.Container)var35); + boolean var56 = var19.requestFocusInWindow(); + var19.setFocusTraversalPolicyProvider(true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var33); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var36 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var41); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var42 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var44 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var47 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var48); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var51); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var53 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var55 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var56 == false); + + } + + public void test4() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test4"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + var0.list(); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + float var7 = var6.getAlignmentX(); + var6.setVisible(false); + boolean var10 = var6.isDoubleBuffered(); + java.awt.dnd.DropTarget var11 = var6.getDropTarget(); + var6.show(false); + java.awt.Rectangle var14 = var6.getVisibleRect(); + java.awt.image.BufferedImage var16 = var6.loadImg("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + boolean var17 = var0.isAncestorOf((java.awt.Component)var6); + javax.swing.InputVerifier var18 = var6.getInputVerifier(); + java.awt.ComponentOrientation var19 = var6.getComponentOrientation(); + var6.enable(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var19); + + } + + public void test5() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test5"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + var0.list(); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + float var7 = var6.getAlignmentX(); + var6.setVisible(false); + boolean var10 = var6.isDoubleBuffered(); + java.awt.dnd.DropTarget var11 = var6.getDropTarget(); + var6.show(false); + java.awt.Rectangle var14 = var6.getVisibleRect(); + java.awt.Rectangle var15 = var0.getBounds(var14); + javax.swing.JToolTip var16 = var0.createToolTip(); + var0.firePropertyChange("", false, false); + var0.validate(); + var0.setFocusCycleRoot(true); + var0.firePropertyChange("SpaceWar.SpacePanel[,-1,1,-1x10,invalid,hidden,disabled,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", ' ', '4'); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + } + + public void test6() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test6"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + boolean var5 = javax.swing.JComponent.isLightweightComponent((java.awt.Component)var0); + java.awt.event.MouseWheelListener[] var6 = var0.getMouseWheelListeners(); + boolean var7 = var0.isValid(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + boolean var12 = var8.isDoubleBuffered(); + var8.list(); + SpaceWar.SpacePanel var14 = new SpaceWar.SpacePanel(); + float var15 = var14.getAlignmentX(); + var14.setVisible(false); + boolean var18 = var14.isDoubleBuffered(); + java.awt.dnd.DropTarget var19 = var14.getDropTarget(); + var14.show(false); + java.awt.Rectangle var22 = var14.getVisibleRect(); + java.awt.image.BufferedImage var24 = var14.loadImg("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + boolean var25 = var8.isAncestorOf((java.awt.Component)var14); + java.awt.GraphicsConfiguration var26 = var14.getGraphicsConfiguration(); + java.awt.Font var27 = var14.getFont(); + var0.setComponentZOrder((java.awt.Component)var14, 0); + var0.setAutoscrolls(true); + java.awt.Component var34 = var0.locate(24, 99); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var27); + + // Regression assertion (captures the current behavior of the code) + assertNull(var34); + + } + + public void test7() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test7"); + + + SpaceWar.Player var0 = new SpaceWar.Player(); + var0.increasePower(25); + int var3 = var0.getScore(); + var0.setRigth(true); + var0.loseLife(); + var0.setLeft(true); + var0.setDown(true); + boolean var11 = var0.isRecovering(); + int var12 = var0.getRequiredPower(); + var0.setLeft(false); + boolean var15 = var0.isRecovering(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == 2); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == true); + + } + + public void test8() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test8"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + java.awt.Point var6 = var0.getMousePosition(); + java.lang.String var7 = var0.getUIClassID(); + var0.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", '#', '4'); + boolean var12 = var0.requestDefaultFocus(); + SpaceWar.SpacePanel var13 = new SpaceWar.SpacePanel(); + float var14 = var13.getAlignmentX(); + var13.setVisible(false); + SpaceWar.SpacePanel var17 = new SpaceWar.SpacePanel(); + java.awt.Color var18 = var17.getBackground(); + var13.setForeground(var18); + SpaceWar.SpacePanel var20 = new SpaceWar.SpacePanel(); + float var21 = var20.getAlignmentX(); + var20.setVisible(false); + boolean var24 = var20.isDoubleBuffered(); + java.awt.dnd.DropTarget var25 = var20.getDropTarget(); + var20.show(false); + java.awt.Rectangle var28 = var20.getVisibleRect(); + var13.repaint(var28); + SpaceWar.SpacePanel var30 = new SpaceWar.SpacePanel(); + float var31 = var30.getAlignmentX(); + var30.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var36 = var30.getMouseListeners(); + java.awt.Dimension var37 = var30.getPreferredSize(); + java.util.Locale var38 = var30.getLocale(); + var13.setLocale(var38); + var0.setLocale(var38); + java.awt.Component var41 = var0.getNextFocusableComponent(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var7 + "' != '" + "PanelUI"+ "'", var7.equals("PanelUI")); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var24 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var25); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var28); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var31 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var36); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var37); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var38); + + // Regression assertion (captures the current behavior of the code) + assertNull(var41); + + } + + public void test9() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test9"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.requestFocus(); + boolean var6 = var0.getInheritsPopupMenu(); + boolean var7 = var0.isFocusOwner(); + java.awt.Image var10 = var0.createImage(100, 400); + java.awt.Dimension var11 = var0.size(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + } + + public void test10() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test10"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + java.awt.im.InputMethodRequests var3 = var0.getInputMethodRequests(); + var0.setDoubleBuffered(true); + var0.show(false); + var0.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", (-1), 24); + boolean var12 = var0.requestFocusInWindow(); + boolean var13 = var0.hasFocus(); + var0.enable(true); + java.util.Locale var16 = var0.getLocale(); + // The following exception was thrown during execution. + // This behavior will recorded for regression testing. + try { + java.awt.Component var18 = var0.getComponent(99); + fail("Expected exception of type java.lang.ArrayIndexOutOfBoundsException"); + } catch (java.lang.ArrayIndexOutOfBoundsException e) { + // Expected exception. + } + + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + } + + public void test11() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test11"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + var0.setRequestFocusEnabled(false); + var0.reshape(100, 0, 100, 0); + var0.requestFocus(); + var0.firePropertyChange("hi!", '4', ' '); + boolean var15 = var0.requestFocusInWindow(); + boolean var16 = var0.isMinimumSizeSet(); + SpaceWar.SpacePanel var17 = new SpaceWar.SpacePanel(); + java.awt.Color var18 = var17.getBackground(); + var17.setFocusCycleRoot(true); + java.awt.Component var23 = var17.getComponentAt(24, 500); + SpaceWar.SpacePanel var24 = new SpaceWar.SpacePanel(); + float var25 = var24.getAlignmentX(); + var24.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var30 = var24.getMouseListeners(); + int var31 = var24.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var32 = var24.getInputMethodRequests(); + var24.removeNotify(); + var24.enable(); + SpaceWar.SpacePanel var35 = new SpaceWar.SpacePanel(); + java.awt.Color var36 = var35.getBackground(); + boolean var39 = var35.inside(0, (-1)); + var35.transferFocusUpCycle(); + java.lang.String var41 = var35.getName(); + boolean var42 = var24.isFocusCycleRoot((java.awt.Container)var35); + java.awt.Dimension var43 = var24.getMinimumSize(); + var17.setMinimumSize(var43); + java.awt.Dimension var45 = var0.getSize(var43); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertNull(var23); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var30); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var31 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var32); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var36); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var39 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var41); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var42 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var43); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var45); + + } + + public void test12() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test12"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var1 = new SpaceWar.SpacePanel(); + java.awt.Color var2 = var1.getBackground(); + SpaceWar.SpacePanel var3 = new SpaceWar.SpacePanel(); + float var4 = var3.getAlignmentX(); + var3.setVisible(false); + var3.nextFocus(); + var3.updateUI(); + var3.enableInputMethods(true); + var0.add((java.awt.Component)var1, (java.lang.Object)true); + java.awt.Image var14 = var1.createImage(1, (-1)); + java.awt.event.MouseListener[] var15 = var1.getMouseListeners(); + java.awt.Color var16 = var1.getBackground(); + var1.grabFocus(); + var1.setInheritsPopupMenu(false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var2); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + } + + public void test13() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test13"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var6 = var0.getMouseListeners(); + int var7 = var0.getDebugGraphicsOptions(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + boolean var12 = var8.isDoubleBuffered(); + java.awt.dnd.DropTarget var13 = var8.getDropTarget(); + var8.show(false); + java.awt.Rectangle var16 = var8.getVisibleRect(); + var0.paintImmediately(var16); + var0.doLayout(); + javax.swing.border.Border var19 = var0.getBorder(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertNull(var19); + + } + + public void test14() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test14"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + boolean var6 = var0.isFocusCycleRoot(); + var0.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", 100, 0); + SpaceWar.SpacePanel var11 = new SpaceWar.SpacePanel(); + float var12 = var11.getAlignmentX(); + var11.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var17 = var11.getUI(); + var0.add((java.awt.Component)var11, (java.lang.Object)(short)0); + SpaceWar.SpacePanel var20 = new SpaceWar.SpacePanel(); + float var21 = var20.getAlignmentX(); + var20.setVisible(false); + var20.nextFocus(); + var20.repaint(1L); + SpaceWar.SpacePanel var27 = new SpaceWar.SpacePanel(); + float var28 = var27.getAlignmentX(); + var27.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var33 = new SpaceWar.SpacePanel(); + float var34 = var33.getAlignmentX(); + var33.setVisible(false); + java.awt.Dimension var37 = var33.getPreferredSize(); + var27.setMaximumSize(var37); + var20.setPreferredSize(var37); + javax.swing.plaf.PanelUI var40 = var20.getUI(); + SpaceWar.SpacePanel var41 = new SpaceWar.SpacePanel(); + float var42 = var41.getAlignmentX(); + var41.setVisible(false); + SpaceWar.SpacePanel var45 = new SpaceWar.SpacePanel(); + java.awt.Color var46 = var45.getBackground(); + var41.setForeground(var46); + SpaceWar.SpacePanel var48 = new SpaceWar.SpacePanel(); + float var49 = var48.getAlignmentX(); + var48.setVisible(false); + boolean var52 = var48.isDoubleBuffered(); + java.awt.dnd.DropTarget var53 = var48.getDropTarget(); + var48.show(false); + java.awt.Rectangle var56 = var48.getVisibleRect(); + var41.repaint(var56); + java.awt.FocusTraversalPolicy var58 = var41.getFocusTraversalPolicy(); + var41.resetKeyboardActions(); + SpaceWar.SpacePanel var60 = new SpaceWar.SpacePanel(); + float var61 = var60.getAlignmentX(); + var60.setVisible(false); + boolean var64 = var60.isDoubleBuffered(); + java.awt.dnd.DropTarget var65 = var60.getDropTarget(); + var60.show(false); + java.awt.Rectangle var68 = var60.getVisibleRect(); + var41.computeVisibleRect(var68); + javax.swing.ActionMap var70 = var41.getActionMap(); + var20.setActionMap(var70); + java.awt.Point var72 = var20.getMousePosition(); + int var73 = var11.getComponentZOrder((java.awt.Component)var20); + java.awt.Point var74 = var20.location(); + boolean var75 = var20.isFocusOwner(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var28 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var34 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var37); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var40); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var42 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var46); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var49 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var52 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var53); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var56); + + // Regression assertion (captures the current behavior of the code) + assertNull(var58); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var61 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var64 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var65); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var68); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var70); + + // Regression assertion (captures the current behavior of the code) + assertNull(var72); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var73 == (-1)); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var74); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var75 == false); + + } + + public void test15() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test15"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var6 = var0.getUI(); + java.awt.im.InputMethodRequests var7 = var0.getInputMethodRequests(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + var8.nextFocus(); + var8.updateUI(); + var8.enableInputMethods(true); + var8.setSize((-1), 1); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + var19.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var0.add((java.awt.Component)var8, (java.lang.Object)"SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + java.awt.event.KeyListener[] var25 = var0.getKeyListeners(); + java.awt.FocusTraversalPolicy var26 = var0.getFocusTraversalPolicy(); + java.awt.Component var29 = var0.locate(3, 100); + var0.removeAll(); + SpaceWar.SpacePanel var31 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var32 = new SpaceWar.SpacePanel(); + java.awt.Color var33 = var32.getBackground(); + SpaceWar.SpacePanel var34 = new SpaceWar.SpacePanel(); + float var35 = var34.getAlignmentX(); + var34.setVisible(false); + var34.nextFocus(); + var34.updateUI(); + var34.enableInputMethods(true); + var31.add((java.awt.Component)var32, (java.lang.Object)true); + java.awt.Image var45 = var32.createImage(1, (-1)); + java.awt.event.MouseListener[] var46 = var32.getMouseListeners(); + java.awt.Color var47 = var32.getBackground(); + boolean var48 = var32.getIgnoreRepaint(); + var32.enable(); + var32.show(false); + SpaceWar.SpacePanel var52 = new SpaceWar.SpacePanel(); + float var53 = var52.getAlignmentX(); + var52.setVisible(false); + boolean var56 = var52.isDoubleBuffered(); + java.awt.dnd.DropTarget var57 = var52.getDropTarget(); + var52.show(false); + boolean var60 = var52.isPaintingForPrint(); + SpaceWar.SpacePanel var61 = new SpaceWar.SpacePanel(); + float var62 = var61.getAlignmentX(); + var61.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var67 = var61.getMouseListeners(); + int var68 = var61.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var69 = var61.getInputMethodRequests(); + var52.addKeyListener((java.awt.event.KeyListener)var61); + SpaceWar.SpacePanel var71 = new SpaceWar.SpacePanel(); + float var72 = var71.getAlignmentX(); + var71.setVisible(false); + boolean var75 = var71.isDoubleBuffered(); + var71.list(); + float var77 = var71.getAlignmentY(); + boolean var78 = var61.isFocusCycleRoot((java.awt.Container)var71); + var71.firePropertyChange("", 1L, 1L); + var71.setVerifyInputWhenFocusTarget(true); + var71.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", '4', '4'); + java.awt.Point var89 = var71.getLocation(); + java.awt.Point var90 = var32.getLocation(var89); + java.awt.Point var91 = var0.getLocation(var90); + // The following exception was thrown during execution. + // This behavior will recorded for regression testing. + try { + boolean var93 = var0.areFocusTraversalKeysSet(500); + fail("Expected exception of type java.lang.IllegalArgumentException"); + } catch (java.lang.IllegalArgumentException e) { + // Expected exception. + } + + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var25); + + // Regression assertion (captures the current behavior of the code) + assertNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertNull(var29); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var33); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var35 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNull(var45); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var46); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var47); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var48 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var53 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var56 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var57); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var60 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var62 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var67); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var68 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var69); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var72 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var75 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var77 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var78 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var89); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var90); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var91); + + } + + public void test16() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test16"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.setInheritsPopupMenu(false); + var0.setFocusTraversalPolicyProvider(true); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + boolean var12 = var8.isDoubleBuffered(); + var8.list(); + SpaceWar.SpacePanel var14 = new SpaceWar.SpacePanel(); + float var15 = var14.getAlignmentX(); + var14.setVisible(false); + boolean var18 = var14.isDoubleBuffered(); + java.awt.dnd.DropTarget var19 = var14.getDropTarget(); + var14.show(false); + java.awt.Rectangle var22 = var14.getVisibleRect(); + java.awt.Rectangle var23 = var8.getBounds(var22); + javax.swing.JToolTip var24 = var8.createToolTip(); + var0.removeKeyListener((java.awt.event.KeyListener)var8); + var0.setFocusTraversalKeysEnabled(true); + javax.swing.KeyStroke[] var28 = var0.getRegisteredKeyStrokes(); + java.lang.String var29 = var0.getName(); + java.lang.String var30 = var0.getName(); + var0.setName("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=10,height=10]]"); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var23); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var28); + + // Regression assertion (captures the current behavior of the code) + assertNull(var29); + + // Regression assertion (captures the current behavior of the code) + assertNull(var30); + + } + + public void test17() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test17"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + javax.swing.plaf.PanelUI var3 = var0.getUI(); + var0.setFocusCycleRoot(true); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + float var7 = var6.getAlignmentX(); + var6.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var12 = var6.getMouseListeners(); + int var13 = var6.getDebugGraphicsOptions(); + boolean var14 = var6.isValid(); + SpaceWar.SpacePanel var15 = new SpaceWar.SpacePanel(); + float var16 = var15.getAlignmentX(); + var15.setVisible(false); + var15.setEnabled(false); + var15.invalidate(); + SpaceWar.SpacePanel var23 = new SpaceWar.SpacePanel(); + float var24 = var23.getAlignmentX(); + var23.setVisible(false); + var23.nextFocus(); + var23.updateUI(); + var23.enableInputMethods(true); + SpaceWar.SpacePanel var31 = new SpaceWar.SpacePanel(); + float var32 = var31.getAlignmentX(); + boolean var33 = var31.hasFocus(); + java.awt.Insets var34 = var31.getInsets(); + java.awt.Insets var35 = var23.getInsets(var34); + boolean var36 = var23.isManagingFocus(); + java.awt.Image var39 = var23.createImage(1, 10); + SpaceWar.SpacePanel var40 = new SpaceWar.SpacePanel(); + float var41 = var40.getAlignmentX(); + var40.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var46 = new SpaceWar.SpacePanel(); + float var47 = var46.getAlignmentX(); + var46.setVisible(false); + java.awt.Dimension var50 = var46.getPreferredSize(); + var40.setMaximumSize(var50); + boolean var52 = var40.getVerifyInputWhenFocusTarget(); + int var53 = var40.getX(); + SpaceWar.SpacePanel var54 = new SpaceWar.SpacePanel(); + float var55 = var54.getAlignmentX(); + var54.setVisible(false); + var54.setEnabled(false); + var23.add((java.awt.Component)var40, (java.lang.Object)false); + boolean var61 = var23.isForegroundSet(); + java.awt.Component var62 = var15.add("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", (java.awt.Component)var23); + var23.revalidate(); + SpaceWar.SpacePanel var64 = new SpaceWar.SpacePanel(); + var64.setName(""); + java.awt.Toolkit var67 = var64.getToolkit(); + var64.setEnabled(false); + var64.removeNotify(); + boolean var71 = var64.isDisplayable(); + SpaceWar.SpacePanel var72 = new SpaceWar.SpacePanel(); + java.awt.Color var73 = var72.getBackground(); + var72.repaint(); + var72.setRequestFocusEnabled(false); + var72.reshape(100, 0, 100, 0); + var72.requestFocus(); + java.awt.Rectangle var83 = var72.getVisibleRect(); + java.awt.Rectangle var84 = var72.getBounds(); + java.awt.im.InputMethodRequests var85 = var72.getInputMethodRequests(); + boolean var86 = var72.requestFocusInWindow(); + java.awt.Point var88 = var72.getMousePosition(false); + var72.setDebugGraphicsOptions(1); + java.awt.Graphics var91 = var72.getGraphics(); + var64.paintAll(var91); + var23.print(var91); + var6.paintComponents(var91); + var0.paintAll(var91); + boolean var96 = var0.isFocusCycleRoot(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var24 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var32 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var33 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var34); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var35); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var36 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var39); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var41 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var47 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var50); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var52 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var53 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var55 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var61 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var62); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var67); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var71 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var73); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var83); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var84); + + // Regression assertion (captures the current behavior of the code) + assertNull(var85); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var86 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var88); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var91); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var96 == true); + + } + + public void test18() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test18"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var1 = new SpaceWar.SpacePanel(); + java.awt.Color var2 = var1.getBackground(); + SpaceWar.SpacePanel var3 = new SpaceWar.SpacePanel(); + float var4 = var3.getAlignmentX(); + var3.setVisible(false); + var3.nextFocus(); + var3.updateUI(); + var3.enableInputMethods(true); + var0.add((java.awt.Component)var1, (java.lang.Object)true); + boolean var13 = var1.areFocusTraversalKeysSet(0); + SpaceWar.SpacePanel var14 = new SpaceWar.SpacePanel(); + float var15 = var14.getAlignmentX(); + var14.firePropertyChange("", (-1), 1); + boolean var20 = var14.isFocusOwner(); + SpaceWar.SpacePanel var22 = new SpaceWar.SpacePanel(); + float var23 = var22.getAlignmentX(); + var22.setVisible(false); + java.awt.Dimension var26 = var22.getPreferredSize(); + java.awt.Toolkit var27 = var22.getToolkit(); + SpaceWar.SpacePanel var28 = new SpaceWar.SpacePanel(); + var28.setName(""); + int var31 = var28.getX(); + SpaceWar.SpacePanel var32 = new SpaceWar.SpacePanel(); + float var33 = var32.getAlignmentX(); + var32.setVisible(false); + var32.nextFocus(); + SpaceWar.SpacePanel var37 = new SpaceWar.SpacePanel(); + float var38 = var37.getAlignmentX(); + var37.setVisible(false); + SpaceWar.SpacePanel var41 = new SpaceWar.SpacePanel(); + java.awt.Color var42 = var41.getBackground(); + var37.setForeground(var42); + var32.setBackground(var42); + var28.setBackground(var42); + var22.setForeground(var42); + var14.putClientProperty((java.lang.Object)(byte)100, (java.lang.Object)var42); + SpaceWar.SpacePanel var48 = new SpaceWar.SpacePanel(); + var48.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + javax.swing.plaf.PanelUI var53 = var48.getUI(); + var14.setUI(var53); + var1.setUI(var53); + javax.swing.TransferHandler var56 = var1.getTransferHandler(); + int var57 = var1.getHeight(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var2); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var27); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var31 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var33 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var38 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var42); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var53); + + // Regression assertion (captures the current behavior of the code) + assertNull(var56); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var57 == 0); + + } + + public void test19() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test19"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + float var7 = var6.getAlignmentX(); + var6.setVisible(false); + java.awt.Dimension var10 = var6.getPreferredSize(); + var0.setMaximumSize(var10); + boolean var12 = var0.getVerifyInputWhenFocusTarget(); + java.awt.Toolkit var13 = var0.getToolkit(); + java.awt.Dimension var14 = var0.minimumSize(); + java.awt.Image var17 = var0.createImage((-1), 400); + var0.setAlignmentY(0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + } + + public void test20() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test20"); + + + SpaceWar.Player var0 = new SpaceWar.Player(); + int var1 = var0.getPower(); + var0.setLeft(true); + var0.increasePower(0); + int var6 = var0.getR(); + var0.setDown(false); + var0.setScore(505); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == 25); + + } + + public void test21() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test21"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + var0.list(); + float var6 = var0.getAlignmentY(); + java.awt.event.ComponentListener[] var7 = var0.getComponentListeners(); + java.awt.Component var8 = var0.getNextFocusableComponent(); + boolean var9 = var0.isManagingFocus(); + SpaceWar.SpacePanel var10 = new SpaceWar.SpacePanel(); + float var11 = var10.getAlignmentX(); + var10.setVisible(false); + boolean var14 = var10.isDoubleBuffered(); + java.awt.dnd.DropTarget var15 = var10.getDropTarget(); + var10.show(false); + boolean var18 = var10.isPaintingForPrint(); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + float var20 = var19.getAlignmentX(); + var19.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var25 = var19.getMouseListeners(); + int var26 = var19.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var27 = var19.getInputMethodRequests(); + var10.addKeyListener((java.awt.event.KeyListener)var19); + var19.repaint(); + java.awt.Point var30 = var19.location(); + java.awt.Point var31 = var19.getLocation(); + boolean var32 = var0.contains(var31); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var25); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var27); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var30); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var31); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var32 == false); + + } + + public void test22() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test22"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + SpaceWar.SpacePanel var2 = new SpaceWar.SpacePanel(); + float var3 = var2.getAlignmentX(); + var2.setVisible(false); + java.awt.Dimension var6 = var2.getPreferredSize(); + boolean var7 = var2.getVerifyInputWhenFocusTarget(); + java.awt.Component var10 = var2.findComponentAt(10, 1); + var0.addKeyListener((java.awt.event.KeyListener)var2); + var2.repaint(100, (-1), (-1), 1); + SpaceWar.SpacePanel var17 = new SpaceWar.SpacePanel(); + java.awt.Color var18 = var17.getBackground(); + var17.repaint(); + java.awt.im.InputMethodRequests var20 = var17.getInputMethodRequests(); + java.awt.GraphicsConfiguration var21 = var17.getGraphicsConfiguration(); + var2.remove((java.awt.Component)var17); + var17.setName(""); + var17.transferFocusBackward(); + boolean var26 = var17.isFocusOwner(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertNull(var21); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == false); + + } + + public void test23() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test23"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var6 = var0.getUI(); + java.awt.im.InputMethodRequests var7 = var0.getInputMethodRequests(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + var8.nextFocus(); + var8.updateUI(); + var8.enableInputMethods(true); + var8.setSize((-1), 1); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + var19.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var0.add((java.awt.Component)var8, (java.lang.Object)"SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + java.awt.event.KeyListener[] var25 = var0.getKeyListeners(); + SpaceWar.SpacePanel var26 = new SpaceWar.SpacePanel(); + float var27 = var26.getAlignmentX(); + var26.setVisible(false); + boolean var30 = var26.isDoubleBuffered(); + var26.list(); + SpaceWar.SpacePanel var32 = new SpaceWar.SpacePanel(); + float var33 = var32.getAlignmentX(); + var32.setVisible(false); + boolean var36 = var32.isDoubleBuffered(); + java.awt.dnd.DropTarget var37 = var32.getDropTarget(); + var32.show(false); + java.awt.Rectangle var40 = var32.getVisibleRect(); + java.awt.image.BufferedImage var42 = var32.loadImg("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + boolean var43 = var26.isAncestorOf((java.awt.Component)var32); + java.awt.GraphicsConfiguration var44 = var32.getGraphicsConfiguration(); + java.awt.Font var45 = var32.getFont(); + var0.setFont(var45); + var0.nextFocus(); + java.awt.Point var48 = var0.getLocation(); + SpaceWar.SpacePanel var49 = new SpaceWar.SpacePanel(); + float var50 = var49.getAlignmentX(); + var49.setVisible(false); + boolean var53 = var49.isDoubleBuffered(); + java.awt.dnd.DropTarget var54 = var49.getDropTarget(); + var49.show(false); + boolean var57 = var49.isPaintingForPrint(); + SpaceWar.SpacePanel var58 = new SpaceWar.SpacePanel(); + float var59 = var58.getAlignmentX(); + var58.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var64 = var58.getMouseListeners(); + int var65 = var58.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var66 = var58.getInputMethodRequests(); + var49.addKeyListener((java.awt.event.KeyListener)var58); + SpaceWar.SpacePanel var68 = new SpaceWar.SpacePanel(); + float var69 = var68.getAlignmentX(); + var68.setVisible(false); + boolean var72 = var68.isDoubleBuffered(); + var68.list(); + float var74 = var68.getAlignmentY(); + boolean var75 = var58.isFocusCycleRoot((java.awt.Container)var68); + java.awt.Component[] var76 = var58.getComponents(); + boolean var77 = var58.isFocusCycleRoot(); + java.awt.Dimension var78 = var58.getSize(); + var0.setMaximumSize(var78); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var25); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var30 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var33 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var36 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var37); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var40); + + // Regression assertion (captures the current behavior of the code) + assertNull(var42); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var43 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var44); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var45); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var48); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var50 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var53 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var54); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var57 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var59 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var64); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var65 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var66); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var69 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var72 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var74 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var75 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var76); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var77 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var78); + + } + + public void test24() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test24"); + + + SpaceWar.Player var0 = new SpaceWar.Player(); + var0.increasePower(25); + int var3 = var0.getR(); + int var4 = var0.getScore(); + var0.loseLife(); + boolean var6 = var0.isRecovering(); + var0.loseLife(); + boolean var8 = var0.isDead(); + int var9 = var0.getPowerLevel(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == 25); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 1); + + } + + public void test25() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test25"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var6 = var0.getMouseListeners(); + java.awt.Dimension var7 = var0.getPreferredSize(); + java.util.Locale var8 = var0.getLocale(); + var0.setFocusable(true); + var0.paintImmediately((-1), 10, 100, 25); + boolean var16 = var0.isOpaque(); + javax.swing.border.Border var17 = var0.getBorder(); + SpaceWar.SpacePanel var18 = new SpaceWar.SpacePanel(); + float var19 = var18.getAlignmentX(); + var18.setVisible(false); + java.awt.Dimension var22 = var18.getPreferredSize(); + boolean var23 = var18.getVerifyInputWhenFocusTarget(); + java.awt.Component var26 = var18.findComponentAt(10, 1); + boolean var27 = var18.requestDefaultFocus(); + java.awt.Insets var28 = var18.getInsets(); + var18.setDoubleBuffered(false); + java.awt.Toolkit var31 = var18.getToolkit(); + java.awt.Dimension var32 = var18.getMinimumSize(); + java.lang.String var33 = var18.toString(); + var18.disable(); + SpaceWar.SpacePanel var35 = new SpaceWar.SpacePanel(); + float var36 = var35.getAlignmentX(); + var35.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var41 = var35.getUI(); + java.awt.im.InputMethodRequests var42 = var35.getInputMethodRequests(); + SpaceWar.SpacePanel var43 = new SpaceWar.SpacePanel(); + float var44 = var43.getAlignmentX(); + var43.setVisible(false); + var43.nextFocus(); + var43.updateUI(); + var43.enableInputMethods(true); + var43.setSize((-1), 1); + SpaceWar.SpacePanel var54 = new SpaceWar.SpacePanel(); + var54.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var35.add((java.awt.Component)var43, (java.lang.Object)"SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + java.awt.ComponentOrientation var60 = var43.getComponentOrientation(); + boolean var61 = var43.isMaximumSizeSet(); + SpaceWar.SpacePanel var62 = new SpaceWar.SpacePanel(); + float var63 = var62.getAlignmentX(); + var62.setVisible(false); + boolean var66 = var62.isDoubleBuffered(); + java.awt.dnd.DropTarget var67 = var62.getDropTarget(); + var62.show(false); + boolean var70 = var62.isPaintingForPrint(); + SpaceWar.SpacePanel var71 = new SpaceWar.SpacePanel(); + float var72 = var71.getAlignmentX(); + var71.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var77 = var71.getMouseListeners(); + int var78 = var71.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var79 = var71.getInputMethodRequests(); + var62.addKeyListener((java.awt.event.KeyListener)var71); + SpaceWar.SpacePanel var81 = new SpaceWar.SpacePanel(); + float var82 = var81.getAlignmentX(); + var81.setVisible(false); + boolean var85 = var81.isDoubleBuffered(); + var81.list(); + float var87 = var81.getAlignmentY(); + boolean var88 = var71.isFocusCycleRoot((java.awt.Container)var81); + boolean var89 = var81.isEnabled(); + java.awt.Dimension var90 = var81.getMaximumSize(); + var43.setMinimumSize(var90); + var43.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", (byte)1, (byte)0); + boolean var96 = var43.isMaximumSizeSet(); + var0.add((java.awt.Component)var18, (java.lang.Object)var96); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var28); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var31); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var32); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var33 + "' != '" + "SpaceWar.SpacePanel[,0,0,0var33,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=8,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"+ "'", var33.equals("SpaceWar.SpacePanel[,0,0,0var33,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=8,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]")); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var36 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var41); + + // Regression assertion (captures the current behavior of the code) + assertNull(var42); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var44 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var60); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var61 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var63 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var66 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var67); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var70 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var72 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var77); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var78 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var79); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var82 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var85 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var87 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var88 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var89 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var90); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var96 == false); + + } + + public void test26() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test26"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + java.awt.im.InputMethodRequests var3 = var0.getInputMethodRequests(); + int var4 = var0.countComponents(); + java.awt.event.ComponentListener[] var5 = var0.getComponentListeners(); + var0.removeNotify(); + java.awt.Component var9 = var0.getComponentAt(1, (-1)); + SpaceWar.SpacePanel var10 = new SpaceWar.SpacePanel(); + float var11 = var10.getAlignmentX(); + var10.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var16 = new SpaceWar.SpacePanel(); + float var17 = var16.getAlignmentX(); + var16.setVisible(false); + java.awt.Dimension var20 = var16.getPreferredSize(); + var10.setMaximumSize(var20); + boolean var22 = var10.getVerifyInputWhenFocusTarget(); + javax.accessibility.AccessibleContext var23 = var10.getAccessibleContext(); + boolean var24 = var10.isDoubleBuffered(); + java.awt.Rectangle var25 = var10.getVisibleRect(); + var0.setBounds(var25); + java.awt.event.ComponentListener[] var27 = var0.getComponentListeners(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertNull(var9); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var22 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var23); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var24 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var25); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var27); + + } + + public void test27() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test27"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var6 = var0.getUI(); + java.awt.im.InputMethodRequests var7 = var0.getInputMethodRequests(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + var8.nextFocus(); + var8.updateUI(); + var8.enableInputMethods(true); + var8.setSize((-1), 1); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + var19.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var0.add((java.awt.Component)var8, (java.lang.Object)"SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + java.awt.event.KeyListener[] var25 = var0.getKeyListeners(); + java.awt.FocusTraversalPolicy var26 = var0.getFocusTraversalPolicy(); + java.awt.Component var29 = var0.locate(3, 100); + boolean var30 = var0.isFocusCycleRoot(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var25); + + // Regression assertion (captures the current behavior of the code) + assertNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertNull(var29); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var30 == false); + + } + + public void test28() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test28"); + + + SpaceWar.Bullet var3 = new SpaceWar.Bullet(594.7973940347722d, 3, 100); + double var4 = var3.getR(); + double var5 = var3.getX(); + double var6 = var3.getR(); + double var7 = var3.getR(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 5.0d); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == 3.0d); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == 5.0d); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 5.0d); + + } + + public void test29() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test29"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.reshape((-1), 1, (-1), 10); + SpaceWar.SpacePanel var10 = new SpaceWar.SpacePanel(); + java.awt.Color var11 = var10.getBackground(); + var10.repaint(); + var10.setRequestFocusEnabled(false); + var10.reshape(100, 0, 100, 0); + java.awt.Component var20 = var0.add((java.awt.Component)var10); + java.awt.im.InputContext var21 = var10.getInputContext(); + SpaceWar.SpacePanel var22 = new SpaceWar.SpacePanel(); + var22.setName(""); + java.awt.Dimension var25 = var22.minimumSize(); + var10.setPreferredSize(var25); + SpaceWar.SpacePanel var27 = new SpaceWar.SpacePanel(); + float var28 = var27.getAlignmentX(); + boolean var29 = var27.hasFocus(); + java.awt.Insets var30 = var27.getInsets(); + java.awt.Rectangle var31 = var27.bounds(); + java.awt.event.MouseMotionListener[] var32 = var27.getMouseMotionListeners(); + boolean var33 = var27.isMaximumSizeSet(); + java.awt.LayoutManager var34 = var27.getLayout(); + java.awt.Rectangle var35 = var27.getBounds(); + var27.transferFocusBackward(); + SpaceWar.SpacePanel var37 = new SpaceWar.SpacePanel(); + float var38 = var37.getAlignmentX(); + var37.setVisible(false); + boolean var41 = var37.isDoubleBuffered(); + var37.list(); + float var43 = var37.getAlignmentY(); + java.awt.event.ComponentListener[] var44 = var37.getComponentListeners(); + java.awt.Component var45 = var37.getNextFocusableComponent(); + boolean var46 = var37.isManagingFocus(); + javax.swing.border.Border var47 = var37.getBorder(); + java.lang.Object var48 = var37.getTreeLock(); + javax.swing.border.Border var49 = var37.getBorder(); + var37.setEnabled(false); + SpaceWar.SpacePanel var52 = new SpaceWar.SpacePanel(); + float var53 = var52.getAlignmentX(); + SpaceWar.SpacePanel var54 = new SpaceWar.SpacePanel(); + float var55 = var54.getAlignmentX(); + var54.setVisible(false); + java.awt.Dimension var58 = var54.getPreferredSize(); + boolean var59 = var54.getVerifyInputWhenFocusTarget(); + java.awt.Component var62 = var54.findComponentAt(10, 1); + var52.addKeyListener((java.awt.event.KeyListener)var54); + var54.repaint(100, (-1), (-1), 1); + java.awt.image.ColorModel var69 = var54.getColorModel(); + boolean var70 = var54.isFocusTraversalPolicyProvider(); + var54.show(false); + boolean var73 = var54.isManagingFocus(); + SpaceWar.SpacePanel var74 = new SpaceWar.SpacePanel(); + java.awt.Color var75 = var74.getBackground(); + var74.repaint(); + var74.setRequestFocusEnabled(false); + var74.reshape(100, 0, 100, 0); + var74.requestFocus(); + java.awt.Rectangle var85 = var74.getVisibleRect(); + java.awt.Rectangle var86 = var74.getBounds(); + java.awt.im.InputMethodRequests var87 = var74.getInputMethodRequests(); + boolean var88 = var74.requestFocusInWindow(); + java.awt.Point var90 = var74.getMousePosition(false); + var74.setDebugGraphicsOptions(1); + java.awt.Graphics var93 = var74.getGraphics(); + var54.paint(var93); + var37.paintComponents(var93); + var27.update(var93); + var10.printComponents(var93); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertNull(var21); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var25); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var28 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var29 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var30); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var31); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var32); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var33 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var34); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var35); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var38 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var41 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var43 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var44); + + // Regression assertion (captures the current behavior of the code) + assertNull(var45); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var46 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var47); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var48); + + // Regression assertion (captures the current behavior of the code) + assertNull(var49); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var53 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var55 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var58); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var59 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var62); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var69); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var70 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var73 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var75); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var85); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var86); + + // Regression assertion (captures the current behavior of the code) + assertNull(var87); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var88 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var90); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var93); + + } + + public void test30() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test30"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + java.awt.Dimension var4 = var0.getPreferredSize(); + boolean var5 = var0.getVerifyInputWhenFocusTarget(); + java.awt.Component var8 = var0.findComponentAt(10, 1); + boolean var9 = var0.requestDefaultFocus(); + java.awt.Insets var10 = var0.getInsets(); + var0.setDoubleBuffered(false); + SpaceWar.SpacePanel var13 = new SpaceWar.SpacePanel(); + float var14 = var13.getAlignmentX(); + var13.setVisible(false); + boolean var17 = var13.isDoubleBuffered(); + java.awt.dnd.DropTarget var18 = var13.getDropTarget(); + var13.show(false); + java.awt.Rectangle var21 = var13.getVisibleRect(); + java.awt.Toolkit var22 = var13.getToolkit(); + java.awt.event.MouseMotionListener[] var23 = var13.getMouseMotionListeners(); + SpaceWar.SpacePanel var24 = new SpaceWar.SpacePanel(); + float var25 = var24.getAlignmentX(); + var24.setVisible(false); + SpaceWar.SpacePanel var28 = new SpaceWar.SpacePanel(); + java.awt.Color var29 = var28.getBackground(); + var24.setForeground(var29); + SpaceWar.SpacePanel var31 = new SpaceWar.SpacePanel(); + float var32 = var31.getAlignmentX(); + var31.setVisible(false); + boolean var35 = var31.isDoubleBuffered(); + java.awt.dnd.DropTarget var36 = var31.getDropTarget(); + var31.show(false); + java.awt.Rectangle var39 = var31.getVisibleRect(); + var24.repaint(var39); + java.awt.Component.BaselineResizeBehavior var41 = var24.getBaselineResizeBehavior(); + SpaceWar.SpacePanel var42 = new SpaceWar.SpacePanel(); + float var43 = var42.getAlignmentX(); + var42.setVisible(false); + var42.nextFocus(); + var42.repaint(1L); + SpaceWar.SpacePanel var49 = new SpaceWar.SpacePanel(); + float var50 = var49.getAlignmentX(); + var49.setVisible(false); + boolean var53 = var49.isDoubleBuffered(); + var49.list(); + SpaceWar.SpacePanel var55 = new SpaceWar.SpacePanel(); + float var56 = var55.getAlignmentX(); + var55.setVisible(false); + boolean var59 = var55.isDoubleBuffered(); + java.awt.dnd.DropTarget var60 = var55.getDropTarget(); + var55.show(false); + java.awt.Rectangle var63 = var55.getVisibleRect(); + java.awt.Rectangle var64 = var49.getBounds(var63); + var42.setBounds(var64); + var24.paintImmediately(var64); + var13.setBounds(var64); + SpaceWar.SpacePanel var68 = new SpaceWar.SpacePanel(); + float var69 = var68.getAlignmentX(); + var68.setVisible(false); + SpaceWar.SpacePanel var72 = new SpaceWar.SpacePanel(); + java.awt.Color var73 = var72.getBackground(); + var68.setForeground(var73); + SpaceWar.SpacePanel var75 = new SpaceWar.SpacePanel(); + float var76 = var75.getAlignmentX(); + var75.setVisible(false); + boolean var79 = var75.isDoubleBuffered(); + java.awt.dnd.DropTarget var80 = var75.getDropTarget(); + var75.show(false); + java.awt.Rectangle var83 = var75.getVisibleRect(); + var68.repaint(var83); + java.awt.Component.BaselineResizeBehavior var85 = var68.getBaselineResizeBehavior(); + var0.add((java.awt.Component)var13, (java.lang.Object)var85); + float var87 = var0.getAlignmentX(); + boolean var88 = var0.isPaintingTile(); + javax.swing.InputMap var89 = var0.getInputMap(); + var0.transferFocusDownCycle(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var4); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var21); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var23); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var29); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var32 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var35 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var36); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var39); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var41); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var43 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var50 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var53 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var56 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var59 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var60); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var63); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var64); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var69 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var73); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var76 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var79 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var80); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var83); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var85); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var87 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var88 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var89); + + } + + public void test31() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test31"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.setInheritsPopupMenu(false); + var0.setFocusTraversalPolicyProvider(true); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + boolean var12 = var8.isDoubleBuffered(); + var8.list(); + SpaceWar.SpacePanel var14 = new SpaceWar.SpacePanel(); + float var15 = var14.getAlignmentX(); + var14.setVisible(false); + boolean var18 = var14.isDoubleBuffered(); + java.awt.dnd.DropTarget var19 = var14.getDropTarget(); + var14.show(false); + java.awt.Rectangle var22 = var14.getVisibleRect(); + java.awt.Rectangle var23 = var8.getBounds(var22); + javax.swing.JToolTip var24 = var8.createToolTip(); + var0.removeKeyListener((java.awt.event.KeyListener)var8); + java.awt.image.VolatileImage var28 = var0.createVolatileImage(399, 25); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var23); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertNull(var28); + + } + + public void test32() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test32"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + java.awt.Dimension var4 = var0.getPreferredSize(); + java.awt.Toolkit var5 = var0.getToolkit(); + java.awt.im.InputMethodRequests var6 = var0.getInputMethodRequests(); + SpaceWar.SpacePanel var7 = new SpaceWar.SpacePanel(); + float var8 = var7.getAlignmentX(); + var7.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var13 = new SpaceWar.SpacePanel(); + float var14 = var13.getAlignmentX(); + var13.setVisible(false); + java.awt.Dimension var17 = var13.getPreferredSize(); + var7.setMaximumSize(var17); + boolean var19 = var7.getVerifyInputWhenFocusTarget(); + var7.transferFocusUpCycle(); + java.awt.Point var21 = var7.location(); + SpaceWar.SpacePanel var22 = new SpaceWar.SpacePanel(); + float var23 = var22.getAlignmentX(); + var22.setVisible(false); + var22.nextFocus(); + var22.reshape((-1), 1, (-1), 10); + var22.disable(); + var22.show(); + SpaceWar.SpacePanel var34 = new SpaceWar.SpacePanel(); + float var35 = var34.getAlignmentX(); + var34.setVisible(false); + boolean var38 = var34.isDoubleBuffered(); + var34.list(); + SpaceWar.SpacePanel var40 = new SpaceWar.SpacePanel(); + float var41 = var40.getAlignmentX(); + var40.setVisible(false); + boolean var44 = var40.isDoubleBuffered(); + java.awt.dnd.DropTarget var45 = var40.getDropTarget(); + var40.show(false); + java.awt.Rectangle var48 = var40.getVisibleRect(); + java.awt.Rectangle var49 = var34.getBounds(var48); + javax.swing.JToolTip var50 = var34.createToolTip(); + var34.firePropertyChange("", false, false); + var34.validate(); + SpaceWar.SpacePanel var56 = new SpaceWar.SpacePanel(); + float var57 = var56.getAlignmentX(); + var56.setVisible(false); + boolean var60 = var56.isDoubleBuffered(); + java.awt.dnd.DropTarget var61 = var56.getDropTarget(); + var56.show(false); + boolean var64 = var56.isPaintingForPrint(); + SpaceWar.SpacePanel var65 = new SpaceWar.SpacePanel(); + float var66 = var65.getAlignmentX(); + var65.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var71 = var65.getMouseListeners(); + int var72 = var65.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var73 = var65.getInputMethodRequests(); + var56.addKeyListener((java.awt.event.KeyListener)var65); + var65.repaint(); + java.awt.Point var76 = var65.location(); + java.awt.Component var77 = var34.getComponentAt(var76); + java.awt.Point var78 = var22.getLocation(var76); + java.awt.Point var79 = var7.getLocation(var76); + java.awt.Component var80 = var0.getComponentAt(var79); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var4); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var21); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var35 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var38 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var41 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var44 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var45); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var48); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var49); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var50); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var57 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var60 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var61); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var64 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var66 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var71); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var72 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var73); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var76); + + // Regression assertion (captures the current behavior of the code) + assertNull(var77); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var78); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var79); + + // Regression assertion (captures the current behavior of the code) + assertNull(var80); + + } + + public void test33() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test33"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + boolean var6 = var0.isFocusCycleRoot(); + SpaceWar.SpacePanel var7 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + java.awt.Color var9 = var8.getBackground(); + SpaceWar.SpacePanel var10 = new SpaceWar.SpacePanel(); + float var11 = var10.getAlignmentX(); + var10.setVisible(false); + var10.nextFocus(); + var10.updateUI(); + var10.enableInputMethods(true); + var7.add((java.awt.Component)var8, (java.lang.Object)true); + java.awt.Dimension var19 = var8.getPreferredSize(); + var0.setSize(var19); + var0.updateUI(); + SpaceWar.SpacePanel var22 = new SpaceWar.SpacePanel(); + float var23 = var22.getAlignmentX(); + var22.setVisible(false); + java.awt.Dimension var26 = var22.getPreferredSize(); + java.awt.Toolkit var27 = var22.getToolkit(); + boolean var28 = var22.isFocusable(); + javax.swing.KeyStroke[] var29 = var22.getRegisteredKeyStrokes(); + SpaceWar.SpacePanel var30 = new SpaceWar.SpacePanel(); + float var31 = var30.getAlignmentX(); + SpaceWar.SpacePanel var32 = new SpaceWar.SpacePanel(); + float var33 = var32.getAlignmentX(); + var32.setVisible(false); + java.awt.Dimension var36 = var32.getPreferredSize(); + boolean var37 = var32.getVerifyInputWhenFocusTarget(); + java.awt.Component var40 = var32.findComponentAt(10, 1); + var30.addKeyListener((java.awt.event.KeyListener)var32); + var32.repaint(100, (-1), (-1), 1); + boolean var47 = var22.isAncestorOf((java.awt.Component)var32); + java.awt.Point var48 = var22.location(); + boolean var49 = var0.contains(var48); + int var50 = var0.countComponents(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var9); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var27); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var28 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var29); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var31 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var33 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var36); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var40); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var47 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var48); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var49 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var50 == 0); + + } + + public void test34() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test34"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + SpaceWar.SpacePanel var2 = new SpaceWar.SpacePanel(); + float var3 = var2.getAlignmentX(); + var2.setVisible(false); + java.awt.Dimension var6 = var2.getPreferredSize(); + boolean var7 = var2.getVerifyInputWhenFocusTarget(); + java.awt.Component var10 = var2.findComponentAt(10, 1); + var0.addKeyListener((java.awt.event.KeyListener)var2); + SpaceWar.SpacePanel var12 = new SpaceWar.SpacePanel(); + float var13 = var12.getAlignmentX(); + SpaceWar.SpacePanel var14 = new SpaceWar.SpacePanel(); + float var15 = var14.getAlignmentX(); + var14.setVisible(false); + java.awt.Dimension var18 = var14.getPreferredSize(); + boolean var19 = var14.getVerifyInputWhenFocusTarget(); + java.awt.Component var22 = var14.findComponentAt(10, 1); + var12.addKeyListener((java.awt.event.KeyListener)var14); + var14.repaint(100, (-1), (-1), 1); + java.awt.image.ColorModel var29 = var14.getColorModel(); + SpaceWar.SpacePanel var30 = new SpaceWar.SpacePanel(); + float var31 = var30.getAlignmentX(); + var30.setVisible(false); + boolean var34 = var30.isDoubleBuffered(); + var30.list(); + SpaceWar.SpacePanel var36 = new SpaceWar.SpacePanel(); + float var37 = var36.getAlignmentX(); + var36.setVisible(false); + boolean var40 = var36.isDoubleBuffered(); + java.awt.dnd.DropTarget var41 = var36.getDropTarget(); + var36.show(false); + java.awt.Rectangle var44 = var36.getVisibleRect(); + java.awt.image.BufferedImage var46 = var36.loadImg("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + boolean var47 = var30.isAncestorOf((java.awt.Component)var36); + javax.swing.InputVerifier var48 = var36.getInputVerifier(); + var2.putClientProperty((java.lang.Object)var14, (java.lang.Object)var36); + int var50 = var36.getComponentCount(); + boolean var53 = var36.inside(10, 400); + var36.setAlignmentY(0.0f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var29); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var31 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var34 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var40 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var41); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var44); + + // Regression assertion (captures the current behavior of the code) + assertNull(var46); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var47 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var48); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var50 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var53 == false); + + } + + public void test35() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test35"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + var0.list(); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + float var7 = var6.getAlignmentX(); + var6.setVisible(false); + boolean var10 = var6.isDoubleBuffered(); + java.awt.dnd.DropTarget var11 = var6.getDropTarget(); + var6.show(false); + java.awt.Rectangle var14 = var6.getVisibleRect(); + java.awt.Rectangle var15 = var0.getBounds(var14); + javax.swing.JToolTip var16 = var0.createToolTip(); + var0.firePropertyChange("", false, false); + java.lang.String var21 = var0.getUIClassID(); + SpaceWar.SpacePanel var22 = new SpaceWar.SpacePanel(); + float var23 = var22.getAlignmentX(); + var22.firePropertyChange("", (-1), 1); + boolean var28 = var22.isFocusOwner(); + SpaceWar.SpacePanel var30 = new SpaceWar.SpacePanel(); + float var31 = var30.getAlignmentX(); + var30.setVisible(false); + java.awt.Dimension var34 = var30.getPreferredSize(); + java.awt.Toolkit var35 = var30.getToolkit(); + SpaceWar.SpacePanel var36 = new SpaceWar.SpacePanel(); + var36.setName(""); + int var39 = var36.getX(); + SpaceWar.SpacePanel var40 = new SpaceWar.SpacePanel(); + float var41 = var40.getAlignmentX(); + var40.setVisible(false); + var40.nextFocus(); + SpaceWar.SpacePanel var45 = new SpaceWar.SpacePanel(); + float var46 = var45.getAlignmentX(); + var45.setVisible(false); + SpaceWar.SpacePanel var49 = new SpaceWar.SpacePanel(); + java.awt.Color var50 = var49.getBackground(); + var45.setForeground(var50); + var40.setBackground(var50); + var36.setBackground(var50); + var30.setForeground(var50); + var22.putClientProperty((java.lang.Object)(byte)100, (java.lang.Object)var50); + boolean var56 = var22.isEnabled(); + var22.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", (-1), 1); + int var61 = var0.getComponentZOrder((java.awt.Component)var22); + java.awt.dnd.DropTarget var62 = var0.getDropTarget(); + boolean var63 = var0.isRequestFocusEnabled(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var21 + "' != '" + "PanelUI"+ "'", var21.equals("PanelUI")); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var28 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var31 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var34); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var35); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var39 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var41 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var46 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var50); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var56 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var61 == (-1)); + + // Regression assertion (captures the current behavior of the code) + assertNull(var62); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var63 == true); + + } + + public void test36() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test36"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.reshape((-1), 1, (-1), 10); + var0.disable(); + java.awt.LayoutManager var11 = var0.getLayout(); + java.awt.Container var12 = var0.getParent(); + boolean var13 = var0.isOptimizedDrawingEnabled(); + var0.enableInputMethods(true); + java.awt.im.InputContext var16 = var0.getInputContext(); + java.awt.event.KeyListener[] var17 = var0.getKeyListeners(); + SpaceWar.SpacePanel var18 = new SpaceWar.SpacePanel(); + float var19 = var18.getAlignmentX(); + var18.setVisible(false); + boolean var22 = var18.isDoubleBuffered(); + var18.list(); + SpaceWar.SpacePanel var24 = new SpaceWar.SpacePanel(); + float var25 = var24.getAlignmentX(); + var24.setVisible(false); + boolean var28 = var24.isDoubleBuffered(); + java.awt.dnd.DropTarget var29 = var24.getDropTarget(); + var24.show(false); + java.awt.Rectangle var32 = var24.getVisibleRect(); + java.awt.Rectangle var33 = var18.getBounds(var32); + javax.swing.JToolTip var34 = var18.createToolTip(); + boolean var35 = var34.getInheritsPopupMenu(); + int var36 = var0.getComponentZOrder((java.awt.Component)var34); + var34.setToolTipText("SpaceWar.SpacePanel[,0,0,0x0,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=java.awt.Dimension[width=800,height=600],minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + var34.firePropertyChange("PanelUI", 0L, 0L); + int var43 = var34.getHeight(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var22 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var28 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var29); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var32); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var33); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var34); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var35 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var36 == (-1)); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var43 == 0); + + } + + public void test37() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test37"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + var0.enable(false); + java.awt.Container var7 = var0.getTopLevelAncestor(); + javax.swing.InputMap var9 = var0.getInputMap(1); + javax.swing.TransferHandler var10 = var0.getTransferHandler(); + java.awt.event.MouseListener[] var11 = var0.getMouseListeners(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var9); + + // Regression assertion (captures the current behavior of the code) + assertNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + } + + public void test38() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test38"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + boolean var6 = var0.isFocusCycleRoot(); + SpaceWar.SpacePanel var7 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + java.awt.Color var9 = var8.getBackground(); + SpaceWar.SpacePanel var10 = new SpaceWar.SpacePanel(); + float var11 = var10.getAlignmentX(); + var10.setVisible(false); + var10.nextFocus(); + var10.updateUI(); + var10.enableInputMethods(true); + var7.add((java.awt.Component)var8, (java.lang.Object)true); + java.awt.Dimension var19 = var8.getPreferredSize(); + var0.setSize(var19); + var0.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", (-1), 10); + java.awt.event.HierarchyListener[] var25 = var0.getHierarchyListeners(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var9); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var25); + + } + + public void test39() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test39"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.reshape((-1), 1, (-1), 10); + var0.disable(); + java.awt.LayoutManager var11 = var0.getLayout(); + var0.setVisible(false); + SpaceWar.SpacePanel var14 = new SpaceWar.SpacePanel(); + float var15 = var14.getAlignmentX(); + var14.setVisible(false); + var14.setInheritsPopupMenu(false); + boolean var20 = var14.isDoubleBuffered(); + boolean var21 = var14.isMinimumSizeSet(); + SpaceWar.SpacePanel var22 = new SpaceWar.SpacePanel(); + float var23 = var22.getAlignmentX(); + var22.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var28 = new SpaceWar.SpacePanel(); + float var29 = var28.getAlignmentX(); + var28.setVisible(false); + java.awt.Dimension var32 = var28.getPreferredSize(); + var22.setMaximumSize(var32); + boolean var34 = var22.getVerifyInputWhenFocusTarget(); + javax.accessibility.AccessibleContext var35 = var22.getAccessibleContext(); + boolean var36 = var22.isDoubleBuffered(); + java.awt.Rectangle var37 = var22.getVisibleRect(); + var14.setBounds(var37); + var0.computeVisibleRect(var37); + SpaceWar.SpacePanel var40 = new SpaceWar.SpacePanel(); + float var41 = var40.getAlignmentX(); + var40.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var46 = new SpaceWar.SpacePanel(); + float var47 = var46.getAlignmentX(); + var46.setVisible(false); + java.awt.Dimension var50 = var46.getPreferredSize(); + var40.setMaximumSize(var50); + boolean var52 = var40.getVerifyInputWhenFocusTarget(); + int var53 = var40.getX(); + java.awt.Rectangle var54 = var40.bounds(); + var0.remove((java.awt.Component)var40); + java.awt.Insets var56 = var40.insets(); + var40.setFocusCycleRoot(false); + var40.firePropertyChange("hi!", 10L, 100L); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var29 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var32); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var34 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var35); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var36 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var37); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var41 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var47 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var50); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var52 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var53 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var54); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var56); + + } + + public void test40() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test40"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + SpaceWar.SpacePanel var4 = new SpaceWar.SpacePanel(); + java.awt.Color var5 = var4.getBackground(); + var0.setForeground(var5); + SpaceWar.SpacePanel var7 = new SpaceWar.SpacePanel(); + float var8 = var7.getAlignmentX(); + var7.setVisible(false); + boolean var11 = var7.isDoubleBuffered(); + java.awt.dnd.DropTarget var12 = var7.getDropTarget(); + var7.show(false); + java.awt.Rectangle var15 = var7.getVisibleRect(); + var0.repaint(var15); + java.awt.FocusTraversalPolicy var17 = var0.getFocusTraversalPolicy(); + SpaceWar.SpacePanel var18 = new SpaceWar.SpacePanel(); + float var19 = var18.getAlignmentX(); + var18.firePropertyChange("", (-1), 1); + boolean var24 = var18.isFocusOwner(); + SpaceWar.SpacePanel var26 = new SpaceWar.SpacePanel(); + float var27 = var26.getAlignmentX(); + var26.setVisible(false); + java.awt.Dimension var30 = var26.getPreferredSize(); + java.awt.Toolkit var31 = var26.getToolkit(); + SpaceWar.SpacePanel var32 = new SpaceWar.SpacePanel(); + var32.setName(""); + int var35 = var32.getX(); + SpaceWar.SpacePanel var36 = new SpaceWar.SpacePanel(); + float var37 = var36.getAlignmentX(); + var36.setVisible(false); + var36.nextFocus(); + SpaceWar.SpacePanel var41 = new SpaceWar.SpacePanel(); + float var42 = var41.getAlignmentX(); + var41.setVisible(false); + SpaceWar.SpacePanel var45 = new SpaceWar.SpacePanel(); + java.awt.Color var46 = var45.getBackground(); + var41.setForeground(var46); + var36.setBackground(var46); + var32.setBackground(var46); + var26.setForeground(var46); + var18.putClientProperty((java.lang.Object)(byte)100, (java.lang.Object)var46); + var0.setBackground(var46); + SpaceWar.SpacePanel var53 = new SpaceWar.SpacePanel(); + float var54 = var53.getAlignmentX(); + var53.setVisible(false); + boolean var57 = var53.isDoubleBuffered(); + java.awt.dnd.DropTarget var58 = var53.getDropTarget(); + var53.show(false); + boolean var61 = var53.isPaintingForPrint(); + SpaceWar.SpacePanel var62 = new SpaceWar.SpacePanel(); + float var63 = var62.getAlignmentX(); + SpaceWar.SpacePanel var64 = new SpaceWar.SpacePanel(); + float var65 = var64.getAlignmentX(); + var64.setVisible(false); + java.awt.Dimension var68 = var64.getPreferredSize(); + boolean var69 = var64.getVerifyInputWhenFocusTarget(); + java.awt.Component var72 = var64.findComponentAt(10, 1); + var62.addKeyListener((java.awt.event.KeyListener)var64); + java.awt.Dimension var74 = var64.getMinimumSize(); + var53.setMinimumSize(var74); + java.awt.Dimension var76 = var0.getSize(var74); + java.awt.Rectangle var77 = var0.getVisibleRect(); + javax.swing.InputMap var78 = var0.getInputMap(); + var0.reshape(499, 400, 2, (-1)); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var24 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var30); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var31); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var35 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var42 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var46); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var54 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var57 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var58); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var61 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var63 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var65 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var68); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var69 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var72); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var74); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var76); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var77); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var78); + + } + + public void test41() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test41"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.setInheritsPopupMenu(false); + var0.setFocusTraversalPolicyProvider(true); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + boolean var12 = var8.isDoubleBuffered(); + var8.list(); + SpaceWar.SpacePanel var14 = new SpaceWar.SpacePanel(); + float var15 = var14.getAlignmentX(); + var14.setVisible(false); + boolean var18 = var14.isDoubleBuffered(); + java.awt.dnd.DropTarget var19 = var14.getDropTarget(); + var14.show(false); + java.awt.Rectangle var22 = var14.getVisibleRect(); + java.awt.Rectangle var23 = var8.getBounds(var22); + javax.swing.JToolTip var24 = var8.createToolTip(); + var0.removeKeyListener((java.awt.event.KeyListener)var8); + javax.swing.TransferHandler var26 = var0.getTransferHandler(); + var0.transferFocus(); + SpaceWar.SpacePanel var28 = new SpaceWar.SpacePanel(); + float var29 = var28.getAlignmentX(); + SpaceWar.SpacePanel var30 = new SpaceWar.SpacePanel(); + float var31 = var30.getAlignmentX(); + var30.setVisible(false); + java.awt.Dimension var34 = var30.getPreferredSize(); + boolean var35 = var30.getVerifyInputWhenFocusTarget(); + java.awt.Component var38 = var30.findComponentAt(10, 1); + var28.addKeyListener((java.awt.event.KeyListener)var30); + java.awt.Dimension var40 = var30.getMinimumSize(); + SpaceWar.SpacePanel var41 = new SpaceWar.SpacePanel(); + java.awt.Color var42 = var41.getBackground(); + var41.repaint(); + var41.setRequestFocusEnabled(false); + var41.reshape(100, 0, 100, 0); + var41.requestFocus(); + java.awt.Rectangle var52 = var41.getVisibleRect(); + var30.setBounds(var52); + var0.scrollRectToVisible(var52); + boolean var55 = var0.isDisplayable(); + var0.revalidate(); + SpaceWar.SpacePanel var57 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var58 = new SpaceWar.SpacePanel(); + java.awt.Color var59 = var58.getBackground(); + SpaceWar.SpacePanel var60 = new SpaceWar.SpacePanel(); + float var61 = var60.getAlignmentX(); + var60.setVisible(false); + var60.nextFocus(); + var60.updateUI(); + var60.enableInputMethods(true); + var57.add((java.awt.Component)var58, (java.lang.Object)true); + boolean var69 = var57.isMinimumSizeSet(); + java.awt.event.HierarchyListener[] var70 = var57.getHierarchyListeners(); + int var71 = var57.getComponentCount(); + SpaceWar.SpacePanel var72 = new SpaceWar.SpacePanel(); + java.awt.Color var73 = var72.getBackground(); + var72.repaint(); + var72.setRequestFocusEnabled(false); + var72.removeAll(); + var57.setNextFocusableComponent((java.awt.Component)var72); + java.awt.Insets var79 = var57.insets(); + java.awt.Insets var80 = var0.getInsets(var79); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var23); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var29 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var31 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var34); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var35 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var38); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var40); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var42); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var52); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var55 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var59); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var61 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var69 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var70); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var71 == 1); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var73); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var79); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var80); + + } + + public void test42() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test42"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + var0.setName(""); + var0.enable(true); + var0.enable(); + java.awt.Point var6 = var0.location(); + var0.setDebugGraphicsOptions(0); + boolean var9 = var0.isLightweight(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == false); + + } + + public void test43() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test43"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + java.awt.im.InputMethodRequests var3 = var0.getInputMethodRequests(); + var0.setDoubleBuffered(true); + var0.setInheritsPopupMenu(false); + javax.swing.plaf.PanelUI var8 = var0.getUI(); + java.util.Set var10 = var0.getFocusTraversalKeys(3); + var0.requestFocus(); + var0.setAlignmentX(0.0f); + javax.swing.TransferHandler var14 = var0.getTransferHandler(); + var0.repaint(); + var0.hide(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertNull(var14); + + } + + public void test44() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test44"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + var0.setName(""); + java.awt.Dimension var3 = var0.minimumSize(); + boolean var4 = var0.isDoubleBuffered(); + SpaceWar.SpacePanel var5 = new SpaceWar.SpacePanel(); + float var6 = var5.getAlignmentX(); + var5.setVisible(false); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + java.awt.Color var10 = var9.getBackground(); + var5.setForeground(var10); + SpaceWar.SpacePanel var12 = new SpaceWar.SpacePanel(); + float var13 = var12.getAlignmentX(); + var12.setVisible(false); + boolean var16 = var12.isDoubleBuffered(); + java.awt.dnd.DropTarget var17 = var12.getDropTarget(); + var12.show(false); + java.awt.Rectangle var20 = var12.getVisibleRect(); + var5.repaint(var20); + java.awt.FocusTraversalPolicy var22 = var5.getFocusTraversalPolicy(); + java.awt.im.InputMethodRequests var23 = var5.getInputMethodRequests(); + var5.layout(); + boolean var25 = var5.isFocusTraversalPolicyProvider(); + java.awt.Component var26 = var0.add((java.awt.Component)var5); + javax.swing.border.Border var27 = var5.getBorder(); + java.awt.Point var28 = var5.getLocation(); + java.awt.Rectangle var29 = var5.getBounds(); + SpaceWar.SpacePanel var30 = new SpaceWar.SpacePanel(); + float var31 = var30.getAlignmentX(); + var30.setVisible(false); + boolean var34 = var30.isDoubleBuffered(); + var30.list(); + SpaceWar.SpacePanel var36 = new SpaceWar.SpacePanel(); + float var37 = var36.getAlignmentX(); + var36.setVisible(false); + boolean var40 = var36.isDoubleBuffered(); + java.awt.dnd.DropTarget var41 = var36.getDropTarget(); + var36.show(false); + java.awt.Rectangle var44 = var36.getVisibleRect(); + java.awt.image.BufferedImage var46 = var36.loadImg("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + boolean var47 = var30.isAncestorOf((java.awt.Component)var36); + float var48 = var30.getAlignmentX(); + java.awt.image.VolatileImage var51 = var30.createVolatileImage(25, 1); + SpaceWar.SpacePanel var52 = new SpaceWar.SpacePanel(); + float var53 = var52.getAlignmentX(); + var52.setVisible(false); + boolean var56 = var52.isDoubleBuffered(); + var52.list(); + SpaceWar.SpacePanel var58 = new SpaceWar.SpacePanel(); + float var59 = var58.getAlignmentX(); + var58.setVisible(false); + boolean var62 = var58.isDoubleBuffered(); + java.awt.dnd.DropTarget var63 = var58.getDropTarget(); + var58.show(false); + java.awt.Rectangle var66 = var58.getVisibleRect(); + java.awt.Rectangle var67 = var52.getBounds(var66); + javax.swing.JToolTip var68 = var52.createToolTip(); + java.awt.Dimension var69 = var52.minimumSize(); + SpaceWar.SpacePanel var70 = new SpaceWar.SpacePanel(); + float var71 = var70.getAlignmentX(); + var70.setVisible(false); + var70.setInheritsPopupMenu(false); + var70.setFocusTraversalPolicyProvider(true); + java.awt.Container var78 = var70.getFocusCycleRootAncestor(); + SpaceWar.SpacePanel var79 = new SpaceWar.SpacePanel(); + float var80 = var79.getAlignmentX(); + var79.removeNotify(); + SpaceWar.SpacePanel var82 = new SpaceWar.SpacePanel(); + float var83 = var82.getAlignmentX(); + var82.setVisible(false); + boolean var86 = var82.isDoubleBuffered(); + var82.list(); + float var88 = var82.getAlignmentY(); + java.awt.Insets var89 = var82.getInsets(); + java.awt.Insets var90 = var79.getInsets(var89); + java.awt.Insets var91 = var70.getInsets(var90); + java.awt.Insets var92 = var52.getInsets(var90); + java.awt.Insets var93 = var30.getInsets(var90); + java.awt.Insets var94 = var5.getInsets(var93); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertNull(var23); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertNull(var27); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var28); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var29); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var31 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var34 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var40 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var41); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var44); + + // Regression assertion (captures the current behavior of the code) + assertNull(var46); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var47 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var48 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNull(var51); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var53 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var56 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var59 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var62 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var63); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var66); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var67); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var68); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var69); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var71 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNull(var78); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var80 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var83 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var86 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var88 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var89); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var90); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var91); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var92); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var93); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var94); + + } + + public void test45() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test45"); + + + SpaceWar.Explosion var4 = new SpaceWar.Explosion((-14.294084445243069d), 594.7973940347722d, 499, 10); + boolean var5 = var4.update(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == true); + + } + + public void test46() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test46"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + var0.show(false); + boolean var8 = var0.isPaintingForPrint(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var15 = var9.getMouseListeners(); + int var16 = var9.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var17 = var9.getInputMethodRequests(); + var0.addKeyListener((java.awt.event.KeyListener)var9); + var9.removeNotify(); + var9.setName("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + SpaceWar.SpacePanel var22 = new SpaceWar.SpacePanel(); + float var23 = var22.getAlignmentX(); + var22.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var28 = var22.getUI(); + java.awt.im.InputMethodRequests var29 = var22.getInputMethodRequests(); + SpaceWar.SpacePanel var30 = new SpaceWar.SpacePanel(); + float var31 = var30.getAlignmentX(); + var30.setVisible(false); + var30.nextFocus(); + var30.updateUI(); + var30.enableInputMethods(true); + var30.setSize((-1), 1); + SpaceWar.SpacePanel var41 = new SpaceWar.SpacePanel(); + var41.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var22.add((java.awt.Component)var30, (java.lang.Object)"SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + SpaceWar.SpacePanel var47 = new SpaceWar.SpacePanel(); + float var48 = var47.getAlignmentX(); + var47.setVisible(false); + java.awt.Dimension var51 = var47.getPreferredSize(); + java.awt.Toolkit var52 = var47.getToolkit(); + java.awt.Toolkit var53 = var47.getToolkit(); + java.awt.Component var54 = var30.add((java.awt.Component)var47); + java.awt.dnd.DropTarget var55 = var30.getDropTarget(); + java.awt.Point var56 = var30.location(); + java.awt.Point var57 = var9.getLocation(var56); + var9.show(false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var28); + + // Regression assertion (captures the current behavior of the code) + assertNull(var29); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var31 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var48 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var51); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var52); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var53); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var54); + + // Regression assertion (captures the current behavior of the code) + assertNull(var55); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var56); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var57); + + } + + public void test47() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test47"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var6 = var0.getUI(); + java.awt.im.InputMethodRequests var7 = var0.getInputMethodRequests(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + var8.nextFocus(); + var8.updateUI(); + var8.enableInputMethods(true); + var8.setSize((-1), 1); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + var19.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var0.add((java.awt.Component)var8, (java.lang.Object)"SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + boolean var25 = var0.isCursorSet(); + var0.enableInputMethods(true); + java.awt.Dimension var28 = var0.size(); + java.awt.Dimension var29 = var0.minimumSize(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var28); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var29); + + } + + public void test48() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test48"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var1 = new SpaceWar.SpacePanel(); + java.awt.Color var2 = var1.getBackground(); + SpaceWar.SpacePanel var3 = new SpaceWar.SpacePanel(); + float var4 = var3.getAlignmentX(); + var3.setVisible(false); + var3.nextFocus(); + var3.updateUI(); + var3.enableInputMethods(true); + var0.add((java.awt.Component)var1, (java.lang.Object)true); + boolean var12 = var0.isMinimumSizeSet(); + java.awt.event.HierarchyListener[] var13 = var0.getHierarchyListeners(); + int var14 = var0.getComponentCount(); + SpaceWar.SpacePanel var15 = new SpaceWar.SpacePanel(); + java.awt.Color var16 = var15.getBackground(); + var15.repaint(); + var15.setRequestFocusEnabled(false); + var15.removeAll(); + var0.setNextFocusableComponent((java.awt.Component)var15); + java.awt.event.KeyListener[] var22 = var15.getKeyListeners(); + boolean var23 = var15.isVisible(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var2); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == 1); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == true); + + } + + public void test49() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test49"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + var0.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + java.awt.Font var5 = var0.getFont(); + java.awt.Dimension var6 = var0.preferredSize(); + SpaceWar.SpacePanel var7 = new SpaceWar.SpacePanel(); + java.awt.Color var8 = var7.getBackground(); + var7.repaint(); + var7.setRequestFocusEnabled(false); + var7.reshape(100, 0, 100, 0); + java.beans.VetoableChangeListener[] var17 = var7.getVetoableChangeListeners(); + java.awt.Rectangle var18 = var7.getVisibleRect(); + float var19 = var7.getAlignmentY(); + java.awt.Dimension var20 = var7.minimumSize(); + javax.swing.InputVerifier var21 = var7.getInputVerifier(); + java.awt.Font var22 = var7.getFont(); + java.awt.LayoutManager var23 = var7.getLayout(); + var0.setLayout(var23); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertNull(var21); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var23); + + } + + public void test50() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test50"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + SpaceWar.SpacePanel var2 = new SpaceWar.SpacePanel(); + float var3 = var2.getAlignmentX(); + var2.setVisible(false); + java.awt.Dimension var6 = var2.getPreferredSize(); + boolean var7 = var2.getVerifyInputWhenFocusTarget(); + java.awt.Component var10 = var2.findComponentAt(10, 1); + var0.addKeyListener((java.awt.event.KeyListener)var2); + SpaceWar.SpacePanel var12 = new SpaceWar.SpacePanel(); + float var13 = var12.getAlignmentX(); + SpaceWar.SpacePanel var14 = new SpaceWar.SpacePanel(); + float var15 = var14.getAlignmentX(); + var14.setVisible(false); + java.awt.Dimension var18 = var14.getPreferredSize(); + boolean var19 = var14.getVerifyInputWhenFocusTarget(); + java.awt.Component var22 = var14.findComponentAt(10, 1); + var12.addKeyListener((java.awt.event.KeyListener)var14); + var14.repaint(100, (-1), (-1), 1); + java.awt.image.ColorModel var29 = var14.getColorModel(); + SpaceWar.SpacePanel var30 = new SpaceWar.SpacePanel(); + float var31 = var30.getAlignmentX(); + var30.setVisible(false); + boolean var34 = var30.isDoubleBuffered(); + var30.list(); + SpaceWar.SpacePanel var36 = new SpaceWar.SpacePanel(); + float var37 = var36.getAlignmentX(); + var36.setVisible(false); + boolean var40 = var36.isDoubleBuffered(); + java.awt.dnd.DropTarget var41 = var36.getDropTarget(); + var36.show(false); + java.awt.Rectangle var44 = var36.getVisibleRect(); + java.awt.image.BufferedImage var46 = var36.loadImg("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + boolean var47 = var30.isAncestorOf((java.awt.Component)var36); + javax.swing.InputVerifier var48 = var36.getInputVerifier(); + var2.putClientProperty((java.lang.Object)var14, (java.lang.Object)var36); + javax.swing.JToolTip var50 = var2.createToolTip(); + boolean var51 = var50.isFocusTraversable(); + boolean var52 = var50.isEnabled(); + SpaceWar.SpacePanel var53 = new SpaceWar.SpacePanel(); + float var54 = var53.getAlignmentX(); + var53.setVisible(false); + var53.nextFocus(); + SpaceWar.SpacePanel var58 = new SpaceWar.SpacePanel(); + float var59 = var58.getAlignmentX(); + var58.setVisible(false); + SpaceWar.SpacePanel var62 = new SpaceWar.SpacePanel(); + java.awt.Color var63 = var62.getBackground(); + var58.setForeground(var63); + var53.setBackground(var63); + java.awt.Component var66 = var53.getNextFocusableComponent(); + float var67 = var53.getAlignmentY(); + var53.setFocusTraversalPolicyProvider(true); + boolean var70 = var50.isAncestorOf((java.awt.Component)var53); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var29); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var31 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var34 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var40 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var41); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var44); + + // Regression assertion (captures the current behavior of the code) + assertNull(var46); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var47 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var48); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var50); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var51 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var52 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var54 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var59 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var63); + + // Regression assertion (captures the current behavior of the code) + assertNull(var66); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var67 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var70 == false); + + } + + public void test51() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test51"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + java.awt.im.InputMethodRequests var3 = var0.getInputMethodRequests(); + int var4 = var0.countComponents(); + java.awt.event.MouseMotionListener[] var5 = var0.getMouseMotionListeners(); + java.awt.Dimension var6 = var0.size(); + boolean var7 = var0.isMinimumSizeSet(); + var0.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", (byte)1, (byte)10); + int var12 = var0.countComponents(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == 0); + + } + + public void test52() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test52"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + SpaceWar.SpacePanel var5 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + java.awt.Color var7 = var6.getBackground(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + var8.nextFocus(); + var8.updateUI(); + var8.enableInputMethods(true); + var5.add((java.awt.Component)var6, (java.lang.Object)true); + java.awt.Dimension var17 = var6.getPreferredSize(); + var0.setMaximumSize(var17); + java.awt.Dimension var19 = var0.preferredSize(); + javax.swing.InputVerifier var20 = var0.getInputVerifier(); + java.awt.event.MouseWheelListener[] var21 = var0.getMouseWheelListeners(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var21); + + } + + public void test53() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test53"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.reshape((-1), 1, (-1), 10); + var0.disable(); + java.awt.Component var13 = var0.findComponentAt(0, (-1)); + SpaceWar.SpacePanel var14 = new SpaceWar.SpacePanel(); + var14.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + javax.swing.plaf.PanelUI var19 = var14.getUI(); + SpaceWar.SpacePanel var20 = new SpaceWar.SpacePanel(); + float var21 = var20.getAlignmentX(); + var20.setVisible(false); + var20.nextFocus(); + var20.repaint(1L); + SpaceWar.SpacePanel var27 = new SpaceWar.SpacePanel(); + float var28 = var27.getAlignmentX(); + var27.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var33 = new SpaceWar.SpacePanel(); + float var34 = var33.getAlignmentX(); + var33.setVisible(false); + java.awt.Dimension var37 = var33.getPreferredSize(); + var27.setMaximumSize(var37); + var20.setPreferredSize(var37); + var14.setMaximumSize(var37); + var0.setSize(var37); + java.awt.Container var42 = var0.getParent(); + SpaceWar.SpacePanel var43 = new SpaceWar.SpacePanel(); + float var44 = var43.getAlignmentX(); + var43.setVisible(false); + var43.nextFocus(); + var43.reshape((-1), 1, (-1), 10); + java.util.Set var54 = var43.getFocusTraversalKeys(3); + java.awt.Point var55 = var43.getLocation(); + boolean var56 = var0.contains(var55); + var0.setLocation((-1), 25); + java.lang.String var60 = var0.getName(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var28 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var34 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var37); + + // Regression assertion (captures the current behavior of the code) + assertNull(var42); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var44 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var54); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var55); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var56 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var60); + + } + + public void test54() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test54"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + java.awt.im.InputMethodRequests var3 = var0.getInputMethodRequests(); + int var4 = var0.countComponents(); + java.awt.event.ComponentListener[] var5 = var0.getComponentListeners(); + boolean var6 = var0.isDoubleBuffered(); + int var7 = var0.getY(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0); + + } + + public void test55() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test55"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.reshape((-1), 1, (-1), 10); + var0.disable(); + boolean var11 = var0.isFocusable(); + int var12 = var0.getHeight(); + javax.swing.InputVerifier var13 = var0.getInputVerifier(); + java.awt.Graphics var14 = var0.getGraphics(); + java.awt.Color var15 = var0.getForeground(); + java.awt.Cursor var16 = var0.getCursor(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == 10); + + // Regression assertion (captures the current behavior of the code) + assertNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + } + + public void test56() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test56"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + var0.show(false); + boolean var8 = var0.isPaintingForPrint(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var15 = var9.getMouseListeners(); + int var16 = var9.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var17 = var9.getInputMethodRequests(); + var0.addKeyListener((java.awt.event.KeyListener)var9); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + float var20 = var19.getAlignmentX(); + var19.setVisible(false); + var19.nextFocus(); + var19.repaint(1L); + SpaceWar.SpacePanel var26 = new SpaceWar.SpacePanel(); + float var27 = var26.getAlignmentX(); + var26.setVisible(false); + boolean var30 = var26.isDoubleBuffered(); + var26.list(); + SpaceWar.SpacePanel var32 = new SpaceWar.SpacePanel(); + float var33 = var32.getAlignmentX(); + var32.setVisible(false); + boolean var36 = var32.isDoubleBuffered(); + java.awt.dnd.DropTarget var37 = var32.getDropTarget(); + var32.show(false); + java.awt.Rectangle var40 = var32.getVisibleRect(); + java.awt.Rectangle var41 = var26.getBounds(var40); + var19.setBounds(var41); + var0.paintImmediately(var41); + java.beans.PropertyChangeListener[] var45 = var0.getPropertyChangeListeners("PanelUI"); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var30 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var33 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var36 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var37); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var40); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var41); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var45); + + } + + public void test57() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test57"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + SpaceWar.SpacePanel var2 = new SpaceWar.SpacePanel(); + float var3 = var2.getAlignmentX(); + var2.setVisible(false); + java.awt.Dimension var6 = var2.getPreferredSize(); + boolean var7 = var2.getVerifyInputWhenFocusTarget(); + java.awt.Component var10 = var2.findComponentAt(10, 1); + var0.addKeyListener((java.awt.event.KeyListener)var2); + var2.repaint(100, (-1), (-1), 1); + SpaceWar.SpacePanel var17 = new SpaceWar.SpacePanel(); + java.awt.Color var18 = var17.getBackground(); + var17.repaint(); + java.awt.im.InputMethodRequests var20 = var17.getInputMethodRequests(); + java.awt.GraphicsConfiguration var21 = var17.getGraphicsConfiguration(); + var2.remove((java.awt.Component)var17); + java.awt.event.HierarchyBoundsListener[] var23 = var2.getHierarchyBoundsListeners(); + boolean var26 = var2.contains(25, 3); + java.awt.Point var27 = var2.getMousePosition(); + var2.requestFocus(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertNull(var21); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var23); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var27); + + } + + public void test58() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test58"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + SpaceWar.SpacePanel var4 = new SpaceWar.SpacePanel(); + java.awt.Color var5 = var4.getBackground(); + var0.setForeground(var5); + SpaceWar.SpacePanel var7 = new SpaceWar.SpacePanel(); + float var8 = var7.getAlignmentX(); + var7.setVisible(false); + boolean var11 = var7.isDoubleBuffered(); + java.awt.dnd.DropTarget var12 = var7.getDropTarget(); + var7.show(false); + java.awt.Rectangle var15 = var7.getVisibleRect(); + var0.repaint(var15); + java.awt.FocusTraversalPolicy var17 = var0.getFocusTraversalPolicy(); + java.awt.im.InputMethodRequests var18 = var0.getInputMethodRequests(); + var0.layout(); + java.awt.Point var20 = var0.getMousePosition(); + java.awt.Graphics var21 = var0.getGraphics(); + boolean var22 = var0.isValid(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertNull(var21); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var22 == false); + + } + + public void test59() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test59"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + SpaceWar.SpacePanel var4 = new SpaceWar.SpacePanel(); + java.awt.Color var5 = var4.getBackground(); + var0.setForeground(var5); + SpaceWar.SpacePanel var7 = new SpaceWar.SpacePanel(); + float var8 = var7.getAlignmentX(); + var7.setVisible(false); + boolean var11 = var7.isDoubleBuffered(); + java.awt.dnd.DropTarget var12 = var7.getDropTarget(); + var7.show(false); + java.awt.Rectangle var15 = var7.getVisibleRect(); + var0.repaint(var15); + java.awt.FocusTraversalPolicy var17 = var0.getFocusTraversalPolicy(); + javax.swing.TransferHandler var18 = var0.getTransferHandler(); + java.awt.Component var19 = var0.getNextFocusableComponent(); + java.awt.image.VolatileImage var22 = var0.createVolatileImage(10, (-1)); + var0.setVisible(false); + boolean var25 = var0.isFocusCycleRoot(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == false); + + } + + public void test60() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test60"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var6 = var0.getUI(); + java.awt.im.InputMethodRequests var7 = var0.getInputMethodRequests(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + var8.nextFocus(); + var8.updateUI(); + var8.enableInputMethods(true); + var8.setSize((-1), 1); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + var19.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var0.add((java.awt.Component)var8, (java.lang.Object)"SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + boolean var25 = var0.isCursorSet(); + var0.transferFocusDownCycle(); + java.awt.Insets var27 = var0.getInsets(); + SpaceWar.SpacePanel var28 = new SpaceWar.SpacePanel(); + float var29 = var28.getAlignmentX(); + var28.setVisible(false); + java.awt.Dimension var32 = var28.getPreferredSize(); + boolean var33 = var28.getVerifyInputWhenFocusTarget(); + java.awt.Component var36 = var28.findComponentAt(10, 1); + boolean var37 = var28.requestDefaultFocus(); + var28.setVerifyInputWhenFocusTarget(true); + var28.transferFocusDownCycle(); + java.awt.Dimension var41 = var28.getSize(); + var0.setSize(var41); + java.awt.image.ColorModel var43 = var0.getColorModel(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var27); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var29 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var32); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var33 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var36); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var41); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var43); + + } + + public void test61() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test61"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var6 = var0.getMouseListeners(); + java.awt.Dimension var7 = var0.getPreferredSize(); + java.util.Locale var8 = var0.getLocale(); + var0.setFocusable(true); + var0.setSize(3, 10); + var0.invalidate(); + boolean var15 = var0.isValid(); + boolean var16 = var0.getVerifyInputWhenFocusTarget(); + var0.removeNotify(); + // The following exception was thrown during execution. + // This behavior will recorded for regression testing. + try { + var0.remove(2); + fail("Expected exception of type java.lang.ArrayIndexOutOfBoundsException"); + } catch (java.lang.ArrayIndexOutOfBoundsException e) { + // Expected exception. + } + + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == true); + + } + + public void test62() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test62"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + java.awt.im.InputMethodRequests var3 = var0.getInputMethodRequests(); + var0.setDoubleBuffered(true); + var0.show(false); + var0.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", (-1), 24); + boolean var12 = var0.requestFocusInWindow(); + boolean var13 = javax.swing.JComponent.isLightweightComponent((java.awt.Component)var0); + SpaceWar.SpacePanel var15 = new SpaceWar.SpacePanel(); + float var16 = var15.getAlignmentX(); + var15.setVisible(false); + boolean var19 = var15.isDoubleBuffered(); + var15.list(); + SpaceWar.SpacePanel var21 = new SpaceWar.SpacePanel(); + float var22 = var21.getAlignmentX(); + var21.setVisible(false); + boolean var25 = var21.isDoubleBuffered(); + java.awt.dnd.DropTarget var26 = var21.getDropTarget(); + var21.show(false); + java.awt.Rectangle var29 = var21.getVisibleRect(); + java.awt.Rectangle var30 = var15.getBounds(var29); + javax.swing.JToolTip var31 = var15.createToolTip(); + java.awt.Graphics var32 = var15.getGraphics(); + var15.setAutoscrolls(false); + boolean var35 = var15.requestFocusInWindow(); + SpaceWar.SpacePanel var36 = new SpaceWar.SpacePanel(); + float var37 = var36.getAlignmentX(); + var36.setVisible(false); + var36.nextFocus(); + var36.reshape((-1), 1, (-1), 10); + var36.disable(); + java.awt.LayoutManager var47 = var36.getLayout(); + java.awt.Container var48 = var36.getParent(); + boolean var49 = var36.isOptimizedDrawingEnabled(); + java.awt.Font var50 = var36.getFont(); + java.awt.FontMetrics var51 = var15.getFontMetrics(var50); + javax.swing.InputMap var52 = var15.getInputMap(); + // The following exception was thrown during execution. + // This behavior will recorded for regression testing. + try { + var0.setInputMap(3, var52); + fail("Expected exception of type java.lang.IllegalArgumentException"); + } catch (java.lang.IllegalArgumentException e) { + // Expected exception. + } + + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var22 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var29); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var30); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var31); + + // Regression assertion (captures the current behavior of the code) + assertNull(var32); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var35 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var47); + + // Regression assertion (captures the current behavior of the code) + assertNull(var48); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var49 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var50); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var51); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var52); + + } + + public void test63() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test63"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.setEnabled(false); + java.awt.Image var8 = var0.createImage(10, 100); + java.awt.Component.BaselineResizeBehavior var9 = var0.getBaselineResizeBehavior(); + boolean var10 = var0.isMinimumSizeSet(); + float var11 = var0.getAlignmentX(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var9); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == 0.5f); + + } + + public void test64() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test64"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var1 = new SpaceWar.SpacePanel(); + java.awt.Color var2 = var1.getBackground(); + SpaceWar.SpacePanel var3 = new SpaceWar.SpacePanel(); + float var4 = var3.getAlignmentX(); + var3.setVisible(false); + var3.nextFocus(); + var3.updateUI(); + var3.enableInputMethods(true); + var0.add((java.awt.Component)var1, (java.lang.Object)true); + boolean var13 = var1.areFocusTraversalKeysSet(0); + SpaceWar.SpacePanel var14 = new SpaceWar.SpacePanel(); + float var15 = var14.getAlignmentX(); + var14.setVisible(false); + SpaceWar.SpacePanel var18 = new SpaceWar.SpacePanel(); + java.awt.Color var19 = var18.getBackground(); + var14.setForeground(var19); + SpaceWar.SpacePanel var21 = new SpaceWar.SpacePanel(); + float var22 = var21.getAlignmentX(); + var21.setVisible(false); + boolean var25 = var21.isDoubleBuffered(); + java.awt.dnd.DropTarget var26 = var21.getDropTarget(); + var21.show(false); + java.awt.Rectangle var29 = var21.getVisibleRect(); + var14.repaint(var29); + java.awt.FocusTraversalPolicy var31 = var14.getFocusTraversalPolicy(); + SpaceWar.SpacePanel var32 = new SpaceWar.SpacePanel(); + float var33 = var32.getAlignmentX(); + var32.firePropertyChange("", (-1), 1); + boolean var38 = var32.isFocusOwner(); + SpaceWar.SpacePanel var40 = new SpaceWar.SpacePanel(); + float var41 = var40.getAlignmentX(); + var40.setVisible(false); + java.awt.Dimension var44 = var40.getPreferredSize(); + java.awt.Toolkit var45 = var40.getToolkit(); + SpaceWar.SpacePanel var46 = new SpaceWar.SpacePanel(); + var46.setName(""); + int var49 = var46.getX(); + SpaceWar.SpacePanel var50 = new SpaceWar.SpacePanel(); + float var51 = var50.getAlignmentX(); + var50.setVisible(false); + var50.nextFocus(); + SpaceWar.SpacePanel var55 = new SpaceWar.SpacePanel(); + float var56 = var55.getAlignmentX(); + var55.setVisible(false); + SpaceWar.SpacePanel var59 = new SpaceWar.SpacePanel(); + java.awt.Color var60 = var59.getBackground(); + var55.setForeground(var60); + var50.setBackground(var60); + var46.setBackground(var60); + var40.setForeground(var60); + var32.putClientProperty((java.lang.Object)(byte)100, (java.lang.Object)var60); + var14.setBackground(var60); + SpaceWar.SpacePanel var67 = new SpaceWar.SpacePanel(); + float var68 = var67.getAlignmentX(); + var67.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var73 = new SpaceWar.SpacePanel(); + float var74 = var73.getAlignmentX(); + var73.setVisible(false); + SpaceWar.SpacePanel var77 = new SpaceWar.SpacePanel(); + java.awt.Color var78 = var77.getBackground(); + var73.setForeground(var78); + var67.setBackground(var78); + java.awt.Point var81 = var67.location(); + java.awt.Point var82 = var14.getLocation(var81); + boolean var83 = var1.contains(var82); + java.lang.String var84 = var1.getUIClassID(); + java.awt.event.KeyListener[] var85 = var1.getKeyListeners(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var2); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var22 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var29); + + // Regression assertion (captures the current behavior of the code) + assertNull(var31); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var33 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var38 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var41 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var44); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var45); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var49 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var51 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var56 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var60); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var68 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var74 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var78); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var81); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var82); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var83 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var84 + "' != '" + "PanelUI"+ "'", var84.equals("PanelUI")); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var85); + + } + + public void test65() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test65"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + var0.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", 400.17452406437286d, 5.0d); + java.awt.Container var7 = var0.getFocusCycleRootAncestor(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNull(var7); + + } + + public void test66() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test66"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + var0.setRequestFocusEnabled(false); + var0.reshape(100, 0, 100, 0); + var0.requestFocus(); + var0.firePropertyChange("hi!", '4', ' '); + java.awt.Point var15 = var0.getLocation(); + java.awt.Dimension var16 = var0.size(); + java.awt.Image var19 = var0.createImage((-1), (-1)); + java.awt.event.ComponentListener[] var20 = var0.getComponentListeners(); + SpaceWar.SpacePanel var21 = new SpaceWar.SpacePanel(); + var21.setName(""); + java.awt.ComponentOrientation var24 = var21.getComponentOrientation(); + var21.firePropertyChange("PanelUI", 1.0f, 0.5f); + int var29 = var0.getComponentZOrder((java.awt.Component)var21); + SpaceWar.SpacePanel var30 = new SpaceWar.SpacePanel(); + float var31 = var30.getAlignmentX(); + var30.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var36 = var30.getUI(); + java.awt.im.InputMethodRequests var37 = var30.getInputMethodRequests(); + SpaceWar.SpacePanel var38 = new SpaceWar.SpacePanel(); + float var39 = var38.getAlignmentX(); + var38.setVisible(false); + var38.nextFocus(); + var38.updateUI(); + var38.enableInputMethods(true); + var38.setSize((-1), 1); + SpaceWar.SpacePanel var49 = new SpaceWar.SpacePanel(); + var49.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var30.add((java.awt.Component)var38, (java.lang.Object)"SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + SpaceWar.SpacePanel var55 = new SpaceWar.SpacePanel(); + float var56 = var55.getAlignmentX(); + var55.setVisible(false); + var55.setInheritsPopupMenu(false); + boolean var61 = var55.isDoubleBuffered(); + boolean var62 = var55.isMinimumSizeSet(); + SpaceWar.SpacePanel var63 = new SpaceWar.SpacePanel(); + float var64 = var63.getAlignmentX(); + var63.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var69 = new SpaceWar.SpacePanel(); + float var70 = var69.getAlignmentX(); + var69.setVisible(false); + java.awt.Dimension var73 = var69.getPreferredSize(); + var63.setMaximumSize(var73); + boolean var75 = var63.getVerifyInputWhenFocusTarget(); + javax.accessibility.AccessibleContext var76 = var63.getAccessibleContext(); + boolean var77 = var63.isDoubleBuffered(); + java.awt.Rectangle var78 = var63.getVisibleRect(); + var55.setBounds(var78); + java.awt.Rectangle var80 = var30.getBounds(var78); + var0.computeVisibleRect(var78); + java.awt.image.ColorModel var82 = var0.getColorModel(); + boolean var83 = var0.getInheritsPopupMenu(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var29 == (-1)); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var31 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var36); + + // Regression assertion (captures the current behavior of the code) + assertNull(var37); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var39 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var56 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var61 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var62 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var64 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var70 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var73); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var75 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var76); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var77 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var78); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var80); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var82); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var83 == false); + + } + + public void test67() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test67"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + java.awt.Dimension var4 = var0.getPreferredSize(); + java.awt.Toolkit var5 = var0.getToolkit(); + boolean var6 = var0.isFocusable(); + javax.swing.KeyStroke[] var7 = var0.getRegisteredKeyStrokes(); + java.awt.Component var10 = var0.getComponentAt(100, 100); + java.lang.Object var11 = var0.getTreeLock(); + var0.grabFocus(); + SpaceWar.SpacePanel var13 = new SpaceWar.SpacePanel(); + float var14 = var13.getAlignmentX(); + var13.setVisible(false); + java.awt.Dimension var17 = var13.getPreferredSize(); + boolean var18 = var13.getVerifyInputWhenFocusTarget(); + java.awt.Component var21 = var13.findComponentAt(10, 1); + boolean var22 = var13.isCursorSet(); + java.lang.Object var23 = var0.getClientProperty((java.lang.Object)var22); + SpaceWar.SpacePanel var24 = new SpaceWar.SpacePanel(); + java.awt.Color var25 = var24.getBackground(); + var24.repaint(); + java.awt.im.InputMethodRequests var27 = var24.getInputMethodRequests(); + int var28 = var24.countComponents(); + java.awt.event.ComponentListener[] var29 = var24.getComponentListeners(); + SpaceWar.SpacePanel var30 = new SpaceWar.SpacePanel(); + float var31 = var30.getAlignmentX(); + var30.removeNotify(); + SpaceWar.SpacePanel var33 = new SpaceWar.SpacePanel(); + float var34 = var33.getAlignmentX(); + var33.setVisible(false); + boolean var37 = var33.isDoubleBuffered(); + var33.list(); + float var39 = var33.getAlignmentY(); + java.awt.Insets var40 = var33.getInsets(); + java.awt.Insets var41 = var30.getInsets(var40); + java.awt.Insets var42 = var24.getInsets(var41); + java.awt.event.ComponentListener[] var43 = var24.getComponentListeners(); + java.lang.String var44 = var24.toString(); + var0.addKeyListener((java.awt.event.KeyListener)var24); + var0.hide(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var4); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var21); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var22 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var23); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var25); + + // Regression assertion (captures the current behavior of the code) + assertNull(var27); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var28 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var29); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var31 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var34 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var39 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var40); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var41); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var42); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var43); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var44 + "' != '" + "SpaceWar.SpacePanel[,0,0,0var44,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"+ "'", var44.equals("SpaceWar.SpacePanel[,0,0,0var44,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]")); + + } + + public void test68() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test68"); + + + SpaceWar.Bullet var3 = new SpaceWar.Bullet((-1.0d), 399, (-1)); + + } + + public void test69() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test69"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + var0.setRequestFocusEnabled(false); + var0.setIgnoreRepaint(false); + java.lang.String var7 = var0.toString(); + java.awt.Color var8 = var0.getBackground(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.setVisible(false); + java.awt.Dimension var13 = var9.getPreferredSize(); + java.awt.Toolkit var14 = var9.getToolkit(); + java.awt.Toolkit var15 = var9.getToolkit(); + SpaceWar.Player var16 = new SpaceWar.Player(); + var16.increasePower(25); + int var19 = var16.getScore(); + var16.setRigth(true); + var16.loseLife(); + var0.putClientProperty((java.lang.Object)var9, (java.lang.Object)var16); + int var24 = var16.getPowerLevel(); + int var25 = var16.getScore(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var7 + "' != '" + "SpaceWar.SpacePanel[,0,0,0var7,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"+ "'", var7.equals("SpaceWar.SpacePanel[,0,0,0var7,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]")); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var24 == 1); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == 0); + + } + + public void test70() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test70"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + float var7 = var6.getAlignmentX(); + var6.setVisible(false); + java.awt.Dimension var10 = var6.getPreferredSize(); + var0.setMaximumSize(var10); + boolean var12 = var0.getVerifyInputWhenFocusTarget(); + boolean var13 = var0.isFontSet(); + boolean var14 = var0.getIgnoreRepaint(); + java.awt.Component var17 = var0.locate(1, 25); + boolean var18 = var0.isLightweight(); + var0.setLocation(399, 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == false); + + } + + public void test71() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test71"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + SpaceWar.SpacePanel var4 = new SpaceWar.SpacePanel(); + java.awt.Color var5 = var4.getBackground(); + var0.setForeground(var5); + SpaceWar.SpacePanel var7 = new SpaceWar.SpacePanel(); + float var8 = var7.getAlignmentX(); + var7.setVisible(false); + boolean var11 = var7.isDoubleBuffered(); + java.awt.dnd.DropTarget var12 = var7.getDropTarget(); + var7.show(false); + java.awt.Rectangle var15 = var7.getVisibleRect(); + var0.repaint(var15); + java.awt.FocusTraversalPolicy var17 = var0.getFocusTraversalPolicy(); + var0.resetKeyboardActions(); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + float var20 = var19.getAlignmentX(); + var19.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var25 = var19.getMouseListeners(); + int var26 = var19.getDebugGraphicsOptions(); + SpaceWar.SpacePanel var27 = new SpaceWar.SpacePanel(); + float var28 = var27.getAlignmentX(); + var27.setVisible(false); + boolean var31 = var27.isDoubleBuffered(); + java.awt.dnd.DropTarget var32 = var27.getDropTarget(); + var27.show(false); + java.awt.Rectangle var35 = var27.getVisibleRect(); + var19.paintImmediately(var35); + var0.setBounds(var35); + boolean var38 = var0.getVerifyInputWhenFocusTarget(); + var0.setFocusTraversalKeysEnabled(false); + var0.enable(true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var25); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var28 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var31 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var32); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var35); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var38 == true); + + } + + public void test72() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test72"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.setInheritsPopupMenu(false); + var0.setFocusTraversalPolicyProvider(true); + boolean var10 = var0.inside(25, 3); + SpaceWar.SpacePanel var11 = new SpaceWar.SpacePanel(); + float var12 = var11.getAlignmentX(); + var11.setVisible(false); + boolean var15 = var11.isDoubleBuffered(); + java.awt.dnd.DropTarget var16 = var11.getDropTarget(); + var11.show(false); + boolean var19 = var11.isPaintingForPrint(); + SpaceWar.SpacePanel var20 = new SpaceWar.SpacePanel(); + float var21 = var20.getAlignmentX(); + SpaceWar.SpacePanel var22 = new SpaceWar.SpacePanel(); + float var23 = var22.getAlignmentX(); + var22.setVisible(false); + java.awt.Dimension var26 = var22.getPreferredSize(); + boolean var27 = var22.getVerifyInputWhenFocusTarget(); + java.awt.Component var30 = var22.findComponentAt(10, 1); + var20.addKeyListener((java.awt.event.KeyListener)var22); + java.awt.Dimension var32 = var22.getMinimumSize(); + var11.setMinimumSize(var32); + var0.setPreferredSize(var32); + boolean var36 = var0.requestFocus(true); + var0.reshape((-1), 10, 24, 0); + java.awt.event.MouseWheelListener[] var42 = var0.getMouseWheelListeners(); + java.awt.FocusTraversalPolicy var43 = var0.getFocusTraversalPolicy(); + java.beans.PropertyChangeListener[] var44 = var0.getPropertyChangeListeners(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var30); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var32); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var36 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var42); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var43); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var44); + + } + + public void test73() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test73"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + javax.swing.event.AncestorListener[] var6 = var0.getAncestorListeners(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + } + + public void test74() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test74"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + boolean var6 = var0.isFocusCycleRoot(); + var0.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", 100, 0); + SpaceWar.SpacePanel var11 = new SpaceWar.SpacePanel(); + float var12 = var11.getAlignmentX(); + var11.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var17 = var11.getUI(); + var0.add((java.awt.Component)var11, (java.lang.Object)(short)0); + java.awt.event.InputMethodListener[] var20 = var11.getInputMethodListeners(); + boolean var23 = var11.contains(2, 3); + var11.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", (short)1, (short)1); + SpaceWar.SpacePanel var28 = new SpaceWar.SpacePanel(); + float var29 = var28.getAlignmentX(); + var28.setVisible(false); + var28.nextFocus(); + var28.reshape((-1), 1, (-1), 10); + var28.disable(); + boolean var39 = var28.isFocusable(); + SpaceWar.SpacePanel var40 = new SpaceWar.SpacePanel(); + float var41 = var40.getAlignmentX(); + var40.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var46 = var40.getUI(); + java.awt.im.InputMethodRequests var47 = var40.getInputMethodRequests(); + SpaceWar.SpacePanel var48 = new SpaceWar.SpacePanel(); + float var49 = var48.getAlignmentX(); + var48.setVisible(false); + var48.nextFocus(); + var48.updateUI(); + var48.enableInputMethods(true); + var48.setSize((-1), 1); + SpaceWar.SpacePanel var59 = new SpaceWar.SpacePanel(); + var59.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var40.add((java.awt.Component)var48, (java.lang.Object)"SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + java.awt.event.KeyListener[] var65 = var40.getKeyListeners(); + java.awt.FocusTraversalPolicy var66 = var40.getFocusTraversalPolicy(); + SpaceWar.SpacePanel var67 = new SpaceWar.SpacePanel(); + var67.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + java.awt.Toolkit var72 = var67.getToolkit(); + var28.add((java.awt.Component)var40, (java.lang.Object)var67); + var28.layout(); + boolean var75 = var28.isVisible(); + var28.firePropertyChange("PanelUI", (byte)100, (byte)10); + javax.swing.ActionMap var80 = var28.getActionMap(); + var11.setActionMap(var80); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var29 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var39 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var41 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var46); + + // Regression assertion (captures the current behavior of the code) + assertNull(var47); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var49 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var65); + + // Regression assertion (captures the current behavior of the code) + assertNull(var66); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var72); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var75 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var80); + + } + + public void test75() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test75"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var6 = var0.getMouseListeners(); + java.awt.Dimension var7 = var0.getPreferredSize(); + java.util.Locale var8 = var0.getLocale(); + var0.setFocusable(true); + var0.transferFocusUpCycle(); + var0.setFocusable(false); + int var14 = var0.getDebugGraphicsOptions(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == 0); + + } + + public void test76() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test76"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.updateUI(); + var0.enableInputMethods(true); + var0.resetKeyboardActions(); + java.awt.event.HierarchyListener[] var9 = var0.getHierarchyListeners(); + boolean var10 = var0.getAutoscrolls(); + var0.firePropertyChange("hi!", 0.5f, 100.0f); + var0.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=java.awt.Dimension[width=800,height=600],minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", 499, 500); + var0.nextFocus(); + var0.layout(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var9); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == false); + + } + + public void test77() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test77"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + var0.setRequestFocusEnabled(false); + var0.setIgnoreRepaint(false); + java.lang.String var7 = var0.toString(); + boolean var9 = var0.requestFocus(false); + var0.resetKeyboardActions(); + java.awt.Image var13 = var0.createImage(3, 0); + boolean var14 = var0.isFontSet(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var7 + "' != '" + "SpaceWar.SpacePanel[,0,0,0var7,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"+ "'", var7.equals("SpaceWar.SpacePanel[,0,0,0var7,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]")); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == true); + + } + + public void test78() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test78"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + var0.setRequestFocusEnabled(false); + var0.reshape(100, 0, 100, 0); + var0.firePropertyChange("PanelUI", 10, 10); + boolean var14 = var0.requestFocusInWindow(); + var0.revalidate(); + // The following exception was thrown during execution. + // This behavior will recorded for regression testing. + try { + var0.remove(1); + fail("Expected exception of type java.lang.ArrayIndexOutOfBoundsException"); + } catch (java.lang.ArrayIndexOutOfBoundsException e) { + // Expected exception. + } + + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == false); + + } + + public void test79() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test79"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + java.awt.Point var6 = var0.getMousePosition(); + var0.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", (short)100, (short)(-1)); + var0.list(); + int var12 = var0.getHeight(); + java.awt.Container var13 = var0.getFocusCycleRootAncestor(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var13); + + } + + public void test80() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test80"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.repaint(1L); + SpaceWar.SpacePanel var7 = new SpaceWar.SpacePanel(); + float var8 = var7.getAlignmentX(); + var7.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var13 = new SpaceWar.SpacePanel(); + float var14 = var13.getAlignmentX(); + var13.setVisible(false); + java.awt.Dimension var17 = var13.getPreferredSize(); + var7.setMaximumSize(var17); + var0.setPreferredSize(var17); + javax.swing.plaf.PanelUI var20 = var0.getUI(); + java.awt.Dimension var21 = var0.getMinimumSize(); + var0.hide(); + boolean var23 = var0.isPaintingTile(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var21); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == false); + + } + + public void test81() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test81"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + float var7 = var6.getAlignmentX(); + var6.setVisible(false); + java.awt.Dimension var10 = var6.getPreferredSize(); + var0.setMaximumSize(var10); + boolean var12 = var0.getVerifyInputWhenFocusTarget(); + var0.transferFocusUpCycle(); + java.awt.Point var14 = var0.location(); + SpaceWar.SpacePanel var15 = new SpaceWar.SpacePanel(); + java.awt.Color var16 = var15.getBackground(); + var15.repaint(); + java.awt.im.InputMethodRequests var18 = var15.getInputMethodRequests(); + var15.setDoubleBuffered(true); + SpaceWar.SpacePanel var21 = new SpaceWar.SpacePanel(); + float var22 = var21.getAlignmentX(); + boolean var23 = var21.hasFocus(); + java.awt.Insets var24 = var21.getInsets(); + java.awt.Insets var25 = var15.getInsets(var24); + SpaceWar.SpacePanel var26 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var27 = new SpaceWar.SpacePanel(); + java.awt.Color var28 = var27.getBackground(); + SpaceWar.SpacePanel var29 = new SpaceWar.SpacePanel(); + float var30 = var29.getAlignmentX(); + var29.setVisible(false); + var29.nextFocus(); + var29.updateUI(); + var29.enableInputMethods(true); + var26.add((java.awt.Component)var27, (java.lang.Object)true); + java.awt.Image var40 = var27.createImage(1, (-1)); + SpaceWar.SpacePanel var41 = new SpaceWar.SpacePanel(); + float var42 = var41.getAlignmentX(); + var41.setVisible(false); + var41.nextFocus(); + var41.updateUI(); + var41.enableInputMethods(true); + SpaceWar.SpacePanel var49 = new SpaceWar.SpacePanel(); + float var50 = var49.getAlignmentX(); + boolean var51 = var49.hasFocus(); + java.awt.Insets var52 = var49.getInsets(); + java.awt.Insets var53 = var41.getInsets(var52); + java.awt.Insets var54 = var27.getInsets(var52); + java.awt.Insets var55 = var15.getInsets(var52); + java.awt.Component var56 = var0.add((java.awt.Component)var15); + SpaceWar.SpacePanel var57 = new SpaceWar.SpacePanel(); + float var58 = var57.getAlignmentX(); + var57.setVisible(false); + var57.nextFocus(); + SpaceWar.SpacePanel var62 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var63 = new SpaceWar.SpacePanel(); + java.awt.Color var64 = var63.getBackground(); + SpaceWar.SpacePanel var65 = new SpaceWar.SpacePanel(); + float var66 = var65.getAlignmentX(); + var65.setVisible(false); + var65.nextFocus(); + var65.updateUI(); + var65.enableInputMethods(true); + var62.add((java.awt.Component)var63, (java.lang.Object)true); + java.awt.Dimension var74 = var63.getPreferredSize(); + var57.setMaximumSize(var74); + int var76 = var0.getComponentZOrder((java.awt.Component)var57); + int var77 = var57.getComponentCount(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var22 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var25); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var28); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var30 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNull(var40); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var42 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var50 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var51 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var52); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var53); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var54); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var55); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var56); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var58 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var64); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var66 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var74); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var76 == (-1)); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var77 == 0); + + } + + public void test82() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test82"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var6 = var0.getUI(); + java.awt.im.InputMethodRequests var7 = var0.getInputMethodRequests(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + var8.nextFocus(); + var8.updateUI(); + var8.enableInputMethods(true); + var8.setSize((-1), 1); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + var19.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var0.add((java.awt.Component)var8, (java.lang.Object)"SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + java.awt.ComponentOrientation var25 = var8.getComponentOrientation(); + boolean var26 = var8.isMaximumSizeSet(); + SpaceWar.SpacePanel var27 = new SpaceWar.SpacePanel(); + float var28 = var27.getAlignmentX(); + var27.setVisible(false); + boolean var31 = var27.isDoubleBuffered(); + java.awt.dnd.DropTarget var32 = var27.getDropTarget(); + var27.show(false); + boolean var35 = var27.isPaintingForPrint(); + SpaceWar.SpacePanel var36 = new SpaceWar.SpacePanel(); + float var37 = var36.getAlignmentX(); + var36.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var42 = var36.getMouseListeners(); + int var43 = var36.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var44 = var36.getInputMethodRequests(); + var27.addKeyListener((java.awt.event.KeyListener)var36); + SpaceWar.SpacePanel var46 = new SpaceWar.SpacePanel(); + float var47 = var46.getAlignmentX(); + var46.setVisible(false); + boolean var50 = var46.isDoubleBuffered(); + var46.list(); + float var52 = var46.getAlignmentY(); + boolean var53 = var36.isFocusCycleRoot((java.awt.Container)var46); + boolean var54 = var46.isEnabled(); + java.awt.Dimension var55 = var46.getMaximumSize(); + var8.setMinimumSize(var55); + var8.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", (byte)1, (byte)0); + boolean var61 = var8.isMaximumSizeSet(); + var8.setFocusable(false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var25); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var28 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var31 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var32); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var35 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var42); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var43 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var44); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var47 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var50 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var52 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var53 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var54 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var55); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var61 == false); + + } + + public void test83() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test83"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.setInheritsPopupMenu(false); + var0.setFocusTraversalPolicyProvider(true); + boolean var10 = var0.inside(25, 3); + SpaceWar.SpacePanel var11 = new SpaceWar.SpacePanel(); + float var12 = var11.getAlignmentX(); + var11.setVisible(false); + boolean var15 = var11.isDoubleBuffered(); + java.awt.dnd.DropTarget var16 = var11.getDropTarget(); + var11.show(false); + boolean var19 = var11.isPaintingForPrint(); + SpaceWar.SpacePanel var20 = new SpaceWar.SpacePanel(); + float var21 = var20.getAlignmentX(); + SpaceWar.SpacePanel var22 = new SpaceWar.SpacePanel(); + float var23 = var22.getAlignmentX(); + var22.setVisible(false); + java.awt.Dimension var26 = var22.getPreferredSize(); + boolean var27 = var22.getVerifyInputWhenFocusTarget(); + java.awt.Component var30 = var22.findComponentAt(10, 1); + var20.addKeyListener((java.awt.event.KeyListener)var22); + java.awt.Dimension var32 = var22.getMinimumSize(); + var11.setMinimumSize(var32); + var0.setPreferredSize(var32); + boolean var36 = var0.requestFocus(true); + java.awt.Dimension var37 = var0.getMinimumSize(); + // The following exception was thrown during execution. + // This behavior will recorded for regression testing. + try { + boolean var39 = var0.areFocusTraversalKeysSet(99); + fail("Expected exception of type java.lang.IllegalArgumentException"); + } catch (java.lang.IllegalArgumentException e) { + // Expected exception. + } + + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var30); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var32); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var36 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var37); + + } + + public void test84() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test84"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + boolean var2 = var0.hasFocus(); + SpaceWar.SpacePanel var3 = new SpaceWar.SpacePanel(); + float var4 = var3.getAlignmentX(); + var3.setVisible(false); + boolean var7 = var3.isDoubleBuffered(); + java.awt.dnd.DropTarget var8 = var3.getDropTarget(); + boolean var9 = var3.isFocusCycleRoot(); + var3.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", 100, 0); + SpaceWar.SpacePanel var14 = new SpaceWar.SpacePanel(); + float var15 = var14.getAlignmentX(); + var14.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var20 = var14.getUI(); + var3.add((java.awt.Component)var14, (java.lang.Object)(short)0); + java.awt.Insets var23 = var14.getInsets(); + java.awt.Insets var24 = var0.getInsets(var23); + SpaceWar.SpacePanel var25 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var26 = new SpaceWar.SpacePanel(); + java.awt.Color var27 = var26.getBackground(); + SpaceWar.SpacePanel var28 = new SpaceWar.SpacePanel(); + float var29 = var28.getAlignmentX(); + var28.setVisible(false); + var28.nextFocus(); + var28.updateUI(); + var28.enableInputMethods(true); + var25.add((java.awt.Component)var26, (java.lang.Object)true); + boolean var37 = var25.isMinimumSizeSet(); + java.awt.event.HierarchyListener[] var38 = var25.getHierarchyListeners(); + var25.repaint(0L); + SpaceWar.SpacePanel var41 = new SpaceWar.SpacePanel(); + float var42 = var41.getAlignmentX(); + var41.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var47 = var41.getUI(); + java.awt.im.InputMethodRequests var48 = var41.getInputMethodRequests(); + SpaceWar.SpacePanel var49 = new SpaceWar.SpacePanel(); + float var50 = var49.getAlignmentX(); + var49.setVisible(false); + var49.nextFocus(); + var49.updateUI(); + var49.enableInputMethods(true); + var49.setSize((-1), 1); + SpaceWar.SpacePanel var60 = new SpaceWar.SpacePanel(); + var60.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var41.add((java.awt.Component)var49, (java.lang.Object)"SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + java.awt.ComponentOrientation var66 = var49.getComponentOrientation(); + java.beans.VetoableChangeListener[] var67 = var49.getVetoableChangeListeners(); + int var68 = var49.getHeight(); + javax.swing.ActionMap var69 = var49.getActionMap(); + var25.setActionMap(var69); + var0.setActionMap(var69); + var0.hide(); + var0.resize(10, 10); + var0.setAlignmentY(1.0f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var2 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var23); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var27); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var29 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var38); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var42 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var47); + + // Regression assertion (captures the current behavior of the code) + assertNull(var48); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var50 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var66); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var67); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var68 == 1); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var69); + + } + + public void test85() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test85"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + var0.setRequestFocusEnabled(false); + var0.reshape(100, 0, 100, 0); + var0.requestFocus(); + var0.firePropertyChange("hi!", '4', ' '); + java.awt.Point var15 = var0.getLocation(); + java.awt.Dimension var16 = var0.size(); + java.awt.Image var19 = var0.createImage((-1), (-1)); + java.awt.event.ComponentListener[] var20 = var0.getComponentListeners(); + SpaceWar.SpacePanel var21 = new SpaceWar.SpacePanel(); + var21.setName(""); + java.awt.ComponentOrientation var24 = var21.getComponentOrientation(); + var21.firePropertyChange("PanelUI", 1.0f, 0.5f); + int var29 = var0.getComponentZOrder((java.awt.Component)var21); + boolean var31 = var0.areFocusTraversalKeysSet(0); + var0.removeAll(); + int var33 = var0.getX(); + var0.transferFocusDownCycle(); + java.awt.Component var37 = var0.locate(3, 100); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var29 == (-1)); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var31 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var33 == 100); + + // Regression assertion (captures the current behavior of the code) + assertNull(var37); + + } + + public void test86() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test86"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + boolean var2 = var0.hasFocus(); + boolean var3 = var0.isPreferredSizeSet(); + SpaceWar.SpacePanel var4 = new SpaceWar.SpacePanel(); + java.awt.Color var5 = var4.getBackground(); + var4.repaint(); + var4.setRequestFocusEnabled(false); + int var9 = var0.getComponentZOrder((java.awt.Component)var4); + int var10 = var0.getDebugGraphicsOptions(); + var0.enableInputMethods(true); + SpaceWar.SpacePanel var13 = new SpaceWar.SpacePanel(); + float var14 = var13.getAlignmentX(); + var13.setVisible(false); + var13.nextFocus(); + var13.reshape((-1), 1, (-1), 10); + SpaceWar.SpacePanel var23 = new SpaceWar.SpacePanel(); + java.awt.Color var24 = var23.getBackground(); + var23.repaint(); + var23.setRequestFocusEnabled(false); + var23.reshape(100, 0, 100, 0); + java.awt.Component var33 = var13.add((java.awt.Component)var23); + SpaceWar.SpacePanel var34 = new SpaceWar.SpacePanel(); + var34.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + javax.swing.plaf.PanelUI var39 = var34.getUI(); + SpaceWar.SpacePanel var40 = new SpaceWar.SpacePanel(); + float var41 = var40.getAlignmentX(); + var40.setVisible(false); + var40.nextFocus(); + var40.repaint(1L); + SpaceWar.SpacePanel var47 = new SpaceWar.SpacePanel(); + float var48 = var47.getAlignmentX(); + var47.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var53 = new SpaceWar.SpacePanel(); + float var54 = var53.getAlignmentX(); + var53.setVisible(false); + java.awt.Dimension var57 = var53.getPreferredSize(); + var47.setMaximumSize(var57); + var40.setPreferredSize(var57); + var34.setMaximumSize(var57); + java.awt.Dimension var61 = var23.getSize(var57); + var0.setMinimumSize(var61); + SpaceWar.SpacePanel var63 = new SpaceWar.SpacePanel(); + float var64 = var63.getAlignmentX(); + var63.setVisible(false); + boolean var67 = var63.isDoubleBuffered(); + var63.list(); + SpaceWar.SpacePanel var69 = new SpaceWar.SpacePanel(); + float var70 = var69.getAlignmentX(); + var69.setVisible(false); + boolean var73 = var69.isDoubleBuffered(); + java.awt.dnd.DropTarget var74 = var69.getDropTarget(); + var69.show(false); + java.awt.Rectangle var77 = var69.getVisibleRect(); + java.awt.Rectangle var78 = var63.getBounds(var77); + javax.swing.JToolTip var79 = var63.createToolTip(); + java.awt.Graphics var80 = var63.getGraphics(); + java.beans.VetoableChangeListener[] var81 = var63.getVetoableChangeListeners(); + var0.addKeyListener((java.awt.event.KeyListener)var63); + java.awt.event.ContainerListener[] var83 = var0.getContainerListeners(); + var0.enableInputMethods(true); + boolean var86 = var0.isValidateRoot(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var2 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == (-1)); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var33); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var39); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var41 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var48 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var54 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var57); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var61); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var64 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var67 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var70 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var73 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var74); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var77); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var78); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var79); + + // Regression assertion (captures the current behavior of the code) + assertNull(var80); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var81); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var83); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var86 == false); + + } + + public void test87() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test87"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.reshape((-1), 1, (-1), 10); + var0.disable(); + boolean var11 = var0.isFocusable(); + java.awt.Dimension var12 = var0.getSize(); + SpaceWar.SpacePanel var13 = new SpaceWar.SpacePanel(); + float var14 = var13.getAlignmentX(); + var13.setVisible(false); + var13.nextFocus(); + var13.updateUI(); + java.util.Locale var19 = var13.getLocale(); + var0.setLocale(var19); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var19); + + } + + public void test88() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test88"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + var0.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + javax.swing.plaf.PanelUI var5 = var0.getUI(); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + float var7 = var6.getAlignmentX(); + var6.setVisible(false); + var6.nextFocus(); + var6.repaint(1L); + SpaceWar.SpacePanel var13 = new SpaceWar.SpacePanel(); + float var14 = var13.getAlignmentX(); + var13.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + float var20 = var19.getAlignmentX(); + var19.setVisible(false); + java.awt.Dimension var23 = var19.getPreferredSize(); + var13.setMaximumSize(var23); + var6.setPreferredSize(var23); + var0.setMaximumSize(var23); + var0.setAutoscrolls(false); + java.awt.event.MouseListener[] var29 = var0.getMouseListeners(); + var0.setToolTipText("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=8,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var23); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var29); + + } + + public void test89() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test89"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + java.awt.event.MouseMotionListener[] var6 = var0.getMouseMotionListeners(); + java.awt.event.ComponentListener[] var7 = var0.getComponentListeners(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + var8.nextFocus(); + var8.repaint(1L); + SpaceWar.SpacePanel var15 = new SpaceWar.SpacePanel(); + float var16 = var15.getAlignmentX(); + var15.setVisible(false); + boolean var19 = var15.isDoubleBuffered(); + var15.list(); + SpaceWar.SpacePanel var21 = new SpaceWar.SpacePanel(); + float var22 = var21.getAlignmentX(); + var21.setVisible(false); + boolean var25 = var21.isDoubleBuffered(); + java.awt.dnd.DropTarget var26 = var21.getDropTarget(); + var21.show(false); + java.awt.Rectangle var29 = var21.getVisibleRect(); + java.awt.Rectangle var30 = var15.getBounds(var29); + var8.setBounds(var30); + var0.paintImmediately(var30); + var0.setBounds(3, 499, 3, 0); + float var38 = var0.getAlignmentY(); + var0.resize(99, 25); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var22 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var29); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var30); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var38 == 0.5f); + + } + + public void test90() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test90"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + java.awt.im.InputMethodRequests var3 = var0.getInputMethodRequests(); + int var4 = var0.countComponents(); + java.awt.event.ComponentListener[] var5 = var0.getComponentListeners(); + var0.transferFocusBackward(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + boolean var12 = var8.isDoubleBuffered(); + var8.enable(false); + SpaceWar.SpacePanel var15 = new SpaceWar.SpacePanel(); + float var16 = var15.getAlignmentX(); + boolean var17 = var15.hasFocus(); + java.awt.Insets var18 = var15.getInsets(); + java.awt.Rectangle var19 = var15.bounds(); + var8.repaint(var19); + java.awt.Component var21 = var0.add("", (java.awt.Component)var8); + java.awt.Point var22 = var21.getLocation(); + java.util.Locale var23 = var21.getLocale(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var21); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var23); + + } + + public void test91() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test91"); + + + SpaceWar.Player var0 = new SpaceWar.Player(); + boolean var1 = var0.isRecovering(); + int var2 = var0.getRequiredPower(); + int var3 = var0.getY(); + int var4 = var0.getX(); + var0.setLeft(false); + var0.setLeft(false); + var0.setLeft(false); + var0.setLeft(false); + var0.setLife(10); + int var15 = var0.getX(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var2 == 1); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == 500); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 400); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == 400); + + } + + public void test92() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test92"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + var0.show(false); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + SpaceWar.SpacePanel var12 = new SpaceWar.SpacePanel(); + java.awt.Color var13 = var12.getBackground(); + var8.setForeground(var13); + SpaceWar.SpacePanel var15 = new SpaceWar.SpacePanel(); + float var16 = var15.getAlignmentX(); + var15.setVisible(false); + boolean var19 = var15.isDoubleBuffered(); + java.awt.dnd.DropTarget var20 = var15.getDropTarget(); + var15.show(false); + java.awt.Rectangle var23 = var15.getVisibleRect(); + var8.repaint(var23); + java.awt.FocusTraversalPolicy var25 = var8.getFocusTraversalPolicy(); + java.awt.im.InputMethodRequests var26 = var8.getInputMethodRequests(); + var8.layout(); + SpaceWar.SpacePanel var28 = new SpaceWar.SpacePanel(); + float var29 = var28.getAlignmentX(); + var28.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var34 = new SpaceWar.SpacePanel(); + float var35 = var34.getAlignmentX(); + var34.setVisible(false); + SpaceWar.SpacePanel var38 = new SpaceWar.SpacePanel(); + java.awt.Color var39 = var38.getBackground(); + var34.setForeground(var39); + var28.setBackground(var39); + var8.setForeground(var39); + int var43 = var8.getWidth(); + javax.swing.plaf.PanelUI var44 = var8.getUI(); + var0.setUI(var44); + var0.setName("SpaceWar.SpacePanel[,0,0,0x0,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + SpaceWar.SpacePanel var48 = new SpaceWar.SpacePanel(); + float var49 = var48.getAlignmentX(); + var48.setVisible(false); + boolean var52 = var48.isDoubleBuffered(); + var48.list(); + SpaceWar.SpacePanel var54 = new SpaceWar.SpacePanel(); + float var55 = var54.getAlignmentX(); + var54.setVisible(false); + boolean var58 = var54.isDoubleBuffered(); + java.awt.dnd.DropTarget var59 = var54.getDropTarget(); + var54.show(false); + java.awt.Rectangle var62 = var54.getVisibleRect(); + java.awt.Rectangle var63 = var48.getBounds(var62); + javax.swing.JToolTip var64 = var48.createToolTip(); + var48.firePropertyChange("", false, false); + var48.validate(); + SpaceWar.SpacePanel var70 = new SpaceWar.SpacePanel(); + float var71 = var70.getAlignmentX(); + var70.setVisible(false); + boolean var74 = var70.isDoubleBuffered(); + java.awt.dnd.DropTarget var75 = var70.getDropTarget(); + var70.show(false); + boolean var78 = var70.isPaintingForPrint(); + SpaceWar.SpacePanel var79 = new SpaceWar.SpacePanel(); + float var80 = var79.getAlignmentX(); + var79.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var85 = var79.getMouseListeners(); + int var86 = var79.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var87 = var79.getInputMethodRequests(); + var70.addKeyListener((java.awt.event.KeyListener)var79); + var79.repaint(); + java.awt.Point var90 = var79.location(); + java.awt.Component var91 = var48.getComponentAt(var90); + boolean var92 = var0.contains(var90); + boolean var93 = var0.requestFocusInWindow(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var23); + + // Regression assertion (captures the current behavior of the code) + assertNull(var25); + + // Regression assertion (captures the current behavior of the code) + assertNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var29 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var35 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var39); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var43 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var44); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var49 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var52 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var55 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var58 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var59); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var62); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var63); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var64); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var71 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var74 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var75); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var78 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var80 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var85); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var86 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var87); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var90); + + // Regression assertion (captures the current behavior of the code) + assertNull(var91); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var92 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var93 == false); + + } + + public void test93() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test93"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + var0.setRequestFocusEnabled(false); + var0.reshape(100, 0, 100, 0); + var0.requestFocus(); + java.awt.Rectangle var11 = var0.getVisibleRect(); + java.awt.Rectangle var12 = var0.getBounds(); + java.awt.im.InputMethodRequests var13 = var0.getInputMethodRequests(); + boolean var14 = var0.requestFocusInWindow(); + java.awt.Rectangle var15 = var0.bounds(); + var0.setAutoscrolls(true); + var0.invalidate(); + var0.removeNotify(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + } + + public void test94() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test94"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + var0.show(false); + boolean var8 = var0.isPaintingForPrint(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var15 = var9.getMouseListeners(); + int var16 = var9.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var17 = var9.getInputMethodRequests(); + var0.addKeyListener((java.awt.event.KeyListener)var9); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + float var20 = var19.getAlignmentX(); + var19.setVisible(false); + boolean var23 = var19.isDoubleBuffered(); + var19.list(); + float var25 = var19.getAlignmentY(); + boolean var26 = var9.isFocusCycleRoot((java.awt.Container)var19); + SpaceWar.SpacePanel var28 = new SpaceWar.SpacePanel(); + float var29 = var28.getAlignmentX(); + var28.setVisible(false); + var28.nextFocus(); + var28.updateUI(); + java.awt.Component var34 = var9.add("", (java.awt.Component)var28); + var9.firePropertyChange("hi!", 'a', '4'); + boolean var39 = var9.getAutoscrolls(); + var9.setEnabled(false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var29 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var34); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var39 == false); + + } + + public void test95() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test95"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var6 = var0.getMouseListeners(); + java.awt.Dimension var7 = var0.getPreferredSize(); + java.util.Locale var8 = var0.getLocale(); + var0.setFocusable(true); + var0.paintImmediately((-1), 10, 100, 25); + boolean var16 = var0.isOpaque(); + javax.swing.border.Border var17 = var0.getBorder(); + java.awt.Point var19 = var0.getMousePosition(false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertNull(var19); + + } + + public void test96() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test96"); + + + SpaceWar.Player var0 = new SpaceWar.Player(); + boolean var1 = var0.isRecovering(); + var0.setRigth(false); + int var4 = var0.getPower(); + var0.loseLife(); + var0.setScore(100); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0); + + } + + public void test97() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test97"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + var0.show(false); + boolean var8 = var0.isPaintingForPrint(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var15 = var9.getMouseListeners(); + int var16 = var9.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var17 = var9.getInputMethodRequests(); + var0.addKeyListener((java.awt.event.KeyListener)var9); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + float var20 = var19.getAlignmentX(); + var19.setVisible(false); + boolean var23 = var19.isDoubleBuffered(); + var19.list(); + float var25 = var19.getAlignmentY(); + boolean var26 = var9.isFocusCycleRoot((java.awt.Container)var19); + javax.swing.JPopupMenu var27 = var19.getComponentPopupMenu(); + var19.move((-1), 100); + var19.validate(); + java.awt.Toolkit var32 = var19.getToolkit(); + var19.disable(); + java.awt.Rectangle var34 = var19.getBounds(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var27); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var32); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var34); + + } + + public void test98() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test98"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + java.awt.Dimension var4 = var0.getPreferredSize(); + java.awt.Toolkit var5 = var0.getToolkit(); + boolean var6 = var0.isFocusable(); + javax.swing.KeyStroke[] var7 = var0.getRegisteredKeyStrokes(); + var0.setFocusCycleRoot(false); + SpaceWar.SpacePanel var10 = new SpaceWar.SpacePanel(); + java.awt.Color var11 = var10.getBackground(); + var10.repaint(); + java.awt.im.InputMethodRequests var13 = var10.getInputMethodRequests(); + var10.setDoubleBuffered(true); + var10.show(false); + var10.setAlignmentY(100.0f); + SpaceWar.SpacePanel var20 = new SpaceWar.SpacePanel(); + float var21 = var20.getAlignmentX(); + var20.setVisible(false); + SpaceWar.SpacePanel var24 = new SpaceWar.SpacePanel(); + java.awt.Color var25 = var24.getBackground(); + var20.setForeground(var25); + SpaceWar.SpacePanel var27 = new SpaceWar.SpacePanel(); + float var28 = var27.getAlignmentX(); + var27.setVisible(false); + boolean var31 = var27.isDoubleBuffered(); + java.awt.dnd.DropTarget var32 = var27.getDropTarget(); + var27.show(false); + java.awt.Rectangle var35 = var27.getVisibleRect(); + var20.repaint(var35); + java.awt.FocusTraversalPolicy var37 = var20.getFocusTraversalPolicy(); + java.awt.im.InputMethodRequests var38 = var20.getInputMethodRequests(); + var20.layout(); + boolean var40 = var20.isFocusTraversalPolicyProvider(); + java.awt.Insets var41 = var20.insets(); + java.awt.Dimension var42 = var20.getMinimumSize(); + java.awt.Dimension var43 = var10.getSize(var42); + boolean var44 = var0.isAncestorOf((java.awt.Component)var10); + java.lang.String var45 = var10.getUIClassID(); + var10.show(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var4); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var25); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var28 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var31 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var32); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var35); + + // Regression assertion (captures the current behavior of the code) + assertNull(var37); + + // Regression assertion (captures the current behavior of the code) + assertNull(var38); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var40 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var41); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var42); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var43); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var44 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var45 + "' != '" + "PanelUI"+ "'", var45.equals("PanelUI")); + + } + + public void test99() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test99"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + var0.setRequestFocusEnabled(false); + var0.removeAll(); + boolean var6 = var0.isForegroundSet(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == true); + + } + + public void test100() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test100"); + + + SpaceWar.Player var0 = new SpaceWar.Player(); + boolean var1 = var0.isRecovering(); + var0.loseLife(); + int var3 = var0.getR(); + var0.increasePower(500); + var0.setFiring(false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == 25); + + } + + public void test101() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test101"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + var0.list(); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + float var7 = var6.getAlignmentX(); + var6.setVisible(false); + boolean var10 = var6.isDoubleBuffered(); + java.awt.dnd.DropTarget var11 = var6.getDropTarget(); + var6.show(false); + java.awt.Rectangle var14 = var6.getVisibleRect(); + java.awt.image.BufferedImage var16 = var6.loadImg("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + boolean var17 = var0.isAncestorOf((java.awt.Component)var6); + float var18 = var0.getAlignmentX(); + var0.invalidate(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == 0.5f); + + } + + public void test102() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test102"); + + + SpaceWar.Enemy var2 = new SpaceWar.Enemy(500, 3); + var2.explode(); + double var4 = var2.getY(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0.0d); + + } + + public void test103() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test103"); + + + SpaceWar.Player var0 = new SpaceWar.Player(); + boolean var1 = var0.isRecovering(); + var0.loseLife(); + boolean var3 = var0.isDead(); + var0.setScore(10); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == false); + + } + + public void test104() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test104"); + + + SpaceWar.Player var0 = new SpaceWar.Player(); + var0.increasePower(25); + int var3 = var0.getScore(); + var0.setRigth(true); + var0.update(); + var0.setDown(false); + boolean var9 = var0.isRecovering(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == false); + + } + + public void test105() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test105"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.setInheritsPopupMenu(false); + boolean var6 = var0.isDoubleBuffered(); + var0.setAlignmentY(100.0f); + boolean var9 = var0.isPaintingTile(); + java.awt.im.InputMethodRequests var10 = var0.getInputMethodRequests(); + boolean var11 = var0.isPaintingTile(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == false); + + } + + public void test106() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test106"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + var0.setRequestFocusEnabled(false); + var0.reshape(100, 0, 100, 0); + var0.requestFocus(); + var0.firePropertyChange("hi!", '4', ' '); + java.awt.Point var15 = var0.getLocation(); + java.awt.Dimension var16 = var0.size(); + boolean var17 = var0.isDoubleBuffered(); + var0.reshape(0, 3, 25, 3); + var0.firePropertyChange("PanelUI", 500, (-1)); + var0.enable(false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == true); + + } + + public void test107() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test107"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + boolean var5 = javax.swing.JComponent.isLightweightComponent((java.awt.Component)var0); + var0.removeAll(); + java.awt.Component.BaselineResizeBehavior var7 = var0.getBaselineResizeBehavior(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + boolean var12 = var8.isDoubleBuffered(); + var8.list(); + SpaceWar.SpacePanel var14 = new SpaceWar.SpacePanel(); + float var15 = var14.getAlignmentX(); + var14.setVisible(false); + boolean var18 = var14.isDoubleBuffered(); + java.awt.dnd.DropTarget var19 = var14.getDropTarget(); + var14.show(false); + java.awt.Rectangle var22 = var14.getVisibleRect(); + java.awt.image.BufferedImage var24 = var14.loadImg("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + boolean var25 = var8.isAncestorOf((java.awt.Component)var14); + javax.swing.InputVerifier var26 = var14.getInputVerifier(); + java.awt.Dimension var27 = var14.minimumSize(); + var0.addKeyListener((java.awt.event.KeyListener)var14); + java.awt.Dimension var29 = var14.preferredSize(); + javax.swing.TransferHandler var30 = var14.getTransferHandler(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var27); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var29); + + // Regression assertion (captures the current behavior of the code) + assertNull(var30); + + } + + public void test108() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test108"); + + + SpaceWar.PowerUp var3 = new SpaceWar.PowerUp((-1), 506.9915098063617d, 241.4584513263457d); + + } + + public void test109() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test109"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + var0.setName(""); + java.awt.Dimension var3 = var0.minimumSize(); + boolean var4 = var0.isDoubleBuffered(); + SpaceWar.SpacePanel var5 = new SpaceWar.SpacePanel(); + float var6 = var5.getAlignmentX(); + var5.setVisible(false); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + java.awt.Color var10 = var9.getBackground(); + var5.setForeground(var10); + SpaceWar.SpacePanel var12 = new SpaceWar.SpacePanel(); + float var13 = var12.getAlignmentX(); + var12.setVisible(false); + boolean var16 = var12.isDoubleBuffered(); + java.awt.dnd.DropTarget var17 = var12.getDropTarget(); + var12.show(false); + java.awt.Rectangle var20 = var12.getVisibleRect(); + var5.repaint(var20); + java.awt.FocusTraversalPolicy var22 = var5.getFocusTraversalPolicy(); + java.awt.im.InputMethodRequests var23 = var5.getInputMethodRequests(); + var5.layout(); + boolean var25 = var5.isFocusTraversalPolicyProvider(); + java.awt.Component var26 = var0.add((java.awt.Component)var5); + var5.setOpaque(false); + java.awt.Point var29 = var5.getLocation(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertNull(var23); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var29); + + } + + public void test110() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test110"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + SpaceWar.SpacePanel var5 = new SpaceWar.SpacePanel(); + java.awt.Color var6 = var5.getBackground(); + var5.repaint(); + java.lang.Object var8 = var0.getClientProperty((java.lang.Object)var5); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + java.awt.Color var10 = var9.getBackground(); + boolean var13 = var9.inside(0, (-1)); + SpaceWar.SpacePanel var14 = new SpaceWar.SpacePanel(); + float var15 = var14.getAlignmentX(); + var14.setVisible(false); + SpaceWar.SpacePanel var18 = new SpaceWar.SpacePanel(); + java.awt.Color var19 = var18.getBackground(); + var14.setForeground(var19); + var9.setForeground(var19); + var5.setBackground(var19); + boolean var25 = var5.inside(1, 25); + var5.setFocusTraversalKeysEnabled(false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == false); + + } + + public void test111() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test111"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + var0.setRequestFocusEnabled(false); + var0.reshape(100, 0, 100, 0); + var0.requestFocus(); + var0.firePropertyChange("hi!", '4', ' '); + java.awt.Point var15 = var0.getLocation(); + java.awt.Dimension var16 = var0.size(); + java.awt.Image var19 = var0.createImage((-1), (-1)); + java.awt.event.ComponentListener[] var20 = var0.getComponentListeners(); + SpaceWar.SpacePanel var21 = new SpaceWar.SpacePanel(); + var21.setName(""); + java.awt.ComponentOrientation var24 = var21.getComponentOrientation(); + var21.firePropertyChange("PanelUI", 1.0f, 0.5f); + int var29 = var0.getComponentZOrder((java.awt.Component)var21); + boolean var31 = var0.areFocusTraversalKeysSet(0); + var0.removeAll(); + int var33 = var0.getX(); + boolean var36 = var0.contains(1, 0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var29 == (-1)); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var31 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var33 == 100); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var36 == false); + + } + + public void test112() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test112"); + + + SpaceWar.Enemy var2 = new SpaceWar.Enemy(0, 10); + var2.hit(); + int var4 = var2.getType(); + int var5 = var2.getType(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == 0); + + } + + public void test113() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test113"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var6 = var0.getMouseListeners(); + java.awt.Dimension var7 = var0.getPreferredSize(); + java.util.Locale var8 = var0.getLocale(); + java.awt.Font var9 = var0.getFont(); + java.awt.Container var10 = var0.getTopLevelAncestor(); + java.awt.Component[] var11 = var0.getComponents(); + var0.setInheritsPopupMenu(true); + boolean var15 = var0.areFocusTraversalKeysSet(3); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var9); + + // Regression assertion (captures the current behavior of the code) + assertNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == false); + + } + + public void test114() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test114"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + java.awt.im.InputMethodRequests var3 = var0.getInputMethodRequests(); + var0.setDoubleBuffered(true); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + float var7 = var6.getAlignmentX(); + boolean var8 = var6.hasFocus(); + java.awt.Insets var9 = var6.getInsets(); + java.awt.Insets var10 = var0.getInsets(var9); + boolean var11 = var0.getAutoscrolls(); + boolean var12 = var0.isBackgroundSet(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var9); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == true); + + } + + public void test115() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test115"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.setInheritsPopupMenu(false); + var0.setFocusTraversalPolicyProvider(true); + boolean var10 = var0.inside(25, 3); + SpaceWar.SpacePanel var11 = new SpaceWar.SpacePanel(); + float var12 = var11.getAlignmentX(); + var11.setVisible(false); + boolean var15 = var11.isDoubleBuffered(); + java.awt.dnd.DropTarget var16 = var11.getDropTarget(); + var11.show(false); + boolean var19 = var11.isPaintingForPrint(); + SpaceWar.SpacePanel var20 = new SpaceWar.SpacePanel(); + float var21 = var20.getAlignmentX(); + SpaceWar.SpacePanel var22 = new SpaceWar.SpacePanel(); + float var23 = var22.getAlignmentX(); + var22.setVisible(false); + java.awt.Dimension var26 = var22.getPreferredSize(); + boolean var27 = var22.getVerifyInputWhenFocusTarget(); + java.awt.Component var30 = var22.findComponentAt(10, 1); + var20.addKeyListener((java.awt.event.KeyListener)var22); + java.awt.Dimension var32 = var22.getMinimumSize(); + var11.setMinimumSize(var32); + var0.setPreferredSize(var32); + var0.setFocusable(true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var30); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var32); + + } + + public void test116() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test116"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + var0.show(false); + java.awt.Rectangle var8 = var0.getVisibleRect(); + java.awt.Toolkit var9 = var0.getToolkit(); + java.awt.event.MouseMotionListener[] var10 = var0.getMouseMotionListeners(); + boolean var11 = var0.isManagingFocus(); + SpaceWar.SpacePanel var12 = new SpaceWar.SpacePanel(); + float var13 = var12.getAlignmentX(); + var12.setVisible(false); + java.awt.Dimension var16 = var12.getPreferredSize(); + java.awt.Toolkit var17 = var12.getToolkit(); + boolean var18 = var12.isFocusable(); + javax.swing.KeyStroke[] var19 = var12.getRegisteredKeyStrokes(); + java.awt.Component var22 = var12.getComponentAt(100, 100); + java.lang.Object var23 = var12.getTreeLock(); + SpaceWar.SpacePanel var24 = new SpaceWar.SpacePanel(); + float var25 = var24.getAlignmentX(); + var24.setVisible(false); + boolean var28 = var24.isDoubleBuffered(); + java.awt.dnd.DropTarget var29 = var24.getDropTarget(); + java.awt.Point var30 = var24.getMousePosition(); + java.lang.String var31 = var24.getUIClassID(); + var12.setNextFocusableComponent((java.awt.Component)var24); + int var33 = var12.getDebugGraphicsOptions(); + SpaceWar.SpacePanel var34 = new SpaceWar.SpacePanel(); + java.awt.Color var35 = var34.getBackground(); + var34.repaint(); + java.awt.im.InputMethodRequests var37 = var34.getInputMethodRequests(); + var34.list(); + SpaceWar.SpacePanel var39 = new SpaceWar.SpacePanel(); + java.awt.Color var40 = var39.getBackground(); + var39.repaint(); + var39.setRequestFocusEnabled(false); + var39.reshape(100, 0, 100, 0); + var39.requestFocus(); + java.awt.Rectangle var50 = var39.getVisibleRect(); + java.awt.Rectangle var51 = var39.getBounds(); + java.awt.im.InputMethodRequests var52 = var39.getInputMethodRequests(); + boolean var53 = var39.requestFocusInWindow(); + java.awt.Point var55 = var39.getMousePosition(false); + var39.setDebugGraphicsOptions(1); + java.awt.Graphics var58 = var39.getGraphics(); + var34.printComponents(var58); + var12.update(var58); + var0.printComponents(var58); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var9); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var23); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var28 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var29); + + // Regression assertion (captures the current behavior of the code) + assertNull(var30); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var31 + "' != '" + "PanelUI"+ "'", var31.equals("PanelUI")); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var33 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var35); + + // Regression assertion (captures the current behavior of the code) + assertNull(var37); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var40); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var50); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var51); + + // Regression assertion (captures the current behavior of the code) + assertNull(var52); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var53 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var55); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var58); + + } + + public void test117() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test117"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var1 = new SpaceWar.SpacePanel(); + java.awt.Color var2 = var1.getBackground(); + SpaceWar.SpacePanel var3 = new SpaceWar.SpacePanel(); + float var4 = var3.getAlignmentX(); + var3.setVisible(false); + var3.nextFocus(); + var3.updateUI(); + var3.enableInputMethods(true); + var0.add((java.awt.Component)var1, (java.lang.Object)true); + java.awt.Dimension var12 = var1.getPreferredSize(); + var1.move(100, 10); + java.awt.Graphics var16 = var1.getGraphics(); + boolean var17 = var1.getInheritsPopupMenu(); + javax.swing.event.AncestorListener[] var18 = var1.getAncestorListeners(); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + float var20 = var19.getAlignmentX(); + var19.setVisible(false); + boolean var23 = var19.isDoubleBuffered(); + java.awt.dnd.DropTarget var24 = var19.getDropTarget(); + SpaceWar.SpacePanel var25 = new SpaceWar.SpacePanel(); + java.awt.Color var26 = var25.getBackground(); + var25.repaint(); + var25.setRequestFocusEnabled(false); + var25.reshape(100, 0, 100, 0); + var25.requestFocus(); + SpaceWar.SpacePanel var36 = new SpaceWar.SpacePanel(); + float var37 = var36.getAlignmentX(); + var36.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var42 = var36.getUI(); + java.awt.im.InputMethodRequests var43 = var36.getInputMethodRequests(); + SpaceWar.SpacePanel var44 = new SpaceWar.SpacePanel(); + float var45 = var44.getAlignmentX(); + var44.setVisible(false); + var44.nextFocus(); + var44.updateUI(); + var44.enableInputMethods(true); + var44.setSize((-1), 1); + SpaceWar.SpacePanel var55 = new SpaceWar.SpacePanel(); + var55.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var36.add((java.awt.Component)var44, (java.lang.Object)"SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + SpaceWar.SpacePanel var61 = new SpaceWar.SpacePanel(); + var61.setName(""); + java.awt.ComponentOrientation var64 = var61.getComponentOrientation(); + var36.applyComponentOrientation(var64); + var25.setComponentOrientation(var64); + var19.applyComponentOrientation(var64); + int var68 = var19.getHeight(); + boolean var71 = var19.inside(3, 2); + java.beans.PropertyChangeListener[] var72 = var19.getPropertyChangeListeners(); + SpaceWar.SpacePanel var73 = new SpaceWar.SpacePanel(); + float var74 = var73.getAlignmentX(); + var73.setVisible(false); + var73.nextFocus(); + var73.repaint(1L); + SpaceWar.SpacePanel var80 = new SpaceWar.SpacePanel(); + float var81 = var80.getAlignmentX(); + var80.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var86 = new SpaceWar.SpacePanel(); + float var87 = var86.getAlignmentX(); + var86.setVisible(false); + java.awt.Dimension var90 = var86.getPreferredSize(); + var80.setMaximumSize(var90); + var73.setPreferredSize(var90); + javax.swing.plaf.PanelUI var93 = var73.getUI(); + java.awt.Dimension var94 = var73.getMinimumSize(); + boolean var95 = var73.isFocusable(); + java.awt.Color var96 = var73.getForeground(); + var19.setForeground(var96); + var1.setForeground(var96); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var2); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var42); + + // Regression assertion (captures the current behavior of the code) + assertNull(var43); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var45 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var64); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var68 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var71 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var72); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var74 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var81 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var87 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var90); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var93); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var94); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var95 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var96); + + } + + public void test118() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test118"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.requestFocus(); + boolean var6 = var0.getInheritsPopupMenu(); + boolean var7 = var0.isFocusOwner(); + boolean var8 = var0.isValidateRoot(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + java.awt.Color var10 = var9.getBackground(); + var9.repaint(); + java.awt.im.InputMethodRequests var12 = var9.getInputMethodRequests(); + java.awt.GraphicsConfiguration var13 = var9.getGraphicsConfiguration(); + boolean var15 = var9.requestFocus(false); + javax.swing.JPopupMenu var16 = var9.getComponentPopupMenu(); + SpaceWar.SpacePanel var17 = new SpaceWar.SpacePanel(); + float var18 = var17.getAlignmentX(); + var17.setVisible(false); + java.awt.Dimension var21 = var17.getPreferredSize(); + boolean var22 = var17.getVerifyInputWhenFocusTarget(); + java.awt.Component var25 = var17.findComponentAt(10, 1); + boolean var26 = var17.requestDefaultFocus(); + var17.setVerifyInputWhenFocusTarget(false); + java.awt.Point var29 = var17.getLocation(); + java.awt.Point var30 = var9.getLocation(var29); + java.awt.Component var31 = var0.getComponentAt(var29); + var0.show(true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var21); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var22 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var25); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var29); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var30); + + // Regression assertion (captures the current behavior of the code) + assertNull(var31); + + } + + public void test119() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test119"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var6 = var0.getMouseListeners(); + java.awt.Dimension var7 = var0.getPreferredSize(); + java.beans.PropertyChangeListener[] var8 = var0.getPropertyChangeListeners(); + java.awt.LayoutManager var9 = var0.getLayout(); + var0.show(); + var0.repaint(1L); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var9); + + } + + public void test120() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test120"); + + + SpaceWar.Player var0 = new SpaceWar.Player(); + int var1 = var0.getR(); + var0.setRigth(false); + var0.setLife(100); + var0.setDown(false); + var0.setFiring(true); + var0.increasePower(400); + boolean var12 = var0.isDead(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 25); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == false); + + } + + public void test121() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test121"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.setInheritsPopupMenu(false); + var0.setFocusTraversalPolicyProvider(true); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + java.awt.Color var9 = var8.getBackground(); + var8.repaint(); + java.awt.im.InputMethodRequests var11 = var8.getInputMethodRequests(); + java.awt.GraphicsConfiguration var12 = var8.getGraphicsConfiguration(); + java.awt.Component var13 = var0.add((java.awt.Component)var8); + java.lang.String var14 = var0.getName(); + var0.setIgnoreRepaint(false); + java.awt.Cursor var17 = var0.getCursor(); + boolean var18 = var0.isFocusCycleRoot(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var9); + + // Regression assertion (captures the current behavior of the code) + assertNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == false); + + } + + public void test122() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test122"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.setInheritsPopupMenu(false); + var0.setFocusTraversalPolicyProvider(true); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + java.awt.Color var9 = var8.getBackground(); + var8.repaint(); + java.awt.im.InputMethodRequests var11 = var8.getInputMethodRequests(); + java.awt.GraphicsConfiguration var12 = var8.getGraphicsConfiguration(); + java.awt.Component var13 = var0.add((java.awt.Component)var8); + boolean var14 = var8.isOpaque(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var9); + + // Regression assertion (captures the current behavior of the code) + assertNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == true); + + } + + public void test123() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test123"); + + + SpaceWar.Player var0 = new SpaceWar.Player(); + int var1 = var0.getR(); + var0.setRigth(false); + var0.setLife(100); + var0.setDown(false); + var0.setFiring(true); + var0.increasePower(400); + var0.loseLife(); + var0.setScore(10); + var0.setDown(false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 25); + + } + + public void test124() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test124"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + var0.list(); + float var6 = var0.getAlignmentY(); + boolean var7 = var0.isOpaque(); + var0.resetKeyboardActions(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.setVisible(false); + java.awt.Dimension var13 = var9.getPreferredSize(); + java.awt.Toolkit var14 = var9.getToolkit(); + SpaceWar.SpacePanel var15 = new SpaceWar.SpacePanel(); + var15.setName(""); + int var18 = var15.getX(); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + float var20 = var19.getAlignmentX(); + var19.setVisible(false); + var19.nextFocus(); + SpaceWar.SpacePanel var24 = new SpaceWar.SpacePanel(); + float var25 = var24.getAlignmentX(); + var24.setVisible(false); + SpaceWar.SpacePanel var28 = new SpaceWar.SpacePanel(); + java.awt.Color var29 = var28.getBackground(); + var24.setForeground(var29); + var19.setBackground(var29); + var15.setBackground(var29); + var9.setForeground(var29); + javax.swing.JRootPane var34 = var9.getRootPane(); + SpaceWar.SpacePanel var35 = new SpaceWar.SpacePanel(); + var35.setName(""); + var35.enable(true); + var35.enable(); + java.awt.Point var41 = var35.location(); + var35.repaint(0, 3, (-1), 1); + var35.setBounds(25, 100, 1, 0); + java.awt.Insets var52 = var35.getInsets(); + java.awt.peer.ComponentPeer var53 = var35.getPeer(); + javax.swing.KeyStroke[] var54 = var35.getRegisteredKeyStrokes(); + boolean var55 = var35.getAutoscrolls(); + SpaceWar.SpacePanel var56 = new SpaceWar.SpacePanel(); + java.awt.Color var57 = var56.getBackground(); + var56.repaint(); + var56.setRequestFocusEnabled(false); + var56.reshape(100, 0, 100, 0); + var56.requestFocus(); + java.awt.Rectangle var67 = var56.getVisibleRect(); + java.awt.Rectangle var68 = var56.getBounds(); + java.awt.im.InputMethodRequests var69 = var56.getInputMethodRequests(); + boolean var70 = var56.requestFocusInWindow(); + java.awt.Point var72 = var56.getMousePosition(false); + var56.setDebugGraphicsOptions(1); + java.awt.Graphics var75 = var56.getGraphics(); + var35.paintComponents(var75); + var9.update(var75); + var0.printComponents(var75); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var29); + + // Regression assertion (captures the current behavior of the code) + assertNull(var34); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var41); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var52); + + // Regression assertion (captures the current behavior of the code) + assertNull(var53); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var54); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var55 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var57); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var67); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var68); + + // Regression assertion (captures the current behavior of the code) + assertNull(var69); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var70 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var72); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var75); + + } + + public void test125() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test125"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var6 = var0.getUI(); + java.awt.im.InputMethodRequests var7 = var0.getInputMethodRequests(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + var8.nextFocus(); + var8.updateUI(); + var8.enableInputMethods(true); + var8.setSize((-1), 1); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + var19.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var0.add((java.awt.Component)var8, (java.lang.Object)"SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + java.awt.ComponentOrientation var25 = var8.getComponentOrientation(); + boolean var26 = var8.isMaximumSizeSet(); + SpaceWar.SpacePanel var27 = new SpaceWar.SpacePanel(); + float var28 = var27.getAlignmentX(); + var27.setVisible(false); + boolean var31 = var27.isDoubleBuffered(); + java.awt.dnd.DropTarget var32 = var27.getDropTarget(); + var27.show(false); + boolean var35 = var27.isPaintingForPrint(); + SpaceWar.SpacePanel var36 = new SpaceWar.SpacePanel(); + float var37 = var36.getAlignmentX(); + var36.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var42 = var36.getMouseListeners(); + int var43 = var36.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var44 = var36.getInputMethodRequests(); + var27.addKeyListener((java.awt.event.KeyListener)var36); + SpaceWar.SpacePanel var46 = new SpaceWar.SpacePanel(); + float var47 = var46.getAlignmentX(); + var46.setVisible(false); + boolean var50 = var46.isDoubleBuffered(); + var46.list(); + float var52 = var46.getAlignmentY(); + boolean var53 = var36.isFocusCycleRoot((java.awt.Container)var46); + boolean var54 = var46.isEnabled(); + java.awt.Dimension var55 = var46.getMaximumSize(); + var8.setMinimumSize(var55); + var8.disable(); + var8.setOpaque(true); + boolean var60 = var8.isValid(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var25); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var28 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var31 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var32); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var35 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var42); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var43 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var44); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var47 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var50 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var52 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var53 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var54 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var55); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var60 == false); + + } + + public void test126() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test126"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.setInheritsPopupMenu(false); + var0.setFocusTraversalPolicyProvider(true); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + java.awt.Color var9 = var8.getBackground(); + var8.repaint(); + java.awt.im.InputMethodRequests var11 = var8.getInputMethodRequests(); + java.awt.GraphicsConfiguration var12 = var8.getGraphicsConfiguration(); + java.awt.Component var13 = var0.add((java.awt.Component)var8); + java.lang.String var14 = var0.getName(); + boolean var15 = var0.getInheritsPopupMenu(); + // The following exception was thrown during execution. + // This behavior will recorded for regression testing. + try { + int var18 = var0.getBaseline(499, (-1)); + fail("Expected exception of type java.lang.IllegalArgumentException"); + } catch (java.lang.IllegalArgumentException e) { + // Expected exception. + } + + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var9); + + // Regression assertion (captures the current behavior of the code) + assertNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == false); + + } + + public void test127() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test127"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.setInheritsPopupMenu(false); + var0.setFocusTraversalPolicyProvider(true); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + boolean var12 = var8.isDoubleBuffered(); + var8.list(); + SpaceWar.SpacePanel var14 = new SpaceWar.SpacePanel(); + float var15 = var14.getAlignmentX(); + var14.setVisible(false); + boolean var18 = var14.isDoubleBuffered(); + java.awt.dnd.DropTarget var19 = var14.getDropTarget(); + var14.show(false); + java.awt.Rectangle var22 = var14.getVisibleRect(); + java.awt.Rectangle var23 = var8.getBounds(var22); + javax.swing.JToolTip var24 = var8.createToolTip(); + var0.removeKeyListener((java.awt.event.KeyListener)var8); + javax.swing.TransferHandler var26 = var0.getTransferHandler(); + var0.transferFocus(); + java.awt.Dimension var28 = var0.preferredSize(); + var0.move(499, 25); + SpaceWar.SpacePanel var32 = new SpaceWar.SpacePanel(); + float var33 = var32.getAlignmentX(); + var32.setVisible(false); + java.awt.Dimension var36 = var32.getPreferredSize(); + java.awt.Toolkit var37 = var32.getToolkit(); + SpaceWar.SpacePanel var38 = new SpaceWar.SpacePanel(); + var38.setName(""); + int var41 = var38.getX(); + SpaceWar.SpacePanel var42 = new SpaceWar.SpacePanel(); + float var43 = var42.getAlignmentX(); + var42.setVisible(false); + var42.nextFocus(); + SpaceWar.SpacePanel var47 = new SpaceWar.SpacePanel(); + float var48 = var47.getAlignmentX(); + var47.setVisible(false); + SpaceWar.SpacePanel var51 = new SpaceWar.SpacePanel(); + java.awt.Color var52 = var51.getBackground(); + var47.setForeground(var52); + var42.setBackground(var52); + var38.setBackground(var52); + var32.setForeground(var52); + javax.swing.ActionMap var57 = var32.getActionMap(); + var0.setActionMap(var57); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var23); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var28); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var33 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var36); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var37); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var41 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var43 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var48 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var52); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var57); + + } + + public void test128() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test128"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + SpaceWar.SpacePanel var4 = new SpaceWar.SpacePanel(); + java.awt.Color var5 = var4.getBackground(); + var0.setForeground(var5); + SpaceWar.SpacePanel var7 = new SpaceWar.SpacePanel(); + float var8 = var7.getAlignmentX(); + var7.setVisible(false); + boolean var11 = var7.isDoubleBuffered(); + java.awt.dnd.DropTarget var12 = var7.getDropTarget(); + var7.show(false); + java.awt.Rectangle var15 = var7.getVisibleRect(); + var0.repaint(var15); + java.awt.FocusTraversalPolicy var17 = var0.getFocusTraversalPolicy(); + SpaceWar.SpacePanel var18 = new SpaceWar.SpacePanel(); + float var19 = var18.getAlignmentX(); + var18.firePropertyChange("", (-1), 1); + boolean var24 = var18.isFocusOwner(); + SpaceWar.SpacePanel var26 = new SpaceWar.SpacePanel(); + float var27 = var26.getAlignmentX(); + var26.setVisible(false); + java.awt.Dimension var30 = var26.getPreferredSize(); + java.awt.Toolkit var31 = var26.getToolkit(); + SpaceWar.SpacePanel var32 = new SpaceWar.SpacePanel(); + var32.setName(""); + int var35 = var32.getX(); + SpaceWar.SpacePanel var36 = new SpaceWar.SpacePanel(); + float var37 = var36.getAlignmentX(); + var36.setVisible(false); + var36.nextFocus(); + SpaceWar.SpacePanel var41 = new SpaceWar.SpacePanel(); + float var42 = var41.getAlignmentX(); + var41.setVisible(false); + SpaceWar.SpacePanel var45 = new SpaceWar.SpacePanel(); + java.awt.Color var46 = var45.getBackground(); + var41.setForeground(var46); + var36.setBackground(var46); + var32.setBackground(var46); + var26.setForeground(var46); + var18.putClientProperty((java.lang.Object)(byte)100, (java.lang.Object)var46); + var0.setBackground(var46); + SpaceWar.SpacePanel var53 = new SpaceWar.SpacePanel(); + float var54 = var53.getAlignmentX(); + var53.setVisible(false); + boolean var57 = var53.isDoubleBuffered(); + java.awt.dnd.DropTarget var58 = var53.getDropTarget(); + var53.show(false); + boolean var61 = var53.isPaintingForPrint(); + SpaceWar.SpacePanel var62 = new SpaceWar.SpacePanel(); + float var63 = var62.getAlignmentX(); + SpaceWar.SpacePanel var64 = new SpaceWar.SpacePanel(); + float var65 = var64.getAlignmentX(); + var64.setVisible(false); + java.awt.Dimension var68 = var64.getPreferredSize(); + boolean var69 = var64.getVerifyInputWhenFocusTarget(); + java.awt.Component var72 = var64.findComponentAt(10, 1); + var62.addKeyListener((java.awt.event.KeyListener)var64); + java.awt.Dimension var74 = var64.getMinimumSize(); + var53.setMinimumSize(var74); + java.awt.Dimension var76 = var0.getSize(var74); + boolean var77 = var0.isValid(); + int var78 = var0.getWidth(); + java.awt.event.HierarchyListener[] var79 = var0.getHierarchyListeners(); + var0.firePropertyChange("", 'a', '#'); + var0.move(3, 399); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var24 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var30); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var31); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var35 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var42 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var46); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var54 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var57 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var58); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var61 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var63 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var65 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var68); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var69 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var72); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var74); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var76); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var77 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var78 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var79); + + } + + public void test129() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test129"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + java.awt.im.InputMethodRequests var3 = var0.getInputMethodRequests(); + int var4 = var0.countComponents(); + java.awt.event.ComponentListener[] var5 = var0.getComponentListeners(); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + float var7 = var6.getAlignmentX(); + var6.removeNotify(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.setVisible(false); + boolean var13 = var9.isDoubleBuffered(); + var9.list(); + float var15 = var9.getAlignmentY(); + java.awt.Insets var16 = var9.getInsets(); + java.awt.Insets var17 = var6.getInsets(var16); + java.awt.Insets var18 = var0.getInsets(var17); + javax.swing.JPopupMenu var19 = var0.getComponentPopupMenu(); + java.awt.image.BufferedImage var21 = var0.loadImg("PanelUI"); + var0.setVerifyInputWhenFocusTarget(false); + SpaceWar.SpacePanel var24 = new SpaceWar.SpacePanel(); + java.awt.Color var25 = var24.getBackground(); + boolean var28 = var24.inside(0, (-1)); + SpaceWar.SpacePanel var30 = new SpaceWar.SpacePanel(); + float var31 = var30.getAlignmentX(); + var30.setVisible(false); + var30.nextFocus(); + var30.reshape((-1), 1, (-1), 10); + var30.disable(); + boolean var41 = var30.isFocusable(); + SpaceWar.SpacePanel var42 = new SpaceWar.SpacePanel(); + float var43 = var42.getAlignmentX(); + var42.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var48 = var42.getUI(); + java.awt.im.InputMethodRequests var49 = var42.getInputMethodRequests(); + SpaceWar.SpacePanel var50 = new SpaceWar.SpacePanel(); + float var51 = var50.getAlignmentX(); + var50.setVisible(false); + var50.nextFocus(); + var50.updateUI(); + var50.enableInputMethods(true); + var50.setSize((-1), 1); + SpaceWar.SpacePanel var61 = new SpaceWar.SpacePanel(); + var61.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var42.add((java.awt.Component)var50, (java.lang.Object)"SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + java.awt.event.KeyListener[] var67 = var42.getKeyListeners(); + java.awt.FocusTraversalPolicy var68 = var42.getFocusTraversalPolicy(); + SpaceWar.SpacePanel var69 = new SpaceWar.SpacePanel(); + var69.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + java.awt.Toolkit var74 = var69.getToolkit(); + var30.add((java.awt.Component)var42, (java.lang.Object)var69); + var30.layout(); + java.awt.Component var77 = var24.add("", (java.awt.Component)var30); + java.lang.Object var78 = var0.getClientProperty((java.lang.Object)var77); + boolean var79 = var0.getIgnoreRepaint(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertNull(var21); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var25); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var28 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var31 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var41 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var43 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var48); + + // Regression assertion (captures the current behavior of the code) + assertNull(var49); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var51 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var67); + + // Regression assertion (captures the current behavior of the code) + assertNull(var68); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var74); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var77); + + // Regression assertion (captures the current behavior of the code) + assertNull(var78); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var79 == false); + + } + + public void test130() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test130"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.reshape((-1), 1, (-1), 10); + var0.disable(); + java.awt.LayoutManager var11 = var0.getLayout(); + boolean var14 = var0.contains((-1), 0); + SpaceWar.SpacePanel var15 = new SpaceWar.SpacePanel(); + float var16 = var15.getAlignmentX(); + var15.setVisible(false); + var15.nextFocus(); + var15.updateUI(); + var15.enableInputMethods(true); + var15.setSize((-1), 1); + java.awt.Component var26 = var0.add((java.awt.Component)var15); + var15.paintImmediately(100, 25, 2, 2); + SpaceWar.SpacePanel var32 = new SpaceWar.SpacePanel(); + var32.setName(""); + java.awt.Toolkit var35 = var32.getToolkit(); + var32.setEnabled(false); + var32.removeNotify(); + boolean var39 = var32.isDisplayable(); + SpaceWar.SpacePanel var40 = new SpaceWar.SpacePanel(); + java.awt.Color var41 = var40.getBackground(); + var40.repaint(); + var40.setRequestFocusEnabled(false); + var40.reshape(100, 0, 100, 0); + var40.requestFocus(); + java.awt.Rectangle var51 = var40.getVisibleRect(); + java.awt.Rectangle var52 = var40.getBounds(); + java.awt.im.InputMethodRequests var53 = var40.getInputMethodRequests(); + boolean var54 = var40.requestFocusInWindow(); + java.awt.Point var56 = var40.getMousePosition(false); + var40.setDebugGraphicsOptions(1); + java.awt.Graphics var59 = var40.getGraphics(); + var32.paintAll(var59); + var15.paintComponents(var59); + boolean var62 = var15.isPaintingForPrint(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var35); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var39 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var41); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var51); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var52); + + // Regression assertion (captures the current behavior of the code) + assertNull(var53); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var54 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var56); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var59); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var62 == false); + + } + + public void test131() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test131"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + var0.list(); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + float var7 = var6.getAlignmentX(); + var6.setVisible(false); + boolean var10 = var6.isDoubleBuffered(); + java.awt.dnd.DropTarget var11 = var6.getDropTarget(); + var6.show(false); + java.awt.Rectangle var14 = var6.getVisibleRect(); + java.awt.Rectangle var15 = var0.getBounds(var14); + javax.swing.JToolTip var16 = var0.createToolTip(); + boolean var17 = var16.getInheritsPopupMenu(); + boolean var18 = var16.isFontSet(); + java.awt.event.MouseListener[] var19 = var16.getMouseListeners(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var19); + + } + + public void test132() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test132"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.requestFocus(); + boolean var6 = var0.isBackgroundSet(); + SpaceWar.SpacePanel var7 = new SpaceWar.SpacePanel(); + java.awt.Color var8 = var7.getBackground(); + var7.repaint(); + var7.setRequestFocusEnabled(false); + var7.reshape(100, 0, 100, 0); + SpaceWar.SpacePanel var17 = new SpaceWar.SpacePanel(); + float var18 = var17.getAlignmentX(); + var17.setVisible(false); + var17.setInheritsPopupMenu(false); + boolean var23 = var17.isDoubleBuffered(); + SpaceWar.SpacePanel var24 = new SpaceWar.SpacePanel(); + float var25 = var24.getAlignmentX(); + var24.setVisible(false); + var24.nextFocus(); + var24.reshape((-1), 1, (-1), 10); + var24.disable(); + java.awt.LayoutManager var35 = var24.getLayout(); + var17.setLayout(var35); + var0.add((java.awt.Component)var7, (java.lang.Object)var35); + var7.hide(); + boolean var39 = var7.requestFocusInWindow(); + var7.repaint(500, 10, 25, 25); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var35); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var39 == false); + + } + + public void test133() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test133"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + java.awt.Dimension var4 = var0.getPreferredSize(); + java.awt.Toolkit var5 = var0.getToolkit(); + boolean var6 = var0.isFocusable(); + javax.swing.KeyStroke[] var7 = var0.getRegisteredKeyStrokes(); + java.awt.Component var10 = var0.getComponentAt(100, 100); + java.lang.Object var11 = var0.getTreeLock(); + boolean var14 = var0.inside(400, 0); + java.awt.event.MouseWheelListener[] var15 = var0.getMouseWheelListeners(); + var0.requestFocus(); + SpaceWar.SpacePanel var17 = new SpaceWar.SpacePanel(); + java.awt.Color var18 = var17.getBackground(); + var17.repaint(); + java.awt.im.InputMethodRequests var20 = var17.getInputMethodRequests(); + var17.setDoubleBuffered(true); + var17.setInheritsPopupMenu(false); + boolean var25 = var17.isFocusTraversalPolicySet(); + var17.transferFocusUpCycle(); + java.awt.image.BufferedImage var28 = var17.loadImg("SpaceWar.SpacePanel[,0,0,0x0,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + SpaceWar.SpacePanel var29 = new SpaceWar.SpacePanel(); + float var30 = var29.getAlignmentX(); + var29.setVisible(false); + var29.setInheritsPopupMenu(false); + boolean var35 = var29.isDoubleBuffered(); + boolean var36 = var29.isMinimumSizeSet(); + java.awt.Font var37 = var29.getFont(); + java.awt.FontMetrics var38 = var17.getFontMetrics(var37); + var0.setFont(var37); + var0.move((-1), 1); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var4); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var28); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var30 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var35 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var36 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var37); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var38); + + } + + public void test134() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test134"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + boolean var6 = var0.isFocusCycleRoot(); + SpaceWar.SpacePanel var7 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + java.awt.Color var9 = var8.getBackground(); + SpaceWar.SpacePanel var10 = new SpaceWar.SpacePanel(); + float var11 = var10.getAlignmentX(); + var10.setVisible(false); + var10.nextFocus(); + var10.updateUI(); + var10.enableInputMethods(true); + var7.add((java.awt.Component)var8, (java.lang.Object)true); + java.awt.Dimension var19 = var8.getPreferredSize(); + var0.setSize(var19); + var0.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", (-1), 10); + var0.setLocation(10, 100); + SpaceWar.SpacePanel var28 = new SpaceWar.SpacePanel(); + float var29 = var28.getAlignmentX(); + var28.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var34 = var28.getMouseListeners(); + int var35 = var28.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var36 = var28.getInputMethodRequests(); + var28.removeNotify(); + var28.enable(); + SpaceWar.SpacePanel var39 = new SpaceWar.SpacePanel(); + java.awt.Color var40 = var39.getBackground(); + boolean var43 = var39.inside(0, (-1)); + var39.transferFocusUpCycle(); + java.lang.String var45 = var39.getName(); + boolean var46 = var28.isFocusCycleRoot((java.awt.Container)var39); + java.awt.Dimension var47 = var28.getMinimumSize(); + var0.resize(var47); + var0.setAlignmentX((-1.0f)); + javax.swing.border.Border var51 = var0.getBorder(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var9); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var29 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var34); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var35 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var36); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var40); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var43 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var45); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var46 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var47); + + // Regression assertion (captures the current behavior of the code) + assertNull(var51); + + } + + public void test135() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test135"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var6 = var0.getMouseListeners(); + int var7 = var0.getDebugGraphicsOptions(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + boolean var12 = var8.isDoubleBuffered(); + java.awt.dnd.DropTarget var13 = var8.getDropTarget(); + var8.show(false); + java.awt.Rectangle var16 = var8.getVisibleRect(); + var0.paintImmediately(var16); + java.awt.Rectangle var18 = var0.getBounds(); + java.awt.Color var19 = var0.getForeground(); + java.awt.Component[] var20 = var0.getComponents(); + java.awt.FocusTraversalPolicy var21 = var0.getFocusTraversalPolicy(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertNull(var21); + + } + + public void test136() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test136"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + var0.setRequestFocusEnabled(false); + var0.reshape(100, 0, 100, 0); + var0.requestFocus(); + java.awt.Rectangle var11 = var0.getVisibleRect(); + java.awt.Rectangle var12 = var0.getBounds(); + java.awt.im.InputMethodRequests var13 = var0.getInputMethodRequests(); + boolean var14 = var0.requestFocusInWindow(); + java.awt.Point var16 = var0.getMousePosition(false); + var0.setDebugGraphicsOptions(1); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + float var20 = var19.getAlignmentX(); + var19.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var25 = var19.getUI(); + var0.setUI(var25); + java.awt.event.FocusListener[] var27 = var0.getFocusListeners(); + var0.repaint(0L); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var25); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var27); + + } + + public void test137() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test137"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.setInheritsPopupMenu(false); + boolean var6 = var0.isMinimumSizeSet(); + java.awt.Point var8 = var0.getMousePosition(true); + var0.setFocusTraversalPolicyProvider(false); + SpaceWar.SpacePanel var11 = new SpaceWar.SpacePanel(); + float var12 = var11.getAlignmentX(); + var11.setVisible(false); + java.awt.Dimension var15 = var11.getPreferredSize(); + boolean var16 = var11.getVerifyInputWhenFocusTarget(); + java.awt.Component var19 = var11.findComponentAt(10, 1); + boolean var20 = var11.requestDefaultFocus(); + java.awt.Insets var21 = var11.getInsets(); + var11.setDoubleBuffered(false); + java.awt.Toolkit var24 = var11.getToolkit(); + java.awt.Dimension var25 = var11.getMinimumSize(); + java.awt.event.MouseListener[] var26 = var11.getMouseListeners(); + SpaceWar.SpacePanel var27 = new SpaceWar.SpacePanel(); + float var28 = var27.getAlignmentX(); + var27.setVisible(false); + java.awt.Dimension var31 = var27.getPreferredSize(); + java.awt.Toolkit var32 = var27.getToolkit(); + boolean var33 = var27.isFocusable(); + javax.swing.KeyStroke[] var34 = var27.getRegisteredKeyStrokes(); + java.awt.Component var37 = var27.getComponentAt(100, 100); + java.lang.Object var38 = var27.getTreeLock(); + SpaceWar.SpacePanel var39 = new SpaceWar.SpacePanel(); + float var40 = var39.getAlignmentX(); + var39.setVisible(false); + boolean var43 = var39.isDoubleBuffered(); + java.awt.dnd.DropTarget var44 = var39.getDropTarget(); + java.awt.Point var45 = var39.getMousePosition(); + java.lang.String var46 = var39.getUIClassID(); + var27.setNextFocusableComponent((java.awt.Component)var39); + int var48 = var27.getDebugGraphicsOptions(); + SpaceWar.SpacePanel var49 = new SpaceWar.SpacePanel(); + java.awt.Color var50 = var49.getBackground(); + var49.repaint(); + java.awt.im.InputMethodRequests var52 = var49.getInputMethodRequests(); + var49.list(); + SpaceWar.SpacePanel var54 = new SpaceWar.SpacePanel(); + java.awt.Color var55 = var54.getBackground(); + var54.repaint(); + var54.setRequestFocusEnabled(false); + var54.reshape(100, 0, 100, 0); + var54.requestFocus(); + java.awt.Rectangle var65 = var54.getVisibleRect(); + java.awt.Rectangle var66 = var54.getBounds(); + java.awt.im.InputMethodRequests var67 = var54.getInputMethodRequests(); + boolean var68 = var54.requestFocusInWindow(); + java.awt.Point var70 = var54.getMousePosition(false); + var54.setDebugGraphicsOptions(1); + java.awt.Graphics var73 = var54.getGraphics(); + var49.printComponents(var73); + var27.update(var73); + var11.paintComponents(var73); + var0.paintComponents(var73); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var21); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var25); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var28 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var31); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var32); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var33 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var34); + + // Regression assertion (captures the current behavior of the code) + assertNull(var37); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var38); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var40 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var43 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var44); + + // Regression assertion (captures the current behavior of the code) + assertNull(var45); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var46 + "' != '" + "PanelUI"+ "'", var46.equals("PanelUI")); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var48 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var50); + + // Regression assertion (captures the current behavior of the code) + assertNull(var52); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var55); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var65); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var66); + + // Regression assertion (captures the current behavior of the code) + assertNull(var67); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var68 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var70); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var73); + + } + + public void test138() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test138"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + SpaceWar.SpacePanel var2 = new SpaceWar.SpacePanel(); + float var3 = var2.getAlignmentX(); + var2.setVisible(false); + java.awt.Dimension var6 = var2.getPreferredSize(); + boolean var7 = var2.getVerifyInputWhenFocusTarget(); + java.awt.Component var10 = var2.findComponentAt(10, 1); + var0.addKeyListener((java.awt.event.KeyListener)var2); + var2.repaint(100, (-1), (-1), 1); + SpaceWar.SpacePanel var17 = new SpaceWar.SpacePanel(); + java.awt.Color var18 = var17.getBackground(); + var17.repaint(); + java.awt.im.InputMethodRequests var20 = var17.getInputMethodRequests(); + java.awt.GraphicsConfiguration var21 = var17.getGraphicsConfiguration(); + var2.remove((java.awt.Component)var17); + var2.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", 0.0f, 1.0f); + SpaceWar.SpacePanel var27 = new SpaceWar.SpacePanel(); + float var28 = var27.getAlignmentX(); + var27.setVisible(false); + java.awt.Dimension var31 = var27.getPreferredSize(); + boolean var32 = var27.getVerifyInputWhenFocusTarget(); + SpaceWar.SpacePanel var33 = new SpaceWar.SpacePanel(); + var33.setName(""); + int var36 = var33.getX(); + SpaceWar.SpacePanel var37 = new SpaceWar.SpacePanel(); + float var38 = var37.getAlignmentX(); + var37.setVisible(false); + var37.nextFocus(); + SpaceWar.SpacePanel var42 = new SpaceWar.SpacePanel(); + float var43 = var42.getAlignmentX(); + var42.setVisible(false); + SpaceWar.SpacePanel var46 = new SpaceWar.SpacePanel(); + java.awt.Color var47 = var46.getBackground(); + var42.setForeground(var47); + var37.setBackground(var47); + var33.setBackground(var47); + var2.add((java.awt.Component)var27, (java.lang.Object)var33); + var2.firePropertyChange("hi!", 10.0f, 0.5f); + java.awt.Component[] var56 = var2.getComponents(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertNull(var21); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var28 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var31); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var32 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var36 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var38 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var43 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var47); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var56); + + } + + public void test139() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test139"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + SpaceWar.SpacePanel var4 = new SpaceWar.SpacePanel(); + java.awt.Color var5 = var4.getBackground(); + var0.setForeground(var5); + SpaceWar.SpacePanel var7 = new SpaceWar.SpacePanel(); + float var8 = var7.getAlignmentX(); + var7.setVisible(false); + boolean var11 = var7.isDoubleBuffered(); + java.awt.dnd.DropTarget var12 = var7.getDropTarget(); + var7.show(false); + java.awt.Rectangle var15 = var7.getVisibleRect(); + var0.repaint(var15); + java.awt.FocusTraversalPolicy var17 = var0.getFocusTraversalPolicy(); + java.awt.im.InputMethodRequests var18 = var0.getInputMethodRequests(); + var0.layout(); + var0.setDebugGraphicsOptions(10); + SpaceWar.SpacePanel var22 = new SpaceWar.SpacePanel(); + float var23 = var22.getAlignmentX(); + var22.setVisible(false); + var22.nextFocus(); + var22.reshape((-1), 1, (-1), 10); + SpaceWar.SpacePanel var32 = new SpaceWar.SpacePanel(); + java.awt.Color var33 = var32.getBackground(); + var32.repaint(); + var32.setRequestFocusEnabled(false); + var32.reshape(100, 0, 100, 0); + java.awt.Component var42 = var22.add((java.awt.Component)var32); + SpaceWar.SpacePanel var43 = new SpaceWar.SpacePanel(); + var43.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + javax.swing.plaf.PanelUI var48 = var43.getUI(); + SpaceWar.SpacePanel var49 = new SpaceWar.SpacePanel(); + float var50 = var49.getAlignmentX(); + var49.setVisible(false); + var49.nextFocus(); + var49.repaint(1L); + SpaceWar.SpacePanel var56 = new SpaceWar.SpacePanel(); + float var57 = var56.getAlignmentX(); + var56.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var62 = new SpaceWar.SpacePanel(); + float var63 = var62.getAlignmentX(); + var62.setVisible(false); + java.awt.Dimension var66 = var62.getPreferredSize(); + var56.setMaximumSize(var66); + var49.setPreferredSize(var66); + var43.setMaximumSize(var66); + java.awt.Dimension var70 = var32.getSize(var66); + var0.setSize(var70); + SpaceWar.SpacePanel var72 = new SpaceWar.SpacePanel(); + var72.setName(""); + var72.enable(true); + var72.enable(); + java.awt.Point var78 = var72.location(); + boolean var79 = var0.contains(var78); + // The following exception was thrown during execution. + // This behavior will recorded for regression testing. + try { + java.util.Set var81 = var0.getFocusTraversalKeys(400); + fail("Expected exception of type java.lang.IllegalArgumentException"); + } catch (java.lang.IllegalArgumentException e) { + // Expected exception. + } + + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var33); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var42); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var48); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var50 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var57 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var63 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var66); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var70); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var78); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var79 == false); + + } + + public void test140() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test140"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var6 = var0.getMouseListeners(); + java.awt.Dimension var7 = var0.getPreferredSize(); + java.util.Locale var8 = var0.getLocale(); + var0.setFocusable(true); + var0.setSize(3, 10); + java.awt.im.InputMethodRequests var14 = var0.getInputMethodRequests(); + var0.setOpaque(false); + java.lang.String var17 = var0.getToolTipText(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + } + + public void test141() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test141"); + + + SpaceWar.Player var0 = new SpaceWar.Player(); + boolean var1 = var0.isRecovering(); + var0.setUp(true); + int var4 = var0.getScore(); + var0.setDown(true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0); + + } + + public void test142() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test142"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + float var7 = var6.getAlignmentX(); + var6.setVisible(false); + java.awt.Dimension var10 = var6.getPreferredSize(); + var0.setMaximumSize(var10); + boolean var12 = var0.getVerifyInputWhenFocusTarget(); + java.awt.Toolkit var13 = var0.getToolkit(); + java.lang.String var14 = var0.getUIClassID(); + javax.swing.plaf.PanelUI var15 = var0.getUI(); + boolean var16 = var0.getAutoscrolls(); + float var17 = var0.getAlignmentX(); + SpaceWar.SpacePanel var18 = new SpaceWar.SpacePanel(); + float var19 = var18.getAlignmentX(); + boolean var20 = var18.hasFocus(); + boolean var21 = var18.isPreferredSizeSet(); + var18.firePropertyChange("", (short)1, (short)0); + boolean var26 = var18.isMaximumSizeSet(); + var18.list(); + SpaceWar.SpacePanel var28 = new SpaceWar.SpacePanel(); + float var29 = var28.getAlignmentX(); + var28.setVisible(false); + boolean var32 = var28.isDoubleBuffered(); + java.awt.dnd.DropTarget var33 = var28.getDropTarget(); + var28.show(false); + java.awt.Rectangle var36 = var28.getVisibleRect(); + java.awt.image.BufferedImage var38 = var28.loadImg("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + java.awt.ComponentOrientation var39 = var28.getComponentOrientation(); + var28.transferFocusBackward(); + SpaceWar.SpacePanel var41 = new SpaceWar.SpacePanel(); + java.awt.Color var42 = var41.getBackground(); + var41.setFocusCycleRoot(true); + var18.add((java.awt.Component)var28, (java.lang.Object)true); + SpaceWar.SpacePanel var46 = new SpaceWar.SpacePanel(); + float var47 = var46.getAlignmentX(); + var46.setVisible(false); + java.awt.Dimension var50 = var46.getPreferredSize(); + boolean var51 = var46.getVerifyInputWhenFocusTarget(); + java.awt.Component var54 = var46.findComponentAt(10, 1); + boolean var55 = var46.isCursorSet(); + boolean var56 = var46.isFocusTraversalPolicyProvider(); + java.awt.Rectangle var57 = var46.getBounds(); + java.awt.Dimension var58 = var46.getMaximumSize(); + java.awt.Dimension var59 = var18.getSize(var58); + var0.setSize(var59); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var14 + "' != '" + "PanelUI"+ "'", var14.equals("PanelUI")); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var29 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var32 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var33); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var36); + + // Regression assertion (captures the current behavior of the code) + assertNull(var38); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var39); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var42); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var47 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var50); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var51 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var54); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var55 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var56 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var57); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var58); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var59); + + } + + public void test143() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test143"); + + + SpaceWar.Player var0 = new SpaceWar.Player(); + int var1 = var0.getPower(); + var0.setLeft(true); + var0.increasePower(0); + int var6 = var0.getRequiredPower(); + int var7 = var0.getPower(); + int var8 = var0.getX(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == 1); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 400); + + } + + public void test144() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test144"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + float var7 = var6.getAlignmentX(); + var6.setVisible(false); + java.awt.Dimension var10 = var6.getPreferredSize(); + var0.setMaximumSize(var10); + boolean var12 = var0.getVerifyInputWhenFocusTarget(); + int var13 = var0.getX(); + java.awt.Rectangle var14 = var0.bounds(); + SpaceWar.SpacePanel var15 = new SpaceWar.SpacePanel(); + java.awt.Color var16 = var15.getBackground(); + var15.repaint(); + java.awt.im.InputMethodRequests var18 = var15.getInputMethodRequests(); + int var19 = var15.countComponents(); + java.awt.event.ComponentListener[] var20 = var15.getComponentListeners(); + var15.removeNotify(); + javax.swing.InputMap var22 = var15.getInputMap(); + int var23 = var15.getDebugGraphicsOptions(); + var0.addKeyListener((java.awt.event.KeyListener)var15); + // The following exception was thrown during execution. + // This behavior will recorded for regression testing. + try { + int var27 = var0.getBaseline(3, (-1)); + fail("Expected exception of type java.lang.IllegalArgumentException"); + } catch (java.lang.IllegalArgumentException e) { + // Expected exception. + } + + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == 0); + + } + + public void test145() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test145"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + boolean var4 = var0.inside(0, (-1)); + SpaceWar.SpacePanel var5 = new SpaceWar.SpacePanel(); + float var6 = var5.getAlignmentX(); + var5.setVisible(false); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + java.awt.Color var10 = var9.getBackground(); + var5.setForeground(var10); + var0.setForeground(var10); + var0.setAutoscrolls(false); + SpaceWar.SpacePanel var15 = new SpaceWar.SpacePanel(); + float var16 = var15.getAlignmentX(); + var15.setVisible(false); + boolean var19 = var15.isDoubleBuffered(); + java.awt.dnd.DropTarget var20 = var15.getDropTarget(); + var15.show(false); + boolean var23 = var15.isPaintingForPrint(); + SpaceWar.SpacePanel var24 = new SpaceWar.SpacePanel(); + float var25 = var24.getAlignmentX(); + var24.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var30 = var24.getMouseListeners(); + int var31 = var24.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var32 = var24.getInputMethodRequests(); + var15.addKeyListener((java.awt.event.KeyListener)var24); + SpaceWar.SpacePanel var34 = new SpaceWar.SpacePanel(); + float var35 = var34.getAlignmentX(); + var34.setVisible(false); + boolean var38 = var34.isDoubleBuffered(); + var34.list(); + float var40 = var34.getAlignmentY(); + boolean var41 = var24.isFocusCycleRoot((java.awt.Container)var34); + boolean var42 = var34.isEnabled(); + java.awt.Dimension var43 = var34.getMaximumSize(); + var34.disable(); + var34.updateUI(); + var34.setFocusable(false); + boolean var48 = var34.isDoubleBuffered(); + SpaceWar.SpacePanel var49 = new SpaceWar.SpacePanel(); + float var50 = var49.getAlignmentX(); + var49.setVisible(false); + var49.nextFocus(); + var49.updateUI(); + var49.enableInputMethods(true); + var49.enableInputMethods(true); + java.awt.Component.BaselineResizeBehavior var59 = var49.getBaselineResizeBehavior(); + SpaceWar.SpacePanel var60 = new SpaceWar.SpacePanel(); + float var61 = var60.getAlignmentX(); + var60.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var66 = var60.getUI(); + java.awt.im.InputMethodRequests var67 = var60.getInputMethodRequests(); + SpaceWar.SpacePanel var68 = new SpaceWar.SpacePanel(); + float var69 = var68.getAlignmentX(); + var68.setVisible(false); + var68.nextFocus(); + var68.updateUI(); + var68.enableInputMethods(true); + var68.setSize((-1), 1); + SpaceWar.SpacePanel var79 = new SpaceWar.SpacePanel(); + var79.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var60.add((java.awt.Component)var68, (java.lang.Object)"SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + SpaceWar.SpacePanel var85 = new SpaceWar.SpacePanel(); + var85.setName(""); + java.awt.ComponentOrientation var88 = var85.getComponentOrientation(); + var60.applyComponentOrientation(var88); + var49.setComponentOrientation(var88); + var34.setComponentOrientation(var88); + var0.applyComponentOrientation(var88); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var30); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var31 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var32); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var35 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var38 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var40 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var41 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var42 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var43); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var48 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var50 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var59); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var61 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var66); + + // Regression assertion (captures the current behavior of the code) + assertNull(var67); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var69 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var88); + + } + + public void test146() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test146"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + SpaceWar.SpacePanel var4 = new SpaceWar.SpacePanel(); + java.awt.Color var5 = var4.getBackground(); + var0.setForeground(var5); + SpaceWar.SpacePanel var7 = new SpaceWar.SpacePanel(); + float var8 = var7.getAlignmentX(); + var7.setVisible(false); + boolean var11 = var7.isDoubleBuffered(); + java.awt.dnd.DropTarget var12 = var7.getDropTarget(); + var7.show(false); + java.awt.Rectangle var15 = var7.getVisibleRect(); + var0.repaint(var15); + java.awt.Component.BaselineResizeBehavior var17 = var0.getBaselineResizeBehavior(); + SpaceWar.SpacePanel var18 = new SpaceWar.SpacePanel(); + float var19 = var18.getAlignmentX(); + var18.setVisible(false); + var18.nextFocus(); + var18.repaint(1L); + SpaceWar.SpacePanel var25 = new SpaceWar.SpacePanel(); + float var26 = var25.getAlignmentX(); + var25.setVisible(false); + boolean var29 = var25.isDoubleBuffered(); + var25.list(); + SpaceWar.SpacePanel var31 = new SpaceWar.SpacePanel(); + float var32 = var31.getAlignmentX(); + var31.setVisible(false); + boolean var35 = var31.isDoubleBuffered(); + java.awt.dnd.DropTarget var36 = var31.getDropTarget(); + var31.show(false); + java.awt.Rectangle var39 = var31.getVisibleRect(); + java.awt.Rectangle var40 = var25.getBounds(var39); + var18.setBounds(var40); + var0.paintImmediately(var40); + java.awt.Dimension var43 = var0.getMaximumSize(); + boolean var44 = var0.isFocusCycleRoot(); + boolean var45 = var0.isMaximumSizeSet(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var29 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var32 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var35 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var36); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var39); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var40); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var43); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var44 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var45 == false); + + } + + public void test147() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test147"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var6 = var0.getMouseListeners(); + java.awt.Dimension var7 = var0.getPreferredSize(); + java.util.Locale var8 = var0.getLocale(); + var0.setFocusable(true); + java.lang.String var11 = var0.getToolTipText(); + var0.repaint(); + SpaceWar.SpacePanel var14 = new SpaceWar.SpacePanel(); + float var15 = var14.getAlignmentX(); + var14.setVisible(false); + var14.nextFocus(); + var14.reshape((-1), 1, (-1), 10); + java.util.Set var25 = var14.getFocusTraversalKeys(3); + javax.swing.event.AncestorListener[] var26 = var14.getAncestorListeners(); + java.awt.Component var27 = var0.add("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=1.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", (java.awt.Component)var14); + java.awt.Font var28 = var0.getFont(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var25); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var27); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var28); + + } + + public void test148() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test148"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.updateUI(); + var0.enableInputMethods(true); + var0.enableInputMethods(true); + boolean var11 = var0.requestFocus(false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == false); + + } + + public void test149() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test149"); + + + SpaceWar.Player var0 = new SpaceWar.Player(); + var0.increasePower(25); + int var3 = var0.getScore(); + var0.setRigth(true); + var0.loseLife(); + var0.setLeft(true); + var0.setDown(true); + boolean var11 = var0.isRecovering(); + var0.setLeft(true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == true); + + } + + public void test150() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test150"); + + + SpaceWar.Player var0 = new SpaceWar.Player(); + boolean var1 = var0.isRecovering(); + int var2 = var0.getRequiredPower(); + var0.setDown(false); + var0.setRigth(false); + int var7 = var0.getLives(); + boolean var8 = var0.isDead(); + boolean var9 = var0.isRecovering(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var2 == 1); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 3); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == false); + + } + + public void test151() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test151"); + + + SpaceWar.Text var4 = new SpaceWar.Text(579.3282808260785d, 467.04063594113916d, (-1L), "SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=1.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + + } + + public void test152() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test152"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + SpaceWar.SpacePanel var2 = new SpaceWar.SpacePanel(); + float var3 = var2.getAlignmentX(); + var2.setVisible(false); + java.awt.Dimension var6 = var2.getPreferredSize(); + boolean var7 = var2.getVerifyInputWhenFocusTarget(); + java.awt.Component var10 = var2.findComponentAt(10, 1); + var0.addKeyListener((java.awt.event.KeyListener)var2); + var2.repaint(100, (-1), (-1), 1); + java.awt.image.ColorModel var17 = var2.getColorModel(); + boolean var18 = var2.isFocusTraversalPolicyProvider(); + float var19 = var2.getAlignmentX(); + java.awt.image.ColorModel var20 = var2.getColorModel(); + javax.swing.plaf.PanelUI var21 = var2.getUI(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var21); + + } + + public void test153() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test153"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + java.awt.Dimension var4 = var0.getPreferredSize(); + java.awt.Toolkit var5 = var0.getToolkit(); + boolean var6 = var0.isFocusable(); + javax.swing.KeyStroke[] var7 = var0.getRegisteredKeyStrokes(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + SpaceWar.SpacePanel var10 = new SpaceWar.SpacePanel(); + float var11 = var10.getAlignmentX(); + var10.setVisible(false); + java.awt.Dimension var14 = var10.getPreferredSize(); + boolean var15 = var10.getVerifyInputWhenFocusTarget(); + java.awt.Component var18 = var10.findComponentAt(10, 1); + var8.addKeyListener((java.awt.event.KeyListener)var10); + var10.repaint(100, (-1), (-1), 1); + boolean var25 = var0.isAncestorOf((java.awt.Component)var10); + var0.nextFocus(); + var0.disable(); + java.awt.Dimension var28 = var0.size(); + var0.list(); + var0.resize(100, 0); + var0.transferFocusBackward(); + java.awt.Dimension var34 = var0.getSize(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var4); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var28); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var34); + + } + + public void test154() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test154"); + + + SpaceWar.PowerUp var3 = new SpaceWar.PowerUp(100, (-1.0d), 0.0d); + double var4 = var3.getR(); + int var5 = var3.getType(); + double var6 = var3.getX(); + boolean var7 = var3.update(); + double var8 = var3.getX(); + double var9 = var3.getY(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0.0d); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == 100); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == (-1.0d)); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == (-1.0d)); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 2.0d); + + } + + public void test155() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test155"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + var0.list(); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + float var7 = var6.getAlignmentX(); + var6.setVisible(false); + boolean var10 = var6.isDoubleBuffered(); + java.awt.dnd.DropTarget var11 = var6.getDropTarget(); + var6.show(false); + java.awt.Rectangle var14 = var6.getVisibleRect(); + java.awt.Rectangle var15 = var0.getBounds(var14); + javax.swing.JToolTip var16 = var0.createToolTip(); + var0.firePropertyChange("", false, false); + var0.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", (-1L), (-1L)); + boolean var25 = var0.isBackgroundSet(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == true); + + } + + public void test156() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test156"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.reshape((-1), 1, (-1), 10); + SpaceWar.SpacePanel var10 = new SpaceWar.SpacePanel(); + java.awt.Color var11 = var10.getBackground(); + var10.repaint(); + var10.setRequestFocusEnabled(false); + var10.reshape(100, 0, 100, 0); + java.awt.Component var20 = var0.add((java.awt.Component)var10); + java.awt.im.InputContext var21 = var10.getInputContext(); + var10.enableInputMethods(true); + java.awt.Dimension var24 = var10.size(); + var10.enable(true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertNull(var21); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var24); + + } + + public void test157() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test157"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + var0.setRequestFocusEnabled(false); + var0.reshape(100, 0, 100, 0); + var0.requestFocus(); + var0.firePropertyChange("hi!", '4', ' '); + java.awt.Point var15 = var0.getLocation(); + java.awt.Dimension var16 = var0.size(); + var0.setRequestFocusEnabled(true); + int var19 = var0.getComponentCount(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == 0); + + } + + public void test158() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test158"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + java.awt.im.InputMethodRequests var3 = var0.getInputMethodRequests(); + java.awt.GraphicsConfiguration var4 = var0.getGraphicsConfiguration(); + SpaceWar.SpacePanel var5 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + java.awt.Color var7 = var6.getBackground(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + var8.nextFocus(); + var8.updateUI(); + var8.enableInputMethods(true); + var5.add((java.awt.Component)var6, (java.lang.Object)true); + java.awt.Dimension var17 = var6.getPreferredSize(); + var6.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", (-1.0f), 100.0f); + SpaceWar.SpacePanel var22 = new SpaceWar.SpacePanel(); + float var23 = var22.getAlignmentX(); + var22.setVisible(false); + boolean var26 = var22.isDoubleBuffered(); + SpaceWar.SpacePanel var27 = new SpaceWar.SpacePanel(); + java.awt.Color var28 = var27.getBackground(); + var27.repaint(); + java.lang.Object var30 = var22.getClientProperty((java.lang.Object)var27); + var6.remove((java.awt.Component)var22); + SpaceWar.SpacePanel var32 = new SpaceWar.SpacePanel(); + float var33 = var32.getAlignmentX(); + var32.firePropertyChange("", (-1), 1); + java.awt.event.MouseMotionListener[] var38 = var32.getMouseMotionListeners(); + java.awt.Dimension var39 = var32.getMinimumSize(); + var6.setMaximumSize(var39); + var0.setPreferredSize(var39); + java.awt.Toolkit var42 = var0.getToolkit(); + javax.swing.InputMap var43 = var0.getInputMap(); + boolean var44 = var0.isDoubleBuffered(); + java.awt.Font var45 = var0.getFont(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertNull(var4); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var28); + + // Regression assertion (captures the current behavior of the code) + assertNull(var30); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var33 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var38); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var39); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var42); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var43); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var44 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var45); + + } + + public void test159() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test159"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + var0.enable(false); + boolean var7 = var0.getFocusTraversalKeysEnabled(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + java.awt.Dimension var12 = var8.getPreferredSize(); + java.awt.Toolkit var13 = var8.getToolkit(); + boolean var14 = var8.isFocusable(); + javax.swing.KeyStroke[] var15 = var8.getRegisteredKeyStrokes(); + SpaceWar.SpacePanel var16 = new SpaceWar.SpacePanel(); + float var17 = var16.getAlignmentX(); + SpaceWar.SpacePanel var18 = new SpaceWar.SpacePanel(); + float var19 = var18.getAlignmentX(); + var18.setVisible(false); + java.awt.Dimension var22 = var18.getPreferredSize(); + boolean var23 = var18.getVerifyInputWhenFocusTarget(); + java.awt.Component var26 = var18.findComponentAt(10, 1); + var16.addKeyListener((java.awt.event.KeyListener)var18); + var18.repaint(100, (-1), (-1), 1); + boolean var33 = var8.isAncestorOf((java.awt.Component)var18); + var0.addKeyListener((java.awt.event.KeyListener)var18); + var18.hide(); + java.awt.event.MouseWheelListener[] var36 = var18.getMouseWheelListeners(); + var18.setLocation((-1), 500); + var18.nextFocus(); + java.awt.Rectangle var41 = var18.bounds(); + var18.repaint(400, 3, (-1), 0); + var18.updateUI(); + var18.reshape(24, 499, 3, 100); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var33 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var36); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var41); + + } + + public void test160() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test160"); + + + SpaceWar.Player var0 = new SpaceWar.Player(); + var0.increasePower(25); + int var3 = var0.getR(); + int var4 = var0.getScore(); + var0.loseLife(); + boolean var6 = var0.isRecovering(); + var0.setFiring(false); + int var9 = var0.getScore(); + var0.setLeft(true); + var0.setScore(499); + var0.setUp(false); + int var16 = var0.getY(); + var0.setRigth(false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == 25); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 500); + + } + + public void test161() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test161"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + java.awt.im.InputMethodRequests var3 = var0.getInputMethodRequests(); + int var4 = var0.countComponents(); + java.awt.event.ComponentListener[] var5 = var0.getComponentListeners(); + var0.removeNotify(); + javax.swing.InputMap var7 = var0.getInputMap(); + int var8 = var0.getDebugGraphicsOptions(); + java.awt.Graphics var9 = var0.getGraphics(); + var0.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", (short)(-1), (short)100); + boolean var14 = var0.isEnabled(); + boolean var15 = var0.isMaximumSizeSet(); + SpaceWar.SpacePanel var16 = new SpaceWar.SpacePanel(); + float var17 = var16.getAlignmentX(); + var16.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var22 = var16.getUI(); + var0.setUI(var22); + javax.swing.InputMap var24 = var0.getInputMap(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var9); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var24); + + } + + public void test162() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test162"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var1 = new SpaceWar.SpacePanel(); + java.awt.Color var2 = var1.getBackground(); + SpaceWar.SpacePanel var3 = new SpaceWar.SpacePanel(); + float var4 = var3.getAlignmentX(); + var3.setVisible(false); + var3.nextFocus(); + var3.updateUI(); + var3.enableInputMethods(true); + var0.add((java.awt.Component)var1, (java.lang.Object)true); + java.awt.Image var14 = var1.createImage(1, (-1)); + java.awt.event.MouseListener[] var15 = var1.getMouseListeners(); + java.awt.Color var16 = var1.getBackground(); + boolean var17 = var1.getIgnoreRepaint(); + var1.enable(); + javax.swing.JToolTip var19 = var1.createToolTip(); + SpaceWar.SpacePanel var20 = new SpaceWar.SpacePanel(); + var20.setName(""); + java.awt.Graphics var23 = var20.getGraphics(); + SpaceWar.SpacePanel var24 = new SpaceWar.SpacePanel(); + float var25 = var24.getAlignmentX(); + var24.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var30 = new SpaceWar.SpacePanel(); + float var31 = var30.getAlignmentX(); + var30.setVisible(false); + java.awt.Dimension var34 = var30.getPreferredSize(); + var24.setMaximumSize(var34); + boolean var36 = var24.getVerifyInputWhenFocusTarget(); + int var37 = var24.getX(); + SpaceWar.SpacePanel var38 = new SpaceWar.SpacePanel(); + float var39 = var38.getAlignmentX(); + SpaceWar.SpacePanel var40 = new SpaceWar.SpacePanel(); + float var41 = var40.getAlignmentX(); + var40.setVisible(false); + java.awt.Dimension var44 = var40.getPreferredSize(); + boolean var45 = var40.getVerifyInputWhenFocusTarget(); + java.awt.Component var48 = var40.findComponentAt(10, 1); + var38.addKeyListener((java.awt.event.KeyListener)var40); + var40.repaint(100, (-1), (-1), 1); + SpaceWar.SpacePanel var55 = new SpaceWar.SpacePanel(); + java.awt.Color var56 = var55.getBackground(); + var55.repaint(); + java.awt.im.InputMethodRequests var58 = var55.getInputMethodRequests(); + java.awt.GraphicsConfiguration var59 = var55.getGraphicsConfiguration(); + var40.remove((java.awt.Component)var55); + java.awt.Font var61 = var55.getFont(); + var24.setFont(var61); + var20.setFont(var61); + java.awt.FontMetrics var64 = var1.getFontMetrics(var61); + java.awt.event.MouseWheelListener[] var65 = var1.getMouseWheelListeners(); + boolean var66 = var1.isMinimumSizeSet(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var2); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertNull(var23); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var31 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var34); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var36 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var39 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var41 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var44); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var45 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var48); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var56); + + // Regression assertion (captures the current behavior of the code) + assertNull(var58); + + // Regression assertion (captures the current behavior of the code) + assertNull(var59); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var61); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var64); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var65); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var66 == false); + + } + + public void test163() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test163"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + SpaceWar.SpacePanel var2 = new SpaceWar.SpacePanel(); + float var3 = var2.getAlignmentX(); + var2.setVisible(false); + java.awt.Dimension var6 = var2.getPreferredSize(); + boolean var7 = var2.getVerifyInputWhenFocusTarget(); + java.awt.Component var10 = var2.findComponentAt(10, 1); + var0.addKeyListener((java.awt.event.KeyListener)var2); + SpaceWar.SpacePanel var12 = new SpaceWar.SpacePanel(); + float var13 = var12.getAlignmentX(); + SpaceWar.SpacePanel var14 = new SpaceWar.SpacePanel(); + float var15 = var14.getAlignmentX(); + var14.setVisible(false); + java.awt.Dimension var18 = var14.getPreferredSize(); + boolean var19 = var14.getVerifyInputWhenFocusTarget(); + java.awt.Component var22 = var14.findComponentAt(10, 1); + var12.addKeyListener((java.awt.event.KeyListener)var14); + var14.repaint(100, (-1), (-1), 1); + java.awt.image.ColorModel var29 = var14.getColorModel(); + SpaceWar.SpacePanel var30 = new SpaceWar.SpacePanel(); + float var31 = var30.getAlignmentX(); + var30.setVisible(false); + boolean var34 = var30.isDoubleBuffered(); + var30.list(); + SpaceWar.SpacePanel var36 = new SpaceWar.SpacePanel(); + float var37 = var36.getAlignmentX(); + var36.setVisible(false); + boolean var40 = var36.isDoubleBuffered(); + java.awt.dnd.DropTarget var41 = var36.getDropTarget(); + var36.show(false); + java.awt.Rectangle var44 = var36.getVisibleRect(); + java.awt.image.BufferedImage var46 = var36.loadImg("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + boolean var47 = var30.isAncestorOf((java.awt.Component)var36); + javax.swing.InputVerifier var48 = var36.getInputVerifier(); + var2.putClientProperty((java.lang.Object)var14, (java.lang.Object)var36); + // The following exception was thrown during execution. + // This behavior will recorded for regression testing. + try { + javax.swing.InputMap var51 = var14.getInputMap(100); + fail("Expected exception of type java.lang.IllegalArgumentException"); + } catch (java.lang.IllegalArgumentException e) { + // Expected exception. + } + + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var29); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var31 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var34 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var40 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var41); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var44); + + // Regression assertion (captures the current behavior of the code) + assertNull(var46); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var47 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var48); + + } + + public void test164() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test164"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var6 = var0.getUI(); + java.awt.im.InputMethodRequests var7 = var0.getInputMethodRequests(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + var8.nextFocus(); + var8.updateUI(); + var8.enableInputMethods(true); + var8.setSize((-1), 1); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + var19.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var0.add((java.awt.Component)var8, (java.lang.Object)"SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + java.awt.ComponentOrientation var25 = var8.getComponentOrientation(); + boolean var26 = var8.isMaximumSizeSet(); + SpaceWar.SpacePanel var27 = new SpaceWar.SpacePanel(); + float var28 = var27.getAlignmentX(); + var27.setVisible(false); + boolean var31 = var27.isDoubleBuffered(); + java.awt.dnd.DropTarget var32 = var27.getDropTarget(); + var27.show(false); + boolean var35 = var27.isPaintingForPrint(); + SpaceWar.SpacePanel var36 = new SpaceWar.SpacePanel(); + float var37 = var36.getAlignmentX(); + var36.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var42 = var36.getMouseListeners(); + int var43 = var36.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var44 = var36.getInputMethodRequests(); + var27.addKeyListener((java.awt.event.KeyListener)var36); + SpaceWar.SpacePanel var46 = new SpaceWar.SpacePanel(); + float var47 = var46.getAlignmentX(); + var46.setVisible(false); + boolean var50 = var46.isDoubleBuffered(); + var46.list(); + float var52 = var46.getAlignmentY(); + boolean var53 = var36.isFocusCycleRoot((java.awt.Container)var46); + boolean var54 = var46.isEnabled(); + java.awt.Dimension var55 = var46.getMaximumSize(); + var8.setMinimumSize(var55); + var8.disable(); + int var58 = var8.getComponentCount(); + var8.transferFocusUpCycle(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var25); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var28 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var31 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var32); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var35 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var42); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var43 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var44); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var47 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var50 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var52 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var53 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var54 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var55); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var58 == 0); + + } + + public void test165() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test165"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.updateUI(); + var0.enableInputMethods(true); + var0.setSize((-1), 1); + boolean var13 = var0.contains(1, 1); + javax.swing.TransferHandler var14 = var0.getTransferHandler(); + SpaceWar.SpacePanel var15 = new SpaceWar.SpacePanel(); + float var16 = var15.getAlignmentX(); + var15.setVisible(false); + boolean var19 = var15.isDoubleBuffered(); + var15.enable(false); + java.lang.Object var22 = var0.getClientProperty((java.lang.Object)false); + SpaceWar.SpacePanel var23 = new SpaceWar.SpacePanel(); + float var24 = var23.getAlignmentX(); + var23.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var29 = var23.getMouseListeners(); + java.awt.Dimension var30 = var23.getPreferredSize(); + java.util.Locale var31 = var23.getLocale(); + var23.setFocusable(true); + var23.setSize(3, 10); + SpaceWar.SpacePanel var37 = new SpaceWar.SpacePanel(); + float var38 = var37.getAlignmentX(); + var37.setVisible(false); + java.awt.Dimension var41 = var37.getPreferredSize(); + boolean var42 = var37.getVerifyInputWhenFocusTarget(); + java.awt.Dimension var43 = var37.size(); + var23.setSize(var43); + var0.setPreferredSize(var43); + javax.swing.JRootPane var46 = var0.getRootPane(); + java.awt.event.MouseMotionListener[] var47 = var0.getMouseMotionListeners(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var24 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var29); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var30); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var31); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var38 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var41); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var42 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var43); + + // Regression assertion (captures the current behavior of the code) + assertNull(var46); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var47); + + } + + public void test166() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test166"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + var0.setRequestFocusEnabled(false); + var0.reshape(100, 0, 100, 0); + var0.requestFocus(); + var0.firePropertyChange("hi!", '4', ' '); + SpaceWar.Enemy var17 = new SpaceWar.Enemy(0, 100); + int var18 = var17.getR(); + var17.explode(); + var0.putClientProperty((java.lang.Object)var17, (java.lang.Object)(short)10); + boolean var23 = var0.requestFocus(false); + javax.swing.JRootPane var24 = var0.getRootPane(); + boolean var25 = var0.hasFocus(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == false); + + } + + public void test167() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test167"); + + + SpaceWar.Player var0 = new SpaceWar.Player(); + var0.increasePower(25); + int var3 = var0.getScore(); + var0.setRigth(true); + var0.loseLife(); + var0.setLeft(true); + boolean var9 = var0.isRecovering(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == true); + + } + + public void test168() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test168"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var1 = new SpaceWar.SpacePanel(); + java.awt.Color var2 = var1.getBackground(); + SpaceWar.SpacePanel var3 = new SpaceWar.SpacePanel(); + float var4 = var3.getAlignmentX(); + var3.setVisible(false); + var3.nextFocus(); + var3.updateUI(); + var3.enableInputMethods(true); + var0.add((java.awt.Component)var1, (java.lang.Object)true); + boolean var13 = var1.areFocusTraversalKeysSet(0); + SpaceWar.SpacePanel var14 = new SpaceWar.SpacePanel(); + float var15 = var14.getAlignmentX(); + var14.setVisible(false); + SpaceWar.SpacePanel var18 = new SpaceWar.SpacePanel(); + java.awt.Color var19 = var18.getBackground(); + var14.setForeground(var19); + SpaceWar.SpacePanel var21 = new SpaceWar.SpacePanel(); + float var22 = var21.getAlignmentX(); + var21.setVisible(false); + boolean var25 = var21.isDoubleBuffered(); + java.awt.dnd.DropTarget var26 = var21.getDropTarget(); + var21.show(false); + java.awt.Rectangle var29 = var21.getVisibleRect(); + var14.repaint(var29); + java.awt.FocusTraversalPolicy var31 = var14.getFocusTraversalPolicy(); + SpaceWar.SpacePanel var32 = new SpaceWar.SpacePanel(); + float var33 = var32.getAlignmentX(); + var32.firePropertyChange("", (-1), 1); + boolean var38 = var32.isFocusOwner(); + SpaceWar.SpacePanel var40 = new SpaceWar.SpacePanel(); + float var41 = var40.getAlignmentX(); + var40.setVisible(false); + java.awt.Dimension var44 = var40.getPreferredSize(); + java.awt.Toolkit var45 = var40.getToolkit(); + SpaceWar.SpacePanel var46 = new SpaceWar.SpacePanel(); + var46.setName(""); + int var49 = var46.getX(); + SpaceWar.SpacePanel var50 = new SpaceWar.SpacePanel(); + float var51 = var50.getAlignmentX(); + var50.setVisible(false); + var50.nextFocus(); + SpaceWar.SpacePanel var55 = new SpaceWar.SpacePanel(); + float var56 = var55.getAlignmentX(); + var55.setVisible(false); + SpaceWar.SpacePanel var59 = new SpaceWar.SpacePanel(); + java.awt.Color var60 = var59.getBackground(); + var55.setForeground(var60); + var50.setBackground(var60); + var46.setBackground(var60); + var40.setForeground(var60); + var32.putClientProperty((java.lang.Object)(byte)100, (java.lang.Object)var60); + var14.setBackground(var60); + SpaceWar.SpacePanel var67 = new SpaceWar.SpacePanel(); + float var68 = var67.getAlignmentX(); + var67.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var73 = new SpaceWar.SpacePanel(); + float var74 = var73.getAlignmentX(); + var73.setVisible(false); + SpaceWar.SpacePanel var77 = new SpaceWar.SpacePanel(); + java.awt.Color var78 = var77.getBackground(); + var73.setForeground(var78); + var67.setBackground(var78); + java.awt.Point var81 = var67.location(); + java.awt.Point var82 = var14.getLocation(var81); + boolean var83 = var1.contains(var82); + boolean var84 = var1.isDisplayable(); + boolean var85 = var1.isFocusTraversalPolicyProvider(); + var1.resize((-1), 3); + java.awt.Color var89 = var1.getBackground(); + var1.setSize(500, (-1)); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var2); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var22 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var29); + + // Regression assertion (captures the current behavior of the code) + assertNull(var31); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var33 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var38 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var41 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var44); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var45); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var49 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var51 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var56 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var60); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var68 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var74 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var78); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var81); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var82); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var83 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var84 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var85 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var89); + + } + + public void test169() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test169"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.reshape((-1), 1, (-1), 10); + var0.disable(); + java.awt.LayoutManager var11 = var0.getLayout(); + var0.setVisible(false); + SpaceWar.SpacePanel var14 = new SpaceWar.SpacePanel(); + float var15 = var14.getAlignmentX(); + var14.setVisible(false); + var14.setInheritsPopupMenu(false); + boolean var20 = var14.isDoubleBuffered(); + boolean var21 = var14.isMinimumSizeSet(); + SpaceWar.SpacePanel var22 = new SpaceWar.SpacePanel(); + float var23 = var22.getAlignmentX(); + var22.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var28 = new SpaceWar.SpacePanel(); + float var29 = var28.getAlignmentX(); + var28.setVisible(false); + java.awt.Dimension var32 = var28.getPreferredSize(); + var22.setMaximumSize(var32); + boolean var34 = var22.getVerifyInputWhenFocusTarget(); + javax.accessibility.AccessibleContext var35 = var22.getAccessibleContext(); + boolean var36 = var22.isDoubleBuffered(); + java.awt.Rectangle var37 = var22.getVisibleRect(); + var14.setBounds(var37); + var0.computeVisibleRect(var37); + SpaceWar.SpacePanel var40 = new SpaceWar.SpacePanel(); + float var41 = var40.getAlignmentX(); + var40.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var46 = new SpaceWar.SpacePanel(); + float var47 = var46.getAlignmentX(); + var46.setVisible(false); + java.awt.Dimension var50 = var46.getPreferredSize(); + var40.setMaximumSize(var50); + boolean var52 = var40.getVerifyInputWhenFocusTarget(); + int var53 = var40.getX(); + java.awt.Rectangle var54 = var40.bounds(); + var0.remove((java.awt.Component)var40); + java.awt.Rectangle var56 = var0.bounds(); + javax.swing.JPopupMenu var57 = var0.getComponentPopupMenu(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var29 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var32); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var34 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var35); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var36 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var37); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var41 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var47 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var50); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var52 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var53 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var54); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var56); + + // Regression assertion (captures the current behavior of the code) + assertNull(var57); + + } + + public void test170() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test170"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + var0.setRequestFocusEnabled(false); + var0.reshape(100, 0, 100, 0); + javax.swing.event.AncestorListener[] var10 = var0.getAncestorListeners(); + var0.resize(10, 0); + java.awt.Dimension var14 = var0.preferredSize(); + java.awt.im.InputMethodRequests var15 = var0.getInputMethodRequests(); + var0.transferFocusDownCycle(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertNull(var15); + + } + + public void test171() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test171"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + java.awt.im.InputMethodRequests var3 = var0.getInputMethodRequests(); + var0.setDoubleBuffered(true); + var0.show(false); + var0.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", (-1), 24); + boolean var12 = var0.requestFocusInWindow(); + boolean var13 = var0.hasFocus(); + var0.enable(true); + SpaceWar.SpacePanel var16 = new SpaceWar.SpacePanel(); + float var17 = var16.getAlignmentX(); + SpaceWar.SpacePanel var18 = new SpaceWar.SpacePanel(); + float var19 = var18.getAlignmentX(); + var18.setVisible(false); + java.awt.Dimension var22 = var18.getPreferredSize(); + boolean var23 = var18.getVerifyInputWhenFocusTarget(); + java.awt.Component var26 = var18.findComponentAt(10, 1); + var16.addKeyListener((java.awt.event.KeyListener)var18); + var18.repaint(100, (-1), (-1), 1); + java.awt.image.ColorModel var33 = var18.getColorModel(); + boolean var34 = var18.isFocusTraversalPolicyProvider(); + float var35 = var18.getAlignmentX(); + java.awt.event.FocusListener[] var36 = var18.getFocusListeners(); + SpaceWar.SpacePanel var37 = new SpaceWar.SpacePanel(); + float var38 = var37.getAlignmentX(); + var37.setVisible(false); + var37.nextFocus(); + var37.repaint(1L); + SpaceWar.SpacePanel var44 = new SpaceWar.SpacePanel(); + float var45 = var44.getAlignmentX(); + var44.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var50 = new SpaceWar.SpacePanel(); + float var51 = var50.getAlignmentX(); + var50.setVisible(false); + java.awt.Dimension var54 = var50.getPreferredSize(); + var44.setMaximumSize(var54); + var37.setPreferredSize(var54); + javax.swing.plaf.PanelUI var57 = var37.getUI(); + SpaceWar.SpacePanel var58 = new SpaceWar.SpacePanel(); + float var59 = var58.getAlignmentX(); + var58.setVisible(false); + var58.nextFocus(); + var58.reshape((-1), 1, (-1), 10); + var58.disable(); + java.awt.LayoutManager var69 = var58.getLayout(); + java.awt.Container var70 = var58.getParent(); + java.lang.String var71 = var58.getUIClassID(); + SpaceWar.Enemy var74 = new SpaceWar.Enemy(0, 10); + var37.add((java.awt.Component)var58, (java.lang.Object)10); + var58.invalidate(); + java.awt.Dimension var77 = var58.size(); + java.awt.Dimension var78 = var18.getSize(var77); + var0.setPreferredSize(var78); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var33); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var34 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var35 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var36); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var38 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var45 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var51 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var54); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var57); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var59 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var69); + + // Regression assertion (captures the current behavior of the code) + assertNull(var70); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var71 + "' != '" + "PanelUI"+ "'", var71.equals("PanelUI")); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var77); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var78); + + } + + public void test172() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test172"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + boolean var2 = var0.hasFocus(); + SpaceWar.SpacePanel var3 = new SpaceWar.SpacePanel(); + float var4 = var3.getAlignmentX(); + var3.setVisible(false); + var3.nextFocus(); + var3.reshape((-1), 1, (-1), 10); + var3.disable(); + java.awt.LayoutManager var14 = var3.getLayout(); + var3.setVisible(false); + var0.remove((java.awt.Component)var3); + var3.repaint(); + boolean var19 = var3.hasFocus(); + javax.swing.plaf.PanelUI var20 = var3.getUI(); + var3.setBounds(400, 10, 25, 2); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var2 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + } + + public void test173() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test173"); + + + SpaceWar.Text var4 = new SpaceWar.Text(0.0d, 100.0d, 1L, "SpaceWar.SpacePanel[,-1,1,-1x10,invalid,hidden,disabled,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + boolean var5 = var4.update(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == false); + + } + + public void test174() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test174"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + javax.swing.event.AncestorListener[] var1 = var0.getAncestorListeners(); + var0.setOpaque(false); + var0.setFocusTraversalPolicyProvider(false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + } + + public void test175() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test175"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var1 = new SpaceWar.SpacePanel(); + java.awt.Color var2 = var1.getBackground(); + SpaceWar.SpacePanel var3 = new SpaceWar.SpacePanel(); + float var4 = var3.getAlignmentX(); + var3.setVisible(false); + var3.nextFocus(); + var3.updateUI(); + var3.enableInputMethods(true); + var0.add((java.awt.Component)var1, (java.lang.Object)true); + java.awt.Image var14 = var1.createImage(1, (-1)); + java.awt.event.MouseListener[] var15 = var1.getMouseListeners(); + java.awt.Color var16 = var1.getBackground(); + boolean var17 = var1.getIgnoreRepaint(); + var1.enable(); + SpaceWar.Player var19 = new SpaceWar.Player(); + int var20 = var19.getR(); + boolean var21 = var19.isRecovering(); + SpaceWar.SpacePanel var22 = new SpaceWar.SpacePanel(); + java.awt.Color var23 = var22.getBackground(); + var22.repaint(); + var22.setRequestFocusEnabled(false); + var22.setIgnoreRepaint(false); + java.lang.String var29 = var22.toString(); + var1.putClientProperty((java.lang.Object)var21, (java.lang.Object)var29); + boolean var31 = var1.isValid(); + java.lang.String var32 = var1.getName(); + var1.transferFocusDownCycle(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var2); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == 25); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var23); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var29 + "' != '" + "SpaceWar.SpacePanel[,0,0,0var29,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"+ "'", var29.equals("SpaceWar.SpacePanel[,0,0,0var29,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]")); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var31 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var32); + + } + + public void test176() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test176"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + var0.list(); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + float var7 = var6.getAlignmentX(); + var6.setVisible(false); + boolean var10 = var6.isDoubleBuffered(); + java.awt.dnd.DropTarget var11 = var6.getDropTarget(); + var6.show(false); + java.awt.Rectangle var14 = var6.getVisibleRect(); + java.awt.Rectangle var15 = var0.getBounds(var14); + javax.swing.JToolTip var16 = var0.createToolTip(); + java.awt.Graphics var17 = var0.getGraphics(); + java.beans.VetoableChangeListener[] var18 = var0.getVetoableChangeListeners(); + var0.hide(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var18); + + } + + public void test177() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test177"); + + + SpaceWar.PowerUp var3 = new SpaceWar.PowerUp(100, (-1.0d), 0.0d); + double var4 = var3.getR(); + int var5 = var3.getType(); + boolean var6 = var3.update(); + double var7 = var3.getX(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0.0d); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == 100); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == (-1.0d)); + + } + + public void test178() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test178"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + var0.show(false); + boolean var8 = var0.isPaintingForPrint(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var15 = var9.getMouseListeners(); + int var16 = var9.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var17 = var9.getInputMethodRequests(); + var0.addKeyListener((java.awt.event.KeyListener)var9); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + float var20 = var19.getAlignmentX(); + var19.setVisible(false); + boolean var23 = var19.isDoubleBuffered(); + var19.list(); + float var25 = var19.getAlignmentY(); + boolean var26 = var9.isFocusCycleRoot((java.awt.Container)var19); + boolean var27 = var19.isEnabled(); + java.awt.Dimension var28 = var19.getMaximumSize(); + int var29 = var19.countComponents(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var28); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var29 == 0); + + } + + public void test179() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test179"); + + + SpaceWar.Player var0 = new SpaceWar.Player(); + boolean var1 = var0.isRecovering(); + var0.setUp(true); + int var4 = var0.getY(); + int var5 = var0.getR(); + var0.setLeft(false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 500); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == 25); + + } + + public void test180() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test180"); + + + SpaceWar.PowerUp var3 = new SpaceWar.PowerUp(1, 370.2289277239558d, (-20.05877926032409d)); + + } + + public void test181() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test181"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + var0.setName(""); + java.awt.Dimension var3 = var0.minimumSize(); + boolean var4 = var0.isDoubleBuffered(); + SpaceWar.SpacePanel var5 = new SpaceWar.SpacePanel(); + float var6 = var5.getAlignmentX(); + SpaceWar.SpacePanel var7 = new SpaceWar.SpacePanel(); + float var8 = var7.getAlignmentX(); + var7.setVisible(false); + java.awt.Dimension var11 = var7.getPreferredSize(); + boolean var12 = var7.getVerifyInputWhenFocusTarget(); + java.awt.Component var15 = var7.findComponentAt(10, 1); + var5.addKeyListener((java.awt.event.KeyListener)var7); + var7.repaint(100, (-1), (-1), 1); + SpaceWar.SpacePanel var22 = new SpaceWar.SpacePanel(); + java.awt.Color var23 = var22.getBackground(); + var22.repaint(); + java.awt.im.InputMethodRequests var25 = var22.getInputMethodRequests(); + java.awt.GraphicsConfiguration var26 = var22.getGraphicsConfiguration(); + var7.remove((java.awt.Component)var22); + java.awt.Font var28 = var22.getFont(); + java.awt.FontMetrics var29 = var0.getFontMetrics(var28); + var0.resize(3, (-1)); + java.util.Locale var33 = var0.getLocale(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var23); + + // Regression assertion (captures the current behavior of the code) + assertNull(var25); + + // Regression assertion (captures the current behavior of the code) + assertNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var28); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var29); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var33); + + } + + public void test182() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test182"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + SpaceWar.SpacePanel var4 = new SpaceWar.SpacePanel(); + java.awt.Color var5 = var4.getBackground(); + var0.setForeground(var5); + SpaceWar.SpacePanel var7 = new SpaceWar.SpacePanel(); + float var8 = var7.getAlignmentX(); + var7.setVisible(false); + boolean var11 = var7.isDoubleBuffered(); + java.awt.dnd.DropTarget var12 = var7.getDropTarget(); + var7.show(false); + java.awt.Rectangle var15 = var7.getVisibleRect(); + var0.repaint(var15); + java.awt.FocusTraversalPolicy var17 = var0.getFocusTraversalPolicy(); + SpaceWar.SpacePanel var18 = new SpaceWar.SpacePanel(); + float var19 = var18.getAlignmentX(); + var18.firePropertyChange("", (-1), 1); + boolean var24 = var18.isFocusOwner(); + SpaceWar.SpacePanel var26 = new SpaceWar.SpacePanel(); + float var27 = var26.getAlignmentX(); + var26.setVisible(false); + java.awt.Dimension var30 = var26.getPreferredSize(); + java.awt.Toolkit var31 = var26.getToolkit(); + SpaceWar.SpacePanel var32 = new SpaceWar.SpacePanel(); + var32.setName(""); + int var35 = var32.getX(); + SpaceWar.SpacePanel var36 = new SpaceWar.SpacePanel(); + float var37 = var36.getAlignmentX(); + var36.setVisible(false); + var36.nextFocus(); + SpaceWar.SpacePanel var41 = new SpaceWar.SpacePanel(); + float var42 = var41.getAlignmentX(); + var41.setVisible(false); + SpaceWar.SpacePanel var45 = new SpaceWar.SpacePanel(); + java.awt.Color var46 = var45.getBackground(); + var41.setForeground(var46); + var36.setBackground(var46); + var32.setBackground(var46); + var26.setForeground(var46); + var18.putClientProperty((java.lang.Object)(byte)100, (java.lang.Object)var46); + var0.setBackground(var46); + SpaceWar.SpacePanel var53 = new SpaceWar.SpacePanel(); + float var54 = var53.getAlignmentX(); + var53.setVisible(false); + boolean var57 = var53.isDoubleBuffered(); + java.awt.dnd.DropTarget var58 = var53.getDropTarget(); + var53.show(false); + boolean var61 = var53.isPaintingForPrint(); + SpaceWar.SpacePanel var62 = new SpaceWar.SpacePanel(); + float var63 = var62.getAlignmentX(); + SpaceWar.SpacePanel var64 = new SpaceWar.SpacePanel(); + float var65 = var64.getAlignmentX(); + var64.setVisible(false); + java.awt.Dimension var68 = var64.getPreferredSize(); + boolean var69 = var64.getVerifyInputWhenFocusTarget(); + java.awt.Component var72 = var64.findComponentAt(10, 1); + var62.addKeyListener((java.awt.event.KeyListener)var64); + java.awt.Dimension var74 = var64.getMinimumSize(); + var53.setMinimumSize(var74); + java.awt.Dimension var76 = var0.getSize(var74); + var0.doLayout(); + SpaceWar.SpacePanel var78 = new SpaceWar.SpacePanel(); + var78.setName(""); + int var81 = var78.getX(); + SpaceWar.SpacePanel var82 = new SpaceWar.SpacePanel(); + float var83 = var82.getAlignmentX(); + var82.setVisible(false); + var82.nextFocus(); + SpaceWar.SpacePanel var87 = new SpaceWar.SpacePanel(); + float var88 = var87.getAlignmentX(); + var87.setVisible(false); + SpaceWar.SpacePanel var91 = new SpaceWar.SpacePanel(); + java.awt.Color var92 = var91.getBackground(); + var87.setForeground(var92); + var82.setBackground(var92); + var78.setBackground(var92); + boolean var96 = var78.isFocusable(); + java.awt.Dimension var97 = var78.minimumSize(); + var0.setMinimumSize(var97); + var0.removeAll(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var24 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var30); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var31); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var35 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var42 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var46); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var54 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var57 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var58); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var61 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var63 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var65 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var68); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var69 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var72); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var74); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var76); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var81 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var83 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var88 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var92); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var96 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var97); + + } + + public void test183() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test183"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var1 = new SpaceWar.SpacePanel(); + java.awt.Color var2 = var1.getBackground(); + SpaceWar.SpacePanel var3 = new SpaceWar.SpacePanel(); + float var4 = var3.getAlignmentX(); + var3.setVisible(false); + var3.nextFocus(); + var3.updateUI(); + var3.enableInputMethods(true); + var0.add((java.awt.Component)var1, (java.lang.Object)true); + java.awt.Dimension var12 = var1.getPreferredSize(); + boolean var13 = var1.isValidateRoot(); + java.awt.image.BufferedImage var15 = var1.loadImg(""); + int var16 = var1.getX(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var2); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0); + + } + + public void test184() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test184"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + SpaceWar.SpacePanel var4 = new SpaceWar.SpacePanel(); + java.awt.Color var5 = var4.getBackground(); + var0.setForeground(var5); + SpaceWar.SpacePanel var7 = new SpaceWar.SpacePanel(); + float var8 = var7.getAlignmentX(); + var7.setVisible(false); + boolean var11 = var7.isDoubleBuffered(); + java.awt.dnd.DropTarget var12 = var7.getDropTarget(); + var7.show(false); + java.awt.Rectangle var15 = var7.getVisibleRect(); + var0.repaint(var15); + java.awt.FocusTraversalPolicy var17 = var0.getFocusTraversalPolicy(); + java.awt.im.InputMethodRequests var18 = var0.getInputMethodRequests(); + var0.layout(); + java.awt.Point var20 = var0.getMousePosition(); + java.awt.Graphics var21 = var0.getGraphics(); + boolean var22 = var0.isManagingFocus(); + var0.transferFocusUpCycle(); + var0.move(500, 505); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertNull(var21); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var22 == false); + + } + + public void test185() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test185"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + var0.show(false); + boolean var8 = var0.isPaintingForPrint(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var15 = var9.getMouseListeners(); + int var16 = var9.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var17 = var9.getInputMethodRequests(); + var0.addKeyListener((java.awt.event.KeyListener)var9); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + float var20 = var19.getAlignmentX(); + var19.setVisible(false); + boolean var23 = var19.isDoubleBuffered(); + var19.list(); + float var25 = var19.getAlignmentY(); + boolean var26 = var9.isFocusCycleRoot((java.awt.Container)var19); + SpaceWar.SpacePanel var28 = new SpaceWar.SpacePanel(); + float var29 = var28.getAlignmentX(); + var28.setVisible(false); + var28.nextFocus(); + var28.updateUI(); + java.awt.Component var34 = var9.add("", (java.awt.Component)var28); + java.awt.ComponentOrientation var35 = var28.getComponentOrientation(); + java.awt.Point var37 = var28.getMousePosition(true); + var28.setVerifyInputWhenFocusTarget(false); + SpaceWar.SpacePanel var40 = new SpaceWar.SpacePanel(); + float var41 = var40.getAlignmentX(); + var40.setVisible(false); + java.awt.Dimension var44 = var40.getPreferredSize(); + boolean var45 = var40.getVerifyInputWhenFocusTarget(); + java.awt.event.MouseWheelListener[] var46 = var40.getMouseWheelListeners(); + java.awt.event.MouseWheelListener[] var47 = var40.getMouseWheelListeners(); + boolean var49 = var40.requestFocus(false); + SpaceWar.SpacePanel var50 = new SpaceWar.SpacePanel(); + float var51 = var50.getAlignmentX(); + var50.setVisible(false); + boolean var54 = var50.isDoubleBuffered(); + SpaceWar.SpacePanel var55 = new SpaceWar.SpacePanel(); + java.awt.Color var56 = var55.getBackground(); + var55.repaint(); + java.lang.Object var58 = var50.getClientProperty((java.lang.Object)var55); + SpaceWar.SpacePanel var59 = new SpaceWar.SpacePanel(); + java.awt.Color var60 = var59.getBackground(); + boolean var63 = var59.inside(0, (-1)); + SpaceWar.SpacePanel var64 = new SpaceWar.SpacePanel(); + float var65 = var64.getAlignmentX(); + var64.setVisible(false); + SpaceWar.SpacePanel var68 = new SpaceWar.SpacePanel(); + java.awt.Color var69 = var68.getBackground(); + var64.setForeground(var69); + var59.setForeground(var69); + var55.setBackground(var69); + java.awt.Image var75 = var55.createImage(100, 24); + java.awt.Dimension var76 = var55.getMinimumSize(); + var40.setSize(var76); + var28.resize(var76); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var29 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var34); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var35); + + // Regression assertion (captures the current behavior of the code) + assertNull(var37); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var41 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var44); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var45 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var46); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var47); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var49 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var51 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var54 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var56); + + // Regression assertion (captures the current behavior of the code) + assertNull(var58); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var60); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var63 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var65 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var69); + + // Regression assertion (captures the current behavior of the code) + assertNull(var75); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var76); + + } + + public void test186() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test186"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.reshape((-1), 1, (-1), 10); + var0.disable(); + java.awt.Component var13 = var0.findComponentAt(0, (-1)); + SpaceWar.SpacePanel var14 = new SpaceWar.SpacePanel(); + var14.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + javax.swing.plaf.PanelUI var19 = var14.getUI(); + SpaceWar.SpacePanel var20 = new SpaceWar.SpacePanel(); + float var21 = var20.getAlignmentX(); + var20.setVisible(false); + var20.nextFocus(); + var20.repaint(1L); + SpaceWar.SpacePanel var27 = new SpaceWar.SpacePanel(); + float var28 = var27.getAlignmentX(); + var27.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var33 = new SpaceWar.SpacePanel(); + float var34 = var33.getAlignmentX(); + var33.setVisible(false); + java.awt.Dimension var37 = var33.getPreferredSize(); + var27.setMaximumSize(var37); + var20.setPreferredSize(var37); + var14.setMaximumSize(var37); + var0.setSize(var37); + SpaceWar.SpacePanel var42 = new SpaceWar.SpacePanel(); + float var43 = var42.getAlignmentX(); + boolean var44 = var42.hasFocus(); + boolean var45 = var42.isPreferredSizeSet(); + SpaceWar.SpacePanel var46 = new SpaceWar.SpacePanel(); + java.awt.Color var47 = var46.getBackground(); + var46.repaint(); + var46.setRequestFocusEnabled(false); + int var51 = var42.getComponentZOrder((java.awt.Component)var46); + boolean var52 = var42.requestDefaultFocus(); + javax.swing.border.Border var53 = var42.getBorder(); + int var54 = var0.getComponentZOrder((java.awt.Component)var42); + javax.accessibility.AccessibleContext var55 = var42.getAccessibleContext(); + SpaceWar.SpacePanel var56 = new SpaceWar.SpacePanel(); + float var57 = var56.getAlignmentX(); + var56.setVisible(false); + var56.nextFocus(); + var56.updateUI(); + var56.enableInputMethods(true); + var56.setSize((-1), 1); + boolean var67 = var42.isAncestorOf((java.awt.Component)var56); + var56.list(); + java.awt.Component var71 = var56.locate(3, 24); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var28 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var34 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var37); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var43 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var44 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var45 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var47); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var51 == (-1)); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var52 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var53); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var54 == (-1)); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var55); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var57 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var67 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var71); + + } + + public void test187() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test187"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + float var7 = var6.getAlignmentX(); + var6.setVisible(false); + java.awt.Dimension var10 = var6.getPreferredSize(); + var0.setMaximumSize(var10); + boolean var12 = var0.getVerifyInputWhenFocusTarget(); + javax.accessibility.AccessibleContext var13 = var0.getAccessibleContext(); + boolean var14 = var0.isDoubleBuffered(); + boolean var15 = var0.getAutoscrolls(); + java.lang.String var16 = var0.getUIClassID(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var16 + "' != '" + "PanelUI"+ "'", var16.equals("PanelUI")); + + } + + public void test188() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test188"); + + + SpaceWar.Player var0 = new SpaceWar.Player(); + int var1 = var0.getPower(); + var0.setLeft(true); + var0.increasePower(0); + int var6 = var0.getR(); + int var7 = var0.getLives(); + int var8 = var0.getPowerLevel(); + var0.loseLife(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == 25); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 3); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 0); + + } + + public void test189() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test189"); + + + SpaceWar.Player var0 = new SpaceWar.Player(); + var0.increasePower(25); + int var3 = var0.getScore(); + var0.setRigth(true); + var0.loseLife(); + int var7 = var0.getPower(); + int var8 = var0.getX(); + int var9 = var0.getPower(); + var0.setDown(true); + var0.setLife(100); + int var14 = var0.getPower(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 24); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 400); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 24); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == 24); + + } + + public void test190() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test190"); + + + SpaceWar.Player var0 = new SpaceWar.Player(); + var0.increasePower(25); + int var3 = var0.getScore(); + var0.setRigth(true); + var0.loseLife(); + var0.setLeft(true); + int var9 = var0.getR(); + boolean var10 = var0.isRecovering(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 25); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == true); + + } + + public void test191() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test191"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + var0.list(); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + float var7 = var6.getAlignmentX(); + var6.setVisible(false); + boolean var10 = var6.isDoubleBuffered(); + java.awt.dnd.DropTarget var11 = var6.getDropTarget(); + var6.show(false); + java.awt.Rectangle var14 = var6.getVisibleRect(); + java.awt.Rectangle var15 = var0.getBounds(var14); + javax.swing.JToolTip var16 = var0.createToolTip(); + java.awt.Graphics var17 = var0.getGraphics(); + var0.enable(false); + var0.enable(true); + boolean var22 = var0.isEnabled(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var22 == true); + + } + + public void test192() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test192"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.updateUI(); + var0.enableInputMethods(true); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + boolean var10 = var8.hasFocus(); + java.awt.Insets var11 = var8.getInsets(); + java.awt.Insets var12 = var0.getInsets(var11); + var0.disable(); + SpaceWar.SpacePanel var14 = new SpaceWar.SpacePanel(); + float var15 = var14.getAlignmentX(); + var14.setVisible(false); + var14.nextFocus(); + var14.reshape((-1), 1, (-1), 10); + var14.disable(); + boolean var25 = var14.isFocusable(); + int var26 = var14.getHeight(); + javax.swing.InputVerifier var27 = var14.getInputVerifier(); + java.awt.Graphics var28 = var14.getGraphics(); + java.awt.Color var29 = var14.getForeground(); + var0.setBackground(var29); + java.awt.Graphics var31 = var0.getGraphics(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == 10); + + // Regression assertion (captures the current behavior of the code) + assertNull(var27); + + // Regression assertion (captures the current behavior of the code) + assertNull(var28); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var29); + + // Regression assertion (captures the current behavior of the code) + assertNull(var31); + + } + + public void test193() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test193"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.setInheritsPopupMenu(false); + boolean var6 = var0.isMinimumSizeSet(); + java.awt.FocusTraversalPolicy var7 = var0.getFocusTraversalPolicy(); + java.awt.image.BufferedImage var9 = var0.loadImg("hi!"); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertNull(var9); + + } + + public void test194() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test194"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + SpaceWar.SpacePanel var2 = new SpaceWar.SpacePanel(); + float var3 = var2.getAlignmentX(); + var2.setVisible(false); + java.awt.Dimension var6 = var2.getPreferredSize(); + boolean var7 = var2.getVerifyInputWhenFocusTarget(); + java.awt.Component var10 = var2.findComponentAt(10, 1); + var0.addKeyListener((java.awt.event.KeyListener)var2); + var2.repaint(100, (-1), (-1), 1); + java.awt.image.ColorModel var17 = var2.getColorModel(); + boolean var18 = var2.isFocusTraversalPolicyProvider(); + var2.setVerifyInputWhenFocusTarget(true); + boolean var21 = var2.getIgnoreRepaint(); + javax.swing.ActionMap var22 = var2.getActionMap(); + java.awt.Toolkit var23 = var2.getToolkit(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var23); + + } + + public void test195() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test195"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var1 = new SpaceWar.SpacePanel(); + java.awt.Color var2 = var1.getBackground(); + SpaceWar.SpacePanel var3 = new SpaceWar.SpacePanel(); + float var4 = var3.getAlignmentX(); + var3.setVisible(false); + var3.nextFocus(); + var3.updateUI(); + var3.enableInputMethods(true); + var0.add((java.awt.Component)var1, (java.lang.Object)true); + boolean var12 = var0.isMinimumSizeSet(); + java.awt.event.HierarchyListener[] var13 = var0.getHierarchyListeners(); + int var14 = var0.getComponentCount(); + SpaceWar.SpacePanel var15 = new SpaceWar.SpacePanel(); + java.awt.Color var16 = var15.getBackground(); + var15.repaint(); + var15.setRequestFocusEnabled(false); + var15.removeAll(); + var0.setNextFocusableComponent((java.awt.Component)var15); + var0.layout(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var2); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == 1); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + } + + public void test196() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test196"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var1 = new SpaceWar.SpacePanel(); + java.awt.Color var2 = var1.getBackground(); + SpaceWar.SpacePanel var3 = new SpaceWar.SpacePanel(); + float var4 = var3.getAlignmentX(); + var3.setVisible(false); + var3.nextFocus(); + var3.updateUI(); + var3.enableInputMethods(true); + var0.add((java.awt.Component)var1, (java.lang.Object)true); + java.awt.Image var14 = var1.createImage(1, (-1)); + SpaceWar.SpacePanel var15 = new SpaceWar.SpacePanel(); + float var16 = var15.getAlignmentX(); + var15.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var21 = new SpaceWar.SpacePanel(); + float var22 = var21.getAlignmentX(); + var21.setVisible(false); + java.awt.Dimension var25 = var21.getPreferredSize(); + var15.setMaximumSize(var25); + boolean var27 = var15.getVerifyInputWhenFocusTarget(); + int var28 = var15.getX(); + SpaceWar.SpacePanel var29 = new SpaceWar.SpacePanel(); + float var30 = var29.getAlignmentX(); + SpaceWar.SpacePanel var31 = new SpaceWar.SpacePanel(); + float var32 = var31.getAlignmentX(); + var31.setVisible(false); + java.awt.Dimension var35 = var31.getPreferredSize(); + boolean var36 = var31.getVerifyInputWhenFocusTarget(); + java.awt.Component var39 = var31.findComponentAt(10, 1); + var29.addKeyListener((java.awt.event.KeyListener)var31); + var31.repaint(100, (-1), (-1), 1); + SpaceWar.SpacePanel var46 = new SpaceWar.SpacePanel(); + java.awt.Color var47 = var46.getBackground(); + var46.repaint(); + java.awt.im.InputMethodRequests var49 = var46.getInputMethodRequests(); + java.awt.GraphicsConfiguration var50 = var46.getGraphicsConfiguration(); + var31.remove((java.awt.Component)var46); + java.awt.Font var52 = var46.getFont(); + var15.setFont(var52); + SpaceWar.SpacePanel var54 = new SpaceWar.SpacePanel(); + float var55 = var54.getAlignmentX(); + var54.setVisible(false); + var54.nextFocus(); + var54.reshape((-1), 1, (-1), 10); + var54.disable(); + java.awt.LayoutManager var65 = var54.getLayout(); + var15.setLayout(var65); + SpaceWar.SpacePanel var67 = new SpaceWar.SpacePanel(); + float var68 = var67.getAlignmentX(); + var67.setVisible(false); + var67.nextFocus(); + SpaceWar.SpacePanel var72 = new SpaceWar.SpacePanel(); + float var73 = var72.getAlignmentX(); + var72.setVisible(false); + SpaceWar.SpacePanel var76 = new SpaceWar.SpacePanel(); + java.awt.Color var77 = var76.getBackground(); + var72.setForeground(var77); + var67.setBackground(var77); + java.awt.Component var80 = var67.getNextFocusableComponent(); + float var81 = var67.getAlignmentY(); + java.awt.event.MouseListener[] var82 = var67.getMouseListeners(); + java.awt.Point var83 = var67.location(); + boolean var84 = var15.contains(var83); + var1.setLocation(var83); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var2); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var22 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var25); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var28 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var30 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var32 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var35); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var36 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var39); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var47); + + // Regression assertion (captures the current behavior of the code) + assertNull(var49); + + // Regression assertion (captures the current behavior of the code) + assertNull(var50); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var52); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var55 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var65); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var68 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var73 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var77); + + // Regression assertion (captures the current behavior of the code) + assertNull(var80); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var81 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var82); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var83); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var84 == false); + + } + + public void test197() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test197"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.updateUI(); + var0.enableInputMethods(true); + var0.setSize((-1), 1); + boolean var13 = var0.contains(1, 1); + boolean var14 = var0.isFocusOwner(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == false); + + } + + public void test198() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test198"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + boolean var2 = var0.hasFocus(); + boolean var3 = var0.isPreferredSizeSet(); + var0.firePropertyChange("", (short)1, (short)0); + boolean var8 = var0.isMaximumSizeSet(); + java.awt.peer.ComponentPeer var9 = var0.getPeer(); + SpaceWar.SpacePanel var10 = new SpaceWar.SpacePanel(); + float var11 = var10.getAlignmentX(); + var10.setVisible(false); + boolean var14 = var10.isDoubleBuffered(); + java.awt.dnd.DropTarget var15 = var10.getDropTarget(); + var10.show(false); + SpaceWar.SpacePanel var18 = new SpaceWar.SpacePanel(); + float var19 = var18.getAlignmentX(); + var18.setVisible(false); + SpaceWar.SpacePanel var22 = new SpaceWar.SpacePanel(); + java.awt.Color var23 = var22.getBackground(); + var18.setForeground(var23); + SpaceWar.SpacePanel var25 = new SpaceWar.SpacePanel(); + float var26 = var25.getAlignmentX(); + var25.setVisible(false); + boolean var29 = var25.isDoubleBuffered(); + java.awt.dnd.DropTarget var30 = var25.getDropTarget(); + var25.show(false); + java.awt.Rectangle var33 = var25.getVisibleRect(); + var18.repaint(var33); + java.awt.FocusTraversalPolicy var35 = var18.getFocusTraversalPolicy(); + java.awt.im.InputMethodRequests var36 = var18.getInputMethodRequests(); + var18.layout(); + SpaceWar.SpacePanel var38 = new SpaceWar.SpacePanel(); + float var39 = var38.getAlignmentX(); + var38.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var44 = new SpaceWar.SpacePanel(); + float var45 = var44.getAlignmentX(); + var44.setVisible(false); + SpaceWar.SpacePanel var48 = new SpaceWar.SpacePanel(); + java.awt.Color var49 = var48.getBackground(); + var44.setForeground(var49); + var38.setBackground(var49); + var18.setForeground(var49); + int var53 = var18.getWidth(); + javax.swing.plaf.PanelUI var54 = var18.getUI(); + var10.setUI(var54); + var0.setUI(var54); + java.awt.event.MouseListener[] var57 = var0.getMouseListeners(); + javax.swing.plaf.PanelUI var58 = var0.getUI(); + var0.transferFocusDownCycle(); + var0.doLayout(); + java.awt.Point var61 = var0.getMousePosition(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var2 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var9); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var23); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var29 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var30); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var33); + + // Regression assertion (captures the current behavior of the code) + assertNull(var35); + + // Regression assertion (captures the current behavior of the code) + assertNull(var36); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var39 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var45 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var49); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var53 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var54); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var57); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var58); + + // Regression assertion (captures the current behavior of the code) + assertNull(var61); + + } + + public void test199() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test199"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + boolean var4 = var0.inside(0, (-1)); + var0.transferFocusUpCycle(); + java.awt.Dimension var6 = var0.size(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + } + + public void test200() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test200"); + + + SpaceWar.Player var0 = new SpaceWar.Player(); + int var1 = var0.getR(); + var0.setRigth(false); + var0.setLife(100); + var0.setDown(false); + var0.setFiring(true); + var0.increasePower(400); + var0.loseLife(); + var0.setRigth(false); + var0.setScore(24); + var0.setLife(1); + boolean var19 = var0.isDead(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 25); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == false); + + } + + public void test201() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test201"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + SpaceWar.SpacePanel var2 = new SpaceWar.SpacePanel(); + float var3 = var2.getAlignmentX(); + var2.setVisible(false); + java.awt.Dimension var6 = var2.getPreferredSize(); + boolean var7 = var2.getVerifyInputWhenFocusTarget(); + java.awt.Component var10 = var2.findComponentAt(10, 1); + var0.addKeyListener((java.awt.event.KeyListener)var2); + var2.repaint(100, (-1), (-1), 1); + SpaceWar.SpacePanel var17 = new SpaceWar.SpacePanel(); + java.awt.Color var18 = var17.getBackground(); + var17.repaint(); + java.awt.im.InputMethodRequests var20 = var17.getInputMethodRequests(); + java.awt.GraphicsConfiguration var21 = var17.getGraphicsConfiguration(); + var2.remove((java.awt.Component)var17); + var2.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", 0.0f, 1.0f); + SpaceWar.SpacePanel var27 = new SpaceWar.SpacePanel(); + float var28 = var27.getAlignmentX(); + var27.setVisible(false); + java.awt.Dimension var31 = var27.getPreferredSize(); + boolean var32 = var27.getVerifyInputWhenFocusTarget(); + SpaceWar.SpacePanel var33 = new SpaceWar.SpacePanel(); + var33.setName(""); + int var36 = var33.getX(); + SpaceWar.SpacePanel var37 = new SpaceWar.SpacePanel(); + float var38 = var37.getAlignmentX(); + var37.setVisible(false); + var37.nextFocus(); + SpaceWar.SpacePanel var42 = new SpaceWar.SpacePanel(); + float var43 = var42.getAlignmentX(); + var42.setVisible(false); + SpaceWar.SpacePanel var46 = new SpaceWar.SpacePanel(); + java.awt.Color var47 = var46.getBackground(); + var42.setForeground(var47); + var37.setBackground(var47); + var33.setBackground(var47); + var2.add((java.awt.Component)var27, (java.lang.Object)var33); + var33.transferFocus(); + java.util.Locale var53 = var33.getLocale(); + int var54 = var33.getWidth(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertNull(var21); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var28 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var31); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var32 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var36 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var38 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var43 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var47); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var53); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var54 == 0); + + } + + public void test202() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test202"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + var0.show(false); + java.awt.Rectangle var8 = var0.getVisibleRect(); + boolean var9 = var0.isFocusTraversalPolicySet(); + SpaceWar.SpacePanel var10 = new SpaceWar.SpacePanel(); + float var11 = var10.getAlignmentX(); + var10.setVisible(false); + boolean var14 = var10.isDoubleBuffered(); + var10.enable(false); + boolean var17 = var10.getFocusTraversalKeysEnabled(); + SpaceWar.SpacePanel var18 = new SpaceWar.SpacePanel(); + float var19 = var18.getAlignmentX(); + var18.setVisible(false); + java.awt.Dimension var22 = var18.getPreferredSize(); + java.awt.Toolkit var23 = var18.getToolkit(); + boolean var24 = var18.isFocusable(); + javax.swing.KeyStroke[] var25 = var18.getRegisteredKeyStrokes(); + SpaceWar.SpacePanel var26 = new SpaceWar.SpacePanel(); + float var27 = var26.getAlignmentX(); + SpaceWar.SpacePanel var28 = new SpaceWar.SpacePanel(); + float var29 = var28.getAlignmentX(); + var28.setVisible(false); + java.awt.Dimension var32 = var28.getPreferredSize(); + boolean var33 = var28.getVerifyInputWhenFocusTarget(); + java.awt.Component var36 = var28.findComponentAt(10, 1); + var26.addKeyListener((java.awt.event.KeyListener)var28); + var28.repaint(100, (-1), (-1), 1); + boolean var43 = var18.isAncestorOf((java.awt.Component)var28); + var10.addKeyListener((java.awt.event.KeyListener)var28); + java.util.Locale var45 = var28.getLocale(); + var0.setLocale(var45); + var0.transferFocusBackward(); + boolean var50 = var0.inside(399, 505); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var23); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var24 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var25); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var29 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var32); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var33 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var36); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var43 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var45); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var50 == false); + + } + + public void test203() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test203"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + javax.swing.plaf.PanelUI var3 = var0.getUI(); + SpaceWar.SpacePanel var4 = new SpaceWar.SpacePanel(); + float var5 = var4.getAlignmentX(); + var4.setVisible(false); + boolean var8 = var4.isDoubleBuffered(); + java.awt.dnd.DropTarget var9 = var4.getDropTarget(); + var4.show(false); + boolean var12 = var4.isPaintingForPrint(); + SpaceWar.SpacePanel var13 = new SpaceWar.SpacePanel(); + float var14 = var13.getAlignmentX(); + var13.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var19 = var13.getMouseListeners(); + int var20 = var13.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var21 = var13.getInputMethodRequests(); + var4.addKeyListener((java.awt.event.KeyListener)var13); + SpaceWar.SpacePanel var23 = new SpaceWar.SpacePanel(); + float var24 = var23.getAlignmentX(); + var23.setVisible(false); + boolean var27 = var23.isDoubleBuffered(); + var23.list(); + float var29 = var23.getAlignmentY(); + boolean var30 = var13.isFocusCycleRoot((java.awt.Container)var23); + SpaceWar.SpacePanel var32 = new SpaceWar.SpacePanel(); + float var33 = var32.getAlignmentX(); + var32.setVisible(false); + var32.nextFocus(); + var32.updateUI(); + java.awt.Component var38 = var13.add("", (java.awt.Component)var32); + java.awt.ComponentOrientation var39 = var32.getComponentOrientation(); + boolean var40 = var32.isFocusable(); + var0.remove((java.awt.Component)var32); + java.awt.Insets var42 = var0.insets(); + var0.grabFocus(); + java.awt.GraphicsConfiguration var44 = var0.getGraphicsConfiguration(); + java.awt.event.KeyListener[] var45 = var0.getKeyListeners(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var9); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var21); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var24 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var29 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var30 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var33 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var38); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var39); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var40 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var42); + + // Regression assertion (captures the current behavior of the code) + assertNull(var44); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var45); + + } + + public void test204() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test204"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + var0.list(); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + float var7 = var6.getAlignmentX(); + var6.setVisible(false); + boolean var10 = var6.isDoubleBuffered(); + java.awt.dnd.DropTarget var11 = var6.getDropTarget(); + var6.show(false); + java.awt.Rectangle var14 = var6.getVisibleRect(); + java.awt.Rectangle var15 = var0.getBounds(var14); + javax.swing.JToolTip var16 = var0.createToolTip(); + java.awt.Dimension var17 = var0.minimumSize(); + var0.setAutoscrolls(true); + var0.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", (short)10, (short)1); + java.lang.String var24 = var0.getUIClassID(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var24 + "' != '" + "PanelUI"+ "'", var24.equals("PanelUI")); + + } + + public void test205() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test205"); + + + SpaceWar.Player var0 = new SpaceWar.Player(); + int var1 = var0.getPower(); + int var2 = var0.getPowerLevel(); + var0.setLeft(false); + int var5 = var0.getScore(); + int var6 = var0.getRequiredPower(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var2 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == 1); + + } + + public void test206() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test206"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + var0.enable(false); + boolean var7 = var0.getFocusTraversalKeysEnabled(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + java.awt.Dimension var12 = var8.getPreferredSize(); + java.awt.Toolkit var13 = var8.getToolkit(); + boolean var14 = var8.isFocusable(); + javax.swing.KeyStroke[] var15 = var8.getRegisteredKeyStrokes(); + SpaceWar.SpacePanel var16 = new SpaceWar.SpacePanel(); + float var17 = var16.getAlignmentX(); + SpaceWar.SpacePanel var18 = new SpaceWar.SpacePanel(); + float var19 = var18.getAlignmentX(); + var18.setVisible(false); + java.awt.Dimension var22 = var18.getPreferredSize(); + boolean var23 = var18.getVerifyInputWhenFocusTarget(); + java.awt.Component var26 = var18.findComponentAt(10, 1); + var16.addKeyListener((java.awt.event.KeyListener)var18); + var18.repaint(100, (-1), (-1), 1); + boolean var33 = var8.isAncestorOf((java.awt.Component)var18); + var0.addKeyListener((java.awt.event.KeyListener)var18); + var18.hide(); + java.awt.event.MouseWheelListener[] var36 = var18.getMouseWheelListeners(); + var18.setBounds(24, 400, (-1), 2); + var18.move(100, 3); + boolean var45 = var18.getIgnoreRepaint(); + javax.swing.border.Border var46 = var18.getBorder(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var33 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var36); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var45 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var46); + + } + + public void test207() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test207"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + boolean var6 = var0.isFocusOwner(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + java.awt.Dimension var12 = var8.getPreferredSize(); + java.awt.Toolkit var13 = var8.getToolkit(); + SpaceWar.SpacePanel var14 = new SpaceWar.SpacePanel(); + var14.setName(""); + int var17 = var14.getX(); + SpaceWar.SpacePanel var18 = new SpaceWar.SpacePanel(); + float var19 = var18.getAlignmentX(); + var18.setVisible(false); + var18.nextFocus(); + SpaceWar.SpacePanel var23 = new SpaceWar.SpacePanel(); + float var24 = var23.getAlignmentX(); + var23.setVisible(false); + SpaceWar.SpacePanel var27 = new SpaceWar.SpacePanel(); + java.awt.Color var28 = var27.getBackground(); + var23.setForeground(var28); + var18.setBackground(var28); + var14.setBackground(var28); + var8.setForeground(var28); + var0.putClientProperty((java.lang.Object)(byte)100, (java.lang.Object)var28); + boolean var34 = var0.isFocusCycleRoot(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var24 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var28); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var34 == false); + + } + + public void test208() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test208"); + + + SpaceWar.Player var0 = new SpaceWar.Player(); + var0.increasePower(25); + int var3 = var0.getR(); + int var4 = var0.getScore(); + var0.loseLife(); + boolean var6 = var0.isRecovering(); + var0.setFiring(false); + int var9 = var0.getScore(); + int var10 = var0.getY(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == 25); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 500); + + } + + public void test209() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test209"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.updateUI(); + var0.enableInputMethods(true); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + boolean var10 = var8.hasFocus(); + java.awt.Insets var11 = var8.getInsets(); + java.awt.Insets var12 = var0.getInsets(var11); + boolean var13 = var0.isManagingFocus(); + java.awt.Image var16 = var0.createImage(1, 10); + SpaceWar.SpacePanel var17 = new SpaceWar.SpacePanel(); + float var18 = var17.getAlignmentX(); + var17.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var23 = new SpaceWar.SpacePanel(); + float var24 = var23.getAlignmentX(); + var23.setVisible(false); + java.awt.Dimension var27 = var23.getPreferredSize(); + var17.setMaximumSize(var27); + boolean var29 = var17.getVerifyInputWhenFocusTarget(); + int var30 = var17.getX(); + SpaceWar.SpacePanel var31 = new SpaceWar.SpacePanel(); + float var32 = var31.getAlignmentX(); + var31.setVisible(false); + var31.setEnabled(false); + var0.add((java.awt.Component)var17, (java.lang.Object)false); + var0.setAlignmentX(1.0f); + var0.validate(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var24 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var27); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var29 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var30 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var32 == 0.5f); + + } + + public void test210() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test210"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + boolean var2 = var0.hasFocus(); + boolean var3 = var0.isPreferredSizeSet(); + var0.firePropertyChange("", (short)1, (short)0); + boolean var8 = var0.isMaximumSizeSet(); + java.awt.image.ColorModel var9 = var0.getColorModel(); + java.awt.Dimension var10 = var0.getPreferredSize(); + boolean var11 = var0.isCursorSet(); + java.awt.Point var12 = var0.getLocation(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var2 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var9); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var12); + + } + + public void test211() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test211"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.setInheritsPopupMenu(false); + var0.move(10, 10); + var0.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var0.removeAll(); + javax.accessibility.AccessibleContext var14 = var0.getAccessibleContext(); + java.awt.event.InputMethodListener[] var15 = var0.getInputMethodListeners(); + var0.setAlignmentX(10.0f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + } + + public void test212() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test212"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + var0.setRequestFocusEnabled(false); + var0.setIgnoreRepaint(false); + java.lang.String var7 = var0.toString(); + boolean var9 = var0.requestFocus(false); + var0.resetKeyboardActions(); + var0.setAutoscrolls(true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var7 + "' != '" + "SpaceWar.SpacePanel[,0,0,0var7,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"+ "'", var7.equals("SpaceWar.SpacePanel[,0,0,0var7,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]")); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == false); + + } + + public void test213() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test213"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + float var7 = var6.getAlignmentX(); + var6.setVisible(false); + java.awt.Dimension var10 = var6.getPreferredSize(); + var0.setMaximumSize(var10); + boolean var12 = var0.getVerifyInputWhenFocusTarget(); + javax.accessibility.AccessibleContext var13 = var0.getAccessibleContext(); + boolean var14 = var0.isDoubleBuffered(); + java.awt.event.MouseMotionListener[] var15 = var0.getMouseMotionListeners(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + } + + public void test214() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test214"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + SpaceWar.SpacePanel var2 = new SpaceWar.SpacePanel(); + float var3 = var2.getAlignmentX(); + var2.setVisible(false); + java.awt.Dimension var6 = var2.getPreferredSize(); + boolean var7 = var2.getVerifyInputWhenFocusTarget(); + java.awt.Component var10 = var2.findComponentAt(10, 1); + var0.addKeyListener((java.awt.event.KeyListener)var2); + var2.repaint(100, (-1), (-1), 1); + SpaceWar.SpacePanel var17 = new SpaceWar.SpacePanel(); + java.awt.Color var18 = var17.getBackground(); + var17.repaint(); + java.awt.im.InputMethodRequests var20 = var17.getInputMethodRequests(); + java.awt.GraphicsConfiguration var21 = var17.getGraphicsConfiguration(); + var2.remove((java.awt.Component)var17); + java.awt.Font var23 = var17.getFont(); + boolean var25 = var17.requestFocus(false); + SpaceWar.SpacePanel var26 = new SpaceWar.SpacePanel(); + float var27 = var26.getAlignmentX(); + var26.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var32 = var26.getUI(); + java.awt.im.InputMethodRequests var33 = var26.getInputMethodRequests(); + SpaceWar.SpacePanel var34 = new SpaceWar.SpacePanel(); + float var35 = var34.getAlignmentX(); + var34.setVisible(false); + var34.nextFocus(); + var34.updateUI(); + var34.enableInputMethods(true); + var34.setSize((-1), 1); + SpaceWar.SpacePanel var45 = new SpaceWar.SpacePanel(); + var45.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var26.add((java.awt.Component)var34, (java.lang.Object)"SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + java.awt.ComponentOrientation var51 = var34.getComponentOrientation(); + java.beans.VetoableChangeListener[] var52 = var34.getVetoableChangeListeners(); + java.awt.Rectangle var53 = var34.bounds(); + var17.setNextFocusableComponent((java.awt.Component)var34); + var17.setAutoscrolls(false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertNull(var21); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var23); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var32); + + // Regression assertion (captures the current behavior of the code) + assertNull(var33); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var35 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var51); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var52); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var53); + + } + + public void test215() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test215"); + + + SpaceWar.Player var0 = new SpaceWar.Player(); + int var1 = var0.getR(); + boolean var2 = var0.isRecovering(); + int var3 = var0.getRequiredPower(); + boolean var4 = var0.isDead(); + var0.loseLife(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 25); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var2 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == 1); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == false); + + } + + public void test216() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test216"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var6 = var0.getMouseListeners(); + java.awt.Dimension var7 = var0.getPreferredSize(); + java.util.Locale var8 = var0.getLocale(); + var0.setFocusable(true); + var0.paintImmediately((-1), 10, 100, 25); + boolean var16 = var0.isOpaque(); + java.awt.Color var17 = var0.getForeground(); + var0.setAutoscrolls(false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var17); + + } + + public void test217() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test217"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var6 = var0.getMouseListeners(); + int var7 = var0.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var8 = var0.getInputMethodRequests(); + var0.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", 19.998476951563912d, 495.44236387443226d); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var8); + + } + + public void test218() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test218"); + + + SpaceWar.Player var0 = new SpaceWar.Player(); + int var1 = var0.getPower(); + var0.setLeft(true); + var0.increasePower(0); + var0.setRigth(false); + int var8 = var0.getY(); + var0.update(); + var0.increasePower(400); + var0.setFiring(false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 500); + + } + + public void test219() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test219"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + boolean var2 = var0.hasFocus(); + boolean var3 = var0.isPreferredSizeSet(); + SpaceWar.SpacePanel var4 = new SpaceWar.SpacePanel(); + java.awt.Color var5 = var4.getBackground(); + var4.repaint(); + var4.setRequestFocusEnabled(false); + int var9 = var0.getComponentZOrder((java.awt.Component)var4); + int var10 = var0.getDebugGraphicsOptions(); + var0.enableInputMethods(true); + java.awt.Component var13 = var0.getNextFocusableComponent(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var2 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == (-1)); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var13); + + } + + public void test220() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test220"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var1 = new SpaceWar.SpacePanel(); + java.awt.Color var2 = var1.getBackground(); + SpaceWar.SpacePanel var3 = new SpaceWar.SpacePanel(); + float var4 = var3.getAlignmentX(); + var3.setVisible(false); + var3.nextFocus(); + var3.updateUI(); + var3.enableInputMethods(true); + var0.add((java.awt.Component)var1, (java.lang.Object)true); + java.awt.Image var14 = var1.createImage(1, (-1)); + java.awt.event.MouseListener[] var15 = var1.getMouseListeners(); + java.awt.Color var16 = var1.getBackground(); + var1.grabFocus(); + javax.swing.JToolTip var18 = var1.createToolTip(); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + float var20 = var19.getAlignmentX(); + var19.setVisible(false); + boolean var23 = var19.isDoubleBuffered(); + var19.enable(false); + boolean var26 = var19.getFocusTraversalKeysEnabled(); + var19.setToolTipText("PanelUI"); + SpaceWar.SpacePanel var29 = new SpaceWar.SpacePanel(); + float var30 = var29.getAlignmentX(); + var29.setVisible(false); + boolean var33 = var29.isDoubleBuffered(); + java.awt.dnd.DropTarget var34 = var29.getDropTarget(); + var29.show(false); + boolean var37 = var29.isPaintingForPrint(); + SpaceWar.SpacePanel var38 = new SpaceWar.SpacePanel(); + float var39 = var38.getAlignmentX(); + var38.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var44 = var38.getMouseListeners(); + int var45 = var38.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var46 = var38.getInputMethodRequests(); + var29.addKeyListener((java.awt.event.KeyListener)var38); + SpaceWar.SpacePanel var48 = new SpaceWar.SpacePanel(); + float var49 = var48.getAlignmentX(); + var48.setVisible(false); + boolean var52 = var48.isDoubleBuffered(); + var48.list(); + float var54 = var48.getAlignmentY(); + boolean var55 = var38.isFocusCycleRoot((java.awt.Container)var48); + var48.firePropertyChange("", 1L, 1L); + var48.setVerifyInputWhenFocusTarget(true); + SpaceWar.SpacePanel var62 = new SpaceWar.SpacePanel(); + var62.setName(""); + java.awt.Dimension var65 = var62.minimumSize(); + boolean var66 = var62.isDoubleBuffered(); + SpaceWar.SpacePanel var67 = new SpaceWar.SpacePanel(); + float var68 = var67.getAlignmentX(); + SpaceWar.SpacePanel var69 = new SpaceWar.SpacePanel(); + float var70 = var69.getAlignmentX(); + var69.setVisible(false); + java.awt.Dimension var73 = var69.getPreferredSize(); + boolean var74 = var69.getVerifyInputWhenFocusTarget(); + java.awt.Component var77 = var69.findComponentAt(10, 1); + var67.addKeyListener((java.awt.event.KeyListener)var69); + var69.repaint(100, (-1), (-1), 1); + SpaceWar.SpacePanel var84 = new SpaceWar.SpacePanel(); + java.awt.Color var85 = var84.getBackground(); + var84.repaint(); + java.awt.im.InputMethodRequests var87 = var84.getInputMethodRequests(); + java.awt.GraphicsConfiguration var88 = var84.getGraphicsConfiguration(); + var69.remove((java.awt.Component)var84); + java.awt.Font var90 = var84.getFont(); + java.awt.FontMetrics var91 = var62.getFontMetrics(var90); + java.awt.FontMetrics var92 = var48.getFontMetrics(var90); + var19.setFont(var90); + java.awt.FontMetrics var94 = var18.getFontMetrics(var90); + var18.removeNotify(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var2); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var30 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var33 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var34); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var39 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var44); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var45 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var46); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var49 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var52 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var54 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var55 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var65); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var66 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var68 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var70 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var73); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var74 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var77); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var85); + + // Regression assertion (captures the current behavior of the code) + assertNull(var87); + + // Regression assertion (captures the current behavior of the code) + assertNull(var88); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var90); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var91); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var92); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var94); + + } + + public void test221() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test221"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var1 = new SpaceWar.SpacePanel(); + java.awt.Color var2 = var1.getBackground(); + SpaceWar.SpacePanel var3 = new SpaceWar.SpacePanel(); + float var4 = var3.getAlignmentX(); + var3.setVisible(false); + var3.nextFocus(); + var3.updateUI(); + var3.enableInputMethods(true); + var0.add((java.awt.Component)var1, (java.lang.Object)true); + boolean var13 = var1.areFocusTraversalKeysSet(0); + boolean var14 = var1.isFocusable(); + java.awt.event.ComponentListener[] var15 = var1.getComponentListeners(); + java.awt.event.HierarchyListener[] var16 = var1.getHierarchyListeners(); + // The following exception was thrown during execution. + // This behavior will recorded for regression testing. + try { + java.util.Set var18 = var1.getFocusTraversalKeys(505); + fail("Expected exception of type java.lang.IllegalArgumentException"); + } catch (java.lang.IllegalArgumentException e) { + // Expected exception. + } + + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var2); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + } + + public void test222() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test222"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + java.awt.Point var6 = var0.getMousePosition(); + java.lang.String var7 = var0.getUIClassID(); + var0.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", '#', '4'); + boolean var12 = var0.requestDefaultFocus(); + SpaceWar.SpacePanel var13 = new SpaceWar.SpacePanel(); + float var14 = var13.getAlignmentX(); + var13.setVisible(false); + SpaceWar.SpacePanel var17 = new SpaceWar.SpacePanel(); + java.awt.Color var18 = var17.getBackground(); + var13.setForeground(var18); + SpaceWar.SpacePanel var20 = new SpaceWar.SpacePanel(); + float var21 = var20.getAlignmentX(); + var20.setVisible(false); + boolean var24 = var20.isDoubleBuffered(); + java.awt.dnd.DropTarget var25 = var20.getDropTarget(); + var20.show(false); + java.awt.Rectangle var28 = var20.getVisibleRect(); + var13.repaint(var28); + SpaceWar.SpacePanel var30 = new SpaceWar.SpacePanel(); + float var31 = var30.getAlignmentX(); + var30.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var36 = var30.getMouseListeners(); + java.awt.Dimension var37 = var30.getPreferredSize(); + java.util.Locale var38 = var30.getLocale(); + var13.setLocale(var38); + var0.setLocale(var38); + var0.firePropertyChange("SpaceWar.SpacePanel[,-1,1,-1x10,invalid,hidden,disabled,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", 100.0f, 1.0f); + java.awt.im.InputMethodRequests var45 = var0.getInputMethodRequests(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var7 + "' != '" + "PanelUI"+ "'", var7.equals("PanelUI")); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var24 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var25); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var28); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var31 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var36); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var37); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var38); + + // Regression assertion (captures the current behavior of the code) + assertNull(var45); + + } + + public void test223() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test223"); + + + SpaceWar.PowerUp var3 = new SpaceWar.PowerUp(100, (-1.0d), 0.0d); + double var4 = var3.getR(); + int var5 = var3.getType(); + double var6 = var3.getX(); + double var7 = var3.getR(); + double var8 = var3.getY(); + double var9 = var3.getX(); + double var10 = var3.getX(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0.0d); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == 100); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == (-1.0d)); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.0d); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 0.0d); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == (-1.0d)); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == (-1.0d)); + + } + + public void test224() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test224"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + float var7 = var6.getAlignmentX(); + var6.setVisible(false); + java.awt.Dimension var10 = var6.getPreferredSize(); + var0.setMaximumSize(var10); + boolean var12 = var0.getVerifyInputWhenFocusTarget(); + boolean var13 = var0.isFontSet(); + boolean var14 = var0.getIgnoreRepaint(); + java.awt.Component var17 = var0.locate(1, 25); + boolean var18 = var0.isLightweight(); + boolean var21 = var0.inside(0, 0); + int var22 = var0.getX(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var22 == 0); + + } + + public void test225() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test225"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + var0.show(false); + boolean var8 = var0.isPaintingForPrint(); + boolean var9 = var0.getIgnoreRepaint(); + var0.repaint((-1), 400, (-1), 0); + var0.doLayout(); + SpaceWar.SpacePanel var16 = new SpaceWar.SpacePanel(); + var16.setName(""); + java.awt.Toolkit var19 = var16.getToolkit(); + var16.setEnabled(false); + var16.removeNotify(); + boolean var23 = var16.isDisplayable(); + SpaceWar.SpacePanel var24 = new SpaceWar.SpacePanel(); + java.awt.Color var25 = var24.getBackground(); + var24.repaint(); + var24.setRequestFocusEnabled(false); + var24.reshape(100, 0, 100, 0); + var24.requestFocus(); + java.awt.Rectangle var35 = var24.getVisibleRect(); + java.awt.Rectangle var36 = var24.getBounds(); + java.awt.im.InputMethodRequests var37 = var24.getInputMethodRequests(); + boolean var38 = var24.requestFocusInWindow(); + java.awt.Point var40 = var24.getMousePosition(false); + var24.setDebugGraphicsOptions(1); + java.awt.Graphics var43 = var24.getGraphics(); + var16.paintAll(var43); + var0.print(var43); + var0.setEnabled(true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var25); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var35); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var36); + + // Regression assertion (captures the current behavior of the code) + assertNull(var37); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var38 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var40); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var43); + + } + + public void test226() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test226"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.setFocusCycleRoot(true); + SpaceWar.SpacePanel var4 = new SpaceWar.SpacePanel(); + float var5 = var4.getAlignmentX(); + var4.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var10 = var4.getMouseListeners(); + java.awt.Dimension var11 = var4.getPreferredSize(); + java.util.Locale var12 = var4.getLocale(); + var4.setFocusable(true); + java.lang.String var15 = var4.getToolTipText(); + SpaceWar.SpacePanel var16 = new SpaceWar.SpacePanel(); + float var17 = var16.getAlignmentX(); + var16.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var22 = new SpaceWar.SpacePanel(); + float var23 = var22.getAlignmentX(); + var22.setVisible(false); + SpaceWar.SpacePanel var26 = new SpaceWar.SpacePanel(); + java.awt.Color var27 = var26.getBackground(); + var22.setForeground(var27); + var16.setBackground(var27); + java.awt.Point var30 = var16.location(); + var4.setLocation(var30); + var0.setLocation(var30); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var27); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var30); + + } + + public void test227() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test227"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.requestFocus(); + boolean var6 = var0.isBackgroundSet(); + SpaceWar.SpacePanel var7 = new SpaceWar.SpacePanel(); + java.awt.Color var8 = var7.getBackground(); + var7.repaint(); + var7.setRequestFocusEnabled(false); + var7.reshape(100, 0, 100, 0); + SpaceWar.SpacePanel var17 = new SpaceWar.SpacePanel(); + float var18 = var17.getAlignmentX(); + var17.setVisible(false); + var17.setInheritsPopupMenu(false); + boolean var23 = var17.isDoubleBuffered(); + SpaceWar.SpacePanel var24 = new SpaceWar.SpacePanel(); + float var25 = var24.getAlignmentX(); + var24.setVisible(false); + var24.nextFocus(); + var24.reshape((-1), 1, (-1), 10); + var24.disable(); + java.awt.LayoutManager var35 = var24.getLayout(); + var17.setLayout(var35); + var0.add((java.awt.Component)var7, (java.lang.Object)var35); + var0.setVerifyInputWhenFocusTarget(true); + java.awt.event.HierarchyListener[] var40 = var0.getHierarchyListeners(); + java.awt.Font var41 = var0.getFont(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var35); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var40); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var41); + + } + + public void test228() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test228"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + float var7 = var6.getAlignmentX(); + var6.setVisible(false); + SpaceWar.SpacePanel var10 = new SpaceWar.SpacePanel(); + java.awt.Color var11 = var10.getBackground(); + var6.setForeground(var11); + var0.setBackground(var11); + var0.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", '#', '4'); + var0.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=10,height=10]]", 1.0f, 10.0f); + // The following exception was thrown during execution. + // This behavior will recorded for regression testing. + try { + var0.remove(505); + fail("Expected exception of type java.lang.ArrayIndexOutOfBoundsException"); + } catch (java.lang.ArrayIndexOutOfBoundsException e) { + // Expected exception. + } + + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + } + + public void test229() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test229"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var6 = var0.getMouseListeners(); + int var7 = var0.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var8 = var0.getInputMethodRequests(); + var0.setToolTipText(""); + var0.enable(); + java.awt.GraphicsConfiguration var12 = var0.getGraphicsConfiguration(); + SpaceWar.SpacePanel var13 = new SpaceWar.SpacePanel(); + float var14 = var13.getAlignmentX(); + var13.setVisible(false); + SpaceWar.SpacePanel var17 = new SpaceWar.SpacePanel(); + java.awt.Color var18 = var17.getBackground(); + var13.setForeground(var18); + SpaceWar.SpacePanel var20 = new SpaceWar.SpacePanel(); + float var21 = var20.getAlignmentX(); + var20.setVisible(false); + boolean var24 = var20.isDoubleBuffered(); + java.awt.dnd.DropTarget var25 = var20.getDropTarget(); + var20.show(false); + java.awt.Rectangle var28 = var20.getVisibleRect(); + var13.repaint(var28); + java.awt.FocusTraversalPolicy var30 = var13.getFocusTraversalPolicy(); + SpaceWar.SpacePanel var31 = new SpaceWar.SpacePanel(); + float var32 = var31.getAlignmentX(); + var31.firePropertyChange("", (-1), 1); + boolean var37 = var31.isFocusOwner(); + SpaceWar.SpacePanel var39 = new SpaceWar.SpacePanel(); + float var40 = var39.getAlignmentX(); + var39.setVisible(false); + java.awt.Dimension var43 = var39.getPreferredSize(); + java.awt.Toolkit var44 = var39.getToolkit(); + SpaceWar.SpacePanel var45 = new SpaceWar.SpacePanel(); + var45.setName(""); + int var48 = var45.getX(); + SpaceWar.SpacePanel var49 = new SpaceWar.SpacePanel(); + float var50 = var49.getAlignmentX(); + var49.setVisible(false); + var49.nextFocus(); + SpaceWar.SpacePanel var54 = new SpaceWar.SpacePanel(); + float var55 = var54.getAlignmentX(); + var54.setVisible(false); + SpaceWar.SpacePanel var58 = new SpaceWar.SpacePanel(); + java.awt.Color var59 = var58.getBackground(); + var54.setForeground(var59); + var49.setBackground(var59); + var45.setBackground(var59); + var39.setForeground(var59); + var31.putClientProperty((java.lang.Object)(byte)100, (java.lang.Object)var59); + var13.setBackground(var59); + SpaceWar.SpacePanel var66 = new SpaceWar.SpacePanel(); + float var67 = var66.getAlignmentX(); + var66.setVisible(false); + boolean var70 = var66.isDoubleBuffered(); + java.awt.dnd.DropTarget var71 = var66.getDropTarget(); + var66.show(false); + boolean var74 = var66.isPaintingForPrint(); + SpaceWar.SpacePanel var75 = new SpaceWar.SpacePanel(); + float var76 = var75.getAlignmentX(); + SpaceWar.SpacePanel var77 = new SpaceWar.SpacePanel(); + float var78 = var77.getAlignmentX(); + var77.setVisible(false); + java.awt.Dimension var81 = var77.getPreferredSize(); + boolean var82 = var77.getVerifyInputWhenFocusTarget(); + java.awt.Component var85 = var77.findComponentAt(10, 1); + var75.addKeyListener((java.awt.event.KeyListener)var77); + java.awt.Dimension var87 = var77.getMinimumSize(); + var66.setMinimumSize(var87); + java.awt.Dimension var89 = var13.getSize(var87); + boolean var90 = var13.isValid(); + int var91 = var13.getWidth(); + float var92 = var13.getAlignmentY(); + boolean var93 = var13.getIgnoreRepaint(); + java.awt.Point var94 = var13.location(); + java.awt.Point var95 = var0.getLocation(var94); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var24 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var25); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var28); + + // Regression assertion (captures the current behavior of the code) + assertNull(var30); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var32 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var40 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var43); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var44); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var48 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var50 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var55 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var59); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var67 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var70 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var71); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var74 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var76 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var78 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var81); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var82 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var85); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var87); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var89); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var90 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var91 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var92 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var93 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var94); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var95); + + } + + public void test230() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test230"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + java.awt.Dimension var4 = var0.getPreferredSize(); + boolean var5 = var0.getVerifyInputWhenFocusTarget(); + java.awt.Component var8 = var0.findComponentAt(10, 1); + boolean var9 = var0.requestDefaultFocus(); + var0.setVerifyInputWhenFocusTarget(false); + boolean var12 = var0.isPaintingForPrint(); + boolean var13 = var0.getIgnoreRepaint(); + java.awt.FocusTraversalPolicy var14 = var0.getFocusTraversalPolicy(); + var0.resize(100, (-1)); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var4); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var14); + + } + + public void test231() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test231"); + + + SpaceWar.Player var0 = new SpaceWar.Player(); + int var1 = var0.getPower(); + var0.setLeft(true); + var0.increasePower(0); + boolean var6 = var0.isDead(); + var0.setFiring(true); + var0.setRigth(false); + var0.setLeft(true); + boolean var13 = var0.isDead(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == false); + + } + + public void test232() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test232"); + + + SpaceWar.PowerUp var3 = new SpaceWar.PowerUp(100, (-1.0d), 0.0d); + double var4 = var3.getR(); + double var5 = var3.getY(); + boolean var6 = var3.update(); + double var7 = var3.getR(); + int var8 = var3.getType(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0.0d); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == 0.0d); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.0d); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 100); + + } + + public void test233() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test233"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + var0.list(); + float var6 = var0.getAlignmentY(); + java.awt.event.ComponentListener[] var7 = var0.getComponentListeners(); + java.awt.Component var8 = var0.getNextFocusableComponent(); + boolean var9 = var0.isFocusOwner(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == false); + + } + + public void test234() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test234"); + + + SpaceWar.Player var0 = new SpaceWar.Player(); + int var1 = var0.getPower(); + var0.setLeft(true); + var0.increasePower(0); + var0.setRigth(false); + int var8 = var0.getPower(); + boolean var9 = var0.isDead(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == false); + + } + + public void test235() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test235"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.reshape((-1), 1, (-1), 10); + var0.layout(); + java.awt.peer.ComponentPeer var11 = var0.getPeer(); + SpaceWar.SpacePanel var12 = new SpaceWar.SpacePanel(); + float var13 = var12.getAlignmentX(); + var12.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var18 = var12.getUI(); + java.awt.im.InputMethodRequests var19 = var12.getInputMethodRequests(); + SpaceWar.SpacePanel var20 = new SpaceWar.SpacePanel(); + float var21 = var20.getAlignmentX(); + var20.setVisible(false); + var20.nextFocus(); + var20.updateUI(); + var20.enableInputMethods(true); + var20.setSize((-1), 1); + SpaceWar.SpacePanel var31 = new SpaceWar.SpacePanel(); + var31.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var12.add((java.awt.Component)var20, (java.lang.Object)"SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + java.awt.ComponentOrientation var37 = var20.getComponentOrientation(); + java.beans.VetoableChangeListener[] var38 = var20.getVetoableChangeListeners(); + int var39 = var20.countComponents(); + boolean var40 = var20.isFocusOwner(); + var20.enable(false); + java.awt.Insets var43 = var20.getInsets(); + java.awt.Insets var44 = var0.getInsets(var43); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var37); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var38); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var39 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var40 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var43); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var44); + + } + + public void test236() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test236"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var6 = var0.getMouseListeners(); + java.awt.Dimension var7 = var0.getPreferredSize(); + java.util.Locale var8 = var0.getLocale(); + var0.setFocusable(true); + var0.paintImmediately((-1), 10, 100, 25); + var0.hide(); + java.awt.event.InputMethodListener[] var17 = var0.getInputMethodListeners(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var17); + + } + + public void test237() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test237"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.setInheritsPopupMenu(false); + var0.setFocusTraversalPolicyProvider(true); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + boolean var12 = var8.isDoubleBuffered(); + var8.list(); + SpaceWar.SpacePanel var14 = new SpaceWar.SpacePanel(); + float var15 = var14.getAlignmentX(); + var14.setVisible(false); + boolean var18 = var14.isDoubleBuffered(); + java.awt.dnd.DropTarget var19 = var14.getDropTarget(); + var14.show(false); + java.awt.Rectangle var22 = var14.getVisibleRect(); + java.awt.Rectangle var23 = var8.getBounds(var22); + javax.swing.JToolTip var24 = var8.createToolTip(); + var0.removeKeyListener((java.awt.event.KeyListener)var8); + javax.swing.TransferHandler var26 = var0.getTransferHandler(); + boolean var27 = var0.isPaintingForPrint(); + int var28 = var0.getComponentCount(); + SpaceWar.SpacePanel var29 = new SpaceWar.SpacePanel(); + float var30 = var29.getAlignmentX(); + var29.setVisible(false); + var29.nextFocus(); + var29.updateUI(); + var29.enableInputMethods(true); + var29.enableInputMethods(true); + SpaceWar.SpacePanel var39 = new SpaceWar.SpacePanel(); + float var40 = var39.getAlignmentX(); + var39.setVisible(false); + var39.nextFocus(); + var39.reshape((-1), 1, (-1), 10); + var39.disable(); + var39.show(); + SpaceWar.SpacePanel var51 = new SpaceWar.SpacePanel(); + float var52 = var51.getAlignmentX(); + var51.setVisible(false); + boolean var55 = var51.isDoubleBuffered(); + var51.list(); + SpaceWar.SpacePanel var57 = new SpaceWar.SpacePanel(); + float var58 = var57.getAlignmentX(); + var57.setVisible(false); + boolean var61 = var57.isDoubleBuffered(); + java.awt.dnd.DropTarget var62 = var57.getDropTarget(); + var57.show(false); + java.awt.Rectangle var65 = var57.getVisibleRect(); + java.awt.Rectangle var66 = var51.getBounds(var65); + javax.swing.JToolTip var67 = var51.createToolTip(); + var51.firePropertyChange("", false, false); + var51.validate(); + SpaceWar.SpacePanel var73 = new SpaceWar.SpacePanel(); + float var74 = var73.getAlignmentX(); + var73.setVisible(false); + boolean var77 = var73.isDoubleBuffered(); + java.awt.dnd.DropTarget var78 = var73.getDropTarget(); + var73.show(false); + boolean var81 = var73.isPaintingForPrint(); + SpaceWar.SpacePanel var82 = new SpaceWar.SpacePanel(); + float var83 = var82.getAlignmentX(); + var82.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var88 = var82.getMouseListeners(); + int var89 = var82.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var90 = var82.getInputMethodRequests(); + var73.addKeyListener((java.awt.event.KeyListener)var82); + var82.repaint(); + java.awt.Point var93 = var82.location(); + java.awt.Component var94 = var51.getComponentAt(var93); + java.awt.Point var95 = var39.getLocation(var93); + java.awt.Point var96 = var29.getLocation(var93); + java.awt.Point var97 = var0.getLocation(var96); + boolean var99 = var0.requestFocus(true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var23); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var28 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var30 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var40 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var52 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var55 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var58 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var61 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var62); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var65); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var66); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var67); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var74 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var77 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var78); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var81 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var83 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var88); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var89 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var90); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var93); + + // Regression assertion (captures the current behavior of the code) + assertNull(var94); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var95); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var96); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var97); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var99 == false); + + } + + public void test238() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test238"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.reshape((-1), 1, (-1), 10); + var0.disable(); + java.awt.LayoutManager var11 = var0.getLayout(); + java.awt.Container var12 = var0.getParent(); + java.lang.String var13 = var0.getUIClassID(); + var0.setVerifyInputWhenFocusTarget(true); + boolean var16 = var0.isRequestFocusEnabled(); + javax.swing.ActionMap var17 = var0.getActionMap(); + SpaceWar.SpacePanel var18 = new SpaceWar.SpacePanel(); + var18.setName(""); + int var21 = var18.getX(); + java.lang.String var22 = var18.getToolTipText(); + var18.nextFocus(); + int var24 = var0.getComponentZOrder((java.awt.Component)var18); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var13 + "' != '" + "PanelUI"+ "'", var13.equals("PanelUI")); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var24 == (-1)); + + } + + public void test239() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test239"); + + + SpaceWar.PowerUp var3 = new SpaceWar.PowerUp(499, 100.0d, 3.0d); + double var4 = var3.getX(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 100.0d); + + } + + public void test240() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test240"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + var0.show(false); + boolean var8 = var0.isPaintingForPrint(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var15 = var9.getMouseListeners(); + int var16 = var9.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var17 = var9.getInputMethodRequests(); + var0.addKeyListener((java.awt.event.KeyListener)var9); + boolean var19 = var0.isDisplayable(); + boolean var20 = var0.isOpaque(); + var0.setEnabled(false); + boolean var24 = var0.areFocusTraversalKeysSet(0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var24 == false); + + } + + public void test241() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test241"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var6 = var0.getMouseListeners(); + int var7 = var0.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var8 = var0.getInputMethodRequests(); + var0.removeNotify(); + var0.enable(); + java.lang.Object var11 = var0.getTreeLock(); + var0.setAlignmentY(0.0f); + var0.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=1.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", '#', ' '); + boolean var18 = var0.isMinimumSizeSet(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == false); + + } + + public void test242() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test242"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var6 = var0.getUI(); + java.awt.im.InputMethodRequests var7 = var0.getInputMethodRequests(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + var8.nextFocus(); + var8.updateUI(); + var8.enableInputMethods(true); + var8.setSize((-1), 1); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + var19.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var0.add((java.awt.Component)var8, (java.lang.Object)"SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + java.awt.ComponentOrientation var25 = var8.getComponentOrientation(); + boolean var26 = var8.isMaximumSizeSet(); + SpaceWar.SpacePanel var27 = new SpaceWar.SpacePanel(); + float var28 = var27.getAlignmentX(); + var27.setVisible(false); + boolean var31 = var27.isDoubleBuffered(); + java.awt.dnd.DropTarget var32 = var27.getDropTarget(); + var27.show(false); + boolean var35 = var27.isPaintingForPrint(); + SpaceWar.SpacePanel var36 = new SpaceWar.SpacePanel(); + float var37 = var36.getAlignmentX(); + var36.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var42 = var36.getMouseListeners(); + int var43 = var36.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var44 = var36.getInputMethodRequests(); + var27.addKeyListener((java.awt.event.KeyListener)var36); + SpaceWar.SpacePanel var46 = new SpaceWar.SpacePanel(); + float var47 = var46.getAlignmentX(); + var46.setVisible(false); + boolean var50 = var46.isDoubleBuffered(); + var46.list(); + float var52 = var46.getAlignmentY(); + boolean var53 = var36.isFocusCycleRoot((java.awt.Container)var46); + boolean var54 = var46.isEnabled(); + java.awt.Dimension var55 = var46.getMaximumSize(); + var8.setMinimumSize(var55); + var8.disable(); + var8.setOpaque(true); + java.awt.event.MouseListener[] var60 = var8.getMouseListeners(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var25); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var28 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var31 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var32); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var35 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var42); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var43 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var44); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var47 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var50 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var52 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var53 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var54 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var55); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var60); + + } + + public void test243() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test243"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + SpaceWar.SpacePanel var4 = new SpaceWar.SpacePanel(); + java.awt.Color var5 = var4.getBackground(); + var0.setForeground(var5); + SpaceWar.SpacePanel var7 = new SpaceWar.SpacePanel(); + float var8 = var7.getAlignmentX(); + var7.setVisible(false); + boolean var11 = var7.isDoubleBuffered(); + java.awt.dnd.DropTarget var12 = var7.getDropTarget(); + var7.show(false); + java.awt.Rectangle var15 = var7.getVisibleRect(); + var0.repaint(var15); + var0.updateUI(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + } + + public void test244() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test244"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + boolean var4 = var0.inside(0, (-1)); + var0.transferFocusUpCycle(); + java.awt.Container var6 = var0.getParent(); + boolean var7 = var0.isMaximumSizeSet(); + java.awt.event.InputMethodListener[] var8 = var0.getInputMethodListeners(); + javax.swing.TransferHandler var9 = var0.getTransferHandler(); + java.awt.Dimension var10 = var0.size(); + SpaceWar.SpacePanel var11 = new SpaceWar.SpacePanel(); + float var12 = var11.getAlignmentX(); + boolean var13 = var11.hasFocus(); + java.awt.Insets var14 = var11.getInsets(); + java.awt.Rectangle var15 = var11.bounds(); + java.awt.event.MouseMotionListener[] var16 = var11.getMouseMotionListeners(); + boolean var17 = var11.isMaximumSizeSet(); + java.awt.LayoutManager var18 = var11.getLayout(); + java.awt.Rectangle var19 = var11.getBounds(); + var11.transferFocusBackward(); + SpaceWar.SpacePanel var21 = new SpaceWar.SpacePanel(); + float var22 = var21.getAlignmentX(); + var21.setVisible(false); + boolean var25 = var21.isDoubleBuffered(); + var21.list(); + float var27 = var21.getAlignmentY(); + java.awt.event.ComponentListener[] var28 = var21.getComponentListeners(); + java.awt.Component var29 = var21.getNextFocusableComponent(); + boolean var30 = var21.isManagingFocus(); + javax.swing.border.Border var31 = var21.getBorder(); + java.lang.Object var32 = var21.getTreeLock(); + javax.swing.border.Border var33 = var21.getBorder(); + var21.setEnabled(false); + SpaceWar.SpacePanel var36 = new SpaceWar.SpacePanel(); + float var37 = var36.getAlignmentX(); + SpaceWar.SpacePanel var38 = new SpaceWar.SpacePanel(); + float var39 = var38.getAlignmentX(); + var38.setVisible(false); + java.awt.Dimension var42 = var38.getPreferredSize(); + boolean var43 = var38.getVerifyInputWhenFocusTarget(); + java.awt.Component var46 = var38.findComponentAt(10, 1); + var36.addKeyListener((java.awt.event.KeyListener)var38); + var38.repaint(100, (-1), (-1), 1); + java.awt.image.ColorModel var53 = var38.getColorModel(); + boolean var54 = var38.isFocusTraversalPolicyProvider(); + var38.show(false); + boolean var57 = var38.isManagingFocus(); + SpaceWar.SpacePanel var58 = new SpaceWar.SpacePanel(); + java.awt.Color var59 = var58.getBackground(); + var58.repaint(); + var58.setRequestFocusEnabled(false); + var58.reshape(100, 0, 100, 0); + var58.requestFocus(); + java.awt.Rectangle var69 = var58.getVisibleRect(); + java.awt.Rectangle var70 = var58.getBounds(); + java.awt.im.InputMethodRequests var71 = var58.getInputMethodRequests(); + boolean var72 = var58.requestFocusInWindow(); + java.awt.Point var74 = var58.getMousePosition(false); + var58.setDebugGraphicsOptions(1); + java.awt.Graphics var77 = var58.getGraphics(); + var38.paint(var77); + var21.paintComponents(var77); + var11.update(var77); + var0.printAll(var77); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertNull(var9); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var22 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var28); + + // Regression assertion (captures the current behavior of the code) + assertNull(var29); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var30 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var31); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var32); + + // Regression assertion (captures the current behavior of the code) + assertNull(var33); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var39 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var42); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var43 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var46); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var53); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var54 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var57 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var59); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var69); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var70); + + // Regression assertion (captures the current behavior of the code) + assertNull(var71); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var72 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var74); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var77); + + } + + public void test245() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test245"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var6 = var0.getMouseListeners(); + var0.firePropertyChange("", 0.5f, 100.0f); + var0.enable(false); + int var13 = var0.getDebugGraphicsOptions(); + SpaceWar.SpacePanel var14 = new SpaceWar.SpacePanel(); + float var15 = var14.getAlignmentX(); + var14.setVisible(false); + var14.nextFocus(); + var14.repaint(1L); + SpaceWar.SpacePanel var21 = new SpaceWar.SpacePanel(); + float var22 = var21.getAlignmentX(); + var21.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var27 = new SpaceWar.SpacePanel(); + float var28 = var27.getAlignmentX(); + var27.setVisible(false); + java.awt.Dimension var31 = var27.getPreferredSize(); + var21.setMaximumSize(var31); + var14.setPreferredSize(var31); + java.awt.Container var34 = var14.getFocusCycleRootAncestor(); + java.awt.image.ColorModel var35 = var14.getColorModel(); + int var36 = var14.getComponentCount(); + java.awt.Component var37 = var0.add((java.awt.Component)var14); + // The following exception was thrown during execution. + // This behavior will recorded for regression testing. + try { + java.awt.Component var39 = var0.getComponent(505); + fail("Expected exception of type java.lang.ArrayIndexOutOfBoundsException"); + } catch (java.lang.ArrayIndexOutOfBoundsException e) { + // Expected exception. + } + + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var22 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var28 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var31); + + // Regression assertion (captures the current behavior of the code) + assertNull(var34); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var35); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var36 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var37); + + } + + public void test246() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test246"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var6 = var0.getMouseListeners(); + int var7 = var0.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var8 = var0.getInputMethodRequests(); + java.lang.String var9 = var0.getToolTipText(); + java.awt.Component[] var10 = var0.getComponents(); + SpaceWar.SpacePanel var11 = new SpaceWar.SpacePanel(); + float var12 = var11.getAlignmentX(); + var11.setVisible(false); + java.awt.Dimension var15 = var11.getPreferredSize(); + boolean var16 = var11.getVerifyInputWhenFocusTarget(); + java.awt.Component var19 = var11.findComponentAt(10, 1); + boolean var20 = var11.requestDefaultFocus(); + java.awt.Insets var21 = var11.getInsets(); + var11.setDoubleBuffered(false); + java.awt.Toolkit var24 = var11.getToolkit(); + java.awt.Dimension var25 = var11.getMinimumSize(); + java.awt.event.MouseListener[] var26 = var11.getMouseListeners(); + SpaceWar.SpacePanel var27 = new SpaceWar.SpacePanel(); + float var28 = var27.getAlignmentX(); + var27.setVisible(false); + java.awt.Dimension var31 = var27.getPreferredSize(); + java.awt.Toolkit var32 = var27.getToolkit(); + boolean var33 = var27.isFocusable(); + javax.swing.KeyStroke[] var34 = var27.getRegisteredKeyStrokes(); + java.awt.Component var37 = var27.getComponentAt(100, 100); + java.lang.Object var38 = var27.getTreeLock(); + SpaceWar.SpacePanel var39 = new SpaceWar.SpacePanel(); + float var40 = var39.getAlignmentX(); + var39.setVisible(false); + boolean var43 = var39.isDoubleBuffered(); + java.awt.dnd.DropTarget var44 = var39.getDropTarget(); + java.awt.Point var45 = var39.getMousePosition(); + java.lang.String var46 = var39.getUIClassID(); + var27.setNextFocusableComponent((java.awt.Component)var39); + int var48 = var27.getDebugGraphicsOptions(); + SpaceWar.SpacePanel var49 = new SpaceWar.SpacePanel(); + java.awt.Color var50 = var49.getBackground(); + var49.repaint(); + java.awt.im.InputMethodRequests var52 = var49.getInputMethodRequests(); + var49.list(); + SpaceWar.SpacePanel var54 = new SpaceWar.SpacePanel(); + java.awt.Color var55 = var54.getBackground(); + var54.repaint(); + var54.setRequestFocusEnabled(false); + var54.reshape(100, 0, 100, 0); + var54.requestFocus(); + java.awt.Rectangle var65 = var54.getVisibleRect(); + java.awt.Rectangle var66 = var54.getBounds(); + java.awt.im.InputMethodRequests var67 = var54.getInputMethodRequests(); + boolean var68 = var54.requestFocusInWindow(); + java.awt.Point var70 = var54.getMousePosition(false); + var54.setDebugGraphicsOptions(1); + java.awt.Graphics var73 = var54.getGraphics(); + var49.printComponents(var73); + var27.update(var73); + var11.paintComponents(var73); + var0.paintComponents(var73); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertNull(var9); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var21); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var25); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var28 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var31); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var32); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var33 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var34); + + // Regression assertion (captures the current behavior of the code) + assertNull(var37); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var38); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var40 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var43 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var44); + + // Regression assertion (captures the current behavior of the code) + assertNull(var45); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var46 + "' != '" + "PanelUI"+ "'", var46.equals("PanelUI")); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var48 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var50); + + // Regression assertion (captures the current behavior of the code) + assertNull(var52); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var55); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var65); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var66); + + // Regression assertion (captures the current behavior of the code) + assertNull(var67); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var68 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var70); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var73); + + } + + public void test247() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test247"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + var0.setRequestFocusEnabled(false); + var0.reshape(100, 0, 100, 0); + var0.requestFocus(); + SpaceWar.SpacePanel var11 = new SpaceWar.SpacePanel(); + float var12 = var11.getAlignmentX(); + var11.setVisible(false); + boolean var15 = var11.isDoubleBuffered(); + var11.list(); + SpaceWar.SpacePanel var17 = new SpaceWar.SpacePanel(); + float var18 = var17.getAlignmentX(); + var17.setVisible(false); + boolean var21 = var17.isDoubleBuffered(); + java.awt.dnd.DropTarget var22 = var17.getDropTarget(); + var17.show(false); + java.awt.Rectangle var25 = var17.getVisibleRect(); + java.awt.Rectangle var26 = var11.getBounds(var25); + javax.swing.JToolTip var27 = var11.createToolTip(); + java.awt.Graphics var28 = var11.getGraphics(); + var11.setAutoscrolls(false); + boolean var31 = var11.requestFocusInWindow(); + SpaceWar.SpacePanel var32 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var33 = new SpaceWar.SpacePanel(); + java.awt.Color var34 = var33.getBackground(); + SpaceWar.SpacePanel var35 = new SpaceWar.SpacePanel(); + float var36 = var35.getAlignmentX(); + var35.setVisible(false); + var35.nextFocus(); + var35.updateUI(); + var35.enableInputMethods(true); + var32.add((java.awt.Component)var33, (java.lang.Object)true); + java.awt.Image var46 = var33.createImage(1, (-1)); + java.awt.event.MouseListener[] var47 = var33.getMouseListeners(); + java.awt.Color var48 = var33.getBackground(); + boolean var49 = var33.getIgnoreRepaint(); + var33.enable(); + javax.swing.JToolTip var51 = var33.createToolTip(); + java.awt.Rectangle var52 = var51.bounds(); + var51.setBounds(3, 25, 24, 499); + var51.enableInputMethods(true); + SpaceWar.SpacePanel var60 = new SpaceWar.SpacePanel(); + var60.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + javax.swing.plaf.PanelUI var65 = var60.getUI(); + boolean var66 = var60.isDisplayable(); + SpaceWar.SpacePanel var67 = new SpaceWar.SpacePanel(); + float var68 = var67.getAlignmentX(); + var67.removeNotify(); + SpaceWar.SpacePanel var70 = new SpaceWar.SpacePanel(); + float var71 = var70.getAlignmentX(); + var70.setVisible(false); + boolean var74 = var70.isDoubleBuffered(); + var70.list(); + float var76 = var70.getAlignmentY(); + java.awt.Insets var77 = var70.getInsets(); + java.awt.Insets var78 = var67.getInsets(var77); + java.awt.Insets var79 = var60.getInsets(var78); + java.awt.Insets var80 = var51.getInsets(var79); + java.awt.Insets var81 = var11.getInsets(var79); + java.awt.Insets var82 = var0.getInsets(var79); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var25); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var27); + + // Regression assertion (captures the current behavior of the code) + assertNull(var28); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var31 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var34); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var36 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNull(var46); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var47); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var48); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var49 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var51); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var52); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var65); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var66 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var68 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var71 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var74 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var76 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var77); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var78); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var79); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var80); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var81); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var82); + + } + + public void test248() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test248"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + boolean var6 = var0.isFocusCycleRoot(); + java.util.Locale var7 = var0.getLocale(); + javax.swing.TransferHandler var8 = var0.getTransferHandler(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertNull(var8); + + } + + public void test249() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test249"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + var0.list(); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + float var7 = var6.getAlignmentX(); + var6.setVisible(false); + boolean var10 = var6.isDoubleBuffered(); + java.awt.dnd.DropTarget var11 = var6.getDropTarget(); + var6.show(false); + java.awt.Rectangle var14 = var6.getVisibleRect(); + java.awt.Rectangle var15 = var0.getBounds(var14); + javax.swing.JToolTip var16 = var0.createToolTip(); + boolean var17 = var16.getInheritsPopupMenu(); + var16.layout(); + var16.invalidate(); + java.awt.Cursor var20 = var16.getCursor(); + SpaceWar.SpacePanel var21 = new SpaceWar.SpacePanel(); + float var22 = var21.getAlignmentX(); + var21.setVisible(false); + var21.nextFocus(); + var21.requestFocus(); + boolean var27 = var21.isBackgroundSet(); + var16.remove((java.awt.Component)var21); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var22 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == true); + + } + + public void test250() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test250"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var1 = new SpaceWar.SpacePanel(); + java.awt.Color var2 = var1.getBackground(); + SpaceWar.SpacePanel var3 = new SpaceWar.SpacePanel(); + float var4 = var3.getAlignmentX(); + var3.setVisible(false); + var3.nextFocus(); + var3.updateUI(); + var3.enableInputMethods(true); + var0.add((java.awt.Component)var1, (java.lang.Object)true); + java.awt.Image var14 = var1.createImage(1, (-1)); + java.awt.event.MouseListener[] var15 = var1.getMouseListeners(); + java.awt.Color var16 = var1.getBackground(); + boolean var17 = var1.getIgnoreRepaint(); + javax.swing.InputMap var18 = var1.getInputMap(); + var1.addNotify(); + SpaceWar.SpacePanel var20 = new SpaceWar.SpacePanel(); + float var21 = var20.getAlignmentX(); + var20.setVisible(false); + java.awt.Dimension var24 = var20.getPreferredSize(); + boolean var25 = var20.getVerifyInputWhenFocusTarget(); + boolean var26 = var20.isShowing(); + SpaceWar.SpacePanel var27 = new SpaceWar.SpacePanel(); + float var28 = var27.getAlignmentX(); + var27.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var33 = new SpaceWar.SpacePanel(); + float var34 = var33.getAlignmentX(); + var33.setVisible(false); + java.awt.Dimension var37 = var33.getPreferredSize(); + var27.setMaximumSize(var37); + boolean var39 = var27.getVerifyInputWhenFocusTarget(); + javax.accessibility.AccessibleContext var40 = var27.getAccessibleContext(); + boolean var41 = var27.isDoubleBuffered(); + boolean var42 = var27.getAutoscrolls(); + var27.repaint(10L, (-1), 25, (-1), 100); + var27.updateUI(); + boolean var50 = var27.requestDefaultFocus(); + SpaceWar.SpacePanel var51 = new SpaceWar.SpacePanel(); + float var52 = var51.getAlignmentX(); + var51.setVisible(false); + boolean var55 = var51.isDoubleBuffered(); + SpaceWar.SpacePanel var56 = new SpaceWar.SpacePanel(); + float var57 = var56.getAlignmentX(); + var56.setVisible(false); + var56.nextFocus(); + var56.reshape((-1), 1, (-1), 10); + var56.disable(); + boolean var67 = var56.isFocusable(); + int var68 = var56.getHeight(); + var51.setNextFocusableComponent((java.awt.Component)var56); + SpaceWar.SpacePanel var70 = new SpaceWar.SpacePanel(); + float var71 = var70.getAlignmentX(); + var70.setVisible(false); + var70.nextFocus(); + SpaceWar.SpacePanel var75 = new SpaceWar.SpacePanel(); + float var76 = var75.getAlignmentX(); + var75.setVisible(false); + SpaceWar.SpacePanel var79 = new SpaceWar.SpacePanel(); + java.awt.Color var80 = var79.getBackground(); + var75.setForeground(var80); + var70.setBackground(var80); + java.awt.Component var83 = var70.getNextFocusableComponent(); + float var84 = var70.getAlignmentY(); + java.awt.event.MouseListener[] var85 = var70.getMouseListeners(); + java.awt.Point var86 = var70.location(); + java.awt.Point var87 = var51.getLocation(var86); + java.awt.Point var88 = var27.getLocation(var86); + java.awt.Component var89 = var20.findComponentAt(var88); + java.awt.Component var90 = var1.getComponentAt(var88); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var2); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var28 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var34 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var37); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var39 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var40); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var41 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var42 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var50 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var52 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var55 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var57 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var67 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var68 == 10); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var71 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var76 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var80); + + // Regression assertion (captures the current behavior of the code) + assertNull(var83); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var84 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var85); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var86); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var87); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var88); + + // Regression assertion (captures the current behavior of the code) + assertNull(var89); + + // Regression assertion (captures the current behavior of the code) + assertNull(var90); + + } + + public void test251() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test251"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + var0.setName(""); + java.awt.Dimension var3 = var0.minimumSize(); + boolean var4 = var0.isDoubleBuffered(); + SpaceWar.SpacePanel var5 = new SpaceWar.SpacePanel(); + float var6 = var5.getAlignmentX(); + var5.setVisible(false); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + java.awt.Color var10 = var9.getBackground(); + var5.setForeground(var10); + SpaceWar.SpacePanel var12 = new SpaceWar.SpacePanel(); + float var13 = var12.getAlignmentX(); + var12.setVisible(false); + boolean var16 = var12.isDoubleBuffered(); + java.awt.dnd.DropTarget var17 = var12.getDropTarget(); + var12.show(false); + java.awt.Rectangle var20 = var12.getVisibleRect(); + var5.repaint(var20); + java.awt.FocusTraversalPolicy var22 = var5.getFocusTraversalPolicy(); + java.awt.im.InputMethodRequests var23 = var5.getInputMethodRequests(); + var5.layout(); + boolean var25 = var5.isFocusTraversalPolicyProvider(); + java.awt.Component var26 = var0.add((java.awt.Component)var5); + var5.setOpaque(false); + float var29 = var5.getAlignmentX(); + SpaceWar.SpacePanel var30 = new SpaceWar.SpacePanel(); + float var31 = var30.getAlignmentX(); + var30.setVisible(false); + var30.nextFocus(); + var30.repaint(1L); + var30.firePropertyChange("", (short)(-1), (short)(-1)); + java.awt.Component var43 = var30.getComponentAt(0, 100); + var30.nextFocus(); + java.awt.image.VolatileImage var47 = var30.createVolatileImage(500, 400); + boolean var48 = var5.isFocusCycleRoot((java.awt.Container)var30); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertNull(var23); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var29 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var31 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNull(var43); + + // Regression assertion (captures the current behavior of the code) + assertNull(var47); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var48 == false); + + } + + public void test252() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test252"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + float var7 = var6.getAlignmentX(); + var6.setVisible(false); + java.awt.Dimension var10 = var6.getPreferredSize(); + var0.setMaximumSize(var10); + boolean var12 = var0.getVerifyInputWhenFocusTarget(); + boolean var13 = var0.isFontSet(); + SpaceWar.SpacePanel var14 = new SpaceWar.SpacePanel(); + float var15 = var14.getAlignmentX(); + var14.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var20 = var14.getUI(); + java.awt.im.InputMethodRequests var21 = var14.getInputMethodRequests(); + SpaceWar.SpacePanel var22 = new SpaceWar.SpacePanel(); + float var23 = var22.getAlignmentX(); + var22.setVisible(false); + var22.nextFocus(); + var22.updateUI(); + var22.enableInputMethods(true); + var22.setSize((-1), 1); + SpaceWar.SpacePanel var33 = new SpaceWar.SpacePanel(); + var33.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var14.add((java.awt.Component)var22, (java.lang.Object)"SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + java.awt.ComponentOrientation var39 = var22.getComponentOrientation(); + java.beans.VetoableChangeListener[] var40 = var22.getVetoableChangeListeners(); + int var41 = var22.getHeight(); + var22.enable(true); + boolean var44 = var22.isFocusTraversalPolicyProvider(); + SpaceWar.SpacePanel var45 = new SpaceWar.SpacePanel(); + java.awt.Color var46 = var45.getBackground(); + var45.repaint(); + var45.setRequestFocusEnabled(false); + var45.reshape(100, 0, 100, 0); + var45.requestFocus(); + var45.firePropertyChange("hi!", '4', ' '); + java.awt.Point var60 = var45.getLocation(); + var22.setLocation(var60); + boolean var62 = var22.isManagingFocus(); + int var63 = var0.getComponentZOrder((java.awt.Component)var22); + SpaceWar.SpacePanel var64 = new SpaceWar.SpacePanel(); + float var65 = var64.getAlignmentX(); + SpaceWar.SpacePanel var66 = new SpaceWar.SpacePanel(); + float var67 = var66.getAlignmentX(); + var66.setVisible(false); + java.awt.Dimension var70 = var66.getPreferredSize(); + boolean var71 = var66.getVerifyInputWhenFocusTarget(); + java.awt.Component var74 = var66.findComponentAt(10, 1); + var64.addKeyListener((java.awt.event.KeyListener)var66); + java.awt.Dimension var76 = var66.getMinimumSize(); + SpaceWar.SpacePanel var77 = new SpaceWar.SpacePanel(); + java.awt.Color var78 = var77.getBackground(); + var77.repaint(); + var77.setRequestFocusEnabled(false); + var77.reshape(100, 0, 100, 0); + var77.requestFocus(); + java.awt.Rectangle var88 = var77.getVisibleRect(); + var66.setBounds(var88); + var22.computeVisibleRect(var88); + java.lang.String var91 = var22.getToolTipText(); + java.awt.event.KeyListener[] var92 = var22.getKeyListeners(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertNull(var21); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var39); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var40); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var41 == 1); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var44 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var46); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var60); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var62 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var63 == (-1)); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var65 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var67 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var70); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var71 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var74); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var76); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var78); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var88); + + // Regression assertion (captures the current behavior of the code) + assertNull(var91); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var92); + + } + + public void test253() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test253"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.reshape((-1), 1, (-1), 10); + var0.disable(); + java.awt.LayoutManager var11 = var0.getLayout(); + java.awt.Container var12 = var0.getParent(); + boolean var13 = var0.isPaintingForPrint(); + SpaceWar.SpacePanel var14 = new SpaceWar.SpacePanel(); + float var15 = var14.getAlignmentX(); + var14.setVisible(false); + var14.nextFocus(); + var14.reshape((-1), 1, (-1), 10); + SpaceWar.SpacePanel var24 = new SpaceWar.SpacePanel(); + java.awt.Color var25 = var24.getBackground(); + var24.repaint(); + var24.setRequestFocusEnabled(false); + var24.reshape(100, 0, 100, 0); + java.awt.Component var34 = var14.add((java.awt.Component)var24); + SpaceWar.SpacePanel var35 = new SpaceWar.SpacePanel(); + var35.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + javax.swing.plaf.PanelUI var40 = var35.getUI(); + SpaceWar.SpacePanel var41 = new SpaceWar.SpacePanel(); + float var42 = var41.getAlignmentX(); + var41.setVisible(false); + var41.nextFocus(); + var41.repaint(1L); + SpaceWar.SpacePanel var48 = new SpaceWar.SpacePanel(); + float var49 = var48.getAlignmentX(); + var48.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var54 = new SpaceWar.SpacePanel(); + float var55 = var54.getAlignmentX(); + var54.setVisible(false); + java.awt.Dimension var58 = var54.getPreferredSize(); + var48.setMaximumSize(var58); + var41.setPreferredSize(var58); + var35.setMaximumSize(var58); + java.awt.Dimension var62 = var24.getSize(var58); + var0.setSize(var62); + SpaceWar.SpacePanel var64 = new SpaceWar.SpacePanel(); + float var65 = var64.getAlignmentX(); + var64.setVisible(false); + boolean var68 = var64.isDoubleBuffered(); + var64.enable(false); + var0.removeKeyListener((java.awt.event.KeyListener)var64); + java.awt.Rectangle var72 = var64.bounds(); + var64.invalidate(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var25); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var34); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var40); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var42 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var49 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var55 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var58); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var62); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var65 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var68 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var72); + + } + + public void test254() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test254"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + boolean var2 = var0.hasFocus(); + boolean var3 = var0.isPreferredSizeSet(); + SpaceWar.SpacePanel var4 = new SpaceWar.SpacePanel(); + java.awt.Color var5 = var4.getBackground(); + var4.repaint(); + var4.setRequestFocusEnabled(false); + int var9 = var0.getComponentZOrder((java.awt.Component)var4); + int var10 = var0.getDebugGraphicsOptions(); + var0.enableInputMethods(true); + SpaceWar.SpacePanel var13 = new SpaceWar.SpacePanel(); + float var14 = var13.getAlignmentX(); + var13.setVisible(false); + var13.nextFocus(); + var13.reshape((-1), 1, (-1), 10); + SpaceWar.SpacePanel var23 = new SpaceWar.SpacePanel(); + java.awt.Color var24 = var23.getBackground(); + var23.repaint(); + var23.setRequestFocusEnabled(false); + var23.reshape(100, 0, 100, 0); + java.awt.Component var33 = var13.add((java.awt.Component)var23); + SpaceWar.SpacePanel var34 = new SpaceWar.SpacePanel(); + var34.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + javax.swing.plaf.PanelUI var39 = var34.getUI(); + SpaceWar.SpacePanel var40 = new SpaceWar.SpacePanel(); + float var41 = var40.getAlignmentX(); + var40.setVisible(false); + var40.nextFocus(); + var40.repaint(1L); + SpaceWar.SpacePanel var47 = new SpaceWar.SpacePanel(); + float var48 = var47.getAlignmentX(); + var47.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var53 = new SpaceWar.SpacePanel(); + float var54 = var53.getAlignmentX(); + var53.setVisible(false); + java.awt.Dimension var57 = var53.getPreferredSize(); + var47.setMaximumSize(var57); + var40.setPreferredSize(var57); + var34.setMaximumSize(var57); + java.awt.Dimension var61 = var23.getSize(var57); + var0.setMinimumSize(var61); + SpaceWar.SpacePanel var63 = new SpaceWar.SpacePanel(); + float var64 = var63.getAlignmentX(); + var63.setVisible(false); + boolean var67 = var63.isDoubleBuffered(); + var63.list(); + SpaceWar.SpacePanel var69 = new SpaceWar.SpacePanel(); + float var70 = var69.getAlignmentX(); + var69.setVisible(false); + boolean var73 = var69.isDoubleBuffered(); + java.awt.dnd.DropTarget var74 = var69.getDropTarget(); + var69.show(false); + java.awt.Rectangle var77 = var69.getVisibleRect(); + java.awt.Rectangle var78 = var63.getBounds(var77); + javax.swing.JToolTip var79 = var63.createToolTip(); + java.awt.Graphics var80 = var63.getGraphics(); + java.beans.VetoableChangeListener[] var81 = var63.getVetoableChangeListeners(); + var0.addKeyListener((java.awt.event.KeyListener)var63); + java.awt.event.ContainerListener[] var83 = var0.getContainerListeners(); + var0.enableInputMethods(true); + float var86 = var0.getAlignmentX(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var2 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == (-1)); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var33); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var39); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var41 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var48 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var54 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var57); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var61); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var64 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var67 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var70 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var73 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var74); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var77); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var78); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var79); + + // Regression assertion (captures the current behavior of the code) + assertNull(var80); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var81); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var83); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var86 == 0.5f); + + } + + public void test255() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test255"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + java.awt.im.InputMethodRequests var3 = var0.getInputMethodRequests(); + int var4 = var0.countComponents(); + java.awt.event.ComponentListener[] var5 = var0.getComponentListeners(); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + float var7 = var6.getAlignmentX(); + var6.removeNotify(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.setVisible(false); + boolean var13 = var9.isDoubleBuffered(); + var9.list(); + float var15 = var9.getAlignmentY(); + java.awt.Insets var16 = var9.getInsets(); + java.awt.Insets var17 = var6.getInsets(var16); + java.awt.Insets var18 = var0.getInsets(var17); + javax.swing.JPopupMenu var19 = var0.getComponentPopupMenu(); + java.awt.image.BufferedImage var21 = var0.loadImg("PanelUI"); + java.awt.image.VolatileImage var24 = var0.createVolatileImage((-1), 400); + java.awt.Point var26 = var0.getMousePosition(false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertNull(var21); + + // Regression assertion (captures the current behavior of the code) + assertNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertNull(var26); + + } + + public void test256() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test256"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + SpaceWar.SpacePanel var4 = new SpaceWar.SpacePanel(); + java.awt.Color var5 = var4.getBackground(); + var0.setForeground(var5); + SpaceWar.SpacePanel var7 = new SpaceWar.SpacePanel(); + float var8 = var7.getAlignmentX(); + var7.setVisible(false); + boolean var11 = var7.isDoubleBuffered(); + java.awt.dnd.DropTarget var12 = var7.getDropTarget(); + var7.show(false); + java.awt.Rectangle var15 = var7.getVisibleRect(); + var0.repaint(var15); + java.awt.FocusTraversalPolicy var17 = var0.getFocusTraversalPolicy(); + SpaceWar.SpacePanel var18 = new SpaceWar.SpacePanel(); + float var19 = var18.getAlignmentX(); + var18.firePropertyChange("", (-1), 1); + boolean var24 = var18.isFocusOwner(); + SpaceWar.SpacePanel var26 = new SpaceWar.SpacePanel(); + float var27 = var26.getAlignmentX(); + var26.setVisible(false); + java.awt.Dimension var30 = var26.getPreferredSize(); + java.awt.Toolkit var31 = var26.getToolkit(); + SpaceWar.SpacePanel var32 = new SpaceWar.SpacePanel(); + var32.setName(""); + int var35 = var32.getX(); + SpaceWar.SpacePanel var36 = new SpaceWar.SpacePanel(); + float var37 = var36.getAlignmentX(); + var36.setVisible(false); + var36.nextFocus(); + SpaceWar.SpacePanel var41 = new SpaceWar.SpacePanel(); + float var42 = var41.getAlignmentX(); + var41.setVisible(false); + SpaceWar.SpacePanel var45 = new SpaceWar.SpacePanel(); + java.awt.Color var46 = var45.getBackground(); + var41.setForeground(var46); + var36.setBackground(var46); + var32.setBackground(var46); + var26.setForeground(var46); + var18.putClientProperty((java.lang.Object)(byte)100, (java.lang.Object)var46); + var0.setBackground(var46); + SpaceWar.SpacePanel var53 = new SpaceWar.SpacePanel(); + float var54 = var53.getAlignmentX(); + var53.setVisible(false); + boolean var57 = var53.isDoubleBuffered(); + java.awt.dnd.DropTarget var58 = var53.getDropTarget(); + var53.show(false); + boolean var61 = var53.isPaintingForPrint(); + SpaceWar.SpacePanel var62 = new SpaceWar.SpacePanel(); + float var63 = var62.getAlignmentX(); + SpaceWar.SpacePanel var64 = new SpaceWar.SpacePanel(); + float var65 = var64.getAlignmentX(); + var64.setVisible(false); + java.awt.Dimension var68 = var64.getPreferredSize(); + boolean var69 = var64.getVerifyInputWhenFocusTarget(); + java.awt.Component var72 = var64.findComponentAt(10, 1); + var62.addKeyListener((java.awt.event.KeyListener)var64); + java.awt.Dimension var74 = var64.getMinimumSize(); + var53.setMinimumSize(var74); + java.awt.Dimension var76 = var0.getSize(var74); + var0.doLayout(); + boolean var78 = var0.getVerifyInputWhenFocusTarget(); + javax.swing.KeyStroke[] var79 = var0.getRegisteredKeyStrokes(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var24 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var30); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var31); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var35 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var42 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var46); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var54 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var57 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var58); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var61 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var63 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var65 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var68); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var69 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var72); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var74); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var76); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var78 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var79); + + } + + public void test257() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test257"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.repaint(1L); + var0.firePropertyChange("", (short)(-1), (short)(-1)); + java.awt.Component var13 = var0.getComponentAt(0, 100); + var0.nextFocus(); + java.awt.Color var15 = var0.getForeground(); + boolean var16 = var0.isPreferredSizeSet(); + java.awt.Dimension var17 = var0.minimumSize(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var17); + + } + + public void test258() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test258"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var6 = var0.getUI(); + var0.disable(); + java.awt.FocusTraversalPolicy var8 = var0.getFocusTraversalPolicy(); + var0.invalidate(); + var0.hide(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertNull(var8); + + } + + public void test259() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test259"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + var0.list(); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + float var7 = var6.getAlignmentX(); + var6.setVisible(false); + boolean var10 = var6.isDoubleBuffered(); + java.awt.dnd.DropTarget var11 = var6.getDropTarget(); + var6.show(false); + java.awt.Rectangle var14 = var6.getVisibleRect(); + java.awt.Rectangle var15 = var0.getBounds(var14); + javax.swing.JToolTip var16 = var0.createToolTip(); + var0.firePropertyChange("", false, false); + var0.validate(); + var0.setAlignmentY((-1.0f)); + SpaceWar.SpacePanel var24 = new SpaceWar.SpacePanel(); + float var25 = var24.getAlignmentX(); + boolean var26 = var24.hasFocus(); + SpaceWar.SpacePanel var27 = new SpaceWar.SpacePanel(); + float var28 = var27.getAlignmentX(); + var27.setVisible(false); + var27.nextFocus(); + var27.reshape((-1), 1, (-1), 10); + var27.disable(); + java.awt.LayoutManager var38 = var27.getLayout(); + var27.setVisible(false); + var24.remove((java.awt.Component)var27); + java.awt.Dimension var42 = var27.getSize(); + var0.setSize(var42); + SpaceWar.SpacePanel var45 = new SpaceWar.SpacePanel(); + float var46 = var45.getAlignmentX(); + var45.setVisible(false); + boolean var49 = var45.isDoubleBuffered(); + java.awt.dnd.DropTarget var50 = var45.getDropTarget(); + var45.show(false); + java.awt.Rectangle var53 = var45.getVisibleRect(); + java.awt.image.BufferedImage var55 = var45.loadImg("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + java.awt.ComponentOrientation var56 = var45.getComponentOrientation(); + boolean var57 = var45.isPaintingTile(); + boolean var58 = var45.isOptimizedDrawingEnabled(); + javax.swing.TransferHandler var59 = var45.getTransferHandler(); + javax.swing.InputMap var60 = var45.getInputMap(); + // The following exception was thrown during execution. + // This behavior will recorded for regression testing. + try { + var0.setInputMap(25, var60); + fail("Expected exception of type java.lang.IllegalArgumentException"); + } catch (java.lang.IllegalArgumentException e) { + // Expected exception. + } + + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var28 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var38); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var42); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var46 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var49 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var50); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var53); + + // Regression assertion (captures the current behavior of the code) + assertNull(var55); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var56); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var57 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var58 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var59); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var60); + + } + + public void test260() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test260"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + var0.list(); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + float var7 = var6.getAlignmentX(); + var6.setVisible(false); + boolean var10 = var6.isDoubleBuffered(); + java.awt.dnd.DropTarget var11 = var6.getDropTarget(); + var6.show(false); + java.awt.Rectangle var14 = var6.getVisibleRect(); + java.awt.Rectangle var15 = var0.getBounds(var14); + javax.swing.JToolTip var16 = var0.createToolTip(); + var0.firePropertyChange("", false, false); + var0.setFocusTraversalKeysEnabled(false); + java.awt.Component var23 = var0.getNextFocusableComponent(); + java.awt.Cursor var24 = var0.getCursor(); + javax.swing.JToolTip var25 = var0.createToolTip(); + var0.layout(); + var0.firePropertyChange("", ' ', ' '); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertNull(var23); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var25); + + } + + public void test261() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test261"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + var0.list(); + float var6 = var0.getAlignmentY(); + java.awt.event.ComponentListener[] var7 = var0.getComponentListeners(); + java.awt.Component var8 = var0.getNextFocusableComponent(); + boolean var9 = var0.isManagingFocus(); + boolean var10 = var0.isPaintingForPrint(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == false); + + } + + public void test262() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test262"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.reshape((-1), 1, (-1), 10); + var0.disable(); + boolean var11 = var0.isFocusable(); + SpaceWar.SpacePanel var12 = new SpaceWar.SpacePanel(); + float var13 = var12.getAlignmentX(); + var12.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var18 = var12.getUI(); + java.awt.im.InputMethodRequests var19 = var12.getInputMethodRequests(); + SpaceWar.SpacePanel var20 = new SpaceWar.SpacePanel(); + float var21 = var20.getAlignmentX(); + var20.setVisible(false); + var20.nextFocus(); + var20.updateUI(); + var20.enableInputMethods(true); + var20.setSize((-1), 1); + SpaceWar.SpacePanel var31 = new SpaceWar.SpacePanel(); + var31.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var12.add((java.awt.Component)var20, (java.lang.Object)"SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + java.awt.event.KeyListener[] var37 = var12.getKeyListeners(); + java.awt.FocusTraversalPolicy var38 = var12.getFocusTraversalPolicy(); + SpaceWar.SpacePanel var39 = new SpaceWar.SpacePanel(); + var39.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + java.awt.Toolkit var44 = var39.getToolkit(); + var0.add((java.awt.Component)var12, (java.lang.Object)var39); + var0.layout(); + boolean var47 = var0.isVisible(); + var0.firePropertyChange("PanelUI", (byte)100, (byte)10); + java.awt.Cursor var52 = var0.getCursor(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var37); + + // Regression assertion (captures the current behavior of the code) + assertNull(var38); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var44); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var47 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var52); + + } + + public void test263() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test263"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + var0.show(false); + boolean var8 = var0.isPaintingForPrint(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var15 = var9.getMouseListeners(); + int var16 = var9.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var17 = var9.getInputMethodRequests(); + var0.addKeyListener((java.awt.event.KeyListener)var9); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + float var20 = var19.getAlignmentX(); + var19.setVisible(false); + boolean var23 = var19.isDoubleBuffered(); + var19.list(); + float var25 = var19.getAlignmentY(); + boolean var26 = var9.isFocusCycleRoot((java.awt.Container)var19); + boolean var27 = var19.isEnabled(); + java.awt.Dimension var28 = var19.getMaximumSize(); + var19.setName("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + var19.updateUI(); + var19.nextFocus(); + var19.move(500, 0); + var19.setFocusTraversalKeysEnabled(true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var28); + + } + + public void test264() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test264"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + java.awt.Dimension var4 = var0.getPreferredSize(); + boolean var5 = var0.getVerifyInputWhenFocusTarget(); + boolean var6 = var0.isShowing(); + boolean var7 = var0.isBackgroundSet(); + java.awt.im.InputContext var8 = var0.getInputContext(); + var0.firePropertyChange("hi!", (short)100, (short)1); + boolean var13 = var0.isFocusable(); + java.awt.Component.BaselineResizeBehavior var14 = var0.getBaselineResizeBehavior(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var4); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + } + + public void test265() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test265"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + var0.show(false); + boolean var8 = var0.isPaintingForPrint(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var15 = var9.getMouseListeners(); + int var16 = var9.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var17 = var9.getInputMethodRequests(); + var0.addKeyListener((java.awt.event.KeyListener)var9); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + float var20 = var19.getAlignmentX(); + var19.setVisible(false); + boolean var23 = var19.isDoubleBuffered(); + var19.list(); + float var25 = var19.getAlignmentY(); + boolean var26 = var9.isFocusCycleRoot((java.awt.Container)var19); + var19.firePropertyChange("", 1L, 1L); + var19.setVerifyInputWhenFocusTarget(true); + var19.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", '4', '4'); + java.awt.Point var37 = var19.getLocation(); + int var38 = var19.getDebugGraphicsOptions(); + java.awt.FocusTraversalPolicy var39 = var19.getFocusTraversalPolicy(); + java.awt.event.KeyListener[] var40 = var19.getKeyListeners(); + var19.firePropertyChange("SpaceWar.SpacePanel[,-1,100,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=265,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", (byte)0, (byte)1); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var37); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var38 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var39); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var40); + + } + + public void test266() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test266"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var6 = var0.getUI(); + java.awt.im.InputMethodRequests var7 = var0.getInputMethodRequests(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + java.awt.Color var10 = var9.getBackground(); + SpaceWar.SpacePanel var11 = new SpaceWar.SpacePanel(); + float var12 = var11.getAlignmentX(); + var11.setVisible(false); + var11.nextFocus(); + var11.updateUI(); + var11.enableInputMethods(true); + var8.add((java.awt.Component)var9, (java.lang.Object)true); + var8.move(24, 500); + boolean var23 = javax.swing.JComponent.isLightweightComponent((java.awt.Component)var8); + float var24 = var8.getAlignmentY(); + SpaceWar.SpacePanel var25 = new SpaceWar.SpacePanel(); + float var26 = var25.getAlignmentX(); + var25.setVisible(false); + boolean var29 = var25.isDoubleBuffered(); + var25.list(); + SpaceWar.SpacePanel var31 = new SpaceWar.SpacePanel(); + float var32 = var31.getAlignmentX(); + var31.setVisible(false); + boolean var35 = var31.isDoubleBuffered(); + java.awt.dnd.DropTarget var36 = var31.getDropTarget(); + var31.show(false); + java.awt.Rectangle var39 = var31.getVisibleRect(); + java.awt.image.BufferedImage var41 = var31.loadImg("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + boolean var42 = var25.isAncestorOf((java.awt.Component)var31); + float var43 = var25.getAlignmentX(); + java.awt.image.VolatileImage var46 = var25.createVolatileImage(25, 1); + SpaceWar.SpacePanel var47 = new SpaceWar.SpacePanel(); + var47.setName(""); + java.awt.ComponentOrientation var50 = var47.getComponentOrientation(); + var25.remove((java.awt.Component)var47); + java.awt.Dimension var52 = var47.minimumSize(); + SpaceWar.SpacePanel var53 = new SpaceWar.SpacePanel(); + float var54 = var53.getAlignmentX(); + var53.setVisible(false); + var53.setInheritsPopupMenu(false); + var53.setFocusTraversalPolicyProvider(true); + boolean var63 = var53.inside(25, 3); + SpaceWar.SpacePanel var64 = new SpaceWar.SpacePanel(); + float var65 = var64.getAlignmentX(); + var64.setVisible(false); + boolean var68 = var64.isDoubleBuffered(); + java.awt.dnd.DropTarget var69 = var64.getDropTarget(); + var64.show(false); + boolean var72 = var64.isPaintingForPrint(); + SpaceWar.SpacePanel var73 = new SpaceWar.SpacePanel(); + float var74 = var73.getAlignmentX(); + SpaceWar.SpacePanel var75 = new SpaceWar.SpacePanel(); + float var76 = var75.getAlignmentX(); + var75.setVisible(false); + java.awt.Dimension var79 = var75.getPreferredSize(); + boolean var80 = var75.getVerifyInputWhenFocusTarget(); + java.awt.Component var83 = var75.findComponentAt(10, 1); + var73.addKeyListener((java.awt.event.KeyListener)var75); + java.awt.Dimension var85 = var75.getMinimumSize(); + var64.setMinimumSize(var85); + var53.setPreferredSize(var85); + boolean var89 = var53.requestFocus(true); + var53.reshape((-1), 10, 24, 0); + java.awt.event.MouseWheelListener[] var95 = var53.getMouseWheelListeners(); + java.awt.FocusTraversalPolicy var96 = var53.getFocusTraversalPolicy(); + var47.setFocusTraversalPolicy(var96); + var8.setFocusTraversalPolicy(var96); + var0.setFocusTraversalPolicy(var96); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var24 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var29 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var32 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var35 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var36); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var39); + + // Regression assertion (captures the current behavior of the code) + assertNull(var41); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var42 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var43 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNull(var46); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var50); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var52); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var54 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var63 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var65 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var68 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var69); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var72 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var74 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var76 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var79); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var80 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var83); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var85); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var89 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var95); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var96); + + } + + public void test267() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test267"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.setDoubleBuffered(true); + var0.repaint(0, 500, 2, 24); + java.awt.Cursor var11 = var0.getCursor(); + var0.setOpaque(false); + java.awt.Font var14 = var0.getFont(); + SpaceWar.SpacePanel var15 = new SpaceWar.SpacePanel(); + float var16 = var15.getAlignmentX(); + var15.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var21 = var15.getMouseListeners(); + int var22 = var15.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var23 = var15.getInputMethodRequests(); + var15.removeNotify(); + var15.enable(); + SpaceWar.SpacePanel var26 = new SpaceWar.SpacePanel(); + java.awt.Color var27 = var26.getBackground(); + boolean var30 = var26.inside(0, (-1)); + var26.transferFocusUpCycle(); + java.lang.String var32 = var26.getName(); + boolean var33 = var15.isFocusCycleRoot((java.awt.Container)var26); + boolean var34 = var15.isOptimizedDrawingEnabled(); + var0.addKeyListener((java.awt.event.KeyListener)var15); + SpaceWar.SpacePanel var36 = new SpaceWar.SpacePanel(); + float var37 = var36.getAlignmentX(); + var36.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var42 = var36.getUI(); + java.awt.im.InputMethodRequests var43 = var36.getInputMethodRequests(); + SpaceWar.SpacePanel var44 = new SpaceWar.SpacePanel(); + float var45 = var44.getAlignmentX(); + var44.setVisible(false); + var44.nextFocus(); + var44.updateUI(); + var44.enableInputMethods(true); + var44.setSize((-1), 1); + SpaceWar.SpacePanel var55 = new SpaceWar.SpacePanel(); + var55.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var36.add((java.awt.Component)var44, (java.lang.Object)"SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + SpaceWar.SpacePanel var61 = new SpaceWar.SpacePanel(); + float var62 = var61.getAlignmentX(); + var61.setVisible(false); + java.awt.Dimension var65 = var61.getPreferredSize(); + java.awt.Toolkit var66 = var61.getToolkit(); + java.awt.Toolkit var67 = var61.getToolkit(); + java.awt.Component var68 = var44.add((java.awt.Component)var61); + var44.setDebugGraphicsOptions(0); + var44.setVerifyInputWhenFocusTarget(false); + SpaceWar.SpacePanel var73 = new SpaceWar.SpacePanel(); + float var74 = var73.getAlignmentX(); + var73.setVisible(false); + boolean var77 = var73.isDoubleBuffered(); + var73.list(); + float var79 = var73.getAlignmentY(); + java.awt.Insets var80 = var73.getInsets(); + SpaceWar.SpacePanel var81 = new SpaceWar.SpacePanel(); + float var82 = var81.getAlignmentX(); + var81.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var87 = new SpaceWar.SpacePanel(); + float var88 = var87.getAlignmentX(); + var87.setVisible(false); + java.awt.Dimension var91 = var87.getPreferredSize(); + var81.setMaximumSize(var91); + java.awt.Dimension var93 = var73.getSize(var91); + var44.setPreferredSize(var93); + java.awt.event.MouseWheelListener[] var95 = var44.getMouseWheelListeners(); + var0.removeKeyListener((java.awt.event.KeyListener)var44); + boolean var97 = var44.getIgnoreRepaint(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var21); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var22 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var23); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var27); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var30 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var32); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var33 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var34 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var42); + + // Regression assertion (captures the current behavior of the code) + assertNull(var43); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var45 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var62 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var65); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var66); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var67); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var68); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var74 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var77 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var79 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var80); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var82 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var88 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var91); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var93); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var95); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var97 == false); + + } + + public void test268() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test268"); + + + SpaceWar.Explosion var4 = new SpaceWar.Explosion(284.06998599257884d, (-8.529389630162045d), 3, 0); + + } + + public void test269() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test269"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var6 = var0.getMouseListeners(); + java.awt.Dimension var7 = var0.getPreferredSize(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + var8.nextFocus(); + var8.reshape((-1), 1, (-1), 10); + SpaceWar.SpacePanel var18 = new SpaceWar.SpacePanel(); + java.awt.Color var19 = var18.getBackground(); + var18.repaint(); + var18.setRequestFocusEnabled(false); + var18.reshape(100, 0, 100, 0); + java.awt.Component var28 = var8.add((java.awt.Component)var18); + SpaceWar.SpacePanel var29 = new SpaceWar.SpacePanel(); + var29.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + javax.swing.plaf.PanelUI var34 = var29.getUI(); + SpaceWar.SpacePanel var35 = new SpaceWar.SpacePanel(); + float var36 = var35.getAlignmentX(); + var35.setVisible(false); + var35.nextFocus(); + var35.repaint(1L); + SpaceWar.SpacePanel var42 = new SpaceWar.SpacePanel(); + float var43 = var42.getAlignmentX(); + var42.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var48 = new SpaceWar.SpacePanel(); + float var49 = var48.getAlignmentX(); + var48.setVisible(false); + java.awt.Dimension var52 = var48.getPreferredSize(); + var42.setMaximumSize(var52); + var35.setPreferredSize(var52); + var29.setMaximumSize(var52); + java.awt.Dimension var56 = var18.getSize(var52); + SpaceWar.SpacePanel var57 = new SpaceWar.SpacePanel(); + float var58 = var57.getAlignmentX(); + var57.setVisible(false); + boolean var61 = var57.isDoubleBuffered(); + java.awt.dnd.DropTarget var62 = var57.getDropTarget(); + var57.show(false); + boolean var65 = var57.isPaintingForPrint(); + SpaceWar.SpacePanel var66 = new SpaceWar.SpacePanel(); + float var67 = var66.getAlignmentX(); + var66.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var72 = var66.getMouseListeners(); + int var73 = var66.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var74 = var66.getInputMethodRequests(); + var57.addKeyListener((java.awt.event.KeyListener)var66); + SpaceWar.SpacePanel var76 = new SpaceWar.SpacePanel(); + float var77 = var76.getAlignmentX(); + var76.setVisible(false); + boolean var80 = var76.isDoubleBuffered(); + var76.list(); + float var82 = var76.getAlignmentY(); + boolean var83 = var66.isFocusCycleRoot((java.awt.Container)var76); + var18.setNextFocusableComponent((java.awt.Component)var76); + var76.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=1.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", 0.0f, 0.5f); + var76.show(false); + var0.addKeyListener((java.awt.event.KeyListener)var76); + int var94 = var0.getBaseline(2, 1); + java.awt.Dimension var95 = var0.preferredSize(); + java.awt.Cursor var96 = var0.getCursor(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var28); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var34); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var36 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var43 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var49 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var52); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var56); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var58 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var61 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var62); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var65 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var67 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var72); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var73 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var74); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var77 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var80 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var82 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var83 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var94 == (-1)); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var95); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var96); + + } + + public void test270() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test270"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var1 = new SpaceWar.SpacePanel(); + java.awt.Color var2 = var1.getBackground(); + SpaceWar.SpacePanel var3 = new SpaceWar.SpacePanel(); + float var4 = var3.getAlignmentX(); + var3.setVisible(false); + var3.nextFocus(); + var3.updateUI(); + var3.enableInputMethods(true); + var0.add((java.awt.Component)var1, (java.lang.Object)true); + boolean var13 = var1.areFocusTraversalKeysSet(0); + boolean var14 = var1.isFocusable(); + SpaceWar.SpacePanel var15 = new SpaceWar.SpacePanel(); + float var16 = var15.getAlignmentX(); + var15.setVisible(false); + java.awt.Dimension var19 = var15.getPreferredSize(); + boolean var20 = var15.getVerifyInputWhenFocusTarget(); + java.awt.Component var23 = var15.findComponentAt(10, 1); + boolean var24 = var15.isCursorSet(); + SpaceWar.SpacePanel var25 = new SpaceWar.SpacePanel(); + float var26 = var25.getAlignmentX(); + var25.setVisible(false); + var25.nextFocus(); + var25.updateUI(); + var25.enableInputMethods(true); + java.awt.Point var33 = var25.location(); + SpaceWar.SpacePanel var34 = new SpaceWar.SpacePanel(); + float var35 = var34.getAlignmentX(); + var34.setVisible(false); + var34.nextFocus(); + var34.reshape((-1), 1, (-1), 10); + SpaceWar.SpacePanel var44 = new SpaceWar.SpacePanel(); + java.awt.Color var45 = var44.getBackground(); + var44.repaint(); + var44.setRequestFocusEnabled(false); + var44.reshape(100, 0, 100, 0); + java.awt.Component var54 = var34.add((java.awt.Component)var44); + SpaceWar.SpacePanel var55 = new SpaceWar.SpacePanel(); + var55.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + javax.swing.plaf.PanelUI var60 = var55.getUI(); + SpaceWar.SpacePanel var61 = new SpaceWar.SpacePanel(); + float var62 = var61.getAlignmentX(); + var61.setVisible(false); + var61.nextFocus(); + var61.repaint(1L); + SpaceWar.SpacePanel var68 = new SpaceWar.SpacePanel(); + float var69 = var68.getAlignmentX(); + var68.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var74 = new SpaceWar.SpacePanel(); + float var75 = var74.getAlignmentX(); + var74.setVisible(false); + java.awt.Dimension var78 = var74.getPreferredSize(); + var68.setMaximumSize(var78); + var61.setPreferredSize(var78); + var55.setMaximumSize(var78); + java.awt.Dimension var82 = var44.getSize(var78); + var25.setMaximumSize(var78); + var15.setMinimumSize(var78); + var1.setSize(var78); + var1.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=8,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", (short)1, (short)(-1)); + var1.setDoubleBuffered(true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var2); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var23); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var24 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var33); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var35 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var45); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var54); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var60); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var62 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var69 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var75 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var78); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var82); + + } + + public void test271() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test271"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + javax.swing.plaf.PanelUI var3 = var0.getUI(); + SpaceWar.SpacePanel var4 = new SpaceWar.SpacePanel(); + float var5 = var4.getAlignmentX(); + var4.setVisible(false); + boolean var8 = var4.isDoubleBuffered(); + java.awt.dnd.DropTarget var9 = var4.getDropTarget(); + var4.show(false); + boolean var12 = var4.isPaintingForPrint(); + SpaceWar.SpacePanel var13 = new SpaceWar.SpacePanel(); + float var14 = var13.getAlignmentX(); + var13.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var19 = var13.getMouseListeners(); + int var20 = var13.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var21 = var13.getInputMethodRequests(); + var4.addKeyListener((java.awt.event.KeyListener)var13); + SpaceWar.SpacePanel var23 = new SpaceWar.SpacePanel(); + float var24 = var23.getAlignmentX(); + var23.setVisible(false); + boolean var27 = var23.isDoubleBuffered(); + var23.list(); + float var29 = var23.getAlignmentY(); + boolean var30 = var13.isFocusCycleRoot((java.awt.Container)var23); + SpaceWar.SpacePanel var32 = new SpaceWar.SpacePanel(); + float var33 = var32.getAlignmentX(); + var32.setVisible(false); + var32.nextFocus(); + var32.updateUI(); + java.awt.Component var38 = var13.add("", (java.awt.Component)var32); + java.awt.ComponentOrientation var39 = var32.getComponentOrientation(); + boolean var40 = var32.isFocusable(); + var0.remove((java.awt.Component)var32); + var0.hide(); + var0.revalidate(); + javax.swing.event.AncestorListener[] var44 = var0.getAncestorListeners(); + var0.transferFocusDownCycle(); + java.awt.Container var46 = var0.getParent(); + java.awt.Dimension var47 = var0.minimumSize(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var9); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var21); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var24 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var29 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var30 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var33 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var38); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var39); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var40 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var44); + + // Regression assertion (captures the current behavior of the code) + assertNull(var46); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var47); + + } + + public void test272() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test272"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + boolean var4 = var0.inside(0, (-1)); + SpaceWar.SpacePanel var5 = new SpaceWar.SpacePanel(); + float var6 = var5.getAlignmentX(); + var5.setVisible(false); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + java.awt.Color var10 = var9.getBackground(); + var5.setForeground(var10); + var0.setForeground(var10); + var0.setAutoscrolls(false); + SpaceWar.SpacePanel var15 = new SpaceWar.SpacePanel(); + float var16 = var15.getAlignmentX(); + var15.setVisible(false); + boolean var19 = var15.isDoubleBuffered(); + java.awt.dnd.DropTarget var20 = var15.getDropTarget(); + var15.show(false); + boolean var23 = var15.isPaintingForPrint(); + SpaceWar.SpacePanel var24 = new SpaceWar.SpacePanel(); + float var25 = var24.getAlignmentX(); + var24.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var30 = var24.getMouseListeners(); + int var31 = var24.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var32 = var24.getInputMethodRequests(); + var15.addKeyListener((java.awt.event.KeyListener)var24); + SpaceWar.SpacePanel var34 = new SpaceWar.SpacePanel(); + float var35 = var34.getAlignmentX(); + var34.setVisible(false); + boolean var38 = var34.isDoubleBuffered(); + var34.list(); + float var40 = var34.getAlignmentY(); + boolean var41 = var24.isFocusCycleRoot((java.awt.Container)var34); + var34.firePropertyChange("", 1L, 1L); + var34.setVerifyInputWhenFocusTarget(true); + SpaceWar.SpacePanel var48 = new SpaceWar.SpacePanel(); + var48.setName(""); + java.awt.Dimension var51 = var48.minimumSize(); + boolean var52 = var48.isDoubleBuffered(); + SpaceWar.SpacePanel var53 = new SpaceWar.SpacePanel(); + float var54 = var53.getAlignmentX(); + SpaceWar.SpacePanel var55 = new SpaceWar.SpacePanel(); + float var56 = var55.getAlignmentX(); + var55.setVisible(false); + java.awt.Dimension var59 = var55.getPreferredSize(); + boolean var60 = var55.getVerifyInputWhenFocusTarget(); + java.awt.Component var63 = var55.findComponentAt(10, 1); + var53.addKeyListener((java.awt.event.KeyListener)var55); + var55.repaint(100, (-1), (-1), 1); + SpaceWar.SpacePanel var70 = new SpaceWar.SpacePanel(); + java.awt.Color var71 = var70.getBackground(); + var70.repaint(); + java.awt.im.InputMethodRequests var73 = var70.getInputMethodRequests(); + java.awt.GraphicsConfiguration var74 = var70.getGraphicsConfiguration(); + var55.remove((java.awt.Component)var70); + java.awt.Font var76 = var70.getFont(); + java.awt.FontMetrics var77 = var48.getFontMetrics(var76); + java.awt.FontMetrics var78 = var34.getFontMetrics(var76); + var0.setFont(var76); + var0.revalidate(); + var0.firePropertyChange("SpaceWar.SpacePanel[,-1,1,-1x10,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", ' ', '#'); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var30); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var31 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var32); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var35 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var38 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var40 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var41 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var51); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var52 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var54 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var56 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var59); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var60 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var63); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var71); + + // Regression assertion (captures the current behavior of the code) + assertNull(var73); + + // Regression assertion (captures the current behavior of the code) + assertNull(var74); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var76); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var77); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var78); + + } + + public void test273() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test273"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + java.awt.im.InputMethodRequests var3 = var0.getInputMethodRequests(); + var0.setDoubleBuffered(true); + var0.setInheritsPopupMenu(false); + boolean var8 = var0.isFocusTraversalPolicySet(); + var0.transferFocusUpCycle(); + SpaceWar.SpacePanel var10 = new SpaceWar.SpacePanel(); + float var11 = var10.getAlignmentX(); + var10.setVisible(false); + boolean var14 = var10.isDoubleBuffered(); + java.awt.dnd.DropTarget var15 = var10.getDropTarget(); + var10.show(false); + java.awt.Rectangle var18 = var10.getVisibleRect(); + java.awt.image.BufferedImage var20 = var10.loadImg("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + java.awt.ComponentOrientation var21 = var10.getComponentOrientation(); + java.awt.Component var22 = var0.add((java.awt.Component)var10); + var0.enable(); + SpaceWar.SpacePanel var24 = new SpaceWar.SpacePanel(); + float var25 = var24.getAlignmentX(); + var24.setVisible(false); + var24.nextFocus(); + var24.updateUI(); + var24.enableInputMethods(true); + java.awt.Point var33 = var24.getMousePosition(false); + java.awt.Component.BaselineResizeBehavior var34 = var24.getBaselineResizeBehavior(); + java.awt.Dimension var35 = var24.getPreferredSize(); + var24.show(); + java.lang.Object var37 = var0.getClientProperty((java.lang.Object)var24); + java.awt.Image var40 = var24.createImage(3, (-1)); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var21); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNull(var33); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var34); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var35); + + // Regression assertion (captures the current behavior of the code) + assertNull(var37); + + // Regression assertion (captures the current behavior of the code) + assertNull(var40); + + } + + public void test274() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test274"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.setInheritsPopupMenu(false); + var0.setFocusTraversalPolicyProvider(true); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + var8.nextFocus(); + var8.updateUI(); + var8.enableInputMethods(true); + java.lang.String var16 = var8.toString(); + SpaceWar.SpacePanel var17 = new SpaceWar.SpacePanel(); + float var18 = var17.getAlignmentX(); + var17.setVisible(false); + boolean var21 = var17.isDoubleBuffered(); + java.awt.dnd.DropTarget var22 = var17.getDropTarget(); + var17.show(false); + java.awt.Rectangle var25 = var17.getVisibleRect(); + java.awt.image.BufferedImage var27 = var17.loadImg("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + java.awt.ComponentOrientation var28 = var17.getComponentOrientation(); + boolean var29 = var17.isPaintingTile(); + boolean var30 = var17.isOptimizedDrawingEnabled(); + int var31 = var8.getComponentZOrder((java.awt.Component)var17); + javax.swing.InputMap var32 = var17.getInputMap(); + java.awt.Font var33 = var17.getFont(); + java.awt.FontMetrics var34 = var0.getFontMetrics(var33); + var0.doLayout(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var16 + "' != '" + "SpaceWar.SpacePanel[,0,0,0var16,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"+ "'", var16.equals("SpaceWar.SpacePanel[,0,0,0var16,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]")); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var25); + + // Regression assertion (captures the current behavior of the code) + assertNull(var27); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var28); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var29 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var30 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var31 == (-1)); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var32); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var33); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var34); + + } + + public void test275() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test275"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + boolean var2 = var0.hasFocus(); + boolean var3 = var0.isPreferredSizeSet(); + SpaceWar.SpacePanel var4 = new SpaceWar.SpacePanel(); + java.awt.Color var5 = var4.getBackground(); + var4.repaint(); + var4.setRequestFocusEnabled(false); + int var9 = var0.getComponentZOrder((java.awt.Component)var4); + java.awt.GraphicsConfiguration var10 = var4.getGraphicsConfiguration(); + java.lang.String var11 = var4.getUIClassID(); + SpaceWar.SpacePanel var12 = new SpaceWar.SpacePanel(); + float var13 = var12.getAlignmentX(); + var12.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var18 = new SpaceWar.SpacePanel(); + float var19 = var18.getAlignmentX(); + var18.setVisible(false); + java.awt.Dimension var22 = var18.getPreferredSize(); + var12.setMaximumSize(var22); + boolean var24 = var12.getVerifyInputWhenFocusTarget(); + boolean var25 = var12.isFontSet(); + boolean var26 = var12.getIgnoreRepaint(); + java.awt.Component var29 = var12.locate(1, 25); + java.awt.Dimension var30 = var12.getMinimumSize(); + SpaceWar.SpacePanel var31 = new SpaceWar.SpacePanel(); + float var32 = var31.getAlignmentX(); + var31.setVisible(false); + boolean var35 = var31.isDoubleBuffered(); + java.awt.dnd.DropTarget var36 = var31.getDropTarget(); + var31.show(false); + java.awt.Rectangle var39 = var31.getVisibleRect(); + boolean var40 = var31.isFocusTraversalPolicySet(); + SpaceWar.SpacePanel var41 = new SpaceWar.SpacePanel(); + float var42 = var41.getAlignmentX(); + var41.setVisible(false); + boolean var45 = var41.isDoubleBuffered(); + var41.enable(false); + boolean var48 = var41.getFocusTraversalKeysEnabled(); + SpaceWar.SpacePanel var49 = new SpaceWar.SpacePanel(); + float var50 = var49.getAlignmentX(); + var49.setVisible(false); + java.awt.Dimension var53 = var49.getPreferredSize(); + java.awt.Toolkit var54 = var49.getToolkit(); + boolean var55 = var49.isFocusable(); + javax.swing.KeyStroke[] var56 = var49.getRegisteredKeyStrokes(); + SpaceWar.SpacePanel var57 = new SpaceWar.SpacePanel(); + float var58 = var57.getAlignmentX(); + SpaceWar.SpacePanel var59 = new SpaceWar.SpacePanel(); + float var60 = var59.getAlignmentX(); + var59.setVisible(false); + java.awt.Dimension var63 = var59.getPreferredSize(); + boolean var64 = var59.getVerifyInputWhenFocusTarget(); + java.awt.Component var67 = var59.findComponentAt(10, 1); + var57.addKeyListener((java.awt.event.KeyListener)var59); + var59.repaint(100, (-1), (-1), 1); + boolean var74 = var49.isAncestorOf((java.awt.Component)var59); + var41.addKeyListener((java.awt.event.KeyListener)var59); + java.util.Locale var76 = var59.getLocale(); + var31.setLocale(var76); + javax.swing.JComponent.setDefaultLocale(var76); + var12.setLocale(var76); + var4.setLocale(var76); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var2 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == (-1)); + + // Regression assertion (captures the current behavior of the code) + assertNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var11 + "' != '" + "PanelUI"+ "'", var11.equals("PanelUI")); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var24 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var29); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var30); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var32 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var35 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var36); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var39); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var40 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var42 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var45 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var48 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var50 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var53); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var54); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var55 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var56); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var58 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var60 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var63); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var64 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var67); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var74 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var76); + + } + + public void test276() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test276"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + var0.list(); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + float var7 = var6.getAlignmentX(); + var6.setVisible(false); + boolean var10 = var6.isDoubleBuffered(); + java.awt.dnd.DropTarget var11 = var6.getDropTarget(); + var6.show(false); + java.awt.Rectangle var14 = var6.getVisibleRect(); + java.awt.Rectangle var15 = var0.getBounds(var14); + javax.swing.JToolTip var16 = var0.createToolTip(); + java.awt.Dimension var17 = var0.minimumSize(); + SpaceWar.SpacePanel var18 = new SpaceWar.SpacePanel(); + float var19 = var18.getAlignmentX(); + var18.setVisible(false); + var18.setInheritsPopupMenu(false); + var18.setFocusTraversalPolicyProvider(true); + java.awt.Container var26 = var18.getFocusCycleRootAncestor(); + SpaceWar.SpacePanel var27 = new SpaceWar.SpacePanel(); + float var28 = var27.getAlignmentX(); + var27.removeNotify(); + SpaceWar.SpacePanel var30 = new SpaceWar.SpacePanel(); + float var31 = var30.getAlignmentX(); + var30.setVisible(false); + boolean var34 = var30.isDoubleBuffered(); + var30.list(); + float var36 = var30.getAlignmentY(); + java.awt.Insets var37 = var30.getInsets(); + java.awt.Insets var38 = var27.getInsets(var37); + java.awt.Insets var39 = var18.getInsets(var38); + java.awt.Insets var40 = var0.getInsets(var38); + var0.setFocusCycleRoot(true); + SpaceWar.SpacePanel var43 = new SpaceWar.SpacePanel(); + java.awt.Color var44 = var43.getBackground(); + var43.repaint(); + java.awt.im.InputMethodRequests var46 = var43.getInputMethodRequests(); + int var47 = var43.countComponents(); + java.awt.Dimension var48 = var43.getSize(); + SpaceWar.SpacePanel var49 = new SpaceWar.SpacePanel(); + var49.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + javax.swing.plaf.PanelUI var54 = var49.getUI(); + java.awt.Color var55 = var49.getBackground(); + var43.setBackground(var55); + var0.setForeground(var55); + var0.setAlignmentY(0.5f); + var0.list(); + var0.removeAll(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var28 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var31 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var34 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var36 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var37); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var38); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var39); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var40); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var44); + + // Regression assertion (captures the current behavior of the code) + assertNull(var46); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var47 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var48); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var54); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var55); + + } + + public void test277() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test277"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + java.awt.im.InputMethodRequests var3 = var0.getInputMethodRequests(); + var0.setDoubleBuffered(true); + var0.show(false); + var0.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", (-1), 24); + boolean var12 = var0.getAutoscrolls(); + java.awt.Graphics var13 = var0.getGraphics(); + java.awt.Dimension var14 = var0.getMaximumSize(); + boolean var15 = var0.isFocusable(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == true); + + } + + public void test278() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test278"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var1 = new SpaceWar.SpacePanel(); + java.awt.Color var2 = var1.getBackground(); + SpaceWar.SpacePanel var3 = new SpaceWar.SpacePanel(); + float var4 = var3.getAlignmentX(); + var3.setVisible(false); + var3.nextFocus(); + var3.updateUI(); + var3.enableInputMethods(true); + var0.add((java.awt.Component)var1, (java.lang.Object)true); + java.awt.Dimension var12 = var1.getPreferredSize(); + var1.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", (-1.0f), 100.0f); + SpaceWar.SpacePanel var17 = new SpaceWar.SpacePanel(); + float var18 = var17.getAlignmentX(); + var17.setVisible(false); + boolean var21 = var17.isDoubleBuffered(); + SpaceWar.SpacePanel var22 = new SpaceWar.SpacePanel(); + java.awt.Color var23 = var22.getBackground(); + var22.repaint(); + java.lang.Object var25 = var17.getClientProperty((java.lang.Object)var22); + var1.remove((java.awt.Component)var17); + SpaceWar.SpacePanel var27 = new SpaceWar.SpacePanel(); + float var28 = var27.getAlignmentX(); + var27.firePropertyChange("", (-1), 1); + java.awt.event.MouseMotionListener[] var33 = var27.getMouseMotionListeners(); + java.awt.Dimension var34 = var27.getMinimumSize(); + var1.setMaximumSize(var34); + java.awt.Font var36 = var1.getFont(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var2); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var23); + + // Regression assertion (captures the current behavior of the code) + assertNull(var25); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var28 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var33); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var34); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var36); + + } + + public void test279() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test279"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + SpaceWar.SpacePanel var4 = new SpaceWar.SpacePanel(); + java.awt.Color var5 = var4.getBackground(); + var0.setForeground(var5); + SpaceWar.SpacePanel var7 = new SpaceWar.SpacePanel(); + float var8 = var7.getAlignmentX(); + var7.setVisible(false); + boolean var11 = var7.isDoubleBuffered(); + java.awt.dnd.DropTarget var12 = var7.getDropTarget(); + var7.show(false); + java.awt.Rectangle var15 = var7.getVisibleRect(); + var0.repaint(var15); + java.awt.FocusTraversalPolicy var17 = var0.getFocusTraversalPolicy(); + java.awt.im.InputMethodRequests var18 = var0.getInputMethodRequests(); + var0.layout(); + boolean var20 = var0.isFocusTraversalPolicyProvider(); + java.awt.Insets var21 = var0.insets(); + java.awt.Dimension var22 = var0.getMinimumSize(); + javax.accessibility.AccessibleContext var23 = var0.getAccessibleContext(); + java.awt.image.BufferedImage var25 = var0.loadImg("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=1.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var21); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var23); + + // Regression assertion (captures the current behavior of the code) + assertNull(var25); + + } + + public void test280() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test280"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + java.awt.Dimension var4 = var0.getPreferredSize(); + java.awt.Toolkit var5 = var0.getToolkit(); + boolean var6 = var0.isFocusable(); + javax.swing.KeyStroke[] var7 = var0.getRegisteredKeyStrokes(); + java.awt.Component var10 = var0.getComponentAt(100, 100); + java.lang.Object var11 = var0.getTreeLock(); + SpaceWar.SpacePanel var12 = new SpaceWar.SpacePanel(); + float var13 = var12.getAlignmentX(); + var12.setVisible(false); + boolean var16 = var12.isDoubleBuffered(); + java.awt.dnd.DropTarget var17 = var12.getDropTarget(); + java.awt.Point var18 = var12.getMousePosition(); + java.lang.String var19 = var12.getUIClassID(); + var0.setNextFocusableComponent((java.awt.Component)var12); + var12.firePropertyChange("SpaceWar.SpacePanel[,10,10,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", (short)1, (short)10); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var4); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var19 + "' != '" + "PanelUI"+ "'", var19.equals("PanelUI")); + + } + + public void test281() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test281"); + + + SpaceWar.Text var4 = new SpaceWar.Text(509.27513824562607d, 365.5281187817767d, (-1L), "SpaceWar.SpacePanel[,0,0,0x0,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + + } + + public void test282() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test282"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var6 = var0.getUI(); + java.awt.im.InputMethodRequests var7 = var0.getInputMethodRequests(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + var8.nextFocus(); + var8.updateUI(); + var8.enableInputMethods(true); + var8.setSize((-1), 1); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + var19.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var0.add((java.awt.Component)var8, (java.lang.Object)"SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + java.awt.ComponentOrientation var25 = var8.getComponentOrientation(); + java.beans.VetoableChangeListener[] var26 = var8.getVetoableChangeListeners(); + int var27 = var8.getHeight(); + var8.enable(true); + java.lang.Object var30 = var8.getTreeLock(); + float var31 = var8.getAlignmentY(); + java.awt.Component.BaselineResizeBehavior var32 = var8.getBaselineResizeBehavior(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var25); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == 1); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var30); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var31 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var32); + + } + + public void test283() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test283"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.removeNotify(); + java.awt.dnd.DropTarget var3 = var0.getDropTarget(); + java.awt.Component.BaselineResizeBehavior var4 = var0.getBaselineResizeBehavior(); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + float var7 = var6.getAlignmentX(); + var6.setVisible(false); + boolean var10 = var6.isDoubleBuffered(); + java.awt.dnd.DropTarget var11 = var6.getDropTarget(); + var6.show(false); + java.awt.Rectangle var14 = var6.getVisibleRect(); + java.awt.image.BufferedImage var16 = var6.loadImg("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + java.awt.ComponentOrientation var17 = var6.getComponentOrientation(); + var6.show(false); + java.awt.Component var20 = var0.add("SpaceWar.SpacePanel[,0,0,0x0,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", (java.awt.Component)var6); + var6.setFocusTraversalKeysEnabled(true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var4); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + } + + public void test284() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test284"); + + + SpaceWar.Enemy var2 = new SpaceWar.Enemy(2, 99); + + } + + public void test285() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test285"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + java.awt.im.InputMethodRequests var3 = var0.getInputMethodRequests(); + int var4 = var0.countComponents(); + java.awt.Dimension var5 = var0.getSize(); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + float var7 = var6.getAlignmentX(); + var6.setVisible(false); + var6.nextFocus(); + var6.reshape((-1), 1, (-1), 10); + SpaceWar.SpacePanel var16 = new SpaceWar.SpacePanel(); + java.awt.Color var17 = var16.getBackground(); + var16.repaint(); + var16.setRequestFocusEnabled(false); + var16.reshape(100, 0, 100, 0); + java.awt.Component var26 = var6.add((java.awt.Component)var16); + boolean var27 = var16.isEnabled(); + SpaceWar.SpacePanel var28 = new SpaceWar.SpacePanel(); + float var29 = var28.getAlignmentX(); + var28.setVisible(false); + var28.setInheritsPopupMenu(false); + var28.setFocusTraversalPolicyProvider(true); + SpaceWar.SpacePanel var36 = new SpaceWar.SpacePanel(); + float var37 = var36.getAlignmentX(); + var36.setVisible(false); + boolean var40 = var36.isDoubleBuffered(); + var36.list(); + SpaceWar.SpacePanel var42 = new SpaceWar.SpacePanel(); + float var43 = var42.getAlignmentX(); + var42.setVisible(false); + boolean var46 = var42.isDoubleBuffered(); + java.awt.dnd.DropTarget var47 = var42.getDropTarget(); + var42.show(false); + java.awt.Rectangle var50 = var42.getVisibleRect(); + java.awt.Rectangle var51 = var36.getBounds(var50); + javax.swing.JToolTip var52 = var36.createToolTip(); + var28.removeKeyListener((java.awt.event.KeyListener)var36); + javax.swing.TransferHandler var54 = var28.getTransferHandler(); + var28.transferFocus(); + SpaceWar.SpacePanel var56 = new SpaceWar.SpacePanel(); + float var57 = var56.getAlignmentX(); + SpaceWar.SpacePanel var58 = new SpaceWar.SpacePanel(); + float var59 = var58.getAlignmentX(); + var58.setVisible(false); + java.awt.Dimension var62 = var58.getPreferredSize(); + boolean var63 = var58.getVerifyInputWhenFocusTarget(); + java.awt.Component var66 = var58.findComponentAt(10, 1); + var56.addKeyListener((java.awt.event.KeyListener)var58); + java.awt.Dimension var68 = var58.getMinimumSize(); + SpaceWar.SpacePanel var69 = new SpaceWar.SpacePanel(); + java.awt.Color var70 = var69.getBackground(); + var69.repaint(); + var69.setRequestFocusEnabled(false); + var69.reshape(100, 0, 100, 0); + var69.requestFocus(); + java.awt.Rectangle var80 = var69.getVisibleRect(); + var58.setBounds(var80); + var28.scrollRectToVisible(var80); + var16.setBounds(var80); + var0.setBounds(var80); + boolean var85 = var0.isShowing(); + var0.setDebugGraphicsOptions(3); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var29 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var40 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var43 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var46 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var47); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var50); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var51); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var52); + + // Regression assertion (captures the current behavior of the code) + assertNull(var54); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var57 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var59 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var62); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var63 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var66); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var68); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var70); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var80); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var85 == false); + + } + + public void test286() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test286"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + SpaceWar.SpacePanel var4 = new SpaceWar.SpacePanel(); + java.awt.Color var5 = var4.getBackground(); + var0.setForeground(var5); + SpaceWar.SpacePanel var7 = new SpaceWar.SpacePanel(); + float var8 = var7.getAlignmentX(); + var7.setVisible(false); + boolean var11 = var7.isDoubleBuffered(); + java.awt.dnd.DropTarget var12 = var7.getDropTarget(); + var7.show(false); + java.awt.Rectangle var15 = var7.getVisibleRect(); + var0.repaint(var15); + java.awt.FocusTraversalPolicy var17 = var0.getFocusTraversalPolicy(); + SpaceWar.SpacePanel var18 = new SpaceWar.SpacePanel(); + float var19 = var18.getAlignmentX(); + var18.firePropertyChange("", (-1), 1); + boolean var24 = var18.isFocusOwner(); + SpaceWar.SpacePanel var26 = new SpaceWar.SpacePanel(); + float var27 = var26.getAlignmentX(); + var26.setVisible(false); + java.awt.Dimension var30 = var26.getPreferredSize(); + java.awt.Toolkit var31 = var26.getToolkit(); + SpaceWar.SpacePanel var32 = new SpaceWar.SpacePanel(); + var32.setName(""); + int var35 = var32.getX(); + SpaceWar.SpacePanel var36 = new SpaceWar.SpacePanel(); + float var37 = var36.getAlignmentX(); + var36.setVisible(false); + var36.nextFocus(); + SpaceWar.SpacePanel var41 = new SpaceWar.SpacePanel(); + float var42 = var41.getAlignmentX(); + var41.setVisible(false); + SpaceWar.SpacePanel var45 = new SpaceWar.SpacePanel(); + java.awt.Color var46 = var45.getBackground(); + var41.setForeground(var46); + var36.setBackground(var46); + var32.setBackground(var46); + var26.setForeground(var46); + var18.putClientProperty((java.lang.Object)(byte)100, (java.lang.Object)var46); + var0.setBackground(var46); + SpaceWar.SpacePanel var53 = new SpaceWar.SpacePanel(); + float var54 = var53.getAlignmentX(); + var53.setVisible(false); + boolean var57 = var53.isDoubleBuffered(); + java.awt.dnd.DropTarget var58 = var53.getDropTarget(); + var53.show(false); + boolean var61 = var53.isPaintingForPrint(); + SpaceWar.SpacePanel var62 = new SpaceWar.SpacePanel(); + float var63 = var62.getAlignmentX(); + SpaceWar.SpacePanel var64 = new SpaceWar.SpacePanel(); + float var65 = var64.getAlignmentX(); + var64.setVisible(false); + java.awt.Dimension var68 = var64.getPreferredSize(); + boolean var69 = var64.getVerifyInputWhenFocusTarget(); + java.awt.Component var72 = var64.findComponentAt(10, 1); + var62.addKeyListener((java.awt.event.KeyListener)var64); + java.awt.Dimension var74 = var64.getMinimumSize(); + var53.setMinimumSize(var74); + java.awt.Dimension var76 = var0.getSize(var74); + boolean var77 = var0.isValid(); + int var78 = var0.getWidth(); + float var79 = var0.getAlignmentY(); + boolean var80 = var0.getIgnoreRepaint(); + // The following exception was thrown during execution. + // This behavior will recorded for regression testing. + try { + java.awt.Point var81 = var0.getLocationOnScreen(); + fail("Expected exception of type java.awt.IllegalComponentStateException"); + } catch (java.awt.IllegalComponentStateException e) { + // Expected exception. + } + + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var24 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var30); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var31); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var35 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var42 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var46); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var54 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var57 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var58); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var61 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var63 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var65 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var68); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var69 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var72); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var74); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var76); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var77 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var78 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var79 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var80 == false); + + } + + public void test287() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test287"); + + + SpaceWar.Bullet var3 = new SpaceWar.Bullet(495.44236387443226d, 25, 0); + double var4 = var3.getR(); + boolean var5 = var3.update(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 5.0d); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == false); + + } + + public void test288() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test288"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + var0.setRequestFocusEnabled(false); + var0.reshape(100, 0, 100, 0); + var0.requestFocus(); + var0.firePropertyChange("hi!", '4', ' '); + java.awt.Point var15 = var0.getLocation(); + java.awt.Dimension var16 = var0.size(); + java.awt.Image var19 = var0.createImage((-1), (-1)); + java.awt.event.ComponentListener[] var20 = var0.getComponentListeners(); + SpaceWar.SpacePanel var21 = new SpaceWar.SpacePanel(); + var21.setName(""); + java.awt.ComponentOrientation var24 = var21.getComponentOrientation(); + var21.firePropertyChange("PanelUI", 1.0f, 0.5f); + int var29 = var0.getComponentZOrder((java.awt.Component)var21); + boolean var31 = var0.areFocusTraversalKeysSet(0); + java.awt.event.FocusListener[] var32 = var0.getFocusListeners(); + var0.firePropertyChange("SpaceWar.SpacePanel[,-1,1,-1x10,invalid,hidden,disabled,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", 399, 10); + SpaceWar.SpacePanel var37 = new SpaceWar.SpacePanel(); + java.awt.Color var38 = var37.getBackground(); + boolean var41 = var37.inside(0, (-1)); + var37.transferFocusUpCycle(); + java.awt.Toolkit var43 = var37.getToolkit(); + SpaceWar.SpacePanel var44 = new SpaceWar.SpacePanel(); + java.awt.Color var45 = var44.getBackground(); + var44.repaint(); + var44.setRequestFocusEnabled(false); + var44.setIgnoreRepaint(false); + java.lang.String var51 = var44.toString(); + SpaceWar.SpacePanel var52 = new SpaceWar.SpacePanel(); + float var53 = var52.getAlignmentX(); + var52.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var58 = var52.getUI(); + java.awt.im.InputMethodRequests var59 = var52.getInputMethodRequests(); + SpaceWar.SpacePanel var60 = new SpaceWar.SpacePanel(); + float var61 = var60.getAlignmentX(); + var60.setVisible(false); + var60.nextFocus(); + var60.updateUI(); + var60.enableInputMethods(true); + var60.setSize((-1), 1); + SpaceWar.SpacePanel var71 = new SpaceWar.SpacePanel(); + var71.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var52.add((java.awt.Component)var60, (java.lang.Object)"SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + java.awt.ComponentOrientation var77 = var60.getComponentOrientation(); + var44.setComponentOrientation(var77); + var37.setComponentOrientation(var77); + var0.applyComponentOrientation(var77); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var29 == (-1)); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var31 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var32); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var38); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var41 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var43); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var45); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var51 + "' != '" + "SpaceWar.SpacePanel[,0,0,0var51,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"+ "'", var51.equals("SpaceWar.SpacePanel[,0,0,0var51,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]")); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var53 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var58); + + // Regression assertion (captures the current behavior of the code) + assertNull(var59); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var61 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var77); + + } + + public void test289() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test289"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var6 = var0.getUI(); + java.awt.im.InputMethodRequests var7 = var0.getInputMethodRequests(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + var8.nextFocus(); + var8.updateUI(); + var8.enableInputMethods(true); + var8.setSize((-1), 1); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + var19.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var0.add((java.awt.Component)var8, (java.lang.Object)"SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + java.awt.ComponentOrientation var25 = var8.getComponentOrientation(); + java.beans.VetoableChangeListener[] var26 = var8.getVetoableChangeListeners(); + int var27 = var8.getHeight(); + var8.enable(true); + java.awt.Component var30 = var8.getNextFocusableComponent(); + java.awt.Point var31 = var8.getMousePosition(); + java.awt.LayoutManager var32 = var8.getLayout(); + var8.setLocation(500, 10); + var8.reshape(25, 399, 3, 25); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var25); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == 1); + + // Regression assertion (captures the current behavior of the code) + assertNull(var30); + + // Regression assertion (captures the current behavior of the code) + assertNull(var31); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var32); + + } + + public void test290() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test290"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var1 = new SpaceWar.SpacePanel(); + java.awt.Color var2 = var1.getBackground(); + SpaceWar.SpacePanel var3 = new SpaceWar.SpacePanel(); + float var4 = var3.getAlignmentX(); + var3.setVisible(false); + var3.nextFocus(); + var3.updateUI(); + var3.enableInputMethods(true); + var0.add((java.awt.Component)var1, (java.lang.Object)true); + java.awt.Dimension var12 = var1.getPreferredSize(); + var1.move(100, 10); + java.awt.Graphics var16 = var1.getGraphics(); + boolean var17 = var1.getInheritsPopupMenu(); + java.awt.Color var18 = var1.getForeground(); + java.awt.Dimension var19 = var1.getMaximumSize(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var2); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var19); + + } + + public void test291() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test291"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + java.awt.im.InputMethodRequests var3 = var0.getInputMethodRequests(); + int var4 = var0.countComponents(); + java.awt.event.MouseMotionListener[] var5 = var0.getMouseMotionListeners(); + java.awt.Dimension var6 = var0.size(); + boolean var7 = var0.isMinimumSizeSet(); + boolean var8 = var0.getIgnoreRepaint(); + var0.repaint(); + var0.hide(); + java.awt.FocusTraversalPolicy var11 = var0.getFocusTraversalPolicy(); + java.awt.image.ColorModel var12 = var0.getColorModel(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var12); + + } + + public void test292() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test292"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + var0.list(); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + float var7 = var6.getAlignmentX(); + var6.setVisible(false); + boolean var10 = var6.isDoubleBuffered(); + java.awt.dnd.DropTarget var11 = var6.getDropTarget(); + var6.show(false); + java.awt.Rectangle var14 = var6.getVisibleRect(); + java.awt.Rectangle var15 = var0.getBounds(var14); + javax.swing.JToolTip var16 = var0.createToolTip(); + var0.firePropertyChange("", false, false); + var0.validate(); + SpaceWar.SpacePanel var22 = new SpaceWar.SpacePanel(); + float var23 = var22.getAlignmentX(); + var22.setVisible(false); + boolean var26 = var22.isDoubleBuffered(); + java.awt.dnd.DropTarget var27 = var22.getDropTarget(); + var22.show(false); + boolean var30 = var22.isPaintingForPrint(); + SpaceWar.SpacePanel var31 = new SpaceWar.SpacePanel(); + float var32 = var31.getAlignmentX(); + var31.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var37 = var31.getMouseListeners(); + int var38 = var31.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var39 = var31.getInputMethodRequests(); + var22.addKeyListener((java.awt.event.KeyListener)var31); + var31.repaint(); + java.awt.Point var42 = var31.location(); + java.awt.Component var43 = var0.getComponentAt(var42); + SpaceWar.SpacePanel var44 = new SpaceWar.SpacePanel(); + java.awt.Color var45 = var44.getBackground(); + var44.repaint(); + java.awt.im.InputMethodRequests var47 = var44.getInputMethodRequests(); + var44.setDoubleBuffered(true); + var44.show(false); + var44.setAlignmentY(100.0f); + SpaceWar.SpacePanel var54 = new SpaceWar.SpacePanel(); + float var55 = var54.getAlignmentX(); + var54.setVisible(false); + SpaceWar.SpacePanel var58 = new SpaceWar.SpacePanel(); + java.awt.Color var59 = var58.getBackground(); + var54.setForeground(var59); + SpaceWar.SpacePanel var61 = new SpaceWar.SpacePanel(); + float var62 = var61.getAlignmentX(); + var61.setVisible(false); + boolean var65 = var61.isDoubleBuffered(); + java.awt.dnd.DropTarget var66 = var61.getDropTarget(); + var61.show(false); + java.awt.Rectangle var69 = var61.getVisibleRect(); + var54.repaint(var69); + java.awt.FocusTraversalPolicy var71 = var54.getFocusTraversalPolicy(); + java.awt.im.InputMethodRequests var72 = var54.getInputMethodRequests(); + var54.layout(); + boolean var74 = var54.isFocusTraversalPolicyProvider(); + java.awt.Insets var75 = var54.insets(); + java.awt.Dimension var76 = var54.getMinimumSize(); + java.awt.Dimension var77 = var44.getSize(var76); + var0.setSize(var77); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var27); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var30 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var32 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var37); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var38 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var39); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var42); + + // Regression assertion (captures the current behavior of the code) + assertNull(var43); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var45); + + // Regression assertion (captures the current behavior of the code) + assertNull(var47); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var55 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var59); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var62 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var65 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var66); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var69); + + // Regression assertion (captures the current behavior of the code) + assertNull(var71); + + // Regression assertion (captures the current behavior of the code) + assertNull(var72); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var74 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var75); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var76); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var77); + + } + + public void test293() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test293"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + var0.show(false); + java.awt.Rectangle var8 = var0.getVisibleRect(); + java.awt.image.BufferedImage var10 = var0.loadImg("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + java.awt.ComponentOrientation var11 = var0.getComponentOrientation(); + SpaceWar.SpacePanel var12 = new SpaceWar.SpacePanel(); + float var13 = var12.getAlignmentX(); + var12.setVisible(false); + var12.nextFocus(); + var12.reshape((-1), 1, (-1), 10); + var12.disable(); + java.awt.LayoutManager var23 = var12.getLayout(); + var12.setVisible(false); + SpaceWar.SpacePanel var26 = new SpaceWar.SpacePanel(); + float var27 = var26.getAlignmentX(); + var26.setVisible(false); + var26.setInheritsPopupMenu(false); + boolean var32 = var26.isDoubleBuffered(); + boolean var33 = var26.isMinimumSizeSet(); + SpaceWar.SpacePanel var34 = new SpaceWar.SpacePanel(); + float var35 = var34.getAlignmentX(); + var34.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var40 = new SpaceWar.SpacePanel(); + float var41 = var40.getAlignmentX(); + var40.setVisible(false); + java.awt.Dimension var44 = var40.getPreferredSize(); + var34.setMaximumSize(var44); + boolean var46 = var34.getVerifyInputWhenFocusTarget(); + javax.accessibility.AccessibleContext var47 = var34.getAccessibleContext(); + boolean var48 = var34.isDoubleBuffered(); + java.awt.Rectangle var49 = var34.getVisibleRect(); + var26.setBounds(var49); + var12.computeVisibleRect(var49); + javax.swing.ActionMap var52 = var12.getActionMap(); + var0.setActionMap(var52); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var23); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var32 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var33 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var35 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var41 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var44); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var46 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var47); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var48 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var49); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var52); + + } + + public void test294() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test294"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + java.awt.im.InputMethodRequests var3 = var0.getInputMethodRequests(); + int var4 = var0.countComponents(); + java.awt.event.ComponentListener[] var5 = var0.getComponentListeners(); + var0.transferFocusBackward(); + boolean var7 = var0.isFocusCycleRoot(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == false); + + } + + public void test295() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test295"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var1 = new SpaceWar.SpacePanel(); + java.awt.Color var2 = var1.getBackground(); + SpaceWar.SpacePanel var3 = new SpaceWar.SpacePanel(); + float var4 = var3.getAlignmentX(); + var3.setVisible(false); + var3.nextFocus(); + var3.updateUI(); + var3.enableInputMethods(true); + var0.add((java.awt.Component)var1, (java.lang.Object)true); + java.awt.Dimension var12 = var1.getPreferredSize(); + var1.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", (-1.0f), 100.0f); + SpaceWar.SpacePanel var17 = new SpaceWar.SpacePanel(); + float var18 = var17.getAlignmentX(); + var17.setVisible(false); + boolean var21 = var17.isDoubleBuffered(); + SpaceWar.SpacePanel var22 = new SpaceWar.SpacePanel(); + java.awt.Color var23 = var22.getBackground(); + var22.repaint(); + java.lang.Object var25 = var17.getClientProperty((java.lang.Object)var22); + var1.remove((java.awt.Component)var17); + var1.enable(); + var1.setIgnoreRepaint(true); + var1.setFocusable(true); + // The following exception was thrown during execution. + // This behavior will recorded for regression testing. + try { + var1.remove(3); + fail("Expected exception of type java.lang.ArrayIndexOutOfBoundsException"); + } catch (java.lang.ArrayIndexOutOfBoundsException e) { + // Expected exception. + } + + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var2); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var23); + + // Regression assertion (captures the current behavior of the code) + assertNull(var25); + + } + + public void test296() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test296"); + + + SpaceWar.Enemy var2 = new SpaceWar.Enemy(10, 1); + int var3 = var2.getRank(); + int var4 = var2.getType(); + int var5 = var2.getR(); + java.awt.image.BufferedImage var7 = var2.loadImg("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=1.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == 1); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 10); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var7); + + } + + public void test297() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test297"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var1 = new SpaceWar.SpacePanel(); + java.awt.Color var2 = var1.getBackground(); + SpaceWar.SpacePanel var3 = new SpaceWar.SpacePanel(); + float var4 = var3.getAlignmentX(); + var3.setVisible(false); + var3.nextFocus(); + var3.updateUI(); + var3.enableInputMethods(true); + var0.add((java.awt.Component)var1, (java.lang.Object)true); + java.awt.Image var14 = var1.createImage(1, (-1)); + java.awt.event.MouseListener[] var15 = var1.getMouseListeners(); + var1.firePropertyChange("SpaceWar.SpacePanel[,-1,1,-1x10,invalid,hidden,disabled,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", 100.0d, 1.0d); + var1.setLocation(24, 3); + boolean var23 = var1.hasFocus(); + java.awt.event.MouseWheelListener[] var24 = var1.getMouseWheelListeners(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var2); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var24); + + } + + public void test298() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test298"); + + + SpaceWar.Player var0 = new SpaceWar.Player(); + var0.increasePower(25); + int var3 = var0.getR(); + int var4 = var0.getScore(); + var0.loseLife(); + int var6 = var0.getX(); + var0.setDown(false); + int var9 = var0.getRequiredPower(); + int var10 = var0.getR(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == 25); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == 400); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 2); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 25); + + } + + public void test299() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test299"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + boolean var2 = var0.hasFocus(); + SpaceWar.SpacePanel var3 = new SpaceWar.SpacePanel(); + float var4 = var3.getAlignmentX(); + var3.setVisible(false); + boolean var7 = var3.isDoubleBuffered(); + java.awt.dnd.DropTarget var8 = var3.getDropTarget(); + boolean var9 = var3.isFocusCycleRoot(); + var3.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", 100, 0); + SpaceWar.SpacePanel var14 = new SpaceWar.SpacePanel(); + float var15 = var14.getAlignmentX(); + var14.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var20 = var14.getUI(); + var3.add((java.awt.Component)var14, (java.lang.Object)(short)0); + java.awt.Insets var23 = var14.getInsets(); + java.awt.Insets var24 = var0.getInsets(var23); + SpaceWar.SpacePanel var25 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var26 = new SpaceWar.SpacePanel(); + java.awt.Color var27 = var26.getBackground(); + SpaceWar.SpacePanel var28 = new SpaceWar.SpacePanel(); + float var29 = var28.getAlignmentX(); + var28.setVisible(false); + var28.nextFocus(); + var28.updateUI(); + var28.enableInputMethods(true); + var25.add((java.awt.Component)var26, (java.lang.Object)true); + boolean var37 = var25.isMinimumSizeSet(); + java.awt.event.HierarchyListener[] var38 = var25.getHierarchyListeners(); + var25.repaint(0L); + SpaceWar.SpacePanel var41 = new SpaceWar.SpacePanel(); + float var42 = var41.getAlignmentX(); + var41.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var47 = var41.getUI(); + java.awt.im.InputMethodRequests var48 = var41.getInputMethodRequests(); + SpaceWar.SpacePanel var49 = new SpaceWar.SpacePanel(); + float var50 = var49.getAlignmentX(); + var49.setVisible(false); + var49.nextFocus(); + var49.updateUI(); + var49.enableInputMethods(true); + var49.setSize((-1), 1); + SpaceWar.SpacePanel var60 = new SpaceWar.SpacePanel(); + var60.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var41.add((java.awt.Component)var49, (java.lang.Object)"SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + java.awt.ComponentOrientation var66 = var49.getComponentOrientation(); + java.beans.VetoableChangeListener[] var67 = var49.getVetoableChangeListeners(); + int var68 = var49.getHeight(); + javax.swing.ActionMap var69 = var49.getActionMap(); + var25.setActionMap(var69); + var0.setActionMap(var69); + java.awt.Dimension var72 = var0.minimumSize(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var2 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var23); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var27); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var29 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var38); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var42 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var47); + + // Regression assertion (captures the current behavior of the code) + assertNull(var48); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var50 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var66); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var67); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var68 == 1); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var69); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var72); + + } + + public void test300() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test300"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + var0.list(); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + float var7 = var6.getAlignmentX(); + var6.setVisible(false); + boolean var10 = var6.isDoubleBuffered(); + java.awt.dnd.DropTarget var11 = var6.getDropTarget(); + var6.show(false); + java.awt.Rectangle var14 = var6.getVisibleRect(); + java.awt.Rectangle var15 = var0.getBounds(var14); + javax.swing.JToolTip var16 = var0.createToolTip(); + var0.firePropertyChange("", false, false); + var0.validate(); + var0.setAlignmentY((-1.0f)); + SpaceWar.SpacePanel var24 = new SpaceWar.SpacePanel(); + float var25 = var24.getAlignmentX(); + boolean var26 = var24.hasFocus(); + SpaceWar.SpacePanel var27 = new SpaceWar.SpacePanel(); + float var28 = var27.getAlignmentX(); + var27.setVisible(false); + var27.nextFocus(); + var27.reshape((-1), 1, (-1), 10); + var27.disable(); + java.awt.LayoutManager var38 = var27.getLayout(); + var27.setVisible(false); + var24.remove((java.awt.Component)var27); + java.awt.Dimension var42 = var27.getSize(); + var0.setSize(var42); + var0.setRequestFocusEnabled(false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var28 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var38); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var42); + + } + + public void test301() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test301"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var6 = var0.getUI(); + java.awt.im.InputMethodRequests var7 = var0.getInputMethodRequests(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + var8.nextFocus(); + var8.updateUI(); + var8.enableInputMethods(true); + var8.setSize((-1), 1); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + var19.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var0.add((java.awt.Component)var8, (java.lang.Object)"SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + java.awt.event.KeyListener[] var25 = var0.getKeyListeners(); + var0.repaint(3, 1, 25, 0); + java.awt.Color var31 = var0.getForeground(); + var0.setFocusCycleRoot(true); + SpaceWar.SpacePanel var34 = new SpaceWar.SpacePanel(); + float var35 = var34.getAlignmentX(); + var34.setVisible(false); + java.awt.Dimension var38 = var34.getPreferredSize(); + boolean var39 = var34.getVerifyInputWhenFocusTarget(); + java.awt.Component var42 = var34.findComponentAt(10, 1); + boolean var43 = var34.requestDefaultFocus(); + var34.setVerifyInputWhenFocusTarget(false); + boolean var46 = var34.isPaintingForPrint(); + boolean var47 = var34.getIgnoreRepaint(); + java.awt.FocusTraversalPolicy var48 = var34.getFocusTraversalPolicy(); + var34.setRequestFocusEnabled(true); + java.awt.Rectangle var51 = var34.getBounds(); + var0.repaint(var51); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var25); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var31); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var35 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var38); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var39 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var42); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var43 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var46 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var47 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var48); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var51); + + } + + public void test302() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test302"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + boolean var6 = var0.isFocusCycleRoot(); + var0.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", 100, 0); + SpaceWar.SpacePanel var11 = new SpaceWar.SpacePanel(); + float var12 = var11.getAlignmentX(); + var11.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var17 = var11.getUI(); + var0.add((java.awt.Component)var11, (java.lang.Object)(short)0); + java.awt.event.InputMethodListener[] var20 = var11.getInputMethodListeners(); + java.awt.Toolkit var21 = var11.getToolkit(); + var11.setSize(24, 2); + var11.updateUI(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var21); + + } + + public void test303() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test303"); + + + SpaceWar.Player var0 = new SpaceWar.Player(); + int var1 = var0.getR(); + var0.setUp(false); + var0.update(); + java.awt.image.BufferedImage var6 = var0.loadImg("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + int var7 = var0.getX(); + var0.setLife(10); + int var10 = var0.getRequiredPower(); + var0.setDown(false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 25); + + // Regression assertion (captures the current behavior of the code) + assertNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 400); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 1); + + } + + public void test304() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test304"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + java.awt.im.InputMethodRequests var3 = var0.getInputMethodRequests(); + int var4 = var0.countComponents(); + java.awt.event.ComponentListener[] var5 = var0.getComponentListeners(); + var0.removeNotify(); + javax.swing.InputMap var7 = var0.getInputMap(); + int var8 = var0.getDebugGraphicsOptions(); + boolean var9 = var0.isFocusable(); + java.awt.event.MouseMotionListener[] var10 = var0.getMouseMotionListeners(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var10); + + } + + public void test305() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test305"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + float var7 = var6.getAlignmentX(); + var6.setVisible(false); + java.awt.Dimension var10 = var6.getPreferredSize(); + var0.setMaximumSize(var10); + boolean var12 = var0.getVerifyInputWhenFocusTarget(); + java.awt.Toolkit var13 = var0.getToolkit(); + boolean var14 = var0.isOpaque(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == true); + + } + + public void test306() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test306"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + var0.list(); + float var6 = var0.getAlignmentY(); + java.awt.event.ComponentListener[] var7 = var0.getComponentListeners(); + boolean var8 = var0.isRequestFocusEnabled(); + boolean var9 = var0.isFocusTraversalPolicySet(); + boolean var10 = var0.isValid(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == false); + + } + + public void test307() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test307"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.setInheritsPopupMenu(false); + boolean var6 = var0.isDoubleBuffered(); + boolean var7 = var0.isMinimumSizeSet(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var14 = new SpaceWar.SpacePanel(); + float var15 = var14.getAlignmentX(); + var14.setVisible(false); + java.awt.Dimension var18 = var14.getPreferredSize(); + var8.setMaximumSize(var18); + boolean var20 = var8.getVerifyInputWhenFocusTarget(); + javax.accessibility.AccessibleContext var21 = var8.getAccessibleContext(); + boolean var22 = var8.isDoubleBuffered(); + java.awt.Rectangle var23 = var8.getVisibleRect(); + var0.setBounds(var23); + SpaceWar.SpacePanel var25 = new SpaceWar.SpacePanel(); + float var26 = var25.getAlignmentX(); + var25.firePropertyChange("", (-1), 1); + java.awt.Rectangle var31 = var25.getVisibleRect(); + java.awt.Rectangle var32 = var0.getBounds(var31); + java.awt.Container var33 = var0.getParent(); + var0.hide(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var21); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var22 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var23); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var31); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var32); + + // Regression assertion (captures the current behavior of the code) + assertNull(var33); + + } + + public void test308() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test308"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + var0.list(); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + float var7 = var6.getAlignmentX(); + var6.setVisible(false); + boolean var10 = var6.isDoubleBuffered(); + java.awt.dnd.DropTarget var11 = var6.getDropTarget(); + var6.show(false); + java.awt.Rectangle var14 = var6.getVisibleRect(); + java.awt.image.BufferedImage var16 = var6.loadImg("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + boolean var17 = var0.isAncestorOf((java.awt.Component)var6); + java.awt.GraphicsConfiguration var18 = var6.getGraphicsConfiguration(); + java.awt.Font var19 = var6.getFont(); + javax.swing.InputMap var20 = var6.getInputMap(); + java.awt.event.MouseMotionListener[] var21 = var6.getMouseMotionListeners(); + var6.firePropertyChange("SpaceWar.SpacePanel[,-1,100,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=265,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var21); + + } + + public void test309() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test309"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + var0.list(); + float var6 = var0.getAlignmentY(); + java.awt.event.ComponentListener[] var7 = var0.getComponentListeners(); + java.awt.Component var8 = var0.getNextFocusableComponent(); + boolean var9 = var0.isManagingFocus(); + javax.swing.border.Border var10 = var0.getBorder(); + java.lang.Object var11 = var0.getTreeLock(); + SpaceWar.SpacePanel var12 = new SpaceWar.SpacePanel(); + var12.setName(""); + var12.enable(true); + var12.enable(); + java.awt.Point var18 = var12.location(); + var12.repaint(0, 3, (-1), 1); + var12.setBounds(25, 100, 1, 0); + var0.addKeyListener((java.awt.event.KeyListener)var12); + java.beans.PropertyChangeListener[] var30 = var12.getPropertyChangeListeners(); + javax.swing.JRootPane var31 = var12.getRootPane(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var30); + + // Regression assertion (captures the current behavior of the code) + assertNull(var31); + + } + + public void test310() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test310"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + SpaceWar.SpacePanel var2 = new SpaceWar.SpacePanel(); + float var3 = var2.getAlignmentX(); + var2.setVisible(false); + java.awt.Dimension var6 = var2.getPreferredSize(); + boolean var7 = var2.getVerifyInputWhenFocusTarget(); + java.awt.Component var10 = var2.findComponentAt(10, 1); + var0.addKeyListener((java.awt.event.KeyListener)var2); + SpaceWar.SpacePanel var12 = new SpaceWar.SpacePanel(); + float var13 = var12.getAlignmentX(); + SpaceWar.SpacePanel var14 = new SpaceWar.SpacePanel(); + float var15 = var14.getAlignmentX(); + var14.setVisible(false); + java.awt.Dimension var18 = var14.getPreferredSize(); + boolean var19 = var14.getVerifyInputWhenFocusTarget(); + java.awt.Component var22 = var14.findComponentAt(10, 1); + var12.addKeyListener((java.awt.event.KeyListener)var14); + var14.repaint(100, (-1), (-1), 1); + java.awt.image.ColorModel var29 = var14.getColorModel(); + SpaceWar.SpacePanel var30 = new SpaceWar.SpacePanel(); + float var31 = var30.getAlignmentX(); + var30.setVisible(false); + boolean var34 = var30.isDoubleBuffered(); + var30.list(); + SpaceWar.SpacePanel var36 = new SpaceWar.SpacePanel(); + float var37 = var36.getAlignmentX(); + var36.setVisible(false); + boolean var40 = var36.isDoubleBuffered(); + java.awt.dnd.DropTarget var41 = var36.getDropTarget(); + var36.show(false); + java.awt.Rectangle var44 = var36.getVisibleRect(); + java.awt.image.BufferedImage var46 = var36.loadImg("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + boolean var47 = var30.isAncestorOf((java.awt.Component)var36); + javax.swing.InputVerifier var48 = var36.getInputVerifier(); + var2.putClientProperty((java.lang.Object)var14, (java.lang.Object)var36); + javax.swing.JToolTip var50 = var2.createToolTip(); + java.awt.Graphics var51 = var50.getGraphics(); + boolean var52 = var50.isFocusOwner(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var29); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var31 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var34 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var40 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var41); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var44); + + // Regression assertion (captures the current behavior of the code) + assertNull(var46); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var47 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var48); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var50); + + // Regression assertion (captures the current behavior of the code) + assertNull(var51); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var52 == false); + + } + + public void test311() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test311"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.updateUI(); + var0.enableInputMethods(true); + java.lang.String var8 = var0.toString(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.setVisible(false); + boolean var13 = var9.isDoubleBuffered(); + java.awt.dnd.DropTarget var14 = var9.getDropTarget(); + var9.show(false); + java.awt.Rectangle var17 = var9.getVisibleRect(); + java.awt.image.BufferedImage var19 = var9.loadImg("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + java.awt.ComponentOrientation var20 = var9.getComponentOrientation(); + boolean var21 = var9.isPaintingTile(); + boolean var22 = var9.isOptimizedDrawingEnabled(); + int var23 = var0.getComponentZOrder((java.awt.Component)var9); + javax.swing.InputMap var24 = var9.getInputMap(); + SpaceWar.SpacePanel var25 = new SpaceWar.SpacePanel(); + float var26 = var25.getAlignmentX(); + var25.setVisible(false); + boolean var29 = var25.isDoubleBuffered(); + java.awt.dnd.DropTarget var30 = var25.getDropTarget(); + var25.show(false); + boolean var33 = var25.isPaintingForPrint(); + SpaceWar.SpacePanel var34 = new SpaceWar.SpacePanel(); + float var35 = var34.getAlignmentX(); + var34.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var40 = var34.getMouseListeners(); + int var41 = var34.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var42 = var34.getInputMethodRequests(); + var25.addKeyListener((java.awt.event.KeyListener)var34); + SpaceWar.SpacePanel var44 = new SpaceWar.SpacePanel(); + float var45 = var44.getAlignmentX(); + var44.setVisible(false); + boolean var48 = var44.isDoubleBuffered(); + var44.list(); + float var50 = var44.getAlignmentY(); + boolean var51 = var34.isFocusCycleRoot((java.awt.Container)var44); + boolean var52 = var44.isEnabled(); + java.awt.Dimension var53 = var44.getMaximumSize(); + var44.setName("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + var44.updateUI(); + boolean var57 = var44.isOptimizedDrawingEnabled(); + boolean var58 = var9.isFocusCycleRoot((java.awt.Container)var44); + boolean var59 = var9.isMinimumSizeSet(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var8 + "' != '" + "SpaceWar.SpacePanel[,0,0,0var8,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"+ "'", var8.equals("SpaceWar.SpacePanel[,0,0,0var8,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]")); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var22 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == (-1)); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var29 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var30); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var33 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var35 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var40); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var41 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var42); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var45 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var48 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var50 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var51 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var52 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var53); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var57 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var58 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var59 == false); + + } + + public void test312() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test312"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.setInheritsPopupMenu(false); + var0.move(10, 10); + var0.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var0.removeAll(); + var0.setInheritsPopupMenu(true); + boolean var18 = var0.inside(0, 500); + var0.transferFocusBackward(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == false); + + } + + public void test313() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test313"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + float var7 = var6.getAlignmentX(); + var6.setVisible(false); + java.awt.Dimension var10 = var6.getPreferredSize(); + var0.setMaximumSize(var10); + boolean var12 = var0.getVerifyInputWhenFocusTarget(); + javax.accessibility.AccessibleContext var13 = var0.getAccessibleContext(); + boolean var14 = var0.isDoubleBuffered(); + boolean var15 = var0.getAutoscrolls(); + var0.repaint(10L, (-1), 25, (-1), 100); + var0.updateUI(); + boolean var23 = var0.requestDefaultFocus(); + SpaceWar.SpacePanel var24 = new SpaceWar.SpacePanel(); + float var25 = var24.getAlignmentX(); + boolean var26 = var24.hasFocus(); + boolean var27 = var24.isPreferredSizeSet(); + var24.firePropertyChange("", (short)1, (short)0); + boolean var32 = var24.isMaximumSizeSet(); + java.awt.peer.ComponentPeer var33 = var24.getPeer(); + SpaceWar.SpacePanel var34 = new SpaceWar.SpacePanel(); + float var35 = var34.getAlignmentX(); + var34.setVisible(false); + boolean var38 = var34.isDoubleBuffered(); + java.awt.dnd.DropTarget var39 = var34.getDropTarget(); + var34.show(false); + SpaceWar.SpacePanel var42 = new SpaceWar.SpacePanel(); + float var43 = var42.getAlignmentX(); + var42.setVisible(false); + SpaceWar.SpacePanel var46 = new SpaceWar.SpacePanel(); + java.awt.Color var47 = var46.getBackground(); + var42.setForeground(var47); + SpaceWar.SpacePanel var49 = new SpaceWar.SpacePanel(); + float var50 = var49.getAlignmentX(); + var49.setVisible(false); + boolean var53 = var49.isDoubleBuffered(); + java.awt.dnd.DropTarget var54 = var49.getDropTarget(); + var49.show(false); + java.awt.Rectangle var57 = var49.getVisibleRect(); + var42.repaint(var57); + java.awt.FocusTraversalPolicy var59 = var42.getFocusTraversalPolicy(); + java.awt.im.InputMethodRequests var60 = var42.getInputMethodRequests(); + var42.layout(); + SpaceWar.SpacePanel var62 = new SpaceWar.SpacePanel(); + float var63 = var62.getAlignmentX(); + var62.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var68 = new SpaceWar.SpacePanel(); + float var69 = var68.getAlignmentX(); + var68.setVisible(false); + SpaceWar.SpacePanel var72 = new SpaceWar.SpacePanel(); + java.awt.Color var73 = var72.getBackground(); + var68.setForeground(var73); + var62.setBackground(var73); + var42.setForeground(var73); + int var77 = var42.getWidth(); + javax.swing.plaf.PanelUI var78 = var42.getUI(); + var34.setUI(var78); + var24.setUI(var78); + var0.remove((java.awt.Component)var24); + java.awt.Point var82 = var0.location(); + SpaceWar.SpacePanel var83 = new SpaceWar.SpacePanel(); + java.awt.Color var84 = var83.getBackground(); + var83.repaint(); + java.awt.im.InputMethodRequests var86 = var83.getInputMethodRequests(); + var83.setDoubleBuffered(true); + var83.show(false); + var83.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", (-1), 24); + boolean var95 = var83.getAutoscrolls(); + java.awt.Graphics var96 = var83.getGraphics(); + java.awt.Dimension var97 = var83.getMaximumSize(); + var0.setMaximumSize(var97); + boolean var99 = var0.isPreferredSizeSet(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var32 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var33); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var35 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var38 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var39); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var43 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var47); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var50 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var53 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var54); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var57); + + // Regression assertion (captures the current behavior of the code) + assertNull(var59); + + // Regression assertion (captures the current behavior of the code) + assertNull(var60); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var63 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var69 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var73); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var77 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var78); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var82); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var84); + + // Regression assertion (captures the current behavior of the code) + assertNull(var86); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var95 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var96); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var97); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var99 == true); + + } + + public void test314() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test314"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + boolean var2 = var0.hasFocus(); + boolean var3 = var0.isPreferredSizeSet(); + var0.firePropertyChange("", (short)1, (short)0); + boolean var8 = var0.isMaximumSizeSet(); + var0.list(); + java.awt.Rectangle var10 = var0.getBounds(); + var0.setFocusTraversalPolicyProvider(true); + java.awt.event.MouseMotionListener[] var13 = var0.getMouseMotionListeners(); + // The following exception was thrown during execution. + // This behavior will recorded for regression testing. + try { + boolean var15 = var0.areFocusTraversalKeysSet(505); + fail("Expected exception of type java.lang.IllegalArgumentException"); + } catch (java.lang.IllegalArgumentException e) { + // Expected exception. + } + + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var2 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var13); + + } + + public void test315() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test315"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + var0.setName(""); + java.awt.Graphics var3 = var0.getGraphics(); + java.awt.event.MouseMotionListener[] var4 = var0.getMouseMotionListeners(); + boolean var5 = var0.getIgnoreRepaint(); + var0.transferFocusBackward(); + var0.enable(); + java.awt.Container var8 = var0.getTopLevelAncestor(); + var0.invalidate(); + SpaceWar.SpacePanel var10 = new SpaceWar.SpacePanel(); + float var11 = var10.getAlignmentX(); + var10.setVisible(false); + var10.nextFocus(); + var10.updateUI(); + var10.enableInputMethods(true); + java.lang.String var18 = var10.toString(); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + float var20 = var19.getAlignmentX(); + var19.setVisible(false); + boolean var23 = var19.isDoubleBuffered(); + java.awt.dnd.DropTarget var24 = var19.getDropTarget(); + var19.show(false); + java.awt.Rectangle var27 = var19.getVisibleRect(); + java.awt.image.BufferedImage var29 = var19.loadImg("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + java.awt.ComponentOrientation var30 = var19.getComponentOrientation(); + boolean var31 = var19.isPaintingTile(); + boolean var32 = var19.isOptimizedDrawingEnabled(); + int var33 = var10.getComponentZOrder((java.awt.Component)var19); + javax.swing.InputMap var34 = var19.getInputMap(); + SpaceWar.SpacePanel var35 = new SpaceWar.SpacePanel(); + float var36 = var35.getAlignmentX(); + boolean var37 = var35.hasFocus(); + SpaceWar.SpacePanel var38 = new SpaceWar.SpacePanel(); + float var39 = var38.getAlignmentX(); + var38.setVisible(false); + var38.nextFocus(); + var38.reshape((-1), 1, (-1), 10); + var38.disable(); + java.awt.LayoutManager var49 = var38.getLayout(); + var38.setVisible(false); + var35.remove((java.awt.Component)var38); + java.beans.VetoableChangeListener[] var53 = var35.getVetoableChangeListeners(); + var0.putClientProperty((java.lang.Object)var34, (java.lang.Object)var35); + java.awt.event.HierarchyBoundsListener[] var55 = var0.getHierarchyBoundsListeners(); + var0.setToolTipText("SpaceWar.SpacePanel[,-1,1,-1x10,invalid,hidden,disabled,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + SpaceWar.SpacePanel var58 = new SpaceWar.SpacePanel(); + float var59 = var58.getAlignmentX(); + SpaceWar.SpacePanel var60 = new SpaceWar.SpacePanel(); + float var61 = var60.getAlignmentX(); + var60.setVisible(false); + java.awt.Dimension var64 = var60.getPreferredSize(); + boolean var65 = var60.getVerifyInputWhenFocusTarget(); + java.awt.Component var68 = var60.findComponentAt(10, 1); + var58.addKeyListener((java.awt.event.KeyListener)var60); + boolean var70 = var60.getFocusTraversalKeysEnabled(); + var60.requestFocus(); + java.lang.Object var72 = var0.getClientProperty((java.lang.Object)var60); + + // Regression assertion (captures the current behavior of the code) + assertNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var4); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var18 + "' != '" + "SpaceWar.SpacePanel[,0,0,0var18,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"+ "'", var18.equals("SpaceWar.SpacePanel[,0,0,0var18,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]")); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var27); + + // Regression assertion (captures the current behavior of the code) + assertNull(var29); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var30); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var31 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var32 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var33 == (-1)); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var34); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var36 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var39 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var49); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var53); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var55); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var59 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var61 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var64); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var65 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var68); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var70 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var72); + + } + + public void test316() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test316"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + var0.enable(false); + java.awt.Container var7 = var0.getTopLevelAncestor(); + java.awt.Rectangle var8 = var0.getVisibleRect(); + java.awt.Dimension var9 = var0.getMaximumSize(); + var0.firePropertyChange("", 24, 1); + SpaceWar.SpacePanel var14 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var15 = new SpaceWar.SpacePanel(); + java.awt.Color var16 = var15.getBackground(); + SpaceWar.SpacePanel var17 = new SpaceWar.SpacePanel(); + float var18 = var17.getAlignmentX(); + var17.setVisible(false); + var17.nextFocus(); + var17.updateUI(); + var17.enableInputMethods(true); + var14.add((java.awt.Component)var15, (java.lang.Object)true); + java.awt.Image var28 = var15.createImage(1, (-1)); + SpaceWar.SpacePanel var29 = new SpaceWar.SpacePanel(); + float var30 = var29.getAlignmentX(); + var29.setVisible(false); + var29.nextFocus(); + var29.updateUI(); + var29.enableInputMethods(true); + SpaceWar.SpacePanel var37 = new SpaceWar.SpacePanel(); + float var38 = var37.getAlignmentX(); + boolean var39 = var37.hasFocus(); + java.awt.Insets var40 = var37.getInsets(); + java.awt.Insets var41 = var29.getInsets(var40); + java.awt.Insets var42 = var15.getInsets(var40); + java.awt.Point var43 = var15.getMousePosition(); + SpaceWar.SpacePanel var44 = new SpaceWar.SpacePanel(); + float var45 = var44.getAlignmentX(); + var44.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var50 = var44.getUI(); + java.awt.im.InputMethodRequests var51 = var44.getInputMethodRequests(); + SpaceWar.SpacePanel var52 = new SpaceWar.SpacePanel(); + float var53 = var52.getAlignmentX(); + var52.setVisible(false); + var52.nextFocus(); + var52.updateUI(); + var52.enableInputMethods(true); + var52.setSize((-1), 1); + SpaceWar.SpacePanel var63 = new SpaceWar.SpacePanel(); + var63.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var44.add((java.awt.Component)var52, (java.lang.Object)"SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + java.awt.event.KeyListener[] var69 = var44.getKeyListeners(); + java.awt.FocusTraversalPolicy var70 = var44.getFocusTraversalPolicy(); + java.awt.Component var73 = var44.locate(3, 100); + SpaceWar.SpacePanel var74 = new SpaceWar.SpacePanel(); + float var75 = var74.getAlignmentX(); + var74.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var80 = var74.getMouseListeners(); + java.awt.Dimension var81 = var74.getPreferredSize(); + java.util.Locale var82 = var74.getLocale(); + var74.setFocusable(true); + var74.setSize(3, 10); + SpaceWar.SpacePanel var88 = new SpaceWar.SpacePanel(); + float var89 = var88.getAlignmentX(); + var88.setVisible(false); + java.awt.Dimension var92 = var88.getPreferredSize(); + boolean var93 = var88.getVerifyInputWhenFocusTarget(); + java.awt.Dimension var94 = var88.size(); + var74.setSize(var94); + var44.setMinimumSize(var94); + java.awt.Dimension var97 = var15.getSize(var94); + var0.setMinimumSize(var94); + java.awt.dnd.DropTarget var99 = var0.getDropTarget(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var9); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNull(var28); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var30 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var38 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var39 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var40); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var41); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var42); + + // Regression assertion (captures the current behavior of the code) + assertNull(var43); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var45 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var50); + + // Regression assertion (captures the current behavior of the code) + assertNull(var51); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var53 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var69); + + // Regression assertion (captures the current behavior of the code) + assertNull(var70); + + // Regression assertion (captures the current behavior of the code) + assertNull(var73); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var75 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var80); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var81); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var82); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var89 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var92); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var93 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var94); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var97); + + // Regression assertion (captures the current behavior of the code) + assertNull(var99); + + } + + public void test317() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test317"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.reshape((-1), 1, (-1), 10); + var0.disable(); + java.awt.LayoutManager var11 = var0.getLayout(); + boolean var14 = var0.contains((-1), 0); + SpaceWar.SpacePanel var15 = new SpaceWar.SpacePanel(); + float var16 = var15.getAlignmentX(); + var15.setVisible(false); + var15.nextFocus(); + var15.updateUI(); + var15.enableInputMethods(true); + var15.setSize((-1), 1); + java.awt.Component var26 = var0.add((java.awt.Component)var15); + SpaceWar.SpacePanel var27 = new SpaceWar.SpacePanel(); + float var28 = var27.getAlignmentX(); + var27.setVisible(false); + var27.nextFocus(); + var27.updateUI(); + var27.enableInputMethods(true); + java.lang.String var35 = var27.toString(); + java.awt.FocusTraversalPolicy var36 = var27.getFocusTraversalPolicy(); + var15.removeKeyListener((java.awt.event.KeyListener)var27); + var15.show(false); + java.awt.Container var40 = var15.getTopLevelAncestor(); + SpaceWar.SpacePanel var41 = new SpaceWar.SpacePanel(); + java.awt.Color var42 = var41.getBackground(); + var41.repaint(); + java.awt.im.InputMethodRequests var44 = var41.getInputMethodRequests(); + var41.setDoubleBuffered(true); + var41.setInheritsPopupMenu(false); + SpaceWar.SpacePanel var49 = new SpaceWar.SpacePanel(); + var49.setName(""); + java.awt.Graphics var52 = var49.getGraphics(); + java.awt.event.MouseMotionListener[] var53 = var49.getMouseMotionListeners(); + boolean var54 = var49.getIgnoreRepaint(); + var49.transferFocusBackward(); + java.awt.Cursor var56 = var49.getCursor(); + var41.setCursor(var56); + var15.setCursor(var56); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var28 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var35 + "' != '" + "SpaceWar.SpacePanel[,0,0,0var35,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"+ "'", var35.equals("SpaceWar.SpacePanel[,0,0,0var35,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]")); + + // Regression assertion (captures the current behavior of the code) + assertNull(var36); + + // Regression assertion (captures the current behavior of the code) + assertNull(var40); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var42); + + // Regression assertion (captures the current behavior of the code) + assertNull(var44); + + // Regression assertion (captures the current behavior of the code) + assertNull(var52); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var53); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var54 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var56); + + } + + public void test318() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test318"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + var0.show(false); + boolean var8 = var0.isPaintingForPrint(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var15 = var9.getMouseListeners(); + int var16 = var9.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var17 = var9.getInputMethodRequests(); + var0.addKeyListener((java.awt.event.KeyListener)var9); + boolean var19 = var9.isShowing(); + java.awt.ComponentOrientation var20 = var9.getComponentOrientation(); + java.awt.Component var23 = var9.getComponentAt(505, 500); + java.lang.String var24 = var9.getUIClassID(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertNull(var23); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var24 + "' != '" + "PanelUI"+ "'", var24.equals("PanelUI")); + + } + + public void test319() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test319"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + var0.setRequestFocusEnabled(false); + var0.reshape(100, 0, 100, 0); + var0.requestFocus(); + var0.firePropertyChange("hi!", '4', ' '); + java.awt.Point var15 = var0.getLocation(); + java.awt.Dimension var16 = var0.size(); + java.awt.Image var19 = var0.createImage((-1), (-1)); + java.awt.event.ComponentListener[] var20 = var0.getComponentListeners(); + SpaceWar.SpacePanel var21 = new SpaceWar.SpacePanel(); + var21.setName(""); + java.awt.ComponentOrientation var24 = var21.getComponentOrientation(); + var21.firePropertyChange("PanelUI", 1.0f, 0.5f); + int var29 = var0.getComponentZOrder((java.awt.Component)var21); + boolean var31 = var0.areFocusTraversalKeysSet(0); + javax.swing.TransferHandler var32 = var0.getTransferHandler(); + boolean var33 = var0.isForegroundSet(); + java.awt.event.ContainerListener[] var34 = var0.getContainerListeners(); + var0.setFocusable(true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var29 == (-1)); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var31 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var32); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var33 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var34); + + } + + public void test320() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test320"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + SpaceWar.SpacePanel var4 = new SpaceWar.SpacePanel(); + java.awt.Color var5 = var4.getBackground(); + var0.setForeground(var5); + SpaceWar.SpacePanel var7 = new SpaceWar.SpacePanel(); + float var8 = var7.getAlignmentX(); + var7.setVisible(false); + boolean var11 = var7.isDoubleBuffered(); + java.awt.dnd.DropTarget var12 = var7.getDropTarget(); + var7.show(false); + java.awt.Rectangle var15 = var7.getVisibleRect(); + var0.repaint(var15); + java.awt.FocusTraversalPolicy var17 = var0.getFocusTraversalPolicy(); + java.awt.im.InputMethodRequests var18 = var0.getInputMethodRequests(); + var0.layout(); + boolean var20 = var0.isFocusTraversalPolicyProvider(); + java.awt.Insets var21 = var0.insets(); + java.awt.Dimension var22 = var0.getMinimumSize(); + var0.revalidate(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var21); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var22); + + } + + public void test321() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test321"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + var0.list(); + float var6 = var0.getAlignmentY(); + boolean var7 = var0.isOpaque(); + var0.resetKeyboardActions(); + float var9 = var0.getAlignmentY(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + } + + public void test322() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test322"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + java.awt.im.InputMethodRequests var3 = var0.getInputMethodRequests(); + var0.setDoubleBuffered(true); + var0.show(false); + var0.setAlignmentY(100.0f); + SpaceWar.SpacePanel var10 = new SpaceWar.SpacePanel(); + float var11 = var10.getAlignmentX(); + var10.setVisible(false); + SpaceWar.SpacePanel var14 = new SpaceWar.SpacePanel(); + java.awt.Color var15 = var14.getBackground(); + var10.setForeground(var15); + SpaceWar.SpacePanel var17 = new SpaceWar.SpacePanel(); + float var18 = var17.getAlignmentX(); + var17.setVisible(false); + boolean var21 = var17.isDoubleBuffered(); + java.awt.dnd.DropTarget var22 = var17.getDropTarget(); + var17.show(false); + java.awt.Rectangle var25 = var17.getVisibleRect(); + var10.repaint(var25); + java.awt.FocusTraversalPolicy var27 = var10.getFocusTraversalPolicy(); + java.awt.im.InputMethodRequests var28 = var10.getInputMethodRequests(); + var10.layout(); + boolean var30 = var10.isFocusTraversalPolicyProvider(); + java.awt.Insets var31 = var10.insets(); + java.awt.Dimension var32 = var10.getMinimumSize(); + java.awt.Dimension var33 = var0.getSize(var32); + var0.enable(); + var0.enable(); + boolean var36 = var0.isDisplayable(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var25); + + // Regression assertion (captures the current behavior of the code) + assertNull(var27); + + // Regression assertion (captures the current behavior of the code) + assertNull(var28); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var30 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var31); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var32); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var33); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var36 == false); + + } + + public void test323() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test323"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.reshape((-1), 1, (-1), 10); + SpaceWar.SpacePanel var10 = new SpaceWar.SpacePanel(); + java.awt.Color var11 = var10.getBackground(); + var10.repaint(); + var10.setRequestFocusEnabled(false); + var10.reshape(100, 0, 100, 0); + java.awt.Component var20 = var0.add((java.awt.Component)var10); + boolean var21 = var10.isEnabled(); + javax.swing.ActionMap var22 = var10.getActionMap(); + var10.nextFocus(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var22); + + } + + public void test324() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test324"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var1 = new SpaceWar.SpacePanel(); + java.awt.Color var2 = var1.getBackground(); + SpaceWar.SpacePanel var3 = new SpaceWar.SpacePanel(); + float var4 = var3.getAlignmentX(); + var3.setVisible(false); + var3.nextFocus(); + var3.updateUI(); + var3.enableInputMethods(true); + var0.add((java.awt.Component)var1, (java.lang.Object)true); + boolean var12 = var0.isMinimumSizeSet(); + java.awt.event.HierarchyListener[] var13 = var0.getHierarchyListeners(); + int var14 = var0.getComponentCount(); + SpaceWar.SpacePanel var15 = new SpaceWar.SpacePanel(); + java.awt.Color var16 = var15.getBackground(); + var15.repaint(); + var15.setRequestFocusEnabled(false); + var15.removeAll(); + var0.setNextFocusableComponent((java.awt.Component)var15); + java.awt.Dimension var22 = var0.minimumSize(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var2); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == 1); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var22); + + } + + public void test325() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test325"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var1 = new SpaceWar.SpacePanel(); + java.awt.Color var2 = var1.getBackground(); + SpaceWar.SpacePanel var3 = new SpaceWar.SpacePanel(); + float var4 = var3.getAlignmentX(); + var3.setVisible(false); + var3.nextFocus(); + var3.updateUI(); + var3.enableInputMethods(true); + var0.add((java.awt.Component)var1, (java.lang.Object)true); + boolean var13 = var1.areFocusTraversalKeysSet(0); + boolean var14 = var1.isFocusable(); + java.awt.event.ComponentListener[] var15 = var1.getComponentListeners(); + SpaceWar.SpacePanel var16 = new SpaceWar.SpacePanel(); + var16.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + javax.swing.plaf.PanelUI var21 = var16.getUI(); + java.awt.Color var22 = var16.getBackground(); + var16.removeAll(); + var16.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", (short)(-1), (short)100); + java.awt.GraphicsConfiguration var28 = var16.getGraphicsConfiguration(); + SpaceWar.SpacePanel var29 = new SpaceWar.SpacePanel(); + float var30 = var29.getAlignmentX(); + SpaceWar.SpacePanel var31 = new SpaceWar.SpacePanel(); + float var32 = var31.getAlignmentX(); + var31.setVisible(false); + java.awt.Dimension var35 = var31.getPreferredSize(); + boolean var36 = var31.getVerifyInputWhenFocusTarget(); + java.awt.Component var39 = var31.findComponentAt(10, 1); + var29.addKeyListener((java.awt.event.KeyListener)var31); + var31.repaint(100, (-1), (-1), 1); + java.awt.image.ColorModel var46 = var31.getColorModel(); + boolean var47 = var31.isFocusTraversalPolicyProvider(); + var31.show(false); + boolean var50 = var31.isManagingFocus(); + SpaceWar.SpacePanel var51 = new SpaceWar.SpacePanel(); + java.awt.Color var52 = var51.getBackground(); + var51.repaint(); + var51.setRequestFocusEnabled(false); + var51.reshape(100, 0, 100, 0); + var51.requestFocus(); + java.awt.Rectangle var62 = var51.getVisibleRect(); + java.awt.Rectangle var63 = var51.getBounds(); + java.awt.im.InputMethodRequests var64 = var51.getInputMethodRequests(); + boolean var65 = var51.requestFocusInWindow(); + java.awt.Point var67 = var51.getMousePosition(false); + var51.setDebugGraphicsOptions(1); + java.awt.Graphics var70 = var51.getGraphics(); + var31.paint(var70); + var16.paintAll(var70); + var1.paintAll(var70); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var2); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var21); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertNull(var28); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var30 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var32 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var35); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var36 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var39); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var46); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var47 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var50 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var52); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var62); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var63); + + // Regression assertion (captures the current behavior of the code) + assertNull(var64); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var65 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var67); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var70); + + } + + public void test326() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test326"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var6 = var0.getMouseListeners(); + int var7 = var0.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var8 = var0.getInputMethodRequests(); + var0.removeNotify(); + var0.enable(); + SpaceWar.SpacePanel var11 = new SpaceWar.SpacePanel(); + java.awt.Color var12 = var11.getBackground(); + boolean var15 = var11.inside(0, (-1)); + var11.transferFocusUpCycle(); + java.lang.String var17 = var11.getName(); + boolean var18 = var0.isFocusCycleRoot((java.awt.Container)var11); + java.awt.Dimension var19 = var0.getMinimumSize(); + boolean var20 = var0.getFocusTraversalKeysEnabled(); + SpaceWar.SpacePanel var21 = new SpaceWar.SpacePanel(); + float var22 = var21.getAlignmentX(); + var21.setVisible(false); + var21.setInheritsPopupMenu(false); + var21.setFocusTraversalPolicyProvider(true); + SpaceWar.SpacePanel var29 = new SpaceWar.SpacePanel(); + float var30 = var29.getAlignmentX(); + var29.setVisible(false); + boolean var33 = var29.isDoubleBuffered(); + var29.list(); + SpaceWar.SpacePanel var35 = new SpaceWar.SpacePanel(); + float var36 = var35.getAlignmentX(); + var35.setVisible(false); + boolean var39 = var35.isDoubleBuffered(); + java.awt.dnd.DropTarget var40 = var35.getDropTarget(); + var35.show(false); + java.awt.Rectangle var43 = var35.getVisibleRect(); + java.awt.Rectangle var44 = var29.getBounds(var43); + javax.swing.JToolTip var45 = var29.createToolTip(); + var21.removeKeyListener((java.awt.event.KeyListener)var29); + var21.setFocusTraversalKeysEnabled(true); + javax.swing.KeyStroke[] var49 = var21.getRegisteredKeyStrokes(); + SpaceWar.SpacePanel var50 = new SpaceWar.SpacePanel(); + float var51 = var50.getAlignmentX(); + var50.setVisible(false); + java.awt.Dimension var54 = var50.getPreferredSize(); + java.awt.Toolkit var55 = var50.getToolkit(); + boolean var56 = var50.isFocusable(); + javax.swing.KeyStroke[] var57 = var50.getRegisteredKeyStrokes(); + java.awt.Component var60 = var50.getComponentAt(100, 100); + java.lang.Object var61 = var50.getTreeLock(); + boolean var64 = var50.inside(400, 0); + java.awt.event.MouseWheelListener[] var65 = var50.getMouseWheelListeners(); + var50.enableInputMethods(true); + boolean var68 = var21.isAncestorOf((java.awt.Component)var50); + boolean var69 = var21.isEnabled(); + SpaceWar.SpacePanel var70 = new SpaceWar.SpacePanel(); + float var71 = var70.getAlignmentX(); + var70.setVisible(false); + java.awt.Dimension var74 = var70.getPreferredSize(); + boolean var75 = var70.getVerifyInputWhenFocusTarget(); + java.awt.Component var78 = var70.findComponentAt(10, 1); + boolean var79 = var70.requestDefaultFocus(); + var70.setVerifyInputWhenFocusTarget(false); + java.awt.Point var82 = var70.getLocation(); + boolean var83 = var21.contains(var82); + var21.repaint(1, 2, 2, 500); + // The following exception was thrown during execution. + // This behavior will recorded for regression testing. + try { + java.awt.Component var90 = var0.add((java.awt.Component)var21, 505); + fail("Expected exception of type java.lang.IllegalArgumentException"); + } catch (java.lang.IllegalArgumentException e) { + // Expected exception. + } + + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var22 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var30 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var33 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var36 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var39 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var40); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var43); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var44); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var45); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var49); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var51 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var54); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var55); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var56 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var57); + + // Regression assertion (captures the current behavior of the code) + assertNull(var60); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var61); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var64 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var65); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var68 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var69 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var71 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var74); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var75 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var78); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var79 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var82); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var83 == false); + + } + + public void test327() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test327"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + SpaceWar.SpacePanel var2 = new SpaceWar.SpacePanel(); + float var3 = var2.getAlignmentX(); + var2.setVisible(false); + java.awt.Dimension var6 = var2.getPreferredSize(); + boolean var7 = var2.getVerifyInputWhenFocusTarget(); + java.awt.Component var10 = var2.findComponentAt(10, 1); + var0.addKeyListener((java.awt.event.KeyListener)var2); + var2.repaint(100, (-1), (-1), 1); + SpaceWar.SpacePanel var17 = new SpaceWar.SpacePanel(); + java.awt.Color var18 = var17.getBackground(); + var17.repaint(); + var17.setRequestFocusEnabled(false); + var17.reshape(100, 0, 100, 0); + var17.requestFocus(); + java.awt.Rectangle var28 = var17.getVisibleRect(); + java.awt.Rectangle var29 = var17.getBounds(); + java.awt.im.InputMethodRequests var30 = var17.getInputMethodRequests(); + boolean var31 = var17.requestFocusInWindow(); + java.lang.Object var32 = var2.getClientProperty((java.lang.Object)var17); + var2.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", 0L, 10L); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var28); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var29); + + // Regression assertion (captures the current behavior of the code) + assertNull(var30); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var31 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var32); + + } + + public void test328() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test328"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + var0.list(); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + float var7 = var6.getAlignmentX(); + var6.setVisible(false); + boolean var10 = var6.isDoubleBuffered(); + java.awt.dnd.DropTarget var11 = var6.getDropTarget(); + var6.show(false); + java.awt.Rectangle var14 = var6.getVisibleRect(); + java.awt.Rectangle var15 = var0.getBounds(var14); + javax.swing.JToolTip var16 = var0.createToolTip(); + var0.firePropertyChange("", false, false); + var0.validate(); + boolean var22 = var0.isEnabled(); + SpaceWar.SpacePanel var23 = new SpaceWar.SpacePanel(); + float var24 = var23.getAlignmentX(); + var23.setVisible(false); + boolean var27 = var23.isDoubleBuffered(); + java.awt.dnd.DropTarget var28 = var23.getDropTarget(); + var23.show(false); + java.awt.Rectangle var31 = var23.getVisibleRect(); + javax.swing.KeyStroke[] var32 = var23.getRegisteredKeyStrokes(); + SpaceWar.SpacePanel var33 = new SpaceWar.SpacePanel(); + float var34 = var33.getAlignmentX(); + var33.setVisible(false); + boolean var37 = var33.isDoubleBuffered(); + java.awt.dnd.DropTarget var38 = var33.getDropTarget(); + boolean var39 = var33.isFocusCycleRoot(); + var33.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", 100, 0); + SpaceWar.SpacePanel var44 = new SpaceWar.SpacePanel(); + float var45 = var44.getAlignmentX(); + var44.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var50 = var44.getUI(); + var33.add((java.awt.Component)var44, (java.lang.Object)(short)0); + java.awt.event.InputMethodListener[] var53 = var44.getInputMethodListeners(); + var0.putClientProperty((java.lang.Object)var32, (java.lang.Object)var44); + var0.setRequestFocusEnabled(false); + // The following exception was thrown during execution. + // This behavior will recorded for regression testing. + try { + javax.swing.InputMap var58 = var0.getInputMap(400); + fail("Expected exception of type java.lang.IllegalArgumentException"); + } catch (java.lang.IllegalArgumentException e) { + // Expected exception. + } + + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var22 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var24 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var28); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var31); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var32); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var34 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var38); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var39 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var45 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var50); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var53); + + } + + public void test329() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test329"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + SpaceWar.SpacePanel var4 = new SpaceWar.SpacePanel(); + java.awt.Color var5 = var4.getBackground(); + var0.setForeground(var5); + SpaceWar.SpacePanel var7 = new SpaceWar.SpacePanel(); + float var8 = var7.getAlignmentX(); + var7.setVisible(false); + boolean var11 = var7.isDoubleBuffered(); + java.awt.dnd.DropTarget var12 = var7.getDropTarget(); + var7.show(false); + java.awt.Rectangle var15 = var7.getVisibleRect(); + var0.repaint(var15); + java.awt.FocusTraversalPolicy var17 = var0.getFocusTraversalPolicy(); + java.awt.im.InputMethodRequests var18 = var0.getInputMethodRequests(); + var0.layout(); + var0.setDebugGraphicsOptions(10); + boolean var22 = var0.isFocusCycleRoot(); + boolean var23 = var0.hasFocus(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var22 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == false); + + } + + public void test330() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test330"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var1 = new SpaceWar.SpacePanel(); + java.awt.Color var2 = var1.getBackground(); + SpaceWar.SpacePanel var3 = new SpaceWar.SpacePanel(); + float var4 = var3.getAlignmentX(); + var3.setVisible(false); + var3.nextFocus(); + var3.updateUI(); + var3.enableInputMethods(true); + var0.add((java.awt.Component)var1, (java.lang.Object)true); + java.awt.Dimension var12 = var1.getPreferredSize(); + java.awt.Component[] var13 = var1.getComponents(); + var1.repaint(25, 25, 100, 1); + javax.swing.KeyStroke[] var19 = var1.getRegisteredKeyStrokes(); + var1.validate(); + boolean var21 = var1.isForegroundSet(); + boolean var22 = var1.isMinimumSizeSet(); + boolean var23 = var1.getFocusTraversalKeysEnabled(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var2); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var22 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == true); + + } + + public void test331() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test331"); + + + SpaceWar.Player var0 = new SpaceWar.Player(); + int var1 = var0.getR(); + var0.setRigth(false); + var0.setLife(100); + var0.setDown(false); + var0.setFiring(true); + var0.increasePower(400); + var0.loseLife(); + var0.setRigth(false); + int var15 = var0.getPowerLevel(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 25); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == 1); + + } + + public void test332() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test332"); + + + SpaceWar.Player var0 = new SpaceWar.Player(); + boolean var1 = var0.isRecovering(); + var0.loseLife(); + int var3 = var0.getR(); + var0.increasePower(500); + int var6 = var0.getPower(); + var0.setScore(499); + var0.setUp(false); + var0.setDown(false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == 25); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == 499); + + } + + public void test333() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test333"); + + + SpaceWar.Player var0 = new SpaceWar.Player(); + boolean var1 = var0.isRecovering(); + var0.setUp(true); + java.awt.image.BufferedImage var5 = var0.loadImg("SpaceWar.SpacePanel[,0,0,0x0,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + int var6 = var0.getPower(); + boolean var7 = var0.isRecovering(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == false); + + } + + public void test334() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test334"); + + + SpaceWar.Player var0 = new SpaceWar.Player(); + int var1 = var0.getR(); + var0.setUp(false); + var0.update(); + java.awt.image.BufferedImage var6 = var0.loadImg("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + int var7 = var0.getX(); + var0.setLife(10); + int var10 = var0.getR(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 25); + + // Regression assertion (captures the current behavior of the code) + assertNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 400); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 25); + + } + + public void test335() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test335"); + + + SpaceWar.Player var0 = new SpaceWar.Player(); + var0.increasePower(25); + int var3 = var0.getScore(); + var0.setRigth(true); + var0.update(); + var0.setDown(false); + java.awt.image.BufferedImage var10 = var0.loadImg("SpaceWar.SpacePanel[,-1,1,-1x10,invalid,hidden,disabled,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + var0.setUp(false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var10); + + } + + public void test336() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test336"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.reshape((-1), 1, (-1), 10); + var0.disable(); + boolean var11 = var0.isFocusable(); + int var12 = var0.getHeight(); + javax.swing.InputVerifier var13 = var0.getInputVerifier(); + java.awt.Component var14 = var0.getNextFocusableComponent(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == 10); + + // Regression assertion (captures the current behavior of the code) + assertNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertNull(var14); + + } + + public void test337() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test337"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + boolean var2 = var0.hasFocus(); + boolean var3 = var0.isPreferredSizeSet(); + var0.firePropertyChange("", (short)1, (short)0); + boolean var8 = var0.isMaximumSizeSet(); + java.awt.Component var9 = var0.getNextFocusableComponent(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var2 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var9); + + } + + public void test338() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test338"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + boolean var2 = var0.hasFocus(); + SpaceWar.SpacePanel var3 = new SpaceWar.SpacePanel(); + float var4 = var3.getAlignmentX(); + var3.setVisible(false); + var3.nextFocus(); + var3.reshape((-1), 1, (-1), 10); + var3.disable(); + java.awt.LayoutManager var14 = var3.getLayout(); + var3.setVisible(false); + var0.remove((java.awt.Component)var3); + var3.repaint(); + boolean var19 = var3.hasFocus(); + java.awt.event.MouseWheelListener[] var20 = var3.getMouseWheelListeners(); + SpaceWar.SpacePanel var21 = new SpaceWar.SpacePanel(); + java.awt.Color var22 = var21.getBackground(); + var21.repaint(); + var21.setRequestFocusEnabled(false); + var21.reshape(100, 0, 100, 0); + var21.requestFocus(); + java.awt.Rectangle var32 = var21.getVisibleRect(); + java.awt.Rectangle var33 = var21.getBounds(); + java.awt.im.InputMethodRequests var34 = var21.getInputMethodRequests(); + boolean var35 = var21.requestFocusInWindow(); + java.awt.Point var37 = var21.getMousePosition(false); + var21.setDebugGraphicsOptions(1); + java.awt.Graphics var40 = var21.getGraphics(); + var3.printAll(var40); + var3.setAlignmentX(1.0f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var2 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var32); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var33); + + // Regression assertion (captures the current behavior of the code) + assertNull(var34); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var35 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var37); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var40); + + } + + public void test339() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test339"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + var0.setRequestFocusEnabled(false); + var0.reshape(100, 0, 100, 0); + var0.requestFocus(); + var0.firePropertyChange("hi!", '4', ' '); + java.awt.Point var15 = var0.getLocation(); + java.awt.event.MouseWheelListener[] var16 = var0.getMouseWheelListeners(); + var0.setAutoscrolls(false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + } + + public void test340() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test340"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.requestFocus(); + boolean var6 = var0.isBackgroundSet(); + SpaceWar.SpacePanel var7 = new SpaceWar.SpacePanel(); + java.awt.Color var8 = var7.getBackground(); + var7.repaint(); + var7.setRequestFocusEnabled(false); + var7.reshape(100, 0, 100, 0); + SpaceWar.SpacePanel var17 = new SpaceWar.SpacePanel(); + float var18 = var17.getAlignmentX(); + var17.setVisible(false); + var17.setInheritsPopupMenu(false); + boolean var23 = var17.isDoubleBuffered(); + SpaceWar.SpacePanel var24 = new SpaceWar.SpacePanel(); + float var25 = var24.getAlignmentX(); + var24.setVisible(false); + var24.nextFocus(); + var24.reshape((-1), 1, (-1), 10); + var24.disable(); + java.awt.LayoutManager var35 = var24.getLayout(); + var17.setLayout(var35); + var0.add((java.awt.Component)var7, (java.lang.Object)var35); + SpaceWar.SpacePanel var38 = new SpaceWar.SpacePanel(); + float var39 = var38.getAlignmentX(); + var38.setVisible(false); + java.awt.Dimension var42 = var38.getPreferredSize(); + java.awt.Toolkit var43 = var38.getToolkit(); + boolean var44 = var38.isFocusable(); + javax.swing.KeyStroke[] var45 = var38.getRegisteredKeyStrokes(); + SpaceWar.SpacePanel var46 = new SpaceWar.SpacePanel(); + float var47 = var46.getAlignmentX(); + SpaceWar.SpacePanel var48 = new SpaceWar.SpacePanel(); + float var49 = var48.getAlignmentX(); + var48.setVisible(false); + java.awt.Dimension var52 = var48.getPreferredSize(); + boolean var53 = var48.getVerifyInputWhenFocusTarget(); + java.awt.Component var56 = var48.findComponentAt(10, 1); + var46.addKeyListener((java.awt.event.KeyListener)var48); + var48.repaint(100, (-1), (-1), 1); + boolean var63 = var38.isAncestorOf((java.awt.Component)var48); + var38.setFocusable(false); + boolean var66 = var7.isAncestorOf((java.awt.Component)var38); + boolean var67 = var7.isFocusTraversalPolicySet(); + SpaceWar.SpacePanel var68 = new SpaceWar.SpacePanel(); + float var69 = var68.getAlignmentX(); + var68.setVisible(false); + boolean var72 = var68.isDoubleBuffered(); + var68.list(); + float var74 = var68.getAlignmentY(); + boolean var75 = var68.isOpaque(); + var68.nextFocus(); + java.awt.Component var77 = var68.getNextFocusableComponent(); + var7.remove((java.awt.Component)var68); + var7.setSize(10, 1); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var35); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var39 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var42); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var43); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var44 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var45); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var47 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var49 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var52); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var53 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var56); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var63 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var66 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var67 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var69 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var72 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var74 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var75 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var77); + + } + + public void test341() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test341"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + boolean var2 = var0.hasFocus(); + SpaceWar.SpacePanel var3 = new SpaceWar.SpacePanel(); + float var4 = var3.getAlignmentX(); + var3.setVisible(false); + var3.nextFocus(); + var3.reshape((-1), 1, (-1), 10); + var3.disable(); + java.awt.LayoutManager var14 = var3.getLayout(); + var3.setVisible(false); + var0.remove((java.awt.Component)var3); + var3.repaint(); + boolean var19 = var3.hasFocus(); + java.awt.event.MouseWheelListener[] var20 = var3.getMouseWheelListeners(); + boolean var21 = var3.isFocusTraversalPolicySet(); + var3.grabFocus(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var2 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == false); + + } + + public void test342() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test342"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + java.awt.Dimension var4 = var0.getPreferredSize(); + java.awt.Toolkit var5 = var0.getToolkit(); + boolean var6 = var0.isFocusable(); + javax.swing.KeyStroke[] var7 = var0.getRegisteredKeyStrokes(); + java.awt.Component var10 = var0.getComponentAt(100, 100); + java.lang.Object var11 = var0.getTreeLock(); + SpaceWar.SpacePanel var12 = new SpaceWar.SpacePanel(); + float var13 = var12.getAlignmentX(); + var12.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var18 = new SpaceWar.SpacePanel(); + float var19 = var18.getAlignmentX(); + var18.setVisible(false); + java.awt.Dimension var22 = var18.getPreferredSize(); + var12.setMaximumSize(var22); + boolean var24 = var12.getVerifyInputWhenFocusTarget(); + int var25 = var12.getX(); + SpaceWar.SpacePanel var26 = new SpaceWar.SpacePanel(); + float var27 = var26.getAlignmentX(); + SpaceWar.SpacePanel var28 = new SpaceWar.SpacePanel(); + float var29 = var28.getAlignmentX(); + var28.setVisible(false); + java.awt.Dimension var32 = var28.getPreferredSize(); + boolean var33 = var28.getVerifyInputWhenFocusTarget(); + java.awt.Component var36 = var28.findComponentAt(10, 1); + var26.addKeyListener((java.awt.event.KeyListener)var28); + var28.repaint(100, (-1), (-1), 1); + SpaceWar.SpacePanel var43 = new SpaceWar.SpacePanel(); + java.awt.Color var44 = var43.getBackground(); + var43.repaint(); + java.awt.im.InputMethodRequests var46 = var43.getInputMethodRequests(); + java.awt.GraphicsConfiguration var47 = var43.getGraphicsConfiguration(); + var28.remove((java.awt.Component)var43); + java.awt.Font var49 = var43.getFont(); + var12.setFont(var49); + SpaceWar.SpacePanel var51 = new SpaceWar.SpacePanel(); + float var52 = var51.getAlignmentX(); + var51.setVisible(false); + var51.nextFocus(); + var51.reshape((-1), 1, (-1), 10); + var51.disable(); + java.awt.LayoutManager var62 = var51.getLayout(); + var12.setLayout(var62); + var0.setLayout(var62); + java.awt.Point var66 = var0.getMousePosition(false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var4); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var24 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var29 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var32); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var33 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var36); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var44); + + // Regression assertion (captures the current behavior of the code) + assertNull(var46); + + // Regression assertion (captures the current behavior of the code) + assertNull(var47); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var49); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var52 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var62); + + // Regression assertion (captures the current behavior of the code) + assertNull(var66); + + } + + public void test343() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test343"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var6 = var0.getMouseListeners(); + int var7 = var0.getDebugGraphicsOptions(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + boolean var12 = var8.isDoubleBuffered(); + java.awt.dnd.DropTarget var13 = var8.getDropTarget(); + var8.show(false); + java.awt.Rectangle var16 = var8.getVisibleRect(); + var0.paintImmediately(var16); + SpaceWar.SpacePanel var18 = new SpaceWar.SpacePanel(); + float var19 = var18.getAlignmentX(); + var18.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var24 = var18.getMouseListeners(); + int var25 = var18.getDebugGraphicsOptions(); + SpaceWar.SpacePanel var26 = new SpaceWar.SpacePanel(); + float var27 = var26.getAlignmentX(); + var26.setVisible(false); + boolean var30 = var26.isDoubleBuffered(); + java.awt.dnd.DropTarget var31 = var26.getDropTarget(); + var26.show(false); + java.awt.Rectangle var34 = var26.getVisibleRect(); + var18.paintImmediately(var34); + java.awt.Rectangle var36 = var18.getBounds(); + var0.scrollRectToVisible(var36); + SpaceWar.SpacePanel var38 = new SpaceWar.SpacePanel(); + java.awt.Color var39 = var38.getBackground(); + var38.repaint(); + var38.setRequestFocusEnabled(false); + var38.setIgnoreRepaint(false); + boolean var45 = var38.requestFocusInWindow(); + float var46 = var38.getAlignmentY(); + java.awt.LayoutManager var47 = var38.getLayout(); + var0.setLayout(var47); + float var49 = var0.getAlignmentY(); + java.awt.Dimension var50 = var0.minimumSize(); + java.lang.String var51 = var0.getName(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var30 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var31); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var34); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var36); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var39); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var45 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var46 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var47); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var49 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var50); + + // Regression assertion (captures the current behavior of the code) + assertNull(var51); + + } + + public void test344() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test344"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + boolean var2 = var0.hasFocus(); + SpaceWar.SpacePanel var3 = new SpaceWar.SpacePanel(); + float var4 = var3.getAlignmentX(); + var3.setVisible(false); + var3.nextFocus(); + var3.reshape((-1), 1, (-1), 10); + var3.disable(); + java.awt.LayoutManager var14 = var3.getLayout(); + var3.setVisible(false); + var0.remove((java.awt.Component)var3); + boolean var18 = var3.hasFocus(); + java.lang.String var19 = var3.toString(); + var3.reshape((-1), 505, 500, 1); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var2 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var19 + "' != '" + "SpaceWar.SpacePanel[,-1,1,-1x10,invalid,hidden,disabled,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"+ "'", var19.equals("SpaceWar.SpacePanel[,-1,1,-1x10,invalid,hidden,disabled,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]")); + + } + + public void test345() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test345"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + SpaceWar.SpacePanel var2 = new SpaceWar.SpacePanel(); + float var3 = var2.getAlignmentX(); + var2.setVisible(false); + java.awt.Dimension var6 = var2.getPreferredSize(); + boolean var7 = var2.getVerifyInputWhenFocusTarget(); + java.awt.Component var10 = var2.findComponentAt(10, 1); + var0.addKeyListener((java.awt.event.KeyListener)var2); + var2.hide(); + var2.setDoubleBuffered(true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var10); + + } + + public void test346() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test346"); + + + SpaceWar.Player var0 = new SpaceWar.Player(); + var0.increasePower(25); + int var3 = var0.getR(); + int var4 = var0.getScore(); + var0.loseLife(); + boolean var6 = var0.isRecovering(); + var0.setFiring(false); + int var9 = var0.getScore(); + var0.setLeft(true); + var0.setDown(true); + var0.update(); + int var15 = var0.getY(); + var0.setLeft(false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == 25); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == 505); + + } + + public void test347() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test347"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + java.awt.im.InputMethodRequests var3 = var0.getInputMethodRequests(); + var0.setDoubleBuffered(true); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + float var7 = var6.getAlignmentX(); + boolean var8 = var6.hasFocus(); + java.awt.Insets var9 = var6.getInsets(); + java.awt.Insets var10 = var0.getInsets(var9); + java.awt.Rectangle var11 = var0.bounds(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var9); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + } + + public void test348() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test348"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + var0.enable(false); + int var7 = var0.getWidth(); + int var8 = var0.getDebugGraphicsOptions(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 0); + + } + + public void test349() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test349"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var6 = var0.getMouseListeners(); + int var7 = var0.getDebugGraphicsOptions(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + boolean var12 = var8.isDoubleBuffered(); + java.awt.dnd.DropTarget var13 = var8.getDropTarget(); + var8.show(false); + java.awt.Rectangle var16 = var8.getVisibleRect(); + var0.paintImmediately(var16); + SpaceWar.SpacePanel var18 = new SpaceWar.SpacePanel(); + float var19 = var18.getAlignmentX(); + var18.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var24 = var18.getMouseListeners(); + int var25 = var18.getDebugGraphicsOptions(); + SpaceWar.SpacePanel var26 = new SpaceWar.SpacePanel(); + float var27 = var26.getAlignmentX(); + var26.setVisible(false); + boolean var30 = var26.isDoubleBuffered(); + java.awt.dnd.DropTarget var31 = var26.getDropTarget(); + var26.show(false); + java.awt.Rectangle var34 = var26.getVisibleRect(); + var18.paintImmediately(var34); + java.awt.Rectangle var36 = var18.getBounds(); + var0.scrollRectToVisible(var36); + var0.requestFocus(); + var0.move(2, 25); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var30 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var31); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var34); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var36); + + } + + public void test350() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test350"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var1 = new SpaceWar.SpacePanel(); + java.awt.Color var2 = var1.getBackground(); + SpaceWar.SpacePanel var3 = new SpaceWar.SpacePanel(); + float var4 = var3.getAlignmentX(); + var3.setVisible(false); + var3.nextFocus(); + var3.updateUI(); + var3.enableInputMethods(true); + var0.add((java.awt.Component)var1, (java.lang.Object)true); + boolean var12 = var0.isMinimumSizeSet(); + java.awt.event.HierarchyListener[] var13 = var0.getHierarchyListeners(); + var0.repaint(0L); + SpaceWar.SpacePanel var16 = new SpaceWar.SpacePanel(); + float var17 = var16.getAlignmentX(); + var16.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var22 = var16.getUI(); + java.awt.im.InputMethodRequests var23 = var16.getInputMethodRequests(); + SpaceWar.SpacePanel var24 = new SpaceWar.SpacePanel(); + float var25 = var24.getAlignmentX(); + var24.setVisible(false); + var24.nextFocus(); + var24.updateUI(); + var24.enableInputMethods(true); + var24.setSize((-1), 1); + SpaceWar.SpacePanel var35 = new SpaceWar.SpacePanel(); + var35.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var16.add((java.awt.Component)var24, (java.lang.Object)"SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + java.awt.ComponentOrientation var41 = var24.getComponentOrientation(); + java.beans.VetoableChangeListener[] var42 = var24.getVetoableChangeListeners(); + int var43 = var24.getHeight(); + javax.swing.ActionMap var44 = var24.getActionMap(); + var0.setActionMap(var44); + java.awt.Point var47 = var0.getMousePosition(false); + boolean var48 = var0.isPaintingForPrint(); + var0.setInheritsPopupMenu(true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var2); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertNull(var23); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var41); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var42); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var43 == 1); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var44); + + // Regression assertion (captures the current behavior of the code) + assertNull(var47); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var48 == false); + + } + + public void test351() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test351"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + var0.setRequestFocusEnabled(false); + var0.reshape(100, 0, 100, 0); + var0.requestFocus(); + var0.firePropertyChange("hi!", '4', ' '); + java.awt.Point var15 = var0.getLocation(); + java.awt.Dimension var16 = var0.size(); + boolean var17 = var0.isDoubleBuffered(); + var0.reshape(0, 3, 25, 3); + SpaceWar.SpacePanel var23 = new SpaceWar.SpacePanel(); + float var24 = var23.getAlignmentX(); + var23.setVisible(false); + boolean var27 = var23.isDoubleBuffered(); + java.awt.dnd.DropTarget var28 = var23.getDropTarget(); + var23.show(false); + boolean var31 = var23.isPaintingForPrint(); + SpaceWar.SpacePanel var32 = new SpaceWar.SpacePanel(); + float var33 = var32.getAlignmentX(); + var32.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var38 = var32.getMouseListeners(); + int var39 = var32.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var40 = var32.getInputMethodRequests(); + var23.addKeyListener((java.awt.event.KeyListener)var32); + boolean var42 = var23.isDisplayable(); + java.awt.Point var43 = var23.getLocation(); + java.awt.Component var44 = var0.findComponentAt(var43); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var24 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var28); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var31 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var33 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var38); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var39 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var40); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var42 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var43); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var44); + + } + + public void test352() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test352"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + var0.setName(""); + java.awt.Dimension var3 = var0.minimumSize(); + boolean var4 = var0.isDoubleBuffered(); + SpaceWar.SpacePanel var5 = new SpaceWar.SpacePanel(); + float var6 = var5.getAlignmentX(); + var5.setVisible(false); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + java.awt.Color var10 = var9.getBackground(); + var5.setForeground(var10); + SpaceWar.SpacePanel var12 = new SpaceWar.SpacePanel(); + float var13 = var12.getAlignmentX(); + var12.setVisible(false); + boolean var16 = var12.isDoubleBuffered(); + java.awt.dnd.DropTarget var17 = var12.getDropTarget(); + var12.show(false); + java.awt.Rectangle var20 = var12.getVisibleRect(); + var5.repaint(var20); + java.awt.FocusTraversalPolicy var22 = var5.getFocusTraversalPolicy(); + java.awt.im.InputMethodRequests var23 = var5.getInputMethodRequests(); + var5.layout(); + boolean var25 = var5.isFocusTraversalPolicyProvider(); + java.awt.Component var26 = var0.add((java.awt.Component)var5); + javax.swing.border.Border var27 = var5.getBorder(); + java.awt.Point var28 = var5.getLocation(); + java.awt.Rectangle var29 = var5.getBounds(); + java.beans.PropertyChangeListener[] var30 = var5.getPropertyChangeListeners(); + boolean var31 = var5.getIgnoreRepaint(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertNull(var23); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertNull(var27); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var28); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var29); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var30); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var31 == false); + + } + + public void test353() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test353"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + java.awt.im.InputMethodRequests var3 = var0.getInputMethodRequests(); + java.awt.GraphicsConfiguration var4 = var0.getGraphicsConfiguration(); + SpaceWar.SpacePanel var5 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + java.awt.Color var7 = var6.getBackground(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + var8.nextFocus(); + var8.updateUI(); + var8.enableInputMethods(true); + var5.add((java.awt.Component)var6, (java.lang.Object)true); + java.awt.Dimension var17 = var6.getPreferredSize(); + var6.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", (-1.0f), 100.0f); + SpaceWar.SpacePanel var22 = new SpaceWar.SpacePanel(); + float var23 = var22.getAlignmentX(); + var22.setVisible(false); + boolean var26 = var22.isDoubleBuffered(); + SpaceWar.SpacePanel var27 = new SpaceWar.SpacePanel(); + java.awt.Color var28 = var27.getBackground(); + var27.repaint(); + java.lang.Object var30 = var22.getClientProperty((java.lang.Object)var27); + var6.remove((java.awt.Component)var22); + SpaceWar.SpacePanel var32 = new SpaceWar.SpacePanel(); + float var33 = var32.getAlignmentX(); + var32.firePropertyChange("", (-1), 1); + java.awt.event.MouseMotionListener[] var38 = var32.getMouseMotionListeners(); + java.awt.Dimension var39 = var32.getMinimumSize(); + var6.setMaximumSize(var39); + var0.setPreferredSize(var39); + java.awt.Toolkit var42 = var0.getToolkit(); + java.awt.Point var43 = var0.getLocation(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertNull(var4); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var28); + + // Regression assertion (captures the current behavior of the code) + assertNull(var30); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var33 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var38); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var39); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var42); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var43); + + } + + public void test354() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test354"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.setInheritsPopupMenu(false); + var0.move(10, 10); + int var9 = var0.getHeight(); + var0.reshape(505, 400, 400, 10); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0); + + } + + public void test355() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test355"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + float var7 = var6.getAlignmentX(); + var6.setVisible(false); + java.awt.Dimension var10 = var6.getPreferredSize(); + var0.setMaximumSize(var10); + boolean var12 = var0.getVerifyInputWhenFocusTarget(); + int var13 = var0.getX(); + SpaceWar.SpacePanel var14 = new SpaceWar.SpacePanel(); + float var15 = var14.getAlignmentX(); + SpaceWar.SpacePanel var16 = new SpaceWar.SpacePanel(); + float var17 = var16.getAlignmentX(); + var16.setVisible(false); + java.awt.Dimension var20 = var16.getPreferredSize(); + boolean var21 = var16.getVerifyInputWhenFocusTarget(); + java.awt.Component var24 = var16.findComponentAt(10, 1); + var14.addKeyListener((java.awt.event.KeyListener)var16); + var16.repaint(100, (-1), (-1), 1); + SpaceWar.SpacePanel var31 = new SpaceWar.SpacePanel(); + java.awt.Color var32 = var31.getBackground(); + var31.repaint(); + java.awt.im.InputMethodRequests var34 = var31.getInputMethodRequests(); + java.awt.GraphicsConfiguration var35 = var31.getGraphicsConfiguration(); + var16.remove((java.awt.Component)var31); + java.awt.Font var37 = var31.getFont(); + var0.setFont(var37); + SpaceWar.SpacePanel var39 = new SpaceWar.SpacePanel(); + float var40 = var39.getAlignmentX(); + var39.setVisible(false); + var39.nextFocus(); + var39.reshape((-1), 1, (-1), 10); + var39.disable(); + java.awt.LayoutManager var50 = var39.getLayout(); + var0.setLayout(var50); + java.awt.image.ColorModel var52 = var0.getColorModel(); + boolean var53 = var0.isPaintingTile(); + int var54 = var0.getWidth(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var32); + + // Regression assertion (captures the current behavior of the code) + assertNull(var34); + + // Regression assertion (captures the current behavior of the code) + assertNull(var35); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var37); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var40 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var50); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var52); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var53 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var54 == 0); + + } + + public void test356() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test356"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + var0.show(false); + java.awt.Rectangle var8 = var0.getVisibleRect(); + java.awt.Toolkit var9 = var0.getToolkit(); + SpaceWar.SpacePanel var10 = new SpaceWar.SpacePanel(); + float var11 = var10.getAlignmentX(); + var10.setVisible(false); + java.awt.Dimension var14 = var10.getPreferredSize(); + boolean var15 = var10.getVerifyInputWhenFocusTarget(); + var0.addKeyListener((java.awt.event.KeyListener)var10); + var0.setRequestFocusEnabled(true); + boolean var19 = var0.getAutoscrolls(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var9); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == false); + + } + + public void test357() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test357"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var6 = var0.getUI(); + java.awt.im.InputMethodRequests var7 = var0.getInputMethodRequests(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + var8.nextFocus(); + var8.updateUI(); + var8.enableInputMethods(true); + var8.setSize((-1), 1); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + var19.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var0.add((java.awt.Component)var8, (java.lang.Object)"SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + java.awt.ComponentOrientation var25 = var8.getComponentOrientation(); + java.beans.VetoableChangeListener[] var26 = var8.getVetoableChangeListeners(); + java.awt.dnd.DropTarget var27 = var8.getDropTarget(); + var8.repaint(3, 499, 400, 1); + java.awt.Toolkit var33 = var8.getToolkit(); + var8.setFocusCycleRoot(true); + java.util.Locale var36 = var8.getLocale(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var25); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertNull(var27); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var33); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var36); + + } + + public void test358() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test358"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var1 = new SpaceWar.SpacePanel(); + java.awt.Color var2 = var1.getBackground(); + SpaceWar.SpacePanel var3 = new SpaceWar.SpacePanel(); + float var4 = var3.getAlignmentX(); + var3.setVisible(false); + var3.nextFocus(); + var3.updateUI(); + var3.enableInputMethods(true); + var0.add((java.awt.Component)var1, (java.lang.Object)true); + java.awt.Image var14 = var1.createImage(1, (-1)); + java.awt.event.MouseListener[] var15 = var1.getMouseListeners(); + java.awt.Color var16 = var1.getBackground(); + boolean var17 = var1.getIgnoreRepaint(); + var1.enable(); + javax.swing.JToolTip var19 = var1.createToolTip(); + int var20 = var1.getY(); + boolean var21 = var1.isOptimizedDrawingEnabled(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var2); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == true); + + } + + public void test359() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test359"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + boolean var5 = javax.swing.JComponent.isLightweightComponent((java.awt.Component)var0); + java.awt.event.MouseWheelListener[] var6 = var0.getMouseWheelListeners(); + var0.transferFocus(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + } + + public void test360() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test360"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + var0.setRequestFocusEnabled(false); + var0.reshape(100, 0, 100, 0); + var0.requestFocus(); + var0.firePropertyChange("hi!", '4', ' '); + java.awt.Point var15 = var0.getLocation(); + java.awt.Dimension var16 = var0.size(); + java.awt.Image var19 = var0.createImage((-1), (-1)); + java.awt.event.ComponentListener[] var20 = var0.getComponentListeners(); + SpaceWar.SpacePanel var21 = new SpaceWar.SpacePanel(); + var21.setName(""); + java.awt.ComponentOrientation var24 = var21.getComponentOrientation(); + var21.firePropertyChange("PanelUI", 1.0f, 0.5f); + int var29 = var0.getComponentZOrder((java.awt.Component)var21); + boolean var31 = var0.areFocusTraversalKeysSet(0); + SpaceWar.SpacePanel var32 = new SpaceWar.SpacePanel(); + java.awt.Color var33 = var32.getBackground(); + var32.repaint(); + java.awt.im.InputMethodRequests var35 = var32.getInputMethodRequests(); + int var36 = var32.countComponents(); + java.awt.event.ComponentListener[] var37 = var32.getComponentListeners(); + var32.removeNotify(); + javax.swing.InputMap var39 = var32.getInputMap(); + int var40 = var32.getDebugGraphicsOptions(); + java.awt.Graphics var41 = var32.getGraphics(); + var32.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", (short)(-1), (short)100); + boolean var46 = var32.isEnabled(); + SpaceWar.SpacePanel var47 = new SpaceWar.SpacePanel(); + var47.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + javax.swing.plaf.PanelUI var52 = var47.getUI(); + boolean var53 = var47.isDisplayable(); + SpaceWar.SpacePanel var54 = new SpaceWar.SpacePanel(); + float var55 = var54.getAlignmentX(); + var54.removeNotify(); + SpaceWar.SpacePanel var57 = new SpaceWar.SpacePanel(); + float var58 = var57.getAlignmentX(); + var57.setVisible(false); + boolean var61 = var57.isDoubleBuffered(); + var57.list(); + float var63 = var57.getAlignmentY(); + java.awt.Insets var64 = var57.getInsets(); + java.awt.Insets var65 = var54.getInsets(var64); + java.awt.Insets var66 = var47.getInsets(var65); + java.awt.Insets var67 = var32.getInsets(var66); + java.awt.Dimension var68 = var32.size(); + var0.setSize(var68); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var29 == (-1)); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var31 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var33); + + // Regression assertion (captures the current behavior of the code) + assertNull(var35); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var36 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var37); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var39); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var40 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var41); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var46 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var52); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var53 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var55 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var58 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var61 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var63 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var64); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var65); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var66); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var67); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var68); + + } + + public void test361() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test361"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + var0.list(); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + float var7 = var6.getAlignmentX(); + var6.setVisible(false); + boolean var10 = var6.isDoubleBuffered(); + java.awt.dnd.DropTarget var11 = var6.getDropTarget(); + var6.show(false); + java.awt.Rectangle var14 = var6.getVisibleRect(); + java.awt.Rectangle var15 = var0.getBounds(var14); + javax.swing.JToolTip var16 = var0.createToolTip(); + java.awt.Graphics var17 = var0.getGraphics(); + var0.setAutoscrolls(false); + boolean var20 = var0.requestFocusInWindow(); + SpaceWar.SpacePanel var21 = new SpaceWar.SpacePanel(); + float var22 = var21.getAlignmentX(); + var21.setVisible(false); + var21.nextFocus(); + var21.reshape((-1), 1, (-1), 10); + var21.disable(); + java.awt.LayoutManager var32 = var21.getLayout(); + java.awt.Container var33 = var21.getParent(); + boolean var34 = var21.isOptimizedDrawingEnabled(); + java.awt.Font var35 = var21.getFont(); + java.awt.FontMetrics var36 = var0.getFontMetrics(var35); + javax.swing.InputMap var37 = var0.getInputMap(); + java.awt.Toolkit var38 = var0.getToolkit(); + javax.swing.InputMap var39 = var0.getInputMap(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var22 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var32); + + // Regression assertion (captures the current behavior of the code) + assertNull(var33); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var34 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var35); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var36); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var37); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var38); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var39); + + } + + public void test362() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test362"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.removeNotify(); + java.awt.dnd.DropTarget var3 = var0.getDropTarget(); + java.awt.Component.BaselineResizeBehavior var4 = var0.getBaselineResizeBehavior(); + var0.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", (-1), 399); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var4); + + } + + public void test363() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test363"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var6 = var0.getUI(); + java.awt.im.InputMethodRequests var7 = var0.getInputMethodRequests(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + var8.nextFocus(); + var8.updateUI(); + var8.enableInputMethods(true); + var8.setSize((-1), 1); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + var19.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var0.add((java.awt.Component)var8, (java.lang.Object)"SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + java.awt.event.KeyListener[] var25 = var0.getKeyListeners(); + var0.reshape(10, 100, 3, 3); + var0.setVerifyInputWhenFocusTarget(false); + SpaceWar.SpacePanel var33 = new SpaceWar.SpacePanel(); + float var34 = var33.getAlignmentX(); + var33.setVisible(false); + var33.nextFocus(); + var33.reshape((-1), 1, (-1), 10); + var33.disable(); + java.awt.LayoutManager var44 = var33.getLayout(); + boolean var47 = var33.contains((-1), 0); + SpaceWar.SpacePanel var48 = new SpaceWar.SpacePanel(); + float var49 = var48.getAlignmentX(); + var48.setVisible(false); + var48.nextFocus(); + var48.updateUI(); + var48.enableInputMethods(true); + var48.setSize((-1), 1); + java.awt.Component var59 = var33.add((java.awt.Component)var48); + SpaceWar.SpacePanel var60 = new SpaceWar.SpacePanel(); + float var61 = var60.getAlignmentX(); + var60.setVisible(false); + var60.nextFocus(); + var60.updateUI(); + var60.enableInputMethods(true); + java.lang.String var68 = var60.toString(); + java.awt.FocusTraversalPolicy var69 = var60.getFocusTraversalPolicy(); + var48.removeKeyListener((java.awt.event.KeyListener)var60); + var48.show(false); + java.awt.Container var73 = var48.getTopLevelAncestor(); + java.awt.LayoutManager var74 = var48.getLayout(); + var0.setNextFocusableComponent((java.awt.Component)var48); + boolean var76 = var0.isOptimizedDrawingEnabled(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var25); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var34 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var44); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var47 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var49 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var59); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var61 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var68 + "' != '" + "SpaceWar.SpacePanel[,0,0,0var68,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"+ "'", var68.equals("SpaceWar.SpacePanel[,0,0,0var68,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]")); + + // Regression assertion (captures the current behavior of the code) + assertNull(var69); + + // Regression assertion (captures the current behavior of the code) + assertNull(var73); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var74); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var76 == true); + + } + + public void test364() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test364"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + var0.show(false); + boolean var8 = var0.isPaintingForPrint(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var15 = var9.getMouseListeners(); + int var16 = var9.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var17 = var9.getInputMethodRequests(); + var0.addKeyListener((java.awt.event.KeyListener)var9); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + float var20 = var19.getAlignmentX(); + var19.setVisible(false); + boolean var23 = var19.isDoubleBuffered(); + var19.list(); + float var25 = var19.getAlignmentY(); + boolean var26 = var9.isFocusCycleRoot((java.awt.Container)var19); + javax.swing.JPopupMenu var27 = var19.getComponentPopupMenu(); + var19.move((-1), 100); + var19.validate(); + SpaceWar.SpacePanel var32 = new SpaceWar.SpacePanel(); + float var33 = var32.getAlignmentX(); + var32.setVisible(false); + SpaceWar.SpacePanel var36 = new SpaceWar.SpacePanel(); + java.awt.Color var37 = var36.getBackground(); + var32.setForeground(var37); + SpaceWar.SpacePanel var39 = new SpaceWar.SpacePanel(); + float var40 = var39.getAlignmentX(); + var39.setVisible(false); + boolean var43 = var39.isDoubleBuffered(); + java.awt.dnd.DropTarget var44 = var39.getDropTarget(); + var39.show(false); + java.awt.Rectangle var47 = var39.getVisibleRect(); + var32.repaint(var47); + java.awt.FocusTraversalPolicy var49 = var32.getFocusTraversalPolicy(); + SpaceWar.SpacePanel var50 = new SpaceWar.SpacePanel(); + float var51 = var50.getAlignmentX(); + var50.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var56 = var50.getUI(); + java.awt.im.InputMethodRequests var57 = var50.getInputMethodRequests(); + SpaceWar.SpacePanel var58 = new SpaceWar.SpacePanel(); + float var59 = var58.getAlignmentX(); + var58.setVisible(false); + var58.nextFocus(); + var58.updateUI(); + var58.enableInputMethods(true); + var58.setSize((-1), 1); + SpaceWar.SpacePanel var69 = new SpaceWar.SpacePanel(); + var69.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var50.add((java.awt.Component)var58, (java.lang.Object)"SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + java.awt.ComponentOrientation var75 = var58.getComponentOrientation(); + java.beans.VetoableChangeListener[] var76 = var58.getVetoableChangeListeners(); + int var77 = var58.getHeight(); + javax.swing.ActionMap var78 = var58.getActionMap(); + var32.setActionMap(var78); + var19.setActionMap(var78); + javax.swing.InputMap var81 = var19.getInputMap(); + java.awt.GraphicsConfiguration var82 = var19.getGraphicsConfiguration(); + javax.swing.JToolTip var83 = var19.createToolTip(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var27); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var33 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var37); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var40 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var43 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var44); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var47); + + // Regression assertion (captures the current behavior of the code) + assertNull(var49); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var51 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var56); + + // Regression assertion (captures the current behavior of the code) + assertNull(var57); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var59 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var75); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var76); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var77 == 1); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var78); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var81); + + // Regression assertion (captures the current behavior of the code) + assertNull(var82); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var83); + + } + + public void test365() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test365"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + SpaceWar.SpacePanel var4 = new SpaceWar.SpacePanel(); + java.awt.Color var5 = var4.getBackground(); + var0.setForeground(var5); + SpaceWar.SpacePanel var7 = new SpaceWar.SpacePanel(); + float var8 = var7.getAlignmentX(); + var7.setVisible(false); + boolean var11 = var7.isDoubleBuffered(); + java.awt.dnd.DropTarget var12 = var7.getDropTarget(); + var7.show(false); + java.awt.Rectangle var15 = var7.getVisibleRect(); + var0.repaint(var15); + java.awt.FocusTraversalPolicy var17 = var0.getFocusTraversalPolicy(); + java.awt.im.InputMethodRequests var18 = var0.getInputMethodRequests(); + var0.layout(); + java.awt.Container var20 = var0.getFocusCycleRootAncestor(); + SpaceWar.SpacePanel var21 = new SpaceWar.SpacePanel(); + float var22 = var21.getAlignmentX(); + var21.setVisible(false); + boolean var25 = var21.isDoubleBuffered(); + var21.list(); + SpaceWar.SpacePanel var27 = new SpaceWar.SpacePanel(); + float var28 = var27.getAlignmentX(); + var27.setVisible(false); + boolean var31 = var27.isDoubleBuffered(); + java.awt.dnd.DropTarget var32 = var27.getDropTarget(); + var27.show(false); + java.awt.Rectangle var35 = var27.getVisibleRect(); + java.awt.Rectangle var36 = var21.getBounds(var35); + javax.swing.JToolTip var37 = var21.createToolTip(); + var21.firePropertyChange("", false, false); + var21.validate(); + SpaceWar.SpacePanel var43 = new SpaceWar.SpacePanel(); + float var44 = var43.getAlignmentX(); + var43.setVisible(false); + boolean var47 = var43.isDoubleBuffered(); + java.awt.dnd.DropTarget var48 = var43.getDropTarget(); + var43.show(false); + boolean var51 = var43.isPaintingForPrint(); + SpaceWar.SpacePanel var52 = new SpaceWar.SpacePanel(); + float var53 = var52.getAlignmentX(); + var52.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var58 = var52.getMouseListeners(); + int var59 = var52.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var60 = var52.getInputMethodRequests(); + var43.addKeyListener((java.awt.event.KeyListener)var52); + var52.repaint(); + java.awt.Point var63 = var52.location(); + java.awt.Component var64 = var21.getComponentAt(var63); + var0.setLocation(var63); + java.beans.VetoableChangeListener[] var66 = var0.getVetoableChangeListeners(); + var0.setFocusTraversalKeysEnabled(true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var22 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var28 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var31 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var32); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var35); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var36); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var37); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var44 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var47 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var48); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var51 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var53 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var58); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var59 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var60); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var63); + + // Regression assertion (captures the current behavior of the code) + assertNull(var64); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var66); + + } + + public void test366() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test366"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + var0.show(false); + boolean var8 = var0.isPaintingForPrint(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var15 = var9.getMouseListeners(); + int var16 = var9.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var17 = var9.getInputMethodRequests(); + var0.addKeyListener((java.awt.event.KeyListener)var9); + boolean var19 = var9.isShowing(); + boolean var20 = var9.isOpaque(); + var9.grabFocus(); + boolean var22 = var9.getAutoscrolls(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var22 == false); + + } + + public void test367() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test367"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.reshape((-1), 1, (-1), 10); + var0.disable(); + boolean var11 = var0.isFocusable(); + SpaceWar.SpacePanel var12 = new SpaceWar.SpacePanel(); + float var13 = var12.getAlignmentX(); + var12.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var18 = var12.getUI(); + java.awt.im.InputMethodRequests var19 = var12.getInputMethodRequests(); + SpaceWar.SpacePanel var20 = new SpaceWar.SpacePanel(); + float var21 = var20.getAlignmentX(); + var20.setVisible(false); + var20.nextFocus(); + var20.updateUI(); + var20.enableInputMethods(true); + var20.setSize((-1), 1); + SpaceWar.SpacePanel var31 = new SpaceWar.SpacePanel(); + var31.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var12.add((java.awt.Component)var20, (java.lang.Object)"SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + java.awt.event.KeyListener[] var37 = var12.getKeyListeners(); + java.awt.FocusTraversalPolicy var38 = var12.getFocusTraversalPolicy(); + SpaceWar.SpacePanel var39 = new SpaceWar.SpacePanel(); + var39.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + java.awt.Toolkit var44 = var39.getToolkit(); + var0.add((java.awt.Component)var12, (java.lang.Object)var39); + java.awt.GraphicsConfiguration var46 = var0.getGraphicsConfiguration(); + boolean var47 = var0.isFontSet(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var37); + + // Regression assertion (captures the current behavior of the code) + assertNull(var38); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var44); + + // Regression assertion (captures the current behavior of the code) + assertNull(var46); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var47 == true); + + } + + public void test368() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test368"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + SpaceWar.SpacePanel var2 = new SpaceWar.SpacePanel(); + float var3 = var2.getAlignmentX(); + var2.setVisible(false); + java.awt.Dimension var6 = var2.getPreferredSize(); + boolean var7 = var2.getVerifyInputWhenFocusTarget(); + java.awt.Component var10 = var2.findComponentAt(10, 1); + var0.addKeyListener((java.awt.event.KeyListener)var2); + var2.repaint(100, (-1), (-1), 1); + java.awt.image.ColorModel var17 = var2.getColorModel(); + java.awt.event.MouseWheelListener[] var18 = var2.getMouseWheelListeners(); + var2.repaint(); + int var20 = var2.getHeight(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == 0); + + } + + public void test369() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test369"); + + + SpaceWar.Text var4 = new SpaceWar.Text(506.9915098063617d, 75.48643960578549d, 0L, "SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=1.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + boolean var5 = var4.update(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == false); + + } + + public void test370() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test370"); + + + SpaceWar.Player var0 = new SpaceWar.Player(); + int var1 = var0.getR(); + var0.setRigth(false); + var0.setLife(100); + var0.setDown(false); + var0.setFiring(true); + var0.increasePower(400); + int var12 = var0.getLives(); + var0.setDown(false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 25); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == 100); + + } + + public void test371() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test371"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + boolean var6 = var0.isFocusCycleRoot(); + var0.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", 100, 0); + SpaceWar.SpacePanel var11 = new SpaceWar.SpacePanel(); + float var12 = var11.getAlignmentX(); + var11.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var17 = var11.getUI(); + var0.add((java.awt.Component)var11, (java.lang.Object)(short)0); + boolean var20 = var11.isPreferredSizeSet(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == true); + + } + + public void test372() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test372"); + + + SpaceWar.Player var0 = new SpaceWar.Player(); + var0.increasePower(25); + int var3 = var0.getR(); + int var4 = var0.getScore(); + var0.loseLife(); + boolean var6 = var0.isRecovering(); + var0.setFiring(false); + int var9 = var0.getScore(); + var0.setLeft(true); + var0.setScore(499); + var0.setUp(false); + int var16 = var0.getX(); + int var17 = var0.getLives(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == 25); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 400); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == 2); + + } + + public void test373() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test373"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + var0.show(false); + boolean var8 = var0.isPaintingForPrint(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var15 = var9.getMouseListeners(); + int var16 = var9.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var17 = var9.getInputMethodRequests(); + var0.addKeyListener((java.awt.event.KeyListener)var9); + var9.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", (-1.0f), 1.0f); + boolean var23 = var9.getIgnoreRepaint(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == false); + + } + + public void test374() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test374"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + float var7 = var6.getAlignmentX(); + var6.setVisible(false); + java.awt.Dimension var10 = var6.getPreferredSize(); + var0.setMaximumSize(var10); + boolean var12 = var0.getVerifyInputWhenFocusTarget(); + int var13 = var0.getX(); + java.awt.ComponentOrientation var14 = var0.getComponentOrientation(); + java.awt.Dimension var15 = var0.getPreferredSize(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + } + + public void test375() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test375"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + var0.setRequestFocusEnabled(false); + var0.reshape(100, 0, 100, 0); + var0.requestFocus(); + var0.firePropertyChange("hi!", '4', ' '); + boolean var15 = var0.requestFocusInWindow(); + var0.show(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == false); + + } + + public void test376() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test376"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.requestFocus(); + boolean var6 = var0.isBackgroundSet(); + SpaceWar.SpacePanel var7 = new SpaceWar.SpacePanel(); + java.awt.Color var8 = var7.getBackground(); + var7.repaint(); + var7.setRequestFocusEnabled(false); + var7.reshape(100, 0, 100, 0); + SpaceWar.SpacePanel var17 = new SpaceWar.SpacePanel(); + float var18 = var17.getAlignmentX(); + var17.setVisible(false); + var17.setInheritsPopupMenu(false); + boolean var23 = var17.isDoubleBuffered(); + SpaceWar.SpacePanel var24 = new SpaceWar.SpacePanel(); + float var25 = var24.getAlignmentX(); + var24.setVisible(false); + var24.nextFocus(); + var24.reshape((-1), 1, (-1), 10); + var24.disable(); + java.awt.LayoutManager var35 = var24.getLayout(); + var17.setLayout(var35); + var0.add((java.awt.Component)var7, (java.lang.Object)var35); + SpaceWar.SpacePanel var38 = new SpaceWar.SpacePanel(); + float var39 = var38.getAlignmentX(); + var38.setVisible(false); + java.awt.Dimension var42 = var38.getPreferredSize(); + java.awt.Toolkit var43 = var38.getToolkit(); + boolean var44 = var38.isFocusable(); + javax.swing.KeyStroke[] var45 = var38.getRegisteredKeyStrokes(); + SpaceWar.SpacePanel var46 = new SpaceWar.SpacePanel(); + float var47 = var46.getAlignmentX(); + SpaceWar.SpacePanel var48 = new SpaceWar.SpacePanel(); + float var49 = var48.getAlignmentX(); + var48.setVisible(false); + java.awt.Dimension var52 = var48.getPreferredSize(); + boolean var53 = var48.getVerifyInputWhenFocusTarget(); + java.awt.Component var56 = var48.findComponentAt(10, 1); + var46.addKeyListener((java.awt.event.KeyListener)var48); + var48.repaint(100, (-1), (-1), 1); + boolean var63 = var38.isAncestorOf((java.awt.Component)var48); + var38.setFocusable(false); + boolean var66 = var7.isAncestorOf((java.awt.Component)var38); + boolean var67 = var7.isFocusTraversalPolicySet(); + SpaceWar.SpacePanel var68 = new SpaceWar.SpacePanel(); + float var69 = var68.getAlignmentX(); + var68.setVisible(false); + boolean var72 = var68.isDoubleBuffered(); + var68.list(); + float var74 = var68.getAlignmentY(); + boolean var75 = var68.isOpaque(); + var68.nextFocus(); + java.awt.Component var77 = var68.getNextFocusableComponent(); + var7.remove((java.awt.Component)var68); + int var79 = var7.getHeight(); + boolean var80 = var7.isFocusTraversable(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var35); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var39 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var42); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var43); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var44 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var45); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var47 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var49 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var52); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var53 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var56); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var63 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var66 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var67 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var69 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var72 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var74 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var75 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var77); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var79 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var80 == true); + + } + + public void test377() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test377"); + + + SpaceWar.Player var0 = new SpaceWar.Player(); + boolean var1 = var0.isRecovering(); + int var2 = var0.getRequiredPower(); + var0.setDown(false); + boolean var5 = var0.isDead(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var2 == 1); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == false); + + } + + public void test378() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test378"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + var0.setName(""); + int var3 = var0.getX(); + SpaceWar.SpacePanel var4 = new SpaceWar.SpacePanel(); + float var5 = var4.getAlignmentX(); + var4.setVisible(false); + var4.nextFocus(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.setVisible(false); + SpaceWar.SpacePanel var13 = new SpaceWar.SpacePanel(); + java.awt.Color var14 = var13.getBackground(); + var9.setForeground(var14); + var4.setBackground(var14); + var0.setBackground(var14); + boolean var18 = var0.isFocusTraversable(); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + var19.setName(""); + int var22 = var19.getX(); + SpaceWar.SpacePanel var23 = new SpaceWar.SpacePanel(); + float var24 = var23.getAlignmentX(); + var23.setVisible(false); + var23.nextFocus(); + SpaceWar.SpacePanel var28 = new SpaceWar.SpacePanel(); + float var29 = var28.getAlignmentX(); + var28.setVisible(false); + SpaceWar.SpacePanel var32 = new SpaceWar.SpacePanel(); + java.awt.Color var33 = var32.getBackground(); + var28.setForeground(var33); + var23.setBackground(var33); + var19.setBackground(var33); + var0.setBackground(var33); + java.awt.Container var38 = var0.getParent(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var22 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var24 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var29 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var33); + + // Regression assertion (captures the current behavior of the code) + assertNull(var38); + + } + + public void test379() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test379"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + SpaceWar.SpacePanel var2 = new SpaceWar.SpacePanel(); + float var3 = var2.getAlignmentX(); + var2.setVisible(false); + java.awt.Dimension var6 = var2.getPreferredSize(); + boolean var7 = var2.getVerifyInputWhenFocusTarget(); + java.awt.Component var10 = var2.findComponentAt(10, 1); + var0.addKeyListener((java.awt.event.KeyListener)var2); + java.awt.Cursor var12 = var0.getCursor(); + java.awt.Dimension var13 = var0.getMinimumSize(); + var0.setEnabled(true); + boolean var16 = var0.isFocusCycleRoot(); + javax.swing.InputVerifier var17 = var0.getInputVerifier(); + javax.swing.InputMap var19 = var0.getInputMap(0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var19); + + } + + public void test380() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test380"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + boolean var6 = var0.isFocusCycleRoot(); + SpaceWar.SpacePanel var7 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + java.awt.Color var9 = var8.getBackground(); + SpaceWar.SpacePanel var10 = new SpaceWar.SpacePanel(); + float var11 = var10.getAlignmentX(); + var10.setVisible(false); + var10.nextFocus(); + var10.updateUI(); + var10.enableInputMethods(true); + var7.add((java.awt.Component)var8, (java.lang.Object)true); + java.awt.Dimension var19 = var8.getPreferredSize(); + var0.setSize(var19); + var0.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", (-1), 10); + var0.setLocation(10, 100); + SpaceWar.SpacePanel var28 = new SpaceWar.SpacePanel(); + float var29 = var28.getAlignmentX(); + var28.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var34 = var28.getMouseListeners(); + int var35 = var28.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var36 = var28.getInputMethodRequests(); + var28.removeNotify(); + var28.enable(); + SpaceWar.SpacePanel var39 = new SpaceWar.SpacePanel(); + java.awt.Color var40 = var39.getBackground(); + boolean var43 = var39.inside(0, (-1)); + var39.transferFocusUpCycle(); + java.lang.String var45 = var39.getName(); + boolean var46 = var28.isFocusCycleRoot((java.awt.Container)var39); + java.awt.Dimension var47 = var28.getMinimumSize(); + var0.resize(var47); + var0.setAlignmentX((-1.0f)); + SpaceWar.SpacePanel var52 = new SpaceWar.SpacePanel(); + float var53 = var52.getAlignmentX(); + var52.setVisible(false); + var52.nextFocus(); + var52.reshape((-1), 1, (-1), 10); + var52.disable(); + java.awt.LayoutManager var63 = var52.getLayout(); + java.awt.Container var64 = var52.getParent(); + boolean var65 = var52.isOptimizedDrawingEnabled(); + var52.grabFocus(); + int var67 = var52.getHeight(); + java.util.Set var69 = var52.getFocusTraversalKeys(3); + // The following exception was thrown during execution. + // This behavior will recorded for regression testing. + try { + var0.setFocusTraversalKeys(100, var69); + fail("Expected exception of type java.lang.IllegalArgumentException"); + } catch (java.lang.IllegalArgumentException e) { + // Expected exception. + } + + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var9); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var29 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var34); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var35 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var36); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var40); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var43 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var45); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var46 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var47); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var53 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var63); + + // Regression assertion (captures the current behavior of the code) + assertNull(var64); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var65 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var67 == 10); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var69); + + } + + public void test381() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test381"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var6 = var0.getUI(); + java.awt.im.InputMethodRequests var7 = var0.getInputMethodRequests(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + var8.nextFocus(); + var8.updateUI(); + var8.enableInputMethods(true); + var8.setSize((-1), 1); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + var19.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var0.add((java.awt.Component)var8, (java.lang.Object)"SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + java.awt.event.KeyListener[] var25 = var0.getKeyListeners(); + var0.reshape(10, 100, 3, 3); + javax.accessibility.AccessibleContext var31 = var0.getAccessibleContext(); + java.awt.Component.BaselineResizeBehavior var32 = var0.getBaselineResizeBehavior(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var25); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var31); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var32); + + } + + public void test382() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test382"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.setInheritsPopupMenu(false); + var0.move(10, 10); + var0.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + java.awt.Rectangle var13 = var0.bounds(); + SpaceWar.SpacePanel var14 = new SpaceWar.SpacePanel(); + float var15 = var14.getAlignmentX(); + var14.setVisible(false); + var14.nextFocus(); + var14.reshape((-1), 1, (-1), 10); + var14.disable(); + java.awt.LayoutManager var25 = var14.getLayout(); + boolean var28 = var14.contains((-1), 0); + SpaceWar.SpacePanel var29 = new SpaceWar.SpacePanel(); + float var30 = var29.getAlignmentX(); + var29.setVisible(false); + var29.nextFocus(); + var29.updateUI(); + var29.enableInputMethods(true); + var29.setSize((-1), 1); + java.awt.Component var40 = var14.add((java.awt.Component)var29); + SpaceWar.SpacePanel var41 = new SpaceWar.SpacePanel(); + float var42 = var41.getAlignmentX(); + var41.setVisible(false); + var41.nextFocus(); + var41.updateUI(); + var41.enableInputMethods(true); + java.lang.String var49 = var41.toString(); + java.awt.FocusTraversalPolicy var50 = var41.getFocusTraversalPolicy(); + var29.removeKeyListener((java.awt.event.KeyListener)var41); + var29.show(false); + java.awt.Container var54 = var29.getTopLevelAncestor(); + java.awt.LayoutManager var55 = var29.getLayout(); + var0.setLayout(var55); + SpaceWar.SpacePanel var57 = new SpaceWar.SpacePanel(); + float var58 = var57.getAlignmentX(); + var57.setVisible(false); + boolean var61 = var57.isDoubleBuffered(); + var57.list(); + SpaceWar.SpacePanel var63 = new SpaceWar.SpacePanel(); + float var64 = var63.getAlignmentX(); + var63.setVisible(false); + boolean var67 = var63.isDoubleBuffered(); + java.awt.dnd.DropTarget var68 = var63.getDropTarget(); + var63.show(false); + java.awt.Rectangle var71 = var63.getVisibleRect(); + java.awt.image.BufferedImage var73 = var63.loadImg("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + boolean var74 = var57.isAncestorOf((java.awt.Component)var63); + javax.swing.InputVerifier var75 = var63.getInputVerifier(); + java.awt.Dimension var76 = var63.minimumSize(); + var0.setMinimumSize(var76); + var0.disable(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var25); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var28 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var30 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var40); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var42 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var49 + "' != '" + "SpaceWar.SpacePanel[,0,0,0var49,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"+ "'", var49.equals("SpaceWar.SpacePanel[,0,0,0var49,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]")); + + // Regression assertion (captures the current behavior of the code) + assertNull(var50); + + // Regression assertion (captures the current behavior of the code) + assertNull(var54); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var55); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var58 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var61 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var64 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var67 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var68); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var71); + + // Regression assertion (captures the current behavior of the code) + assertNull(var73); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var74 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var75); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var76); + + } + + public void test383() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test383"); + + + SpaceWar.Enemy var2 = new SpaceWar.Enemy(0, 100); + boolean var3 = var2.isDead(); + var2.hit(); + double var5 = var2.getX(); + int var6 = var2.getR(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == 339.8923933063379d); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == 0); + + } + + public void test384() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test384"); + + + SpaceWar.Player var0 = new SpaceWar.Player(); + int var1 = var0.getR(); + var0.setUp(false); + int var4 = var0.getLives(); + var0.setScore(0); + int var7 = var0.getPowerLevel(); + boolean var8 = var0.isRecovering(); + var0.setDown(false); + java.awt.image.BufferedImage var12 = var0.loadImg("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=10,height=10]]"); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 25); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 3); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var12); + + } + + public void test385() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test385"); + + + SpaceWar.Player var0 = new SpaceWar.Player(); + boolean var1 = var0.isRecovering(); + int var2 = var0.getRequiredPower(); + var0.setDown(false); + var0.setRigth(false); + var0.setRigth(true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var2 == 1); + + } + + public void test386() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test386"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + var0.setRequestFocusEnabled(false); + var0.reshape(100, 0, 100, 0); + var0.requestFocus(); + java.awt.Rectangle var11 = var0.getVisibleRect(); + java.awt.Rectangle var12 = var0.getBounds(); + java.awt.im.InputMethodRequests var13 = var0.getInputMethodRequests(); + boolean var14 = var0.requestFocusInWindow(); + java.awt.Point var16 = var0.getMousePosition(false); + var0.setDebugGraphicsOptions(1); + java.awt.Graphics var19 = var0.getGraphics(); + boolean var20 = var0.isFontSet(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == true); + + } + + public void test387() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test387"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + java.awt.Dimension var4 = var0.getPreferredSize(); + boolean var5 = var0.getVerifyInputWhenFocusTarget(); + java.awt.Component var8 = var0.findComponentAt(10, 1); + boolean var9 = var0.requestDefaultFocus(); + java.awt.Insets var10 = var0.getInsets(); + var0.setDoubleBuffered(false); + java.awt.Toolkit var13 = var0.getToolkit(); + java.awt.Dimension var14 = var0.getMinimumSize(); + java.lang.String var15 = var0.toString(); + var0.disable(); + java.awt.Rectangle var17 = var0.getBounds(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var4); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var15 + "' != '" + "SpaceWar.SpacePanel[,0,0,0var15,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=8,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"+ "'", var15.equals("SpaceWar.SpacePanel[,0,0,0var15,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=8,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]")); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var17); + + } + + public void test388() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test388"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.reshape((-1), 1, (-1), 10); + var0.disable(); + boolean var11 = var0.isFocusable(); + SpaceWar.SpacePanel var12 = new SpaceWar.SpacePanel(); + float var13 = var12.getAlignmentX(); + var12.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var18 = var12.getUI(); + java.awt.im.InputMethodRequests var19 = var12.getInputMethodRequests(); + SpaceWar.SpacePanel var20 = new SpaceWar.SpacePanel(); + float var21 = var20.getAlignmentX(); + var20.setVisible(false); + var20.nextFocus(); + var20.updateUI(); + var20.enableInputMethods(true); + var20.setSize((-1), 1); + SpaceWar.SpacePanel var31 = new SpaceWar.SpacePanel(); + var31.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var12.add((java.awt.Component)var20, (java.lang.Object)"SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + java.awt.event.KeyListener[] var37 = var12.getKeyListeners(); + java.awt.FocusTraversalPolicy var38 = var12.getFocusTraversalPolicy(); + SpaceWar.SpacePanel var39 = new SpaceWar.SpacePanel(); + var39.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + java.awt.Toolkit var44 = var39.getToolkit(); + var0.add((java.awt.Component)var12, (java.lang.Object)var39); + var12.transferFocusDownCycle(); + SpaceWar.SpacePanel var47 = new SpaceWar.SpacePanel(); + java.awt.Color var48 = var47.getBackground(); + var47.repaint(); + java.awt.im.InputMethodRequests var50 = var47.getInputMethodRequests(); + var47.setDoubleBuffered(true); + var47.setInheritsPopupMenu(false); + javax.swing.InputMap var55 = var47.getInputMap(); + var47.doLayout(); + java.awt.LayoutManager var57 = var47.getLayout(); + var12.setLayout(var57); + SpaceWar.SpacePanel var59 = new SpaceWar.SpacePanel(); + float var60 = var59.getAlignmentX(); + var59.setVisible(false); + var59.setInheritsPopupMenu(false); + var59.setFocusTraversalPolicyProvider(true); + SpaceWar.SpacePanel var67 = new SpaceWar.SpacePanel(); + float var68 = var67.getAlignmentX(); + var67.setVisible(false); + var67.nextFocus(); + var67.updateUI(); + var67.enableInputMethods(true); + java.lang.String var75 = var67.toString(); + SpaceWar.SpacePanel var76 = new SpaceWar.SpacePanel(); + float var77 = var76.getAlignmentX(); + var76.setVisible(false); + boolean var80 = var76.isDoubleBuffered(); + java.awt.dnd.DropTarget var81 = var76.getDropTarget(); + var76.show(false); + java.awt.Rectangle var84 = var76.getVisibleRect(); + java.awt.image.BufferedImage var86 = var76.loadImg("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + java.awt.ComponentOrientation var87 = var76.getComponentOrientation(); + boolean var88 = var76.isPaintingTile(); + boolean var89 = var76.isOptimizedDrawingEnabled(); + int var90 = var67.getComponentZOrder((java.awt.Component)var76); + javax.swing.InputMap var91 = var76.getInputMap(); + java.awt.Font var92 = var76.getFont(); + java.awt.FontMetrics var93 = var59.getFontMetrics(var92); + var12.setFont(var92); + java.awt.Component[] var95 = var12.getComponents(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var37); + + // Regression assertion (captures the current behavior of the code) + assertNull(var38); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var44); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var48); + + // Regression assertion (captures the current behavior of the code) + assertNull(var50); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var55); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var57); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var60 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var68 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var75 + "' != '" + "SpaceWar.SpacePanel[,0,0,0var75,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"+ "'", var75.equals("SpaceWar.SpacePanel[,0,0,0var75,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]")); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var77 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var80 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var81); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var84); + + // Regression assertion (captures the current behavior of the code) + assertNull(var86); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var87); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var88 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var89 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var90 == (-1)); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var91); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var92); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var93); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var95); + + } + + public void test389() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test389"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + javax.swing.event.AncestorListener[] var1 = var0.getAncestorListeners(); + var0.setOpaque(false); + var0.setEnabled(false); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + float var7 = var6.getAlignmentX(); + var6.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var12 = var6.getUI(); + java.awt.im.InputMethodRequests var13 = var6.getInputMethodRequests(); + SpaceWar.SpacePanel var14 = new SpaceWar.SpacePanel(); + float var15 = var14.getAlignmentX(); + var14.setVisible(false); + var14.nextFocus(); + var14.updateUI(); + var14.enableInputMethods(true); + var14.setSize((-1), 1); + SpaceWar.SpacePanel var25 = new SpaceWar.SpacePanel(); + var25.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var6.add((java.awt.Component)var14, (java.lang.Object)"SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + java.awt.ComponentOrientation var31 = var14.getComponentOrientation(); + java.beans.VetoableChangeListener[] var32 = var14.getVetoableChangeListeners(); + int var33 = var14.getHeight(); + var14.enable(true); + java.awt.Component var36 = var14.getNextFocusableComponent(); + java.awt.Point var37 = var14.getMousePosition(); + java.awt.LayoutManager var38 = var14.getLayout(); + var0.setLayout(var38); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var31); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var32); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var33 == 1); + + // Regression assertion (captures the current behavior of the code) + assertNull(var36); + + // Regression assertion (captures the current behavior of the code) + assertNull(var37); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var38); + + } + + public void test390() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test390"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.reshape((-1), 1, (-1), 10); + var0.disable(); + java.awt.LayoutManager var11 = var0.getLayout(); + java.awt.Container var12 = var0.getParent(); + java.lang.String var13 = var0.getUIClassID(); + var0.setVerifyInputWhenFocusTarget(true); + boolean var16 = var0.isRequestFocusEnabled(); + javax.swing.ActionMap var17 = var0.getActionMap(); + boolean var18 = var0.isFocusTraversable(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var13 + "' != '" + "PanelUI"+ "'", var13.equals("PanelUI")); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == true); + + } + + public void test391() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test391"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var6 = var0.getUI(); + java.awt.im.InputMethodRequests var7 = var0.getInputMethodRequests(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + var8.nextFocus(); + var8.updateUI(); + var8.enableInputMethods(true); + var8.setSize((-1), 1); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + var19.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var0.add((java.awt.Component)var8, (java.lang.Object)"SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + var0.setAutoscrolls(false); + java.awt.event.InputMethodListener[] var27 = var0.getInputMethodListeners(); + var0.paintImmediately(0, 2, 400, 3); + var0.firePropertyChange("hi!", 19.998476951563912d, 282.8681995802876d); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var27); + + } + + public void test392() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test392"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + boolean var2 = var0.hasFocus(); + SpaceWar.SpacePanel var3 = new SpaceWar.SpacePanel(); + float var4 = var3.getAlignmentX(); + var3.setVisible(false); + var3.nextFocus(); + var3.reshape((-1), 1, (-1), 10); + var3.disable(); + java.awt.LayoutManager var14 = var3.getLayout(); + var3.setVisible(false); + var0.remove((java.awt.Component)var3); + var3.repaint(); + var3.repaint(); + boolean var20 = var3.isRequestFocusEnabled(); + SpaceWar.SpacePanel var21 = new SpaceWar.SpacePanel(); + float var22 = var21.getAlignmentX(); + var21.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var27 = new SpaceWar.SpacePanel(); + float var28 = var27.getAlignmentX(); + var27.setVisible(false); + java.awt.Dimension var31 = var27.getPreferredSize(); + var21.setMaximumSize(var31); + boolean var33 = var21.getVerifyInputWhenFocusTarget(); + var21.transferFocusUpCycle(); + java.awt.Point var35 = var21.location(); + java.awt.Component var36 = var3.getComponentAt(var35); + java.awt.dnd.DropTarget var37 = var3.getDropTarget(); + var3.transferFocusDownCycle(); + SpaceWar.SpacePanel var39 = new SpaceWar.SpacePanel(); + java.awt.Color var40 = var39.getBackground(); + var39.repaint(); + java.awt.im.InputMethodRequests var42 = var39.getInputMethodRequests(); + int var43 = var39.countComponents(); + java.awt.event.ComponentListener[] var44 = var39.getComponentListeners(); + var39.removeNotify(); + javax.swing.InputMap var46 = var39.getInputMap(); + int var47 = var39.getDebugGraphicsOptions(); + java.awt.Rectangle var48 = var39.getBounds(); + var3.setBounds(var48); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var2 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var22 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var28 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var31); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var33 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var35); + + // Regression assertion (captures the current behavior of the code) + assertNull(var36); + + // Regression assertion (captures the current behavior of the code) + assertNull(var37); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var40); + + // Regression assertion (captures the current behavior of the code) + assertNull(var42); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var43 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var44); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var46); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var47 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var48); + + } + + public void test393() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test393"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + SpaceWar.SpacePanel var5 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + java.awt.Color var7 = var6.getBackground(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + var8.nextFocus(); + var8.updateUI(); + var8.enableInputMethods(true); + var5.add((java.awt.Component)var6, (java.lang.Object)true); + java.awt.Dimension var17 = var6.getPreferredSize(); + var0.setMaximumSize(var17); + var0.invalidate(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var17); + + } + + public void test394() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test394"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + var0.list(); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + float var7 = var6.getAlignmentX(); + var6.setVisible(false); + boolean var10 = var6.isDoubleBuffered(); + java.awt.dnd.DropTarget var11 = var6.getDropTarget(); + var6.show(false); + java.awt.Rectangle var14 = var6.getVisibleRect(); + java.awt.Rectangle var15 = var0.getBounds(var14); + javax.swing.JToolTip var16 = var0.createToolTip(); + java.awt.Graphics var17 = var0.getGraphics(); + float var18 = var0.getAlignmentY(); + java.awt.peer.ComponentPeer var19 = var0.getPeer(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNull(var19); + + } + + public void test395() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test395"); + + + SpaceWar.Player var0 = new SpaceWar.Player(); + int var1 = var0.getR(); + var0.setRigth(false); + int var4 = var0.getY(); + var0.increasePower(499); + java.awt.image.BufferedImage var8 = var0.loadImg("SpaceWar.SpacePanel[,0,0,0x0,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + boolean var9 = var0.isRecovering(); + int var10 = var0.getPower(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 25); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 500); + + // Regression assertion (captures the current behavior of the code) + assertNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 498); + + } + + public void test396() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test396"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + java.awt.im.InputMethodRequests var3 = var0.getInputMethodRequests(); + var0.setDoubleBuffered(true); + var0.setInheritsPopupMenu(false); + javax.swing.InputMap var8 = var0.getInputMap(); + var0.doLayout(); + var0.setFocusCycleRoot(true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var8); + + } + + public void test397() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test397"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.repaint(1L); + SpaceWar.SpacePanel var7 = new SpaceWar.SpacePanel(); + float var8 = var7.getAlignmentX(); + var7.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var13 = new SpaceWar.SpacePanel(); + float var14 = var13.getAlignmentX(); + var13.setVisible(false); + java.awt.Dimension var17 = var13.getPreferredSize(); + var7.setMaximumSize(var17); + var0.setPreferredSize(var17); + java.awt.Container var20 = var0.getFocusCycleRootAncestor(); + boolean var21 = var0.isDoubleBuffered(); + java.beans.PropertyChangeListener[] var22 = var0.getPropertyChangeListeners(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var22); + + } + + public void test398() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test398"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + java.awt.im.InputMethodRequests var3 = var0.getInputMethodRequests(); + var0.setDoubleBuffered(true); + var0.setInheritsPopupMenu(false); + javax.swing.plaf.PanelUI var8 = var0.getUI(); + java.util.Set var10 = var0.getFocusTraversalKeys(3); + var0.requestFocus(); + var0.setLocation(0, 24); + boolean var17 = var0.inside(24, 3); + java.awt.Dimension var18 = var0.size(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var18); + + } + + public void test399() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test399"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + java.awt.Dimension var4 = var0.getPreferredSize(); + java.awt.Toolkit var5 = var0.getToolkit(); + boolean var6 = var0.isFocusable(); + javax.swing.KeyStroke[] var7 = var0.getRegisteredKeyStrokes(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + var8.nextFocus(); + SpaceWar.SpacePanel var13 = new SpaceWar.SpacePanel(); + float var14 = var13.getAlignmentX(); + var13.setVisible(false); + SpaceWar.SpacePanel var17 = new SpaceWar.SpacePanel(); + java.awt.Color var18 = var17.getBackground(); + var13.setForeground(var18); + var8.setBackground(var18); + var0.setBackground(var18); + SpaceWar.SpacePanel var22 = new SpaceWar.SpacePanel(); + float var23 = var22.getAlignmentX(); + var22.setVisible(false); + boolean var26 = var22.isDoubleBuffered(); + var22.list(); + var22.setAutoscrolls(false); + var0.removeKeyListener((java.awt.event.KeyListener)var22); + java.awt.event.MouseListener[] var31 = var22.getMouseListeners(); + java.awt.LayoutManager var32 = var22.getLayout(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var4); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var31); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var32); + + } + + public void test400() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test400"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var1 = new SpaceWar.SpacePanel(); + java.awt.Color var2 = var1.getBackground(); + SpaceWar.SpacePanel var3 = new SpaceWar.SpacePanel(); + float var4 = var3.getAlignmentX(); + var3.setVisible(false); + var3.nextFocus(); + var3.updateUI(); + var3.enableInputMethods(true); + var0.add((java.awt.Component)var1, (java.lang.Object)true); + boolean var12 = var0.isMinimumSizeSet(); + java.awt.event.HierarchyListener[] var13 = var0.getHierarchyListeners(); + SpaceWar.SpacePanel var14 = new SpaceWar.SpacePanel(); + float var15 = var14.getAlignmentX(); + var14.setVisible(false); + SpaceWar.SpacePanel var18 = new SpaceWar.SpacePanel(); + java.awt.Color var19 = var18.getBackground(); + var14.setForeground(var19); + SpaceWar.SpacePanel var21 = new SpaceWar.SpacePanel(); + float var22 = var21.getAlignmentX(); + var21.setVisible(false); + boolean var25 = var21.isDoubleBuffered(); + java.awt.dnd.DropTarget var26 = var21.getDropTarget(); + var21.show(false); + java.awt.Rectangle var29 = var21.getVisibleRect(); + var14.repaint(var29); + java.awt.FocusTraversalPolicy var31 = var14.getFocusTraversalPolicy(); + java.awt.im.InputMethodRequests var32 = var14.getInputMethodRequests(); + var14.layout(); + boolean var34 = var14.isFocusTraversalPolicyProvider(); + java.lang.Object var35 = var0.getClientProperty((java.lang.Object)var34); + java.awt.Dimension var36 = var0.getSize(); + boolean var37 = var0.isFocusTraversable(); + SpaceWar.SpacePanel var38 = new SpaceWar.SpacePanel(); + float var39 = var38.getAlignmentX(); + var38.setVisible(false); + var38.nextFocus(); + var38.updateUI(); + var38.enableInputMethods(true); + var38.resetKeyboardActions(); + var0.removeKeyListener((java.awt.event.KeyListener)var38); + java.util.Locale var48 = var38.getLocale(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var2); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var22 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var29); + + // Regression assertion (captures the current behavior of the code) + assertNull(var31); + + // Regression assertion (captures the current behavior of the code) + assertNull(var32); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var34 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var35); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var36); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var39 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var48); + + } + + public void test401() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test401"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + float var7 = var6.getAlignmentX(); + var6.setVisible(false); + java.awt.Dimension var10 = var6.getPreferredSize(); + var0.setMaximumSize(var10); + boolean var12 = var0.getVerifyInputWhenFocusTarget(); + int var13 = var0.getX(); + java.awt.Rectangle var14 = var0.bounds(); + SpaceWar.SpacePanel var15 = new SpaceWar.SpacePanel(); + java.awt.Color var16 = var15.getBackground(); + var15.repaint(); + java.awt.im.InputMethodRequests var18 = var15.getInputMethodRequests(); + int var19 = var15.countComponents(); + java.awt.event.ComponentListener[] var20 = var15.getComponentListeners(); + var15.removeNotify(); + javax.swing.InputMap var22 = var15.getInputMap(); + int var23 = var15.getDebugGraphicsOptions(); + var0.addKeyListener((java.awt.event.KeyListener)var15); + java.awt.Color var25 = var15.getForeground(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var25); + + } + + public void test402() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test402"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + boolean var4 = var0.inside(0, (-1)); + var0.transferFocusUpCycle(); + java.awt.Container var6 = var0.getParent(); + boolean var7 = var0.isMaximumSizeSet(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + java.awt.Color var10 = var9.getBackground(); + SpaceWar.SpacePanel var11 = new SpaceWar.SpacePanel(); + float var12 = var11.getAlignmentX(); + var11.setVisible(false); + var11.nextFocus(); + var11.updateUI(); + var11.enableInputMethods(true); + var8.add((java.awt.Component)var9, (java.lang.Object)true); + boolean var21 = var9.areFocusTraversalKeysSet(0); + SpaceWar.SpacePanel var22 = new SpaceWar.SpacePanel(); + float var23 = var22.getAlignmentX(); + var22.setVisible(false); + boolean var26 = var22.isDoubleBuffered(); + java.awt.dnd.DropTarget var27 = var22.getDropTarget(); + var22.show(false); + java.awt.Rectangle var30 = var22.getVisibleRect(); + var9.setBounds(var30); + var0.setBounds(var30); + int var33 = var0.getHeight(); + var0.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", 559.7240852144217d, 509.27513824562607d); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var27); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var30); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var33 == 0); + + } + + public void test403() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test403"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var6 = var0.getMouseListeners(); + int var7 = var0.getDebugGraphicsOptions(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + boolean var12 = var8.isDoubleBuffered(); + java.awt.dnd.DropTarget var13 = var8.getDropTarget(); + var8.show(false); + java.awt.Rectangle var16 = var8.getVisibleRect(); + var0.paintImmediately(var16); + java.awt.Rectangle var18 = var0.getBounds(); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + float var20 = var19.getAlignmentX(); + var19.setVisible(false); + boolean var23 = var19.isDoubleBuffered(); + java.awt.dnd.DropTarget var24 = var19.getDropTarget(); + var19.show(false); + boolean var27 = var19.isPaintingForPrint(); + SpaceWar.SpacePanel var28 = new SpaceWar.SpacePanel(); + float var29 = var28.getAlignmentX(); + var28.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var34 = var28.getMouseListeners(); + int var35 = var28.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var36 = var28.getInputMethodRequests(); + var19.addKeyListener((java.awt.event.KeyListener)var28); + SpaceWar.SpacePanel var38 = new SpaceWar.SpacePanel(); + float var39 = var38.getAlignmentX(); + var38.setVisible(false); + boolean var42 = var38.isDoubleBuffered(); + var38.list(); + float var44 = var38.getAlignmentY(); + boolean var45 = var28.isFocusCycleRoot((java.awt.Container)var38); + boolean var46 = var38.isEnabled(); + java.awt.Dimension var47 = var38.getMaximumSize(); + var38.setFocusCycleRoot(false); + java.awt.event.ComponentListener[] var50 = var38.getComponentListeners(); + boolean var51 = var38.isFocusCycleRoot(); + var38.show(); + SpaceWar.SpacePanel var53 = new SpaceWar.SpacePanel(); + float var54 = var53.getAlignmentX(); + var53.setVisible(false); + boolean var57 = var53.isDoubleBuffered(); + var53.list(); + SpaceWar.SpacePanel var59 = new SpaceWar.SpacePanel(); + float var60 = var59.getAlignmentX(); + var59.setVisible(false); + boolean var63 = var59.isDoubleBuffered(); + java.awt.dnd.DropTarget var64 = var59.getDropTarget(); + var59.show(false); + java.awt.Rectangle var67 = var59.getVisibleRect(); + java.awt.Rectangle var68 = var53.getBounds(var67); + javax.swing.JToolTip var69 = var53.createToolTip(); + var53.firePropertyChange("", false, false); + var53.revalidate(); + int var75 = var53.getComponentCount(); + var0.add((java.awt.Component)var38, (java.lang.Object)var75); + var0.setBounds(3, 100, 100, (-1)); + // The following exception was thrown during execution. + // This behavior will recorded for regression testing. + try { + java.awt.Point var82 = var0.getLocationOnScreen(); + fail("Expected exception of type java.awt.IllegalComponentStateException"); + } catch (java.awt.IllegalComponentStateException e) { + // Expected exception. + } + + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var29 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var34); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var35 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var36); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var39 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var42 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var44 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var45 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var46 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var47); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var50); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var51 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var54 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var57 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var60 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var63 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var64); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var67); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var68); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var69); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var75 == 0); + + } + + public void test404() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test404"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + float var7 = var6.getAlignmentX(); + var6.setVisible(false); + SpaceWar.SpacePanel var10 = new SpaceWar.SpacePanel(); + java.awt.Color var11 = var10.getBackground(); + var6.setForeground(var11); + var0.setBackground(var11); + var0.grabFocus(); + SpaceWar.SpacePanel var15 = new SpaceWar.SpacePanel(); + float var16 = var15.getAlignmentX(); + var15.setVisible(false); + boolean var19 = var15.isDoubleBuffered(); + java.awt.dnd.DropTarget var20 = var15.getDropTarget(); + boolean var21 = var15.isFocusCycleRoot(); + SpaceWar.SpacePanel var22 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var23 = new SpaceWar.SpacePanel(); + java.awt.Color var24 = var23.getBackground(); + SpaceWar.SpacePanel var25 = new SpaceWar.SpacePanel(); + float var26 = var25.getAlignmentX(); + var25.setVisible(false); + var25.nextFocus(); + var25.updateUI(); + var25.enableInputMethods(true); + var22.add((java.awt.Component)var23, (java.lang.Object)true); + java.awt.Dimension var34 = var23.getPreferredSize(); + var15.setSize(var34); + var0.setMaximumSize(var34); + SpaceWar.SpacePanel var37 = new SpaceWar.SpacePanel(); + float var38 = var37.getAlignmentX(); + var37.setVisible(false); + java.awt.Dimension var41 = var37.getPreferredSize(); + boolean var42 = var37.getVerifyInputWhenFocusTarget(); + java.awt.Component var45 = var37.findComponentAt(10, 1); + boolean var46 = var37.requestDefaultFocus(); + var37.setVerifyInputWhenFocusTarget(false); + java.awt.Point var49 = var37.getLocation(); + java.awt.Point var50 = var0.getLocation(var49); + var0.enable(false); + var0.revalidate(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var34); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var38 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var41); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var42 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var45); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var46 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var49); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var50); + + } + + public void test405() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test405"); + + + SpaceWar.Enemy var2 = new SpaceWar.Enemy(0, 100); + var2.explode(); + java.awt.image.BufferedImage var5 = var2.loadImg("SpaceWar.SpacePanel[,-1,1,-1x10,invalid,hidden,disabled,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + var2.hit(); + var2.hit(); + var2.hit(); + var2.hit(); + boolean var10 = var2.isDead(); + boolean var11 = var2.isDead(); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == true); + + } + + public void test406() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test406"); + + + SpaceWar.Player var0 = new SpaceWar.Player(); + int var1 = var0.getPower(); + var0.setFiring(true); + boolean var4 = var0.isDead(); + var0.setFiring(false); + var0.setDown(true); + int var9 = var0.getScore(); + int var10 = var0.getY(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 500); + + } + + public void test407() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test407"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + java.awt.im.InputMethodRequests var3 = var0.getInputMethodRequests(); + var0.setDoubleBuffered(true); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + float var7 = var6.getAlignmentX(); + boolean var8 = var6.hasFocus(); + java.awt.Insets var9 = var6.getInsets(); + java.awt.Insets var10 = var0.getInsets(var9); + SpaceWar.SpacePanel var11 = new SpaceWar.SpacePanel(); + java.awt.Color var12 = var11.getBackground(); + var11.repaint(); + java.awt.im.InputMethodRequests var14 = var11.getInputMethodRequests(); + var11.setDoubleBuffered(true); + var11.setInheritsPopupMenu(false); + boolean var19 = var11.isFocusTraversalPolicySet(); + var11.transferFocusUpCycle(); + java.awt.image.BufferedImage var22 = var11.loadImg("SpaceWar.SpacePanel[,0,0,0x0,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + SpaceWar.SpacePanel var23 = new SpaceWar.SpacePanel(); + float var24 = var23.getAlignmentX(); + var23.setVisible(false); + var23.setInheritsPopupMenu(false); + boolean var29 = var23.isDoubleBuffered(); + boolean var30 = var23.isMinimumSizeSet(); + java.awt.Font var31 = var23.getFont(); + java.awt.FontMetrics var32 = var11.getFontMetrics(var31); + java.awt.FontMetrics var33 = var0.getFontMetrics(var31); + SpaceWar.SpacePanel var34 = new SpaceWar.SpacePanel(); + java.awt.Color var35 = var34.getBackground(); + var34.repaint(); + java.awt.im.InputMethodRequests var37 = var34.getInputMethodRequests(); + int var38 = var34.countComponents(); + java.awt.Dimension var39 = var34.getSize(); + var0.setMinimumSize(var39); + java.awt.Graphics var41 = var0.getGraphics(); + boolean var42 = var0.isValid(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var9); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var24 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var29 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var30 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var31); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var32); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var33); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var35); + + // Regression assertion (captures the current behavior of the code) + assertNull(var37); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var38 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var39); + + // Regression assertion (captures the current behavior of the code) + assertNull(var41); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var42 == false); + + } + + public void test408() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test408"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.reshape((-1), 1, (-1), 10); + var0.disable(); + var0.show(); + SpaceWar.SpacePanel var12 = new SpaceWar.SpacePanel(); + float var13 = var12.getAlignmentX(); + var12.setVisible(false); + boolean var16 = var12.isDoubleBuffered(); + var12.list(); + SpaceWar.SpacePanel var18 = new SpaceWar.SpacePanel(); + float var19 = var18.getAlignmentX(); + var18.setVisible(false); + boolean var22 = var18.isDoubleBuffered(); + java.awt.dnd.DropTarget var23 = var18.getDropTarget(); + var18.show(false); + java.awt.Rectangle var26 = var18.getVisibleRect(); + java.awt.Rectangle var27 = var12.getBounds(var26); + javax.swing.JToolTip var28 = var12.createToolTip(); + var12.firePropertyChange("", false, false); + var12.validate(); + SpaceWar.SpacePanel var34 = new SpaceWar.SpacePanel(); + float var35 = var34.getAlignmentX(); + var34.setVisible(false); + boolean var38 = var34.isDoubleBuffered(); + java.awt.dnd.DropTarget var39 = var34.getDropTarget(); + var34.show(false); + boolean var42 = var34.isPaintingForPrint(); + SpaceWar.SpacePanel var43 = new SpaceWar.SpacePanel(); + float var44 = var43.getAlignmentX(); + var43.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var49 = var43.getMouseListeners(); + int var50 = var43.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var51 = var43.getInputMethodRequests(); + var34.addKeyListener((java.awt.event.KeyListener)var43); + var43.repaint(); + java.awt.Point var54 = var43.location(); + java.awt.Component var55 = var12.getComponentAt(var54); + java.awt.Point var56 = var0.getLocation(var54); + var0.setAlignmentY(0.5f); + boolean var59 = var0.getVerifyInputWhenFocusTarget(); + boolean var60 = var0.isBackgroundSet(); + java.awt.Point var61 = var0.location(); + java.awt.Point var63 = var0.getMousePosition(false); + boolean var64 = var0.hasFocus(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var22 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var23); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var27); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var28); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var35 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var38 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var39); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var42 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var44 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var49); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var50 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var51); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var54); + + // Regression assertion (captures the current behavior of the code) + assertNull(var55); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var56); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var59 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var60 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var61); + + // Regression assertion (captures the current behavior of the code) + assertNull(var63); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var64 == false); + + } + + public void test409() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test409"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + var0.list(); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + float var7 = var6.getAlignmentX(); + var6.setVisible(false); + boolean var10 = var6.isDoubleBuffered(); + java.awt.dnd.DropTarget var11 = var6.getDropTarget(); + var6.show(false); + java.awt.Rectangle var14 = var6.getVisibleRect(); + java.awt.Rectangle var15 = var0.getBounds(var14); + javax.swing.JToolTip var16 = var0.createToolTip(); + java.awt.Graphics var17 = var0.getGraphics(); + float var18 = var0.getAlignmentY(); + boolean var19 = var0.getInheritsPopupMenu(); + var0.firePropertyChange("SpaceWar.SpacePanel[,10,10,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", (byte)0, (byte)10); + float var24 = var0.getAlignmentY(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var24 == 0.5f); + + } + + public void test410() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test410"); + + + SpaceWar.Player var0 = new SpaceWar.Player(); + var0.increasePower(25); + int var3 = var0.getScore(); + var0.update(); + int var5 = var0.getY(); + var0.setDown(false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == 500); + + } + + public void test411() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test411"); + + + SpaceWar.Enemy var2 = new SpaceWar.Enemy(0, 100); + var2.explode(); + java.awt.image.BufferedImage var5 = var2.loadImg("SpaceWar.SpacePanel[,-1,1,-1x10,invalid,hidden,disabled,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + var2.hit(); + double var7 = var2.getX(); + double var8 = var2.getY(); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 470.4772832256448d); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 0.0d); + + } + + public void test412() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test412"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + var0.list(); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + float var7 = var6.getAlignmentX(); + var6.setVisible(false); + boolean var10 = var6.isDoubleBuffered(); + java.awt.dnd.DropTarget var11 = var6.getDropTarget(); + var6.show(false); + java.awt.Rectangle var14 = var6.getVisibleRect(); + java.awt.Rectangle var15 = var0.getBounds(var14); + javax.swing.JToolTip var16 = var0.createToolTip(); + java.awt.Graphics var17 = var0.getGraphics(); + java.beans.VetoableChangeListener[] var18 = var0.getVetoableChangeListeners(); + boolean var19 = var0.requestFocusInWindow(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == false); + + } + + public void test413() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test413"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + var0.show(false); + boolean var8 = var0.isPaintingForPrint(); + boolean var9 = var0.getIgnoreRepaint(); + java.awt.Component[] var10 = var0.getComponents(); + java.awt.Color var11 = var0.getBackground(); + var0.firePropertyChange("SpaceWar.SpacePanel[,-1,1,-1x10,invalid,hidden,disabled,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", 100, 25); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + } + + public void test414() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test414"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.Graphics var5 = var0.getGraphics(); + boolean var6 = var0.hasFocus(); + boolean var7 = var0.isFocusTraversalPolicyProvider(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == false); + + } + + public void test415() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test415"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + java.awt.im.InputMethodRequests var3 = var0.getInputMethodRequests(); + java.awt.GraphicsConfiguration var4 = var0.getGraphicsConfiguration(); + boolean var6 = var0.requestFocus(false); + javax.swing.JPopupMenu var7 = var0.getComponentPopupMenu(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + boolean var12 = var8.isDoubleBuffered(); + var8.list(); + SpaceWar.SpacePanel var14 = new SpaceWar.SpacePanel(); + float var15 = var14.getAlignmentX(); + var14.setVisible(false); + boolean var18 = var14.isDoubleBuffered(); + java.awt.dnd.DropTarget var19 = var14.getDropTarget(); + var14.show(false); + java.awt.Rectangle var22 = var14.getVisibleRect(); + java.awt.Rectangle var23 = var8.getBounds(var22); + javax.swing.JToolTip var24 = var8.createToolTip(); + java.awt.Dimension var25 = var8.minimumSize(); + SpaceWar.SpacePanel var26 = new SpaceWar.SpacePanel(); + float var27 = var26.getAlignmentX(); + var26.setVisible(false); + var26.setInheritsPopupMenu(false); + var26.setFocusTraversalPolicyProvider(true); + java.awt.Container var34 = var26.getFocusCycleRootAncestor(); + SpaceWar.SpacePanel var35 = new SpaceWar.SpacePanel(); + float var36 = var35.getAlignmentX(); + var35.removeNotify(); + SpaceWar.SpacePanel var38 = new SpaceWar.SpacePanel(); + float var39 = var38.getAlignmentX(); + var38.setVisible(false); + boolean var42 = var38.isDoubleBuffered(); + var38.list(); + float var44 = var38.getAlignmentY(); + java.awt.Insets var45 = var38.getInsets(); + java.awt.Insets var46 = var35.getInsets(var45); + java.awt.Insets var47 = var26.getInsets(var46); + java.awt.Insets var48 = var8.getInsets(var46); + var8.hide(); + java.awt.Component var51 = var0.add((java.awt.Component)var8, (-1)); + var8.enable(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertNull(var4); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var23); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var25); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNull(var34); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var36 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var39 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var42 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var44 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var45); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var46); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var47); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var48); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var51); + + } + + public void test416() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test416"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + float var7 = var6.getAlignmentX(); + var6.setVisible(false); + SpaceWar.SpacePanel var10 = new SpaceWar.SpacePanel(); + java.awt.Color var11 = var10.getBackground(); + var6.setForeground(var11); + var0.setBackground(var11); + var0.grabFocus(); + SpaceWar.SpacePanel var15 = new SpaceWar.SpacePanel(); + float var16 = var15.getAlignmentX(); + var15.setVisible(false); + boolean var19 = var15.isDoubleBuffered(); + java.awt.dnd.DropTarget var20 = var15.getDropTarget(); + boolean var21 = var15.isFocusCycleRoot(); + SpaceWar.SpacePanel var22 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var23 = new SpaceWar.SpacePanel(); + java.awt.Color var24 = var23.getBackground(); + SpaceWar.SpacePanel var25 = new SpaceWar.SpacePanel(); + float var26 = var25.getAlignmentX(); + var25.setVisible(false); + var25.nextFocus(); + var25.updateUI(); + var25.enableInputMethods(true); + var22.add((java.awt.Component)var23, (java.lang.Object)true); + java.awt.Dimension var34 = var23.getPreferredSize(); + var15.setSize(var34); + var0.setMaximumSize(var34); + java.awt.image.BufferedImage var38 = var0.loadImg("hi!"); + var0.setFocusTraversalKeysEnabled(true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var34); + + // Regression assertion (captures the current behavior of the code) + assertNull(var38); + + } + + public void test417() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test417"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + boolean var2 = var0.hasFocus(); + boolean var3 = var0.isPreferredSizeSet(); + var0.firePropertyChange("", (short)1, (short)0); + boolean var8 = var0.isMaximumSizeSet(); + java.awt.peer.ComponentPeer var9 = var0.getPeer(); + var0.firePropertyChange("hi!", (-1), 499); + boolean var14 = var0.isValidateRoot(); + SpaceWar.SpacePanel var15 = new SpaceWar.SpacePanel(); + float var16 = var15.getAlignmentX(); + var15.setVisible(false); + boolean var19 = var15.isDoubleBuffered(); + java.awt.dnd.DropTarget var20 = var15.getDropTarget(); + var15.show(false); + java.awt.Rectangle var23 = var15.getVisibleRect(); + java.awt.Toolkit var24 = var15.getToolkit(); + java.awt.event.MouseMotionListener[] var25 = var15.getMouseMotionListeners(); + SpaceWar.SpacePanel var26 = new SpaceWar.SpacePanel(); + float var27 = var26.getAlignmentX(); + var26.setVisible(false); + SpaceWar.SpacePanel var30 = new SpaceWar.SpacePanel(); + java.awt.Color var31 = var30.getBackground(); + var26.setForeground(var31); + SpaceWar.SpacePanel var33 = new SpaceWar.SpacePanel(); + float var34 = var33.getAlignmentX(); + var33.setVisible(false); + boolean var37 = var33.isDoubleBuffered(); + java.awt.dnd.DropTarget var38 = var33.getDropTarget(); + var33.show(false); + java.awt.Rectangle var41 = var33.getVisibleRect(); + var26.repaint(var41); + java.awt.Component.BaselineResizeBehavior var43 = var26.getBaselineResizeBehavior(); + SpaceWar.SpacePanel var44 = new SpaceWar.SpacePanel(); + float var45 = var44.getAlignmentX(); + var44.setVisible(false); + var44.nextFocus(); + var44.repaint(1L); + SpaceWar.SpacePanel var51 = new SpaceWar.SpacePanel(); + float var52 = var51.getAlignmentX(); + var51.setVisible(false); + boolean var55 = var51.isDoubleBuffered(); + var51.list(); + SpaceWar.SpacePanel var57 = new SpaceWar.SpacePanel(); + float var58 = var57.getAlignmentX(); + var57.setVisible(false); + boolean var61 = var57.isDoubleBuffered(); + java.awt.dnd.DropTarget var62 = var57.getDropTarget(); + var57.show(false); + java.awt.Rectangle var65 = var57.getVisibleRect(); + java.awt.Rectangle var66 = var51.getBounds(var65); + var44.setBounds(var66); + var26.paintImmediately(var66); + var15.setBounds(var66); + SpaceWar.SpacePanel var70 = new SpaceWar.SpacePanel(); + float var71 = var70.getAlignmentX(); + var70.setVisible(false); + SpaceWar.SpacePanel var74 = new SpaceWar.SpacePanel(); + java.awt.Color var75 = var74.getBackground(); + var70.setForeground(var75); + SpaceWar.SpacePanel var77 = new SpaceWar.SpacePanel(); + float var78 = var77.getAlignmentX(); + var77.setVisible(false); + boolean var81 = var77.isDoubleBuffered(); + java.awt.dnd.DropTarget var82 = var77.getDropTarget(); + var77.show(false); + java.awt.Rectangle var85 = var77.getVisibleRect(); + var70.repaint(var85); + SpaceWar.SpacePanel var87 = new SpaceWar.SpacePanel(); + float var88 = var87.getAlignmentX(); + var87.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var93 = var87.getMouseListeners(); + java.awt.Dimension var94 = var87.getPreferredSize(); + java.util.Locale var95 = var87.getLocale(); + var70.setLocale(var95); + javax.swing.JComponent.setDefaultLocale(var95); + var0.add((java.awt.Component)var15, (java.lang.Object)var95); + javax.swing.plaf.PanelUI var99 = var0.getUI(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var2 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var9); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var23); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var25); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var31); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var34 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var38); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var41); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var43); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var45 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var52 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var55 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var58 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var61 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var62); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var65); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var66); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var71 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var75); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var78 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var81 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var82); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var85); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var88 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var93); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var94); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var95); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var99); + + } + + public void test418() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test418"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + java.awt.Color var7 = var6.getBackground(); + var6.repaint(); + var6.setRequestFocusEnabled(false); + var6.reshape(100, 0, 100, 0); + var6.requestFocus(); + SpaceWar.SpacePanel var17 = new SpaceWar.SpacePanel(); + float var18 = var17.getAlignmentX(); + var17.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var23 = var17.getUI(); + java.awt.im.InputMethodRequests var24 = var17.getInputMethodRequests(); + SpaceWar.SpacePanel var25 = new SpaceWar.SpacePanel(); + float var26 = var25.getAlignmentX(); + var25.setVisible(false); + var25.nextFocus(); + var25.updateUI(); + var25.enableInputMethods(true); + var25.setSize((-1), 1); + SpaceWar.SpacePanel var36 = new SpaceWar.SpacePanel(); + var36.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var17.add((java.awt.Component)var25, (java.lang.Object)"SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + SpaceWar.SpacePanel var42 = new SpaceWar.SpacePanel(); + var42.setName(""); + java.awt.ComponentOrientation var45 = var42.getComponentOrientation(); + var17.applyComponentOrientation(var45); + var6.setComponentOrientation(var45); + var0.applyComponentOrientation(var45); + boolean var49 = var0.isPaintingForPrint(); + boolean var50 = var0.isValid(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var23); + + // Regression assertion (captures the current behavior of the code) + assertNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var45); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var49 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var50 == false); + + } + + public void test419() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test419"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + SpaceWar.SpacePanel var4 = new SpaceWar.SpacePanel(); + java.awt.Color var5 = var4.getBackground(); + var0.setForeground(var5); + SpaceWar.SpacePanel var7 = new SpaceWar.SpacePanel(); + float var8 = var7.getAlignmentX(); + var7.setVisible(false); + boolean var11 = var7.isDoubleBuffered(); + java.awt.dnd.DropTarget var12 = var7.getDropTarget(); + var7.show(false); + java.awt.Rectangle var15 = var7.getVisibleRect(); + var0.repaint(var15); + java.awt.FocusTraversalPolicy var17 = var0.getFocusTraversalPolicy(); + javax.swing.TransferHandler var18 = var0.getTransferHandler(); + javax.swing.JToolTip var19 = var0.createToolTip(); + boolean var20 = var19.isValidateRoot(); + java.awt.Container var21 = var19.getParent(); + var19.setAlignmentX(1.0f); + var19.firePropertyChange("hi!", 99, (-1)); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var21); + + } + + public void test420() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test420"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + java.awt.Dimension var4 = var0.getPreferredSize(); + boolean var5 = var0.getVerifyInputWhenFocusTarget(); + boolean var6 = var0.isShowing(); + boolean var7 = var0.isBackgroundSet(); + java.awt.im.InputContext var8 = var0.getInputContext(); + var0.firePropertyChange("hi!", (short)100, (short)1); + boolean var13 = var0.isFocusable(); + java.awt.event.InputMethodListener[] var14 = var0.getInputMethodListeners(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var4); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + } + + public void test421() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test421"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + SpaceWar.SpacePanel var4 = new SpaceWar.SpacePanel(); + java.awt.Color var5 = var4.getBackground(); + var0.setForeground(var5); + SpaceWar.SpacePanel var7 = new SpaceWar.SpacePanel(); + float var8 = var7.getAlignmentX(); + var7.setVisible(false); + boolean var11 = var7.isDoubleBuffered(); + java.awt.dnd.DropTarget var12 = var7.getDropTarget(); + var7.show(false); + java.awt.Rectangle var15 = var7.getVisibleRect(); + var0.repaint(var15); + java.awt.FocusTraversalPolicy var17 = var0.getFocusTraversalPolicy(); + int var18 = var0.getHeight(); + var0.setLocation(2, (-1)); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == 0); + + } + + public void test422() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test422"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.requestFocus(); + boolean var6 = var0.isBackgroundSet(); + SpaceWar.SpacePanel var7 = new SpaceWar.SpacePanel(); + java.awt.Color var8 = var7.getBackground(); + var7.repaint(); + var7.setRequestFocusEnabled(false); + var7.reshape(100, 0, 100, 0); + SpaceWar.SpacePanel var17 = new SpaceWar.SpacePanel(); + float var18 = var17.getAlignmentX(); + var17.setVisible(false); + var17.setInheritsPopupMenu(false); + boolean var23 = var17.isDoubleBuffered(); + SpaceWar.SpacePanel var24 = new SpaceWar.SpacePanel(); + float var25 = var24.getAlignmentX(); + var24.setVisible(false); + var24.nextFocus(); + var24.reshape((-1), 1, (-1), 10); + var24.disable(); + java.awt.LayoutManager var35 = var24.getLayout(); + var17.setLayout(var35); + var0.add((java.awt.Component)var7, (java.lang.Object)var35); + var7.hide(); + var7.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", 241.4584513263457d, 323.62099822147866d); + java.beans.PropertyChangeListener[] var44 = var7.getPropertyChangeListeners("hi!"); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var35); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var44); + + } + + public void test423() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test423"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + boolean var6 = var0.isFocusCycleRoot(); + SpaceWar.SpacePanel var7 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + java.awt.Color var9 = var8.getBackground(); + SpaceWar.SpacePanel var10 = new SpaceWar.SpacePanel(); + float var11 = var10.getAlignmentX(); + var10.setVisible(false); + var10.nextFocus(); + var10.updateUI(); + var10.enableInputMethods(true); + var7.add((java.awt.Component)var8, (java.lang.Object)true); + java.awt.Dimension var19 = var8.getPreferredSize(); + var0.setSize(var19); + var0.updateUI(); + SpaceWar.SpacePanel var22 = new SpaceWar.SpacePanel(); + float var23 = var22.getAlignmentX(); + var22.setVisible(false); + java.awt.Dimension var26 = var22.getPreferredSize(); + java.awt.Toolkit var27 = var22.getToolkit(); + boolean var28 = var22.isFocusable(); + javax.swing.KeyStroke[] var29 = var22.getRegisteredKeyStrokes(); + SpaceWar.SpacePanel var30 = new SpaceWar.SpacePanel(); + float var31 = var30.getAlignmentX(); + SpaceWar.SpacePanel var32 = new SpaceWar.SpacePanel(); + float var33 = var32.getAlignmentX(); + var32.setVisible(false); + java.awt.Dimension var36 = var32.getPreferredSize(); + boolean var37 = var32.getVerifyInputWhenFocusTarget(); + java.awt.Component var40 = var32.findComponentAt(10, 1); + var30.addKeyListener((java.awt.event.KeyListener)var32); + var32.repaint(100, (-1), (-1), 1); + boolean var47 = var22.isAncestorOf((java.awt.Component)var32); + java.awt.Point var48 = var22.location(); + boolean var49 = var0.contains(var48); + java.awt.Point var50 = var0.getMousePosition(); + java.awt.event.HierarchyBoundsListener[] var51 = var0.getHierarchyBoundsListeners(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var9); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var27); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var28 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var29); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var31 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var33 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var36); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var40); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var47 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var48); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var49 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var50); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var51); + + } + + public void test424() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test424"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + java.awt.Dimension var4 = var0.getPreferredSize(); + java.awt.Toolkit var5 = var0.getToolkit(); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + var6.setName(""); + int var9 = var6.getX(); + SpaceWar.SpacePanel var10 = new SpaceWar.SpacePanel(); + float var11 = var10.getAlignmentX(); + var10.setVisible(false); + var10.nextFocus(); + SpaceWar.SpacePanel var15 = new SpaceWar.SpacePanel(); + float var16 = var15.getAlignmentX(); + var15.setVisible(false); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + java.awt.Color var20 = var19.getBackground(); + var15.setForeground(var20); + var10.setBackground(var20); + var6.setBackground(var20); + var0.setForeground(var20); + SpaceWar.SpacePanel var25 = new SpaceWar.SpacePanel(); + float var26 = var25.getAlignmentX(); + var25.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var31 = new SpaceWar.SpacePanel(); + float var32 = var31.getAlignmentX(); + var31.setVisible(false); + java.awt.Dimension var35 = var31.getPreferredSize(); + var25.setMaximumSize(var35); + boolean var37 = var25.getVerifyInputWhenFocusTarget(); + javax.accessibility.AccessibleContext var38 = var25.getAccessibleContext(); + boolean var39 = var25.isDoubleBuffered(); + java.awt.Rectangle var40 = var25.getVisibleRect(); + var0.scrollRectToVisible(var40); + SpaceWar.SpacePanel var42 = new SpaceWar.SpacePanel(); + float var43 = var42.getAlignmentX(); + var42.setVisible(false); + java.awt.Dimension var46 = var42.getPreferredSize(); + java.awt.Toolkit var47 = var42.getToolkit(); + SpaceWar.SpacePanel var48 = new SpaceWar.SpacePanel(); + var48.setName(""); + int var51 = var48.getX(); + SpaceWar.SpacePanel var52 = new SpaceWar.SpacePanel(); + float var53 = var52.getAlignmentX(); + var52.setVisible(false); + var52.nextFocus(); + SpaceWar.SpacePanel var57 = new SpaceWar.SpacePanel(); + float var58 = var57.getAlignmentX(); + var57.setVisible(false); + SpaceWar.SpacePanel var61 = new SpaceWar.SpacePanel(); + java.awt.Color var62 = var61.getBackground(); + var57.setForeground(var62); + var52.setBackground(var62); + var48.setBackground(var62); + var42.setForeground(var62); + SpaceWar.SpacePanel var67 = new SpaceWar.SpacePanel(); + float var68 = var67.getAlignmentX(); + var67.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var73 = new SpaceWar.SpacePanel(); + float var74 = var73.getAlignmentX(); + var73.setVisible(false); + java.awt.Dimension var77 = var73.getPreferredSize(); + var67.setMaximumSize(var77); + boolean var79 = var67.getVerifyInputWhenFocusTarget(); + javax.accessibility.AccessibleContext var80 = var67.getAccessibleContext(); + boolean var81 = var67.isDoubleBuffered(); + java.awt.Rectangle var82 = var67.getVisibleRect(); + var42.scrollRectToVisible(var82); + var0.removeKeyListener((java.awt.event.KeyListener)var42); + javax.swing.InputVerifier var85 = var0.getInputVerifier(); + var0.enable(); + int var87 = var0.getY(); + java.lang.String var88 = var0.getName(); + java.awt.Component var89 = var0.getNextFocusableComponent(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var4); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var32 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var35); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var38); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var39 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var40); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var43 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var46); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var47); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var51 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var53 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var58 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var62); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var68 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var74 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var77); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var79 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var80); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var81 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var82); + + // Regression assertion (captures the current behavior of the code) + assertNull(var85); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var87 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var88); + + // Regression assertion (captures the current behavior of the code) + assertNull(var89); + + } + + public void test425() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test425"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + var0.setRequestFocusEnabled(false); + var0.reshape(100, 0, 100, 0); + var0.requestFocus(); + var0.firePropertyChange("hi!", '4', ' '); + SpaceWar.Enemy var17 = new SpaceWar.Enemy(0, 100); + int var18 = var17.getR(); + var17.explode(); + var0.putClientProperty((java.lang.Object)var17, (java.lang.Object)(short)10); + var0.show(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == 0); + + } + + public void test426() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test426"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.repaint(1L); + SpaceWar.SpacePanel var7 = new SpaceWar.SpacePanel(); + float var8 = var7.getAlignmentX(); + var7.setVisible(false); + var7.nextFocus(); + var7.updateUI(); + var7.enableInputMethods(true); + var7.enableInputMethods(true); + var0.addKeyListener((java.awt.event.KeyListener)var7); + java.awt.event.MouseMotionListener[] var18 = var0.getMouseMotionListeners(); + java.awt.Dimension var19 = var0.minimumSize(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var19); + + } + + public void test427() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test427"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.removeNotify(); + java.awt.dnd.DropTarget var3 = var0.getDropTarget(); + java.awt.Component.BaselineResizeBehavior var4 = var0.getBaselineResizeBehavior(); + var0.setOpaque(true); + java.awt.FocusTraversalPolicy var7 = var0.getFocusTraversalPolicy(); + java.awt.Component[] var8 = var0.getComponents(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var4); + + // Regression assertion (captures the current behavior of the code) + assertNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var8); + + } + + public void test428() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test428"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.reshape((-1), 1, (-1), 10); + var0.disable(); + boolean var11 = var0.isFocusable(); + int var12 = var0.getHeight(); + javax.swing.InputVerifier var13 = var0.getInputVerifier(); + var0.doLayout(); + var0.transferFocus(); + var0.setEnabled(false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == 10); + + // Regression assertion (captures the current behavior of the code) + assertNull(var13); + + } + + public void test429() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test429"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + boolean var6 = var0.isFocusCycleRoot(); + var0.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", 100, 0); + SpaceWar.SpacePanel var11 = new SpaceWar.SpacePanel(); + float var12 = var11.getAlignmentX(); + var11.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var17 = var11.getUI(); + var0.add((java.awt.Component)var11, (java.lang.Object)(short)0); + java.awt.Insets var20 = var11.getInsets(); + SpaceWar.SpacePanel var21 = new SpaceWar.SpacePanel(); + float var22 = var21.getAlignmentX(); + var21.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var27 = var21.getMouseListeners(); + java.awt.Dimension var28 = var21.getPreferredSize(); + java.util.Locale var29 = var21.getLocale(); + var21.setFocusable(true); + SpaceWar.SpacePanel var32 = new SpaceWar.SpacePanel(); + java.awt.Color var33 = var32.getBackground(); + var32.repaint(); + var32.setRequestFocusEnabled(false); + var32.setIgnoreRepaint(false); + java.lang.String var39 = var32.toString(); + java.awt.Color var40 = var32.getBackground(); + var11.putClientProperty((java.lang.Object)var21, (java.lang.Object)var32); + var21.show(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var22 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var27); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var28); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var29); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var33); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var39 + "' != '" + "SpaceWar.SpacePanel[,0,0,0var39,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"+ "'", var39.equals("SpaceWar.SpacePanel[,0,0,0var39,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]")); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var40); + + } + + public void test430() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test430"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.setInheritsPopupMenu(false); + var0.setFocusTraversalPolicyProvider(true); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + boolean var12 = var8.isDoubleBuffered(); + var8.list(); + SpaceWar.SpacePanel var14 = new SpaceWar.SpacePanel(); + float var15 = var14.getAlignmentX(); + var14.setVisible(false); + boolean var18 = var14.isDoubleBuffered(); + java.awt.dnd.DropTarget var19 = var14.getDropTarget(); + var14.show(false); + java.awt.Rectangle var22 = var14.getVisibleRect(); + java.awt.Rectangle var23 = var8.getBounds(var22); + javax.swing.JToolTip var24 = var8.createToolTip(); + var0.removeKeyListener((java.awt.event.KeyListener)var8); + var0.setFocusTraversalKeysEnabled(true); + javax.swing.KeyStroke[] var28 = var0.getRegisteredKeyStrokes(); + SpaceWar.SpacePanel var29 = new SpaceWar.SpacePanel(); + float var30 = var29.getAlignmentX(); + var29.setVisible(false); + java.awt.Dimension var33 = var29.getPreferredSize(); + java.awt.Toolkit var34 = var29.getToolkit(); + boolean var35 = var29.isFocusable(); + javax.swing.KeyStroke[] var36 = var29.getRegisteredKeyStrokes(); + java.awt.Component var39 = var29.getComponentAt(100, 100); + java.lang.Object var40 = var29.getTreeLock(); + boolean var43 = var29.inside(400, 0); + java.awt.event.MouseWheelListener[] var44 = var29.getMouseWheelListeners(); + var29.enableInputMethods(true); + boolean var47 = var0.isAncestorOf((java.awt.Component)var29); + javax.swing.InputVerifier var48 = var0.getInputVerifier(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var23); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var28); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var30 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var33); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var34); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var35 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var36); + + // Regression assertion (captures the current behavior of the code) + assertNull(var39); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var40); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var43 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var44); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var47 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var48); + + } + + public void test431() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test431"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + SpaceWar.SpacePanel var2 = new SpaceWar.SpacePanel(); + float var3 = var2.getAlignmentX(); + var2.setVisible(false); + java.awt.Dimension var6 = var2.getPreferredSize(); + boolean var7 = var2.getVerifyInputWhenFocusTarget(); + java.awt.Component var10 = var2.findComponentAt(10, 1); + var0.addKeyListener((java.awt.event.KeyListener)var2); + java.awt.Cursor var12 = var0.getCursor(); + java.awt.Dimension var13 = var0.getMinimumSize(); + var0.setEnabled(true); + boolean var16 = var0.isFocusCycleRoot(); + java.awt.Font var17 = var0.getFont(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var17); + + } + + public void test432() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test432"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + var0.setRequestFocusEnabled(false); + var0.setIgnoreRepaint(false); + boolean var7 = var0.requestFocusInWindow(); + float var8 = var0.getAlignmentY(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + java.awt.Color var10 = var9.getBackground(); + var9.repaint(); + java.awt.im.InputMethodRequests var12 = var9.getInputMethodRequests(); + int var13 = var9.countComponents(); + java.awt.event.ComponentListener[] var14 = var9.getComponentListeners(); + SpaceWar.SpacePanel var15 = new SpaceWar.SpacePanel(); + float var16 = var15.getAlignmentX(); + var15.removeNotify(); + SpaceWar.SpacePanel var18 = new SpaceWar.SpacePanel(); + float var19 = var18.getAlignmentX(); + var18.setVisible(false); + boolean var22 = var18.isDoubleBuffered(); + var18.list(); + float var24 = var18.getAlignmentY(); + java.awt.Insets var25 = var18.getInsets(); + java.awt.Insets var26 = var15.getInsets(var25); + java.awt.Insets var27 = var9.getInsets(var26); + javax.swing.JPopupMenu var28 = var9.getComponentPopupMenu(); + java.awt.image.BufferedImage var30 = var9.loadImg("PanelUI"); + SpaceWar.SpacePanel var31 = new SpaceWar.SpacePanel(); + float var32 = var31.getAlignmentX(); + var31.setVisible(false); + var31.nextFocus(); + var31.updateUI(); + var31.enableInputMethods(true); + int var39 = var31.getY(); + boolean var40 = var31.isDisplayable(); + var0.add((java.awt.Component)var9, (java.lang.Object)var31); + boolean var42 = var0.isMaximumSizeSet(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var22 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var24 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var25); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var27); + + // Regression assertion (captures the current behavior of the code) + assertNull(var28); + + // Regression assertion (captures the current behavior of the code) + assertNull(var30); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var32 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var39 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var40 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var42 == false); + + } + + public void test433() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test433"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.reshape((-1), 1, (-1), 10); + var0.disable(); + java.awt.LayoutManager var11 = var0.getLayout(); + java.awt.Container var12 = var0.getParent(); + java.lang.String var13 = var0.getUIClassID(); + var0.setVerifyInputWhenFocusTarget(true); + boolean var16 = var0.isRequestFocusEnabled(); + javax.swing.ActionMap var17 = var0.getActionMap(); + java.lang.Object var18 = var0.getTreeLock(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var13 + "' != '" + "PanelUI"+ "'", var13.equals("PanelUI")); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var18); + + } + + public void test434() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test434"); + + + SpaceWar.PowerUp var3 = new SpaceWar.PowerUp(100, (-1.0d), 0.0d); + int var4 = var3.getType(); + double var5 = var3.getR(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 100); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == 0.0d); + + } + + public void test435() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test435"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + boolean var2 = var0.hasFocus(); + SpaceWar.SpacePanel var3 = new SpaceWar.SpacePanel(); + float var4 = var3.getAlignmentX(); + var3.setVisible(false); + var3.nextFocus(); + var3.reshape((-1), 1, (-1), 10); + var3.disable(); + java.awt.LayoutManager var14 = var3.getLayout(); + var3.setVisible(false); + var0.remove((java.awt.Component)var3); + var3.repaint(); + boolean var19 = var3.isLightweight(); + int var20 = var3.getX(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var2 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == (-1)); + + } + + public void test436() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test436"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.reshape((-1), 1, (-1), 10); + var0.disable(); + java.awt.LayoutManager var11 = var0.getLayout(); + boolean var14 = var0.contains((-1), 0); + SpaceWar.SpacePanel var15 = new SpaceWar.SpacePanel(); + float var16 = var15.getAlignmentX(); + var15.setVisible(false); + var15.nextFocus(); + var15.updateUI(); + var15.enableInputMethods(true); + var15.setSize((-1), 1); + java.awt.Component var26 = var0.add((java.awt.Component)var15); + var15.nextFocus(); + var15.updateUI(); + int var29 = var15.getWidth(); + boolean var30 = var15.isFontSet(); + var15.setFocusCycleRoot(true); + java.awt.Point var33 = var15.getLocation(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var29 == (-1)); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var30 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var33); + + } + + public void test437() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test437"); + + + SpaceWar.Player var0 = new SpaceWar.Player(); + int var1 = var0.getPower(); + var0.setFiring(true); + boolean var4 = var0.isDead(); + var0.update(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == false); + + } + + public void test438() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test438"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.updateUI(); + var0.enableInputMethods(true); + java.lang.String var8 = var0.toString(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.setVisible(false); + boolean var13 = var9.isDoubleBuffered(); + java.awt.dnd.DropTarget var14 = var9.getDropTarget(); + var9.show(false); + java.awt.Rectangle var17 = var9.getVisibleRect(); + java.awt.image.BufferedImage var19 = var9.loadImg("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + java.awt.ComponentOrientation var20 = var9.getComponentOrientation(); + boolean var21 = var9.isPaintingTile(); + boolean var22 = var9.isOptimizedDrawingEnabled(); + int var23 = var0.getComponentZOrder((java.awt.Component)var9); + javax.swing.JRootPane var24 = var0.getRootPane(); + boolean var25 = var0.isMaximumSizeSet(); + boolean var26 = var0.isVisible(); + java.awt.event.ContainerListener[] var27 = var0.getContainerListeners(); + var0.nextFocus(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var8 + "' != '" + "SpaceWar.SpacePanel[,0,0,0var8,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"+ "'", var8.equals("SpaceWar.SpacePanel[,0,0,0var8,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]")); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var22 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == (-1)); + + // Regression assertion (captures the current behavior of the code) + assertNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var27); + + } + + public void test439() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test439"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + java.lang.String var2 = var0.toString(); + // The following exception was thrown during execution. + // This behavior will recorded for regression testing. + try { + var0.remove(500); + fail("Expected exception of type java.lang.ArrayIndexOutOfBoundsException"); + } catch (java.lang.ArrayIndexOutOfBoundsException e) { + // Expected exception. + } + + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var2 + "' != '" + "SpaceWar.SpacePanel[,0,0,0var2,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"+ "'", var2.equals("SpaceWar.SpacePanel[,0,0,0var2,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]")); + + } + + public void test440() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test440"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + var0.show(false); + boolean var8 = var0.isPaintingForPrint(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var15 = var9.getMouseListeners(); + int var16 = var9.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var17 = var9.getInputMethodRequests(); + var0.addKeyListener((java.awt.event.KeyListener)var9); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + float var20 = var19.getAlignmentX(); + var19.setVisible(false); + boolean var23 = var19.isDoubleBuffered(); + var19.list(); + float var25 = var19.getAlignmentY(); + boolean var26 = var9.isFocusCycleRoot((java.awt.Container)var19); + var19.firePropertyChange("", 1L, 1L); + var19.setVerifyInputWhenFocusTarget(true); + var19.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", '4', '4'); + java.awt.Point var37 = var19.getLocation(); + var19.transferFocusUpCycle(); + java.awt.Cursor var39 = var19.getCursor(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var37); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var39); + + } + + public void test441() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test441"); + + + SpaceWar.Player var0 = new SpaceWar.Player(); + int var1 = var0.getPower(); + var0.setLeft(true); + var0.increasePower(0); + int var6 = var0.getR(); + var0.setUp(false); + int var9 = var0.getScore(); + int var10 = var0.getX(); + int var11 = var0.getRequiredPower(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == 25); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 400); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == 1); + + } + + public void test442() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test442"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.reshape((-1), 1, (-1), 10); + var0.disable(); + java.awt.LayoutManager var11 = var0.getLayout(); + var0.transferFocusDownCycle(); + boolean var15 = var0.inside(400, 24); + var0.transferFocusUpCycle(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == false); + + } + + public void test443() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test443"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + var0.enable(false); + boolean var7 = var0.requestDefaultFocus(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var14 = var8.getMouseListeners(); + int var15 = var8.getDebugGraphicsOptions(); + SpaceWar.SpacePanel var16 = new SpaceWar.SpacePanel(); + float var17 = var16.getAlignmentX(); + var16.setVisible(false); + boolean var20 = var16.isDoubleBuffered(); + java.awt.dnd.DropTarget var21 = var16.getDropTarget(); + var16.show(false); + java.awt.Rectangle var24 = var16.getVisibleRect(); + var8.paintImmediately(var24); + var8.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", '#', '#'); + var8.list(); + java.awt.Rectangle var31 = var8.getBounds(); + var0.scrollRectToVisible(var31); + SpaceWar.Player var33 = new SpaceWar.Player(); + boolean var34 = var33.isRecovering(); + var33.setRigth(false); + int var37 = var33.getPowerLevel(); + var33.increasePower((-1)); + java.lang.Object var40 = var0.getClientProperty((java.lang.Object)(-1)); + boolean var41 = var0.hasFocus(); + java.awt.Image var44 = var0.createImage((-1), 99); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var21); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var31); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var34 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var40); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var41 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var44); + + } + + public void test444() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test444"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var6 = var0.getUI(); + java.awt.im.InputMethodRequests var7 = var0.getInputMethodRequests(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + var8.nextFocus(); + var8.updateUI(); + var8.enableInputMethods(true); + var8.setSize((-1), 1); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + var19.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var0.add((java.awt.Component)var8, (java.lang.Object)"SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + java.awt.event.KeyListener[] var25 = var0.getKeyListeners(); + java.awt.FocusTraversalPolicy var26 = var0.getFocusTraversalPolicy(); + java.awt.Component var29 = var0.locate(3, 100); + SpaceWar.SpacePanel var30 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var31 = new SpaceWar.SpacePanel(); + java.awt.Color var32 = var31.getBackground(); + SpaceWar.SpacePanel var33 = new SpaceWar.SpacePanel(); + float var34 = var33.getAlignmentX(); + var33.setVisible(false); + var33.nextFocus(); + var33.updateUI(); + var33.enableInputMethods(true); + var30.add((java.awt.Component)var31, (java.lang.Object)true); + java.awt.Image var44 = var31.createImage(1, (-1)); + java.awt.event.MouseListener[] var45 = var31.getMouseListeners(); + java.awt.Color var46 = var31.getBackground(); + boolean var47 = var31.getIgnoreRepaint(); + var31.enable(); + var31.repaint(); + java.lang.Object var50 = var0.getClientProperty((java.lang.Object)var31); + java.awt.event.ComponentListener[] var51 = var31.getComponentListeners(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var25); + + // Regression assertion (captures the current behavior of the code) + assertNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertNull(var29); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var32); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var34 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNull(var44); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var45); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var46); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var47 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var50); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var51); + + } + + public void test445() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test445"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + var0.show(false); + boolean var8 = var0.isPaintingForPrint(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var15 = var9.getMouseListeners(); + int var16 = var9.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var17 = var9.getInputMethodRequests(); + var0.addKeyListener((java.awt.event.KeyListener)var9); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + float var20 = var19.getAlignmentX(); + var19.setVisible(false); + boolean var23 = var19.isDoubleBuffered(); + var19.list(); + float var25 = var19.getAlignmentY(); + boolean var26 = var9.isFocusCycleRoot((java.awt.Container)var19); + SpaceWar.SpacePanel var28 = new SpaceWar.SpacePanel(); + float var29 = var28.getAlignmentX(); + var28.setVisible(false); + var28.nextFocus(); + var28.updateUI(); + java.awt.Component var34 = var9.add("", (java.awt.Component)var28); + boolean var36 = var28.areFocusTraversalKeysSet(3); + java.awt.Container var37 = var28.getTopLevelAncestor(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var29 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var34); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var36 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var37); + + } + + public void test446() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test446"); + + + SpaceWar.Enemy var2 = new SpaceWar.Enemy(0, 100); + int var3 = var2.getR(); + var2.explode(); + var2.update(); + var2.explode(); + boolean var7 = var2.isDead(); + int var8 = var2.getR(); + boolean var9 = var2.isDead(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == false); + + } + + public void test447() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test447"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + SpaceWar.SpacePanel var2 = new SpaceWar.SpacePanel(); + float var3 = var2.getAlignmentX(); + var2.setVisible(false); + java.awt.Dimension var6 = var2.getPreferredSize(); + boolean var7 = var2.getVerifyInputWhenFocusTarget(); + java.awt.Component var10 = var2.findComponentAt(10, 1); + var0.addKeyListener((java.awt.event.KeyListener)var2); + boolean var12 = var2.getFocusTraversalKeysEnabled(); + var2.requestFocus(); + java.lang.String var14 = var2.getName(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var14); + + } + + public void test448() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test448"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + java.awt.im.InputMethodRequests var3 = var0.getInputMethodRequests(); + var0.list(); + java.awt.Dimension var5 = var0.minimumSize(); + boolean var6 = var0.isOpaque(); + SpaceWar.SpacePanel var7 = new SpaceWar.SpacePanel(); + java.awt.Color var8 = var7.getBackground(); + var7.repaint(); + java.awt.im.InputMethodRequests var10 = var7.getInputMethodRequests(); + var7.setDoubleBuffered(true); + SpaceWar.SpacePanel var13 = new SpaceWar.SpacePanel(); + float var14 = var13.getAlignmentX(); + boolean var15 = var13.hasFocus(); + java.awt.Insets var16 = var13.getInsets(); + java.awt.Insets var17 = var7.getInsets(var16); + SpaceWar.SpacePanel var18 = new SpaceWar.SpacePanel(); + java.awt.Color var19 = var18.getBackground(); + var18.repaint(); + java.awt.im.InputMethodRequests var21 = var18.getInputMethodRequests(); + var18.setDoubleBuffered(true); + var18.setInheritsPopupMenu(false); + boolean var26 = var18.isFocusTraversalPolicySet(); + var18.transferFocusUpCycle(); + java.awt.image.BufferedImage var29 = var18.loadImg("SpaceWar.SpacePanel[,0,0,0x0,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + SpaceWar.SpacePanel var30 = new SpaceWar.SpacePanel(); + float var31 = var30.getAlignmentX(); + var30.setVisible(false); + var30.setInheritsPopupMenu(false); + boolean var36 = var30.isDoubleBuffered(); + boolean var37 = var30.isMinimumSizeSet(); + java.awt.Font var38 = var30.getFont(); + java.awt.FontMetrics var39 = var18.getFontMetrics(var38); + java.awt.FontMetrics var40 = var7.getFontMetrics(var38); + SpaceWar.SpacePanel var41 = new SpaceWar.SpacePanel(); + java.awt.Color var42 = var41.getBackground(); + var41.repaint(); + java.awt.im.InputMethodRequests var44 = var41.getInputMethodRequests(); + int var45 = var41.countComponents(); + java.awt.Dimension var46 = var41.getSize(); + var7.setMinimumSize(var46); + var0.setMinimumSize(var46); + var0.setIgnoreRepaint(true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertNull(var21); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var29); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var31 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var36 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var38); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var39); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var40); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var42); + + // Regression assertion (captures the current behavior of the code) + assertNull(var44); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var45 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var46); + + } + + public void test449() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test449"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + java.awt.im.InputMethodRequests var3 = var0.getInputMethodRequests(); + int var4 = var0.countComponents(); + java.awt.event.ComponentListener[] var5 = var0.getComponentListeners(); + var0.removeNotify(); + javax.swing.InputMap var7 = var0.getInputMap(); + int var8 = var0.getDebugGraphicsOptions(); + java.awt.Graphics var9 = var0.getGraphics(); + java.awt.Container var10 = var0.getTopLevelAncestor(); + SpaceWar.SpacePanel var11 = new SpaceWar.SpacePanel(); + float var12 = var11.getAlignmentX(); + var11.setVisible(false); + var11.nextFocus(); + var11.reshape((-1), 1, (-1), 10); + var11.disable(); + java.awt.LayoutManager var22 = var11.getLayout(); + var11.setVisible(false); + SpaceWar.SpacePanel var25 = new SpaceWar.SpacePanel(); + float var26 = var25.getAlignmentX(); + var25.setVisible(false); + var25.setInheritsPopupMenu(false); + boolean var31 = var25.isDoubleBuffered(); + boolean var32 = var25.isMinimumSizeSet(); + SpaceWar.SpacePanel var33 = new SpaceWar.SpacePanel(); + float var34 = var33.getAlignmentX(); + var33.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var39 = new SpaceWar.SpacePanel(); + float var40 = var39.getAlignmentX(); + var39.setVisible(false); + java.awt.Dimension var43 = var39.getPreferredSize(); + var33.setMaximumSize(var43); + boolean var45 = var33.getVerifyInputWhenFocusTarget(); + javax.accessibility.AccessibleContext var46 = var33.getAccessibleContext(); + boolean var47 = var33.isDoubleBuffered(); + java.awt.Rectangle var48 = var33.getVisibleRect(); + var25.setBounds(var48); + var11.computeVisibleRect(var48); + javax.swing.ActionMap var51 = var11.getActionMap(); + var0.setActionMap(var51); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var9); + + // Regression assertion (captures the current behavior of the code) + assertNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var31 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var32 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var34 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var40 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var43); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var45 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var46); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var47 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var48); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var51); + + } + + public void test450() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test450"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + SpaceWar.SpacePanel var4 = new SpaceWar.SpacePanel(); + java.awt.Color var5 = var4.getBackground(); + var0.setForeground(var5); + SpaceWar.SpacePanel var7 = new SpaceWar.SpacePanel(); + float var8 = var7.getAlignmentX(); + var7.setVisible(false); + boolean var11 = var7.isDoubleBuffered(); + java.awt.dnd.DropTarget var12 = var7.getDropTarget(); + var7.show(false); + java.awt.Rectangle var15 = var7.getVisibleRect(); + var0.repaint(var15); + java.awt.FocusTraversalPolicy var17 = var0.getFocusTraversalPolicy(); + java.awt.im.InputMethodRequests var18 = var0.getInputMethodRequests(); + var0.layout(); + java.awt.Point var20 = var0.getMousePosition(); + java.awt.Graphics var21 = var0.getGraphics(); + boolean var22 = var0.isManagingFocus(); + java.awt.event.MouseMotionListener[] var23 = var0.getMouseMotionListeners(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertNull(var21); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var22 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var23); + + } + + public void test451() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test451"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.setEnabled(false); + java.awt.Image var8 = var0.createImage(10, 100); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + java.awt.Color var10 = var9.getBackground(); + var0.setForeground(var10); + var0.setFocusTraversalPolicyProvider(true); + java.util.Set var15 = var0.getFocusTraversalKeys(2); + boolean var16 = var0.getFocusTraversalKeysEnabled(); + // The following exception was thrown during execution. + // This behavior will recorded for regression testing. + try { + java.awt.Component var18 = var0.getComponent(500); + fail("Expected exception of type java.lang.ArrayIndexOutOfBoundsException"); + } catch (java.lang.ArrayIndexOutOfBoundsException e) { + // Expected exception. + } + + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == true); + + } + + public void test452() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test452"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.setInheritsPopupMenu(false); + var0.setFocusTraversalPolicyProvider(true); + java.awt.Container var8 = var0.getFocusCycleRootAncestor(); + var0.firePropertyChange("SpaceWar.SpacePanel[,-1,1,-1x10,invalid,hidden,disabled,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", 3, (-1)); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNull(var8); + + } + + public void test453() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test453"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + var0.list(); + var0.setAutoscrolls(false); + boolean var8 = var0.isFocusTraversable(); + // The following exception was thrown during execution. + // This behavior will recorded for regression testing. + try { + var0.remove(99); + fail("Expected exception of type java.lang.ArrayIndexOutOfBoundsException"); + } catch (java.lang.ArrayIndexOutOfBoundsException e) { + // Expected exception. + } + + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == true); + + } + + public void test454() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test454"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.setInheritsPopupMenu(false); + var0.move(10, 10); + var0.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var0.removeAll(); + var0.setInheritsPopupMenu(true); + SpaceWar.SpacePanel var16 = new SpaceWar.SpacePanel(); + float var17 = var16.getAlignmentX(); + boolean var18 = var16.hasFocus(); + java.awt.Insets var19 = var16.getInsets(); + java.awt.Rectangle var20 = var16.bounds(); + java.awt.Rectangle var21 = var0.getBounds(var20); + boolean var22 = var0.requestFocusInWindow(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var21); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var22 == false); + + } + + public void test455() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test455"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + var0.enable(false); + java.awt.Container var7 = var0.getTopLevelAncestor(); + java.awt.Dimension var8 = var0.minimumSize(); + java.awt.Dimension var9 = var0.preferredSize(); + java.awt.Component[] var10 = var0.getComponents(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var9); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var10); + + } + + public void test456() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test456"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + var0.setRequestFocusEnabled(false); + var0.setIgnoreRepaint(false); + java.lang.String var7 = var0.toString(); + java.awt.Color var8 = var0.getBackground(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.setVisible(false); + java.awt.Dimension var13 = var9.getPreferredSize(); + java.awt.Toolkit var14 = var9.getToolkit(); + java.awt.Toolkit var15 = var9.getToolkit(); + SpaceWar.Player var16 = new SpaceWar.Player(); + var16.increasePower(25); + int var19 = var16.getScore(); + var16.setRigth(true); + var16.loseLife(); + var0.putClientProperty((java.lang.Object)var9, (java.lang.Object)var16); + boolean var24 = var16.isRecovering(); + boolean var25 = var16.isDead(); + int var26 = var16.getY(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var7 + "' != '" + "SpaceWar.SpacePanel[,0,0,0var7,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"+ "'", var7.equals("SpaceWar.SpacePanel[,0,0,0var7,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]")); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var24 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == 500); + + } + + public void test457() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test457"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var1 = new SpaceWar.SpacePanel(); + java.awt.Color var2 = var1.getBackground(); + SpaceWar.SpacePanel var3 = new SpaceWar.SpacePanel(); + float var4 = var3.getAlignmentX(); + var3.setVisible(false); + var3.nextFocus(); + var3.updateUI(); + var3.enableInputMethods(true); + var0.add((java.awt.Component)var1, (java.lang.Object)true); + boolean var13 = var1.areFocusTraversalKeysSet(0); + SpaceWar.SpacePanel var14 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var15 = new SpaceWar.SpacePanel(); + java.awt.Color var16 = var15.getBackground(); + SpaceWar.SpacePanel var17 = new SpaceWar.SpacePanel(); + float var18 = var17.getAlignmentX(); + var17.setVisible(false); + var17.nextFocus(); + var17.updateUI(); + var17.enableInputMethods(true); + var14.add((java.awt.Component)var15, (java.lang.Object)true); + boolean var26 = var14.isMinimumSizeSet(); + java.awt.event.HierarchyListener[] var27 = var14.getHierarchyListeners(); + SpaceWar.SpacePanel var28 = new SpaceWar.SpacePanel(); + float var29 = var28.getAlignmentX(); + var28.setVisible(false); + SpaceWar.SpacePanel var32 = new SpaceWar.SpacePanel(); + java.awt.Color var33 = var32.getBackground(); + var28.setForeground(var33); + SpaceWar.SpacePanel var35 = new SpaceWar.SpacePanel(); + float var36 = var35.getAlignmentX(); + var35.setVisible(false); + boolean var39 = var35.isDoubleBuffered(); + java.awt.dnd.DropTarget var40 = var35.getDropTarget(); + var35.show(false); + java.awt.Rectangle var43 = var35.getVisibleRect(); + var28.repaint(var43); + java.awt.FocusTraversalPolicy var45 = var28.getFocusTraversalPolicy(); + java.awt.im.InputMethodRequests var46 = var28.getInputMethodRequests(); + var28.layout(); + boolean var48 = var28.isFocusTraversalPolicyProvider(); + java.lang.Object var49 = var14.getClientProperty((java.lang.Object)var48); + boolean var50 = var14.isFocusTraversable(); + var1.remove((java.awt.Component)var14); + SpaceWar.SpacePanel var52 = new SpaceWar.SpacePanel(); + java.awt.Color var53 = var52.getBackground(); + var52.repaint(); + var52.setRequestFocusEnabled(false); + var52.reshape(100, 0, 100, 0); + var52.requestFocus(); + java.awt.Rectangle var63 = var52.getVisibleRect(); + var14.repaint(var63); + SpaceWar.SpacePanel var65 = new SpaceWar.SpacePanel(); + float var66 = var65.getAlignmentX(); + var65.setVisible(false); + SpaceWar.SpacePanel var69 = new SpaceWar.SpacePanel(); + java.awt.Color var70 = var69.getBackground(); + var65.setForeground(var70); + SpaceWar.SpacePanel var72 = new SpaceWar.SpacePanel(); + float var73 = var72.getAlignmentX(); + var72.setVisible(false); + boolean var76 = var72.isDoubleBuffered(); + java.awt.dnd.DropTarget var77 = var72.getDropTarget(); + var72.show(false); + java.awt.Rectangle var80 = var72.getVisibleRect(); + var65.repaint(var80); + java.awt.Component.BaselineResizeBehavior var82 = var65.getBaselineResizeBehavior(); + var65.firePropertyChange("SpaceWar.SpacePanel[,-1,1,-1x10,invalid,hidden,disabled,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", 1L, 1L); + boolean var87 = var65.isFocusTraversable(); + boolean var88 = var14.isAncestorOf((java.awt.Component)var65); + javax.swing.JRootPane var89 = var14.getRootPane(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var2); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var27); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var29 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var33); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var36 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var39 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var40); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var43); + + // Regression assertion (captures the current behavior of the code) + assertNull(var45); + + // Regression assertion (captures the current behavior of the code) + assertNull(var46); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var48 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var49); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var50 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var53); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var63); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var66 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var70); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var73 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var76 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var77); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var80); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var82); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var87 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var88 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var89); + + } + + public void test458() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test458"); + + + SpaceWar.Bullet var3 = new SpaceWar.Bullet(100.0d, 1, 3); + double var4 = var3.getX(); + double var5 = var3.getY(); + boolean var6 = var3.update(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 1.0d); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == 3.0d); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == false); + + } + + public void test459() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test459"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + java.awt.event.MouseMotionListener[] var6 = var0.getMouseMotionListeners(); + java.awt.event.ComponentListener[] var7 = var0.getComponentListeners(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + var8.nextFocus(); + var8.repaint(1L); + SpaceWar.SpacePanel var15 = new SpaceWar.SpacePanel(); + float var16 = var15.getAlignmentX(); + var15.setVisible(false); + boolean var19 = var15.isDoubleBuffered(); + var15.list(); + SpaceWar.SpacePanel var21 = new SpaceWar.SpacePanel(); + float var22 = var21.getAlignmentX(); + var21.setVisible(false); + boolean var25 = var21.isDoubleBuffered(); + java.awt.dnd.DropTarget var26 = var21.getDropTarget(); + var21.show(false); + java.awt.Rectangle var29 = var21.getVisibleRect(); + java.awt.Rectangle var30 = var15.getBounds(var29); + var8.setBounds(var30); + var0.paintImmediately(var30); + java.awt.Point var33 = var0.getMousePosition(); + java.awt.image.BufferedImage var35 = var0.loadImg("SpaceWar.SpacePanel[,-1,1,-1x10,invalid,hidden,disabled,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + var0.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", 3, 100); + java.awt.ComponentOrientation var40 = var0.getComponentOrientation(); + var0.setAlignmentY(10.0f); + SpaceWar.SpacePanel var43 = new SpaceWar.SpacePanel(); + float var44 = var43.getAlignmentX(); + var43.setVisible(false); + var43.nextFocus(); + var43.updateUI(); + var43.enableInputMethods(true); + java.awt.Point var52 = var43.getMousePosition(false); + SpaceWar.SpacePanel var53 = new SpaceWar.SpacePanel(); + float var54 = var53.getAlignmentX(); + var53.setVisible(false); + boolean var57 = var53.isDoubleBuffered(); + var53.list(); + SpaceWar.SpacePanel var59 = new SpaceWar.SpacePanel(); + float var60 = var59.getAlignmentX(); + var59.setVisible(false); + boolean var63 = var59.isDoubleBuffered(); + java.awt.dnd.DropTarget var64 = var59.getDropTarget(); + var59.show(false); + java.awt.Rectangle var67 = var59.getVisibleRect(); + java.awt.Rectangle var68 = var53.getBounds(var67); + var43.scrollRectToVisible(var67); + java.awt.Rectangle var70 = var0.getBounds(var67); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var22 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var29); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var30); + + // Regression assertion (captures the current behavior of the code) + assertNull(var33); + + // Regression assertion (captures the current behavior of the code) + assertNull(var35); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var40); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var44 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNull(var52); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var54 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var57 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var60 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var63 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var64); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var67); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var68); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var70); + + } + + public void test460() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test460"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var6 = var0.getUI(); + java.awt.im.InputMethodRequests var7 = var0.getInputMethodRequests(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + var8.nextFocus(); + var8.updateUI(); + var8.enableInputMethods(true); + var8.setSize((-1), 1); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + var19.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var0.add((java.awt.Component)var8, (java.lang.Object)"SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + java.awt.ComponentOrientation var25 = var8.getComponentOrientation(); + java.beans.VetoableChangeListener[] var26 = var8.getVetoableChangeListeners(); + java.awt.dnd.DropTarget var27 = var8.getDropTarget(); + var8.repaint(3, 499, 400, 1); + var8.repaint(1L); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var25); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertNull(var27); + + } + + public void test461() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test461"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.updateUI(); + var0.enableInputMethods(true); + var0.setSize((-1), 1); + boolean var13 = var0.contains(1, 1); + java.awt.Dimension var14 = var0.getMinimumSize(); + java.beans.PropertyChangeListener[] var16 = var0.getPropertyChangeListeners("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=8,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + } + + public void test462() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test462"); + + + SpaceWar.PowerUp var3 = new SpaceWar.PowerUp(100, (-1.0d), 0.0d); + double var4 = var3.getR(); + double var5 = var3.getY(); + double var6 = var3.getY(); + int var7 = var3.getType(); + double var8 = var3.getR(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0.0d); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == 0.0d); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == 0.0d); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 100); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 0.0d); + + } + + public void test463() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test463"); + + + SpaceWar.Explosion var4 = new SpaceWar.Explosion(370.2289277239558d, (-1.0d), 24, 0); + + } + + public void test464() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test464"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + java.awt.Dimension var4 = var0.getPreferredSize(); + boolean var5 = var0.getVerifyInputWhenFocusTarget(); + java.awt.Component var8 = var0.findComponentAt(10, 1); + boolean var9 = var0.requestDefaultFocus(); + java.awt.Insets var10 = var0.getInsets(); + var0.setDoubleBuffered(false); + java.awt.Point var14 = var0.getMousePosition(true); + var0.updateUI(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var4); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertNull(var14); + + } + + public void test465() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test465"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.updateUI(); + var0.enableInputMethods(true); + java.lang.String var8 = var0.toString(); + java.awt.FocusTraversalPolicy var9 = var0.getFocusTraversalPolicy(); + var0.setLocation(0, 24); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var8 + "' != '" + "SpaceWar.SpacePanel[,0,0,0var8,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"+ "'", var8.equals("SpaceWar.SpacePanel[,0,0,0var8,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]")); + + // Regression assertion (captures the current behavior of the code) + assertNull(var9); + + } + + public void test466() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test466"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + float var7 = var6.getAlignmentX(); + var6.setVisible(false); + java.awt.Dimension var10 = var6.getPreferredSize(); + var0.setMaximumSize(var10); + boolean var12 = var0.getVerifyInputWhenFocusTarget(); + int var13 = var0.getX(); + SpaceWar.SpacePanel var14 = new SpaceWar.SpacePanel(); + float var15 = var14.getAlignmentX(); + SpaceWar.SpacePanel var16 = new SpaceWar.SpacePanel(); + float var17 = var16.getAlignmentX(); + var16.setVisible(false); + java.awt.Dimension var20 = var16.getPreferredSize(); + boolean var21 = var16.getVerifyInputWhenFocusTarget(); + java.awt.Component var24 = var16.findComponentAt(10, 1); + var14.addKeyListener((java.awt.event.KeyListener)var16); + var16.repaint(100, (-1), (-1), 1); + SpaceWar.SpacePanel var31 = new SpaceWar.SpacePanel(); + java.awt.Color var32 = var31.getBackground(); + var31.repaint(); + java.awt.im.InputMethodRequests var34 = var31.getInputMethodRequests(); + java.awt.GraphicsConfiguration var35 = var31.getGraphicsConfiguration(); + var16.remove((java.awt.Component)var31); + java.awt.Font var37 = var31.getFont(); + var0.setFont(var37); + boolean var39 = var0.isManagingFocus(); + SpaceWar.SpacePanel var40 = new SpaceWar.SpacePanel(); + float var41 = var40.getAlignmentX(); + var40.setVisible(false); + var40.nextFocus(); + var40.requestFocus(); + java.lang.Object var46 = var0.getClientProperty((java.lang.Object)var40); + java.lang.Object var47 = var0.getTreeLock(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var32); + + // Regression assertion (captures the current behavior of the code) + assertNull(var34); + + // Regression assertion (captures the current behavior of the code) + assertNull(var35); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var37); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var39 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var41 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNull(var46); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var47); + + } + + public void test467() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test467"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var1 = new SpaceWar.SpacePanel(); + java.awt.Color var2 = var1.getBackground(); + SpaceWar.SpacePanel var3 = new SpaceWar.SpacePanel(); + float var4 = var3.getAlignmentX(); + var3.setVisible(false); + var3.nextFocus(); + var3.updateUI(); + var3.enableInputMethods(true); + var0.add((java.awt.Component)var1, (java.lang.Object)true); + java.awt.Dimension var12 = var1.getPreferredSize(); + var1.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", (-1.0f), 100.0f); + SpaceWar.SpacePanel var17 = new SpaceWar.SpacePanel(); + float var18 = var17.getAlignmentX(); + var17.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var23 = var17.getMouseListeners(); + int var24 = var17.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var25 = var17.getInputMethodRequests(); + java.awt.Point var26 = var17.getMousePosition(); + SpaceWar.SpacePanel var27 = new SpaceWar.SpacePanel(); + float var28 = var27.getAlignmentX(); + var27.setVisible(false); + var27.setInheritsPopupMenu(false); + boolean var33 = var27.isDoubleBuffered(); + boolean var34 = var27.isMinimumSizeSet(); + java.awt.Font var35 = var27.getFont(); + var17.setFont(var35); + java.awt.FontMetrics var37 = var1.getFontMetrics(var35); + SpaceWar.SpacePanel var38 = new SpaceWar.SpacePanel(); + float var39 = var38.getAlignmentX(); + var38.setVisible(false); + java.awt.Dimension var42 = var38.getPreferredSize(); + java.awt.Toolkit var43 = var38.getToolkit(); + boolean var44 = var38.isFocusable(); + javax.swing.KeyStroke[] var45 = var38.getRegisteredKeyStrokes(); + java.awt.Component var48 = var38.getComponentAt(100, 100); + java.lang.Object var49 = var38.getTreeLock(); + boolean var52 = var38.inside(400, 0); + java.awt.event.MouseWheelListener[] var53 = var38.getMouseWheelListeners(); + var38.requestFocus(); + SpaceWar.SpacePanel var55 = new SpaceWar.SpacePanel(); + java.awt.Color var56 = var55.getBackground(); + var55.repaint(); + java.awt.im.InputMethodRequests var58 = var55.getInputMethodRequests(); + var55.setDoubleBuffered(true); + var55.setInheritsPopupMenu(false); + boolean var63 = var55.isFocusTraversalPolicySet(); + var55.transferFocusUpCycle(); + java.awt.image.BufferedImage var66 = var55.loadImg("SpaceWar.SpacePanel[,0,0,0x0,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + SpaceWar.SpacePanel var67 = new SpaceWar.SpacePanel(); + float var68 = var67.getAlignmentX(); + var67.setVisible(false); + var67.setInheritsPopupMenu(false); + boolean var73 = var67.isDoubleBuffered(); + boolean var74 = var67.isMinimumSizeSet(); + java.awt.Font var75 = var67.getFont(); + java.awt.FontMetrics var76 = var55.getFontMetrics(var75); + var38.setFont(var75); + java.awt.FontMetrics var78 = var1.getFontMetrics(var75); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var2); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var23); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var24 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var25); + + // Regression assertion (captures the current behavior of the code) + assertNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var28 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var33 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var34 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var35); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var37); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var39 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var42); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var43); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var44 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var45); + + // Regression assertion (captures the current behavior of the code) + assertNull(var48); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var49); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var52 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var53); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var56); + + // Regression assertion (captures the current behavior of the code) + assertNull(var58); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var63 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var66); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var68 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var73 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var74 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var75); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var76); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var78); + + } + + public void test468() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test468"); + + + SpaceWar.Player var0 = new SpaceWar.Player(); + boolean var1 = var0.isRecovering(); + var0.loseLife(); + int var3 = var0.getR(); + var0.loseLife(); + int var5 = var0.getY(); + boolean var6 = var0.isRecovering(); + var0.setDown(false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == 25); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == 500); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == true); + + } + + public void test469() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test469"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var6 = var0.getMouseListeners(); + boolean var7 = var0.isFocusCycleRoot(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == false); + + } + + public void test470() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test470"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + var0.setRequestFocusEnabled(false); + var0.reshape(100, 0, 100, 0); + var0.requestFocus(); + var0.firePropertyChange("hi!", '4', ' '); + SpaceWar.Enemy var17 = new SpaceWar.Enemy(0, 100); + int var18 = var17.getR(); + var17.explode(); + var0.putClientProperty((java.lang.Object)var17, (java.lang.Object)(short)10); + boolean var23 = var0.requestFocus(false); + java.awt.Component var24 = var0.getNextFocusableComponent(); + SpaceWar.SpacePanel var26 = new SpaceWar.SpacePanel(); + java.awt.Color var27 = var26.getBackground(); + var26.repaint(); + var26.setRequestFocusEnabled(false); + var26.removeAll(); + SpaceWar.SpacePanel var32 = new SpaceWar.SpacePanel(); + float var33 = var32.getAlignmentX(); + var32.setVisible(false); + boolean var36 = var32.isDoubleBuffered(); + java.awt.dnd.DropTarget var37 = var32.getDropTarget(); + var32.show(false); + boolean var40 = var32.isPaintingForPrint(); + SpaceWar.SpacePanel var41 = new SpaceWar.SpacePanel(); + float var42 = var41.getAlignmentX(); + var41.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var47 = var41.getMouseListeners(); + int var48 = var41.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var49 = var41.getInputMethodRequests(); + var32.addKeyListener((java.awt.event.KeyListener)var41); + SpaceWar.SpacePanel var51 = new SpaceWar.SpacePanel(); + float var52 = var51.getAlignmentX(); + var51.setVisible(false); + boolean var55 = var51.isDoubleBuffered(); + var51.list(); + float var57 = var51.getAlignmentY(); + boolean var58 = var41.isFocusCycleRoot((java.awt.Container)var51); + SpaceWar.SpacePanel var60 = new SpaceWar.SpacePanel(); + float var61 = var60.getAlignmentX(); + var60.setVisible(false); + var60.nextFocus(); + var60.updateUI(); + java.awt.Component var66 = var41.add("", (java.awt.Component)var60); + boolean var67 = var26.isAncestorOf((java.awt.Component)var60); + java.awt.Component var68 = var0.add("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=10,height=10]]", (java.awt.Component)var26); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var27); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var33 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var36 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var37); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var40 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var42 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var47); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var48 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var49); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var52 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var55 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var57 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var58 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var61 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var66); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var67 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var68); + + } + + public void test471() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test471"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + var0.list(); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + float var7 = var6.getAlignmentX(); + var6.setVisible(false); + boolean var10 = var6.isDoubleBuffered(); + java.awt.dnd.DropTarget var11 = var6.getDropTarget(); + var6.show(false); + java.awt.Rectangle var14 = var6.getVisibleRect(); + java.awt.Rectangle var15 = var0.getBounds(var14); + javax.swing.JToolTip var16 = var0.createToolTip(); + var0.firePropertyChange("", false, false); + boolean var21 = var0.isFocusTraversalPolicySet(); + var0.repaint(1L); + java.awt.Dimension var24 = var0.getSize(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var24); + + } + + public void test472() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test472"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + java.awt.im.InputMethodRequests var3 = var0.getInputMethodRequests(); + var0.list(); + int var5 = var0.getHeight(); + var0.disable(); + var0.setFocusCycleRoot(true); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.setVisible(false); + boolean var13 = var9.isDoubleBuffered(); + java.awt.dnd.DropTarget var14 = var9.getDropTarget(); + var9.show(false); + boolean var17 = var9.isPaintingForPrint(); + SpaceWar.SpacePanel var18 = new SpaceWar.SpacePanel(); + float var19 = var18.getAlignmentX(); + var18.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var24 = var18.getMouseListeners(); + int var25 = var18.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var26 = var18.getInputMethodRequests(); + var9.addKeyListener((java.awt.event.KeyListener)var18); + SpaceWar.SpacePanel var28 = new SpaceWar.SpacePanel(); + float var29 = var28.getAlignmentX(); + var28.setVisible(false); + boolean var32 = var28.isDoubleBuffered(); + var28.list(); + float var34 = var28.getAlignmentY(); + boolean var35 = var18.isFocusCycleRoot((java.awt.Container)var28); + var28.firePropertyChange("", 1L, 1L); + var28.setAutoscrolls(false); + var28.reshape(0, 1, 100, 100); + boolean var47 = var28.isFocusTraversalPolicySet(); + java.awt.Container var48 = var28.getFocusCycleRootAncestor(); + var0.setComponentZOrder((java.awt.Component)var28, 0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var29 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var32 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var34 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var35 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var47 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var48); + + } + + public void test473() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test473"); + + + SpaceWar.Player var0 = new SpaceWar.Player(); + boolean var1 = var0.isRecovering(); + var0.setRigth(false); + int var4 = var0.getPowerLevel(); + var0.setUp(false); + int var7 = var0.getPowerLevel(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0); + + } + + public void test474() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test474"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + var0.list(); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + float var7 = var6.getAlignmentX(); + var6.setVisible(false); + boolean var10 = var6.isDoubleBuffered(); + java.awt.dnd.DropTarget var11 = var6.getDropTarget(); + var6.show(false); + java.awt.Rectangle var14 = var6.getVisibleRect(); + java.awt.image.BufferedImage var16 = var6.loadImg("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + boolean var17 = var0.isAncestorOf((java.awt.Component)var6); + java.awt.GraphicsConfiguration var18 = var6.getGraphicsConfiguration(); + java.awt.Font var19 = var6.getFont(); + javax.swing.InputMap var20 = var6.getInputMap(); + java.lang.String var21 = var6.getToolTipText(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertNull(var21); + + } + + public void test475() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test475"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + boolean var6 = var0.isFocusCycleRoot(); + var0.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", 100, 0); + SpaceWar.SpacePanel var11 = new SpaceWar.SpacePanel(); + float var12 = var11.getAlignmentX(); + var11.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var17 = var11.getUI(); + var0.add((java.awt.Component)var11, (java.lang.Object)(short)0); + SpaceWar.SpacePanel var20 = new SpaceWar.SpacePanel(); + float var21 = var20.getAlignmentX(); + var20.setVisible(false); + var20.nextFocus(); + var20.repaint(1L); + SpaceWar.SpacePanel var27 = new SpaceWar.SpacePanel(); + float var28 = var27.getAlignmentX(); + var27.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var33 = new SpaceWar.SpacePanel(); + float var34 = var33.getAlignmentX(); + var33.setVisible(false); + java.awt.Dimension var37 = var33.getPreferredSize(); + var27.setMaximumSize(var37); + var20.setPreferredSize(var37); + javax.swing.plaf.PanelUI var40 = var20.getUI(); + SpaceWar.SpacePanel var41 = new SpaceWar.SpacePanel(); + float var42 = var41.getAlignmentX(); + var41.setVisible(false); + SpaceWar.SpacePanel var45 = new SpaceWar.SpacePanel(); + java.awt.Color var46 = var45.getBackground(); + var41.setForeground(var46); + SpaceWar.SpacePanel var48 = new SpaceWar.SpacePanel(); + float var49 = var48.getAlignmentX(); + var48.setVisible(false); + boolean var52 = var48.isDoubleBuffered(); + java.awt.dnd.DropTarget var53 = var48.getDropTarget(); + var48.show(false); + java.awt.Rectangle var56 = var48.getVisibleRect(); + var41.repaint(var56); + java.awt.FocusTraversalPolicy var58 = var41.getFocusTraversalPolicy(); + var41.resetKeyboardActions(); + SpaceWar.SpacePanel var60 = new SpaceWar.SpacePanel(); + float var61 = var60.getAlignmentX(); + var60.setVisible(false); + boolean var64 = var60.isDoubleBuffered(); + java.awt.dnd.DropTarget var65 = var60.getDropTarget(); + var60.show(false); + java.awt.Rectangle var68 = var60.getVisibleRect(); + var41.computeVisibleRect(var68); + javax.swing.ActionMap var70 = var41.getActionMap(); + var20.setActionMap(var70); + java.awt.Point var72 = var20.getMousePosition(); + int var73 = var11.getComponentZOrder((java.awt.Component)var20); + var11.disable(); + java.lang.String var75 = var11.getName(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var28 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var34 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var37); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var40); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var42 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var46); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var49 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var52 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var53); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var56); + + // Regression assertion (captures the current behavior of the code) + assertNull(var58); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var61 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var64 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var65); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var68); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var70); + + // Regression assertion (captures the current behavior of the code) + assertNull(var72); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var73 == (-1)); + + // Regression assertion (captures the current behavior of the code) + assertNull(var75); + + } + + public void test476() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test476"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + var0.list(); + float var6 = var0.getAlignmentY(); + boolean var7 = var0.isOpaque(); + var0.nextFocus(); + java.awt.Component var9 = var0.getNextFocusableComponent(); + boolean var10 = var0.isMaximumSizeSet(); + java.awt.peer.ComponentPeer var11 = var0.getPeer(); + java.awt.Color var12 = var0.getBackground(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var9); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var12); + + } + + public void test477() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test477"); + + + SpaceWar.Player var0 = new SpaceWar.Player(); + int var1 = var0.getPower(); + var0.setLeft(true); + var0.increasePower(0); + int var6 = var0.getR(); + int var7 = var0.getLives(); + var0.loseLife(); + int var9 = var0.getScore(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == 25); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 3); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0); + + } + + public void test478() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test478"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.updateUI(); + var0.enableInputMethods(true); + java.awt.Point var8 = var0.location(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.setVisible(false); + var9.nextFocus(); + java.awt.Component var14 = var0.add((java.awt.Component)var9); + boolean var15 = var0.isRequestFocusEnabled(); + var0.setFocusCycleRoot(false); + SpaceWar.SpacePanel var18 = new SpaceWar.SpacePanel(); + float var19 = var18.getAlignmentX(); + var18.setVisible(false); + var18.nextFocus(); + var18.repaint(1L); + SpaceWar.SpacePanel var25 = new SpaceWar.SpacePanel(); + float var26 = var25.getAlignmentX(); + var25.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var31 = new SpaceWar.SpacePanel(); + float var32 = var31.getAlignmentX(); + var31.setVisible(false); + java.awt.Dimension var35 = var31.getPreferredSize(); + var25.setMaximumSize(var35); + var18.setPreferredSize(var35); + javax.swing.plaf.PanelUI var38 = var18.getUI(); + SpaceWar.SpacePanel var39 = new SpaceWar.SpacePanel(); + float var40 = var39.getAlignmentX(); + var39.setVisible(false); + var39.nextFocus(); + var39.reshape((-1), 1, (-1), 10); + var39.disable(); + java.awt.LayoutManager var50 = var39.getLayout(); + java.awt.Container var51 = var39.getParent(); + java.lang.String var52 = var39.getUIClassID(); + SpaceWar.Enemy var55 = new SpaceWar.Enemy(0, 10); + var18.add((java.awt.Component)var39, (java.lang.Object)10); + javax.swing.JToolTip var57 = var18.createToolTip(); + java.awt.Component var58 = var0.add((java.awt.Component)var57); + boolean var59 = var57.isVisible(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var32 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var35); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var38); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var40 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var50); + + // Regression assertion (captures the current behavior of the code) + assertNull(var51); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var52 + "' != '" + "PanelUI"+ "'", var52.equals("PanelUI")); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var57); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var58); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var59 == true); + + } + + public void test479() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test479"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.setInheritsPopupMenu(false); + var0.setFocusTraversalPolicyProvider(true); + boolean var10 = var0.inside(25, 3); + java.awt.Container var11 = var0.getFocusCycleRootAncestor(); + var0.enable(true); + var0.paintImmediately(100, 0, 100, 399); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var11); + + } + + public void test480() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test480"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + var0.list(); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + float var7 = var6.getAlignmentX(); + var6.setVisible(false); + boolean var10 = var6.isDoubleBuffered(); + java.awt.dnd.DropTarget var11 = var6.getDropTarget(); + var6.show(false); + java.awt.Rectangle var14 = var6.getVisibleRect(); + java.awt.Rectangle var15 = var0.getBounds(var14); + javax.swing.JToolTip var16 = var0.createToolTip(); + boolean var17 = var16.getInheritsPopupMenu(); + var16.layout(); + var16.invalidate(); + SpaceWar.SpacePanel var20 = new SpaceWar.SpacePanel(); + float var21 = var20.getAlignmentX(); + var20.setVisible(false); + SpaceWar.SpacePanel var24 = new SpaceWar.SpacePanel(); + java.awt.Color var25 = var24.getBackground(); + var20.setForeground(var25); + SpaceWar.SpacePanel var27 = new SpaceWar.SpacePanel(); + float var28 = var27.getAlignmentX(); + var27.setVisible(false); + boolean var31 = var27.isDoubleBuffered(); + java.awt.dnd.DropTarget var32 = var27.getDropTarget(); + var27.show(false); + java.awt.Rectangle var35 = var27.getVisibleRect(); + var20.repaint(var35); + java.awt.FocusTraversalPolicy var37 = var20.getFocusTraversalPolicy(); + SpaceWar.SpacePanel var38 = new SpaceWar.SpacePanel(); + float var39 = var38.getAlignmentX(); + var38.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var44 = var38.getUI(); + java.awt.im.InputMethodRequests var45 = var38.getInputMethodRequests(); + SpaceWar.SpacePanel var46 = new SpaceWar.SpacePanel(); + float var47 = var46.getAlignmentX(); + var46.setVisible(false); + var46.nextFocus(); + var46.updateUI(); + var46.enableInputMethods(true); + var46.setSize((-1), 1); + SpaceWar.SpacePanel var57 = new SpaceWar.SpacePanel(); + var57.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var38.add((java.awt.Component)var46, (java.lang.Object)"SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + java.awt.ComponentOrientation var63 = var46.getComponentOrientation(); + java.beans.VetoableChangeListener[] var64 = var46.getVetoableChangeListeners(); + int var65 = var46.getHeight(); + javax.swing.ActionMap var66 = var46.getActionMap(); + var20.setActionMap(var66); + java.awt.Font var68 = var20.getFont(); + java.awt.FontMetrics var69 = var16.getFontMetrics(var68); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var25); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var28 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var31 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var32); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var35); + + // Regression assertion (captures the current behavior of the code) + assertNull(var37); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var39 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var44); + + // Regression assertion (captures the current behavior of the code) + assertNull(var45); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var47 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var63); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var64); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var65 == 1); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var66); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var68); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var69); + + } + + public void test481() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test481"); + + + SpaceWar.Player var0 = new SpaceWar.Player(); + boolean var1 = var0.isRecovering(); + var0.setRigth(false); + var0.setScore(0); + var0.loseLife(); + int var7 = var0.getR(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 25); + + } + + public void test482() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test482"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var6 = var0.getMouseListeners(); + int var7 = var0.getDebugGraphicsOptions(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + boolean var12 = var8.isDoubleBuffered(); + java.awt.dnd.DropTarget var13 = var8.getDropTarget(); + var8.show(false); + java.awt.Rectangle var16 = var8.getVisibleRect(); + var0.paintImmediately(var16); + java.awt.Rectangle var18 = var0.getBounds(); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + float var20 = var19.getAlignmentX(); + var19.setVisible(false); + boolean var23 = var19.isDoubleBuffered(); + java.awt.dnd.DropTarget var24 = var19.getDropTarget(); + var19.show(false); + boolean var27 = var19.isPaintingForPrint(); + SpaceWar.SpacePanel var28 = new SpaceWar.SpacePanel(); + float var29 = var28.getAlignmentX(); + var28.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var34 = var28.getMouseListeners(); + int var35 = var28.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var36 = var28.getInputMethodRequests(); + var19.addKeyListener((java.awt.event.KeyListener)var28); + SpaceWar.SpacePanel var38 = new SpaceWar.SpacePanel(); + float var39 = var38.getAlignmentX(); + var38.setVisible(false); + boolean var42 = var38.isDoubleBuffered(); + var38.list(); + float var44 = var38.getAlignmentY(); + boolean var45 = var28.isFocusCycleRoot((java.awt.Container)var38); + boolean var46 = var38.isEnabled(); + java.awt.Dimension var47 = var38.getMaximumSize(); + var38.setFocusCycleRoot(false); + java.awt.event.ComponentListener[] var50 = var38.getComponentListeners(); + boolean var51 = var38.isFocusCycleRoot(); + var38.show(); + SpaceWar.SpacePanel var53 = new SpaceWar.SpacePanel(); + float var54 = var53.getAlignmentX(); + var53.setVisible(false); + boolean var57 = var53.isDoubleBuffered(); + var53.list(); + SpaceWar.SpacePanel var59 = new SpaceWar.SpacePanel(); + float var60 = var59.getAlignmentX(); + var59.setVisible(false); + boolean var63 = var59.isDoubleBuffered(); + java.awt.dnd.DropTarget var64 = var59.getDropTarget(); + var59.show(false); + java.awt.Rectangle var67 = var59.getVisibleRect(); + java.awt.Rectangle var68 = var53.getBounds(var67); + javax.swing.JToolTip var69 = var53.createToolTip(); + var53.firePropertyChange("", false, false); + var53.revalidate(); + int var75 = var53.getComponentCount(); + var0.add((java.awt.Component)var38, (java.lang.Object)var75); + boolean var77 = var0.isFocusable(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var29 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var34); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var35 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var36); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var39 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var42 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var44 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var45 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var46 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var47); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var50); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var51 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var54 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var57 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var60 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var63 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var64); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var67); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var68); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var69); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var75 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var77 == true); + + } + + public void test483() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test483"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + var0.setRequestFocusEnabled(false); + var0.reshape(100, 0, 100, 0); + var0.requestFocus(); + var0.firePropertyChange("hi!", '4', ' '); + java.awt.Point var15 = var0.getLocation(); + java.awt.Dimension var16 = var0.size(); + java.awt.Image var19 = var0.createImage((-1), (-1)); + java.awt.event.ComponentListener[] var20 = var0.getComponentListeners(); + var0.setName("PanelUI"); + var0.requestFocus(); + java.awt.Rectangle var24 = var0.getVisibleRect(); + java.awt.Rectangle var25 = var0.getBounds(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var25); + + } + + public void test484() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test484"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + var0.setRequestFocusEnabled(false); + var0.reshape(100, 0, 100, 0); + var0.requestFocus(); + var0.firePropertyChange("hi!", '4', ' '); + java.awt.Point var15 = var0.getLocation(); + java.awt.Dimension var16 = var0.size(); + boolean var17 = var0.isDoubleBuffered(); + var0.reshape(0, 3, 25, 3); + java.awt.Font var23 = var0.getFont(); + var0.removeNotify(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var23); + + } + + public void test485() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test485"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.setInheritsPopupMenu(false); + boolean var6 = var0.isDoubleBuffered(); + java.awt.FocusTraversalPolicy var7 = var0.getFocusTraversalPolicy(); + var0.setSize(400, (-1)); + var0.setInheritsPopupMenu(true); + SpaceWar.SpacePanel var13 = new SpaceWar.SpacePanel(); + float var14 = var13.getAlignmentX(); + var13.setVisible(false); + var13.setInheritsPopupMenu(false); + var13.setFocusTraversalPolicyProvider(true); + boolean var23 = var13.inside(25, 3); + SpaceWar.SpacePanel var24 = new SpaceWar.SpacePanel(); + float var25 = var24.getAlignmentX(); + var24.setVisible(false); + boolean var28 = var24.isDoubleBuffered(); + java.awt.dnd.DropTarget var29 = var24.getDropTarget(); + var24.show(false); + boolean var32 = var24.isPaintingForPrint(); + SpaceWar.SpacePanel var33 = new SpaceWar.SpacePanel(); + float var34 = var33.getAlignmentX(); + SpaceWar.SpacePanel var35 = new SpaceWar.SpacePanel(); + float var36 = var35.getAlignmentX(); + var35.setVisible(false); + java.awt.Dimension var39 = var35.getPreferredSize(); + boolean var40 = var35.getVerifyInputWhenFocusTarget(); + java.awt.Component var43 = var35.findComponentAt(10, 1); + var33.addKeyListener((java.awt.event.KeyListener)var35); + java.awt.Dimension var45 = var35.getMinimumSize(); + var24.setMinimumSize(var45); + var13.setPreferredSize(var45); + SpaceWar.SpacePanel var48 = new SpaceWar.SpacePanel(); + float var49 = var48.getAlignmentX(); + var48.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var54 = var48.getUI(); + java.awt.im.InputMethodRequests var55 = var48.getInputMethodRequests(); + SpaceWar.SpacePanel var56 = new SpaceWar.SpacePanel(); + float var57 = var56.getAlignmentX(); + var56.setVisible(false); + var56.nextFocus(); + var56.updateUI(); + var56.enableInputMethods(true); + var56.setSize((-1), 1); + SpaceWar.SpacePanel var67 = new SpaceWar.SpacePanel(); + var67.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var48.add((java.awt.Component)var56, (java.lang.Object)"SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + SpaceWar.SpacePanel var73 = new SpaceWar.SpacePanel(); + var73.setName(""); + java.awt.ComponentOrientation var76 = var73.getComponentOrientation(); + var48.applyComponentOrientation(var76); + var13.setComponentOrientation(var76); + java.awt.peer.ComponentPeer var79 = var13.getPeer(); + java.awt.Rectangle var80 = var13.getBounds(); + var0.computeVisibleRect(var80); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var28 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var29); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var32 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var34 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var36 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var39); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var40 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var43); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var45); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var49 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var54); + + // Regression assertion (captures the current behavior of the code) + assertNull(var55); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var57 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var76); + + // Regression assertion (captures the current behavior of the code) + assertNull(var79); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var80); + + } + + public void test486() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test486"); + + + SpaceWar.Bullet var3 = new SpaceWar.Bullet(25.0d, 499, 499); + + } + + public void test487() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test487"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + boolean var4 = var0.inside(0, (-1)); + SpaceWar.SpacePanel var5 = new SpaceWar.SpacePanel(); + float var6 = var5.getAlignmentX(); + var5.setVisible(false); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + java.awt.Color var10 = var9.getBackground(); + var5.setForeground(var10); + var0.setForeground(var10); + java.awt.image.VolatileImage var15 = var0.createVolatileImage(400, (-1)); + SpaceWar.SpacePanel var16 = new SpaceWar.SpacePanel(); + java.awt.Color var17 = var16.getBackground(); + boolean var20 = var16.inside(0, (-1)); + var16.transferFocusUpCycle(); + java.awt.Container var22 = var16.getParent(); + boolean var23 = var16.isMaximumSizeSet(); + var16.firePropertyChange("hi!", 594.7973940347722d, 5.0d); + java.awt.Component var30 = var16.getComponentAt(25, 0); + // The following exception was thrown during execution. + // This behavior will recorded for regression testing. + try { + java.awt.Component var32 = var0.add((java.awt.Component)var16, 25); + fail("Expected exception of type java.lang.IllegalArgumentException"); + } catch (java.lang.IllegalArgumentException e) { + // Expected exception. + } + + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var30); + + } + + public void test488() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test488"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + var0.layout(); + java.beans.VetoableChangeListener[] var6 = var0.getVetoableChangeListeners(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + } + + public void test489() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test489"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.reshape((-1), 1, (-1), 10); + var0.disable(); + java.awt.Component var13 = var0.findComponentAt(0, (-1)); + SpaceWar.SpacePanel var14 = new SpaceWar.SpacePanel(); + var14.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + javax.swing.plaf.PanelUI var19 = var14.getUI(); + SpaceWar.SpacePanel var20 = new SpaceWar.SpacePanel(); + float var21 = var20.getAlignmentX(); + var20.setVisible(false); + var20.nextFocus(); + var20.repaint(1L); + SpaceWar.SpacePanel var27 = new SpaceWar.SpacePanel(); + float var28 = var27.getAlignmentX(); + var27.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var33 = new SpaceWar.SpacePanel(); + float var34 = var33.getAlignmentX(); + var33.setVisible(false); + java.awt.Dimension var37 = var33.getPreferredSize(); + var27.setMaximumSize(var37); + var20.setPreferredSize(var37); + var14.setMaximumSize(var37); + var0.setSize(var37); + SpaceWar.SpacePanel var42 = new SpaceWar.SpacePanel(); + float var43 = var42.getAlignmentX(); + boolean var44 = var42.hasFocus(); + boolean var45 = var42.isPreferredSizeSet(); + SpaceWar.SpacePanel var46 = new SpaceWar.SpacePanel(); + java.awt.Color var47 = var46.getBackground(); + var46.repaint(); + var46.setRequestFocusEnabled(false); + int var51 = var42.getComponentZOrder((java.awt.Component)var46); + boolean var52 = var42.requestDefaultFocus(); + javax.swing.border.Border var53 = var42.getBorder(); + int var54 = var0.getComponentZOrder((java.awt.Component)var42); + javax.accessibility.AccessibleContext var55 = var42.getAccessibleContext(); + SpaceWar.SpacePanel var56 = new SpaceWar.SpacePanel(); + float var57 = var56.getAlignmentX(); + var56.setVisible(false); + var56.nextFocus(); + var56.updateUI(); + var56.enableInputMethods(true); + var56.setSize((-1), 1); + boolean var67 = var42.isAncestorOf((java.awt.Component)var56); + boolean var70 = var56.contains(24, 2); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var28 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var34 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var37); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var43 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var44 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var45 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var47); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var51 == (-1)); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var52 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var53); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var54 == (-1)); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var55); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var57 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var67 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var70 == false); + + } + + public void test490() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test490"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + var0.enable(false); + java.awt.Container var7 = var0.getTopLevelAncestor(); + boolean var9 = var0.requestFocus(true); + var0.setToolTipText("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=10,height=10]]"); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == false); + + } + + public void test491() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test491"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + java.awt.Dimension var4 = var0.getPreferredSize(); + java.awt.Toolkit var5 = var0.getToolkit(); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + var6.setName(""); + int var9 = var6.getX(); + SpaceWar.SpacePanel var10 = new SpaceWar.SpacePanel(); + float var11 = var10.getAlignmentX(); + var10.setVisible(false); + var10.nextFocus(); + SpaceWar.SpacePanel var15 = new SpaceWar.SpacePanel(); + float var16 = var15.getAlignmentX(); + var15.setVisible(false); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + java.awt.Color var20 = var19.getBackground(); + var15.setForeground(var20); + var10.setBackground(var20); + var6.setBackground(var20); + var0.setForeground(var20); + SpaceWar.SpacePanel var25 = new SpaceWar.SpacePanel(); + float var26 = var25.getAlignmentX(); + var25.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var31 = new SpaceWar.SpacePanel(); + float var32 = var31.getAlignmentX(); + var31.setVisible(false); + java.awt.Dimension var35 = var31.getPreferredSize(); + var25.setMaximumSize(var35); + boolean var37 = var25.getVerifyInputWhenFocusTarget(); + javax.accessibility.AccessibleContext var38 = var25.getAccessibleContext(); + boolean var39 = var25.isDoubleBuffered(); + java.awt.Rectangle var40 = var25.getVisibleRect(); + var0.scrollRectToVisible(var40); + SpaceWar.SpacePanel var42 = new SpaceWar.SpacePanel(); + float var43 = var42.getAlignmentX(); + var42.setVisible(false); + java.awt.Dimension var46 = var42.getPreferredSize(); + java.awt.Toolkit var47 = var42.getToolkit(); + SpaceWar.SpacePanel var48 = new SpaceWar.SpacePanel(); + var48.setName(""); + int var51 = var48.getX(); + SpaceWar.SpacePanel var52 = new SpaceWar.SpacePanel(); + float var53 = var52.getAlignmentX(); + var52.setVisible(false); + var52.nextFocus(); + SpaceWar.SpacePanel var57 = new SpaceWar.SpacePanel(); + float var58 = var57.getAlignmentX(); + var57.setVisible(false); + SpaceWar.SpacePanel var61 = new SpaceWar.SpacePanel(); + java.awt.Color var62 = var61.getBackground(); + var57.setForeground(var62); + var52.setBackground(var62); + var48.setBackground(var62); + var42.setForeground(var62); + SpaceWar.SpacePanel var67 = new SpaceWar.SpacePanel(); + float var68 = var67.getAlignmentX(); + var67.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var73 = new SpaceWar.SpacePanel(); + float var74 = var73.getAlignmentX(); + var73.setVisible(false); + java.awt.Dimension var77 = var73.getPreferredSize(); + var67.setMaximumSize(var77); + boolean var79 = var67.getVerifyInputWhenFocusTarget(); + javax.accessibility.AccessibleContext var80 = var67.getAccessibleContext(); + boolean var81 = var67.isDoubleBuffered(); + java.awt.Rectangle var82 = var67.getVisibleRect(); + var42.scrollRectToVisible(var82); + var0.removeKeyListener((java.awt.event.KeyListener)var42); + javax.swing.InputVerifier var85 = var0.getInputVerifier(); + var0.enable(); + int var87 = var0.getY(); + javax.accessibility.AccessibleContext var88 = var0.getAccessibleContext(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var4); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var32 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var35); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var38); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var39 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var40); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var43 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var46); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var47); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var51 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var53 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var58 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var62); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var68 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var74 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var77); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var79 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var80); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var81 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var82); + + // Regression assertion (captures the current behavior of the code) + assertNull(var85); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var87 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var88); + + } + + public void test492() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test492"); + + + SpaceWar.Player var0 = new SpaceWar.Player(); + var0.increasePower(25); + int var3 = var0.getScore(); + var0.update(); + int var5 = var0.getX(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == 400); + + } + + public void test493() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test493"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + java.awt.Dimension var4 = var0.getPreferredSize(); + java.awt.Toolkit var5 = var0.getToolkit(); + boolean var6 = var0.isFocusable(); + javax.swing.KeyStroke[] var7 = var0.getRegisteredKeyStrokes(); + java.awt.Component var10 = var0.getComponentAt(100, 100); + java.lang.Object var11 = var0.getTreeLock(); + var0.grabFocus(); + SpaceWar.SpacePanel var13 = new SpaceWar.SpacePanel(); + float var14 = var13.getAlignmentX(); + var13.setVisible(false); + java.awt.Dimension var17 = var13.getPreferredSize(); + boolean var18 = var13.getVerifyInputWhenFocusTarget(); + java.awt.Component var21 = var13.findComponentAt(10, 1); + boolean var22 = var13.isCursorSet(); + java.lang.Object var23 = var0.getClientProperty((java.lang.Object)var22); + boolean var24 = var0.isPaintingForPrint(); + SpaceWar.SpacePanel var25 = new SpaceWar.SpacePanel(); + float var26 = var25.getAlignmentX(); + var25.setVisible(false); + var25.setInheritsPopupMenu(false); + var25.setFocusTraversalPolicyProvider(true); + SpaceWar.SpacePanel var33 = new SpaceWar.SpacePanel(); + float var34 = var33.getAlignmentX(); + var33.setVisible(false); + boolean var37 = var33.isDoubleBuffered(); + var33.list(); + SpaceWar.SpacePanel var39 = new SpaceWar.SpacePanel(); + float var40 = var39.getAlignmentX(); + var39.setVisible(false); + boolean var43 = var39.isDoubleBuffered(); + java.awt.dnd.DropTarget var44 = var39.getDropTarget(); + var39.show(false); + java.awt.Rectangle var47 = var39.getVisibleRect(); + java.awt.Rectangle var48 = var33.getBounds(var47); + javax.swing.JToolTip var49 = var33.createToolTip(); + var25.removeKeyListener((java.awt.event.KeyListener)var33); + javax.swing.TransferHandler var51 = var25.getTransferHandler(); + boolean var52 = var25.isPaintingForPrint(); + int var53 = var25.getComponentCount(); + var25.setSize(400, 24); + SpaceWar.SpacePanel var57 = new SpaceWar.SpacePanel(); + float var58 = var57.getAlignmentX(); + var57.setVisible(false); + var57.nextFocus(); + var57.reshape((-1), 1, (-1), 10); + var57.disable(); + java.awt.LayoutManager var68 = var57.getLayout(); + java.lang.Object var69 = var25.getClientProperty((java.lang.Object)var57); + java.awt.Rectangle var70 = var57.getVisibleRect(); + var0.computeVisibleRect(var70); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var4); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var21); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var22 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var23); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var24 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var34 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var40 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var43 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var44); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var47); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var48); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var49); + + // Regression assertion (captures the current behavior of the code) + assertNull(var51); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var52 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var53 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var58 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var68); + + // Regression assertion (captures the current behavior of the code) + assertNull(var69); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var70); + + } + + public void test494() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test494"); + + + SpaceWar.Player var0 = new SpaceWar.Player(); + var0.increasePower(25); + int var3 = var0.getR(); + int var4 = var0.getScore(); + var0.loseLife(); + boolean var6 = var0.isRecovering(); + var0.setFiring(false); + int var9 = var0.getScore(); + var0.setLeft(true); + var0.setScore(499); + var0.setUp(false); + var0.update(); + var0.update(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == 25); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0); + + } + + public void test495() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test495"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + var0.show(false); + java.awt.Rectangle var8 = var0.getVisibleRect(); + java.awt.Toolkit var9 = var0.getToolkit(); + SpaceWar.SpacePanel var10 = new SpaceWar.SpacePanel(); + float var11 = var10.getAlignmentX(); + var10.setVisible(false); + java.awt.Dimension var14 = var10.getPreferredSize(); + boolean var15 = var10.getVerifyInputWhenFocusTarget(); + var0.addKeyListener((java.awt.event.KeyListener)var10); + var0.setRequestFocusEnabled(true); + var0.setFocusCycleRoot(false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var9); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == true); + + } + + public void test496() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test496"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var1 = new SpaceWar.SpacePanel(); + java.awt.Color var2 = var1.getBackground(); + SpaceWar.SpacePanel var3 = new SpaceWar.SpacePanel(); + float var4 = var3.getAlignmentX(); + var3.setVisible(false); + var3.nextFocus(); + var3.updateUI(); + var3.enableInputMethods(true); + var0.add((java.awt.Component)var1, (java.lang.Object)true); + java.awt.Dimension var12 = var1.getPreferredSize(); + var1.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", (-1.0f), 100.0f); + SpaceWar.SpacePanel var17 = new SpaceWar.SpacePanel(); + float var18 = var17.getAlignmentX(); + var17.setVisible(false); + boolean var21 = var17.isDoubleBuffered(); + SpaceWar.SpacePanel var22 = new SpaceWar.SpacePanel(); + java.awt.Color var23 = var22.getBackground(); + var22.repaint(); + java.lang.Object var25 = var17.getClientProperty((java.lang.Object)var22); + var1.remove((java.awt.Component)var17); + java.awt.Toolkit var27 = var1.getToolkit(); + var1.setAutoscrolls(false); + boolean var30 = var1.isValidateRoot(); + SpaceWar.SpacePanel var31 = new SpaceWar.SpacePanel(); + float var32 = var31.getAlignmentX(); + var31.setVisible(false); + boolean var35 = var31.isDoubleBuffered(); + var31.enable(false); + boolean var38 = var31.getFocusTraversalKeysEnabled(); + SpaceWar.SpacePanel var39 = new SpaceWar.SpacePanel(); + float var40 = var39.getAlignmentX(); + var39.setVisible(false); + java.awt.Dimension var43 = var39.getPreferredSize(); + java.awt.Toolkit var44 = var39.getToolkit(); + boolean var45 = var39.isFocusable(); + javax.swing.KeyStroke[] var46 = var39.getRegisteredKeyStrokes(); + SpaceWar.SpacePanel var47 = new SpaceWar.SpacePanel(); + float var48 = var47.getAlignmentX(); + SpaceWar.SpacePanel var49 = new SpaceWar.SpacePanel(); + float var50 = var49.getAlignmentX(); + var49.setVisible(false); + java.awt.Dimension var53 = var49.getPreferredSize(); + boolean var54 = var49.getVerifyInputWhenFocusTarget(); + java.awt.Component var57 = var49.findComponentAt(10, 1); + var47.addKeyListener((java.awt.event.KeyListener)var49); + var49.repaint(100, (-1), (-1), 1); + boolean var64 = var39.isAncestorOf((java.awt.Component)var49); + var31.addKeyListener((java.awt.event.KeyListener)var49); + java.awt.ComponentOrientation var66 = var31.getComponentOrientation(); + java.awt.ComponentOrientation var67 = var31.getComponentOrientation(); + var1.setComponentOrientation(var67); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var2); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var23); + + // Regression assertion (captures the current behavior of the code) + assertNull(var25); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var27); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var30 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var32 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var35 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var38 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var40 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var43); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var44); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var45 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var46); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var48 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var50 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var53); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var54 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var57); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var64 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var66); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var67); + + } + + public void test497() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test497"); + + + SpaceWar.Enemy var2 = new SpaceWar.Enemy(0, 100); + var2.explode(); + double var4 = var2.getY(); + var2.explode(); + boolean var6 = var2.isDead(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0.0d); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == false); + + } + + public void test498() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test498"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + java.awt.im.InputMethodRequests var3 = var0.getInputMethodRequests(); + int var4 = var0.countComponents(); + java.awt.event.ComponentListener[] var5 = var0.getComponentListeners(); + var0.removeNotify(); + javax.swing.InputMap var7 = var0.getInputMap(); + int var8 = var0.getDebugGraphicsOptions(); + java.awt.Graphics var9 = var0.getGraphics(); + boolean var10 = var0.getAutoscrolls(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var9); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == false); + + } + + public void test499() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test499"); + + + SpaceWar.Text var4 = new SpaceWar.Text(10.0d, (-1.0d), 0L, "SpaceWar.SpacePanel[,0,0,0x0,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + boolean var5 = var4.update(); + boolean var6 = var4.update(); + boolean var7 = var4.update(); + boolean var8 = var4.update(); + boolean var9 = var4.update(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == false); + + } + + public void test500() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest5.test500"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + SpaceWar.SpacePanel var4 = new SpaceWar.SpacePanel(); + java.awt.Color var5 = var4.getBackground(); + var0.setForeground(var5); + SpaceWar.SpacePanel var7 = new SpaceWar.SpacePanel(); + float var8 = var7.getAlignmentX(); + var7.setVisible(false); + boolean var11 = var7.isDoubleBuffered(); + java.awt.dnd.DropTarget var12 = var7.getDropTarget(); + var7.show(false); + java.awt.Rectangle var15 = var7.getVisibleRect(); + var0.repaint(var15); + java.awt.Component.BaselineResizeBehavior var17 = var0.getBaselineResizeBehavior(); + var0.firePropertyChange("SpaceWar.SpacePanel[,-1,1,-1x10,invalid,hidden,disabled,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", 1L, 1L); + java.awt.image.ColorModel var22 = var0.getColorModel(); + java.awt.event.ComponentListener[] var23 = var0.getComponentListeners(); + float var24 = var0.getAlignmentY(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var23); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var24 == 0.5f); + + } + +} diff --git a/test/randoop/RandoopTest6.java b/test/randoop/RandoopTest6.java new file mode 100644 index 0000000..88053f9 --- /dev/null +++ b/test/randoop/RandoopTest6.java @@ -0,0 +1,34911 @@ +package randoop; + +import junit.framework.*; + +public class RandoopTest6 extends TestCase { + + public static boolean debug = false; + + public void test1() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test1"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + java.awt.Dimension var4 = var0.getPreferredSize(); + java.awt.Toolkit var5 = var0.getToolkit(); + boolean var6 = var0.isFocusable(); + javax.swing.KeyStroke[] var7 = var0.getRegisteredKeyStrokes(); + java.awt.Component var10 = var0.getComponentAt(100, 100); + java.lang.Object var11 = var0.getTreeLock(); + SpaceWar.SpacePanel var12 = new SpaceWar.SpacePanel(); + float var13 = var12.getAlignmentX(); + var12.setVisible(false); + boolean var16 = var12.isDoubleBuffered(); + java.awt.dnd.DropTarget var17 = var12.getDropTarget(); + java.awt.Point var18 = var12.getMousePosition(); + java.lang.String var19 = var12.getUIClassID(); + var0.setNextFocusableComponent((java.awt.Component)var12); + SpaceWar.SpacePanel var21 = new SpaceWar.SpacePanel(); + float var22 = var21.getAlignmentX(); + var21.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var27 = var21.getUI(); + java.awt.im.InputMethodRequests var28 = var21.getInputMethodRequests(); + SpaceWar.SpacePanel var29 = new SpaceWar.SpacePanel(); + float var30 = var29.getAlignmentX(); + var29.setVisible(false); + var29.nextFocus(); + var29.updateUI(); + var29.enableInputMethods(true); + var29.setSize((-1), 1); + SpaceWar.SpacePanel var40 = new SpaceWar.SpacePanel(); + var40.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var21.add((java.awt.Component)var29, (java.lang.Object)"SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + SpaceWar.SpacePanel var46 = new SpaceWar.SpacePanel(); + float var47 = var46.getAlignmentX(); + var46.setVisible(false); + java.awt.Dimension var50 = var46.getPreferredSize(); + java.awt.Toolkit var51 = var46.getToolkit(); + java.awt.Toolkit var52 = var46.getToolkit(); + java.awt.Component var53 = var29.add((java.awt.Component)var46); + var29.setDebugGraphicsOptions(0); + var29.setVerifyInputWhenFocusTarget(false); + var29.nextFocus(); + var29.repaint(100, 0, 10, 3); + java.awt.Dimension var64 = var29.getSize(); + javax.swing.InputVerifier var65 = var29.getInputVerifier(); + var0.remove((java.awt.Component)var29); + SpaceWar.SpacePanel var67 = new SpaceWar.SpacePanel(); + float var68 = var67.getAlignmentX(); + var67.setVisible(false); + var67.nextFocus(); + var67.updateUI(); + var67.enableInputMethods(true); + var67.setSize((-1), 1); + boolean var80 = var67.contains(1, 1); + java.awt.Dimension var81 = var67.getMinimumSize(); + var29.setMaximumSize(var81); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var4); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var19 + "' != '" + "PanelUI"+ "'", var19.equals("PanelUI")); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var22 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var27); + + // Regression assertion (captures the current behavior of the code) + assertNull(var28); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var30 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var47 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var50); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var51); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var52); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var53); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var64); + + // Regression assertion (captures the current behavior of the code) + assertNull(var65); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var68 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var80 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var81); + + } + + public void test2() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test2"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + var0.show(false); + boolean var8 = var0.isPaintingForPrint(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var15 = var9.getMouseListeners(); + int var16 = var9.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var17 = var9.getInputMethodRequests(); + var0.addKeyListener((java.awt.event.KeyListener)var9); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + float var20 = var19.getAlignmentX(); + var19.setVisible(false); + boolean var23 = var19.isDoubleBuffered(); + var19.list(); + float var25 = var19.getAlignmentY(); + boolean var26 = var9.isFocusCycleRoot((java.awt.Container)var19); + var19.firePropertyChange("", 1L, 1L); + var19.setVerifyInputWhenFocusTarget(true); + var19.resize(25, 400); + java.awt.event.ComponentListener[] var36 = var19.getComponentListeners(); + var19.setAlignmentX(10.0f); + var19.setDoubleBuffered(false); + boolean var43 = var19.inside(0, 3); + var19.show(true); + java.awt.Insets var46 = var19.insets(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var36); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var43 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var46); + + } + + public void test3() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test3"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.reshape((-1), 1, (-1), 10); + SpaceWar.SpacePanel var10 = new SpaceWar.SpacePanel(); + java.awt.Color var11 = var10.getBackground(); + var10.repaint(); + var10.setRequestFocusEnabled(false); + var10.reshape(100, 0, 100, 0); + java.awt.Component var20 = var0.add((java.awt.Component)var10); + var0.removeNotify(); + var0.requestFocus(); + SpaceWar.SpacePanel var23 = new SpaceWar.SpacePanel(); + java.awt.Color var24 = var23.getBackground(); + var23.repaint(); + var23.setRequestFocusEnabled(false); + var23.setIgnoreRepaint(false); + java.lang.String var30 = var23.toString(); + java.awt.Color var31 = var23.getBackground(); + // The following exception was thrown during execution. + // This behavior will recorded for regression testing. + try { + java.awt.Component var33 = var0.add((java.awt.Component)var23, 399); + fail("Expected exception of type java.lang.IllegalArgumentException"); + } catch (java.lang.IllegalArgumentException e) { + // Expected exception. + } + + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var30 + "' != '" + "SpaceWar.SpacePanel[,0,0,0var30,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"+ "'", var30.equals("SpaceWar.SpacePanel[,0,0,0var30,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]")); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var31); + + } + + public void test4() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test4"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + var0.list(); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + float var7 = var6.getAlignmentX(); + var6.setVisible(false); + boolean var10 = var6.isDoubleBuffered(); + java.awt.dnd.DropTarget var11 = var6.getDropTarget(); + var6.show(false); + java.awt.Rectangle var14 = var6.getVisibleRect(); + java.awt.Rectangle var15 = var0.getBounds(var14); + javax.swing.JToolTip var16 = var0.createToolTip(); + var0.firePropertyChange("", false, false); + var0.setFocusTraversalKeysEnabled(false); + java.awt.Component var23 = var0.getNextFocusableComponent(); + java.awt.Cursor var24 = var0.getCursor(); + javax.swing.JToolTip var25 = var0.createToolTip(); + var0.layout(); + java.awt.Cursor var27 = var0.getCursor(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertNull(var23); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var25); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var27); + + } + + public void test5() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test5"); + + + SpaceWar.Explosion var4 = new SpaceWar.Explosion(494.29925122893764d, 432.7832140219743d, 3, 10); + + } + + public void test6() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test6"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + SpaceWar.SpacePanel var4 = new SpaceWar.SpacePanel(); + java.awt.Color var5 = var4.getBackground(); + var0.setForeground(var5); + SpaceWar.SpacePanel var7 = new SpaceWar.SpacePanel(); + float var8 = var7.getAlignmentX(); + var7.setVisible(false); + boolean var11 = var7.isDoubleBuffered(); + java.awt.dnd.DropTarget var12 = var7.getDropTarget(); + var7.show(false); + java.awt.Rectangle var15 = var7.getVisibleRect(); + var0.repaint(var15); + java.awt.FocusTraversalPolicy var17 = var0.getFocusTraversalPolicy(); + var0.resetKeyboardActions(); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + float var20 = var19.getAlignmentX(); + var19.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var25 = var19.getMouseListeners(); + int var26 = var19.getDebugGraphicsOptions(); + SpaceWar.SpacePanel var27 = new SpaceWar.SpacePanel(); + float var28 = var27.getAlignmentX(); + var27.setVisible(false); + boolean var31 = var27.isDoubleBuffered(); + java.awt.dnd.DropTarget var32 = var27.getDropTarget(); + var27.show(false); + java.awt.Rectangle var35 = var27.getVisibleRect(); + var19.paintImmediately(var35); + var0.setBounds(var35); + var0.repaint(100, 24, 10, 400); + java.awt.image.ColorModel var43 = var0.getColorModel(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var25); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var28 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var31 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var32); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var35); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var43); + + } + + public void test7() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test7"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + java.awt.im.InputMethodRequests var3 = var0.getInputMethodRequests(); + var0.list(); + java.awt.Dimension var5 = var0.minimumSize(); + boolean var6 = var0.isOpaque(); + SpaceWar.SpacePanel var7 = new SpaceWar.SpacePanel(); + java.awt.Color var8 = var7.getBackground(); + var7.repaint(); + java.awt.im.InputMethodRequests var10 = var7.getInputMethodRequests(); + int var11 = var7.countComponents(); + java.awt.event.ComponentListener[] var12 = var7.getComponentListeners(); + var7.removeNotify(); + javax.swing.InputMap var14 = var7.getInputMap(); + int var15 = var7.getDebugGraphicsOptions(); + java.awt.Graphics var16 = var7.getGraphics(); + var7.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", (short)(-1), (short)100); + boolean var21 = var7.isEnabled(); + boolean var22 = var7.isMaximumSizeSet(); + SpaceWar.SpacePanel var23 = new SpaceWar.SpacePanel(); + float var24 = var23.getAlignmentX(); + var23.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var29 = var23.getUI(); + var7.setUI(var29); + var0.setUI(var29); + boolean var32 = var0.isOptimizedDrawingEnabled(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var22 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var24 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var29); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var32 == true); + + } + + public void test8() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test8"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + SpaceWar.SpacePanel var2 = new SpaceWar.SpacePanel(); + float var3 = var2.getAlignmentX(); + var2.setVisible(false); + java.awt.Dimension var6 = var2.getPreferredSize(); + boolean var7 = var2.getVerifyInputWhenFocusTarget(); + java.awt.Component var10 = var2.findComponentAt(10, 1); + var0.addKeyListener((java.awt.event.KeyListener)var2); + var2.repaint(100, (-1), (-1), 1); + SpaceWar.SpacePanel var17 = new SpaceWar.SpacePanel(); + java.awt.Color var18 = var17.getBackground(); + var17.repaint(); + java.awt.im.InputMethodRequests var20 = var17.getInputMethodRequests(); + java.awt.GraphicsConfiguration var21 = var17.getGraphicsConfiguration(); + var2.remove((java.awt.Component)var17); + var17.setName(""); + java.awt.Image var27 = var17.createImage(1, 3); + var17.show(true); + var17.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", (byte)0, (byte)(-1)); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertNull(var21); + + // Regression assertion (captures the current behavior of the code) + assertNull(var27); + + } + + public void test9() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test9"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + var0.enable(false); + java.awt.Container var7 = var0.getTopLevelAncestor(); + java.awt.Dimension var8 = var0.minimumSize(); + SpaceWar.SpacePanel var10 = new SpaceWar.SpacePanel(); + java.awt.Color var11 = var10.getBackground(); + var10.repaint(); + var10.setRequestFocusEnabled(false); + var10.setIgnoreRepaint(false); + java.lang.String var17 = var10.toString(); + java.awt.Color var18 = var10.getBackground(); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + float var20 = var19.getAlignmentX(); + var19.setVisible(false); + java.awt.Dimension var23 = var19.getPreferredSize(); + java.awt.Toolkit var24 = var19.getToolkit(); + java.awt.Toolkit var25 = var19.getToolkit(); + SpaceWar.Player var26 = new SpaceWar.Player(); + var26.increasePower(25); + int var29 = var26.getScore(); + var26.setRigth(true); + var26.loseLife(); + var10.putClientProperty((java.lang.Object)var19, (java.lang.Object)var26); + SpaceWar.SpacePanel var35 = new SpaceWar.SpacePanel(); + java.awt.Color var36 = var35.getBackground(); + var35.repaint(); + java.awt.im.InputMethodRequests var38 = var35.getInputMethodRequests(); + var35.setDoubleBuffered(true); + var35.setInheritsPopupMenu(false); + javax.swing.plaf.PanelUI var43 = var35.getUI(); + java.util.Set var45 = var35.getFocusTraversalKeys(3); + var10.setFocusTraversalKeys(0, var45); + // The following exception was thrown during execution. + // This behavior will recorded for regression testing. + try { + var0.setFocusTraversalKeys((-1), var45); + fail("Expected exception of type java.lang.IllegalArgumentException"); + } catch (java.lang.IllegalArgumentException e) { + // Expected exception. + } + + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var17 + "' != '" + "SpaceWar.SpacePanel[,0,0,0var17,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"+ "'", var17.equals("SpaceWar.SpacePanel[,0,0,0var17,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]")); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var23); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var25); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var29 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var36); + + // Regression assertion (captures the current behavior of the code) + assertNull(var38); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var43); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var45); + + } + + public void test10() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test10"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var6 = var0.getMouseListeners(); + java.awt.Dimension var7 = var0.getPreferredSize(); + int var10 = var0.getBaseline(1, 1); + java.awt.Cursor var11 = var0.getCursor(); + java.awt.Container var12 = var0.getTopLevelAncestor(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == (-1)); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNull(var12); + + } + + public void test11() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test11"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + java.awt.im.InputMethodRequests var3 = var0.getInputMethodRequests(); + int var4 = var0.countComponents(); + java.awt.event.ComponentListener[] var5 = var0.getComponentListeners(); + var0.transferFocusBackward(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + boolean var12 = var8.isDoubleBuffered(); + var8.enable(false); + SpaceWar.SpacePanel var15 = new SpaceWar.SpacePanel(); + float var16 = var15.getAlignmentX(); + boolean var17 = var15.hasFocus(); + java.awt.Insets var18 = var15.getInsets(); + java.awt.Rectangle var19 = var15.bounds(); + var8.repaint(var19); + java.awt.Component var21 = var0.add("", (java.awt.Component)var8); + boolean var22 = var8.isEnabled(); + java.awt.Point var24 = var8.getMousePosition(true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var21); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var22 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var24); + + } + + public void test12() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test12"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + var0.setName(""); + java.awt.Graphics var3 = var0.getGraphics(); + var0.repaint(); + boolean var5 = var0.isOpaque(); + + // Regression assertion (captures the current behavior of the code) + assertNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == true); + + } + + public void test13() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test13"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + float var7 = var6.getAlignmentX(); + var6.setVisible(false); + java.awt.Dimension var10 = var6.getPreferredSize(); + var0.setMaximumSize(var10); + boolean var12 = var0.getVerifyInputWhenFocusTarget(); + int var13 = var0.getX(); + SpaceWar.SpacePanel var14 = new SpaceWar.SpacePanel(); + float var15 = var14.getAlignmentX(); + SpaceWar.SpacePanel var16 = new SpaceWar.SpacePanel(); + float var17 = var16.getAlignmentX(); + var16.setVisible(false); + java.awt.Dimension var20 = var16.getPreferredSize(); + boolean var21 = var16.getVerifyInputWhenFocusTarget(); + java.awt.Component var24 = var16.findComponentAt(10, 1); + var14.addKeyListener((java.awt.event.KeyListener)var16); + var16.repaint(100, (-1), (-1), 1); + SpaceWar.SpacePanel var31 = new SpaceWar.SpacePanel(); + java.awt.Color var32 = var31.getBackground(); + var31.repaint(); + java.awt.im.InputMethodRequests var34 = var31.getInputMethodRequests(); + java.awt.GraphicsConfiguration var35 = var31.getGraphicsConfiguration(); + var16.remove((java.awt.Component)var31); + java.awt.Font var37 = var31.getFont(); + var0.setFont(var37); + SpaceWar.SpacePanel var39 = new SpaceWar.SpacePanel(); + float var40 = var39.getAlignmentX(); + var39.setVisible(false); + var39.nextFocus(); + var39.reshape((-1), 1, (-1), 10); + var39.disable(); + java.awt.LayoutManager var50 = var39.getLayout(); + var0.setLayout(var50); + java.awt.image.ColorModel var52 = var0.getColorModel(); + java.awt.event.HierarchyBoundsListener[] var53 = var0.getHierarchyBoundsListeners(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var32); + + // Regression assertion (captures the current behavior of the code) + assertNull(var34); + + // Regression assertion (captures the current behavior of the code) + assertNull(var35); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var37); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var40 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var50); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var52); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var53); + + } + + public void test14() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test14"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.reshape((-1), 1, (-1), 10); + var0.disable(); + java.awt.LayoutManager var11 = var0.getLayout(); + java.awt.Container var12 = var0.getParent(); + java.lang.String var13 = var0.getUIClassID(); + var0.doLayout(); + var0.removeAll(); + float var16 = var0.getAlignmentY(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var13 + "' != '" + "PanelUI"+ "'", var13.equals("PanelUI")); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0.5f); + + } + + public void test15() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test15"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var6 = var0.getMouseListeners(); + int var7 = var0.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var8 = var0.getInputMethodRequests(); + var0.removeNotify(); + var0.enable(); + boolean var11 = var0.isValidateRoot(); + javax.swing.ActionMap var12 = var0.getActionMap(); + int var13 = var0.getY(); + var0.removeNotify(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == 0); + + } + + public void test16() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test16"); + + + SpaceWar.Player var0 = new SpaceWar.Player(); + int var1 = var0.getPower(); + int var2 = var0.getPowerLevel(); + var0.setLeft(false); + int var5 = var0.getRequiredPower(); + var0.increasePower(10); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var2 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == 1); + + } + + public void test17() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test17"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + java.awt.im.InputMethodRequests var3 = var0.getInputMethodRequests(); + var0.setDoubleBuffered(true); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + float var7 = var6.getAlignmentX(); + boolean var8 = var6.hasFocus(); + java.awt.Insets var9 = var6.getInsets(); + java.awt.Insets var10 = var0.getInsets(var9); + SpaceWar.SpacePanel var11 = new SpaceWar.SpacePanel(); + java.awt.Color var12 = var11.getBackground(); + var11.repaint(); + java.awt.im.InputMethodRequests var14 = var11.getInputMethodRequests(); + var11.setDoubleBuffered(true); + var11.setInheritsPopupMenu(false); + boolean var19 = var11.isFocusTraversalPolicySet(); + var11.transferFocusUpCycle(); + java.awt.image.BufferedImage var22 = var11.loadImg("SpaceWar.SpacePanel[,0,0,0x0,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + SpaceWar.SpacePanel var23 = new SpaceWar.SpacePanel(); + float var24 = var23.getAlignmentX(); + var23.setVisible(false); + var23.setInheritsPopupMenu(false); + boolean var29 = var23.isDoubleBuffered(); + boolean var30 = var23.isMinimumSizeSet(); + java.awt.Font var31 = var23.getFont(); + java.awt.FontMetrics var32 = var11.getFontMetrics(var31); + java.awt.FontMetrics var33 = var0.getFontMetrics(var31); + var0.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=1.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", (-1L), 10L); + int var38 = var0.getY(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var9); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var24 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var29 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var30 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var31); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var32); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var33); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var38 == 0); + + } + + public void test18() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test18"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.updateUI(); + var0.enableInputMethods(true); + java.awt.Point var9 = var0.getMousePosition(false); + SpaceWar.SpacePanel var10 = new SpaceWar.SpacePanel(); + float var11 = var10.getAlignmentX(); + var10.setVisible(false); + boolean var14 = var10.isDoubleBuffered(); + java.awt.dnd.DropTarget var15 = var10.getDropTarget(); + var10.show(false); + boolean var18 = var10.isPaintingForPrint(); + boolean var19 = var10.getIgnoreRepaint(); + var10.repaint(100, 10, 100, 0); + SpaceWar.SpacePanel var25 = new SpaceWar.SpacePanel(); + float var26 = var25.getAlignmentX(); + var25.setVisible(false); + boolean var29 = var25.isDoubleBuffered(); + var25.list(); + SpaceWar.SpacePanel var31 = new SpaceWar.SpacePanel(); + float var32 = var31.getAlignmentX(); + var31.setVisible(false); + boolean var35 = var31.isDoubleBuffered(); + java.awt.dnd.DropTarget var36 = var31.getDropTarget(); + var31.show(false); + java.awt.Rectangle var39 = var31.getVisibleRect(); + java.awt.Rectangle var40 = var25.getBounds(var39); + javax.swing.JToolTip var41 = var25.createToolTip(); + var25.firePropertyChange("", false, false); + var25.validate(); + SpaceWar.SpacePanel var47 = new SpaceWar.SpacePanel(); + float var48 = var47.getAlignmentX(); + var47.setVisible(false); + boolean var51 = var47.isDoubleBuffered(); + java.awt.dnd.DropTarget var52 = var47.getDropTarget(); + var47.show(false); + boolean var55 = var47.isPaintingForPrint(); + SpaceWar.SpacePanel var56 = new SpaceWar.SpacePanel(); + float var57 = var56.getAlignmentX(); + var56.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var62 = var56.getMouseListeners(); + int var63 = var56.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var64 = var56.getInputMethodRequests(); + var47.addKeyListener((java.awt.event.KeyListener)var56); + var56.repaint(); + java.awt.Point var67 = var56.location(); + java.awt.Component var68 = var25.getComponentAt(var67); + var10.setLocation(var67); + java.awt.Component var70 = var0.getComponentAt(var67); + javax.swing.JPopupMenu var71 = var0.getComponentPopupMenu(); + var0.setOpaque(false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNull(var9); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var29 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var32 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var35 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var36); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var39); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var40); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var41); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var48 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var51 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var52); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var55 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var57 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var62); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var63 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var64); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var67); + + // Regression assertion (captures the current behavior of the code) + assertNull(var68); + + // Regression assertion (captures the current behavior of the code) + assertNull(var70); + + // Regression assertion (captures the current behavior of the code) + assertNull(var71); + + } + + public void test19() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test19"); + + + SpaceWar.PowerUp var3 = new SpaceWar.PowerUp(25, 24.0d, 240.9713786093358d); + + } + + public void test20() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test20"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.setInheritsPopupMenu(false); + var0.setFocusTraversalPolicyProvider(true); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + boolean var12 = var8.isDoubleBuffered(); + var8.list(); + SpaceWar.SpacePanel var14 = new SpaceWar.SpacePanel(); + float var15 = var14.getAlignmentX(); + var14.setVisible(false); + boolean var18 = var14.isDoubleBuffered(); + java.awt.dnd.DropTarget var19 = var14.getDropTarget(); + var14.show(false); + java.awt.Rectangle var22 = var14.getVisibleRect(); + java.awt.Rectangle var23 = var8.getBounds(var22); + javax.swing.JToolTip var24 = var8.createToolTip(); + var0.removeKeyListener((java.awt.event.KeyListener)var8); + var0.setFocusTraversalKeysEnabled(true); + var0.setFocusCycleRoot(true); + var0.transferFocusBackward(); + java.util.Set var32 = var0.getFocusTraversalKeys(2); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var23); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var32); + + } + + public void test21() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test21"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var6 = var0.getMouseListeners(); + java.awt.Dimension var7 = var0.getPreferredSize(); + int var10 = var0.getBaseline(1, 1); + var0.show(false); + boolean var13 = var0.isFontSet(); + var0.setDoubleBuffered(false); + boolean var16 = var0.isFocusTraversable(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == (-1)); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == true); + + } + + public void test22() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test22"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var1 = new SpaceWar.SpacePanel(); + java.awt.Color var2 = var1.getBackground(); + SpaceWar.SpacePanel var3 = new SpaceWar.SpacePanel(); + float var4 = var3.getAlignmentX(); + var3.setVisible(false); + var3.nextFocus(); + var3.updateUI(); + var3.enableInputMethods(true); + var0.add((java.awt.Component)var1, (java.lang.Object)true); + boolean var13 = var1.areFocusTraversalKeysSet(0); + boolean var14 = var1.isFocusable(); + SpaceWar.SpacePanel var15 = new SpaceWar.SpacePanel(); + float var16 = var15.getAlignmentX(); + var15.setVisible(false); + var15.nextFocus(); + var15.updateUI(); + var15.enableInputMethods(true); + var15.setSize((-1), 1); + boolean var28 = var15.contains(1, 1); + java.awt.Component var31 = var15.getComponentAt(100, 3); + SpaceWar.SpacePanel var32 = new SpaceWar.SpacePanel(); + float var33 = var32.getAlignmentX(); + var32.setVisible(false); + boolean var36 = var32.isDoubleBuffered(); + var32.enable(false); + boolean var39 = var32.getFocusTraversalKeysEnabled(); + SpaceWar.SpacePanel var40 = new SpaceWar.SpacePanel(); + float var41 = var40.getAlignmentX(); + var40.setVisible(false); + java.awt.Dimension var44 = var40.getPreferredSize(); + java.awt.Toolkit var45 = var40.getToolkit(); + boolean var46 = var40.isFocusable(); + javax.swing.KeyStroke[] var47 = var40.getRegisteredKeyStrokes(); + SpaceWar.SpacePanel var48 = new SpaceWar.SpacePanel(); + float var49 = var48.getAlignmentX(); + SpaceWar.SpacePanel var50 = new SpaceWar.SpacePanel(); + float var51 = var50.getAlignmentX(); + var50.setVisible(false); + java.awt.Dimension var54 = var50.getPreferredSize(); + boolean var55 = var50.getVerifyInputWhenFocusTarget(); + java.awt.Component var58 = var50.findComponentAt(10, 1); + var48.addKeyListener((java.awt.event.KeyListener)var50); + var50.repaint(100, (-1), (-1), 1); + boolean var65 = var40.isAncestorOf((java.awt.Component)var50); + var32.addKeyListener((java.awt.event.KeyListener)var50); + java.awt.ComponentOrientation var67 = var32.getComponentOrientation(); + var15.setComponentOrientation(var67); + var1.setComponentOrientation(var67); + java.awt.GraphicsConfiguration var70 = var1.getGraphicsConfiguration(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var2); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var28 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var31); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var33 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var36 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var39 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var41 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var44); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var45); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var46 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var47); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var49 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var51 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var54); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var55 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var58); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var65 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var67); + + // Regression assertion (captures the current behavior of the code) + assertNull(var70); + + } + + public void test23() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test23"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + boolean var6 = var0.isFocusOwner(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + java.awt.Dimension var12 = var8.getPreferredSize(); + java.awt.Toolkit var13 = var8.getToolkit(); + SpaceWar.SpacePanel var14 = new SpaceWar.SpacePanel(); + var14.setName(""); + int var17 = var14.getX(); + SpaceWar.SpacePanel var18 = new SpaceWar.SpacePanel(); + float var19 = var18.getAlignmentX(); + var18.setVisible(false); + var18.nextFocus(); + SpaceWar.SpacePanel var23 = new SpaceWar.SpacePanel(); + float var24 = var23.getAlignmentX(); + var23.setVisible(false); + SpaceWar.SpacePanel var27 = new SpaceWar.SpacePanel(); + java.awt.Color var28 = var27.getBackground(); + var23.setForeground(var28); + var18.setBackground(var28); + var14.setBackground(var28); + var8.setForeground(var28); + var0.putClientProperty((java.lang.Object)(byte)100, (java.lang.Object)var28); + boolean var34 = var0.isEnabled(); + java.awt.event.MouseWheelListener[] var35 = var0.getMouseWheelListeners(); + var0.resize(99, 24); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var24 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var28); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var34 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var35); + + } + + public void test24() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test24"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.updateUI(); + var0.enableInputMethods(true); + java.awt.Point var9 = var0.getMousePosition(false); + java.awt.Point var10 = var0.getMousePosition(); + var0.revalidate(); + java.awt.Component[] var12 = var0.getComponents(); + boolean var13 = var0.isFocusCycleRoot(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNull(var9); + + // Regression assertion (captures the current behavior of the code) + assertNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == false); + + } + + public void test25() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test25"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + var0.setRequestFocusEnabled(false); + var0.setIgnoreRepaint(false); + boolean var7 = var0.isFocusable(); + boolean var8 = var0.isPaintingForPrint(); + java.awt.Dimension var9 = var0.preferredSize(); + java.awt.event.ContainerListener[] var10 = var0.getContainerListeners(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var9); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var10); + + } + + public void test26() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test26"); + + + SpaceWar.Bullet var3 = new SpaceWar.Bullet(323.62099822147866d, 25, 100); + + } + + public void test27() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test27"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + SpaceWar.SpacePanel var5 = new SpaceWar.SpacePanel(); + float var6 = var5.getAlignmentX(); + var5.setVisible(false); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + java.awt.Color var10 = var9.getBackground(); + var5.setForeground(var10); + var0.setBackground(var10); + javax.swing.plaf.PanelUI var13 = var0.getUI(); + java.awt.peer.ComponentPeer var14 = var0.getPeer(); + java.awt.Point var15 = var0.location(); + java.awt.Point var17 = var0.getMousePosition(false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + } + + public void test28() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test28"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + java.awt.im.InputMethodRequests var3 = var0.getInputMethodRequests(); + int var4 = var0.countComponents(); + java.awt.event.MouseMotionListener[] var5 = var0.getMouseMotionListeners(); + java.awt.Dimension var6 = var0.size(); + boolean var7 = var0.isMinimumSizeSet(); + var0.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", (byte)1, (byte)10); + // The following exception was thrown during execution. + // This behavior will recorded for regression testing. + try { + java.awt.Component var13 = var0.getComponent(10); + fail("Expected exception of type java.lang.ArrayIndexOutOfBoundsException"); + } catch (java.lang.ArrayIndexOutOfBoundsException e) { + // Expected exception. + } + + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == false); + + } + + public void test29() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test29"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + var0.list(); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + float var7 = var6.getAlignmentX(); + var6.setVisible(false); + boolean var10 = var6.isDoubleBuffered(); + java.awt.dnd.DropTarget var11 = var6.getDropTarget(); + var6.show(false); + java.awt.Rectangle var14 = var6.getVisibleRect(); + java.awt.Rectangle var15 = var0.getBounds(var14); + javax.swing.JToolTip var16 = var0.createToolTip(); + var0.firePropertyChange("", false, false); + var0.validate(); + boolean var22 = var0.isEnabled(); + java.awt.Color var23 = var0.getBackground(); + int var24 = var0.getWidth(); + boolean var25 = var0.isLightweight(); + // The following exception was thrown during execution. + // This behavior will recorded for regression testing. + try { + var0.remove(99); + fail("Expected exception of type java.lang.ArrayIndexOutOfBoundsException"); + } catch (java.lang.ArrayIndexOutOfBoundsException e) { + // Expected exception. + } + + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var22 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var23); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var24 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == false); + + } + + public void test30() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test30"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + var0.show(false); + boolean var8 = var0.isPaintingForPrint(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var15 = var9.getMouseListeners(); + int var16 = var9.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var17 = var9.getInputMethodRequests(); + var0.addKeyListener((java.awt.event.KeyListener)var9); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + float var20 = var19.getAlignmentX(); + var19.setVisible(false); + boolean var23 = var19.isDoubleBuffered(); + var19.list(); + float var25 = var19.getAlignmentY(); + boolean var26 = var9.isFocusCycleRoot((java.awt.Container)var19); + boolean var27 = var19.isEnabled(); + java.awt.Dimension var28 = var19.getMaximumSize(); + var19.setFocusCycleRoot(false); + SpaceWar.SpacePanel var32 = new SpaceWar.SpacePanel(); + java.awt.Color var33 = var32.getBackground(); + var32.repaint(); + java.awt.im.InputMethodRequests var35 = var32.getInputMethodRequests(); + int var36 = var32.countComponents(); + java.awt.event.ComponentListener[] var37 = var32.getComponentListeners(); + var32.removeNotify(); + javax.swing.InputMap var39 = var32.getInputMap(); + SpaceWar.SpacePanel var40 = new SpaceWar.SpacePanel(); + float var41 = var40.getAlignmentX(); + var40.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var46 = new SpaceWar.SpacePanel(); + float var47 = var46.getAlignmentX(); + var46.setVisible(false); + SpaceWar.SpacePanel var50 = new SpaceWar.SpacePanel(); + java.awt.Color var51 = var50.getBackground(); + var46.setForeground(var51); + var40.setBackground(var51); + java.awt.Point var54 = var40.location(); + var32.setLocation(var54); + SpaceWar.SpacePanel var56 = new SpaceWar.SpacePanel(); + float var57 = var56.getAlignmentX(); + var56.setVisible(false); + var56.nextFocus(); + var56.reshape((-1), 1, (-1), 10); + SpaceWar.SpacePanel var66 = new SpaceWar.SpacePanel(); + java.awt.Color var67 = var66.getBackground(); + var66.repaint(); + var66.setRequestFocusEnabled(false); + var66.reshape(100, 0, 100, 0); + java.awt.Component var76 = var56.add((java.awt.Component)var66); + var56.enable(); + SpaceWar.SpacePanel var78 = new SpaceWar.SpacePanel(); + float var79 = var78.getAlignmentX(); + boolean var80 = var78.hasFocus(); + boolean var81 = var78.isPreferredSizeSet(); + var32.putClientProperty((java.lang.Object)var56, (java.lang.Object)var78); + java.awt.Component var83 = var19.add("PanelUI", (java.awt.Component)var78); + java.awt.Container var84 = var78.getTopLevelAncestor(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var28); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var33); + + // Regression assertion (captures the current behavior of the code) + assertNull(var35); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var36 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var37); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var39); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var41 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var47 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var51); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var54); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var57 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var67); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var76); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var79 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var80 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var81 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var83); + + // Regression assertion (captures the current behavior of the code) + assertNull(var84); + + } + + public void test31() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test31"); + + + SpaceWar.Player var0 = new SpaceWar.Player(); + var0.increasePower(25); + int var3 = var0.getR(); + int var4 = var0.getScore(); + var0.update(); + var0.setUp(false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == 25); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0); + + } + + public void test32() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test32"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + SpaceWar.SpacePanel var4 = new SpaceWar.SpacePanel(); + java.awt.Color var5 = var4.getBackground(); + var0.setForeground(var5); + SpaceWar.SpacePanel var7 = new SpaceWar.SpacePanel(); + float var8 = var7.getAlignmentX(); + var7.setVisible(false); + boolean var11 = var7.isDoubleBuffered(); + java.awt.dnd.DropTarget var12 = var7.getDropTarget(); + var7.show(false); + java.awt.Rectangle var15 = var7.getVisibleRect(); + var0.repaint(var15); + java.awt.FocusTraversalPolicy var17 = var0.getFocusTraversalPolicy(); + SpaceWar.SpacePanel var18 = new SpaceWar.SpacePanel(); + float var19 = var18.getAlignmentX(); + var18.firePropertyChange("", (-1), 1); + boolean var24 = var18.isFocusOwner(); + SpaceWar.SpacePanel var26 = new SpaceWar.SpacePanel(); + float var27 = var26.getAlignmentX(); + var26.setVisible(false); + java.awt.Dimension var30 = var26.getPreferredSize(); + java.awt.Toolkit var31 = var26.getToolkit(); + SpaceWar.SpacePanel var32 = new SpaceWar.SpacePanel(); + var32.setName(""); + int var35 = var32.getX(); + SpaceWar.SpacePanel var36 = new SpaceWar.SpacePanel(); + float var37 = var36.getAlignmentX(); + var36.setVisible(false); + var36.nextFocus(); + SpaceWar.SpacePanel var41 = new SpaceWar.SpacePanel(); + float var42 = var41.getAlignmentX(); + var41.setVisible(false); + SpaceWar.SpacePanel var45 = new SpaceWar.SpacePanel(); + java.awt.Color var46 = var45.getBackground(); + var41.setForeground(var46); + var36.setBackground(var46); + var32.setBackground(var46); + var26.setForeground(var46); + var18.putClientProperty((java.lang.Object)(byte)100, (java.lang.Object)var46); + var0.setBackground(var46); + SpaceWar.SpacePanel var53 = new SpaceWar.SpacePanel(); + float var54 = var53.getAlignmentX(); + var53.setVisible(false); + boolean var57 = var53.isDoubleBuffered(); + java.awt.dnd.DropTarget var58 = var53.getDropTarget(); + var53.show(false); + boolean var61 = var53.isPaintingForPrint(); + SpaceWar.SpacePanel var62 = new SpaceWar.SpacePanel(); + float var63 = var62.getAlignmentX(); + SpaceWar.SpacePanel var64 = new SpaceWar.SpacePanel(); + float var65 = var64.getAlignmentX(); + var64.setVisible(false); + java.awt.Dimension var68 = var64.getPreferredSize(); + boolean var69 = var64.getVerifyInputWhenFocusTarget(); + java.awt.Component var72 = var64.findComponentAt(10, 1); + var62.addKeyListener((java.awt.event.KeyListener)var64); + java.awt.Dimension var74 = var64.getMinimumSize(); + var53.setMinimumSize(var74); + java.awt.Dimension var76 = var0.getSize(var74); + boolean var77 = var0.isValid(); + int var78 = var0.getWidth(); + java.awt.event.HierarchyListener[] var79 = var0.getHierarchyListeners(); + javax.swing.InputMap var80 = var0.getInputMap(); + var0.setFocusCycleRoot(true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var24 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var30); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var31); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var35 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var42 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var46); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var54 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var57 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var58); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var61 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var63 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var65 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var68); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var69 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var72); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var74); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var76); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var77 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var78 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var79); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var80); + + } + + public void test33() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test33"); + + + SpaceWar.Player var0 = new SpaceWar.Player(); + int var1 = var0.getR(); + var0.setRigth(false); + var0.setLife(100); + var0.setDown(false); + var0.setFiring(true); + var0.increasePower(400); + var0.loseLife(); + var0.update(); + var0.setLeft(true); + var0.setScore(100); + int var18 = var0.getY(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 25); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == 500); + + } + + public void test34() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test34"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var6 = var0.getMouseListeners(); + java.awt.Dimension var7 = var0.getPreferredSize(); + int var10 = var0.getBaseline(1, 1); + var0.show(false); + javax.swing.JRootPane var13 = var0.getRootPane(); + SpaceWar.SpacePanel var14 = new SpaceWar.SpacePanel(); + float var15 = var14.getAlignmentX(); + var14.setVisible(false); + java.awt.Dimension var18 = var14.getPreferredSize(); + java.awt.Toolkit var19 = var14.getToolkit(); + boolean var20 = var14.isFocusable(); + javax.swing.KeyStroke[] var21 = var14.getRegisteredKeyStrokes(); + SpaceWar.SpacePanel var22 = new SpaceWar.SpacePanel(); + float var23 = var22.getAlignmentX(); + SpaceWar.SpacePanel var24 = new SpaceWar.SpacePanel(); + float var25 = var24.getAlignmentX(); + var24.setVisible(false); + java.awt.Dimension var28 = var24.getPreferredSize(); + boolean var29 = var24.getVerifyInputWhenFocusTarget(); + java.awt.Component var32 = var24.findComponentAt(10, 1); + var22.addKeyListener((java.awt.event.KeyListener)var24); + var24.repaint(100, (-1), (-1), 1); + boolean var39 = var14.isAncestorOf((java.awt.Component)var24); + java.awt.Point var40 = var14.location(); + boolean var41 = var0.contains(var40); + int var42 = var0.getComponentCount(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == (-1)); + + // Regression assertion (captures the current behavior of the code) + assertNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var21); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var28); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var29 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var32); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var39 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var40); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var41 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var42 == 0); + + } + + public void test35() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test35"); + + + SpaceWar.PowerUp var3 = new SpaceWar.PowerUp(498, 494.29925122893764d, 470.4772832256448d); + + } + + public void test36() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test36"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + boolean var2 = var0.hasFocus(); + java.awt.Insets var3 = var0.getInsets(); + java.awt.Rectangle var4 = var0.bounds(); + boolean var5 = var0.isMaximumSizeSet(); + var0.setAlignmentX(1.0f); + var0.list(); + java.awt.Insets var9 = var0.insets(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var2 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var4); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var9); + + } + + public void test37() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test37"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.updateUI(); + var0.enableInputMethods(true); + java.lang.String var8 = var0.toString(); + java.awt.FocusTraversalPolicy var9 = var0.getFocusTraversalPolicy(); + java.lang.String var10 = var0.getUIClassID(); + boolean var11 = var0.getAutoscrolls(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var8 + "' != '" + "SpaceWar.SpacePanel[,0,0,0var8,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"+ "'", var8.equals("SpaceWar.SpacePanel[,0,0,0var8,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]")); + + // Regression assertion (captures the current behavior of the code) + assertNull(var9); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var10 + "' != '" + "PanelUI"+ "'", var10.equals("PanelUI")); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == false); + + } + + public void test38() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test38"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + var0.setRequestFocusEnabled(false); + var0.removeAll(); + var0.paintImmediately(500, 500, 100, 2); + var0.firePropertyChange("SpaceWar.SpacePanel[,-1,1,-1x10,invalid,hidden,disabled,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", 0L, 100L); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + } + + public void test39() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test39"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + java.awt.Dimension var4 = var0.getPreferredSize(); + java.awt.Toolkit var5 = var0.getToolkit(); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + var6.setName(""); + int var9 = var6.getX(); + SpaceWar.SpacePanel var10 = new SpaceWar.SpacePanel(); + float var11 = var10.getAlignmentX(); + var10.setVisible(false); + var10.nextFocus(); + SpaceWar.SpacePanel var15 = new SpaceWar.SpacePanel(); + float var16 = var15.getAlignmentX(); + var15.setVisible(false); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + java.awt.Color var20 = var19.getBackground(); + var15.setForeground(var20); + var10.setBackground(var20); + var6.setBackground(var20); + var0.setForeground(var20); + SpaceWar.SpacePanel var25 = new SpaceWar.SpacePanel(); + float var26 = var25.getAlignmentX(); + var25.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var31 = new SpaceWar.SpacePanel(); + float var32 = var31.getAlignmentX(); + var31.setVisible(false); + java.awt.Dimension var35 = var31.getPreferredSize(); + var25.setMaximumSize(var35); + boolean var37 = var25.getVerifyInputWhenFocusTarget(); + javax.accessibility.AccessibleContext var38 = var25.getAccessibleContext(); + boolean var39 = var25.isDoubleBuffered(); + java.awt.Rectangle var40 = var25.getVisibleRect(); + var0.scrollRectToVisible(var40); + SpaceWar.SpacePanel var42 = new SpaceWar.SpacePanel(); + float var43 = var42.getAlignmentX(); + var42.setVisible(false); + java.awt.Dimension var46 = var42.getPreferredSize(); + java.awt.Toolkit var47 = var42.getToolkit(); + SpaceWar.SpacePanel var48 = new SpaceWar.SpacePanel(); + var48.setName(""); + int var51 = var48.getX(); + SpaceWar.SpacePanel var52 = new SpaceWar.SpacePanel(); + float var53 = var52.getAlignmentX(); + var52.setVisible(false); + var52.nextFocus(); + SpaceWar.SpacePanel var57 = new SpaceWar.SpacePanel(); + float var58 = var57.getAlignmentX(); + var57.setVisible(false); + SpaceWar.SpacePanel var61 = new SpaceWar.SpacePanel(); + java.awt.Color var62 = var61.getBackground(); + var57.setForeground(var62); + var52.setBackground(var62); + var48.setBackground(var62); + var42.setForeground(var62); + SpaceWar.SpacePanel var67 = new SpaceWar.SpacePanel(); + float var68 = var67.getAlignmentX(); + var67.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var73 = new SpaceWar.SpacePanel(); + float var74 = var73.getAlignmentX(); + var73.setVisible(false); + java.awt.Dimension var77 = var73.getPreferredSize(); + var67.setMaximumSize(var77); + boolean var79 = var67.getVerifyInputWhenFocusTarget(); + javax.accessibility.AccessibleContext var80 = var67.getAccessibleContext(); + boolean var81 = var67.isDoubleBuffered(); + java.awt.Rectangle var82 = var67.getVisibleRect(); + var42.scrollRectToVisible(var82); + var0.removeKeyListener((java.awt.event.KeyListener)var42); + var42.firePropertyChange("PanelUI", (short)1, (short)1); + int var89 = var42.getHeight(); + var42.layout(); + var42.resize(499, 24); + java.awt.Dimension var94 = var42.minimumSize(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var4); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var32 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var35); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var38); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var39 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var40); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var43 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var46); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var47); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var51 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var53 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var58 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var62); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var68 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var74 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var77); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var79 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var80); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var81 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var82); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var89 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var94); + + } + + public void test40() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test40"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + SpaceWar.SpacePanel var4 = new SpaceWar.SpacePanel(); + java.awt.Color var5 = var4.getBackground(); + var0.setForeground(var5); + SpaceWar.SpacePanel var7 = new SpaceWar.SpacePanel(); + float var8 = var7.getAlignmentX(); + var7.setVisible(false); + boolean var11 = var7.isDoubleBuffered(); + java.awt.dnd.DropTarget var12 = var7.getDropTarget(); + var7.show(false); + java.awt.Rectangle var15 = var7.getVisibleRect(); + var0.repaint(var15); + java.awt.FocusTraversalPolicy var17 = var0.getFocusTraversalPolicy(); + var0.resetKeyboardActions(); + var0.setInheritsPopupMenu(true); + SpaceWar.SpacePanel var21 = new SpaceWar.SpacePanel(); + float var22 = var21.getAlignmentX(); + var21.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var27 = new SpaceWar.SpacePanel(); + float var28 = var27.getAlignmentX(); + var27.setVisible(false); + java.awt.Dimension var31 = var27.getPreferredSize(); + var21.setMaximumSize(var31); + boolean var33 = var21.getVerifyInputWhenFocusTarget(); + boolean var34 = var21.isFontSet(); + SpaceWar.SpacePanel var35 = new SpaceWar.SpacePanel(); + float var36 = var35.getAlignmentX(); + var35.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var41 = var35.getUI(); + java.awt.im.InputMethodRequests var42 = var35.getInputMethodRequests(); + SpaceWar.SpacePanel var43 = new SpaceWar.SpacePanel(); + float var44 = var43.getAlignmentX(); + var43.setVisible(false); + var43.nextFocus(); + var43.updateUI(); + var43.enableInputMethods(true); + var43.setSize((-1), 1); + SpaceWar.SpacePanel var54 = new SpaceWar.SpacePanel(); + var54.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var35.add((java.awt.Component)var43, (java.lang.Object)"SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + java.awt.ComponentOrientation var60 = var43.getComponentOrientation(); + java.beans.VetoableChangeListener[] var61 = var43.getVetoableChangeListeners(); + int var62 = var43.getHeight(); + var43.enable(true); + boolean var65 = var43.isFocusTraversalPolicyProvider(); + SpaceWar.SpacePanel var66 = new SpaceWar.SpacePanel(); + java.awt.Color var67 = var66.getBackground(); + var66.repaint(); + var66.setRequestFocusEnabled(false); + var66.reshape(100, 0, 100, 0); + var66.requestFocus(); + var66.firePropertyChange("hi!", '4', ' '); + java.awt.Point var81 = var66.getLocation(); + var43.setLocation(var81); + boolean var83 = var43.isManagingFocus(); + int var84 = var21.getComponentZOrder((java.awt.Component)var43); + SpaceWar.SpacePanel var85 = new SpaceWar.SpacePanel(); + float var86 = var85.getAlignmentX(); + var85.firePropertyChange("", (-1), 1); + boolean var91 = var85.isFocusOwner(); + java.awt.Dimension var92 = var85.getMinimumSize(); + var43.setPreferredSize(var92); + var0.setMinimumSize(var92); + javax.swing.InputMap var95 = var0.getInputMap(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var22 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var28 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var31); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var33 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var34 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var36 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var41); + + // Regression assertion (captures the current behavior of the code) + assertNull(var42); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var44 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var60); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var61); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var62 == 1); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var65 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var67); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var81); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var83 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var84 == (-1)); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var86 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var91 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var92); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var95); + + } + + public void test41() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test41"); + + + SpaceWar.PowerUp var3 = new SpaceWar.PowerUp((-1), 494.29925122893764d, 383.0566534864913d); + + } + + public void test42() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test42"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + boolean var6 = var0.isFocusCycleRoot(); + var0.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", 100, 0); + SpaceWar.SpacePanel var11 = new SpaceWar.SpacePanel(); + float var12 = var11.getAlignmentX(); + var11.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var17 = var11.getUI(); + var0.add((java.awt.Component)var11, (java.lang.Object)(short)0); + java.awt.event.InputMethodListener[] var20 = var11.getInputMethodListeners(); + java.awt.Toolkit var21 = var11.getToolkit(); + boolean var22 = var11.isDoubleBuffered(); + var11.list(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var21); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var22 == true); + + } + + public void test43() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test43"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var6 = var0.getMouseListeners(); + int var7 = var0.getDebugGraphicsOptions(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + boolean var12 = var8.isDoubleBuffered(); + java.awt.dnd.DropTarget var13 = var8.getDropTarget(); + var8.show(false); + java.awt.Rectangle var16 = var8.getVisibleRect(); + var0.paintImmediately(var16); + SpaceWar.SpacePanel var18 = new SpaceWar.SpacePanel(); + float var19 = var18.getAlignmentX(); + var18.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var24 = var18.getMouseListeners(); + int var25 = var18.getDebugGraphicsOptions(); + SpaceWar.SpacePanel var26 = new SpaceWar.SpacePanel(); + float var27 = var26.getAlignmentX(); + var26.setVisible(false); + boolean var30 = var26.isDoubleBuffered(); + java.awt.dnd.DropTarget var31 = var26.getDropTarget(); + var26.show(false); + java.awt.Rectangle var34 = var26.getVisibleRect(); + var18.paintImmediately(var34); + java.awt.Rectangle var36 = var18.getBounds(); + var0.scrollRectToVisible(var36); + SpaceWar.SpacePanel var38 = new SpaceWar.SpacePanel(); + java.awt.Color var39 = var38.getBackground(); + var38.repaint(); + var38.setRequestFocusEnabled(false); + var38.setIgnoreRepaint(false); + boolean var45 = var38.requestFocusInWindow(); + float var46 = var38.getAlignmentY(); + java.awt.LayoutManager var47 = var38.getLayout(); + var0.setLayout(var47); + float var49 = var0.getAlignmentY(); + java.awt.im.InputMethodRequests var50 = var0.getInputMethodRequests(); + var0.transferFocusUpCycle(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var30 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var31); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var34); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var36); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var39); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var45 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var46 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var47); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var49 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNull(var50); + + } + + public void test44() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test44"); + + + SpaceWar.PowerUp var3 = new SpaceWar.PowerUp(24, 516.8000611430284d, 24.0d); + + } + + public void test45() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test45"); + + + SpaceWar.Enemy var2 = new SpaceWar.Enemy(0, 100); + var2.explode(); + double var4 = var2.getY(); + double var5 = var2.getX(); + int var6 = var2.getType(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0.0d); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == 341.4774144340512d); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == 0); + + } + + public void test46() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test46"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.updateUI(); + java.util.Locale var6 = var0.getLocale(); + var0.paintImmediately(25, 100, 3, 0); + boolean var12 = var0.isCursorSet(); + boolean var13 = var0.isCursorSet(); + boolean var14 = var0.getFocusTraversalKeysEnabled(); + boolean var15 = var0.isOpaque(); + SpaceWar.SpacePanel var16 = new SpaceWar.SpacePanel(); + float var17 = var16.getAlignmentX(); + SpaceWar.SpacePanel var18 = new SpaceWar.SpacePanel(); + float var19 = var18.getAlignmentX(); + var18.setVisible(false); + java.awt.Dimension var22 = var18.getPreferredSize(); + boolean var23 = var18.getVerifyInputWhenFocusTarget(); + java.awt.Component var26 = var18.findComponentAt(10, 1); + var16.addKeyListener((java.awt.event.KeyListener)var18); + java.awt.Dimension var28 = var18.getMinimumSize(); + java.awt.Point var29 = var18.location(); + boolean var30 = var0.contains(var29); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var28); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var29); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var30 == false); + + } + + public void test47() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test47"); + + + SpaceWar.Player var0 = new SpaceWar.Player(); + boolean var1 = var0.isRecovering(); + var0.loseLife(); + int var3 = var0.getR(); + var0.loseLife(); + int var5 = var0.getScore(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == 25); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == 0); + + } + + public void test48() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test48"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + SpaceWar.SpacePanel var4 = new SpaceWar.SpacePanel(); + java.awt.Color var5 = var4.getBackground(); + var0.setForeground(var5); + SpaceWar.SpacePanel var7 = new SpaceWar.SpacePanel(); + float var8 = var7.getAlignmentX(); + var7.setVisible(false); + boolean var11 = var7.isDoubleBuffered(); + java.awt.dnd.DropTarget var12 = var7.getDropTarget(); + var7.show(false); + java.awt.Rectangle var15 = var7.getVisibleRect(); + var0.repaint(var15); + java.awt.FocusTraversalPolicy var17 = var0.getFocusTraversalPolicy(); + java.awt.im.InputMethodRequests var18 = var0.getInputMethodRequests(); + var0.layout(); + boolean var20 = var0.isFocusTraversalPolicyProvider(); + java.awt.Insets var21 = var0.insets(); + java.awt.Dimension var22 = var0.getMinimumSize(); + SpaceWar.SpacePanel var23 = new SpaceWar.SpacePanel(); + float var24 = var23.getAlignmentX(); + var23.setVisible(false); + boolean var27 = var23.isDoubleBuffered(); + java.awt.dnd.DropTarget var28 = var23.getDropTarget(); + var23.show(false); + java.awt.event.MouseWheelListener[] var31 = var23.getMouseWheelListeners(); + SpaceWar.SpacePanel var32 = new SpaceWar.SpacePanel(); + float var33 = var32.getAlignmentX(); + var32.setVisible(false); + SpaceWar.SpacePanel var36 = new SpaceWar.SpacePanel(); + java.awt.Color var37 = var36.getBackground(); + var32.setForeground(var37); + SpaceWar.SpacePanel var39 = new SpaceWar.SpacePanel(); + float var40 = var39.getAlignmentX(); + var39.setVisible(false); + boolean var43 = var39.isDoubleBuffered(); + java.awt.dnd.DropTarget var44 = var39.getDropTarget(); + var39.show(false); + java.awt.Rectangle var47 = var39.getVisibleRect(); + var32.repaint(var47); + SpaceWar.SpacePanel var49 = new SpaceWar.SpacePanel(); + float var50 = var49.getAlignmentX(); + var49.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var55 = var49.getMouseListeners(); + java.awt.Dimension var56 = var49.getPreferredSize(); + java.util.Locale var57 = var49.getLocale(); + var32.setLocale(var57); + java.util.Locale var59 = var32.getLocale(); + var23.setLocale(var59); + var0.setLocale(var59); + javax.swing.JComponent.setDefaultLocale(var59); + javax.swing.JComponent.setDefaultLocale(var59); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var21); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var24 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var28); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var31); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var33 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var37); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var40 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var43 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var44); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var47); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var50 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var55); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var56); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var57); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var59); + + } + + public void test49() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test49"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + float var7 = var6.getAlignmentX(); + var6.setVisible(false); + java.awt.Dimension var10 = var6.getPreferredSize(); + var0.setMaximumSize(var10); + var0.layout(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var10); + + } + + public void test50() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test50"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + var0.setRequestFocusEnabled(false); + var0.reshape(100, 0, 100, 0); + var0.requestFocus(); + var0.firePropertyChange("hi!", '4', ' '); + java.awt.Point var15 = var0.getLocation(); + java.awt.Dimension var16 = var0.size(); + java.awt.Image var19 = var0.createImage((-1), (-1)); + java.awt.event.ComponentListener[] var20 = var0.getComponentListeners(); + SpaceWar.SpacePanel var21 = new SpaceWar.SpacePanel(); + var21.setName(""); + java.awt.ComponentOrientation var24 = var21.getComponentOrientation(); + var21.firePropertyChange("PanelUI", 1.0f, 0.5f); + int var29 = var0.getComponentZOrder((java.awt.Component)var21); + java.awt.event.InputMethodListener[] var30 = var21.getInputMethodListeners(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var29 == (-1)); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var30); + + } + + public void test51() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test51"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + boolean var4 = var0.inside(0, (-1)); + SpaceWar.SpacePanel var5 = new SpaceWar.SpacePanel(); + float var6 = var5.getAlignmentX(); + var5.setVisible(false); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + java.awt.Color var10 = var9.getBackground(); + var5.setForeground(var10); + var0.setForeground(var10); + java.awt.image.VolatileImage var15 = var0.createVolatileImage(400, (-1)); + java.awt.LayoutManager var16 = var0.getLayout(); + java.awt.peer.ComponentPeer var17 = var0.getPeer(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + } + + public void test52() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test52"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + var0.show(false); + java.awt.Rectangle var8 = var0.getVisibleRect(); + java.awt.image.BufferedImage var10 = var0.loadImg("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + java.awt.ComponentOrientation var11 = var0.getComponentOrientation(); + var0.show(false); + boolean var14 = var0.isOpaque(); + SpaceWar.SpacePanel var15 = new SpaceWar.SpacePanel(); + float var16 = var15.getAlignmentX(); + var15.setVisible(false); + boolean var19 = var15.isDoubleBuffered(); + var15.enable(false); + boolean var22 = var15.getFocusTraversalKeysEnabled(); + SpaceWar.SpacePanel var23 = new SpaceWar.SpacePanel(); + float var24 = var23.getAlignmentX(); + var23.setVisible(false); + java.awt.Dimension var27 = var23.getPreferredSize(); + java.awt.Toolkit var28 = var23.getToolkit(); + boolean var29 = var23.isFocusable(); + javax.swing.KeyStroke[] var30 = var23.getRegisteredKeyStrokes(); + SpaceWar.SpacePanel var31 = new SpaceWar.SpacePanel(); + float var32 = var31.getAlignmentX(); + SpaceWar.SpacePanel var33 = new SpaceWar.SpacePanel(); + float var34 = var33.getAlignmentX(); + var33.setVisible(false); + java.awt.Dimension var37 = var33.getPreferredSize(); + boolean var38 = var33.getVerifyInputWhenFocusTarget(); + java.awt.Component var41 = var33.findComponentAt(10, 1); + var31.addKeyListener((java.awt.event.KeyListener)var33); + var33.repaint(100, (-1), (-1), 1); + boolean var48 = var23.isAncestorOf((java.awt.Component)var33); + var15.addKeyListener((java.awt.event.KeyListener)var33); + var33.hide(); + java.awt.event.MouseWheelListener[] var51 = var33.getMouseWheelListeners(); + var33.setBounds(24, 400, (-1), 2); + java.awt.ComponentOrientation var57 = var33.getComponentOrientation(); + var0.setComponentOrientation(var57); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var22 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var24 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var27); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var28); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var29 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var30); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var32 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var34 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var37); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var38 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var41); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var48 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var51); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var57); + + } + + public void test53() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test53"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.updateUI(); + var0.enableInputMethods(true); + java.awt.Point var9 = var0.getMousePosition(false); + java.awt.Component.BaselineResizeBehavior var10 = var0.getBaselineResizeBehavior(); + java.awt.Dimension var11 = var0.getPreferredSize(); + var0.show(); + var0.setEnabled(false); + SpaceWar.SpacePanel var15 = new SpaceWar.SpacePanel(); + float var16 = var15.getAlignmentX(); + var15.setVisible(false); + var15.nextFocus(); + var15.requestFocus(); + boolean var21 = var15.isBackgroundSet(); + SpaceWar.SpacePanel var22 = new SpaceWar.SpacePanel(); + java.awt.Color var23 = var22.getBackground(); + var22.repaint(); + var22.setRequestFocusEnabled(false); + var22.reshape(100, 0, 100, 0); + SpaceWar.SpacePanel var32 = new SpaceWar.SpacePanel(); + float var33 = var32.getAlignmentX(); + var32.setVisible(false); + var32.setInheritsPopupMenu(false); + boolean var38 = var32.isDoubleBuffered(); + SpaceWar.SpacePanel var39 = new SpaceWar.SpacePanel(); + float var40 = var39.getAlignmentX(); + var39.setVisible(false); + var39.nextFocus(); + var39.reshape((-1), 1, (-1), 10); + var39.disable(); + java.awt.LayoutManager var50 = var39.getLayout(); + var32.setLayout(var50); + var15.add((java.awt.Component)var22, (java.lang.Object)var50); + SpaceWar.SpacePanel var53 = new SpaceWar.SpacePanel(); + float var54 = var53.getAlignmentX(); + var53.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var59 = var53.getUI(); + SpaceWar.SpacePanel var60 = new SpaceWar.SpacePanel(); + float var61 = var60.getAlignmentX(); + var60.setVisible(false); + SpaceWar.SpacePanel var64 = new SpaceWar.SpacePanel(); + java.awt.Color var65 = var64.getBackground(); + var60.setForeground(var65); + SpaceWar.SpacePanel var67 = new SpaceWar.SpacePanel(); + float var68 = var67.getAlignmentX(); + var67.setVisible(false); + boolean var71 = var67.isDoubleBuffered(); + java.awt.dnd.DropTarget var72 = var67.getDropTarget(); + var67.show(false); + java.awt.Rectangle var75 = var67.getVisibleRect(); + var60.repaint(var75); + java.awt.FocusTraversalPolicy var77 = var60.getFocusTraversalPolicy(); + var60.resetKeyboardActions(); + SpaceWar.SpacePanel var79 = new SpaceWar.SpacePanel(); + float var80 = var79.getAlignmentX(); + var79.setVisible(false); + boolean var83 = var79.isDoubleBuffered(); + java.awt.dnd.DropTarget var84 = var79.getDropTarget(); + var79.show(false); + java.awt.Rectangle var87 = var79.getVisibleRect(); + var60.computeVisibleRect(var87); + javax.swing.ActionMap var89 = var60.getActionMap(); + var53.setActionMap(var89); + boolean var91 = var53.isForegroundSet(); + var0.add((java.awt.Component)var15, (java.lang.Object)var53); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNull(var9); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var23); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var33 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var38 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var40 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var50); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var54 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var59); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var61 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var65); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var68 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var71 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var72); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var75); + + // Regression assertion (captures the current behavior of the code) + assertNull(var77); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var80 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var83 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var84); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var87); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var89); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var91 == true); + + } + + public void test54() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test54"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.repaint(1L); + SpaceWar.SpacePanel var7 = new SpaceWar.SpacePanel(); + float var8 = var7.getAlignmentX(); + var7.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var13 = new SpaceWar.SpacePanel(); + float var14 = var13.getAlignmentX(); + var13.setVisible(false); + java.awt.Dimension var17 = var13.getPreferredSize(); + var7.setMaximumSize(var17); + var0.setPreferredSize(var17); + javax.swing.plaf.PanelUI var20 = var0.getUI(); + SpaceWar.SpacePanel var21 = new SpaceWar.SpacePanel(); + float var22 = var21.getAlignmentX(); + var21.setVisible(false); + SpaceWar.SpacePanel var25 = new SpaceWar.SpacePanel(); + java.awt.Color var26 = var25.getBackground(); + var21.setForeground(var26); + SpaceWar.SpacePanel var28 = new SpaceWar.SpacePanel(); + float var29 = var28.getAlignmentX(); + var28.setVisible(false); + boolean var32 = var28.isDoubleBuffered(); + java.awt.dnd.DropTarget var33 = var28.getDropTarget(); + var28.show(false); + java.awt.Rectangle var36 = var28.getVisibleRect(); + var21.repaint(var36); + java.awt.FocusTraversalPolicy var38 = var21.getFocusTraversalPolicy(); + var21.resetKeyboardActions(); + SpaceWar.SpacePanel var40 = new SpaceWar.SpacePanel(); + float var41 = var40.getAlignmentX(); + var40.setVisible(false); + boolean var44 = var40.isDoubleBuffered(); + java.awt.dnd.DropTarget var45 = var40.getDropTarget(); + var40.show(false); + java.awt.Rectangle var48 = var40.getVisibleRect(); + var21.computeVisibleRect(var48); + javax.swing.ActionMap var50 = var21.getActionMap(); + var0.setActionMap(var50); + java.awt.Point var52 = var0.getMousePosition(); + boolean var55 = var0.contains(499, 24); + var0.setAlignmentY(100.0f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var22 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var29 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var32 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var33); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var36); + + // Regression assertion (captures the current behavior of the code) + assertNull(var38); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var41 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var44 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var45); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var48); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var50); + + // Regression assertion (captures the current behavior of the code) + assertNull(var52); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var55 == false); + + } + + public void test55() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test55"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.setInheritsPopupMenu(false); + boolean var6 = var0.isDoubleBuffered(); + SpaceWar.SpacePanel var7 = new SpaceWar.SpacePanel(); + float var8 = var7.getAlignmentX(); + var7.setVisible(false); + var7.nextFocus(); + var7.reshape((-1), 1, (-1), 10); + var7.disable(); + java.awt.LayoutManager var18 = var7.getLayout(); + var0.setLayout(var18); + java.awt.event.MouseMotionListener[] var20 = var0.getMouseMotionListeners(); + javax.swing.event.AncestorListener[] var21 = var0.getAncestorListeners(); + var0.firePropertyChange("SpaceWar.SpacePanel[,100,0,100x0,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", (short)(-1), (short)1); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var21); + + } + + public void test56() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test56"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + boolean var6 = var0.isFocusCycleRoot(); + var0.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", 100, 0); + SpaceWar.SpacePanel var11 = new SpaceWar.SpacePanel(); + float var12 = var11.getAlignmentX(); + var11.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var17 = var11.getUI(); + var0.add((java.awt.Component)var11, (java.lang.Object)(short)0); + SpaceWar.SpacePanel var20 = new SpaceWar.SpacePanel(); + float var21 = var20.getAlignmentX(); + var20.setVisible(false); + var20.nextFocus(); + var20.repaint(1L); + SpaceWar.SpacePanel var27 = new SpaceWar.SpacePanel(); + float var28 = var27.getAlignmentX(); + var27.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var33 = new SpaceWar.SpacePanel(); + float var34 = var33.getAlignmentX(); + var33.setVisible(false); + java.awt.Dimension var37 = var33.getPreferredSize(); + var27.setMaximumSize(var37); + var20.setPreferredSize(var37); + javax.swing.plaf.PanelUI var40 = var20.getUI(); + SpaceWar.SpacePanel var41 = new SpaceWar.SpacePanel(); + float var42 = var41.getAlignmentX(); + var41.setVisible(false); + SpaceWar.SpacePanel var45 = new SpaceWar.SpacePanel(); + java.awt.Color var46 = var45.getBackground(); + var41.setForeground(var46); + SpaceWar.SpacePanel var48 = new SpaceWar.SpacePanel(); + float var49 = var48.getAlignmentX(); + var48.setVisible(false); + boolean var52 = var48.isDoubleBuffered(); + java.awt.dnd.DropTarget var53 = var48.getDropTarget(); + var48.show(false); + java.awt.Rectangle var56 = var48.getVisibleRect(); + var41.repaint(var56); + java.awt.FocusTraversalPolicy var58 = var41.getFocusTraversalPolicy(); + var41.resetKeyboardActions(); + SpaceWar.SpacePanel var60 = new SpaceWar.SpacePanel(); + float var61 = var60.getAlignmentX(); + var60.setVisible(false); + boolean var64 = var60.isDoubleBuffered(); + java.awt.dnd.DropTarget var65 = var60.getDropTarget(); + var60.show(false); + java.awt.Rectangle var68 = var60.getVisibleRect(); + var41.computeVisibleRect(var68); + javax.swing.ActionMap var70 = var41.getActionMap(); + var20.setActionMap(var70); + java.awt.Point var72 = var20.getMousePosition(); + int var73 = var11.getComponentZOrder((java.awt.Component)var20); + boolean var76 = var20.inside(400, 100); + javax.swing.TransferHandler var77 = var20.getTransferHandler(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var28 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var34 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var37); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var40); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var42 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var46); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var49 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var52 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var53); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var56); + + // Regression assertion (captures the current behavior of the code) + assertNull(var58); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var61 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var64 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var65); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var68); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var70); + + // Regression assertion (captures the current behavior of the code) + assertNull(var72); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var73 == (-1)); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var76 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var77); + + } + + public void test57() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test57"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.repaint(1L); + SpaceWar.SpacePanel var7 = new SpaceWar.SpacePanel(); + float var8 = var7.getAlignmentX(); + var7.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var13 = new SpaceWar.SpacePanel(); + float var14 = var13.getAlignmentX(); + var13.setVisible(false); + java.awt.Dimension var17 = var13.getPreferredSize(); + var7.setMaximumSize(var17); + var0.setPreferredSize(var17); + var0.hide(); + boolean var21 = var0.getIgnoreRepaint(); + boolean var22 = var0.isFocusTraversable(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var22 == true); + + } + + public void test58() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test58"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.reshape((-1), 1, (-1), 10); + var0.disable(); + boolean var11 = var0.isFocusable(); + SpaceWar.SpacePanel var12 = new SpaceWar.SpacePanel(); + float var13 = var12.getAlignmentX(); + var12.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var18 = var12.getUI(); + java.awt.im.InputMethodRequests var19 = var12.getInputMethodRequests(); + SpaceWar.SpacePanel var20 = new SpaceWar.SpacePanel(); + float var21 = var20.getAlignmentX(); + var20.setVisible(false); + var20.nextFocus(); + var20.updateUI(); + var20.enableInputMethods(true); + var20.setSize((-1), 1); + SpaceWar.SpacePanel var31 = new SpaceWar.SpacePanel(); + var31.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var12.add((java.awt.Component)var20, (java.lang.Object)"SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + java.awt.event.KeyListener[] var37 = var12.getKeyListeners(); + java.awt.FocusTraversalPolicy var38 = var12.getFocusTraversalPolicy(); + SpaceWar.SpacePanel var39 = new SpaceWar.SpacePanel(); + var39.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + java.awt.Toolkit var44 = var39.getToolkit(); + var0.add((java.awt.Component)var12, (java.lang.Object)var39); + var0.layout(); + boolean var47 = var0.isVisible(); + var0.firePropertyChange("PanelUI", (byte)100, (byte)10); + javax.swing.ActionMap var52 = var0.getActionMap(); + java.awt.Point var54 = var0.getMousePosition(true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var37); + + // Regression assertion (captures the current behavior of the code) + assertNull(var38); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var44); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var47 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var52); + + // Regression assertion (captures the current behavior of the code) + assertNull(var54); + + } + + public void test59() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test59"); + + + SpaceWar.Player var0 = new SpaceWar.Player(); + boolean var1 = var0.isRecovering(); + var0.setRigth(false); + boolean var4 = var0.isDead(); + int var5 = var0.getR(); + int var6 = var0.getY(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == 25); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == 500); + + } + + public void test60() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test60"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var1 = new SpaceWar.SpacePanel(); + java.awt.Color var2 = var1.getBackground(); + SpaceWar.SpacePanel var3 = new SpaceWar.SpacePanel(); + float var4 = var3.getAlignmentX(); + var3.setVisible(false); + var3.nextFocus(); + var3.updateUI(); + var3.enableInputMethods(true); + var0.add((java.awt.Component)var1, (java.lang.Object)true); + java.awt.Image var14 = var1.createImage(1, (-1)); + java.awt.event.MouseListener[] var15 = var1.getMouseListeners(); + var1.firePropertyChange("SpaceWar.SpacePanel[,-1,1,-1x10,invalid,hidden,disabled,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", 100.0d, 1.0d); + var1.setLocation(24, 3); + javax.swing.InputVerifier var23 = var1.getInputVerifier(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var2); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNull(var23); + + } + + public void test61() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test61"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + var0.setRequestFocusEnabled(false); + var0.reshape(100, 0, 100, 0); + var0.requestFocus(); + java.awt.Rectangle var11 = var0.getVisibleRect(); + java.awt.Rectangle var12 = var0.getBounds(); + java.awt.im.InputMethodRequests var13 = var0.getInputMethodRequests(); + boolean var14 = var0.requestFocusInWindow(); + java.awt.Rectangle var15 = var0.bounds(); + var0.setAutoscrolls(true); + var0.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=1.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", 10L, 10L); + var0.setFocusable(true); + var0.setName("SpaceWar.SpacePanel[,100,0,100x0,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + } + + public void test62() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test62"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + boolean var6 = var0.isFocusCycleRoot(); + var0.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", 100, 0); + SpaceWar.SpacePanel var11 = new SpaceWar.SpacePanel(); + float var12 = var11.getAlignmentX(); + var11.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var17 = var11.getUI(); + var0.setNextFocusableComponent((java.awt.Component)var11); + var11.doLayout(); + java.awt.Rectangle var20 = var11.getBounds(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + } + + public void test63() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test63"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + boolean var2 = var0.hasFocus(); + java.beans.VetoableChangeListener[] var3 = var0.getVetoableChangeListeners(); + var0.paintImmediately(10, 0, (-1), 25); + boolean var9 = var0.getInheritsPopupMenu(); + var0.resize(500, 10); + SpaceWar.SpacePanel var13 = new SpaceWar.SpacePanel(); + float var14 = var13.getAlignmentX(); + var13.setVisible(false); + boolean var17 = var13.isDoubleBuffered(); + SpaceWar.SpacePanel var18 = new SpaceWar.SpacePanel(); + float var19 = var18.getAlignmentX(); + var18.setVisible(false); + var18.nextFocus(); + var18.reshape((-1), 1, (-1), 10); + var18.disable(); + boolean var29 = var18.isFocusable(); + int var30 = var18.getHeight(); + var13.setNextFocusableComponent((java.awt.Component)var18); + SpaceWar.SpacePanel var32 = new SpaceWar.SpacePanel(); + float var33 = var32.getAlignmentX(); + var32.setVisible(false); + var32.nextFocus(); + SpaceWar.SpacePanel var37 = new SpaceWar.SpacePanel(); + float var38 = var37.getAlignmentX(); + var37.setVisible(false); + SpaceWar.SpacePanel var41 = new SpaceWar.SpacePanel(); + java.awt.Color var42 = var41.getBackground(); + var37.setForeground(var42); + var32.setBackground(var42); + java.awt.Component var45 = var32.getNextFocusableComponent(); + float var46 = var32.getAlignmentY(); + java.awt.event.MouseListener[] var47 = var32.getMouseListeners(); + java.awt.Point var48 = var32.location(); + java.awt.Point var49 = var13.getLocation(var48); + var0.setLocation(var49); + var0.grabFocus(); + boolean var52 = var0.isShowing(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var2 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var29 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var30 == 10); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var33 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var38 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var42); + + // Regression assertion (captures the current behavior of the code) + assertNull(var45); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var46 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var47); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var48); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var49); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var52 == false); + + } + + public void test64() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test64"); + + + SpaceWar.Enemy var2 = new SpaceWar.Enemy(0, 100); + var2.explode(); + double var4 = var2.getX(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 273.84550342263697d); + + } + + public void test65() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test65"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + var0.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + javax.swing.plaf.PanelUI var5 = var0.getUI(); + java.awt.Color var6 = var0.getBackground(); + var0.removeAll(); + int var8 = var0.getHeight(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.removeNotify(); + SpaceWar.SpacePanel var12 = new SpaceWar.SpacePanel(); + float var13 = var12.getAlignmentX(); + var12.setVisible(false); + boolean var16 = var12.isDoubleBuffered(); + var12.list(); + float var18 = var12.getAlignmentY(); + java.awt.Insets var19 = var12.getInsets(); + java.awt.Insets var20 = var9.getInsets(var19); + boolean var21 = var9.isDoubleBuffered(); + java.awt.Component var22 = var0.add((java.awt.Component)var9); + javax.swing.JPopupMenu var23 = var9.getComponentPopupMenu(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertNull(var23); + + } + + public void test66() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test66"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.repaint(1L); + java.awt.image.VolatileImage var9 = var0.createVolatileImage(0, (-1)); + var0.transferFocusUpCycle(); + var0.setAlignmentY(0.0f); + java.awt.event.KeyListener[] var13 = var0.getKeyListeners(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNull(var9); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var13); + + } + + public void test67() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test67"); + + + SpaceWar.Enemy var2 = new SpaceWar.Enemy(0, 100); + int var3 = var2.getR(); + var2.explode(); + var2.update(); + int var6 = var2.getRank(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == 100); + + } + + public void test68() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test68"); + + + SpaceWar.PowerUp var3 = new SpaceWar.PowerUp(24, 306.4012291647917d, 282.8681995802876d); + double var4 = var3.getX(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 306.4012291647917d); + + } + + public void test69() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test69"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var1 = new SpaceWar.SpacePanel(); + java.awt.Color var2 = var1.getBackground(); + SpaceWar.SpacePanel var3 = new SpaceWar.SpacePanel(); + float var4 = var3.getAlignmentX(); + var3.setVisible(false); + var3.nextFocus(); + var3.updateUI(); + var3.enableInputMethods(true); + var0.add((java.awt.Component)var1, (java.lang.Object)true); + java.awt.Dimension var12 = var1.getPreferredSize(); + var1.move(100, 10); + java.awt.Graphics var16 = var1.getGraphics(); + boolean var17 = var1.getInheritsPopupMenu(); + javax.swing.event.AncestorListener[] var18 = var1.getAncestorListeners(); + var1.doLayout(); + var1.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=1.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", '#', 'a'); + boolean var24 = var1.isCursorSet(); + var1.firePropertyChange("", 100L, 10L); + var1.resetKeyboardActions(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var2); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var24 == false); + + } + + public void test70() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test70"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + var0.enable(false); + int var7 = var0.getWidth(); + var0.removeNotify(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.setVisible(false); + SpaceWar.SpacePanel var13 = new SpaceWar.SpacePanel(); + java.awt.Color var14 = var13.getBackground(); + var9.setForeground(var14); + SpaceWar.SpacePanel var16 = new SpaceWar.SpacePanel(); + float var17 = var16.getAlignmentX(); + var16.setVisible(false); + boolean var20 = var16.isDoubleBuffered(); + java.awt.dnd.DropTarget var21 = var16.getDropTarget(); + var16.show(false); + java.awt.Rectangle var24 = var16.getVisibleRect(); + var9.repaint(var24); + java.awt.FocusTraversalPolicy var26 = var9.getFocusTraversalPolicy(); + SpaceWar.SpacePanel var27 = new SpaceWar.SpacePanel(); + float var28 = var27.getAlignmentX(); + var27.firePropertyChange("", (-1), 1); + boolean var33 = var27.isFocusOwner(); + SpaceWar.SpacePanel var35 = new SpaceWar.SpacePanel(); + float var36 = var35.getAlignmentX(); + var35.setVisible(false); + java.awt.Dimension var39 = var35.getPreferredSize(); + java.awt.Toolkit var40 = var35.getToolkit(); + SpaceWar.SpacePanel var41 = new SpaceWar.SpacePanel(); + var41.setName(""); + int var44 = var41.getX(); + SpaceWar.SpacePanel var45 = new SpaceWar.SpacePanel(); + float var46 = var45.getAlignmentX(); + var45.setVisible(false); + var45.nextFocus(); + SpaceWar.SpacePanel var50 = new SpaceWar.SpacePanel(); + float var51 = var50.getAlignmentX(); + var50.setVisible(false); + SpaceWar.SpacePanel var54 = new SpaceWar.SpacePanel(); + java.awt.Color var55 = var54.getBackground(); + var50.setForeground(var55); + var45.setBackground(var55); + var41.setBackground(var55); + var35.setForeground(var55); + var27.putClientProperty((java.lang.Object)(byte)100, (java.lang.Object)var55); + var9.setBackground(var55); + SpaceWar.SpacePanel var62 = new SpaceWar.SpacePanel(); + float var63 = var62.getAlignmentX(); + var62.setVisible(false); + boolean var66 = var62.isDoubleBuffered(); + java.awt.dnd.DropTarget var67 = var62.getDropTarget(); + var62.show(false); + boolean var70 = var62.isPaintingForPrint(); + SpaceWar.SpacePanel var71 = new SpaceWar.SpacePanel(); + float var72 = var71.getAlignmentX(); + SpaceWar.SpacePanel var73 = new SpaceWar.SpacePanel(); + float var74 = var73.getAlignmentX(); + var73.setVisible(false); + java.awt.Dimension var77 = var73.getPreferredSize(); + boolean var78 = var73.getVerifyInputWhenFocusTarget(); + java.awt.Component var81 = var73.findComponentAt(10, 1); + var71.addKeyListener((java.awt.event.KeyListener)var73); + java.awt.Dimension var83 = var73.getMinimumSize(); + var62.setMinimumSize(var83); + java.awt.Dimension var85 = var9.getSize(var83); + java.awt.im.InputMethodRequests var86 = var9.getInputMethodRequests(); + java.awt.Color var87 = var9.getBackground(); + var0.setBackground(var87); + boolean var89 = var0.isFocusTraversalPolicyProvider(); + boolean var90 = var0.isDisplayable(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var21); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var28 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var33 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var36 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var39); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var40); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var44 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var46 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var51 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var55); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var63 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var66 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var67); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var70 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var72 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var74 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var77); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var78 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var81); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var83); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var85); + + // Regression assertion (captures the current behavior of the code) + assertNull(var86); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var87); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var89 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var90 == false); + + } + + public void test71() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test71"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.setInheritsPopupMenu(false); + var0.setFocusTraversalPolicyProvider(true); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + java.awt.Color var9 = var8.getBackground(); + var8.repaint(); + java.awt.im.InputMethodRequests var11 = var8.getInputMethodRequests(); + java.awt.GraphicsConfiguration var12 = var8.getGraphicsConfiguration(); + java.awt.Component var13 = var0.add((java.awt.Component)var8); + java.awt.Rectangle var14 = var0.getBounds(); + java.lang.Object var15 = var0.getTreeLock(); + var0.layout(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var9); + + // Regression assertion (captures the current behavior of the code) + assertNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + } + + public void test72() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test72"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var6 = var0.getMouseListeners(); + var0.firePropertyChange("", 0.5f, 100.0f); + var0.enable(false); + SpaceWar.SpacePanel var13 = new SpaceWar.SpacePanel(); + float var14 = var13.getAlignmentX(); + SpaceWar.SpacePanel var15 = new SpaceWar.SpacePanel(); + float var16 = var15.getAlignmentX(); + var15.setVisible(false); + java.awt.Dimension var19 = var15.getPreferredSize(); + boolean var20 = var15.getVerifyInputWhenFocusTarget(); + java.awt.Component var23 = var15.findComponentAt(10, 1); + var13.addKeyListener((java.awt.event.KeyListener)var15); + java.awt.Cursor var25 = var13.getCursor(); + java.awt.Dimension var26 = var13.getMinimumSize(); + var0.setSize(var26); + SpaceWar.SpacePanel var28 = new SpaceWar.SpacePanel(); + java.awt.Color var29 = var28.getBackground(); + var28.repaint(); + java.awt.im.InputMethodRequests var31 = var28.getInputMethodRequests(); + var28.setDoubleBuffered(true); + var28.setInheritsPopupMenu(false); + javax.swing.plaf.PanelUI var36 = var28.getUI(); + java.util.Set var38 = var28.getFocusTraversalKeys(3); + var28.enable(); + var0.putClientProperty((java.lang.Object)var28, (java.lang.Object)(short)10); + var0.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=10,height=10]]", 494.29925122893764d, (-2.7646948150810227d)); + boolean var46 = var0.isFontSet(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var23); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var25); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var29); + + // Regression assertion (captures the current behavior of the code) + assertNull(var31); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var36); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var38); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var46 == true); + + } + + public void test73() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test73"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.reshape((-1), 1, (-1), 10); + var0.disable(); + java.awt.LayoutManager var11 = var0.getLayout(); + java.awt.Container var12 = var0.getParent(); + boolean var13 = var0.isOptimizedDrawingEnabled(); + var0.enableInputMethods(true); + java.awt.im.InputContext var16 = var0.getInputContext(); + var0.removeNotify(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var16); + + } + + public void test74() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test74"); + + + SpaceWar.Text var4 = new SpaceWar.Text(413.1182290853403d, 1.0d, 0L, "SpaceWar.SpacePanel[,-1,100,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=265,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + boolean var5 = var4.update(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == false); + + } + + public void test75() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test75"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + java.awt.event.MouseMotionListener[] var6 = var0.getMouseMotionListeners(); + java.awt.event.ComponentListener[] var7 = var0.getComponentListeners(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + var8.nextFocus(); + var8.repaint(1L); + SpaceWar.SpacePanel var15 = new SpaceWar.SpacePanel(); + float var16 = var15.getAlignmentX(); + var15.setVisible(false); + boolean var19 = var15.isDoubleBuffered(); + var15.list(); + SpaceWar.SpacePanel var21 = new SpaceWar.SpacePanel(); + float var22 = var21.getAlignmentX(); + var21.setVisible(false); + boolean var25 = var21.isDoubleBuffered(); + java.awt.dnd.DropTarget var26 = var21.getDropTarget(); + var21.show(false); + java.awt.Rectangle var29 = var21.getVisibleRect(); + java.awt.Rectangle var30 = var15.getBounds(var29); + var8.setBounds(var30); + var0.paintImmediately(var30); + var0.setBounds(3, 499, 3, 0); + java.lang.String var38 = var0.getName(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var22 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var29); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var30); + + // Regression assertion (captures the current behavior of the code) + assertNull(var38); + + } + + public void test76() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test76"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var6 = var0.getMouseListeners(); + int var7 = var0.getDebugGraphicsOptions(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + boolean var12 = var8.isDoubleBuffered(); + java.awt.dnd.DropTarget var13 = var8.getDropTarget(); + var8.show(false); + java.awt.Rectangle var16 = var8.getVisibleRect(); + var0.paintImmediately(var16); + var0.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", '#', '#'); + var0.list(); + java.awt.Rectangle var23 = var0.getBounds(); + boolean var24 = var0.isEnabled(); + float var25 = var0.getAlignmentX(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var23); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var24 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == 0.5f); + + } + + public void test77() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test77"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + boolean var2 = var0.hasFocus(); + java.awt.Insets var3 = var0.getInsets(); + java.awt.Dimension var4 = var0.getPreferredSize(); + SpaceWar.SpacePanel var5 = new SpaceWar.SpacePanel(); + var5.setName(""); + java.awt.Dimension var8 = var5.minimumSize(); + boolean var9 = var5.isDoubleBuffered(); + java.awt.event.HierarchyListener[] var10 = var5.getHierarchyListeners(); + java.awt.Font var11 = var5.getFont(); + var0.setFont(var11); + java.awt.Dimension var13 = var0.getSize(); + boolean var16 = var0.contains(399, 1); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var2 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var4); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == false); + + } + + public void test78() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test78"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.reshape((-1), 1, (-1), 10); + java.util.Set var11 = var0.getFocusTraversalKeys(3); + var0.firePropertyChange("SpaceWar.SpacePanel[,-1,1,-1x10,invalid,hidden,disabled,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", '4', ' '); + var0.setIgnoreRepaint(false); + var0.transferFocusBackward(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + } + + public void test79() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test79"); + + + SpaceWar.Player var0 = new SpaceWar.Player(); + boolean var1 = var0.isRecovering(); + int var2 = var0.getRequiredPower(); + int var3 = var0.getY(); + int var4 = var0.getX(); + var0.setLeft(false); + var0.setLeft(false); + var0.setFiring(false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var2 == 1); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == 500); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 400); + + } + + public void test80() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test80"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.updateUI(); + var0.enableInputMethods(true); + var0.enableInputMethods(true); + java.awt.Component.BaselineResizeBehavior var10 = var0.getBaselineResizeBehavior(); + boolean var11 = var0.requestDefaultFocus(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == false); + + } + + public void test81() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test81"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + var0.list(); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + float var7 = var6.getAlignmentX(); + var6.setVisible(false); + boolean var10 = var6.isDoubleBuffered(); + java.awt.dnd.DropTarget var11 = var6.getDropTarget(); + var6.show(false); + java.awt.Rectangle var14 = var6.getVisibleRect(); + java.awt.image.BufferedImage var16 = var6.loadImg("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + boolean var17 = var0.isAncestorOf((java.awt.Component)var6); + java.awt.GraphicsConfiguration var18 = var6.getGraphicsConfiguration(); + boolean var19 = var6.hasFocus(); + boolean var20 = var6.isValidateRoot(); + var6.setSize(400, 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == false); + + } + + public void test82() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test82"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + var0.show(false); + boolean var8 = var0.isPaintingForPrint(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var15 = var9.getMouseListeners(); + int var16 = var9.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var17 = var9.getInputMethodRequests(); + var0.addKeyListener((java.awt.event.KeyListener)var9); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + float var20 = var19.getAlignmentX(); + var19.setVisible(false); + boolean var23 = var19.isDoubleBuffered(); + var19.list(); + float var25 = var19.getAlignmentY(); + boolean var26 = var9.isFocusCycleRoot((java.awt.Container)var19); + SpaceWar.SpacePanel var28 = new SpaceWar.SpacePanel(); + float var29 = var28.getAlignmentX(); + var28.setVisible(false); + var28.nextFocus(); + var28.updateUI(); + java.awt.Component var34 = var9.add("", (java.awt.Component)var28); + var9.setDebugGraphicsOptions(25); + SpaceWar.SpacePanel var37 = new SpaceWar.SpacePanel(); + var37.setName(""); + java.awt.ComponentOrientation var40 = var37.getComponentOrientation(); + var37.enable(); + int var42 = var37.getHeight(); + java.awt.Component var43 = var9.add((java.awt.Component)var37); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var29 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var34); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var40); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var42 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var43); + + } + + public void test83() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test83"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + var0.enable(false); + boolean var7 = var0.getFocusTraversalKeysEnabled(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + var8.nextFocus(); + var8.repaint(1L); + SpaceWar.SpacePanel var15 = new SpaceWar.SpacePanel(); + float var16 = var15.getAlignmentX(); + var15.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var21 = new SpaceWar.SpacePanel(); + float var22 = var21.getAlignmentX(); + var21.setVisible(false); + java.awt.Dimension var25 = var21.getPreferredSize(); + var15.setMaximumSize(var25); + var8.setPreferredSize(var25); + javax.swing.plaf.PanelUI var28 = var8.getUI(); + SpaceWar.SpacePanel var29 = new SpaceWar.SpacePanel(); + float var30 = var29.getAlignmentX(); + var29.setVisible(false); + SpaceWar.SpacePanel var33 = new SpaceWar.SpacePanel(); + java.awt.Color var34 = var33.getBackground(); + var29.setForeground(var34); + SpaceWar.SpacePanel var36 = new SpaceWar.SpacePanel(); + float var37 = var36.getAlignmentX(); + var36.setVisible(false); + boolean var40 = var36.isDoubleBuffered(); + java.awt.dnd.DropTarget var41 = var36.getDropTarget(); + var36.show(false); + java.awt.Rectangle var44 = var36.getVisibleRect(); + var29.repaint(var44); + java.awt.FocusTraversalPolicy var46 = var29.getFocusTraversalPolicy(); + var29.resetKeyboardActions(); + SpaceWar.SpacePanel var48 = new SpaceWar.SpacePanel(); + float var49 = var48.getAlignmentX(); + var48.setVisible(false); + boolean var52 = var48.isDoubleBuffered(); + java.awt.dnd.DropTarget var53 = var48.getDropTarget(); + var48.show(false); + java.awt.Rectangle var56 = var48.getVisibleRect(); + var29.computeVisibleRect(var56); + javax.swing.ActionMap var58 = var29.getActionMap(); + var8.setActionMap(var58); + var0.setActionMap(var58); + java.awt.Toolkit var61 = var0.getToolkit(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var22 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var25); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var28); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var30 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var34); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var40 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var41); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var44); + + // Regression assertion (captures the current behavior of the code) + assertNull(var46); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var49 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var52 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var53); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var56); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var58); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var61); + + } + + public void test84() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test84"); + + + SpaceWar.Explosion var4 = new SpaceWar.Explosion((-8.529389630162045d), 475.3294093279198d, 25, 1); + boolean var5 = var4.update(); + boolean var6 = var4.update(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == true); + + } + + public void test85() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test85"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + java.awt.im.InputMethodRequests var3 = var0.getInputMethodRequests(); + var0.setDoubleBuffered(true); + var0.show(false); + boolean var8 = var0.isPaintingForPrint(); + boolean var10 = var0.requestFocus(true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == false); + + } + + public void test86() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test86"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + java.awt.Dimension var4 = var0.getPreferredSize(); + java.awt.Toolkit var5 = var0.getToolkit(); + java.awt.Toolkit var6 = var0.getToolkit(); + var0.firePropertyChange("hi!", 25, 1); + var0.setVisible(true); + var0.show(true); + SpaceWar.SpacePanel var15 = new SpaceWar.SpacePanel(); + java.awt.Color var16 = var15.getBackground(); + var15.repaint(); + var15.setRequestFocusEnabled(false); + var15.reshape(100, 0, 100, 0); + var15.requestFocus(); + var15.firePropertyChange("hi!", '4', ' '); + java.awt.Point var30 = var15.getLocation(); + java.awt.Dimension var31 = var15.size(); + boolean var32 = var15.isDoubleBuffered(); + boolean var33 = var15.getFocusTraversalKeysEnabled(); + java.awt.Rectangle var34 = var15.getVisibleRect(); + boolean var35 = var15.isPaintingTile(); + // The following exception was thrown during execution. + // This behavior will recorded for regression testing. + try { + var0.setComponentZOrder((java.awt.Component)var15, 99); + fail("Expected exception of type java.lang.IllegalArgumentException"); + } catch (java.lang.IllegalArgumentException e) { + // Expected exception. + } + + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var4); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var30); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var31); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var32 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var33 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var34); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var35 == false); + + } + + public void test87() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test87"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + var0.list(); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + float var7 = var6.getAlignmentX(); + var6.setVisible(false); + boolean var10 = var6.isDoubleBuffered(); + java.awt.dnd.DropTarget var11 = var6.getDropTarget(); + var6.show(false); + java.awt.Rectangle var14 = var6.getVisibleRect(); + java.awt.image.BufferedImage var16 = var6.loadImg("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + boolean var17 = var0.isAncestorOf((java.awt.Component)var6); + java.awt.GraphicsConfiguration var18 = var6.getGraphicsConfiguration(); + java.awt.Font var19 = var6.getFont(); + javax.swing.InputMap var20 = var6.getInputMap(); + SpaceWar.SpacePanel var21 = new SpaceWar.SpacePanel(); + float var22 = var21.getAlignmentX(); + var21.setVisible(false); + boolean var25 = var21.isDoubleBuffered(); + java.awt.dnd.DropTarget var26 = var21.getDropTarget(); + var21.show(false); + java.awt.Rectangle var29 = var21.getVisibleRect(); + boolean var30 = var21.isFocusTraversalPolicySet(); + var21.doLayout(); + SpaceWar.SpacePanel var32 = new SpaceWar.SpacePanel(); + float var33 = var32.getAlignmentX(); + var32.setVisible(false); + var32.nextFocus(); + var32.updateUI(); + var32.enableInputMethods(true); + java.lang.String var40 = var32.toString(); + java.awt.FocusTraversalPolicy var41 = var32.getFocusTraversalPolicy(); + java.util.Locale var42 = var32.getLocale(); + java.lang.Object var43 = var21.getClientProperty((java.lang.Object)var42); + var6.setLocale(var42); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var22 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var29); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var30 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var33 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var40 + "' != '" + "SpaceWar.SpacePanel[,0,0,0var40,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"+ "'", var40.equals("SpaceWar.SpacePanel[,0,0,0var40,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]")); + + // Regression assertion (captures the current behavior of the code) + assertNull(var41); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var42); + + // Regression assertion (captures the current behavior of the code) + assertNull(var43); + + } + + public void test88() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test88"); + + + SpaceWar.Player var0 = new SpaceWar.Player(); + var0.increasePower(25); + int var3 = var0.getScore(); + var0.setRigth(true); + var0.loseLife(); + int var7 = var0.getPower(); + var0.increasePower(3); + int var10 = var0.getR(); + var0.loseLife(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 24); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 25); + + } + + public void test89() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test89"); + + + SpaceWar.Player var0 = new SpaceWar.Player(); + int var1 = var0.getR(); + var0.setUp(false); + int var4 = var0.getLives(); + var0.setScore(0); + int var7 = var0.getPowerLevel(); + boolean var8 = var0.isRecovering(); + int var9 = var0.getLives(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 25); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 3); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 3); + + } + + public void test90() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test90"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + java.awt.Dimension var4 = var0.getPreferredSize(); + java.awt.Toolkit var5 = var0.getToolkit(); + boolean var6 = var0.isFocusable(); + javax.swing.KeyStroke[] var7 = var0.getRegisteredKeyStrokes(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + SpaceWar.SpacePanel var10 = new SpaceWar.SpacePanel(); + float var11 = var10.getAlignmentX(); + var10.setVisible(false); + java.awt.Dimension var14 = var10.getPreferredSize(); + boolean var15 = var10.getVerifyInputWhenFocusTarget(); + java.awt.Component var18 = var10.findComponentAt(10, 1); + var8.addKeyListener((java.awt.event.KeyListener)var10); + var10.repaint(100, (-1), (-1), 1); + boolean var25 = var0.isAncestorOf((java.awt.Component)var10); + var0.setFocusable(false); + java.awt.ComponentOrientation var28 = var0.getComponentOrientation(); + java.awt.Component[] var29 = var0.getComponents(); + java.awt.event.FocusListener[] var30 = var0.getFocusListeners(); + var0.layout(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var4); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var28); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var29); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var30); + + } + + public void test91() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test91"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.setEnabled(false); + java.awt.Image var8 = var0.createImage(10, 100); + javax.swing.KeyStroke[] var9 = var0.getRegisteredKeyStrokes(); + java.awt.im.InputContext var10 = var0.getInputContext(); + var0.repaint(); + javax.accessibility.AccessibleContext var12 = var0.getAccessibleContext(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var9); + + // Regression assertion (captures the current behavior of the code) + assertNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var12); + + } + + public void test92() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test92"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + SpaceWar.SpacePanel var2 = new SpaceWar.SpacePanel(); + float var3 = var2.getAlignmentX(); + var2.setVisible(false); + java.awt.Dimension var6 = var2.getPreferredSize(); + boolean var7 = var2.getVerifyInputWhenFocusTarget(); + java.awt.Component var10 = var2.findComponentAt(10, 1); + var0.addKeyListener((java.awt.event.KeyListener)var2); + SpaceWar.SpacePanel var12 = new SpaceWar.SpacePanel(); + float var13 = var12.getAlignmentX(); + SpaceWar.SpacePanel var14 = new SpaceWar.SpacePanel(); + float var15 = var14.getAlignmentX(); + var14.setVisible(false); + java.awt.Dimension var18 = var14.getPreferredSize(); + boolean var19 = var14.getVerifyInputWhenFocusTarget(); + java.awt.Component var22 = var14.findComponentAt(10, 1); + var12.addKeyListener((java.awt.event.KeyListener)var14); + var14.repaint(100, (-1), (-1), 1); + java.awt.image.ColorModel var29 = var14.getColorModel(); + SpaceWar.SpacePanel var30 = new SpaceWar.SpacePanel(); + float var31 = var30.getAlignmentX(); + var30.setVisible(false); + boolean var34 = var30.isDoubleBuffered(); + var30.list(); + SpaceWar.SpacePanel var36 = new SpaceWar.SpacePanel(); + float var37 = var36.getAlignmentX(); + var36.setVisible(false); + boolean var40 = var36.isDoubleBuffered(); + java.awt.dnd.DropTarget var41 = var36.getDropTarget(); + var36.show(false); + java.awt.Rectangle var44 = var36.getVisibleRect(); + java.awt.image.BufferedImage var46 = var36.loadImg("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + boolean var47 = var30.isAncestorOf((java.awt.Component)var36); + javax.swing.InputVerifier var48 = var36.getInputVerifier(); + var2.putClientProperty((java.lang.Object)var14, (java.lang.Object)var36); + javax.swing.JToolTip var50 = var2.createToolTip(); + boolean var51 = var50.isFocusTraversable(); + java.awt.Dimension var52 = var50.getMinimumSize(); + var50.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var29); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var31 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var34 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var40 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var41); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var44); + + // Regression assertion (captures the current behavior of the code) + assertNull(var46); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var47 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var48); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var50); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var51 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var52); + + } + + public void test93() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test93"); + + + SpaceWar.Bullet var3 = new SpaceWar.Bullet(10.0d, 0, 100); + double var4 = var3.getY(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 100.0d); + + } + + public void test94() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test94"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + java.awt.Dimension var4 = var0.getPreferredSize(); + java.awt.Toolkit var5 = var0.getToolkit(); + boolean var6 = var0.isFocusable(); + java.awt.Container var7 = var0.getFocusCycleRootAncestor(); + boolean var8 = var0.isEnabled(); + var0.setRequestFocusEnabled(true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var4); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == true); + + } + + public void test95() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test95"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + float var7 = var6.getAlignmentX(); + var6.setVisible(false); + SpaceWar.SpacePanel var10 = new SpaceWar.SpacePanel(); + java.awt.Color var11 = var10.getBackground(); + var6.setForeground(var11); + var0.setBackground(var11); + java.awt.Point var14 = var0.location(); + var0.setToolTipText("SpaceWar.SpacePanel[,0,0,0x0,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + boolean var17 = var0.isPaintingTile(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == false); + + } + + public void test96() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test96"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + java.awt.im.InputMethodRequests var3 = var0.getInputMethodRequests(); + int var4 = var0.countComponents(); + java.awt.event.ComponentListener[] var5 = var0.getComponentListeners(); + var0.transferFocusBackward(); + SpaceWar.SpacePanel var7 = new SpaceWar.SpacePanel(); + float var8 = var7.getAlignmentX(); + var7.setVisible(false); + var7.setInheritsPopupMenu(false); + var7.setFocusTraversalPolicyProvider(true); + SpaceWar.SpacePanel var15 = new SpaceWar.SpacePanel(); + float var16 = var15.getAlignmentX(); + var15.setVisible(false); + boolean var19 = var15.isDoubleBuffered(); + var15.list(); + SpaceWar.SpacePanel var21 = new SpaceWar.SpacePanel(); + float var22 = var21.getAlignmentX(); + var21.setVisible(false); + boolean var25 = var21.isDoubleBuffered(); + java.awt.dnd.DropTarget var26 = var21.getDropTarget(); + var21.show(false); + java.awt.Rectangle var29 = var21.getVisibleRect(); + java.awt.Rectangle var30 = var15.getBounds(var29); + javax.swing.JToolTip var31 = var15.createToolTip(); + var7.removeKeyListener((java.awt.event.KeyListener)var15); + javax.swing.TransferHandler var33 = var7.getTransferHandler(); + SpaceWar.SpacePanel var34 = new SpaceWar.SpacePanel(); + float var35 = var34.getAlignmentX(); + var34.setVisible(false); + var34.nextFocus(); + var34.repaint(1L); + SpaceWar.SpacePanel var41 = new SpaceWar.SpacePanel(); + float var42 = var41.getAlignmentX(); + var41.setVisible(false); + boolean var45 = var41.isDoubleBuffered(); + var41.list(); + SpaceWar.SpacePanel var47 = new SpaceWar.SpacePanel(); + float var48 = var47.getAlignmentX(); + var47.setVisible(false); + boolean var51 = var47.isDoubleBuffered(); + java.awt.dnd.DropTarget var52 = var47.getDropTarget(); + var47.show(false); + java.awt.Rectangle var55 = var47.getVisibleRect(); + java.awt.Rectangle var56 = var41.getBounds(var55); + var34.setBounds(var56); + var7.setBounds(var56); + java.lang.Object var59 = var0.getClientProperty((java.lang.Object)var7); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var22 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var29); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var30); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var31); + + // Regression assertion (captures the current behavior of the code) + assertNull(var33); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var35 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var42 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var45 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var48 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var51 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var52); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var55); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var56); + + // Regression assertion (captures the current behavior of the code) + assertNull(var59); + + } + + public void test97() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test97"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + java.awt.Dimension var4 = var0.getPreferredSize(); + java.awt.Toolkit var5 = var0.getToolkit(); + boolean var6 = var0.isFocusable(); + float var7 = var0.getAlignmentX(); + javax.swing.TransferHandler var8 = var0.getTransferHandler(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var4); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNull(var8); + + } + + public void test98() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test98"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + SpaceWar.SpacePanel var5 = new SpaceWar.SpacePanel(); + java.awt.Color var6 = var5.getBackground(); + var5.repaint(); + java.lang.Object var8 = var0.getClientProperty((java.lang.Object)var5); + var5.repaint(1L); + SpaceWar.SpacePanel var11 = new SpaceWar.SpacePanel(); + float var12 = var11.getAlignmentX(); + var11.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var17 = new SpaceWar.SpacePanel(); + float var18 = var17.getAlignmentX(); + var17.setVisible(false); + SpaceWar.SpacePanel var21 = new SpaceWar.SpacePanel(); + java.awt.Color var22 = var21.getBackground(); + var17.setForeground(var22); + var11.setBackground(var22); + var11.grabFocus(); + SpaceWar.SpacePanel var26 = new SpaceWar.SpacePanel(); + float var27 = var26.getAlignmentX(); + var26.setVisible(false); + boolean var30 = var26.isDoubleBuffered(); + java.awt.dnd.DropTarget var31 = var26.getDropTarget(); + boolean var32 = var26.isFocusCycleRoot(); + SpaceWar.SpacePanel var33 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var34 = new SpaceWar.SpacePanel(); + java.awt.Color var35 = var34.getBackground(); + SpaceWar.SpacePanel var36 = new SpaceWar.SpacePanel(); + float var37 = var36.getAlignmentX(); + var36.setVisible(false); + var36.nextFocus(); + var36.updateUI(); + var36.enableInputMethods(true); + var33.add((java.awt.Component)var34, (java.lang.Object)true); + java.awt.Dimension var45 = var34.getPreferredSize(); + var26.setSize(var45); + var11.setMaximumSize(var45); + float var48 = var11.getAlignmentY(); + java.lang.String var49 = var11.getToolTipText(); + var5.addKeyListener((java.awt.event.KeyListener)var11); + boolean var51 = var5.isFocusTraversable(); + java.awt.Container var52 = var5.getFocusCycleRootAncestor(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var30 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var31); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var32 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var35); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var45); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var48 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNull(var49); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var51 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var52); + + } + + public void test99() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test99"); + + + SpaceWar.Player var0 = new SpaceWar.Player(); + var0.increasePower(25); + int var3 = var0.getScore(); + int var4 = var0.getX(); + var0.setLife(100); + int var7 = var0.getX(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 400); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 400); + + } + + public void test100() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test100"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + var0.setName(""); + int var3 = var0.getX(); + SpaceWar.SpacePanel var4 = new SpaceWar.SpacePanel(); + float var5 = var4.getAlignmentX(); + var4.setVisible(false); + var4.nextFocus(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.setVisible(false); + SpaceWar.SpacePanel var13 = new SpaceWar.SpacePanel(); + java.awt.Color var14 = var13.getBackground(); + var9.setForeground(var14); + var4.setBackground(var14); + var0.setBackground(var14); + boolean var18 = var0.isFocusable(); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + float var20 = var19.getAlignmentX(); + var19.setVisible(false); + SpaceWar.SpacePanel var23 = new SpaceWar.SpacePanel(); + java.awt.Color var24 = var23.getBackground(); + var19.setForeground(var24); + SpaceWar.SpacePanel var26 = new SpaceWar.SpacePanel(); + float var27 = var26.getAlignmentX(); + var26.setVisible(false); + boolean var30 = var26.isDoubleBuffered(); + java.awt.dnd.DropTarget var31 = var26.getDropTarget(); + var26.show(false); + java.awt.Rectangle var34 = var26.getVisibleRect(); + var19.repaint(var34); + java.awt.FocusTraversalPolicy var36 = var19.getFocusTraversalPolicy(); + java.awt.im.InputMethodRequests var37 = var19.getInputMethodRequests(); + javax.swing.JToolTip var38 = var19.createToolTip(); + java.awt.Dimension var39 = var19.getMinimumSize(); + var0.setPreferredSize(var39); + boolean var41 = var0.getFocusTraversalKeysEnabled(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var30 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var31); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var34); + + // Regression assertion (captures the current behavior of the code) + assertNull(var36); + + // Regression assertion (captures the current behavior of the code) + assertNull(var37); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var38); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var39); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var41 == true); + + } + + public void test101() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test101"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + var0.setSize(1, (-1)); + SpaceWar.SpacePanel var4 = new SpaceWar.SpacePanel(); + float var5 = var4.getAlignmentX(); + var4.setVisible(false); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + java.awt.Color var9 = var8.getBackground(); + var4.setForeground(var9); + SpaceWar.SpacePanel var11 = new SpaceWar.SpacePanel(); + float var12 = var11.getAlignmentX(); + var11.setVisible(false); + boolean var15 = var11.isDoubleBuffered(); + java.awt.dnd.DropTarget var16 = var11.getDropTarget(); + var11.show(false); + java.awt.Rectangle var19 = var11.getVisibleRect(); + var4.repaint(var19); + java.awt.FocusTraversalPolicy var21 = var4.getFocusTraversalPolicy(); + SpaceWar.SpacePanel var22 = new SpaceWar.SpacePanel(); + float var23 = var22.getAlignmentX(); + var22.firePropertyChange("", (-1), 1); + boolean var28 = var22.isFocusOwner(); + SpaceWar.SpacePanel var30 = new SpaceWar.SpacePanel(); + float var31 = var30.getAlignmentX(); + var30.setVisible(false); + java.awt.Dimension var34 = var30.getPreferredSize(); + java.awt.Toolkit var35 = var30.getToolkit(); + SpaceWar.SpacePanel var36 = new SpaceWar.SpacePanel(); + var36.setName(""); + int var39 = var36.getX(); + SpaceWar.SpacePanel var40 = new SpaceWar.SpacePanel(); + float var41 = var40.getAlignmentX(); + var40.setVisible(false); + var40.nextFocus(); + SpaceWar.SpacePanel var45 = new SpaceWar.SpacePanel(); + float var46 = var45.getAlignmentX(); + var45.setVisible(false); + SpaceWar.SpacePanel var49 = new SpaceWar.SpacePanel(); + java.awt.Color var50 = var49.getBackground(); + var45.setForeground(var50); + var40.setBackground(var50); + var36.setBackground(var50); + var30.setForeground(var50); + var22.putClientProperty((java.lang.Object)(byte)100, (java.lang.Object)var50); + var4.setBackground(var50); + SpaceWar.SpacePanel var57 = new SpaceWar.SpacePanel(); + float var58 = var57.getAlignmentX(); + var57.setVisible(false); + boolean var61 = var57.isDoubleBuffered(); + java.awt.dnd.DropTarget var62 = var57.getDropTarget(); + var57.show(false); + boolean var65 = var57.isPaintingForPrint(); + SpaceWar.SpacePanel var66 = new SpaceWar.SpacePanel(); + float var67 = var66.getAlignmentX(); + SpaceWar.SpacePanel var68 = new SpaceWar.SpacePanel(); + float var69 = var68.getAlignmentX(); + var68.setVisible(false); + java.awt.Dimension var72 = var68.getPreferredSize(); + boolean var73 = var68.getVerifyInputWhenFocusTarget(); + java.awt.Component var76 = var68.findComponentAt(10, 1); + var66.addKeyListener((java.awt.event.KeyListener)var68); + java.awt.Dimension var78 = var68.getMinimumSize(); + var57.setMinimumSize(var78); + java.awt.Dimension var80 = var4.getSize(var78); + var0.setMaximumSize(var78); + boolean var82 = var0.isMaximumSizeSet(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var9); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertNull(var21); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var28 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var31 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var34); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var35); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var39 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var41 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var46 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var50); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var58 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var61 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var62); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var65 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var67 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var69 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var72); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var73 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var76); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var78); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var80); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var82 == true); + + } + + public void test102() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test102"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var6 = var0.getUI(); + java.awt.im.InputMethodRequests var7 = var0.getInputMethodRequests(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + var8.nextFocus(); + var8.updateUI(); + var8.enableInputMethods(true); + var8.setSize((-1), 1); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + var19.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var0.add((java.awt.Component)var8, (java.lang.Object)"SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + boolean var25 = var0.isCursorSet(); + javax.swing.KeyStroke[] var26 = var0.getRegisteredKeyStrokes(); + var0.repaint(24, 100, 0, 100); + boolean var32 = var0.requestFocusInWindow(); + java.awt.image.VolatileImage var35 = var0.createVolatileImage(400, 100); + boolean var36 = var0.getFocusTraversalKeysEnabled(); + int var37 = var0.getX(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var32 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var35); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var36 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == 0); + + } + + public void test103() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test103"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + java.awt.Color var7 = var6.getBackground(); + var6.repaint(); + var6.setRequestFocusEnabled(false); + var6.reshape(100, 0, 100, 0); + var6.requestFocus(); + SpaceWar.SpacePanel var17 = new SpaceWar.SpacePanel(); + float var18 = var17.getAlignmentX(); + var17.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var23 = var17.getUI(); + java.awt.im.InputMethodRequests var24 = var17.getInputMethodRequests(); + SpaceWar.SpacePanel var25 = new SpaceWar.SpacePanel(); + float var26 = var25.getAlignmentX(); + var25.setVisible(false); + var25.nextFocus(); + var25.updateUI(); + var25.enableInputMethods(true); + var25.setSize((-1), 1); + SpaceWar.SpacePanel var36 = new SpaceWar.SpacePanel(); + var36.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var17.add((java.awt.Component)var25, (java.lang.Object)"SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + SpaceWar.SpacePanel var42 = new SpaceWar.SpacePanel(); + var42.setName(""); + java.awt.ComponentOrientation var45 = var42.getComponentOrientation(); + var17.applyComponentOrientation(var45); + var6.setComponentOrientation(var45); + var0.applyComponentOrientation(var45); + int var49 = var0.getHeight(); + boolean var52 = var0.inside(3, 2); + java.beans.PropertyChangeListener[] var53 = var0.getPropertyChangeListeners(); + SpaceWar.SpacePanel var54 = new SpaceWar.SpacePanel(); + float var55 = var54.getAlignmentX(); + var54.setVisible(false); + var54.nextFocus(); + var54.repaint(1L); + SpaceWar.SpacePanel var61 = new SpaceWar.SpacePanel(); + float var62 = var61.getAlignmentX(); + var61.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var67 = new SpaceWar.SpacePanel(); + float var68 = var67.getAlignmentX(); + var67.setVisible(false); + java.awt.Dimension var71 = var67.getPreferredSize(); + var61.setMaximumSize(var71); + var54.setPreferredSize(var71); + javax.swing.plaf.PanelUI var74 = var54.getUI(); + java.awt.Dimension var75 = var54.getMinimumSize(); + boolean var76 = var54.isFocusable(); + java.awt.Color var77 = var54.getForeground(); + var0.setForeground(var77); + var0.doLayout(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var23); + + // Regression assertion (captures the current behavior of the code) + assertNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var45); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var49 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var52 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var53); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var55 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var62 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var68 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var71); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var74); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var75); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var76 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var77); + + } + + public void test104() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test104"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + var0.list(); + float var6 = var0.getAlignmentY(); + java.awt.event.ComponentListener[] var7 = var0.getComponentListeners(); + java.awt.Component var8 = var0.getNextFocusableComponent(); + boolean var9 = var0.isManagingFocus(); + javax.swing.border.Border var10 = var0.getBorder(); + java.lang.Object var11 = var0.getTreeLock(); + var0.show(); + var0.setFocusTraversalKeysEnabled(true); + boolean var15 = var0.requestDefaultFocus(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == false); + + } + + public void test105() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test105"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + java.awt.event.MouseMotionListener[] var6 = var0.getMouseMotionListeners(); + java.awt.event.ComponentListener[] var7 = var0.getComponentListeners(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + var8.nextFocus(); + var8.repaint(1L); + SpaceWar.SpacePanel var15 = new SpaceWar.SpacePanel(); + float var16 = var15.getAlignmentX(); + var15.setVisible(false); + boolean var19 = var15.isDoubleBuffered(); + var15.list(); + SpaceWar.SpacePanel var21 = new SpaceWar.SpacePanel(); + float var22 = var21.getAlignmentX(); + var21.setVisible(false); + boolean var25 = var21.isDoubleBuffered(); + java.awt.dnd.DropTarget var26 = var21.getDropTarget(); + var21.show(false); + java.awt.Rectangle var29 = var21.getVisibleRect(); + java.awt.Rectangle var30 = var15.getBounds(var29); + var8.setBounds(var30); + var0.paintImmediately(var30); + java.awt.Point var33 = var0.getMousePosition(); + java.awt.image.BufferedImage var35 = var0.loadImg("SpaceWar.SpacePanel[,-1,1,-1x10,invalid,hidden,disabled,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + var0.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", 3, 100); + java.awt.ComponentOrientation var40 = var0.getComponentOrientation(); + var0.setAlignmentY(10.0f); + boolean var43 = var0.isPreferredSizeSet(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var22 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var29); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var30); + + // Regression assertion (captures the current behavior of the code) + assertNull(var33); + + // Regression assertion (captures the current behavior of the code) + assertNull(var35); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var40); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var43 == true); + + } + + public void test106() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test106"); + + + SpaceWar.Enemy var2 = new SpaceWar.Enemy(0, 100); + int var3 = var2.getR(); + java.awt.image.BufferedImage var5 = var2.loadImg("SpaceWar.SpacePanel[,0,0,0x0,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + int var6 = var2.getRank(); + int var7 = var2.getType(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == 100); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0); + + } + + public void test107() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test107"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + SpaceWar.SpacePanel var4 = new SpaceWar.SpacePanel(); + java.awt.Color var5 = var4.getBackground(); + var0.setForeground(var5); + SpaceWar.SpacePanel var7 = new SpaceWar.SpacePanel(); + float var8 = var7.getAlignmentX(); + var7.setVisible(false); + boolean var11 = var7.isDoubleBuffered(); + java.awt.dnd.DropTarget var12 = var7.getDropTarget(); + var7.show(false); + java.awt.Rectangle var15 = var7.getVisibleRect(); + var0.repaint(var15); + SpaceWar.SpacePanel var17 = new SpaceWar.SpacePanel(); + float var18 = var17.getAlignmentX(); + var17.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var23 = var17.getMouseListeners(); + java.awt.Dimension var24 = var17.getPreferredSize(); + java.util.Locale var25 = var17.getLocale(); + var0.setLocale(var25); + java.util.Locale var27 = var0.getLocale(); + var0.transferFocusDownCycle(); + float var29 = var0.getAlignmentX(); + int var30 = var0.getX(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var23); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var25); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var27); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var29 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var30 == 0); + + } + + public void test108() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test108"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.updateUI(); + var0.enableInputMethods(true); + java.lang.String var8 = var0.toString(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.setVisible(false); + boolean var13 = var9.isDoubleBuffered(); + java.awt.dnd.DropTarget var14 = var9.getDropTarget(); + var9.show(false); + java.awt.Rectangle var17 = var9.getVisibleRect(); + java.awt.image.BufferedImage var19 = var9.loadImg("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + java.awt.ComponentOrientation var20 = var9.getComponentOrientation(); + boolean var21 = var9.isPaintingTile(); + boolean var22 = var9.isOptimizedDrawingEnabled(); + int var23 = var0.getComponentZOrder((java.awt.Component)var9); + javax.swing.InputMap var24 = var9.getInputMap(); + SpaceWar.SpacePanel var25 = new SpaceWar.SpacePanel(); + float var26 = var25.getAlignmentX(); + var25.setVisible(false); + boolean var29 = var25.isDoubleBuffered(); + java.awt.dnd.DropTarget var30 = var25.getDropTarget(); + var25.show(false); + boolean var33 = var25.isPaintingForPrint(); + SpaceWar.SpacePanel var34 = new SpaceWar.SpacePanel(); + float var35 = var34.getAlignmentX(); + var34.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var40 = var34.getMouseListeners(); + int var41 = var34.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var42 = var34.getInputMethodRequests(); + var25.addKeyListener((java.awt.event.KeyListener)var34); + SpaceWar.SpacePanel var44 = new SpaceWar.SpacePanel(); + float var45 = var44.getAlignmentX(); + var44.setVisible(false); + boolean var48 = var44.isDoubleBuffered(); + var44.list(); + float var50 = var44.getAlignmentY(); + boolean var51 = var34.isFocusCycleRoot((java.awt.Container)var44); + boolean var52 = var44.isEnabled(); + java.awt.Dimension var53 = var44.getMaximumSize(); + var44.setName("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + var44.updateUI(); + boolean var57 = var44.isOptimizedDrawingEnabled(); + boolean var58 = var9.isFocusCycleRoot((java.awt.Container)var44); + var44.transferFocus(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var8 + "' != '" + "SpaceWar.SpacePanel[,0,0,0var8,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"+ "'", var8.equals("SpaceWar.SpacePanel[,0,0,0var8,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]")); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var22 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == (-1)); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var29 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var30); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var33 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var35 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var40); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var41 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var42); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var45 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var48 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var50 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var51 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var52 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var53); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var57 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var58 == false); + + } + + public void test109() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test109"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + boolean var6 = var0.isFocusOwner(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + java.awt.Dimension var12 = var8.getPreferredSize(); + java.awt.Toolkit var13 = var8.getToolkit(); + SpaceWar.SpacePanel var14 = new SpaceWar.SpacePanel(); + var14.setName(""); + int var17 = var14.getX(); + SpaceWar.SpacePanel var18 = new SpaceWar.SpacePanel(); + float var19 = var18.getAlignmentX(); + var18.setVisible(false); + var18.nextFocus(); + SpaceWar.SpacePanel var23 = new SpaceWar.SpacePanel(); + float var24 = var23.getAlignmentX(); + var23.setVisible(false); + SpaceWar.SpacePanel var27 = new SpaceWar.SpacePanel(); + java.awt.Color var28 = var27.getBackground(); + var23.setForeground(var28); + var18.setBackground(var28); + var14.setBackground(var28); + var8.setForeground(var28); + var0.putClientProperty((java.lang.Object)(byte)100, (java.lang.Object)var28); + java.awt.Component var36 = var0.getComponentAt(24, 400); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var24 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var28); + + // Regression assertion (captures the current behavior of the code) + assertNull(var36); + + } + + public void test110() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test110"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + SpaceWar.SpacePanel var2 = new SpaceWar.SpacePanel(); + float var3 = var2.getAlignmentX(); + var2.setVisible(false); + java.awt.Dimension var6 = var2.getPreferredSize(); + boolean var7 = var2.getVerifyInputWhenFocusTarget(); + java.awt.Component var10 = var2.findComponentAt(10, 1); + var0.addKeyListener((java.awt.event.KeyListener)var2); + var2.repaint(100, (-1), (-1), 1); + java.awt.image.ColorModel var17 = var2.getColorModel(); + boolean var18 = var2.isFocusTraversalPolicyProvider(); + var2.setVerifyInputWhenFocusTarget(true); + boolean var21 = var2.getIgnoreRepaint(); + javax.swing.ActionMap var22 = var2.getActionMap(); + java.awt.ComponentOrientation var23 = var2.getComponentOrientation(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var23); + + } + + public void test111() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test111"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + boolean var2 = var0.hasFocus(); + boolean var3 = var0.isPreferredSizeSet(); + var0.firePropertyChange("", (short)1, (short)0); + boolean var8 = var0.isMaximumSizeSet(); + java.awt.peer.ComponentPeer var9 = var0.getPeer(); + var0.firePropertyChange("hi!", (-1), 499); + var0.firePropertyChange("SpaceWar.SpacePanel[,100,0,100x0,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", 10.0f, 100.0f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var2 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var9); + + } + + public void test112() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test112"); + + + SpaceWar.Explosion var4 = new SpaceWar.Explosion(1.0d, 382.22188660250424d, 400, 100); + + } + + public void test113() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test113"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + java.awt.Dimension var4 = var0.getPreferredSize(); + boolean var5 = var0.getVerifyInputWhenFocusTarget(); + java.awt.Component var8 = var0.findComponentAt(10, 1); + boolean var9 = var0.requestDefaultFocus(); + java.awt.Insets var10 = var0.getInsets(); + var0.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=8,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", true, false); + var0.setSize(99, 10); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var4); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var10); + + } + + public void test114() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test114"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.setInheritsPopupMenu(false); + boolean var6 = var0.isDoubleBuffered(); + boolean var7 = var0.isMinimumSizeSet(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var14 = new SpaceWar.SpacePanel(); + float var15 = var14.getAlignmentX(); + var14.setVisible(false); + java.awt.Dimension var18 = var14.getPreferredSize(); + var8.setMaximumSize(var18); + boolean var20 = var8.getVerifyInputWhenFocusTarget(); + javax.accessibility.AccessibleContext var21 = var8.getAccessibleContext(); + boolean var22 = var8.isDoubleBuffered(); + java.awt.Rectangle var23 = var8.getVisibleRect(); + var0.setBounds(var23); + SpaceWar.SpacePanel var25 = new SpaceWar.SpacePanel(); + var25.setName(""); + var25.enable(true); + var25.enable(); + java.awt.Point var31 = var25.location(); + var25.repaint(0, 3, (-1), 1); + java.awt.Component var39 = var25.findComponentAt(0, 25); + var0.setNextFocusableComponent((java.awt.Component)var25); + var0.setAlignmentX(1.0f); + java.awt.Insets var43 = var0.insets(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var21); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var22 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var23); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var31); + + // Regression assertion (captures the current behavior of the code) + assertNull(var39); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var43); + + } + + public void test115() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test115"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + var0.setRequestFocusEnabled(false); + var0.reshape(100, 0, 100, 0); + var0.requestFocus(); + var0.firePropertyChange("hi!", '4', ' '); + java.awt.Point var15 = var0.getLocation(); + java.awt.Dimension var16 = var0.size(); + java.awt.Image var19 = var0.createImage((-1), (-1)); + java.awt.event.ComponentListener[] var20 = var0.getComponentListeners(); + SpaceWar.SpacePanel var21 = new SpaceWar.SpacePanel(); + var21.setName(""); + java.awt.ComponentOrientation var24 = var21.getComponentOrientation(); + var21.firePropertyChange("PanelUI", 1.0f, 0.5f); + int var29 = var0.getComponentZOrder((java.awt.Component)var21); + boolean var31 = var0.areFocusTraversalKeysSet(0); + java.awt.Component var34 = var0.getComponentAt(2, 0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var29 == (-1)); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var31 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var34); + + } + + public void test116() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test116"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var6 = var0.getMouseListeners(); + var0.firePropertyChange("", 0.5f, 100.0f); + var0.enable(false); + int var13 = var0.getDebugGraphicsOptions(); + var0.setRequestFocusEnabled(false); + var0.setFocusTraversalPolicyProvider(true); + var0.firePropertyChange("SpaceWar.SpacePanel[,10,10,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", (byte)(-1), (byte)10); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == 0); + + } + + public void test117() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test117"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + var0.show(false); + boolean var8 = var0.isPaintingForPrint(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var15 = var9.getMouseListeners(); + int var16 = var9.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var17 = var9.getInputMethodRequests(); + var0.addKeyListener((java.awt.event.KeyListener)var9); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + float var20 = var19.getAlignmentX(); + var19.setVisible(false); + boolean var23 = var19.isDoubleBuffered(); + var19.list(); + float var25 = var19.getAlignmentY(); + boolean var26 = var9.isFocusCycleRoot((java.awt.Container)var19); + var19.firePropertyChange("", 1L, 1L); + var19.setAutoscrolls(false); + var19.setAlignmentX(100.0f); + var19.setAutoscrolls(false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == false); + + } + + public void test118() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test118"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + boolean var6 = var0.isFocusOwner(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + java.awt.Dimension var12 = var8.getPreferredSize(); + java.awt.Toolkit var13 = var8.getToolkit(); + SpaceWar.SpacePanel var14 = new SpaceWar.SpacePanel(); + var14.setName(""); + int var17 = var14.getX(); + SpaceWar.SpacePanel var18 = new SpaceWar.SpacePanel(); + float var19 = var18.getAlignmentX(); + var18.setVisible(false); + var18.nextFocus(); + SpaceWar.SpacePanel var23 = new SpaceWar.SpacePanel(); + float var24 = var23.getAlignmentX(); + var23.setVisible(false); + SpaceWar.SpacePanel var27 = new SpaceWar.SpacePanel(); + java.awt.Color var28 = var27.getBackground(); + var23.setForeground(var28); + var18.setBackground(var28); + var14.setBackground(var28); + var8.setForeground(var28); + var0.putClientProperty((java.lang.Object)(byte)100, (java.lang.Object)var28); + java.awt.Dimension var34 = var0.size(); + java.awt.Image var37 = var0.createImage(2, 0); + boolean var38 = var0.isMaximumSizeSet(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var24 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var28); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var34); + + // Regression assertion (captures the current behavior of the code) + assertNull(var37); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var38 == false); + + } + + public void test119() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test119"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + var0.show(false); + boolean var8 = var0.isPaintingForPrint(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var15 = var9.getMouseListeners(); + int var16 = var9.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var17 = var9.getInputMethodRequests(); + var0.addKeyListener((java.awt.event.KeyListener)var9); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + float var20 = var19.getAlignmentX(); + var19.setVisible(false); + boolean var23 = var19.isDoubleBuffered(); + var19.list(); + float var25 = var19.getAlignmentY(); + boolean var26 = var9.isFocusCycleRoot((java.awt.Container)var19); + var19.firePropertyChange("", 1L, 1L); + var19.setVerifyInputWhenFocusTarget(true); + SpaceWar.SpacePanel var33 = new SpaceWar.SpacePanel(); + var33.setName(""); + java.awt.Dimension var36 = var33.minimumSize(); + boolean var37 = var33.isDoubleBuffered(); + SpaceWar.SpacePanel var38 = new SpaceWar.SpacePanel(); + float var39 = var38.getAlignmentX(); + SpaceWar.SpacePanel var40 = new SpaceWar.SpacePanel(); + float var41 = var40.getAlignmentX(); + var40.setVisible(false); + java.awt.Dimension var44 = var40.getPreferredSize(); + boolean var45 = var40.getVerifyInputWhenFocusTarget(); + java.awt.Component var48 = var40.findComponentAt(10, 1); + var38.addKeyListener((java.awt.event.KeyListener)var40); + var40.repaint(100, (-1), (-1), 1); + SpaceWar.SpacePanel var55 = new SpaceWar.SpacePanel(); + java.awt.Color var56 = var55.getBackground(); + var55.repaint(); + java.awt.im.InputMethodRequests var58 = var55.getInputMethodRequests(); + java.awt.GraphicsConfiguration var59 = var55.getGraphicsConfiguration(); + var40.remove((java.awt.Component)var55); + java.awt.Font var61 = var55.getFont(); + java.awt.FontMetrics var62 = var33.getFontMetrics(var61); + java.awt.FontMetrics var63 = var19.getFontMetrics(var61); + java.awt.GraphicsConfiguration var64 = var19.getGraphicsConfiguration(); + boolean var67 = var19.inside(100, (-1)); + var19.reshape(500, 505, 25, 1); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var36); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var39 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var41 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var44); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var45 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var48); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var56); + + // Regression assertion (captures the current behavior of the code) + assertNull(var58); + + // Regression assertion (captures the current behavior of the code) + assertNull(var59); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var61); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var62); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var63); + + // Regression assertion (captures the current behavior of the code) + assertNull(var64); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var67 == false); + + } + + public void test120() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test120"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + var0.list(); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + float var7 = var6.getAlignmentX(); + var6.setVisible(false); + boolean var10 = var6.isDoubleBuffered(); + java.awt.dnd.DropTarget var11 = var6.getDropTarget(); + var6.show(false); + java.awt.Rectangle var14 = var6.getVisibleRect(); + java.awt.Rectangle var15 = var0.getBounds(var14); + javax.swing.JToolTip var16 = var0.createToolTip(); + java.awt.Graphics var17 = var0.getGraphics(); + var0.enable(false); + var0.enable(true); + javax.swing.JToolTip var22 = var0.createToolTip(); + java.awt.peer.ComponentPeer var23 = var22.getPeer(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertNull(var23); + + } + + public void test121() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test121"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.setInheritsPopupMenu(false); + var0.setFocusTraversalPolicyProvider(true); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + boolean var12 = var8.isDoubleBuffered(); + var8.list(); + SpaceWar.SpacePanel var14 = new SpaceWar.SpacePanel(); + float var15 = var14.getAlignmentX(); + var14.setVisible(false); + boolean var18 = var14.isDoubleBuffered(); + java.awt.dnd.DropTarget var19 = var14.getDropTarget(); + var14.show(false); + java.awt.Rectangle var22 = var14.getVisibleRect(); + java.awt.Rectangle var23 = var8.getBounds(var22); + javax.swing.JToolTip var24 = var8.createToolTip(); + var0.removeKeyListener((java.awt.event.KeyListener)var8); + var0.setFocusTraversalKeysEnabled(true); + javax.swing.KeyStroke[] var28 = var0.getRegisteredKeyStrokes(); + SpaceWar.SpacePanel var29 = new SpaceWar.SpacePanel(); + float var30 = var29.getAlignmentX(); + var29.setVisible(false); + java.awt.Dimension var33 = var29.getPreferredSize(); + java.awt.Toolkit var34 = var29.getToolkit(); + boolean var35 = var29.isFocusable(); + javax.swing.KeyStroke[] var36 = var29.getRegisteredKeyStrokes(); + java.awt.Component var39 = var29.getComponentAt(100, 100); + java.lang.Object var40 = var29.getTreeLock(); + boolean var43 = var29.inside(400, 0); + java.awt.event.MouseWheelListener[] var44 = var29.getMouseWheelListeners(); + var29.enableInputMethods(true); + boolean var47 = var0.isAncestorOf((java.awt.Component)var29); + java.awt.Component[] var48 = var0.getComponents(); + boolean var49 = var0.isEnabled(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var23); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var28); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var30 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var33); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var34); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var35 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var36); + + // Regression assertion (captures the current behavior of the code) + assertNull(var39); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var40); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var43 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var44); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var47 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var48); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var49 == true); + + } + + public void test122() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test122"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.setInheritsPopupMenu(false); + var0.setFocusTraversalPolicyProvider(true); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + boolean var12 = var8.isDoubleBuffered(); + var8.list(); + SpaceWar.SpacePanel var14 = new SpaceWar.SpacePanel(); + float var15 = var14.getAlignmentX(); + var14.setVisible(false); + boolean var18 = var14.isDoubleBuffered(); + java.awt.dnd.DropTarget var19 = var14.getDropTarget(); + var14.show(false); + java.awt.Rectangle var22 = var14.getVisibleRect(); + java.awt.Rectangle var23 = var8.getBounds(var22); + javax.swing.JToolTip var24 = var8.createToolTip(); + var0.removeKeyListener((java.awt.event.KeyListener)var8); + javax.swing.TransferHandler var26 = var0.getTransferHandler(); + var0.transferFocus(); + boolean var28 = var0.isFocusable(); + var0.enableInputMethods(false); + boolean var31 = var0.getFocusTraversalKeysEnabled(); + SpaceWar.SpacePanel var32 = new SpaceWar.SpacePanel(); + float var33 = var32.getAlignmentX(); + var32.setVisible(false); + var32.setDoubleBuffered(true); + SpaceWar.SpacePanel var38 = new SpaceWar.SpacePanel(); + float var39 = var38.getAlignmentX(); + var38.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var44 = var38.getMouseListeners(); + java.awt.Dimension var45 = var38.getPreferredSize(); + java.util.Locale var46 = var38.getLocale(); + var38.setFocusable(true); + var38.setSize(3, 10); + SpaceWar.SpacePanel var52 = new SpaceWar.SpacePanel(); + float var53 = var52.getAlignmentX(); + var52.setVisible(false); + java.awt.Dimension var56 = var52.getPreferredSize(); + boolean var57 = var52.getVerifyInputWhenFocusTarget(); + java.awt.Dimension var58 = var52.size(); + var38.setSize(var58); + var32.setSize(var58); + var0.resize(var58); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var23); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var28 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var31 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var33 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var39 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var44); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var45); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var46); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var53 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var56); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var57 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var58); + + } + + public void test123() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test123"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.reshape((-1), 1, (-1), 10); + SpaceWar.SpacePanel var10 = new SpaceWar.SpacePanel(); + java.awt.Color var11 = var10.getBackground(); + var10.repaint(); + var10.setRequestFocusEnabled(false); + var10.reshape(100, 0, 100, 0); + java.awt.Component var20 = var0.add((java.awt.Component)var10); + SpaceWar.SpacePanel var21 = new SpaceWar.SpacePanel(); + var21.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + javax.swing.plaf.PanelUI var26 = var21.getUI(); + SpaceWar.SpacePanel var27 = new SpaceWar.SpacePanel(); + float var28 = var27.getAlignmentX(); + var27.setVisible(false); + var27.nextFocus(); + var27.repaint(1L); + SpaceWar.SpacePanel var34 = new SpaceWar.SpacePanel(); + float var35 = var34.getAlignmentX(); + var34.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var40 = new SpaceWar.SpacePanel(); + float var41 = var40.getAlignmentX(); + var40.setVisible(false); + java.awt.Dimension var44 = var40.getPreferredSize(); + var34.setMaximumSize(var44); + var27.setPreferredSize(var44); + var21.setMaximumSize(var44); + java.awt.Dimension var48 = var10.getSize(var44); + SpaceWar.SpacePanel var49 = new SpaceWar.SpacePanel(); + float var50 = var49.getAlignmentX(); + var49.setVisible(false); + boolean var53 = var49.isDoubleBuffered(); + java.awt.dnd.DropTarget var54 = var49.getDropTarget(); + var49.show(false); + boolean var57 = var49.isPaintingForPrint(); + SpaceWar.SpacePanel var58 = new SpaceWar.SpacePanel(); + float var59 = var58.getAlignmentX(); + var58.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var64 = var58.getMouseListeners(); + int var65 = var58.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var66 = var58.getInputMethodRequests(); + var49.addKeyListener((java.awt.event.KeyListener)var58); + SpaceWar.SpacePanel var68 = new SpaceWar.SpacePanel(); + float var69 = var68.getAlignmentX(); + var68.setVisible(false); + boolean var72 = var68.isDoubleBuffered(); + var68.list(); + float var74 = var68.getAlignmentY(); + boolean var75 = var58.isFocusCycleRoot((java.awt.Container)var68); + var10.setNextFocusableComponent((java.awt.Component)var68); + boolean var77 = var68.isFocusable(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var28 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var35 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var41 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var44); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var48); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var50 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var53 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var54); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var57 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var59 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var64); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var65 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var66); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var69 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var72 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var74 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var75 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var77 == true); + + } + + public void test124() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test124"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.updateUI(); + var0.enableInputMethods(true); + java.lang.String var8 = var0.toString(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.setVisible(false); + boolean var13 = var9.isDoubleBuffered(); + java.awt.dnd.DropTarget var14 = var9.getDropTarget(); + var9.show(false); + java.awt.Rectangle var17 = var9.getVisibleRect(); + java.awt.image.BufferedImage var19 = var9.loadImg("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + java.awt.ComponentOrientation var20 = var9.getComponentOrientation(); + boolean var21 = var9.isPaintingTile(); + boolean var22 = var9.isOptimizedDrawingEnabled(); + int var23 = var0.getComponentZOrder((java.awt.Component)var9); + javax.swing.JRootPane var24 = var0.getRootPane(); + boolean var25 = var0.isMaximumSizeSet(); + boolean var26 = var0.isVisible(); + java.awt.event.ContainerListener[] var27 = var0.getContainerListeners(); + boolean var28 = var0.isFocusTraversable(); + var0.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", 0L, 1L); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var8 + "' != '" + "SpaceWar.SpacePanel[,0,0,0var8,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"+ "'", var8.equals("SpaceWar.SpacePanel[,0,0,0var8,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]")); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var22 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == (-1)); + + // Regression assertion (captures the current behavior of the code) + assertNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var27); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var28 == true); + + } + + public void test125() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test125"); + + + SpaceWar.Enemy var2 = new SpaceWar.Enemy(0, 100); + int var3 = var2.getR(); + var2.explode(); + var2.update(); + double var6 = var2.getY(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == 0.0d); + + } + + public void test126() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test126"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var6 = var0.getMouseListeners(); + int var7 = var0.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var8 = var0.getInputMethodRequests(); + var0.removeNotify(); + var0.enable(); + SpaceWar.SpacePanel var11 = new SpaceWar.SpacePanel(); + java.awt.Color var12 = var11.getBackground(); + boolean var15 = var11.inside(0, (-1)); + var11.transferFocusUpCycle(); + java.lang.String var17 = var11.getName(); + boolean var18 = var0.isFocusCycleRoot((java.awt.Container)var11); + var0.requestFocus(); + SpaceWar.SpacePanel var20 = new SpaceWar.SpacePanel(); + float var21 = var20.getAlignmentX(); + var20.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var26 = new SpaceWar.SpacePanel(); + float var27 = var26.getAlignmentX(); + var26.setVisible(false); + java.awt.Dimension var30 = var26.getPreferredSize(); + var20.setMaximumSize(var30); + boolean var32 = var20.getVerifyInputWhenFocusTarget(); + java.awt.Toolkit var33 = var20.getToolkit(); + java.lang.String var34 = var20.getUIClassID(); + java.awt.Dimension var35 = var20.getMinimumSize(); + SpaceWar.SpacePanel var36 = new SpaceWar.SpacePanel(); + float var37 = var36.getAlignmentX(); + var36.setVisible(false); + var36.setInheritsPopupMenu(false); + var36.setFocusTraversalPolicyProvider(true); + SpaceWar.SpacePanel var44 = new SpaceWar.SpacePanel(); + float var45 = var44.getAlignmentX(); + var44.setVisible(false); + boolean var48 = var44.isDoubleBuffered(); + var44.list(); + SpaceWar.SpacePanel var50 = new SpaceWar.SpacePanel(); + float var51 = var50.getAlignmentX(); + var50.setVisible(false); + boolean var54 = var50.isDoubleBuffered(); + java.awt.dnd.DropTarget var55 = var50.getDropTarget(); + var50.show(false); + java.awt.Rectangle var58 = var50.getVisibleRect(); + java.awt.Rectangle var59 = var44.getBounds(var58); + javax.swing.JToolTip var60 = var44.createToolTip(); + var36.removeKeyListener((java.awt.event.KeyListener)var44); + javax.swing.TransferHandler var62 = var36.getTransferHandler(); + boolean var63 = var36.requestFocusInWindow(); + var0.add((java.awt.Component)var20, (java.lang.Object)var36); + java.beans.PropertyChangeListener[] var65 = var36.getPropertyChangeListeners(); + int var66 = var36.getHeight(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var30); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var32 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var33); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var34 + "' != '" + "PanelUI"+ "'", var34.equals("PanelUI")); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var35); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var45 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var48 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var51 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var54 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var55); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var58); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var59); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var60); + + // Regression assertion (captures the current behavior of the code) + assertNull(var62); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var63 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var65); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var66 == 0); + + } + + public void test127() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test127"); + + + SpaceWar.Player var0 = new SpaceWar.Player(); + boolean var1 = var0.isRecovering(); + var0.setRigth(false); + boolean var4 = var0.isDead(); + int var5 = var0.getR(); + var0.loseLife(); + int var7 = var0.getPower(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == 25); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0); + + } + + public void test128() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test128"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + float var7 = var6.getAlignmentX(); + var6.setVisible(false); + java.awt.Dimension var10 = var6.getPreferredSize(); + var0.setMaximumSize(var10); + boolean var12 = var0.getVerifyInputWhenFocusTarget(); + int var13 = var0.getX(); + java.awt.Rectangle var14 = var0.bounds(); + boolean var15 = var0.isPaintingForPrint(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == false); + + } + + public void test129() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test129"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + float var7 = var6.getAlignmentX(); + var6.setVisible(false); + java.awt.Dimension var10 = var6.getPreferredSize(); + var0.setMaximumSize(var10); + boolean var12 = var0.getVerifyInputWhenFocusTarget(); + var0.transferFocusUpCycle(); + java.awt.Point var14 = var0.location(); + SpaceWar.SpacePanel var15 = new SpaceWar.SpacePanel(); + float var16 = var15.getAlignmentX(); + var15.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var21 = var15.getUI(); + var15.disable(); + javax.swing.InputMap var23 = var15.getInputMap(); + SpaceWar.SpacePanel var24 = new SpaceWar.SpacePanel(); + float var25 = var24.getAlignmentX(); + var24.setVisible(false); + SpaceWar.SpacePanel var28 = new SpaceWar.SpacePanel(); + java.awt.Color var29 = var28.getBackground(); + var24.setForeground(var29); + SpaceWar.SpacePanel var31 = new SpaceWar.SpacePanel(); + float var32 = var31.getAlignmentX(); + var31.setVisible(false); + boolean var35 = var31.isDoubleBuffered(); + java.awt.dnd.DropTarget var36 = var31.getDropTarget(); + var31.show(false); + java.awt.Rectangle var39 = var31.getVisibleRect(); + var24.repaint(var39); + java.awt.FocusTraversalPolicy var41 = var24.getFocusTraversalPolicy(); + java.awt.im.InputMethodRequests var42 = var24.getInputMethodRequests(); + var24.layout(); + java.awt.Point var44 = var24.getMousePosition(); + java.awt.Graphics var45 = var24.getGraphics(); + boolean var46 = var24.requestFocusInWindow(); + var0.putClientProperty((java.lang.Object)var23, (java.lang.Object)var46); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var21); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var23); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var29); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var32 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var35 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var36); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var39); + + // Regression assertion (captures the current behavior of the code) + assertNull(var41); + + // Regression assertion (captures the current behavior of the code) + assertNull(var42); + + // Regression assertion (captures the current behavior of the code) + assertNull(var44); + + // Regression assertion (captures the current behavior of the code) + assertNull(var45); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var46 == false); + + } + + public void test130() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test130"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + SpaceWar.SpacePanel var4 = new SpaceWar.SpacePanel(); + java.awt.Color var5 = var4.getBackground(); + var0.setForeground(var5); + SpaceWar.SpacePanel var7 = new SpaceWar.SpacePanel(); + float var8 = var7.getAlignmentX(); + var7.setVisible(false); + boolean var11 = var7.isDoubleBuffered(); + java.awt.dnd.DropTarget var12 = var7.getDropTarget(); + var7.show(false); + java.awt.Rectangle var15 = var7.getVisibleRect(); + var0.repaint(var15); + java.awt.FocusTraversalPolicy var17 = var0.getFocusTraversalPolicy(); + java.awt.im.InputMethodRequests var18 = var0.getInputMethodRequests(); + var0.layout(); + java.awt.Container var20 = var0.getFocusCycleRootAncestor(); + var0.setFocusTraversalPolicyProvider(true); + var0.hide(); + java.beans.PropertyChangeListener[] var25 = var0.getPropertyChangeListeners("SpaceWar.SpacePanel[,0,0,0x0,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + java.util.Locale var26 = var0.getLocale(); + java.lang.String var27 = var0.getToolTipText(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var25); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertNull(var27); + + } + + public void test131() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test131"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.setInheritsPopupMenu(false); + var0.setFocusTraversalPolicyProvider(true); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + boolean var12 = var8.isDoubleBuffered(); + var8.list(); + SpaceWar.SpacePanel var14 = new SpaceWar.SpacePanel(); + float var15 = var14.getAlignmentX(); + var14.setVisible(false); + boolean var18 = var14.isDoubleBuffered(); + java.awt.dnd.DropTarget var19 = var14.getDropTarget(); + var14.show(false); + java.awt.Rectangle var22 = var14.getVisibleRect(); + java.awt.Rectangle var23 = var8.getBounds(var22); + javax.swing.JToolTip var24 = var8.createToolTip(); + var0.removeKeyListener((java.awt.event.KeyListener)var8); + boolean var26 = var8.isDoubleBuffered(); + boolean var27 = var8.hasFocus(); + float var28 = var8.getAlignmentY(); + boolean var29 = var8.isFocusCycleRoot(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var23); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var28 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var29 == false); + + } + + public void test132() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test132"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + var0.setName(""); + java.awt.ComponentOrientation var3 = var0.getComponentOrientation(); + var0.enable(); + int var5 = var0.getHeight(); + boolean var6 = var0.isValidateRoot(); + boolean var7 = var0.isDisplayable(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + SpaceWar.SpacePanel var10 = new SpaceWar.SpacePanel(); + float var11 = var10.getAlignmentX(); + var10.setVisible(false); + java.awt.Dimension var14 = var10.getPreferredSize(); + boolean var15 = var10.getVerifyInputWhenFocusTarget(); + java.awt.Component var18 = var10.findComponentAt(10, 1); + var8.addKeyListener((java.awt.event.KeyListener)var10); + SpaceWar.SpacePanel var20 = new SpaceWar.SpacePanel(); + float var21 = var20.getAlignmentX(); + SpaceWar.SpacePanel var22 = new SpaceWar.SpacePanel(); + float var23 = var22.getAlignmentX(); + var22.setVisible(false); + java.awt.Dimension var26 = var22.getPreferredSize(); + boolean var27 = var22.getVerifyInputWhenFocusTarget(); + java.awt.Component var30 = var22.findComponentAt(10, 1); + var20.addKeyListener((java.awt.event.KeyListener)var22); + var22.repaint(100, (-1), (-1), 1); + java.awt.image.ColorModel var37 = var22.getColorModel(); + SpaceWar.SpacePanel var38 = new SpaceWar.SpacePanel(); + float var39 = var38.getAlignmentX(); + var38.setVisible(false); + boolean var42 = var38.isDoubleBuffered(); + var38.list(); + SpaceWar.SpacePanel var44 = new SpaceWar.SpacePanel(); + float var45 = var44.getAlignmentX(); + var44.setVisible(false); + boolean var48 = var44.isDoubleBuffered(); + java.awt.dnd.DropTarget var49 = var44.getDropTarget(); + var44.show(false); + java.awt.Rectangle var52 = var44.getVisibleRect(); + java.awt.image.BufferedImage var54 = var44.loadImg("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + boolean var55 = var38.isAncestorOf((java.awt.Component)var44); + javax.swing.InputVerifier var56 = var44.getInputVerifier(); + var10.putClientProperty((java.lang.Object)var22, (java.lang.Object)var44); + var0.setNextFocusableComponent((java.awt.Component)var22); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var30); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var37); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var39 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var42 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var45 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var48 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var49); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var52); + + // Regression assertion (captures the current behavior of the code) + assertNull(var54); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var55 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var56); + + } + + public void test133() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test133"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + boolean var6 = var0.isFocusCycleRoot(); + SpaceWar.SpacePanel var7 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + java.awt.Color var9 = var8.getBackground(); + SpaceWar.SpacePanel var10 = new SpaceWar.SpacePanel(); + float var11 = var10.getAlignmentX(); + var10.setVisible(false); + var10.nextFocus(); + var10.updateUI(); + var10.enableInputMethods(true); + var7.add((java.awt.Component)var8, (java.lang.Object)true); + java.awt.Dimension var19 = var8.getPreferredSize(); + var0.setSize(var19); + var0.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", (-1), 10); + var0.setLocation(10, 100); + java.awt.Component var30 = var0.locate(500, 99); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var9); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var30); + + } + + public void test134() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test134"); + + + SpaceWar.Bullet var3 = new SpaceWar.Bullet(525.4439481651533d, 3, 2); + + } + + public void test135() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test135"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var1 = new SpaceWar.SpacePanel(); + java.awt.Color var2 = var1.getBackground(); + SpaceWar.SpacePanel var3 = new SpaceWar.SpacePanel(); + float var4 = var3.getAlignmentX(); + var3.setVisible(false); + var3.nextFocus(); + var3.updateUI(); + var3.enableInputMethods(true); + var0.add((java.awt.Component)var1, (java.lang.Object)true); + java.awt.Image var14 = var1.createImage(1, (-1)); + java.awt.event.MouseListener[] var15 = var1.getMouseListeners(); + java.awt.Color var16 = var1.getBackground(); + boolean var17 = var1.getIgnoreRepaint(); + var1.enable(); + var1.show(false); + var1.firePropertyChange("PanelUI", false, false); + java.awt.ComponentOrientation var25 = var1.getComponentOrientation(); + boolean var26 = var1.isFocusTraversalPolicyProvider(); + java.awt.Rectangle var27 = var1.getBounds(); + var1.resetKeyboardActions(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var2); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var25); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var27); + + } + + public void test136() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test136"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + var0.setName(""); + java.awt.Graphics var3 = var0.getGraphics(); + SpaceWar.SpacePanel var4 = new SpaceWar.SpacePanel(); + float var5 = var4.getAlignmentX(); + var4.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var10 = new SpaceWar.SpacePanel(); + float var11 = var10.getAlignmentX(); + var10.setVisible(false); + java.awt.Dimension var14 = var10.getPreferredSize(); + var4.setMaximumSize(var14); + boolean var16 = var4.getVerifyInputWhenFocusTarget(); + int var17 = var4.getX(); + SpaceWar.SpacePanel var18 = new SpaceWar.SpacePanel(); + float var19 = var18.getAlignmentX(); + SpaceWar.SpacePanel var20 = new SpaceWar.SpacePanel(); + float var21 = var20.getAlignmentX(); + var20.setVisible(false); + java.awt.Dimension var24 = var20.getPreferredSize(); + boolean var25 = var20.getVerifyInputWhenFocusTarget(); + java.awt.Component var28 = var20.findComponentAt(10, 1); + var18.addKeyListener((java.awt.event.KeyListener)var20); + var20.repaint(100, (-1), (-1), 1); + SpaceWar.SpacePanel var35 = new SpaceWar.SpacePanel(); + java.awt.Color var36 = var35.getBackground(); + var35.repaint(); + java.awt.im.InputMethodRequests var38 = var35.getInputMethodRequests(); + java.awt.GraphicsConfiguration var39 = var35.getGraphicsConfiguration(); + var20.remove((java.awt.Component)var35); + java.awt.Font var41 = var35.getFont(); + var4.setFont(var41); + var0.setFont(var41); + var0.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=10,height=10]]", 1.0f, 0.0f); + + // Regression assertion (captures the current behavior of the code) + assertNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var28); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var36); + + // Regression assertion (captures the current behavior of the code) + assertNull(var38); + + // Regression assertion (captures the current behavior of the code) + assertNull(var39); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var41); + + } + + public void test137() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test137"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var1 = new SpaceWar.SpacePanel(); + java.awt.Color var2 = var1.getBackground(); + SpaceWar.SpacePanel var3 = new SpaceWar.SpacePanel(); + float var4 = var3.getAlignmentX(); + var3.setVisible(false); + var3.nextFocus(); + var3.updateUI(); + var3.enableInputMethods(true); + var0.add((java.awt.Component)var1, (java.lang.Object)true); + java.awt.Dimension var12 = var1.getPreferredSize(); + java.awt.Component[] var13 = var1.getComponents(); + java.awt.peer.ComponentPeer var14 = var1.getPeer(); + SpaceWar.SpacePanel var15 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var16 = new SpaceWar.SpacePanel(); + java.awt.Color var17 = var16.getBackground(); + SpaceWar.SpacePanel var18 = new SpaceWar.SpacePanel(); + float var19 = var18.getAlignmentX(); + var18.setVisible(false); + var18.nextFocus(); + var18.updateUI(); + var18.enableInputMethods(true); + var15.add((java.awt.Component)var16, (java.lang.Object)true); + java.awt.Dimension var27 = var16.getPreferredSize(); + var16.move(100, 10); + java.awt.Graphics var31 = var16.getGraphics(); + boolean var32 = var16.getInheritsPopupMenu(); + java.awt.Color var33 = var16.getForeground(); + var1.addKeyListener((java.awt.event.KeyListener)var16); + javax.accessibility.AccessibleContext var35 = var1.getAccessibleContext(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var2); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var27); + + // Regression assertion (captures the current behavior of the code) + assertNull(var31); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var32 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var33); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var35); + + } + + public void test138() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test138"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + var0.enable(false); + boolean var7 = var0.requestDefaultFocus(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var14 = var8.getMouseListeners(); + int var15 = var8.getDebugGraphicsOptions(); + SpaceWar.SpacePanel var16 = new SpaceWar.SpacePanel(); + float var17 = var16.getAlignmentX(); + var16.setVisible(false); + boolean var20 = var16.isDoubleBuffered(); + java.awt.dnd.DropTarget var21 = var16.getDropTarget(); + var16.show(false); + java.awt.Rectangle var24 = var16.getVisibleRect(); + var8.paintImmediately(var24); + var8.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", '#', '#'); + var8.list(); + java.awt.Rectangle var31 = var8.getBounds(); + var0.scrollRectToVisible(var31); + SpaceWar.Player var33 = new SpaceWar.Player(); + boolean var34 = var33.isRecovering(); + var33.setRigth(false); + int var37 = var33.getPowerLevel(); + var33.increasePower((-1)); + java.lang.Object var40 = var0.getClientProperty((java.lang.Object)(-1)); + boolean var41 = var0.hasFocus(); + var0.updateUI(); + javax.swing.plaf.PanelUI var43 = var0.getUI(); + SpaceWar.SpacePanel var44 = new SpaceWar.SpacePanel(); + float var45 = var44.getAlignmentX(); + var44.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var50 = var44.getUI(); + java.awt.im.InputMethodRequests var51 = var44.getInputMethodRequests(); + SpaceWar.SpacePanel var52 = new SpaceWar.SpacePanel(); + float var53 = var52.getAlignmentX(); + var52.setVisible(false); + var52.nextFocus(); + var52.updateUI(); + var52.enableInputMethods(true); + var52.setSize((-1), 1); + SpaceWar.SpacePanel var63 = new SpaceWar.SpacePanel(); + var63.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var44.add((java.awt.Component)var52, (java.lang.Object)"SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + java.awt.ComponentOrientation var69 = var52.getComponentOrientation(); + java.beans.VetoableChangeListener[] var70 = var52.getVetoableChangeListeners(); + int var71 = var52.getHeight(); + javax.swing.ActionMap var72 = var52.getActionMap(); + var0.setActionMap(var72); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var21); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var31); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var34 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var40); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var41 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var43); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var45 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var50); + + // Regression assertion (captures the current behavior of the code) + assertNull(var51); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var53 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var69); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var70); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var71 == 1); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var72); + + } + + public void test139() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test139"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.setInheritsPopupMenu(false); + var0.setFocusTraversalPolicyProvider(true); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + boolean var12 = var8.isDoubleBuffered(); + var8.list(); + SpaceWar.SpacePanel var14 = new SpaceWar.SpacePanel(); + float var15 = var14.getAlignmentX(); + var14.setVisible(false); + boolean var18 = var14.isDoubleBuffered(); + java.awt.dnd.DropTarget var19 = var14.getDropTarget(); + var14.show(false); + java.awt.Rectangle var22 = var14.getVisibleRect(); + java.awt.Rectangle var23 = var8.getBounds(var22); + javax.swing.JToolTip var24 = var8.createToolTip(); + var0.removeKeyListener((java.awt.event.KeyListener)var8); + java.awt.Rectangle var26 = var0.getVisibleRect(); + java.awt.event.HierarchyBoundsListener[] var27 = var0.getHierarchyBoundsListeners(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var23); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var27); + + } + + public void test140() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test140"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var6 = var0.getMouseListeners(); + int var7 = var0.getDebugGraphicsOptions(); + var0.setFocusable(false); + boolean var10 = var0.isEnabled(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == true); + + } + + public void test141() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test141"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + SpaceWar.SpacePanel var4 = new SpaceWar.SpacePanel(); + java.awt.Color var5 = var4.getBackground(); + var0.setForeground(var5); + SpaceWar.SpacePanel var7 = new SpaceWar.SpacePanel(); + float var8 = var7.getAlignmentX(); + var7.setVisible(false); + boolean var11 = var7.isDoubleBuffered(); + java.awt.dnd.DropTarget var12 = var7.getDropTarget(); + var7.show(false); + java.awt.Rectangle var15 = var7.getVisibleRect(); + var0.repaint(var15); + java.awt.FocusTraversalPolicy var17 = var0.getFocusTraversalPolicy(); + java.awt.im.InputMethodRequests var18 = var0.getInputMethodRequests(); + var0.layout(); + java.awt.Point var20 = var0.getMousePosition(); + java.awt.Graphics var21 = var0.getGraphics(); + javax.swing.JPopupMenu var22 = var0.getComponentPopupMenu(); + java.awt.event.ComponentListener[] var23 = var0.getComponentListeners(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertNull(var21); + + // Regression assertion (captures the current behavior of the code) + assertNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var23); + + } + + public void test142() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test142"); + + + SpaceWar.Bullet var3 = new SpaceWar.Bullet(594.7973940347722d, 3, 100); + double var4 = var3.getY(); + boolean var5 = var3.update(); + boolean var6 = var3.update(); + double var7 = var3.getR(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 100.0d); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 5.0d); + + } + + public void test143() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test143"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.reshape((-1), 1, (-1), 10); + SpaceWar.SpacePanel var10 = new SpaceWar.SpacePanel(); + java.awt.Color var11 = var10.getBackground(); + var10.repaint(); + var10.setRequestFocusEnabled(false); + var10.reshape(100, 0, 100, 0); + java.awt.Component var20 = var0.add((java.awt.Component)var10); + SpaceWar.SpacePanel var21 = new SpaceWar.SpacePanel(); + var21.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + javax.swing.plaf.PanelUI var26 = var21.getUI(); + SpaceWar.SpacePanel var27 = new SpaceWar.SpacePanel(); + float var28 = var27.getAlignmentX(); + var27.setVisible(false); + var27.nextFocus(); + var27.repaint(1L); + SpaceWar.SpacePanel var34 = new SpaceWar.SpacePanel(); + float var35 = var34.getAlignmentX(); + var34.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var40 = new SpaceWar.SpacePanel(); + float var41 = var40.getAlignmentX(); + var40.setVisible(false); + java.awt.Dimension var44 = var40.getPreferredSize(); + var34.setMaximumSize(var44); + var27.setPreferredSize(var44); + var21.setMaximumSize(var44); + java.awt.Dimension var48 = var10.getSize(var44); + java.awt.event.ContainerListener[] var49 = var10.getContainerListeners(); + boolean var50 = var10.isFocusTraversalPolicyProvider(); + javax.swing.ActionMap var51 = var10.getActionMap(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var28 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var35 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var41 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var44); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var48); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var49); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var50 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var51); + + } + + public void test144() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test144"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var6 = var0.getUI(); + java.awt.im.InputMethodRequests var7 = var0.getInputMethodRequests(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + var8.nextFocus(); + var8.updateUI(); + var8.enableInputMethods(true); + var8.setSize((-1), 1); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + var19.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var0.add((java.awt.Component)var8, (java.lang.Object)"SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + var8.doLayout(); + java.awt.event.MouseListener[] var26 = var8.getMouseListeners(); + var8.enableInputMethods(false); + int var29 = var8.getWidth(); + var8.setName("PanelUI"); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var29 == (-1)); + + } + + public void test145() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test145"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + java.awt.event.MouseMotionListener[] var6 = var0.getMouseMotionListeners(); + java.awt.event.ComponentListener[] var7 = var0.getComponentListeners(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + var8.nextFocus(); + var8.repaint(1L); + SpaceWar.SpacePanel var15 = new SpaceWar.SpacePanel(); + float var16 = var15.getAlignmentX(); + var15.setVisible(false); + boolean var19 = var15.isDoubleBuffered(); + var15.list(); + SpaceWar.SpacePanel var21 = new SpaceWar.SpacePanel(); + float var22 = var21.getAlignmentX(); + var21.setVisible(false); + boolean var25 = var21.isDoubleBuffered(); + java.awt.dnd.DropTarget var26 = var21.getDropTarget(); + var21.show(false); + java.awt.Rectangle var29 = var21.getVisibleRect(); + java.awt.Rectangle var30 = var15.getBounds(var29); + var8.setBounds(var30); + var0.paintImmediately(var30); + java.awt.Point var33 = var0.getMousePosition(); + boolean var34 = var0.isFocusCycleRoot(); + var0.firePropertyChange("SpaceWar.SpacePanel[,-1,1,-1x10,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", (byte)10, (byte)0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var22 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var29); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var30); + + // Regression assertion (captures the current behavior of the code) + assertNull(var33); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var34 == false); + + } + + public void test146() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test146"); + + + SpaceWar.Bullet var3 = new SpaceWar.Bullet(1.0d, 10, 400); + double var4 = var3.getY(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 400.0d); + + } + + public void test147() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test147"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + boolean var5 = javax.swing.JComponent.isLightweightComponent((java.awt.Component)var0); + var0.removeAll(); + java.awt.Component.BaselineResizeBehavior var7 = var0.getBaselineResizeBehavior(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + boolean var12 = var8.isDoubleBuffered(); + var8.list(); + SpaceWar.SpacePanel var14 = new SpaceWar.SpacePanel(); + float var15 = var14.getAlignmentX(); + var14.setVisible(false); + boolean var18 = var14.isDoubleBuffered(); + java.awt.dnd.DropTarget var19 = var14.getDropTarget(); + var14.show(false); + java.awt.Rectangle var22 = var14.getVisibleRect(); + java.awt.image.BufferedImage var24 = var14.loadImg("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + boolean var25 = var8.isAncestorOf((java.awt.Component)var14); + javax.swing.InputVerifier var26 = var14.getInputVerifier(); + java.awt.Dimension var27 = var14.minimumSize(); + var0.addKeyListener((java.awt.event.KeyListener)var14); + java.awt.Dimension var29 = var14.preferredSize(); + var14.setAutoscrolls(true); + var14.updateUI(); + java.awt.Dimension var33 = var14.size(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var27); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var29); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var33); + + } + + public void test148() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test148"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var1 = new SpaceWar.SpacePanel(); + java.awt.Color var2 = var1.getBackground(); + SpaceWar.SpacePanel var3 = new SpaceWar.SpacePanel(); + float var4 = var3.getAlignmentX(); + var3.setVisible(false); + var3.nextFocus(); + var3.updateUI(); + var3.enableInputMethods(true); + var0.add((java.awt.Component)var1, (java.lang.Object)true); + boolean var12 = var0.isMinimumSizeSet(); + java.awt.event.HierarchyListener[] var13 = var0.getHierarchyListeners(); + SpaceWar.SpacePanel var14 = new SpaceWar.SpacePanel(); + float var15 = var14.getAlignmentX(); + var14.setVisible(false); + SpaceWar.SpacePanel var18 = new SpaceWar.SpacePanel(); + java.awt.Color var19 = var18.getBackground(); + var14.setForeground(var19); + SpaceWar.SpacePanel var21 = new SpaceWar.SpacePanel(); + float var22 = var21.getAlignmentX(); + var21.setVisible(false); + boolean var25 = var21.isDoubleBuffered(); + java.awt.dnd.DropTarget var26 = var21.getDropTarget(); + var21.show(false); + java.awt.Rectangle var29 = var21.getVisibleRect(); + var14.repaint(var29); + java.awt.FocusTraversalPolicy var31 = var14.getFocusTraversalPolicy(); + java.awt.im.InputMethodRequests var32 = var14.getInputMethodRequests(); + var14.layout(); + boolean var34 = var14.isFocusTraversalPolicyProvider(); + java.lang.Object var35 = var0.getClientProperty((java.lang.Object)var34); + java.awt.Dimension var36 = var0.getSize(); + javax.swing.ActionMap var37 = var0.getActionMap(); + var0.firePropertyChange("hi!", 10L, 1L); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var2); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var22 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var29); + + // Regression assertion (captures the current behavior of the code) + assertNull(var31); + + // Regression assertion (captures the current behavior of the code) + assertNull(var32); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var34 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var35); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var36); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var37); + + } + + public void test149() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test149"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + var0.enable(false); + boolean var7 = var0.getFocusTraversalKeysEnabled(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + java.awt.Dimension var12 = var8.getPreferredSize(); + java.awt.Toolkit var13 = var8.getToolkit(); + boolean var14 = var8.isFocusable(); + javax.swing.KeyStroke[] var15 = var8.getRegisteredKeyStrokes(); + SpaceWar.SpacePanel var16 = new SpaceWar.SpacePanel(); + float var17 = var16.getAlignmentX(); + SpaceWar.SpacePanel var18 = new SpaceWar.SpacePanel(); + float var19 = var18.getAlignmentX(); + var18.setVisible(false); + java.awt.Dimension var22 = var18.getPreferredSize(); + boolean var23 = var18.getVerifyInputWhenFocusTarget(); + java.awt.Component var26 = var18.findComponentAt(10, 1); + var16.addKeyListener((java.awt.event.KeyListener)var18); + var18.repaint(100, (-1), (-1), 1); + boolean var33 = var8.isAncestorOf((java.awt.Component)var18); + var0.addKeyListener((java.awt.event.KeyListener)var18); + SpaceWar.SpacePanel var35 = new SpaceWar.SpacePanel(); + float var36 = var35.getAlignmentX(); + var35.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var41 = var35.getUI(); + java.awt.im.InputMethodRequests var42 = var35.getInputMethodRequests(); + SpaceWar.SpacePanel var43 = new SpaceWar.SpacePanel(); + float var44 = var43.getAlignmentX(); + var43.setVisible(false); + var43.nextFocus(); + var43.updateUI(); + var43.enableInputMethods(true); + var43.setSize((-1), 1); + SpaceWar.SpacePanel var54 = new SpaceWar.SpacePanel(); + var54.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var35.add((java.awt.Component)var43, (java.lang.Object)"SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + SpaceWar.SpacePanel var60 = new SpaceWar.SpacePanel(); + float var61 = var60.getAlignmentX(); + var60.setVisible(false); + var60.setInheritsPopupMenu(false); + boolean var66 = var60.isDoubleBuffered(); + boolean var67 = var60.isMinimumSizeSet(); + SpaceWar.SpacePanel var68 = new SpaceWar.SpacePanel(); + float var69 = var68.getAlignmentX(); + var68.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var74 = new SpaceWar.SpacePanel(); + float var75 = var74.getAlignmentX(); + var74.setVisible(false); + java.awt.Dimension var78 = var74.getPreferredSize(); + var68.setMaximumSize(var78); + boolean var80 = var68.getVerifyInputWhenFocusTarget(); + javax.accessibility.AccessibleContext var81 = var68.getAccessibleContext(); + boolean var82 = var68.isDoubleBuffered(); + java.awt.Rectangle var83 = var68.getVisibleRect(); + var60.setBounds(var83); + java.awt.Rectangle var85 = var35.getBounds(var83); + var18.setBounds(var85); + var18.setName("SpaceWar.SpacePanel[,100,0,100x0,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var33 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var36 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var41); + + // Regression assertion (captures the current behavior of the code) + assertNull(var42); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var44 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var61 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var66 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var67 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var69 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var75 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var78); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var80 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var81); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var82 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var83); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var85); + + } + + public void test150() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test150"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + boolean var2 = var0.hasFocus(); + SpaceWar.SpacePanel var3 = new SpaceWar.SpacePanel(); + float var4 = var3.getAlignmentX(); + var3.setVisible(false); + var3.nextFocus(); + var3.reshape((-1), 1, (-1), 10); + var3.disable(); + java.awt.LayoutManager var14 = var3.getLayout(); + var3.setVisible(false); + var0.remove((java.awt.Component)var3); + var3.repaint(); + var3.repaint(); + SpaceWar.SpacePanel var20 = new SpaceWar.SpacePanel(); + float var21 = var20.getAlignmentX(); + var20.setVisible(false); + var20.nextFocus(); + var20.repaint(1L); + SpaceWar.SpacePanel var27 = new SpaceWar.SpacePanel(); + float var28 = var27.getAlignmentX(); + var27.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var33 = new SpaceWar.SpacePanel(); + float var34 = var33.getAlignmentX(); + var33.setVisible(false); + java.awt.Dimension var37 = var33.getPreferredSize(); + var27.setMaximumSize(var37); + var20.setPreferredSize(var37); + javax.swing.plaf.PanelUI var40 = var20.getUI(); + SpaceWar.SpacePanel var41 = new SpaceWar.SpacePanel(); + float var42 = var41.getAlignmentX(); + var41.setVisible(false); + var41.nextFocus(); + var41.reshape((-1), 1, (-1), 10); + var41.disable(); + java.awt.LayoutManager var52 = var41.getLayout(); + java.awt.Container var53 = var41.getParent(); + java.lang.String var54 = var41.getUIClassID(); + SpaceWar.Enemy var57 = new SpaceWar.Enemy(0, 10); + var20.add((java.awt.Component)var41, (java.lang.Object)10); + java.awt.event.MouseListener[] var59 = var20.getMouseListeners(); + java.awt.Component var61 = var3.add((java.awt.Component)var20, (-1)); + java.lang.Object var62 = var20.getTreeLock(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var2 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var28 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var34 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var37); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var40); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var42 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var52); + + // Regression assertion (captures the current behavior of the code) + assertNull(var53); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var54 + "' != '" + "PanelUI"+ "'", var54.equals("PanelUI")); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var59); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var61); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var62); + + } + + public void test151() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test151"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + boolean var4 = var0.inside(0, (-1)); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + float var7 = var6.getAlignmentX(); + var6.setVisible(false); + var6.nextFocus(); + var6.reshape((-1), 1, (-1), 10); + var6.disable(); + boolean var17 = var6.isFocusable(); + SpaceWar.SpacePanel var18 = new SpaceWar.SpacePanel(); + float var19 = var18.getAlignmentX(); + var18.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var24 = var18.getUI(); + java.awt.im.InputMethodRequests var25 = var18.getInputMethodRequests(); + SpaceWar.SpacePanel var26 = new SpaceWar.SpacePanel(); + float var27 = var26.getAlignmentX(); + var26.setVisible(false); + var26.nextFocus(); + var26.updateUI(); + var26.enableInputMethods(true); + var26.setSize((-1), 1); + SpaceWar.SpacePanel var37 = new SpaceWar.SpacePanel(); + var37.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var18.add((java.awt.Component)var26, (java.lang.Object)"SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + java.awt.event.KeyListener[] var43 = var18.getKeyListeners(); + java.awt.FocusTraversalPolicy var44 = var18.getFocusTraversalPolicy(); + SpaceWar.SpacePanel var45 = new SpaceWar.SpacePanel(); + var45.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + java.awt.Toolkit var50 = var45.getToolkit(); + var6.add((java.awt.Component)var18, (java.lang.Object)var45); + var6.layout(); + java.awt.Component var53 = var0.add("", (java.awt.Component)var6); + java.awt.Component var54 = var0.getNextFocusableComponent(); + java.awt.Component var57 = var0.getComponentAt(0, 500); + java.awt.Point var58 = var0.getMousePosition(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertNull(var25); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var43); + + // Regression assertion (captures the current behavior of the code) + assertNull(var44); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var50); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var53); + + // Regression assertion (captures the current behavior of the code) + assertNull(var54); + + // Regression assertion (captures the current behavior of the code) + assertNull(var57); + + // Regression assertion (captures the current behavior of the code) + assertNull(var58); + + } + + public void test152() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test152"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.updateUI(); + var0.enableInputMethods(true); + java.awt.Point var8 = var0.location(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.setVisible(false); + var9.nextFocus(); + java.awt.Component var14 = var0.add((java.awt.Component)var9); + SpaceWar.SpacePanel var15 = new SpaceWar.SpacePanel(); + float var16 = var15.getAlignmentX(); + var15.setVisible(false); + var15.nextFocus(); + var15.updateUI(); + var15.enableInputMethods(true); + java.awt.Point var24 = var15.getMousePosition(false); + SpaceWar.SpacePanel var25 = new SpaceWar.SpacePanel(); + float var26 = var25.getAlignmentX(); + SpaceWar.SpacePanel var27 = new SpaceWar.SpacePanel(); + float var28 = var27.getAlignmentX(); + var27.setVisible(false); + java.awt.Dimension var31 = var27.getPreferredSize(); + boolean var32 = var27.getVerifyInputWhenFocusTarget(); + java.awt.Component var35 = var27.findComponentAt(10, 1); + var25.addKeyListener((java.awt.event.KeyListener)var27); + var27.repaint(100, (-1), (-1), 1); + SpaceWar.SpacePanel var42 = new SpaceWar.SpacePanel(); + java.awt.Color var43 = var42.getBackground(); + var42.repaint(); + java.awt.im.InputMethodRequests var45 = var42.getInputMethodRequests(); + java.awt.GraphicsConfiguration var46 = var42.getGraphicsConfiguration(); + var27.remove((java.awt.Component)var42); + java.awt.Font var48 = var42.getFont(); + var15.setFont(var48); + var9.setFont(var48); + boolean var51 = var9.isFocusable(); + java.beans.VetoableChangeListener[] var52 = var9.getVetoableChangeListeners(); + SpaceWar.SpacePanel var53 = new SpaceWar.SpacePanel(); + float var54 = var53.getAlignmentX(); + var53.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var59 = new SpaceWar.SpacePanel(); + float var60 = var59.getAlignmentX(); + var59.setVisible(false); + java.awt.Dimension var63 = var59.getPreferredSize(); + var53.setMaximumSize(var63); + boolean var65 = var53.getVerifyInputWhenFocusTarget(); + javax.accessibility.AccessibleContext var66 = var53.getAccessibleContext(); + boolean var67 = var53.isDoubleBuffered(); + java.awt.Rectangle var68 = var53.getVisibleRect(); + var9.setBounds(var68); + var9.enable(true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var28 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var31); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var32 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var35); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var43); + + // Regression assertion (captures the current behavior of the code) + assertNull(var45); + + // Regression assertion (captures the current behavior of the code) + assertNull(var46); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var48); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var51 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var52); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var54 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var60 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var63); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var65 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var66); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var67 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var68); + + } + + public void test153() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test153"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + float var7 = var6.getAlignmentX(); + var6.setVisible(false); + java.awt.Dimension var10 = var6.getPreferredSize(); + var0.setMaximumSize(var10); + boolean var12 = var0.getVerifyInputWhenFocusTarget(); + boolean var13 = var0.isFontSet(); + SpaceWar.SpacePanel var14 = new SpaceWar.SpacePanel(); + float var15 = var14.getAlignmentX(); + var14.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var20 = var14.getUI(); + java.awt.im.InputMethodRequests var21 = var14.getInputMethodRequests(); + SpaceWar.SpacePanel var22 = new SpaceWar.SpacePanel(); + float var23 = var22.getAlignmentX(); + var22.setVisible(false); + var22.nextFocus(); + var22.updateUI(); + var22.enableInputMethods(true); + var22.setSize((-1), 1); + SpaceWar.SpacePanel var33 = new SpaceWar.SpacePanel(); + var33.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var14.add((java.awt.Component)var22, (java.lang.Object)"SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + java.awt.ComponentOrientation var39 = var22.getComponentOrientation(); + java.beans.VetoableChangeListener[] var40 = var22.getVetoableChangeListeners(); + int var41 = var22.getHeight(); + var22.enable(true); + boolean var44 = var22.isFocusTraversalPolicyProvider(); + SpaceWar.SpacePanel var45 = new SpaceWar.SpacePanel(); + java.awt.Color var46 = var45.getBackground(); + var45.repaint(); + var45.setRequestFocusEnabled(false); + var45.reshape(100, 0, 100, 0); + var45.requestFocus(); + var45.firePropertyChange("hi!", '4', ' '); + java.awt.Point var60 = var45.getLocation(); + var22.setLocation(var60); + boolean var62 = var22.isManagingFocus(); + int var63 = var0.getComponentZOrder((java.awt.Component)var22); + SpaceWar.SpacePanel var64 = new SpaceWar.SpacePanel(); + float var65 = var64.getAlignmentX(); + SpaceWar.SpacePanel var66 = new SpaceWar.SpacePanel(); + float var67 = var66.getAlignmentX(); + var66.setVisible(false); + java.awt.Dimension var70 = var66.getPreferredSize(); + boolean var71 = var66.getVerifyInputWhenFocusTarget(); + java.awt.Component var74 = var66.findComponentAt(10, 1); + var64.addKeyListener((java.awt.event.KeyListener)var66); + java.awt.Dimension var76 = var66.getMinimumSize(); + SpaceWar.SpacePanel var77 = new SpaceWar.SpacePanel(); + java.awt.Color var78 = var77.getBackground(); + var77.repaint(); + var77.setRequestFocusEnabled(false); + var77.reshape(100, 0, 100, 0); + var77.requestFocus(); + java.awt.Rectangle var88 = var77.getVisibleRect(); + var66.setBounds(var88); + var22.computeVisibleRect(var88); + java.lang.String var91 = var22.getToolTipText(); + boolean var92 = var22.isLightweight(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertNull(var21); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var39); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var40); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var41 == 1); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var44 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var46); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var60); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var62 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var63 == (-1)); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var65 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var67 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var70); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var71 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var74); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var76); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var78); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var88); + + // Regression assertion (captures the current behavior of the code) + assertNull(var91); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var92 == false); + + } + + public void test154() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test154"); + + + SpaceWar.Enemy var2 = new SpaceWar.Enemy(0, 100); + int var3 = var2.getR(); + var2.explode(); + var2.update(); + var2.explode(); + int var7 = var2.getR(); + int var8 = var2.getType(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 0); + + } + + public void test155() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test155"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + SpaceWar.SpacePanel var4 = new SpaceWar.SpacePanel(); + java.awt.Color var5 = var4.getBackground(); + var0.setForeground(var5); + SpaceWar.SpacePanel var7 = new SpaceWar.SpacePanel(); + float var8 = var7.getAlignmentX(); + var7.setVisible(false); + boolean var11 = var7.isDoubleBuffered(); + java.awt.dnd.DropTarget var12 = var7.getDropTarget(); + var7.show(false); + java.awt.Rectangle var15 = var7.getVisibleRect(); + var0.repaint(var15); + java.awt.FocusTraversalPolicy var17 = var0.getFocusTraversalPolicy(); + java.awt.im.InputMethodRequests var18 = var0.getInputMethodRequests(); + var0.layout(); + boolean var20 = var0.isCursorSet(); + java.awt.Dimension var21 = var0.size(); + boolean var22 = var0.getIgnoreRepaint(); + // The following exception was thrown during execution. + // This behavior will recorded for regression testing. + try { + boolean var24 = var0.areFocusTraversalKeysSet(499); + fail("Expected exception of type java.lang.IllegalArgumentException"); + } catch (java.lang.IllegalArgumentException e) { + // Expected exception. + } + + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var21); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var22 == false); + + } + + public void test156() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test156"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + var0.setRequestFocusEnabled(false); + var0.reshape(100, 0, 100, 0); + var0.requestFocus(); + var0.firePropertyChange("hi!", '4', ' '); + java.awt.Point var15 = var0.getLocation(); + java.awt.Dimension var16 = var0.size(); + java.awt.Image var19 = var0.createImage((-1), (-1)); + java.awt.event.ComponentListener[] var20 = var0.getComponentListeners(); + var0.setName("PanelUI"); + var0.requestFocus(); + var0.setVisible(false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + } + + public void test157() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test157"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var6 = var0.getMouseListeners(); + var0.firePropertyChange("", 0.5f, 100.0f); + var0.enable(false); + var0.transferFocusDownCycle(); + java.awt.Component[] var14 = var0.getComponents(); + SpaceWar.SpacePanel var15 = new SpaceWar.SpacePanel(); + var15.setName(""); + var15.enable(true); + var15.enable(); + java.awt.Point var21 = var15.location(); + var15.repaint(0, 3, (-1), 1); + var15.setBounds(25, 100, 1, 0); + java.awt.Insets var32 = var15.getInsets(); + java.awt.peer.ComponentPeer var33 = var15.getPeer(); + javax.swing.KeyStroke[] var34 = var15.getRegisteredKeyStrokes(); + java.lang.Object var35 = var0.getClientProperty((java.lang.Object)var34); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var21); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var32); + + // Regression assertion (captures the current behavior of the code) + assertNull(var33); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var34); + + // Regression assertion (captures the current behavior of the code) + assertNull(var35); + + } + + public void test158() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test158"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + boolean var4 = var0.inside(0, (-1)); + var0.transferFocusUpCycle(); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + float var7 = var6.getAlignmentX(); + var6.setVisible(false); + boolean var10 = var6.isDoubleBuffered(); + var6.enable(false); + java.awt.Container var13 = var6.getTopLevelAncestor(); + SpaceWar.SpacePanel var14 = new SpaceWar.SpacePanel(); + float var15 = var14.getAlignmentX(); + var14.setVisible(false); + boolean var18 = var14.isDoubleBuffered(); + var14.list(); + SpaceWar.SpacePanel var20 = new SpaceWar.SpacePanel(); + float var21 = var20.getAlignmentX(); + var20.setVisible(false); + boolean var24 = var20.isDoubleBuffered(); + java.awt.dnd.DropTarget var25 = var20.getDropTarget(); + var20.show(false); + java.awt.Rectangle var28 = var20.getVisibleRect(); + java.awt.Rectangle var29 = var14.getBounds(var28); + var6.computeVisibleRect(var28); + var6.removeNotify(); + float var32 = var6.getAlignmentX(); + boolean var33 = var0.isAncestorOf((java.awt.Component)var6); + int var34 = var6.getWidth(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var24 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var25); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var28); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var29); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var32 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var33 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var34 == 0); + + } + + public void test159() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test159"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.setInheritsPopupMenu(false); + var0.move(10, 10); + var0.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var0.removeAll(); + java.awt.Point var14 = var0.location(); + SpaceWar.SpacePanel var15 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var16 = new SpaceWar.SpacePanel(); + java.awt.Color var17 = var16.getBackground(); + SpaceWar.SpacePanel var18 = new SpaceWar.SpacePanel(); + float var19 = var18.getAlignmentX(); + var18.setVisible(false); + var18.nextFocus(); + var18.updateUI(); + var18.enableInputMethods(true); + var15.add((java.awt.Component)var16, (java.lang.Object)true); + java.awt.Dimension var27 = var16.getPreferredSize(); + var16.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", (-1.0f), 100.0f); + SpaceWar.SpacePanel var32 = new SpaceWar.SpacePanel(); + float var33 = var32.getAlignmentX(); + var32.setVisible(false); + boolean var36 = var32.isDoubleBuffered(); + SpaceWar.SpacePanel var37 = new SpaceWar.SpacePanel(); + java.awt.Color var38 = var37.getBackground(); + var37.repaint(); + java.lang.Object var40 = var32.getClientProperty((java.lang.Object)var37); + var16.remove((java.awt.Component)var32); + SpaceWar.SpacePanel var42 = new SpaceWar.SpacePanel(); + float var43 = var42.getAlignmentX(); + var42.firePropertyChange("", (-1), 1); + java.awt.event.MouseMotionListener[] var48 = var42.getMouseMotionListeners(); + java.awt.Dimension var49 = var42.getMinimumSize(); + var16.setMaximumSize(var49); + var0.setMinimumSize(var49); + java.awt.event.FocusListener[] var52 = var0.getFocusListeners(); + java.awt.Color var53 = var0.getBackground(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var27); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var33 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var36 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var38); + + // Regression assertion (captures the current behavior of the code) + assertNull(var40); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var43 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var48); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var49); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var52); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var53); + + } + + public void test160() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test160"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + boolean var6 = var0.isFocusOwner(); + java.awt.Dimension var7 = var0.getMinimumSize(); + boolean var8 = var0.requestFocusInWindow(); + var0.reshape(1, (-1), 0, (-1)); + boolean var14 = var0.requestDefaultFocus(); + int var15 = var0.getY(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == (-1)); + + } + + public void test161() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test161"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + java.awt.im.InputMethodRequests var3 = var0.getInputMethodRequests(); + int var4 = var0.countComponents(); + java.awt.event.ComponentListener[] var5 = var0.getComponentListeners(); + var0.removeNotify(); + javax.swing.InputMap var7 = var0.getInputMap(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var14 = new SpaceWar.SpacePanel(); + float var15 = var14.getAlignmentX(); + var14.setVisible(false); + SpaceWar.SpacePanel var18 = new SpaceWar.SpacePanel(); + java.awt.Color var19 = var18.getBackground(); + var14.setForeground(var19); + var8.setBackground(var19); + java.awt.Point var22 = var8.location(); + var0.setLocation(var22); + SpaceWar.SpacePanel var24 = new SpaceWar.SpacePanel(); + float var25 = var24.getAlignmentX(); + var24.setVisible(false); + var24.nextFocus(); + var24.reshape((-1), 1, (-1), 10); + SpaceWar.SpacePanel var34 = new SpaceWar.SpacePanel(); + java.awt.Color var35 = var34.getBackground(); + var34.repaint(); + var34.setRequestFocusEnabled(false); + var34.reshape(100, 0, 100, 0); + java.awt.Component var44 = var24.add((java.awt.Component)var34); + var24.enable(); + SpaceWar.SpacePanel var46 = new SpaceWar.SpacePanel(); + float var47 = var46.getAlignmentX(); + boolean var48 = var46.hasFocus(); + boolean var49 = var46.isPreferredSizeSet(); + var0.putClientProperty((java.lang.Object)var24, (java.lang.Object)var46); + boolean var51 = var24.getVerifyInputWhenFocusTarget(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var35); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var44); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var47 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var48 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var49 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var51 == true); + + } + + public void test162() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test162"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + float var7 = var6.getAlignmentX(); + var6.setVisible(false); + SpaceWar.SpacePanel var10 = new SpaceWar.SpacePanel(); + java.awt.Color var11 = var10.getBackground(); + var6.setForeground(var11); + var0.setBackground(var11); + java.awt.Point var14 = var0.location(); + java.awt.Image var17 = var0.createImage((-1), 10); + var0.setInheritsPopupMenu(true); + SpaceWar.SpacePanel var20 = new SpaceWar.SpacePanel(); + var20.setName(""); + java.awt.ComponentOrientation var23 = var20.getComponentOrientation(); + var0.setComponentOrientation(var23); + SpaceWar.SpacePanel var25 = new SpaceWar.SpacePanel(); + float var26 = var25.getAlignmentX(); + var25.firePropertyChange("", (-1), 1); + java.awt.event.MouseMotionListener[] var31 = var25.getMouseMotionListeners(); + java.awt.event.ComponentListener[] var32 = var25.getComponentListeners(); + SpaceWar.SpacePanel var33 = new SpaceWar.SpacePanel(); + float var34 = var33.getAlignmentX(); + var33.setVisible(false); + var33.nextFocus(); + var33.repaint(1L); + SpaceWar.SpacePanel var40 = new SpaceWar.SpacePanel(); + float var41 = var40.getAlignmentX(); + var40.setVisible(false); + boolean var44 = var40.isDoubleBuffered(); + var40.list(); + SpaceWar.SpacePanel var46 = new SpaceWar.SpacePanel(); + float var47 = var46.getAlignmentX(); + var46.setVisible(false); + boolean var50 = var46.isDoubleBuffered(); + java.awt.dnd.DropTarget var51 = var46.getDropTarget(); + var46.show(false); + java.awt.Rectangle var54 = var46.getVisibleRect(); + java.awt.Rectangle var55 = var40.getBounds(var54); + var33.setBounds(var55); + var25.paintImmediately(var55); + var25.setBounds(3, 499, 3, 0); + float var63 = var25.getAlignmentY(); + var0.remove((java.awt.Component)var25); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var23); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var31); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var32); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var34 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var41 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var44 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var47 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var50 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var51); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var54); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var55); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var63 == 0.5f); + + } + + public void test163() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test163"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var6 = var0.getUI(); + java.awt.im.InputMethodRequests var7 = var0.getInputMethodRequests(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + var8.nextFocus(); + var8.updateUI(); + var8.enableInputMethods(true); + var8.setSize((-1), 1); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + var19.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var0.add((java.awt.Component)var8, (java.lang.Object)"SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + java.awt.event.KeyListener[] var25 = var0.getKeyListeners(); + var0.reshape(10, 100, 3, 3); + javax.accessibility.AccessibleContext var31 = var0.getAccessibleContext(); + java.util.Locale var32 = var0.getLocale(); + javax.swing.JComponent.setDefaultLocale(var32); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var25); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var31); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var32); + + } + + public void test164() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test164"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var6 = var0.getMouseListeners(); + int var7 = var0.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var8 = var0.getInputMethodRequests(); + var0.removeNotify(); + var0.enable(); + java.lang.Object var11 = var0.getTreeLock(); + var0.setAlignmentY(0.0f); + var0.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=1.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", '#', ' '); + java.awt.Component.BaselineResizeBehavior var18 = var0.getBaselineResizeBehavior(); + java.awt.event.KeyListener[] var19 = var0.getKeyListeners(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var19); + + } + + public void test165() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test165"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.reshape((-1), 1, (-1), 10); + var0.disable(); + java.awt.LayoutManager var11 = var0.getLayout(); + java.awt.Container var12 = var0.getParent(); + boolean var13 = var0.isPaintingForPrint(); + SpaceWar.SpacePanel var14 = new SpaceWar.SpacePanel(); + float var15 = var14.getAlignmentX(); + var14.setVisible(false); + var14.nextFocus(); + var14.reshape((-1), 1, (-1), 10); + SpaceWar.SpacePanel var24 = new SpaceWar.SpacePanel(); + java.awt.Color var25 = var24.getBackground(); + var24.repaint(); + var24.setRequestFocusEnabled(false); + var24.reshape(100, 0, 100, 0); + java.awt.Component var34 = var14.add((java.awt.Component)var24); + SpaceWar.SpacePanel var35 = new SpaceWar.SpacePanel(); + var35.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + javax.swing.plaf.PanelUI var40 = var35.getUI(); + SpaceWar.SpacePanel var41 = new SpaceWar.SpacePanel(); + float var42 = var41.getAlignmentX(); + var41.setVisible(false); + var41.nextFocus(); + var41.repaint(1L); + SpaceWar.SpacePanel var48 = new SpaceWar.SpacePanel(); + float var49 = var48.getAlignmentX(); + var48.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var54 = new SpaceWar.SpacePanel(); + float var55 = var54.getAlignmentX(); + var54.setVisible(false); + java.awt.Dimension var58 = var54.getPreferredSize(); + var48.setMaximumSize(var58); + var41.setPreferredSize(var58); + var35.setMaximumSize(var58); + java.awt.Dimension var62 = var24.getSize(var58); + var0.setSize(var62); + SpaceWar.SpacePanel var64 = new SpaceWar.SpacePanel(); + float var65 = var64.getAlignmentX(); + var64.setVisible(false); + boolean var68 = var64.isDoubleBuffered(); + var64.enable(false); + var0.removeKeyListener((java.awt.event.KeyListener)var64); + int var74 = var64.getBaseline(400, 400); + var64.enable(false); + var64.transferFocus(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var25); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var34); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var40); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var42 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var49 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var55 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var58); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var62); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var65 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var68 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var74 == (-1)); + + } + + public void test166() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test166"); + + + SpaceWar.Enemy var2 = new SpaceWar.Enemy(25, (-1)); + var2.update(); + var2.hit(); + var2.explode(); + int var6 = var2.getType(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == 25); + + } + + public void test167() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test167"); + + + SpaceWar.Enemy var2 = new SpaceWar.Enemy(100, 10); + + } + + public void test168() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test168"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + var0.list(); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + float var7 = var6.getAlignmentX(); + var6.setVisible(false); + boolean var10 = var6.isDoubleBuffered(); + java.awt.dnd.DropTarget var11 = var6.getDropTarget(); + var6.show(false); + java.awt.Rectangle var14 = var6.getVisibleRect(); + java.awt.Rectangle var15 = var0.getBounds(var14); + javax.swing.JToolTip var16 = var0.createToolTip(); + var0.firePropertyChange("", false, false); + boolean var21 = var0.isFocusTraversalPolicySet(); + SpaceWar.SpacePanel var22 = new SpaceWar.SpacePanel(); + float var23 = var22.getAlignmentX(); + var22.setVisible(false); + java.awt.Dimension var26 = var22.getPreferredSize(); + boolean var27 = var22.getVerifyInputWhenFocusTarget(); + java.awt.Component var30 = var22.findComponentAt(10, 1); + boolean var31 = var22.requestDefaultFocus(); + var22.setVerifyInputWhenFocusTarget(false); + java.awt.Point var34 = var22.getLocation(); + java.awt.Point var35 = var0.getLocation(var34); + SpaceWar.SpacePanel var36 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var37 = new SpaceWar.SpacePanel(); + java.awt.Color var38 = var37.getBackground(); + SpaceWar.SpacePanel var39 = new SpaceWar.SpacePanel(); + float var40 = var39.getAlignmentX(); + var39.setVisible(false); + var39.nextFocus(); + var39.updateUI(); + var39.enableInputMethods(true); + var36.add((java.awt.Component)var37, (java.lang.Object)true); + java.awt.Dimension var48 = var37.getPreferredSize(); + var37.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", (-1.0f), 100.0f); + var37.removeNotify(); + java.awt.Dimension var54 = var37.size(); + var0.resize(var54); + java.awt.Cursor var56 = var0.getCursor(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var30); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var31 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var34); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var35); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var38); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var40 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var48); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var54); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var56); + + } + + public void test169() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test169"); + + + SpaceWar.Player var0 = new SpaceWar.Player(); + var0.increasePower(25); + int var3 = var0.getR(); + int var4 = var0.getScore(); + var0.update(); + int var6 = var0.getR(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == 25); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == 25); + + } + + public void test170() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test170"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + java.awt.Dimension var4 = var0.getPreferredSize(); + boolean var5 = var0.getVerifyInputWhenFocusTarget(); + java.awt.Component var8 = var0.findComponentAt(10, 1); + boolean var9 = var0.requestDefaultFocus(); + var0.setVerifyInputWhenFocusTarget(false); + boolean var12 = var0.isPaintingForPrint(); + java.awt.event.MouseListener[] var13 = var0.getMouseListeners(); + java.awt.Dimension var14 = var0.getMaximumSize(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var4); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + } + + public void test171() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test171"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + SpaceWar.SpacePanel var5 = new SpaceWar.SpacePanel(); + float var6 = var5.getAlignmentX(); + var5.setVisible(false); + var5.nextFocus(); + var5.reshape((-1), 1, (-1), 10); + var5.disable(); + boolean var16 = var5.isFocusable(); + int var17 = var5.getHeight(); + var0.setNextFocusableComponent((java.awt.Component)var5); + boolean var19 = var0.isMinimumSizeSet(); + var0.transferFocusBackward(); + java.awt.Component.BaselineResizeBehavior var21 = var0.getBaselineResizeBehavior(); + java.awt.Dimension var22 = var0.getSize(); + SpaceWar.SpacePanel var23 = new SpaceWar.SpacePanel(); + float var24 = var23.getAlignmentX(); + var23.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var29 = var23.getMouseListeners(); + var23.firePropertyChange("", 0.5f, 100.0f); + var23.enable(false); + int var36 = var23.getDebugGraphicsOptions(); + java.awt.ComponentOrientation var37 = var23.getComponentOrientation(); + var0.setComponentOrientation(var37); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == 10); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var21); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var24 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var29); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var36 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var37); + + } + + public void test172() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test172"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + boolean var2 = var0.hasFocus(); + boolean var3 = var0.isPreferredSizeSet(); + var0.firePropertyChange("", (short)1, (short)0); + boolean var8 = var0.isMaximumSizeSet(); + java.awt.peer.ComponentPeer var9 = var0.getPeer(); + SpaceWar.SpacePanel var10 = new SpaceWar.SpacePanel(); + float var11 = var10.getAlignmentX(); + var10.setVisible(false); + boolean var14 = var10.isDoubleBuffered(); + java.awt.dnd.DropTarget var15 = var10.getDropTarget(); + var10.show(false); + SpaceWar.SpacePanel var18 = new SpaceWar.SpacePanel(); + float var19 = var18.getAlignmentX(); + var18.setVisible(false); + SpaceWar.SpacePanel var22 = new SpaceWar.SpacePanel(); + java.awt.Color var23 = var22.getBackground(); + var18.setForeground(var23); + SpaceWar.SpacePanel var25 = new SpaceWar.SpacePanel(); + float var26 = var25.getAlignmentX(); + var25.setVisible(false); + boolean var29 = var25.isDoubleBuffered(); + java.awt.dnd.DropTarget var30 = var25.getDropTarget(); + var25.show(false); + java.awt.Rectangle var33 = var25.getVisibleRect(); + var18.repaint(var33); + java.awt.FocusTraversalPolicy var35 = var18.getFocusTraversalPolicy(); + java.awt.im.InputMethodRequests var36 = var18.getInputMethodRequests(); + var18.layout(); + SpaceWar.SpacePanel var38 = new SpaceWar.SpacePanel(); + float var39 = var38.getAlignmentX(); + var38.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var44 = new SpaceWar.SpacePanel(); + float var45 = var44.getAlignmentX(); + var44.setVisible(false); + SpaceWar.SpacePanel var48 = new SpaceWar.SpacePanel(); + java.awt.Color var49 = var48.getBackground(); + var44.setForeground(var49); + var38.setBackground(var49); + var18.setForeground(var49); + int var53 = var18.getWidth(); + javax.swing.plaf.PanelUI var54 = var18.getUI(); + var10.setUI(var54); + var0.setUI(var54); + java.awt.event.MouseListener[] var57 = var0.getMouseListeners(); + var0.enableInputMethods(false); + var0.transferFocusDownCycle(); + var0.firePropertyChange("SpaceWar.SpacePanel[,-1,1,-1x10,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", 10.0f, 1.0f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var2 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var9); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var23); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var29 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var30); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var33); + + // Regression assertion (captures the current behavior of the code) + assertNull(var35); + + // Regression assertion (captures the current behavior of the code) + assertNull(var36); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var39 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var45 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var49); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var53 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var54); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var57); + + } + + public void test173() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test173"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var1 = new SpaceWar.SpacePanel(); + java.awt.Color var2 = var1.getBackground(); + SpaceWar.SpacePanel var3 = new SpaceWar.SpacePanel(); + float var4 = var3.getAlignmentX(); + var3.setVisible(false); + var3.nextFocus(); + var3.updateUI(); + var3.enableInputMethods(true); + var0.add((java.awt.Component)var1, (java.lang.Object)true); + java.awt.Dimension var12 = var1.getPreferredSize(); + var1.move(100, 10); + java.awt.Graphics var16 = var1.getGraphics(); + boolean var17 = var1.getInheritsPopupMenu(); + var1.setFocusTraversalPolicyProvider(false); + java.awt.event.ComponentListener[] var20 = var1.getComponentListeners(); + java.awt.event.ContainerListener[] var21 = var1.getContainerListeners(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var2); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var21); + + } + + public void test174() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test174"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.reshape((-1), 1, (-1), 10); + java.lang.Object var10 = var0.getTreeLock(); + var0.show(); + var0.validate(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var10); + + } + + public void test175() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test175"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + var0.list(); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + float var7 = var6.getAlignmentX(); + var6.setVisible(false); + boolean var10 = var6.isDoubleBuffered(); + java.awt.dnd.DropTarget var11 = var6.getDropTarget(); + var6.show(false); + java.awt.Rectangle var14 = var6.getVisibleRect(); + java.awt.Rectangle var15 = var0.getBounds(var14); + javax.swing.JToolTip var16 = var0.createToolTip(); + java.awt.Dimension var17 = var0.minimumSize(); + var0.setAutoscrolls(true); + var0.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", (short)10, (short)1); + SpaceWar.SpacePanel var24 = new SpaceWar.SpacePanel(); + float var25 = var24.getAlignmentX(); + SpaceWar.SpacePanel var26 = new SpaceWar.SpacePanel(); + float var27 = var26.getAlignmentX(); + var26.setVisible(false); + java.awt.Dimension var30 = var26.getPreferredSize(); + boolean var31 = var26.getVerifyInputWhenFocusTarget(); + java.awt.Component var34 = var26.findComponentAt(10, 1); + var24.addKeyListener((java.awt.event.KeyListener)var26); + var26.repaint(100, (-1), (-1), 1); + SpaceWar.SpacePanel var41 = new SpaceWar.SpacePanel(); + java.awt.Color var42 = var41.getBackground(); + var41.repaint(); + java.awt.im.InputMethodRequests var44 = var41.getInputMethodRequests(); + java.awt.GraphicsConfiguration var45 = var41.getGraphicsConfiguration(); + var26.remove((java.awt.Component)var41); + java.awt.Font var47 = var41.getFont(); + var0.setFont(var47); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var30); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var31 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var34); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var42); + + // Regression assertion (captures the current behavior of the code) + assertNull(var44); + + // Regression assertion (captures the current behavior of the code) + assertNull(var45); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var47); + + } + + public void test176() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test176"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.requestFocus(); + boolean var6 = var0.getInheritsPopupMenu(); + boolean var7 = var0.isFocusOwner(); + boolean var8 = var0.isValidateRoot(); + boolean var9 = var0.isMinimumSizeSet(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == false); + + } + + public void test177() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test177"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.reshape((-1), 1, (-1), 10); + var0.disable(); + java.awt.LayoutManager var11 = var0.getLayout(); + boolean var14 = var0.contains((-1), 0); + SpaceWar.SpacePanel var15 = new SpaceWar.SpacePanel(); + float var16 = var15.getAlignmentX(); + var15.setVisible(false); + var15.nextFocus(); + var15.updateUI(); + var15.enableInputMethods(true); + var15.setSize((-1), 1); + java.awt.Component var26 = var0.add((java.awt.Component)var15); + SpaceWar.SpacePanel var27 = new SpaceWar.SpacePanel(); + float var28 = var27.getAlignmentX(); + var27.setVisible(false); + var27.nextFocus(); + var27.updateUI(); + var27.enableInputMethods(true); + java.lang.String var35 = var27.toString(); + java.awt.FocusTraversalPolicy var36 = var27.getFocusTraversalPolicy(); + var15.removeKeyListener((java.awt.event.KeyListener)var27); + var15.show(false); + java.awt.Container var40 = var15.getTopLevelAncestor(); + java.awt.LayoutManager var41 = var15.getLayout(); + java.awt.event.ContainerListener[] var42 = var15.getContainerListeners(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var28 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var35 + "' != '" + "SpaceWar.SpacePanel[,0,0,0var35,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"+ "'", var35.equals("SpaceWar.SpacePanel[,0,0,0var35,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]")); + + // Regression assertion (captures the current behavior of the code) + assertNull(var36); + + // Regression assertion (captures the current behavior of the code) + assertNull(var40); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var41); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var42); + + } + + public void test178() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test178"); + + + SpaceWar.Enemy var2 = new SpaceWar.Enemy(500, 3); + double var3 = var2.getX(); + int var4 = var2.getRank(); + int var5 = var2.getRank(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == 588.66222662657d); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 3); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == 3); + + } + + public void test179() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test179"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + var0.list(); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + float var7 = var6.getAlignmentX(); + var6.setVisible(false); + boolean var10 = var6.isDoubleBuffered(); + java.awt.dnd.DropTarget var11 = var6.getDropTarget(); + var6.show(false); + java.awt.Rectangle var14 = var6.getVisibleRect(); + java.awt.Rectangle var15 = var0.getBounds(var14); + javax.swing.JToolTip var16 = var0.createToolTip(); + var0.firePropertyChange("", false, false); + var0.validate(); + var0.setFocusCycleRoot(true); + int var24 = var0.countComponents(); + java.awt.event.KeyListener[] var25 = var0.getKeyListeners(); + var0.paintImmediately(10, 505, 399, 3); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var24 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var25); + + } + + public void test180() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test180"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var1 = new SpaceWar.SpacePanel(); + java.awt.Color var2 = var1.getBackground(); + SpaceWar.SpacePanel var3 = new SpaceWar.SpacePanel(); + float var4 = var3.getAlignmentX(); + var3.setVisible(false); + var3.nextFocus(); + var3.updateUI(); + var3.enableInputMethods(true); + var0.add((java.awt.Component)var1, (java.lang.Object)true); + java.awt.Image var14 = var1.createImage(1, (-1)); + java.awt.event.MouseListener[] var15 = var1.getMouseListeners(); + java.awt.Color var16 = var1.getBackground(); + boolean var17 = var1.getIgnoreRepaint(); + var1.enable(); + SpaceWar.Player var19 = new SpaceWar.Player(); + int var20 = var19.getR(); + boolean var21 = var19.isRecovering(); + SpaceWar.SpacePanel var22 = new SpaceWar.SpacePanel(); + java.awt.Color var23 = var22.getBackground(); + var22.repaint(); + var22.setRequestFocusEnabled(false); + var22.setIgnoreRepaint(false); + java.lang.String var29 = var22.toString(); + var1.putClientProperty((java.lang.Object)var21, (java.lang.Object)var29); + boolean var31 = var1.isValid(); + SpaceWar.SpacePanel var32 = new SpaceWar.SpacePanel(); + float var33 = var32.getAlignmentX(); + var32.setVisible(false); + var32.nextFocus(); + var32.reshape((-1), 1, (-1), 10); + var32.disable(); + java.awt.LayoutManager var43 = var32.getLayout(); + boolean var46 = var32.contains((-1), 0); + SpaceWar.SpacePanel var47 = new SpaceWar.SpacePanel(); + float var48 = var47.getAlignmentX(); + var47.setVisible(false); + var47.nextFocus(); + var47.updateUI(); + var47.enableInputMethods(true); + var47.setSize((-1), 1); + java.awt.Component var58 = var32.add((java.awt.Component)var47); + SpaceWar.SpacePanel var59 = new SpaceWar.SpacePanel(); + float var60 = var59.getAlignmentX(); + var59.setVisible(false); + var59.nextFocus(); + var59.updateUI(); + var59.enableInputMethods(true); + java.lang.String var67 = var59.toString(); + java.awt.FocusTraversalPolicy var68 = var59.getFocusTraversalPolicy(); + var47.removeKeyListener((java.awt.event.KeyListener)var59); + var47.show(false); + java.awt.Container var72 = var47.getTopLevelAncestor(); + java.awt.LayoutManager var73 = var47.getLayout(); + var1.setLayout(var73); + java.awt.Container var75 = var1.getTopLevelAncestor(); + SpaceWar.SpacePanel var76 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var77 = new SpaceWar.SpacePanel(); + java.awt.Color var78 = var77.getBackground(); + SpaceWar.SpacePanel var79 = new SpaceWar.SpacePanel(); + float var80 = var79.getAlignmentX(); + var79.setVisible(false); + var79.nextFocus(); + var79.updateUI(); + var79.enableInputMethods(true); + var76.add((java.awt.Component)var77, (java.lang.Object)true); + java.awt.Image var90 = var77.createImage(1, (-1)); + java.awt.event.MouseListener[] var91 = var77.getMouseListeners(); + java.awt.Color var92 = var77.getBackground(); + boolean var93 = var77.getIgnoreRepaint(); + var77.enable(); + java.awt.Color var95 = var77.getBackground(); + var1.setForeground(var95); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var2); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == 25); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var23); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var29 + "' != '" + "SpaceWar.SpacePanel[,0,0,0var29,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"+ "'", var29.equals("SpaceWar.SpacePanel[,0,0,0var29,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]")); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var31 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var33 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var43); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var46 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var48 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var58); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var60 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var67 + "' != '" + "SpaceWar.SpacePanel[,0,0,0var67,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"+ "'", var67.equals("SpaceWar.SpacePanel[,0,0,0var67,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]")); + + // Regression assertion (captures the current behavior of the code) + assertNull(var68); + + // Regression assertion (captures the current behavior of the code) + assertNull(var72); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var73); + + // Regression assertion (captures the current behavior of the code) + assertNull(var75); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var78); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var80 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNull(var90); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var91); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var92); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var93 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var95); + + } + + public void test181() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test181"); + + + SpaceWar.Player var0 = new SpaceWar.Player(); + boolean var1 = var0.isRecovering(); + var0.loseLife(); + int var3 = var0.getR(); + var0.loseLife(); + var0.setDown(true); + int var7 = var0.getRequiredPower(); + int var8 = var0.getPowerLevel(); + int var9 = var0.getLives(); + var0.setFiring(false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == 25); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 1); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 1); + + } + + public void test182() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test182"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + java.awt.Dimension var4 = var0.getPreferredSize(); + java.awt.Toolkit var5 = var0.getToolkit(); + boolean var6 = var0.isFocusable(); + javax.swing.KeyStroke[] var7 = var0.getRegisteredKeyStrokes(); + java.awt.Component var10 = var0.getComponentAt(100, 100); + java.lang.Object var11 = var0.getTreeLock(); + var0.hide(); + java.awt.Dimension var13 = var0.size(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var4); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var13); + + } + + public void test183() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test183"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + var0.show(false); + java.awt.Rectangle var8 = var0.getVisibleRect(); + java.awt.Toolkit var9 = var0.getToolkit(); + SpaceWar.SpacePanel var10 = new SpaceWar.SpacePanel(); + float var11 = var10.getAlignmentX(); + var10.setVisible(false); + boolean var14 = var10.isDoubleBuffered(); + var10.list(); + SpaceWar.SpacePanel var16 = new SpaceWar.SpacePanel(); + float var17 = var16.getAlignmentX(); + var16.setVisible(false); + boolean var20 = var16.isDoubleBuffered(); + java.awt.dnd.DropTarget var21 = var16.getDropTarget(); + var16.show(false); + java.awt.Rectangle var24 = var16.getVisibleRect(); + java.awt.Rectangle var25 = var10.getBounds(var24); + javax.swing.JToolTip var26 = var10.createToolTip(); + var10.firePropertyChange("", false, false); + var10.validate(); + SpaceWar.SpacePanel var32 = new SpaceWar.SpacePanel(); + float var33 = var32.getAlignmentX(); + var32.setVisible(false); + var32.nextFocus(); + var32.updateUI(); + var32.enableInputMethods(true); + java.lang.String var40 = var32.toString(); + var0.putClientProperty((java.lang.Object)var10, (java.lang.Object)var32); + var10.firePropertyChange("SpaceWar.SpacePanel[,-1,100,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=265,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", (short)10, (short)1); + boolean var46 = var10.isFocusTraversable(); + java.awt.Image var49 = var10.createImage(1, 500); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var9); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var21); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var25); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var33 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var40 + "' != '" + "SpaceWar.SpacePanel[,0,0,0var40,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"+ "'", var40.equals("SpaceWar.SpacePanel[,0,0,0var40,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]")); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var46 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var49); + + } + + public void test184() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test184"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + boolean var2 = var0.hasFocus(); + SpaceWar.SpacePanel var3 = new SpaceWar.SpacePanel(); + float var4 = var3.getAlignmentX(); + var3.setVisible(false); + var3.nextFocus(); + var3.reshape((-1), 1, (-1), 10); + var3.disable(); + java.awt.LayoutManager var14 = var3.getLayout(); + var3.setVisible(false); + var0.remove((java.awt.Component)var3); + java.awt.Container var18 = var3.getFocusCycleRootAncestor(); + javax.swing.plaf.PanelUI var19 = var3.getUI(); + javax.swing.ActionMap var20 = var3.getActionMap(); + var3.revalidate(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var2 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + } + + public void test185() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test185"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + var0.show(false); + boolean var8 = var0.isPaintingForPrint(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var15 = var9.getMouseListeners(); + int var16 = var9.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var17 = var9.getInputMethodRequests(); + var0.addKeyListener((java.awt.event.KeyListener)var9); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + float var20 = var19.getAlignmentX(); + var19.setVisible(false); + boolean var23 = var19.isDoubleBuffered(); + var19.list(); + float var25 = var19.getAlignmentY(); + boolean var26 = var9.isFocusCycleRoot((java.awt.Container)var19); + var19.firePropertyChange("", 1L, 1L); + var19.setVerifyInputWhenFocusTarget(true); + java.awt.Cursor var33 = var19.getCursor(); + var19.layout(); + SpaceWar.SpacePanel var35 = new SpaceWar.SpacePanel(); + float var36 = var35.getAlignmentX(); + var35.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var41 = var35.getMouseListeners(); + int var42 = var35.getDebugGraphicsOptions(); + SpaceWar.SpacePanel var43 = new SpaceWar.SpacePanel(); + float var44 = var43.getAlignmentX(); + var43.setVisible(false); + boolean var47 = var43.isDoubleBuffered(); + java.awt.dnd.DropTarget var48 = var43.getDropTarget(); + var43.show(false); + java.awt.Rectangle var51 = var43.getVisibleRect(); + var35.paintImmediately(var51); + boolean var53 = var35.isFocusCycleRoot(); + var35.list(); + boolean var55 = var19.isFocusCycleRoot((java.awt.Container)var35); + SpaceWar.SpacePanel var56 = new SpaceWar.SpacePanel(); + java.awt.Color var57 = var56.getBackground(); + var56.repaint(); + java.awt.im.InputMethodRequests var59 = var56.getInputMethodRequests(); + int var60 = var56.countComponents(); + java.awt.event.ComponentListener[] var61 = var56.getComponentListeners(); + var56.transferFocusBackward(); + java.awt.LayoutManager var63 = var56.getLayout(); + var19.setLayout(var63); + java.awt.Container var65 = var19.getParent(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var33); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var36 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var41); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var42 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var44 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var47 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var48); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var51); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var53 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var55 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var57); + + // Regression assertion (captures the current behavior of the code) + assertNull(var59); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var60 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var61); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var63); + + // Regression assertion (captures the current behavior of the code) + assertNull(var65); + + } + + public void test186() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test186"); + + + SpaceWar.Player var0 = new SpaceWar.Player(); + var0.increasePower(25); + int var3 = var0.getR(); + int var4 = var0.getScore(); + var0.loseLife(); + boolean var6 = var0.isRecovering(); + var0.setFiring(false); + int var9 = var0.getPower(); + int var10 = var0.getPowerLevel(); + var0.setScore(500); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == 25); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 24); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 1); + + } + + public void test187() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test187"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + java.awt.Dimension var4 = var0.getPreferredSize(); + java.awt.Toolkit var5 = var0.getToolkit(); + boolean var6 = var0.isFocusable(); + javax.swing.KeyStroke[] var7 = var0.getRegisteredKeyStrokes(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + SpaceWar.SpacePanel var10 = new SpaceWar.SpacePanel(); + float var11 = var10.getAlignmentX(); + var10.setVisible(false); + java.awt.Dimension var14 = var10.getPreferredSize(); + boolean var15 = var10.getVerifyInputWhenFocusTarget(); + java.awt.Component var18 = var10.findComponentAt(10, 1); + var8.addKeyListener((java.awt.event.KeyListener)var10); + var10.repaint(100, (-1), (-1), 1); + boolean var25 = var0.isAncestorOf((java.awt.Component)var10); + var0.nextFocus(); + var0.disable(); + java.awt.Dimension var28 = var0.size(); + var0.list(); + var0.hide(); + SpaceWar.SpacePanel var31 = new SpaceWar.SpacePanel(); + float var32 = var31.getAlignmentX(); + boolean var33 = var31.hasFocus(); + java.awt.Insets var34 = var31.getInsets(); + java.awt.Rectangle var35 = var31.bounds(); + boolean var36 = var31.isMaximumSizeSet(); + int var37 = var31.getY(); + SpaceWar.SpacePanel var38 = new SpaceWar.SpacePanel(); + var38.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + javax.swing.plaf.PanelUI var43 = var38.getUI(); + java.awt.Color var44 = var38.getBackground(); + var38.removeAll(); + var38.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", (short)(-1), (short)100); + java.awt.GraphicsConfiguration var50 = var38.getGraphicsConfiguration(); + SpaceWar.SpacePanel var51 = new SpaceWar.SpacePanel(); + float var52 = var51.getAlignmentX(); + SpaceWar.SpacePanel var53 = new SpaceWar.SpacePanel(); + float var54 = var53.getAlignmentX(); + var53.setVisible(false); + java.awt.Dimension var57 = var53.getPreferredSize(); + boolean var58 = var53.getVerifyInputWhenFocusTarget(); + java.awt.Component var61 = var53.findComponentAt(10, 1); + var51.addKeyListener((java.awt.event.KeyListener)var53); + var53.repaint(100, (-1), (-1), 1); + java.awt.image.ColorModel var68 = var53.getColorModel(); + boolean var69 = var53.isFocusTraversalPolicyProvider(); + var53.show(false); + boolean var72 = var53.isManagingFocus(); + SpaceWar.SpacePanel var73 = new SpaceWar.SpacePanel(); + java.awt.Color var74 = var73.getBackground(); + var73.repaint(); + var73.setRequestFocusEnabled(false); + var73.reshape(100, 0, 100, 0); + var73.requestFocus(); + java.awt.Rectangle var84 = var73.getVisibleRect(); + java.awt.Rectangle var85 = var73.getBounds(); + java.awt.im.InputMethodRequests var86 = var73.getInputMethodRequests(); + boolean var87 = var73.requestFocusInWindow(); + java.awt.Point var89 = var73.getMousePosition(false); + var73.setDebugGraphicsOptions(1); + java.awt.Graphics var92 = var73.getGraphics(); + var53.paint(var92); + var38.paintAll(var92); + var31.paintAll(var92); + var0.paint(var92); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var4); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var28); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var32 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var33 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var34); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var35); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var36 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var43); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var44); + + // Regression assertion (captures the current behavior of the code) + assertNull(var50); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var52 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var54 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var57); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var58 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var61); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var68); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var69 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var72 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var74); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var84); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var85); + + // Regression assertion (captures the current behavior of the code) + assertNull(var86); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var87 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var89); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var92); + + } + + public void test188() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test188"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + boolean var4 = var0.inside(0, (-1)); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + float var7 = var6.getAlignmentX(); + var6.setVisible(false); + var6.nextFocus(); + var6.reshape((-1), 1, (-1), 10); + var6.disable(); + boolean var17 = var6.isFocusable(); + SpaceWar.SpacePanel var18 = new SpaceWar.SpacePanel(); + float var19 = var18.getAlignmentX(); + var18.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var24 = var18.getUI(); + java.awt.im.InputMethodRequests var25 = var18.getInputMethodRequests(); + SpaceWar.SpacePanel var26 = new SpaceWar.SpacePanel(); + float var27 = var26.getAlignmentX(); + var26.setVisible(false); + var26.nextFocus(); + var26.updateUI(); + var26.enableInputMethods(true); + var26.setSize((-1), 1); + SpaceWar.SpacePanel var37 = new SpaceWar.SpacePanel(); + var37.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var18.add((java.awt.Component)var26, (java.lang.Object)"SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + java.awt.event.KeyListener[] var43 = var18.getKeyListeners(); + java.awt.FocusTraversalPolicy var44 = var18.getFocusTraversalPolicy(); + SpaceWar.SpacePanel var45 = new SpaceWar.SpacePanel(); + var45.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + java.awt.Toolkit var50 = var45.getToolkit(); + var6.add((java.awt.Component)var18, (java.lang.Object)var45); + var6.layout(); + java.awt.Component var53 = var0.add("", (java.awt.Component)var6); + var6.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=1.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", (byte)10, (byte)100); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertNull(var25); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var43); + + // Regression assertion (captures the current behavior of the code) + assertNull(var44); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var50); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var53); + + } + + public void test189() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test189"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + java.awt.Dimension var4 = var0.getPreferredSize(); + java.awt.Toolkit var5 = var0.getToolkit(); + boolean var6 = var0.isFocusable(); + javax.swing.KeyStroke[] var7 = var0.getRegisteredKeyStrokes(); + java.awt.Component var10 = var0.getComponentAt(100, 100); + SpaceWar.SpacePanel var11 = new SpaceWar.SpacePanel(); + java.awt.Color var12 = var11.getBackground(); + var11.repaint(); + var11.setRequestFocusEnabled(false); + var11.reshape(100, 0, 100, 0); + var11.firePropertyChange("PanelUI", 10, 10); + boolean var25 = var11.isFontSet(); + var0.setNextFocusableComponent((java.awt.Component)var11); + java.awt.event.MouseListener[] var27 = var11.getMouseListeners(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var4); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var27); + + } + + public void test190() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test190"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.setInheritsPopupMenu(false); + boolean var6 = var0.isDoubleBuffered(); + var0.setAlignmentY(100.0f); + var0.setAlignmentX(0.0f); + java.beans.PropertyChangeListener[] var11 = var0.getPropertyChangeListeners(); + java.lang.String var12 = var0.getName(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNull(var12); + + } + + public void test191() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test191"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.reshape((-1), 1, (-1), 10); + var0.disable(); + java.awt.LayoutManager var11 = var0.getLayout(); + java.awt.Container var12 = var0.getParent(); + boolean var13 = var0.isPaintingForPrint(); + var0.nextFocus(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == false); + + } + + public void test192() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test192"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.repaint(1L); + SpaceWar.SpacePanel var7 = new SpaceWar.SpacePanel(); + float var8 = var7.getAlignmentX(); + var7.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var13 = new SpaceWar.SpacePanel(); + float var14 = var13.getAlignmentX(); + var13.setVisible(false); + java.awt.Dimension var17 = var13.getPreferredSize(); + var7.setMaximumSize(var17); + var0.setPreferredSize(var17); + javax.swing.plaf.PanelUI var20 = var0.getUI(); + var0.setAutoscrolls(false); + boolean var23 = var0.isEnabled(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == true); + + } + + public void test193() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test193"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var1 = new SpaceWar.SpacePanel(); + java.awt.Color var2 = var1.getBackground(); + SpaceWar.SpacePanel var3 = new SpaceWar.SpacePanel(); + float var4 = var3.getAlignmentX(); + var3.setVisible(false); + var3.nextFocus(); + var3.updateUI(); + var3.enableInputMethods(true); + var0.add((java.awt.Component)var1, (java.lang.Object)true); + java.awt.Dimension var12 = var1.getPreferredSize(); + java.awt.Component[] var13 = var1.getComponents(); + var1.repaint(25, 25, 100, 1); + var1.nextFocus(); + java.awt.peer.ComponentPeer var20 = var1.getPeer(); + java.awt.Color var21 = var1.getForeground(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var2); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var21); + + } + + public void test194() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test194"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.setInheritsPopupMenu(false); + var0.setFocusTraversalPolicyProvider(true); + boolean var10 = var0.inside(25, 3); + SpaceWar.SpacePanel var11 = new SpaceWar.SpacePanel(); + float var12 = var11.getAlignmentX(); + var11.setVisible(false); + boolean var15 = var11.isDoubleBuffered(); + java.awt.dnd.DropTarget var16 = var11.getDropTarget(); + var11.show(false); + boolean var19 = var11.isPaintingForPrint(); + SpaceWar.SpacePanel var20 = new SpaceWar.SpacePanel(); + float var21 = var20.getAlignmentX(); + SpaceWar.SpacePanel var22 = new SpaceWar.SpacePanel(); + float var23 = var22.getAlignmentX(); + var22.setVisible(false); + java.awt.Dimension var26 = var22.getPreferredSize(); + boolean var27 = var22.getVerifyInputWhenFocusTarget(); + java.awt.Component var30 = var22.findComponentAt(10, 1); + var20.addKeyListener((java.awt.event.KeyListener)var22); + java.awt.Dimension var32 = var22.getMinimumSize(); + var11.setMinimumSize(var32); + var0.setPreferredSize(var32); + boolean var36 = var0.requestFocus(true); + var0.hide(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var30); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var32); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var36 == false); + + } + + public void test195() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test195"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var1 = new SpaceWar.SpacePanel(); + java.awt.Color var2 = var1.getBackground(); + SpaceWar.SpacePanel var3 = new SpaceWar.SpacePanel(); + float var4 = var3.getAlignmentX(); + var3.setVisible(false); + var3.nextFocus(); + var3.updateUI(); + var3.enableInputMethods(true); + var0.add((java.awt.Component)var1, (java.lang.Object)true); + boolean var13 = var1.areFocusTraversalKeysSet(0); + SpaceWar.SpacePanel var14 = new SpaceWar.SpacePanel(); + float var15 = var14.getAlignmentX(); + var14.setVisible(false); + var14.nextFocus(); + var14.reshape((-1), 1, (-1), 10); + var14.disable(); + var14.show(); + SpaceWar.SpacePanel var26 = new SpaceWar.SpacePanel(); + float var27 = var26.getAlignmentX(); + var26.setVisible(false); + boolean var30 = var26.isDoubleBuffered(); + var26.list(); + SpaceWar.SpacePanel var32 = new SpaceWar.SpacePanel(); + float var33 = var32.getAlignmentX(); + var32.setVisible(false); + boolean var36 = var32.isDoubleBuffered(); + java.awt.dnd.DropTarget var37 = var32.getDropTarget(); + var32.show(false); + java.awt.Rectangle var40 = var32.getVisibleRect(); + java.awt.Rectangle var41 = var26.getBounds(var40); + javax.swing.JToolTip var42 = var26.createToolTip(); + var26.firePropertyChange("", false, false); + var26.validate(); + SpaceWar.SpacePanel var48 = new SpaceWar.SpacePanel(); + float var49 = var48.getAlignmentX(); + var48.setVisible(false); + boolean var52 = var48.isDoubleBuffered(); + java.awt.dnd.DropTarget var53 = var48.getDropTarget(); + var48.show(false); + boolean var56 = var48.isPaintingForPrint(); + SpaceWar.SpacePanel var57 = new SpaceWar.SpacePanel(); + float var58 = var57.getAlignmentX(); + var57.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var63 = var57.getMouseListeners(); + int var64 = var57.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var65 = var57.getInputMethodRequests(); + var48.addKeyListener((java.awt.event.KeyListener)var57); + var57.repaint(); + java.awt.Point var68 = var57.location(); + java.awt.Component var69 = var26.getComponentAt(var68); + java.awt.Point var70 = var14.getLocation(var68); + var14.setAlignmentY(0.5f); + boolean var73 = var14.getVerifyInputWhenFocusTarget(); + boolean var74 = var14.isBackgroundSet(); + java.awt.Dimension var75 = var14.getMinimumSize(); + boolean var76 = var1.isAncestorOf((java.awt.Component)var14); + SpaceWar.SpacePanel var77 = new SpaceWar.SpacePanel(); + float var78 = var77.getAlignmentX(); + boolean var79 = var77.hasFocus(); + java.awt.Insets var80 = var77.getInsets(); + java.awt.Insets var81 = var14.getInsets(var80); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var2); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var30 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var33 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var36 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var37); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var40); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var41); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var42); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var49 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var52 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var53); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var56 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var58 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var63); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var64 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var65); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var68); + + // Regression assertion (captures the current behavior of the code) + assertNull(var69); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var70); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var73 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var74 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var75); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var76 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var78 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var79 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var80); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var81); + + } + + public void test196() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test196"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + var0.setRequestFocusEnabled(false); + var0.reshape(100, 0, 100, 0); + var0.requestFocus(); + var0.firePropertyChange("hi!", '4', ' '); + java.awt.Point var15 = var0.getLocation(); + java.awt.Dimension var16 = var0.size(); + boolean var17 = var0.isDoubleBuffered(); + boolean var18 = var0.getFocusTraversalKeysEnabled(); + java.awt.Rectangle var19 = var0.getVisibleRect(); + java.awt.Component var22 = var0.locate(500, 399); + int var23 = var0.getHeight(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == 0); + + } + + public void test197() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test197"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + var0.show(false); + boolean var8 = var0.isPaintingForPrint(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var15 = var9.getMouseListeners(); + int var16 = var9.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var17 = var9.getInputMethodRequests(); + var0.addKeyListener((java.awt.event.KeyListener)var9); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + float var20 = var19.getAlignmentX(); + var19.setVisible(false); + boolean var23 = var19.isDoubleBuffered(); + var19.list(); + float var25 = var19.getAlignmentY(); + boolean var26 = var9.isFocusCycleRoot((java.awt.Container)var19); + javax.swing.JPopupMenu var27 = var19.getComponentPopupMenu(); + var19.move((-1), 100); + var19.validate(); + java.awt.Toolkit var32 = var19.getToolkit(); + SpaceWar.SpacePanel var33 = new SpaceWar.SpacePanel(); + float var34 = var33.getAlignmentX(); + var33.setVisible(false); + boolean var37 = var33.isDoubleBuffered(); + SpaceWar.SpacePanel var38 = new SpaceWar.SpacePanel(); + java.awt.Color var39 = var38.getBackground(); + var38.repaint(); + java.lang.Object var41 = var33.getClientProperty((java.lang.Object)var38); + var38.repaint(10, 1, 25, 0); + var19.removeKeyListener((java.awt.event.KeyListener)var38); + var38.grabFocus(); + boolean var49 = var38.getIgnoreRepaint(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var27); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var32); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var34 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var39); + + // Regression assertion (captures the current behavior of the code) + assertNull(var41); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var49 == false); + + } + + public void test198() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test198"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + var0.show(false); + boolean var8 = var0.isPaintingForPrint(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var15 = var9.getMouseListeners(); + int var16 = var9.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var17 = var9.getInputMethodRequests(); + var0.addKeyListener((java.awt.event.KeyListener)var9); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + float var20 = var19.getAlignmentX(); + var19.setVisible(false); + boolean var23 = var19.isDoubleBuffered(); + var19.list(); + float var25 = var19.getAlignmentY(); + boolean var26 = var9.isFocusCycleRoot((java.awt.Container)var19); + boolean var27 = var19.isEnabled(); + java.awt.Dimension var28 = var19.getMaximumSize(); + var19.setName("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + var19.updateUI(); + boolean var32 = var19.isOptimizedDrawingEnabled(); + SpaceWar.SpacePanel var33 = new SpaceWar.SpacePanel(); + float var34 = var33.getAlignmentX(); + var33.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var39 = var33.getUI(); + java.awt.im.InputMethodRequests var40 = var33.getInputMethodRequests(); + SpaceWar.SpacePanel var41 = new SpaceWar.SpacePanel(); + float var42 = var41.getAlignmentX(); + var41.setVisible(false); + var41.nextFocus(); + var41.updateUI(); + var41.enableInputMethods(true); + var41.setSize((-1), 1); + SpaceWar.SpacePanel var52 = new SpaceWar.SpacePanel(); + var52.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var33.add((java.awt.Component)var41, (java.lang.Object)"SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + SpaceWar.SpacePanel var58 = new SpaceWar.SpacePanel(); + float var59 = var58.getAlignmentX(); + var58.setVisible(false); + java.awt.Dimension var62 = var58.getPreferredSize(); + java.awt.Toolkit var63 = var58.getToolkit(); + java.awt.Toolkit var64 = var58.getToolkit(); + java.awt.Component var65 = var41.add((java.awt.Component)var58); + var41.setDebugGraphicsOptions(0); + java.awt.im.InputMethodRequests var68 = var41.getInputMethodRequests(); + SpaceWar.SpacePanel var69 = new SpaceWar.SpacePanel(); + java.awt.Color var70 = var69.getBackground(); + var41.setForeground(var70); + SpaceWar.SpacePanel var72 = new SpaceWar.SpacePanel(); + java.awt.Color var73 = var72.getBackground(); + var72.repaint(); + java.awt.im.InputMethodRequests var75 = var72.getInputMethodRequests(); + int var76 = var72.countComponents(); + java.awt.event.ComponentListener[] var77 = var72.getComponentListeners(); + var72.removeNotify(); + javax.swing.InputMap var79 = var72.getInputMap(); + SpaceWar.SpacePanel var80 = new SpaceWar.SpacePanel(); + float var81 = var80.getAlignmentX(); + var80.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var86 = new SpaceWar.SpacePanel(); + float var87 = var86.getAlignmentX(); + var86.setVisible(false); + SpaceWar.SpacePanel var90 = new SpaceWar.SpacePanel(); + java.awt.Color var91 = var90.getBackground(); + var86.setForeground(var91); + var80.setBackground(var91); + java.awt.Point var94 = var80.location(); + var72.setLocation(var94); + boolean var96 = var41.contains(var94); + var19.setLocation(var94); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var28); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var32 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var34 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var39); + + // Regression assertion (captures the current behavior of the code) + assertNull(var40); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var42 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var59 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var62); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var63); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var64); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var65); + + // Regression assertion (captures the current behavior of the code) + assertNull(var68); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var70); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var73); + + // Regression assertion (captures the current behavior of the code) + assertNull(var75); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var76 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var77); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var79); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var81 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var87 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var91); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var94); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var96 == false); + + } + + public void test199() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test199"); + + + SpaceWar.Enemy var2 = new SpaceWar.Enemy(0, 100); + var2.explode(); + var2.hit(); + int var5 = var2.getType(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == 0); + + } + + public void test200() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test200"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var1 = new SpaceWar.SpacePanel(); + java.awt.Color var2 = var1.getBackground(); + SpaceWar.SpacePanel var3 = new SpaceWar.SpacePanel(); + float var4 = var3.getAlignmentX(); + var3.setVisible(false); + var3.nextFocus(); + var3.updateUI(); + var3.enableInputMethods(true); + var0.add((java.awt.Component)var1, (java.lang.Object)true); + boolean var12 = var0.isMinimumSizeSet(); + java.awt.event.HierarchyListener[] var13 = var0.getHierarchyListeners(); + var0.repaint(0L); + SpaceWar.SpacePanel var16 = new SpaceWar.SpacePanel(); + float var17 = var16.getAlignmentX(); + var16.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var22 = var16.getUI(); + java.awt.im.InputMethodRequests var23 = var16.getInputMethodRequests(); + SpaceWar.SpacePanel var24 = new SpaceWar.SpacePanel(); + float var25 = var24.getAlignmentX(); + var24.setVisible(false); + var24.nextFocus(); + var24.updateUI(); + var24.enableInputMethods(true); + var24.setSize((-1), 1); + SpaceWar.SpacePanel var35 = new SpaceWar.SpacePanel(); + var35.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var16.add((java.awt.Component)var24, (java.lang.Object)"SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + SpaceWar.SpacePanel var41 = new SpaceWar.SpacePanel(); + var41.setName(""); + java.awt.ComponentOrientation var44 = var41.getComponentOrientation(); + var16.applyComponentOrientation(var44); + java.awt.Component[] var46 = var16.getComponents(); + SpaceWar.SpacePanel var47 = new SpaceWar.SpacePanel(); + float var48 = var47.getAlignmentX(); + var47.setVisible(false); + java.awt.Dimension var51 = var47.getPreferredSize(); + boolean var52 = var47.getVerifyInputWhenFocusTarget(); + java.awt.Component var55 = var47.findComponentAt(10, 1); + boolean var56 = var47.requestDefaultFocus(); + var47.setVerifyInputWhenFocusTarget(false); + java.awt.Point var59 = var47.getLocation(); + var16.setLocation(var59); + SpaceWar.SpacePanel var61 = new SpaceWar.SpacePanel(); + float var62 = var61.getAlignmentX(); + var61.setVisible(false); + boolean var65 = var61.isDoubleBuffered(); + java.awt.dnd.DropTarget var66 = var61.getDropTarget(); + var61.show(false); + boolean var69 = var61.isPaintingForPrint(); + SpaceWar.SpacePanel var70 = new SpaceWar.SpacePanel(); + float var71 = var70.getAlignmentX(); + var70.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var76 = var70.getMouseListeners(); + int var77 = var70.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var78 = var70.getInputMethodRequests(); + var61.addKeyListener((java.awt.event.KeyListener)var70); + SpaceWar.SpacePanel var80 = new SpaceWar.SpacePanel(); + float var81 = var80.getAlignmentX(); + var80.setVisible(false); + boolean var84 = var80.isDoubleBuffered(); + var80.list(); + float var86 = var80.getAlignmentY(); + boolean var87 = var70.isFocusCycleRoot((java.awt.Container)var80); + java.awt.event.MouseListener[] var88 = var80.getMouseListeners(); + boolean var89 = var80.isDisplayable(); + boolean var90 = var80.isPaintingForPrint(); + java.awt.Color var91 = var80.getBackground(); + var16.setForeground(var91); + var0.setForeground(var91); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var2); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertNull(var23); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var44); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var46); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var48 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var51); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var52 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var55); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var56 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var59); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var62 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var65 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var66); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var69 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var71 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var76); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var77 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var78); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var81 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var84 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var86 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var87 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var88); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var89 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var90 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var91); + + } + + public void test201() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test201"); + + + SpaceWar.Player var0 = new SpaceWar.Player(); + boolean var1 = var0.isRecovering(); + var0.loseLife(); + int var3 = var0.getX(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == 400); + + } + + public void test202() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test202"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + var0.list(); + float var6 = var0.getAlignmentY(); + boolean var7 = var0.isOpaque(); + var0.resetKeyboardActions(); + boolean var9 = var0.isFocusTraversalPolicyProvider(); + java.awt.im.InputContext var10 = var0.getInputContext(); + java.awt.Toolkit var11 = var0.getToolkit(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + } + + public void test203() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test203"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + var0.setRequestFocusEnabled(false); + var0.setIgnoreRepaint(false); + java.lang.String var7 = var0.toString(); + boolean var9 = var0.requestFocus(false); + var0.hide(); + // The following exception was thrown during execution. + // This behavior will recorded for regression testing. + try { + java.awt.Component var12 = var0.getComponent(400); + fail("Expected exception of type java.lang.ArrayIndexOutOfBoundsException"); + } catch (java.lang.ArrayIndexOutOfBoundsException e) { + // Expected exception. + } + + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var7 + "' != '" + "SpaceWar.SpacePanel[,0,0,0var7,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"+ "'", var7.equals("SpaceWar.SpacePanel[,0,0,0var7,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]")); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == false); + + } + + public void test204() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test204"); + + + SpaceWar.PowerUp var3 = new SpaceWar.PowerUp(499, 495.44236387443226d, 0.0d); + int var4 = var3.getType(); + double var5 = var3.getX(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 499); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == 495.44236387443226d); + + } + + public void test205() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test205"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + float var7 = var6.getAlignmentX(); + var6.setVisible(false); + SpaceWar.SpacePanel var10 = new SpaceWar.SpacePanel(); + java.awt.Color var11 = var10.getBackground(); + var6.setForeground(var11); + var0.setBackground(var11); + var0.grabFocus(); + SpaceWar.SpacePanel var15 = new SpaceWar.SpacePanel(); + float var16 = var15.getAlignmentX(); + var15.setVisible(false); + boolean var19 = var15.isDoubleBuffered(); + java.awt.dnd.DropTarget var20 = var15.getDropTarget(); + boolean var21 = var15.isFocusCycleRoot(); + SpaceWar.SpacePanel var22 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var23 = new SpaceWar.SpacePanel(); + java.awt.Color var24 = var23.getBackground(); + SpaceWar.SpacePanel var25 = new SpaceWar.SpacePanel(); + float var26 = var25.getAlignmentX(); + var25.setVisible(false); + var25.nextFocus(); + var25.updateUI(); + var25.enableInputMethods(true); + var22.add((java.awt.Component)var23, (java.lang.Object)true); + java.awt.Dimension var34 = var23.getPreferredSize(); + var15.setSize(var34); + var0.setMaximumSize(var34); + var0.enable(); + SpaceWar.SpacePanel var38 = new SpaceWar.SpacePanel(); + float var39 = var38.getAlignmentX(); + var38.setVisible(false); + var38.nextFocus(); + var38.reshape((-1), 1, (-1), 10); + var38.disable(); + java.awt.LayoutManager var49 = var38.getLayout(); + boolean var52 = var38.contains((-1), 0); + SpaceWar.SpacePanel var53 = new SpaceWar.SpacePanel(); + float var54 = var53.getAlignmentX(); + var53.setVisible(false); + var53.nextFocus(); + var53.updateUI(); + var53.enableInputMethods(true); + var53.setSize((-1), 1); + java.awt.Component var64 = var38.add((java.awt.Component)var53); + SpaceWar.SpacePanel var65 = new SpaceWar.SpacePanel(); + float var66 = var65.getAlignmentX(); + var65.setVisible(false); + var65.nextFocus(); + var65.updateUI(); + var65.enableInputMethods(true); + java.lang.String var73 = var65.toString(); + java.awt.FocusTraversalPolicy var74 = var65.getFocusTraversalPolicy(); + var53.removeKeyListener((java.awt.event.KeyListener)var65); + var0.addKeyListener((java.awt.event.KeyListener)var65); + java.awt.Dimension var77 = var0.getPreferredSize(); + var0.setVerifyInputWhenFocusTarget(true); + boolean var80 = var0.isFocusTraversalPolicySet(); + java.util.Locale var81 = var0.getLocale(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var34); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var39 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var49); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var52 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var54 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var64); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var66 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var73 + "' != '" + "SpaceWar.SpacePanel[,0,0,0var73,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"+ "'", var73.equals("SpaceWar.SpacePanel[,0,0,0var73,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]")); + + // Regression assertion (captures the current behavior of the code) + assertNull(var74); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var77); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var80 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var81); + + } + + public void test206() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test206"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + var0.show(false); + boolean var8 = var0.isPaintingForPrint(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var15 = var9.getMouseListeners(); + int var16 = var9.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var17 = var9.getInputMethodRequests(); + var0.addKeyListener((java.awt.event.KeyListener)var9); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + float var20 = var19.getAlignmentX(); + var19.setVisible(false); + boolean var23 = var19.isDoubleBuffered(); + var19.list(); + float var25 = var19.getAlignmentY(); + boolean var26 = var9.isFocusCycleRoot((java.awt.Container)var19); + var19.firePropertyChange("", 1L, 1L); + var19.setVerifyInputWhenFocusTarget(true); + var19.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", '4', '4'); + java.awt.Point var37 = var19.getLocation(); + var19.transferFocusUpCycle(); + var19.requestFocus(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var37); + + } + + public void test207() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test207"); + + + SpaceWar.Enemy var2 = new SpaceWar.Enemy(0, 100); + var2.explode(); + boolean var4 = var2.isDead(); + int var5 = var2.getType(); + int var6 = var2.getRank(); + int var7 = var2.getType(); + double var8 = var2.getX(); + java.awt.image.BufferedImage var10 = var2.loadImg("SpaceWar.SpacePanel[,-1,1,-1x10,invalid,hidden,disabled,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == 100); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 328.72617228257167d); + + // Regression assertion (captures the current behavior of the code) + assertNull(var10); + + } + + public void test208() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test208"); + + + SpaceWar.PowerUp var3 = new SpaceWar.PowerUp(1, 516.8000611430284d, 328.72617228257167d); + + } + + public void test209() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test209"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var6 = var0.getUI(); + java.awt.im.InputMethodRequests var7 = var0.getInputMethodRequests(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + var8.nextFocus(); + var8.updateUI(); + var8.enableInputMethods(true); + var8.setSize((-1), 1); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + var19.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var0.add((java.awt.Component)var8, (java.lang.Object)"SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + var8.setAutoscrolls(true); + SpaceWar.SpacePanel var27 = new SpaceWar.SpacePanel(); + float var28 = var27.getAlignmentX(); + boolean var29 = var27.hasFocus(); + boolean var30 = var27.isPreferredSizeSet(); + var27.firePropertyChange("", (short)1, (short)0); + boolean var35 = var27.isMaximumSizeSet(); + java.awt.peer.ComponentPeer var36 = var27.getPeer(); + java.awt.ComponentOrientation var37 = var27.getComponentOrientation(); + var8.setComponentOrientation(var37); + SpaceWar.SpacePanel var39 = new SpaceWar.SpacePanel(); + java.awt.Color var40 = var39.getBackground(); + var39.repaint(); + var39.setRequestFocusEnabled(false); + var39.reshape(100, 0, 100, 0); + java.beans.VetoableChangeListener[] var49 = var39.getVetoableChangeListeners(); + java.awt.Rectangle var50 = var39.getVisibleRect(); + float var51 = var39.getAlignmentY(); + var8.addKeyListener((java.awt.event.KeyListener)var39); + boolean var53 = var39.isFocusCycleRoot(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var28 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var29 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var30 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var35 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var36); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var37); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var40); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var49); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var50); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var51 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var53 == false); + + } + + public void test210() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test210"); + + + SpaceWar.Enemy var2 = new SpaceWar.Enemy(0, 100); + int var3 = var2.getR(); + var2.explode(); + var2.update(); + var2.explode(); + boolean var7 = var2.isDead(); + int var8 = var2.getR(); + int var9 = var2.getRank(); + var2.explode(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 100); + + } + + public void test211() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test211"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var1 = new SpaceWar.SpacePanel(); + java.awt.Color var2 = var1.getBackground(); + SpaceWar.SpacePanel var3 = new SpaceWar.SpacePanel(); + float var4 = var3.getAlignmentX(); + var3.setVisible(false); + var3.nextFocus(); + var3.updateUI(); + var3.enableInputMethods(true); + var0.add((java.awt.Component)var1, (java.lang.Object)true); + java.awt.Insets var12 = var0.getInsets(); + java.lang.String var13 = var0.getUIClassID(); + java.lang.String var14 = var0.getToolTipText(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var2); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var13 + "' != '" + "PanelUI"+ "'", var13.equals("PanelUI")); + + // Regression assertion (captures the current behavior of the code) + assertNull(var14); + + } + + public void test212() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test212"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + var0.setName(""); + int var3 = var0.getX(); + java.lang.String var4 = var0.getToolTipText(); + java.awt.Point var5 = var0.getLocation(); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + java.awt.Color var7 = var6.getBackground(); + var6.repaint(); + var6.setRequestFocusEnabled(false); + var6.reshape(100, 0, 100, 0); + javax.swing.event.AncestorListener[] var16 = var6.getAncestorListeners(); + var6.setOpaque(true); + var6.show(); + SpaceWar.SpacePanel var20 = new SpaceWar.SpacePanel(); + float var21 = var20.getAlignmentX(); + var20.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var26 = var20.getMouseListeners(); + java.awt.Dimension var27 = var20.getPreferredSize(); + java.util.Locale var28 = var20.getLocale(); + java.awt.Font var29 = var20.getFont(); + java.awt.Container var30 = var20.getTopLevelAncestor(); + var0.add((java.awt.Component)var6, (java.lang.Object)var20); + var20.transferFocus(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var4); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var27); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var28); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var29); + + // Regression assertion (captures the current behavior of the code) + assertNull(var30); + + } + + public void test213() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test213"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + float var7 = var6.getAlignmentX(); + var6.setVisible(false); + java.awt.Dimension var10 = var6.getPreferredSize(); + var0.setMaximumSize(var10); + boolean var12 = var0.getVerifyInputWhenFocusTarget(); + java.awt.Container var13 = var0.getTopLevelAncestor(); + java.awt.Cursor var14 = var0.getCursor(); + var0.layout(); + SpaceWar.SpacePanel var16 = new SpaceWar.SpacePanel(); + float var17 = var16.getAlignmentX(); + var16.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var22 = var16.getMouseListeners(); + var16.firePropertyChange("", 0.5f, 100.0f); + var16.enable(false); + int var29 = var16.getDebugGraphicsOptions(); + java.awt.ComponentOrientation var30 = var16.getComponentOrientation(); + var0.applyComponentOrientation(var30); + java.awt.event.MouseWheelListener[] var32 = var0.getMouseWheelListeners(); + java.awt.Component[] var33 = var0.getComponents(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var29 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var30); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var32); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var33); + + } + + public void test214() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test214"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + float var7 = var6.getAlignmentX(); + var6.setVisible(false); + java.awt.Dimension var10 = var6.getPreferredSize(); + var0.setMaximumSize(var10); + boolean var12 = var0.getVerifyInputWhenFocusTarget(); + java.awt.Toolkit var13 = var0.getToolkit(); + java.awt.Dimension var14 = var0.minimumSize(); + var0.reshape(2, 2, 500, 10); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + } + + public void test215() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test215"); + + + SpaceWar.Enemy var2 = new SpaceWar.Enemy(0, 100); + var2.explode(); + boolean var4 = var2.isDead(); + double var5 = var2.getX(); + boolean var6 = var2.isDead(); + double var7 = var2.getY(); + var2.explode(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == 458.28613931962985d); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.0d); + + } + + public void test216() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test216"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + var0.setRequestFocusEnabled(false); + var0.setIgnoreRepaint(false); + java.lang.String var7 = var0.toString(); + boolean var9 = var0.requestFocus(false); + boolean var10 = var0.isVisible(); + java.awt.Dimension var11 = var0.getMaximumSize(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var7 + "' != '" + "SpaceWar.SpacePanel[,0,0,0var7,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"+ "'", var7.equals("SpaceWar.SpacePanel[,0,0,0var7,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]")); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + } + + public void test217() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test217"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var6 = var0.getUI(); + var0.transferFocusUpCycle(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + } + + public void test218() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test218"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.setInheritsPopupMenu(false); + var0.setFocusTraversalPolicyProvider(true); + boolean var10 = var0.inside(25, 3); + SpaceWar.SpacePanel var11 = new SpaceWar.SpacePanel(); + float var12 = var11.getAlignmentX(); + var11.setVisible(false); + boolean var15 = var11.isDoubleBuffered(); + java.awt.dnd.DropTarget var16 = var11.getDropTarget(); + var11.show(false); + boolean var19 = var11.isPaintingForPrint(); + SpaceWar.SpacePanel var20 = new SpaceWar.SpacePanel(); + float var21 = var20.getAlignmentX(); + SpaceWar.SpacePanel var22 = new SpaceWar.SpacePanel(); + float var23 = var22.getAlignmentX(); + var22.setVisible(false); + java.awt.Dimension var26 = var22.getPreferredSize(); + boolean var27 = var22.getVerifyInputWhenFocusTarget(); + java.awt.Component var30 = var22.findComponentAt(10, 1); + var20.addKeyListener((java.awt.event.KeyListener)var22); + java.awt.Dimension var32 = var22.getMinimumSize(); + var11.setMinimumSize(var32); + var0.setPreferredSize(var32); + java.awt.Insets var35 = var0.insets(); + java.awt.Color var36 = var0.getBackground(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var30); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var32); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var35); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var36); + + } + + public void test219() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test219"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + SpaceWar.SpacePanel var4 = new SpaceWar.SpacePanel(); + java.awt.Color var5 = var4.getBackground(); + var0.setForeground(var5); + java.awt.event.HierarchyBoundsListener[] var7 = var0.getHierarchyBoundsListeners(); + java.awt.Component var10 = var0.locate(499, 100); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertNull(var10); + + } + + public void test220() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test220"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + java.awt.Point var6 = var0.getMousePosition(); + var0.updateUI(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + var8.nextFocus(); + var8.updateUI(); + var8.enableInputMethods(true); + SpaceWar.SpacePanel var16 = new SpaceWar.SpacePanel(); + float var17 = var16.getAlignmentX(); + boolean var18 = var16.hasFocus(); + java.awt.Insets var19 = var16.getInsets(); + java.awt.Insets var20 = var8.getInsets(var19); + java.awt.Insets var21 = var0.getInsets(var19); + var0.setIgnoreRepaint(false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var21); + + } + + public void test221() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test221"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + javax.swing.TransferHandler var1 = var0.getTransferHandler(); + boolean var2 = var0.isMaximumSizeSet(); + java.awt.event.HierarchyBoundsListener[] var3 = var0.getHierarchyBoundsListeners(); + + // Regression assertion (captures the current behavior of the code) + assertNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var2 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var3); + + } + + public void test222() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test222"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.setInheritsPopupMenu(false); + var0.setFocusTraversalPolicyProvider(true); + boolean var10 = var0.inside(25, 3); + SpaceWar.SpacePanel var11 = new SpaceWar.SpacePanel(); + float var12 = var11.getAlignmentX(); + var11.setVisible(false); + boolean var15 = var11.isDoubleBuffered(); + java.awt.dnd.DropTarget var16 = var11.getDropTarget(); + var11.show(false); + boolean var19 = var11.isPaintingForPrint(); + SpaceWar.SpacePanel var20 = new SpaceWar.SpacePanel(); + float var21 = var20.getAlignmentX(); + SpaceWar.SpacePanel var22 = new SpaceWar.SpacePanel(); + float var23 = var22.getAlignmentX(); + var22.setVisible(false); + java.awt.Dimension var26 = var22.getPreferredSize(); + boolean var27 = var22.getVerifyInputWhenFocusTarget(); + java.awt.Component var30 = var22.findComponentAt(10, 1); + var20.addKeyListener((java.awt.event.KeyListener)var22); + java.awt.Dimension var32 = var22.getMinimumSize(); + var11.setMinimumSize(var32); + var0.setPreferredSize(var32); + boolean var36 = var0.requestFocus(true); + var0.reshape((-1), 10, 24, 0); + boolean var42 = var0.isPaintingTile(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var30); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var32); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var36 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var42 == false); + + } + + public void test223() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test223"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var6 = var0.getUI(); + java.awt.im.InputMethodRequests var7 = var0.getInputMethodRequests(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + var8.nextFocus(); + var8.updateUI(); + var8.enableInputMethods(true); + var8.setSize((-1), 1); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + var19.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var0.add((java.awt.Component)var8, (java.lang.Object)"SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + SpaceWar.SpacePanel var25 = new SpaceWar.SpacePanel(); + float var26 = var25.getAlignmentX(); + var25.setVisible(false); + java.awt.Dimension var29 = var25.getPreferredSize(); + java.awt.Toolkit var30 = var25.getToolkit(); + java.awt.Toolkit var31 = var25.getToolkit(); + java.awt.Component var32 = var8.add((java.awt.Component)var25); + int var33 = var8.getY(); + int var36 = var8.getBaseline(25, 10); + java.awt.im.InputMethodRequests var37 = var8.getInputMethodRequests(); + java.awt.Point var39 = var8.getMousePosition(true); + java.awt.Rectangle var40 = var8.getVisibleRect(); + java.awt.event.MouseMotionListener[] var41 = var8.getMouseMotionListeners(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var29); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var30); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var31); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var32); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var33 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var36 == (-1)); + + // Regression assertion (captures the current behavior of the code) + assertNull(var37); + + // Regression assertion (captures the current behavior of the code) + assertNull(var39); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var40); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var41); + + } + + public void test224() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test224"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + SpaceWar.SpacePanel var2 = new SpaceWar.SpacePanel(); + float var3 = var2.getAlignmentX(); + var2.setVisible(false); + java.awt.Dimension var6 = var2.getPreferredSize(); + boolean var7 = var2.getVerifyInputWhenFocusTarget(); + java.awt.Component var10 = var2.findComponentAt(10, 1); + var0.addKeyListener((java.awt.event.KeyListener)var2); + var2.repaint(100, (-1), (-1), 1); + java.awt.image.ColorModel var17 = var2.getColorModel(); + boolean var18 = var2.isFocusTraversalPolicyProvider(); + var2.setVerifyInputWhenFocusTarget(true); + java.awt.Dimension var21 = var2.getSize(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var21); + + } + + public void test225() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test225"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var6 = var0.getUI(); + java.awt.im.InputMethodRequests var7 = var0.getInputMethodRequests(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + var8.nextFocus(); + var8.updateUI(); + var8.enableInputMethods(true); + var8.setSize((-1), 1); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + var19.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var0.add((java.awt.Component)var8, (java.lang.Object)"SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + java.awt.event.KeyListener[] var25 = var0.getKeyListeners(); + var0.repaint(3, 1, 25, 0); + boolean var31 = var0.getIgnoreRepaint(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var25); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var31 == false); + + } + + public void test226() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test226"); + + + SpaceWar.Player var0 = new SpaceWar.Player(); + boolean var1 = var0.isRecovering(); + var0.setRigth(false); + int var4 = var0.getPower(); + boolean var5 = var0.isDead(); + var0.setLife(400); + int var8 = var0.getY(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 500); + + } + + public void test227() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test227"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + var0.list(); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + float var7 = var6.getAlignmentX(); + var6.setVisible(false); + boolean var10 = var6.isDoubleBuffered(); + java.awt.dnd.DropTarget var11 = var6.getDropTarget(); + var6.show(false); + java.awt.Rectangle var14 = var6.getVisibleRect(); + java.awt.Rectangle var15 = var0.getBounds(var14); + javax.swing.JToolTip var16 = var0.createToolTip(); + var0.firePropertyChange("", false, false); + var0.revalidate(); + int var22 = var0.getComponentCount(); + var0.transferFocusDownCycle(); + int var24 = var0.getY(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var22 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var24 == 0); + + } + + public void test228() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test228"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.updateUI(); + var0.enableInputMethods(true); + java.lang.String var8 = var0.toString(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.setVisible(false); + boolean var13 = var9.isDoubleBuffered(); + java.awt.dnd.DropTarget var14 = var9.getDropTarget(); + var9.show(false); + java.awt.Rectangle var17 = var9.getVisibleRect(); + java.awt.image.BufferedImage var19 = var9.loadImg("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + java.awt.ComponentOrientation var20 = var9.getComponentOrientation(); + boolean var21 = var9.isPaintingTile(); + boolean var22 = var9.isOptimizedDrawingEnabled(); + int var23 = var0.getComponentZOrder((java.awt.Component)var9); + javax.swing.JRootPane var24 = var0.getRootPane(); + boolean var25 = var0.isMaximumSizeSet(); + boolean var26 = var0.isVisible(); + java.awt.event.ContainerListener[] var27 = var0.getContainerListeners(); + boolean var28 = var0.isFocusTraversable(); + int var31 = var0.getBaseline(1, 24); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var8 + "' != '" + "SpaceWar.SpacePanel[,0,0,0var8,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"+ "'", var8.equals("SpaceWar.SpacePanel[,0,0,0var8,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]")); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var22 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == (-1)); + + // Regression assertion (captures the current behavior of the code) + assertNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var27); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var28 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var31 == (-1)); + + } + + public void test229() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test229"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + var0.show(false); + boolean var8 = var0.isPaintingForPrint(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var15 = var9.getMouseListeners(); + int var16 = var9.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var17 = var9.getInputMethodRequests(); + var0.addKeyListener((java.awt.event.KeyListener)var9); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + float var20 = var19.getAlignmentX(); + var19.setVisible(false); + boolean var23 = var19.isDoubleBuffered(); + var19.list(); + float var25 = var19.getAlignmentY(); + boolean var26 = var9.isFocusCycleRoot((java.awt.Container)var19); + javax.swing.JPopupMenu var27 = var19.getComponentPopupMenu(); + var19.move((-1), 100); + var19.validate(); + java.awt.Toolkit var32 = var19.getToolkit(); + SpaceWar.SpacePanel var33 = new SpaceWar.SpacePanel(); + float var34 = var33.getAlignmentX(); + var33.setVisible(false); + boolean var37 = var33.isDoubleBuffered(); + SpaceWar.SpacePanel var38 = new SpaceWar.SpacePanel(); + java.awt.Color var39 = var38.getBackground(); + var38.repaint(); + java.lang.Object var41 = var33.getClientProperty((java.lang.Object)var38); + var38.repaint(10, 1, 25, 0); + var19.removeKeyListener((java.awt.event.KeyListener)var38); + var38.grabFocus(); + var38.setDoubleBuffered(true); + boolean var51 = var38.isFocusCycleRoot(); + var38.move(2, 10); + java.lang.String var55 = var38.getToolTipText(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var27); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var32); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var34 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var39); + + // Regression assertion (captures the current behavior of the code) + assertNull(var41); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var51 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var55); + + } + + public void test230() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test230"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + boolean var4 = var0.inside(0, (-1)); + SpaceWar.SpacePanel var5 = new SpaceWar.SpacePanel(); + float var6 = var5.getAlignmentX(); + var5.setVisible(false); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + java.awt.Color var10 = var9.getBackground(); + var5.setForeground(var10); + var0.setForeground(var10); + java.awt.image.VolatileImage var15 = var0.createVolatileImage(400, (-1)); + var0.enableInputMethods(false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertNull(var15); + + } + + public void test231() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test231"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.updateUI(); + var0.enableInputMethods(true); + java.awt.Point var9 = var0.getMousePosition(false); + java.awt.Point var10 = var0.getMousePosition(); + SpaceWar.SpacePanel var11 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var12 = new SpaceWar.SpacePanel(); + java.awt.Color var13 = var12.getBackground(); + SpaceWar.SpacePanel var14 = new SpaceWar.SpacePanel(); + float var15 = var14.getAlignmentX(); + var14.setVisible(false); + var14.nextFocus(); + var14.updateUI(); + var14.enableInputMethods(true); + var11.add((java.awt.Component)var12, (java.lang.Object)true); + boolean var23 = var11.isMinimumSizeSet(); + java.awt.event.HierarchyListener[] var24 = var11.getHierarchyListeners(); + SpaceWar.SpacePanel var25 = new SpaceWar.SpacePanel(); + float var26 = var25.getAlignmentX(); + var25.setVisible(false); + SpaceWar.SpacePanel var29 = new SpaceWar.SpacePanel(); + java.awt.Color var30 = var29.getBackground(); + var25.setForeground(var30); + SpaceWar.SpacePanel var32 = new SpaceWar.SpacePanel(); + float var33 = var32.getAlignmentX(); + var32.setVisible(false); + boolean var36 = var32.isDoubleBuffered(); + java.awt.dnd.DropTarget var37 = var32.getDropTarget(); + var32.show(false); + java.awt.Rectangle var40 = var32.getVisibleRect(); + var25.repaint(var40); + java.awt.FocusTraversalPolicy var42 = var25.getFocusTraversalPolicy(); + java.awt.im.InputMethodRequests var43 = var25.getInputMethodRequests(); + var25.layout(); + boolean var45 = var25.isFocusTraversalPolicyProvider(); + java.lang.Object var46 = var11.getClientProperty((java.lang.Object)var45); + java.awt.Dimension var47 = var11.getSize(); + var0.resize(var47); + java.awt.event.HierarchyListener[] var49 = var0.getHierarchyListeners(); + boolean var50 = var0.isFocusTraversalPolicySet(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNull(var9); + + // Regression assertion (captures the current behavior of the code) + assertNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var30); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var33 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var36 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var37); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var40); + + // Regression assertion (captures the current behavior of the code) + assertNull(var42); + + // Regression assertion (captures the current behavior of the code) + assertNull(var43); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var45 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var46); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var47); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var49); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var50 == false); + + } + + public void test232() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test232"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + float var6 = var0.getAlignmentY(); + var0.repaint((-1L)); + // The following exception was thrown during execution. + // This behavior will recorded for regression testing. + try { + var0.remove(400); + fail("Expected exception of type java.lang.ArrayIndexOutOfBoundsException"); + } catch (java.lang.ArrayIndexOutOfBoundsException e) { + // Expected exception. + } + + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == 0.5f); + + } + + public void test233() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test233"); + + + SpaceWar.Player var0 = new SpaceWar.Player(); + int var1 = var0.getPower(); + var0.setLeft(true); + boolean var4 = var0.isRecovering(); + var0.setLife(499); + int var7 = var0.getPower(); + int var8 = var0.getLives(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 499); + + } + + public void test234() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test234"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var1 = new SpaceWar.SpacePanel(); + java.awt.Color var2 = var1.getBackground(); + SpaceWar.SpacePanel var3 = new SpaceWar.SpacePanel(); + float var4 = var3.getAlignmentX(); + var3.setVisible(false); + var3.nextFocus(); + var3.updateUI(); + var3.enableInputMethods(true); + var0.add((java.awt.Component)var1, (java.lang.Object)true); + boolean var13 = var1.areFocusTraversalKeysSet(0); + boolean var14 = var1.isMinimumSizeSet(); + boolean var15 = var1.isPaintingForPrint(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var2); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == false); + + } + + public void test235() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test235"); + + + SpaceWar.Player var0 = new SpaceWar.Player(); + int var1 = var0.getPower(); + var0.setScore(25); + var0.setUp(true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0); + + } + + public void test236() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test236"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.repaint(1L); + SpaceWar.SpacePanel var7 = new SpaceWar.SpacePanel(); + float var8 = var7.getAlignmentX(); + var7.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var13 = new SpaceWar.SpacePanel(); + float var14 = var13.getAlignmentX(); + var13.setVisible(false); + java.awt.Dimension var17 = var13.getPreferredSize(); + var7.setMaximumSize(var17); + var0.setPreferredSize(var17); + java.awt.Container var20 = var0.getFocusCycleRootAncestor(); + java.awt.image.ColorModel var21 = var0.getColorModel(); + int var22 = var0.getComponentCount(); + SpaceWar.SpacePanel var23 = new SpaceWar.SpacePanel(); + float var24 = var23.getAlignmentX(); + var23.setVisible(false); + boolean var27 = var23.isDoubleBuffered(); + var23.list(); + SpaceWar.SpacePanel var29 = new SpaceWar.SpacePanel(); + float var30 = var29.getAlignmentX(); + var29.setVisible(false); + boolean var33 = var29.isDoubleBuffered(); + java.awt.dnd.DropTarget var34 = var29.getDropTarget(); + var29.show(false); + java.awt.Rectangle var37 = var29.getVisibleRect(); + java.awt.image.BufferedImage var39 = var29.loadImg("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + boolean var40 = var23.isAncestorOf((java.awt.Component)var29); + javax.swing.InputVerifier var41 = var29.getInputVerifier(); + java.awt.ComponentOrientation var42 = var29.getComponentOrientation(); + var29.removeAll(); + boolean var44 = var29.isForegroundSet(); + // The following exception was thrown during execution. + // This behavior will recorded for regression testing. + try { + java.awt.Component var46 = var0.add((java.awt.Component)var29, 24); + fail("Expected exception of type java.lang.IllegalArgumentException"); + } catch (java.lang.IllegalArgumentException e) { + // Expected exception. + } + + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var21); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var22 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var24 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var30 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var33 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var34); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var37); + + // Regression assertion (captures the current behavior of the code) + assertNull(var39); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var40 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var41); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var42); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var44 == true); + + } + + public void test237() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test237"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + boolean var2 = var0.hasFocus(); + java.awt.Insets var3 = var0.getInsets(); + java.awt.Rectangle var4 = var0.bounds(); + java.awt.event.MouseMotionListener[] var5 = var0.getMouseMotionListeners(); + boolean var6 = var0.isMaximumSizeSet(); + java.awt.Container var7 = var0.getTopLevelAncestor(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var2 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var4); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var7); + + } + + public void test238() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test238"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + java.awt.Dimension var4 = var0.getPreferredSize(); + java.awt.Toolkit var5 = var0.getToolkit(); + boolean var6 = var0.isFocusable(); + boolean var7 = var0.isFocusTraversalPolicyProvider(); + float var8 = var0.getAlignmentX(); + java.awt.event.MouseMotionListener[] var9 = var0.getMouseMotionListeners(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var4); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var9); + + } + + public void test239() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test239"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var1 = new SpaceWar.SpacePanel(); + java.awt.Color var2 = var1.getBackground(); + SpaceWar.SpacePanel var3 = new SpaceWar.SpacePanel(); + float var4 = var3.getAlignmentX(); + var3.setVisible(false); + var3.nextFocus(); + var3.updateUI(); + var3.enableInputMethods(true); + var0.add((java.awt.Component)var1, (java.lang.Object)true); + java.awt.Image var14 = var1.createImage(1, (-1)); + SpaceWar.SpacePanel var15 = new SpaceWar.SpacePanel(); + float var16 = var15.getAlignmentX(); + var15.setVisible(false); + var15.nextFocus(); + var15.updateUI(); + var15.enableInputMethods(true); + SpaceWar.SpacePanel var23 = new SpaceWar.SpacePanel(); + float var24 = var23.getAlignmentX(); + boolean var25 = var23.hasFocus(); + java.awt.Insets var26 = var23.getInsets(); + java.awt.Insets var27 = var15.getInsets(var26); + java.awt.Insets var28 = var1.getInsets(var26); + boolean var29 = var1.isMaximumSizeSet(); + var1.enable(false); + java.awt.Container var32 = var1.getTopLevelAncestor(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var2); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var24 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var27); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var28); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var29 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var32); + + } + + public void test240() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test240"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + SpaceWar.SpacePanel var5 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + java.awt.Color var7 = var6.getBackground(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + var8.nextFocus(); + var8.updateUI(); + var8.enableInputMethods(true); + var5.add((java.awt.Component)var6, (java.lang.Object)true); + java.awt.Dimension var17 = var6.getPreferredSize(); + var0.setMaximumSize(var17); + java.awt.Dimension var19 = var0.preferredSize(); + boolean var20 = var0.getVerifyInputWhenFocusTarget(); + java.awt.Component var23 = var0.getComponentAt(24, 0); + boolean var24 = var0.isMaximumSizeSet(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var23); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var24 == true); + + } + + public void test241() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test241"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + var0.setRequestFocusEnabled(false); + var0.reshape(100, 0, 100, 0); + var0.requestFocus(); + var0.firePropertyChange("hi!", '4', ' '); + SpaceWar.Enemy var17 = new SpaceWar.Enemy(0, 100); + int var18 = var17.getR(); + var17.explode(); + var0.putClientProperty((java.lang.Object)var17, (java.lang.Object)(short)10); + boolean var23 = var0.requestFocus(false); + var0.list(); + var0.setFocusCycleRoot(false); + java.awt.event.MouseMotionListener[] var27 = var0.getMouseMotionListeners(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var27); + + } + + public void test242() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test242"); + + + SpaceWar.Enemy var2 = new SpaceWar.Enemy(0, 100); + int var3 = var2.getR(); + var2.explode(); + var2.update(); + var2.explode(); + boolean var7 = var2.isDead(); + double var8 = var2.getX(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 218.4131012750485d); + + } + + public void test243() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test243"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + boolean var6 = var0.isFocusOwner(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + java.awt.Dimension var12 = var8.getPreferredSize(); + java.awt.Toolkit var13 = var8.getToolkit(); + SpaceWar.SpacePanel var14 = new SpaceWar.SpacePanel(); + var14.setName(""); + int var17 = var14.getX(); + SpaceWar.SpacePanel var18 = new SpaceWar.SpacePanel(); + float var19 = var18.getAlignmentX(); + var18.setVisible(false); + var18.nextFocus(); + SpaceWar.SpacePanel var23 = new SpaceWar.SpacePanel(); + float var24 = var23.getAlignmentX(); + var23.setVisible(false); + SpaceWar.SpacePanel var27 = new SpaceWar.SpacePanel(); + java.awt.Color var28 = var27.getBackground(); + var23.setForeground(var28); + var18.setBackground(var28); + var14.setBackground(var28); + var8.setForeground(var28); + var0.putClientProperty((java.lang.Object)(byte)100, (java.lang.Object)var28); + SpaceWar.SpacePanel var34 = new SpaceWar.SpacePanel(); + var34.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + javax.swing.plaf.PanelUI var39 = var34.getUI(); + var0.setUI(var39); + java.awt.im.InputContext var41 = var0.getInputContext(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var24 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var28); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var39); + + // Regression assertion (captures the current behavior of the code) + assertNull(var41); + + } + + public void test244() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test244"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + java.awt.im.InputMethodRequests var3 = var0.getInputMethodRequests(); + var0.setDoubleBuffered(true); + var0.setInheritsPopupMenu(false); + var0.invalidate(); + var0.setRequestFocusEnabled(true); + SpaceWar.SpacePanel var11 = new SpaceWar.SpacePanel(); + float var12 = var11.getAlignmentX(); + var11.setVisible(false); + SpaceWar.SpacePanel var15 = new SpaceWar.SpacePanel(); + java.awt.Color var16 = var15.getBackground(); + var11.setForeground(var16); + SpaceWar.SpacePanel var18 = new SpaceWar.SpacePanel(); + float var19 = var18.getAlignmentX(); + var18.setVisible(false); + boolean var22 = var18.isDoubleBuffered(); + java.awt.dnd.DropTarget var23 = var18.getDropTarget(); + var18.show(false); + java.awt.Rectangle var26 = var18.getVisibleRect(); + var11.repaint(var26); + java.awt.FocusTraversalPolicy var28 = var11.getFocusTraversalPolicy(); + java.awt.im.InputMethodRequests var29 = var11.getInputMethodRequests(); + var11.layout(); + SpaceWar.SpacePanel var31 = new SpaceWar.SpacePanel(); + float var32 = var31.getAlignmentX(); + var31.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var37 = new SpaceWar.SpacePanel(); + float var38 = var37.getAlignmentX(); + var37.setVisible(false); + SpaceWar.SpacePanel var41 = new SpaceWar.SpacePanel(); + java.awt.Color var42 = var41.getBackground(); + var37.setForeground(var42); + var31.setBackground(var42); + var11.setForeground(var42); + int var46 = var11.getWidth(); + int var47 = var0.getComponentZOrder((java.awt.Component)var11); + int var48 = var0.getX(); + SpaceWar.SpacePanel var49 = new SpaceWar.SpacePanel(); + float var50 = var49.getAlignmentX(); + var49.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var55 = var49.getUI(); + java.awt.im.InputMethodRequests var56 = var49.getInputMethodRequests(); + SpaceWar.SpacePanel var57 = new SpaceWar.SpacePanel(); + float var58 = var57.getAlignmentX(); + var57.setVisible(false); + var57.nextFocus(); + var57.updateUI(); + var57.enableInputMethods(true); + var57.setSize((-1), 1); + SpaceWar.SpacePanel var68 = new SpaceWar.SpacePanel(); + var68.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var49.add((java.awt.Component)var57, (java.lang.Object)"SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + SpaceWar.SpacePanel var74 = new SpaceWar.SpacePanel(); + float var75 = var74.getAlignmentX(); + var74.setVisible(false); + java.awt.Dimension var78 = var74.getPreferredSize(); + java.awt.Toolkit var79 = var74.getToolkit(); + java.awt.Toolkit var80 = var74.getToolkit(); + java.awt.Component var81 = var57.add((java.awt.Component)var74); + var57.setDebugGraphicsOptions(0); + var57.setVerifyInputWhenFocusTarget(false); + var57.nextFocus(); + var57.repaint(100, 0, 10, 3); + java.awt.ComponentOrientation var92 = var57.getComponentOrientation(); + var0.setComponentOrientation(var92); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var22 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var23); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertNull(var28); + + // Regression assertion (captures the current behavior of the code) + assertNull(var29); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var32 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var38 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var42); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var46 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var47 == (-1)); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var48 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var50 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var55); + + // Regression assertion (captures the current behavior of the code) + assertNull(var56); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var58 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var75 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var78); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var79); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var80); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var81); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var92); + + } + + public void test245() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test245"); + + + SpaceWar.Player var0 = new SpaceWar.Player(); + var0.increasePower(25); + int var3 = var0.getScore(); + int var4 = var0.getX(); + var0.setLife(100); + var0.setLeft(true); + int var9 = var0.getPowerLevel(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 400); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 1); + + } + + public void test246() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test246"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.updateUI(); + var0.enableInputMethods(true); + java.lang.String var8 = var0.toString(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.setVisible(false); + boolean var13 = var9.isDoubleBuffered(); + java.awt.dnd.DropTarget var14 = var9.getDropTarget(); + var9.show(false); + java.awt.Rectangle var17 = var9.getVisibleRect(); + java.awt.image.BufferedImage var19 = var9.loadImg("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + java.awt.ComponentOrientation var20 = var9.getComponentOrientation(); + boolean var21 = var9.isPaintingTile(); + boolean var22 = var9.isOptimizedDrawingEnabled(); + int var23 = var0.getComponentZOrder((java.awt.Component)var9); + boolean var24 = var0.isFocusable(); + SpaceWar.SpacePanel var26 = new SpaceWar.SpacePanel(); + float var27 = var26.getAlignmentX(); + var26.setVisible(false); + SpaceWar.SpacePanel var30 = new SpaceWar.SpacePanel(); + java.awt.Color var31 = var30.getBackground(); + var26.setForeground(var31); + SpaceWar.SpacePanel var33 = new SpaceWar.SpacePanel(); + float var34 = var33.getAlignmentX(); + var33.setVisible(false); + boolean var37 = var33.isDoubleBuffered(); + java.awt.dnd.DropTarget var38 = var33.getDropTarget(); + var33.show(false); + java.awt.Rectangle var41 = var33.getVisibleRect(); + var26.repaint(var41); + java.awt.FocusTraversalPolicy var43 = var26.getFocusTraversalPolicy(); + java.awt.im.InputMethodRequests var44 = var26.getInputMethodRequests(); + var26.layout(); + boolean var46 = var26.isFocusTraversalPolicyProvider(); + java.awt.Insets var47 = var26.insets(); + java.awt.Dimension var48 = var26.getMinimumSize(); + javax.accessibility.AccessibleContext var49 = var26.getAccessibleContext(); + SpaceWar.SpacePanel var50 = new SpaceWar.SpacePanel(); + float var51 = var50.getAlignmentX(); + var50.setVisible(false); + var50.setInheritsPopupMenu(false); + var50.setFocusTraversalPolicyProvider(true); + SpaceWar.SpacePanel var58 = new SpaceWar.SpacePanel(); + float var59 = var58.getAlignmentX(); + var58.setVisible(false); + boolean var62 = var58.isDoubleBuffered(); + var58.list(); + SpaceWar.SpacePanel var64 = new SpaceWar.SpacePanel(); + float var65 = var64.getAlignmentX(); + var64.setVisible(false); + boolean var68 = var64.isDoubleBuffered(); + java.awt.dnd.DropTarget var69 = var64.getDropTarget(); + var64.show(false); + java.awt.Rectangle var72 = var64.getVisibleRect(); + java.awt.Rectangle var73 = var58.getBounds(var72); + javax.swing.JToolTip var74 = var58.createToolTip(); + var50.removeKeyListener((java.awt.event.KeyListener)var58); + javax.swing.TransferHandler var76 = var50.getTransferHandler(); + boolean var77 = var50.isPaintingForPrint(); + int var78 = var50.getComponentCount(); + var50.setSize(400, 24); + SpaceWar.SpacePanel var82 = new SpaceWar.SpacePanel(); + float var83 = var82.getAlignmentX(); + var82.setVisible(false); + var82.nextFocus(); + var82.reshape((-1), 1, (-1), 10); + var82.disable(); + java.awt.LayoutManager var93 = var82.getLayout(); + java.lang.Object var94 = var50.getClientProperty((java.lang.Object)var82); + java.awt.Rectangle var95 = var82.getVisibleRect(); + var26.scrollRectToVisible(var95); + java.awt.Component var97 = var0.add("SpaceWar.SpacePanel[,0,0,0x0,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", (java.awt.Component)var26); + var97.repaint(100L); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var8 + "' != '" + "SpaceWar.SpacePanel[,0,0,0var8,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"+ "'", var8.equals("SpaceWar.SpacePanel[,0,0,0var8,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]")); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var22 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == (-1)); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var24 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var31); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var34 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var38); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var41); + + // Regression assertion (captures the current behavior of the code) + assertNull(var43); + + // Regression assertion (captures the current behavior of the code) + assertNull(var44); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var46 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var47); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var48); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var49); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var51 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var59 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var62 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var65 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var68 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var69); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var72); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var73); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var74); + + // Regression assertion (captures the current behavior of the code) + assertNull(var76); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var77 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var78 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var83 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var93); + + // Regression assertion (captures the current behavior of the code) + assertNull(var94); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var95); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var97); + + } + + public void test247() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test247"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + var0.setSize(1, (-1)); + SpaceWar.SpacePanel var4 = new SpaceWar.SpacePanel(); + float var5 = var4.getAlignmentX(); + var4.setVisible(false); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + java.awt.Color var9 = var8.getBackground(); + var4.setForeground(var9); + SpaceWar.SpacePanel var11 = new SpaceWar.SpacePanel(); + float var12 = var11.getAlignmentX(); + var11.setVisible(false); + boolean var15 = var11.isDoubleBuffered(); + java.awt.dnd.DropTarget var16 = var11.getDropTarget(); + var11.show(false); + java.awt.Rectangle var19 = var11.getVisibleRect(); + var4.repaint(var19); + java.awt.FocusTraversalPolicy var21 = var4.getFocusTraversalPolicy(); + SpaceWar.SpacePanel var22 = new SpaceWar.SpacePanel(); + float var23 = var22.getAlignmentX(); + var22.firePropertyChange("", (-1), 1); + boolean var28 = var22.isFocusOwner(); + SpaceWar.SpacePanel var30 = new SpaceWar.SpacePanel(); + float var31 = var30.getAlignmentX(); + var30.setVisible(false); + java.awt.Dimension var34 = var30.getPreferredSize(); + java.awt.Toolkit var35 = var30.getToolkit(); + SpaceWar.SpacePanel var36 = new SpaceWar.SpacePanel(); + var36.setName(""); + int var39 = var36.getX(); + SpaceWar.SpacePanel var40 = new SpaceWar.SpacePanel(); + float var41 = var40.getAlignmentX(); + var40.setVisible(false); + var40.nextFocus(); + SpaceWar.SpacePanel var45 = new SpaceWar.SpacePanel(); + float var46 = var45.getAlignmentX(); + var45.setVisible(false); + SpaceWar.SpacePanel var49 = new SpaceWar.SpacePanel(); + java.awt.Color var50 = var49.getBackground(); + var45.setForeground(var50); + var40.setBackground(var50); + var36.setBackground(var50); + var30.setForeground(var50); + var22.putClientProperty((java.lang.Object)(byte)100, (java.lang.Object)var50); + var4.setBackground(var50); + SpaceWar.SpacePanel var57 = new SpaceWar.SpacePanel(); + float var58 = var57.getAlignmentX(); + var57.setVisible(false); + boolean var61 = var57.isDoubleBuffered(); + java.awt.dnd.DropTarget var62 = var57.getDropTarget(); + var57.show(false); + boolean var65 = var57.isPaintingForPrint(); + SpaceWar.SpacePanel var66 = new SpaceWar.SpacePanel(); + float var67 = var66.getAlignmentX(); + SpaceWar.SpacePanel var68 = new SpaceWar.SpacePanel(); + float var69 = var68.getAlignmentX(); + var68.setVisible(false); + java.awt.Dimension var72 = var68.getPreferredSize(); + boolean var73 = var68.getVerifyInputWhenFocusTarget(); + java.awt.Component var76 = var68.findComponentAt(10, 1); + var66.addKeyListener((java.awt.event.KeyListener)var68); + java.awt.Dimension var78 = var68.getMinimumSize(); + var57.setMinimumSize(var78); + java.awt.Dimension var80 = var4.getSize(var78); + var0.setMaximumSize(var78); + var0.requestFocus(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var9); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertNull(var21); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var28 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var31 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var34); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var35); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var39 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var41 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var46 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var50); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var58 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var61 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var62); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var65 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var67 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var69 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var72); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var73 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var76); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var78); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var80); + + } + + public void test248() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test248"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + float var7 = var6.getAlignmentX(); + var6.setVisible(false); + java.awt.Dimension var10 = var6.getPreferredSize(); + var0.setMaximumSize(var10); + boolean var12 = var0.getVerifyInputWhenFocusTarget(); + int var13 = var0.getX(); + SpaceWar.SpacePanel var14 = new SpaceWar.SpacePanel(); + float var15 = var14.getAlignmentX(); + SpaceWar.SpacePanel var16 = new SpaceWar.SpacePanel(); + float var17 = var16.getAlignmentX(); + var16.setVisible(false); + java.awt.Dimension var20 = var16.getPreferredSize(); + boolean var21 = var16.getVerifyInputWhenFocusTarget(); + java.awt.Component var24 = var16.findComponentAt(10, 1); + var14.addKeyListener((java.awt.event.KeyListener)var16); + var16.repaint(100, (-1), (-1), 1); + SpaceWar.SpacePanel var31 = new SpaceWar.SpacePanel(); + java.awt.Color var32 = var31.getBackground(); + var31.repaint(); + java.awt.im.InputMethodRequests var34 = var31.getInputMethodRequests(); + java.awt.GraphicsConfiguration var35 = var31.getGraphicsConfiguration(); + var16.remove((java.awt.Component)var31); + java.awt.Font var37 = var31.getFont(); + var0.setFont(var37); + SpaceWar.SpacePanel var39 = new SpaceWar.SpacePanel(); + float var40 = var39.getAlignmentX(); + var39.setVisible(false); + var39.nextFocus(); + var39.reshape((-1), 1, (-1), 10); + var39.disable(); + java.awt.LayoutManager var50 = var39.getLayout(); + var0.setLayout(var50); + java.awt.image.ColorModel var52 = var0.getColorModel(); + boolean var53 = var0.isPaintingTile(); + var0.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", '#', '#'); + java.awt.Component[] var58 = var0.getComponents(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var32); + + // Regression assertion (captures the current behavior of the code) + assertNull(var34); + + // Regression assertion (captures the current behavior of the code) + assertNull(var35); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var37); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var40 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var50); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var52); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var53 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var58); + + } + + public void test249() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test249"); + + + SpaceWar.Enemy var2 = new SpaceWar.Enemy(0, 10); + int var3 = var2.getRank(); + var2.update(); + int var5 = var2.getR(); + var2.hit(); + double var7 = var2.getX(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == 10); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 427.7367910938932d); + + } + + public void test250() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test250"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + SpaceWar.SpacePanel var5 = new SpaceWar.SpacePanel(); + float var6 = var5.getAlignmentX(); + var5.setVisible(false); + var5.nextFocus(); + var5.reshape((-1), 1, (-1), 10); + var5.disable(); + boolean var16 = var5.isFocusable(); + int var17 = var5.getHeight(); + var0.setNextFocusableComponent((java.awt.Component)var5); + boolean var20 = var5.requestFocus(false); + int var21 = var5.getComponentCount(); + SpaceWar.SpacePanel var22 = new SpaceWar.SpacePanel(); + float var23 = var22.getAlignmentX(); + var22.setVisible(false); + boolean var26 = var22.isDoubleBuffered(); + var22.list(); + float var28 = var22.getAlignmentY(); + java.awt.Insets var29 = var22.getInsets(); + SpaceWar.SpacePanel var30 = new SpaceWar.SpacePanel(); + float var31 = var30.getAlignmentX(); + var30.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var36 = new SpaceWar.SpacePanel(); + float var37 = var36.getAlignmentX(); + var36.setVisible(false); + java.awt.Dimension var40 = var36.getPreferredSize(); + var30.setMaximumSize(var40); + java.awt.Dimension var42 = var22.getSize(var40); + var22.setFocusTraversalKeysEnabled(false); + SpaceWar.SpacePanel var45 = new SpaceWar.SpacePanel(); + var45.setName(""); + java.awt.Toolkit var48 = var45.getToolkit(); + var45.setEnabled(false); + var45.removeNotify(); + boolean var52 = var45.isDisplayable(); + SpaceWar.SpacePanel var53 = new SpaceWar.SpacePanel(); + java.awt.Color var54 = var53.getBackground(); + var53.repaint(); + var53.setRequestFocusEnabled(false); + var53.reshape(100, 0, 100, 0); + var53.requestFocus(); + java.awt.Rectangle var64 = var53.getVisibleRect(); + java.awt.Rectangle var65 = var53.getBounds(); + java.awt.im.InputMethodRequests var66 = var53.getInputMethodRequests(); + boolean var67 = var53.requestFocusInWindow(); + java.awt.Point var69 = var53.getMousePosition(false); + var53.setDebugGraphicsOptions(1); + java.awt.Graphics var72 = var53.getGraphics(); + var45.paintAll(var72); + var22.printAll(var72); + var5.printComponents(var72); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == 10); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var28 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var29); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var31 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var40); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var42); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var48); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var52 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var54); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var64); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var65); + + // Regression assertion (captures the current behavior of the code) + assertNull(var66); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var67 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var69); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var72); + + } + + public void test251() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test251"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + java.awt.im.InputMethodRequests var3 = var0.getInputMethodRequests(); + int var4 = var0.countComponents(); + java.awt.event.ComponentListener[] var5 = var0.getComponentListeners(); + var0.removeNotify(); + javax.swing.InputMap var7 = var0.getInputMap(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var14 = new SpaceWar.SpacePanel(); + float var15 = var14.getAlignmentX(); + var14.setVisible(false); + SpaceWar.SpacePanel var18 = new SpaceWar.SpacePanel(); + java.awt.Color var19 = var18.getBackground(); + var14.setForeground(var19); + var8.setBackground(var19); + java.awt.Point var22 = var8.location(); + var0.setLocation(var22); + SpaceWar.SpacePanel var24 = new SpaceWar.SpacePanel(); + float var25 = var24.getAlignmentX(); + var24.setVisible(false); + var24.nextFocus(); + var24.reshape((-1), 1, (-1), 10); + SpaceWar.SpacePanel var34 = new SpaceWar.SpacePanel(); + java.awt.Color var35 = var34.getBackground(); + var34.repaint(); + var34.setRequestFocusEnabled(false); + var34.reshape(100, 0, 100, 0); + java.awt.Component var44 = var24.add((java.awt.Component)var34); + var24.enable(); + SpaceWar.SpacePanel var46 = new SpaceWar.SpacePanel(); + float var47 = var46.getAlignmentX(); + boolean var48 = var46.hasFocus(); + boolean var49 = var46.isPreferredSizeSet(); + var0.putClientProperty((java.lang.Object)var24, (java.lang.Object)var46); + SpaceWar.SpacePanel var51 = new SpaceWar.SpacePanel(); + float var52 = var51.getAlignmentX(); + var51.setVisible(false); + var51.nextFocus(); + var51.repaint(1L); + SpaceWar.SpacePanel var58 = new SpaceWar.SpacePanel(); + float var59 = var58.getAlignmentX(); + var58.setVisible(false); + boolean var62 = var58.isDoubleBuffered(); + var58.list(); + SpaceWar.SpacePanel var64 = new SpaceWar.SpacePanel(); + float var65 = var64.getAlignmentX(); + var64.setVisible(false); + boolean var68 = var64.isDoubleBuffered(); + java.awt.dnd.DropTarget var69 = var64.getDropTarget(); + var64.show(false); + java.awt.Rectangle var72 = var64.getVisibleRect(); + java.awt.Rectangle var73 = var58.getBounds(var72); + var51.setBounds(var73); + var46.repaint(var73); + javax.swing.InputMap var76 = var46.getInputMap(); + // The following exception was thrown during execution. + // This behavior will recorded for regression testing. + try { + java.util.Set var78 = var46.getFocusTraversalKeys(25); + fail("Expected exception of type java.lang.IllegalArgumentException"); + } catch (java.lang.IllegalArgumentException e) { + // Expected exception. + } + + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var35); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var44); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var47 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var48 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var49 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var52 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var59 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var62 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var65 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var68 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var69); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var72); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var73); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var76); + + } + + public void test252() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test252"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + java.awt.Dimension var4 = var0.getPreferredSize(); + boolean var5 = var0.getVerifyInputWhenFocusTarget(); + java.awt.Component var8 = var0.findComponentAt(10, 1); + boolean var9 = var0.requestDefaultFocus(); + java.awt.Insets var10 = var0.getInsets(); + var0.setDoubleBuffered(false); + java.awt.Point var14 = var0.getMousePosition(true); + boolean var15 = var0.getFocusTraversalKeysEnabled(); + java.awt.Dimension var16 = var0.getSize(); + var0.repaint((-1L), 3, (-1), 399, 505); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var4); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + } + + public void test253() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test253"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var6 = var0.getUI(); + java.awt.im.InputMethodRequests var7 = var0.getInputMethodRequests(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + var8.nextFocus(); + var8.updateUI(); + var8.enableInputMethods(true); + var8.setSize((-1), 1); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + var19.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var0.add((java.awt.Component)var8, (java.lang.Object)"SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + boolean var25 = var0.isCursorSet(); + javax.swing.KeyStroke[] var26 = var0.getRegisteredKeyStrokes(); + java.beans.VetoableChangeListener[] var27 = var0.getVetoableChangeListeners(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var27); + + } + + public void test254() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test254"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var6 = var0.getUI(); + java.awt.im.InputMethodRequests var7 = var0.getInputMethodRequests(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + var8.nextFocus(); + var8.updateUI(); + var8.enableInputMethods(true); + var8.setSize((-1), 1); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + var19.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var0.add((java.awt.Component)var8, (java.lang.Object)"SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + java.awt.event.KeyListener[] var25 = var0.getKeyListeners(); + var0.reshape(10, 100, 3, 3); + javax.accessibility.AccessibleContext var31 = var0.getAccessibleContext(); + java.awt.Rectangle var32 = var0.getVisibleRect(); + int var33 = var0.getComponentCount(); + boolean var34 = var0.hasFocus(); + boolean var35 = var0.isPreferredSizeSet(); + javax.swing.TransferHandler var36 = var0.getTransferHandler(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var25); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var31); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var32); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var33 == 1); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var34 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var35 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var36); + + } + + public void test255() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test255"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + var0.setRequestFocusEnabled(false); + var0.setIgnoreRepaint(false); + java.lang.String var7 = var0.toString(); + java.awt.Color var8 = var0.getBackground(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.setVisible(false); + java.awt.Dimension var13 = var9.getPreferredSize(); + java.awt.Toolkit var14 = var9.getToolkit(); + java.awt.Toolkit var15 = var9.getToolkit(); + SpaceWar.Player var16 = new SpaceWar.Player(); + var16.increasePower(25); + int var19 = var16.getScore(); + var16.setRigth(true); + var16.loseLife(); + var0.putClientProperty((java.lang.Object)var9, (java.lang.Object)var16); + java.awt.Rectangle var24 = var9.bounds(); + javax.swing.JRootPane var25 = var9.getRootPane(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var7 + "' != '" + "SpaceWar.SpacePanel[,0,0,0var7,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"+ "'", var7.equals("SpaceWar.SpacePanel[,0,0,0var7,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]")); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertNull(var25); + + } + + public void test256() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test256"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + SpaceWar.SpacePanel var4 = new SpaceWar.SpacePanel(); + java.awt.Color var5 = var4.getBackground(); + var0.setForeground(var5); + SpaceWar.SpacePanel var7 = new SpaceWar.SpacePanel(); + float var8 = var7.getAlignmentX(); + var7.setVisible(false); + boolean var11 = var7.isDoubleBuffered(); + java.awt.dnd.DropTarget var12 = var7.getDropTarget(); + var7.show(false); + java.awt.Rectangle var15 = var7.getVisibleRect(); + var0.repaint(var15); + java.awt.FocusTraversalPolicy var17 = var0.getFocusTraversalPolicy(); + java.awt.im.InputMethodRequests var18 = var0.getInputMethodRequests(); + var0.layout(); + boolean var20 = var0.isFocusTraversalPolicyProvider(); + java.awt.Insets var21 = var0.insets(); + java.awt.Dimension var22 = var0.getMinimumSize(); + SpaceWar.SpacePanel var23 = new SpaceWar.SpacePanel(); + float var24 = var23.getAlignmentX(); + var23.setVisible(false); + boolean var27 = var23.isDoubleBuffered(); + java.awt.dnd.DropTarget var28 = var23.getDropTarget(); + var23.show(false); + java.awt.event.MouseWheelListener[] var31 = var23.getMouseWheelListeners(); + SpaceWar.SpacePanel var32 = new SpaceWar.SpacePanel(); + float var33 = var32.getAlignmentX(); + var32.setVisible(false); + SpaceWar.SpacePanel var36 = new SpaceWar.SpacePanel(); + java.awt.Color var37 = var36.getBackground(); + var32.setForeground(var37); + SpaceWar.SpacePanel var39 = new SpaceWar.SpacePanel(); + float var40 = var39.getAlignmentX(); + var39.setVisible(false); + boolean var43 = var39.isDoubleBuffered(); + java.awt.dnd.DropTarget var44 = var39.getDropTarget(); + var39.show(false); + java.awt.Rectangle var47 = var39.getVisibleRect(); + var32.repaint(var47); + SpaceWar.SpacePanel var49 = new SpaceWar.SpacePanel(); + float var50 = var49.getAlignmentX(); + var49.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var55 = var49.getMouseListeners(); + java.awt.Dimension var56 = var49.getPreferredSize(); + java.util.Locale var57 = var49.getLocale(); + var32.setLocale(var57); + java.util.Locale var59 = var32.getLocale(); + var23.setLocale(var59); + var0.setLocale(var59); + boolean var62 = var0.getIgnoreRepaint(); + var0.setVisible(true); + var0.enableInputMethods(false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var21); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var24 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var28); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var31); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var33 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var37); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var40 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var43 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var44); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var47); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var50 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var55); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var56); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var57); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var59); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var62 == false); + + } + + public void test257() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test257"); + + + SpaceWar.Player var0 = new SpaceWar.Player(); + int var1 = var0.getPower(); + var0.setLeft(true); + boolean var4 = var0.isRecovering(); + java.awt.image.BufferedImage var6 = var0.loadImg("SpaceWar.SpacePanel[,-1,1,-1x10,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var6); + + } + + public void test258() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test258"); + + + SpaceWar.Player var0 = new SpaceWar.Player(); + int var1 = var0.getR(); + var0.setRigth(false); + int var4 = var0.getRequiredPower(); + boolean var5 = var0.isRecovering(); + var0.setRigth(true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 25); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 1); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == false); + + } + + public void test259() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test259"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + java.awt.im.InputMethodRequests var3 = var0.getInputMethodRequests(); + var0.setDoubleBuffered(true); + var0.setInheritsPopupMenu(false); + var0.invalidate(); + var0.setRequestFocusEnabled(true); + java.awt.GraphicsConfiguration var11 = var0.getGraphicsConfiguration(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertNull(var11); + + } + + public void test260() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test260"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.setInheritsPopupMenu(false); + var0.setFocusTraversalPolicyProvider(true); + boolean var10 = var0.inside(25, 3); + var0.transferFocusBackward(); + java.awt.Point var13 = var0.getMousePosition(true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var13); + + } + + public void test261() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test261"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.reshape((-1), 1, (-1), 10); + var0.disable(); + java.awt.Component var13 = var0.findComponentAt(0, (-1)); + SpaceWar.SpacePanel var14 = new SpaceWar.SpacePanel(); + var14.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + javax.swing.plaf.PanelUI var19 = var14.getUI(); + SpaceWar.SpacePanel var20 = new SpaceWar.SpacePanel(); + float var21 = var20.getAlignmentX(); + var20.setVisible(false); + var20.nextFocus(); + var20.repaint(1L); + SpaceWar.SpacePanel var27 = new SpaceWar.SpacePanel(); + float var28 = var27.getAlignmentX(); + var27.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var33 = new SpaceWar.SpacePanel(); + float var34 = var33.getAlignmentX(); + var33.setVisible(false); + java.awt.Dimension var37 = var33.getPreferredSize(); + var27.setMaximumSize(var37); + var20.setPreferredSize(var37); + var14.setMaximumSize(var37); + var0.setSize(var37); + java.awt.Container var42 = var0.getParent(); + SpaceWar.SpacePanel var43 = new SpaceWar.SpacePanel(); + float var44 = var43.getAlignmentX(); + var43.setVisible(false); + var43.nextFocus(); + var43.reshape((-1), 1, (-1), 10); + java.util.Set var54 = var43.getFocusTraversalKeys(3); + java.awt.Point var55 = var43.getLocation(); + boolean var56 = var0.contains(var55); + boolean var57 = var0.isForegroundSet(); + java.awt.Dimension var58 = var0.getMinimumSize(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var28 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var34 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var37); + + // Regression assertion (captures the current behavior of the code) + assertNull(var42); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var44 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var54); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var55); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var56 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var57 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var58); + + } + + public void test262() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test262"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var1 = new SpaceWar.SpacePanel(); + java.awt.Color var2 = var1.getBackground(); + SpaceWar.SpacePanel var3 = new SpaceWar.SpacePanel(); + float var4 = var3.getAlignmentX(); + var3.setVisible(false); + var3.nextFocus(); + var3.updateUI(); + var3.enableInputMethods(true); + var0.add((java.awt.Component)var1, (java.lang.Object)true); + boolean var12 = var0.isMinimumSizeSet(); + java.awt.event.HierarchyListener[] var13 = var0.getHierarchyListeners(); + SpaceWar.SpacePanel var14 = new SpaceWar.SpacePanel(); + float var15 = var14.getAlignmentX(); + var14.setVisible(false); + SpaceWar.SpacePanel var18 = new SpaceWar.SpacePanel(); + java.awt.Color var19 = var18.getBackground(); + var14.setForeground(var19); + SpaceWar.SpacePanel var21 = new SpaceWar.SpacePanel(); + float var22 = var21.getAlignmentX(); + var21.setVisible(false); + boolean var25 = var21.isDoubleBuffered(); + java.awt.dnd.DropTarget var26 = var21.getDropTarget(); + var21.show(false); + java.awt.Rectangle var29 = var21.getVisibleRect(); + var14.repaint(var29); + java.awt.FocusTraversalPolicy var31 = var14.getFocusTraversalPolicy(); + java.awt.im.InputMethodRequests var32 = var14.getInputMethodRequests(); + var14.layout(); + boolean var34 = var14.isFocusTraversalPolicyProvider(); + java.lang.Object var35 = var0.getClientProperty((java.lang.Object)var34); + java.awt.Dimension var36 = var0.getSize(); + java.awt.event.HierarchyBoundsListener[] var37 = var0.getHierarchyBoundsListeners(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var2); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var22 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var29); + + // Regression assertion (captures the current behavior of the code) + assertNull(var31); + + // Regression assertion (captures the current behavior of the code) + assertNull(var32); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var34 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var35); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var36); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var37); + + } + + public void test263() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test263"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.reshape((-1), 1, (-1), 10); + SpaceWar.SpacePanel var10 = new SpaceWar.SpacePanel(); + java.awt.Color var11 = var10.getBackground(); + var10.repaint(); + var10.setRequestFocusEnabled(false); + var10.reshape(100, 0, 100, 0); + java.awt.Component var20 = var0.add((java.awt.Component)var10); + var0.enable(); + boolean var22 = var0.isFocusable(); + java.awt.Container var23 = var0.getParent(); + java.awt.Dimension var24 = var0.size(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var22 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var23); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var24); + + } + + public void test264() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test264"); + + + SpaceWar.Enemy var2 = new SpaceWar.Enemy(0, 100); + int var3 = var2.getR(); + int var4 = var2.getR(); + int var5 = var2.getR(); + var2.explode(); + int var7 = var2.getRank(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 100); + + } + + public void test265() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test265"); + + + SpaceWar.Player var0 = new SpaceWar.Player(); + int var1 = var0.getR(); + var0.setRigth(false); + var0.setLife(100); + var0.setDown(false); + var0.loseLife(); + var0.setLeft(true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 25); + + } + + public void test266() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test266"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var1 = new SpaceWar.SpacePanel(); + java.awt.Color var2 = var1.getBackground(); + SpaceWar.SpacePanel var3 = new SpaceWar.SpacePanel(); + float var4 = var3.getAlignmentX(); + var3.setVisible(false); + var3.nextFocus(); + var3.updateUI(); + var3.enableInputMethods(true); + var0.add((java.awt.Component)var1, (java.lang.Object)true); + java.awt.Dimension var12 = var1.getPreferredSize(); + var1.move(100, 10); + boolean var16 = var1.isFocusTraversalPolicyProvider(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var2); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == false); + + } + + public void test267() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test267"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var6 = var0.getMouseListeners(); + var0.firePropertyChange("", 0.5f, 100.0f); + var0.enable(false); + int var13 = var0.getDebugGraphicsOptions(); + SpaceWar.SpacePanel var14 = new SpaceWar.SpacePanel(); + float var15 = var14.getAlignmentX(); + var14.setVisible(false); + var14.nextFocus(); + var14.repaint(1L); + SpaceWar.SpacePanel var21 = new SpaceWar.SpacePanel(); + float var22 = var21.getAlignmentX(); + var21.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var27 = new SpaceWar.SpacePanel(); + float var28 = var27.getAlignmentX(); + var27.setVisible(false); + java.awt.Dimension var31 = var27.getPreferredSize(); + var21.setMaximumSize(var31); + var14.setPreferredSize(var31); + java.awt.Container var34 = var14.getFocusCycleRootAncestor(); + java.awt.image.ColorModel var35 = var14.getColorModel(); + int var36 = var14.getComponentCount(); + java.awt.Component var37 = var0.add((java.awt.Component)var14); + var14.setBounds((-1), 25, 10, (-1)); + java.awt.event.HierarchyBoundsListener[] var43 = var14.getHierarchyBoundsListeners(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var22 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var28 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var31); + + // Regression assertion (captures the current behavior of the code) + assertNull(var34); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var35); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var36 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var37); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var43); + + } + + public void test268() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test268"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + SpaceWar.SpacePanel var4 = new SpaceWar.SpacePanel(); + java.awt.Color var5 = var4.getBackground(); + var0.setForeground(var5); + SpaceWar.SpacePanel var7 = new SpaceWar.SpacePanel(); + float var8 = var7.getAlignmentX(); + var7.setVisible(false); + boolean var11 = var7.isDoubleBuffered(); + java.awt.dnd.DropTarget var12 = var7.getDropTarget(); + var7.show(false); + java.awt.Rectangle var15 = var7.getVisibleRect(); + var0.repaint(var15); + java.awt.FocusTraversalPolicy var17 = var0.getFocusTraversalPolicy(); + javax.swing.TransferHandler var18 = var0.getTransferHandler(); + java.awt.Point var19 = var0.getLocation(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var19); + + } + + public void test269() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test269"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + var0.show(false); + boolean var8 = var0.isPaintingForPrint(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var15 = var9.getMouseListeners(); + int var16 = var9.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var17 = var9.getInputMethodRequests(); + var0.addKeyListener((java.awt.event.KeyListener)var9); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + float var20 = var19.getAlignmentX(); + var19.setVisible(false); + boolean var23 = var19.isDoubleBuffered(); + var19.list(); + float var25 = var19.getAlignmentY(); + boolean var26 = var9.isFocusCycleRoot((java.awt.Container)var19); + java.awt.Component[] var27 = var9.getComponents(); + boolean var28 = var9.isFocusCycleRoot(); + var9.show(true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var27); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var28 == false); + + } + + public void test270() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test270"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.setInheritsPopupMenu(false); + var0.setFocusTraversalPolicyProvider(true); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + boolean var12 = var8.isDoubleBuffered(); + var8.list(); + SpaceWar.SpacePanel var14 = new SpaceWar.SpacePanel(); + float var15 = var14.getAlignmentX(); + var14.setVisible(false); + boolean var18 = var14.isDoubleBuffered(); + java.awt.dnd.DropTarget var19 = var14.getDropTarget(); + var14.show(false); + java.awt.Rectangle var22 = var14.getVisibleRect(); + java.awt.Rectangle var23 = var8.getBounds(var22); + javax.swing.JToolTip var24 = var8.createToolTip(); + var0.removeKeyListener((java.awt.event.KeyListener)var8); + java.awt.Cursor var26 = var8.getCursor(); + javax.accessibility.AccessibleContext var27 = var8.getAccessibleContext(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var23); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var27); + + } + + public void test271() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test271"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + SpaceWar.SpacePanel var2 = new SpaceWar.SpacePanel(); + float var3 = var2.getAlignmentX(); + var2.setVisible(false); + java.awt.Dimension var6 = var2.getPreferredSize(); + boolean var7 = var2.getVerifyInputWhenFocusTarget(); + java.awt.Component var10 = var2.findComponentAt(10, 1); + var0.addKeyListener((java.awt.event.KeyListener)var2); + SpaceWar.SpacePanel var12 = new SpaceWar.SpacePanel(); + float var13 = var12.getAlignmentX(); + SpaceWar.SpacePanel var14 = new SpaceWar.SpacePanel(); + float var15 = var14.getAlignmentX(); + var14.setVisible(false); + java.awt.Dimension var18 = var14.getPreferredSize(); + boolean var19 = var14.getVerifyInputWhenFocusTarget(); + java.awt.Component var22 = var14.findComponentAt(10, 1); + var12.addKeyListener((java.awt.event.KeyListener)var14); + var14.repaint(100, (-1), (-1), 1); + java.awt.image.ColorModel var29 = var14.getColorModel(); + SpaceWar.SpacePanel var30 = new SpaceWar.SpacePanel(); + float var31 = var30.getAlignmentX(); + var30.setVisible(false); + boolean var34 = var30.isDoubleBuffered(); + var30.list(); + SpaceWar.SpacePanel var36 = new SpaceWar.SpacePanel(); + float var37 = var36.getAlignmentX(); + var36.setVisible(false); + boolean var40 = var36.isDoubleBuffered(); + java.awt.dnd.DropTarget var41 = var36.getDropTarget(); + var36.show(false); + java.awt.Rectangle var44 = var36.getVisibleRect(); + java.awt.image.BufferedImage var46 = var36.loadImg("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + boolean var47 = var30.isAncestorOf((java.awt.Component)var36); + javax.swing.InputVerifier var48 = var36.getInputVerifier(); + var2.putClientProperty((java.lang.Object)var14, (java.lang.Object)var36); + java.lang.String var50 = var2.getUIClassID(); + SpaceWar.SpacePanel var51 = new SpaceWar.SpacePanel(); + float var52 = var51.getAlignmentX(); + var51.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var57 = var51.getMouseListeners(); + int var58 = var51.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var59 = var51.getInputMethodRequests(); + var51.removeNotify(); + var51.enable(); + SpaceWar.SpacePanel var62 = new SpaceWar.SpacePanel(); + java.awt.Color var63 = var62.getBackground(); + boolean var66 = var62.inside(0, (-1)); + var62.transferFocusUpCycle(); + java.lang.String var68 = var62.getName(); + boolean var69 = var51.isFocusCycleRoot((java.awt.Container)var62); + java.awt.Dimension var70 = var51.getMinimumSize(); + boolean var73 = var51.inside(500, 3); + boolean var74 = var2.isFocusCycleRoot((java.awt.Container)var51); + java.awt.event.ComponentListener[] var75 = var51.getComponentListeners(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var29); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var31 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var34 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var40 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var41); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var44); + + // Regression assertion (captures the current behavior of the code) + assertNull(var46); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var47 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var48); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var50 + "' != '" + "PanelUI"+ "'", var50.equals("PanelUI")); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var52 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var57); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var58 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var59); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var63); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var66 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var68); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var69 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var70); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var73 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var74 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var75); + + } + + public void test272() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test272"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.reshape((-1), 1, (-1), 10); + var0.disable(); + java.awt.LayoutManager var11 = var0.getLayout(); + java.awt.Container var12 = var0.getParent(); + java.lang.String var13 = var0.getUIClassID(); + var0.setVerifyInputWhenFocusTarget(true); + boolean var16 = var0.isRequestFocusEnabled(); + var0.setVerifyInputWhenFocusTarget(false); + var0.layout(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var13 + "' != '" + "PanelUI"+ "'", var13.equals("PanelUI")); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == true); + + } + + public void test273() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test273"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + java.awt.im.InputMethodRequests var3 = var0.getInputMethodRequests(); + var0.setDoubleBuffered(true); + var0.setInheritsPopupMenu(false); + javax.swing.plaf.PanelUI var8 = var0.getUI(); + boolean var9 = var0.isCursorSet(); + var0.repaint(10L); + var0.setName("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=8,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == false); + + } + + public void test274() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test274"); + + + SpaceWar.Bullet var3 = new SpaceWar.Bullet(100.0d, 99, 2); + + } + + public void test275() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test275"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + boolean var2 = var0.hasFocus(); + boolean var3 = var0.isPreferredSizeSet(); + var0.firePropertyChange("", (short)1, (short)0); + boolean var8 = var0.isMaximumSizeSet(); + java.awt.image.ColorModel var9 = var0.getColorModel(); + var0.enableInputMethods(true); + var0.reshape(400, 3, 10, 2); + var0.transferFocus(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var2 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var9); + + } + + public void test276() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test276"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + var0.setRequestFocusEnabled(false); + var0.removeAll(); + var0.paintImmediately(500, 500, 100, 2); + boolean var11 = var0.isMaximumSizeSet(); + java.awt.Dimension var12 = var0.preferredSize(); + var0.revalidate(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var12); + + } + + public void test277() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test277"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + SpaceWar.SpacePanel var2 = new SpaceWar.SpacePanel(); + float var3 = var2.getAlignmentX(); + var2.setVisible(false); + java.awt.Dimension var6 = var2.getPreferredSize(); + boolean var7 = var2.getVerifyInputWhenFocusTarget(); + java.awt.Component var10 = var2.findComponentAt(10, 1); + var0.addKeyListener((java.awt.event.KeyListener)var2); + java.awt.Dimension var12 = var2.getMinimumSize(); + java.lang.String var13 = var2.getToolTipText(); + java.awt.Cursor var14 = var2.getCursor(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + } + + public void test278() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test278"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + var0.list(); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + float var7 = var6.getAlignmentX(); + var6.setVisible(false); + boolean var10 = var6.isDoubleBuffered(); + java.awt.dnd.DropTarget var11 = var6.getDropTarget(); + var6.show(false); + java.awt.Rectangle var14 = var6.getVisibleRect(); + java.awt.image.BufferedImage var16 = var6.loadImg("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + boolean var17 = var0.isAncestorOf((java.awt.Component)var6); + float var18 = var0.getAlignmentX(); + java.awt.image.VolatileImage var21 = var0.createVolatileImage(25, 1); + java.beans.PropertyChangeListener[] var23 = var0.getPropertyChangeListeners("PanelUI"); + boolean var24 = var0.isPaintingForPrint(); + SpaceWar.SpacePanel var25 = new SpaceWar.SpacePanel(); + float var26 = var25.getAlignmentX(); + boolean var27 = var25.hasFocus(); + java.awt.Insets var28 = var25.getInsets(); + boolean var29 = var25.isFocusTraversalPolicyProvider(); + var25.firePropertyChange("", (byte)10, (byte)1); + SpaceWar.SpacePanel var34 = new SpaceWar.SpacePanel(); + float var35 = var34.getAlignmentX(); + SpaceWar.SpacePanel var36 = new SpaceWar.SpacePanel(); + float var37 = var36.getAlignmentX(); + var36.setVisible(false); + java.awt.Dimension var40 = var36.getPreferredSize(); + boolean var41 = var36.getVerifyInputWhenFocusTarget(); + java.awt.Component var44 = var36.findComponentAt(10, 1); + var34.addKeyListener((java.awt.event.KeyListener)var36); + java.awt.Cursor var46 = var34.getCursor(); + var25.setCursor(var46); + var0.setCursor(var46); + var0.transferFocus(); + var0.setRequestFocusEnabled(true); + javax.swing.InputMap var53 = var0.getInputMap(2); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNull(var21); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var23); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var24 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var28); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var29 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var35 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var40); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var41 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var44); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var46); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var53); + + } + + public void test279() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test279"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + SpaceWar.SpacePanel var4 = new SpaceWar.SpacePanel(); + java.awt.Color var5 = var4.getBackground(); + var0.setForeground(var5); + java.awt.event.HierarchyBoundsListener[] var7 = var0.getHierarchyBoundsListeners(); + var0.setName("PanelUI"); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var7); + + } + + public void test280() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test280"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var6 = var0.getUI(); + java.awt.im.InputMethodRequests var7 = var0.getInputMethodRequests(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + var8.nextFocus(); + var8.updateUI(); + var8.enableInputMethods(true); + var8.setSize((-1), 1); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + var19.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var0.add((java.awt.Component)var8, (java.lang.Object)"SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + boolean var25 = var0.isCursorSet(); + javax.swing.KeyStroke[] var26 = var0.getRegisteredKeyStrokes(); + var0.repaint(24, 100, 0, 100); + var0.setVerifyInputWhenFocusTarget(false); + SpaceWar.SpacePanel var34 = new SpaceWar.SpacePanel(); + float var35 = var34.getAlignmentX(); + var34.setVisible(false); + var34.setInheritsPopupMenu(false); + var34.setFocusTraversalPolicyProvider(true); + java.awt.Container var42 = var34.getFocusCycleRootAncestor(); + SpaceWar.SpacePanel var43 = new SpaceWar.SpacePanel(); + float var44 = var43.getAlignmentX(); + var43.removeNotify(); + SpaceWar.SpacePanel var46 = new SpaceWar.SpacePanel(); + float var47 = var46.getAlignmentX(); + var46.setVisible(false); + boolean var50 = var46.isDoubleBuffered(); + var46.list(); + float var52 = var46.getAlignmentY(); + java.awt.Insets var53 = var46.getInsets(); + java.awt.Insets var54 = var43.getInsets(var53); + java.awt.Insets var55 = var34.getInsets(var54); + boolean var56 = var34.isFocusTraversalPolicyProvider(); + SpaceWar.SpacePanel var57 = new SpaceWar.SpacePanel(); + float var58 = var57.getAlignmentX(); + var57.setVisible(false); + var57.nextFocus(); + var57.updateUI(); + java.util.Locale var63 = var57.getLocale(); + SpaceWar.SpacePanel var64 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var65 = new SpaceWar.SpacePanel(); + java.awt.Color var66 = var65.getBackground(); + SpaceWar.SpacePanel var67 = new SpaceWar.SpacePanel(); + float var68 = var67.getAlignmentX(); + var67.setVisible(false); + var67.nextFocus(); + var67.updateUI(); + var67.enableInputMethods(true); + var64.add((java.awt.Component)var65, (java.lang.Object)true); + boolean var76 = var64.isMinimumSizeSet(); + java.awt.event.HierarchyListener[] var77 = var64.getHierarchyListeners(); + int var78 = var64.getComponentCount(); + SpaceWar.SpacePanel var79 = new SpaceWar.SpacePanel(); + java.awt.Color var80 = var79.getBackground(); + var79.repaint(); + var79.setRequestFocusEnabled(false); + var79.removeAll(); + var64.setNextFocusableComponent((java.awt.Component)var79); + java.awt.event.KeyListener[] var86 = var79.getKeyListeners(); + javax.swing.event.AncestorListener[] var87 = var79.getAncestorListeners(); + var34.add((java.awt.Component)var57, (java.lang.Object)var79); + java.awt.Dimension var89 = var57.getMaximumSize(); + var0.setMinimumSize(var89); + var0.disable(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var35 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNull(var42); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var44 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var47 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var50 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var52 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var53); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var54); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var55); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var56 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var58 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var63); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var66); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var68 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var76 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var77); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var78 == 1); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var80); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var86); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var87); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var89); + + } + + public void test281() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test281"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.updateUI(); + var0.enableInputMethods(true); + var0.setSize((-1), 1); + boolean var13 = var0.contains(1, 1); + javax.swing.TransferHandler var14 = var0.getTransferHandler(); + SpaceWar.SpacePanel var15 = new SpaceWar.SpacePanel(); + float var16 = var15.getAlignmentX(); + var15.setVisible(false); + boolean var19 = var15.isDoubleBuffered(); + var15.enable(false); + java.lang.Object var22 = var0.getClientProperty((java.lang.Object)false); + SpaceWar.SpacePanel var23 = new SpaceWar.SpacePanel(); + float var24 = var23.getAlignmentX(); + var23.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var29 = var23.getMouseListeners(); + java.awt.Dimension var30 = var23.getPreferredSize(); + java.util.Locale var31 = var23.getLocale(); + var23.setFocusable(true); + var23.setSize(3, 10); + SpaceWar.SpacePanel var37 = new SpaceWar.SpacePanel(); + float var38 = var37.getAlignmentX(); + var37.setVisible(false); + java.awt.Dimension var41 = var37.getPreferredSize(); + boolean var42 = var37.getVerifyInputWhenFocusTarget(); + java.awt.Dimension var43 = var37.size(); + var23.setSize(var43); + var0.setPreferredSize(var43); + javax.swing.JRootPane var46 = var0.getRootPane(); + boolean var47 = var0.isFontSet(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var24 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var29); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var30); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var31); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var38 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var41); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var42 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var43); + + // Regression assertion (captures the current behavior of the code) + assertNull(var46); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var47 == true); + + } + + public void test282() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test282"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + SpaceWar.SpacePanel var2 = new SpaceWar.SpacePanel(); + float var3 = var2.getAlignmentX(); + var2.setVisible(false); + java.awt.Dimension var6 = var2.getPreferredSize(); + boolean var7 = var2.getVerifyInputWhenFocusTarget(); + java.awt.Component var10 = var2.findComponentAt(10, 1); + var0.addKeyListener((java.awt.event.KeyListener)var2); + SpaceWar.SpacePanel var12 = new SpaceWar.SpacePanel(); + float var13 = var12.getAlignmentX(); + SpaceWar.SpacePanel var14 = new SpaceWar.SpacePanel(); + float var15 = var14.getAlignmentX(); + var14.setVisible(false); + java.awt.Dimension var18 = var14.getPreferredSize(); + boolean var19 = var14.getVerifyInputWhenFocusTarget(); + java.awt.Component var22 = var14.findComponentAt(10, 1); + var12.addKeyListener((java.awt.event.KeyListener)var14); + var14.repaint(100, (-1), (-1), 1); + java.awt.image.ColorModel var29 = var14.getColorModel(); + SpaceWar.SpacePanel var30 = new SpaceWar.SpacePanel(); + float var31 = var30.getAlignmentX(); + var30.setVisible(false); + boolean var34 = var30.isDoubleBuffered(); + var30.list(); + SpaceWar.SpacePanel var36 = new SpaceWar.SpacePanel(); + float var37 = var36.getAlignmentX(); + var36.setVisible(false); + boolean var40 = var36.isDoubleBuffered(); + java.awt.dnd.DropTarget var41 = var36.getDropTarget(); + var36.show(false); + java.awt.Rectangle var44 = var36.getVisibleRect(); + java.awt.image.BufferedImage var46 = var36.loadImg("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + boolean var47 = var30.isAncestorOf((java.awt.Component)var36); + javax.swing.InputVerifier var48 = var36.getInputVerifier(); + var2.putClientProperty((java.lang.Object)var14, (java.lang.Object)var36); + int var50 = var2.getY(); + boolean var51 = var2.isOptimizedDrawingEnabled(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var29); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var31 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var34 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var40 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var41); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var44); + + // Regression assertion (captures the current behavior of the code) + assertNull(var46); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var47 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var48); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var50 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var51 == true); + + } + + public void test283() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test283"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.reshape((-1), 1, (-1), 10); + SpaceWar.SpacePanel var10 = new SpaceWar.SpacePanel(); + java.awt.Color var11 = var10.getBackground(); + var10.repaint(); + var10.setRequestFocusEnabled(false); + var10.reshape(100, 0, 100, 0); + java.awt.Component var20 = var0.add((java.awt.Component)var10); + var0.enable(); + boolean var22 = var0.isFocusable(); + var0.reshape(10, 399, 400, 3); + java.awt.Graphics var28 = var0.getGraphics(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var22 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var28); + + } + + public void test284() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test284"); + + + SpaceWar.Player var0 = new SpaceWar.Player(); + boolean var1 = var0.isRecovering(); + var0.loseLife(); + int var3 = var0.getR(); + var0.increasePower(500); + int var6 = var0.getPower(); + var0.setLife(100); + int var9 = var0.getLives(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == 25); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == 499); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 100); + + } + + public void test285() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test285"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.updateUI(); + var0.enableInputMethods(true); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + boolean var10 = var8.hasFocus(); + java.awt.Insets var11 = var8.getInsets(); + java.awt.Insets var12 = var0.getInsets(var11); + boolean var13 = var0.isManagingFocus(); + java.awt.Image var16 = var0.createImage(1, 10); + java.awt.Rectangle var17 = var0.bounds(); + java.awt.Dimension var18 = var0.getPreferredSize(); + boolean var19 = var0.isFontSet(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == true); + + } + + public void test286() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test286"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + float var7 = var6.getAlignmentX(); + var6.setVisible(false); + java.awt.Dimension var10 = var6.getPreferredSize(); + var0.setMaximumSize(var10); + boolean var12 = var0.getVerifyInputWhenFocusTarget(); + javax.accessibility.AccessibleContext var13 = var0.getAccessibleContext(); + boolean var14 = var0.isDoubleBuffered(); + boolean var15 = var0.getAutoscrolls(); + var0.repaint(10L, (-1), 25, (-1), 100); + var0.updateUI(); + boolean var23 = var0.requestDefaultFocus(); + SpaceWar.SpacePanel var24 = new SpaceWar.SpacePanel(); + float var25 = var24.getAlignmentX(); + boolean var26 = var24.hasFocus(); + boolean var27 = var24.isPreferredSizeSet(); + var24.firePropertyChange("", (short)1, (short)0); + boolean var32 = var24.isMaximumSizeSet(); + java.awt.peer.ComponentPeer var33 = var24.getPeer(); + SpaceWar.SpacePanel var34 = new SpaceWar.SpacePanel(); + float var35 = var34.getAlignmentX(); + var34.setVisible(false); + boolean var38 = var34.isDoubleBuffered(); + java.awt.dnd.DropTarget var39 = var34.getDropTarget(); + var34.show(false); + SpaceWar.SpacePanel var42 = new SpaceWar.SpacePanel(); + float var43 = var42.getAlignmentX(); + var42.setVisible(false); + SpaceWar.SpacePanel var46 = new SpaceWar.SpacePanel(); + java.awt.Color var47 = var46.getBackground(); + var42.setForeground(var47); + SpaceWar.SpacePanel var49 = new SpaceWar.SpacePanel(); + float var50 = var49.getAlignmentX(); + var49.setVisible(false); + boolean var53 = var49.isDoubleBuffered(); + java.awt.dnd.DropTarget var54 = var49.getDropTarget(); + var49.show(false); + java.awt.Rectangle var57 = var49.getVisibleRect(); + var42.repaint(var57); + java.awt.FocusTraversalPolicy var59 = var42.getFocusTraversalPolicy(); + java.awt.im.InputMethodRequests var60 = var42.getInputMethodRequests(); + var42.layout(); + SpaceWar.SpacePanel var62 = new SpaceWar.SpacePanel(); + float var63 = var62.getAlignmentX(); + var62.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var68 = new SpaceWar.SpacePanel(); + float var69 = var68.getAlignmentX(); + var68.setVisible(false); + SpaceWar.SpacePanel var72 = new SpaceWar.SpacePanel(); + java.awt.Color var73 = var72.getBackground(); + var68.setForeground(var73); + var62.setBackground(var73); + var42.setForeground(var73); + int var77 = var42.getWidth(); + javax.swing.plaf.PanelUI var78 = var42.getUI(); + var34.setUI(var78); + var24.setUI(var78); + var0.remove((java.awt.Component)var24); + java.awt.Point var82 = var0.location(); + SpaceWar.SpacePanel var83 = new SpaceWar.SpacePanel(); + java.awt.Color var84 = var83.getBackground(); + var83.repaint(); + java.awt.im.InputMethodRequests var86 = var83.getInputMethodRequests(); + var83.setDoubleBuffered(true); + var83.show(false); + var83.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", (-1), 24); + boolean var95 = var83.getAutoscrolls(); + java.awt.Graphics var96 = var83.getGraphics(); + java.awt.Dimension var97 = var83.getMaximumSize(); + var0.setMaximumSize(var97); + boolean var99 = var0.isFocusTraversable(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var32 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var33); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var35 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var38 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var39); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var43 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var47); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var50 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var53 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var54); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var57); + + // Regression assertion (captures the current behavior of the code) + assertNull(var59); + + // Regression assertion (captures the current behavior of the code) + assertNull(var60); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var63 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var69 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var73); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var77 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var78); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var82); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var84); + + // Regression assertion (captures the current behavior of the code) + assertNull(var86); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var95 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var96); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var97); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var99 == true); + + } + + public void test287() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test287"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + var0.show(false); + boolean var8 = var0.isPaintingForPrint(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var15 = var9.getMouseListeners(); + int var16 = var9.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var17 = var9.getInputMethodRequests(); + var0.addKeyListener((java.awt.event.KeyListener)var9); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + float var20 = var19.getAlignmentX(); + var19.setVisible(false); + boolean var23 = var19.isDoubleBuffered(); + var19.list(); + float var25 = var19.getAlignmentY(); + boolean var26 = var9.isFocusCycleRoot((java.awt.Container)var19); + var19.firePropertyChange("", 1L, 1L); + var19.setVerifyInputWhenFocusTarget(true); + var19.setSize((-1), 0); + boolean var36 = var19.isOpaque(); + var19.setOpaque(false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var36 == true); + + } + + public void test288() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test288"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + java.awt.im.InputMethodRequests var3 = var0.getInputMethodRequests(); + int var4 = var0.countComponents(); + java.awt.event.ComponentListener[] var5 = var0.getComponentListeners(); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + float var7 = var6.getAlignmentX(); + var6.removeNotify(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.setVisible(false); + boolean var13 = var9.isDoubleBuffered(); + var9.list(); + float var15 = var9.getAlignmentY(); + java.awt.Insets var16 = var9.getInsets(); + java.awt.Insets var17 = var6.getInsets(var16); + java.awt.Insets var18 = var0.getInsets(var17); + boolean var19 = var0.isShowing(); + var0.list(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == false); + + } + + public void test289() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test289"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + javax.swing.TransferHandler var1 = var0.getTransferHandler(); + boolean var2 = var0.isMaximumSizeSet(); + java.beans.VetoableChangeListener[] var3 = var0.getVetoableChangeListeners(); + + // Regression assertion (captures the current behavior of the code) + assertNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var2 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var3); + + } + + public void test290() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test290"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + var0.setRequestFocusEnabled(false); + var0.setIgnoreRepaint(false); + java.lang.String var7 = var0.toString(); + java.awt.Color var8 = var0.getBackground(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.setVisible(false); + java.awt.Dimension var13 = var9.getPreferredSize(); + java.awt.Toolkit var14 = var9.getToolkit(); + java.awt.Toolkit var15 = var9.getToolkit(); + SpaceWar.Player var16 = new SpaceWar.Player(); + var16.increasePower(25); + int var19 = var16.getScore(); + var16.setRigth(true); + var16.loseLife(); + var0.putClientProperty((java.lang.Object)var9, (java.lang.Object)var16); + SpaceWar.SpacePanel var24 = new SpaceWar.SpacePanel(); + float var25 = var24.getAlignmentX(); + var24.setVisible(false); + var24.setInheritsPopupMenu(false); + var24.move(10, 10); + var24.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + java.awt.event.KeyListener[] var37 = var24.getKeyListeners(); + var9.removeKeyListener((java.awt.event.KeyListener)var24); + boolean var39 = var9.isVisible(); + javax.swing.event.AncestorListener[] var40 = var9.getAncestorListeners(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var7 + "' != '" + "SpaceWar.SpacePanel[,0,0,0var7,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"+ "'", var7.equals("SpaceWar.SpacePanel[,0,0,0var7,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]")); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var37); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var39 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var40); + + } + + public void test291() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test291"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.repaint(1L); + SpaceWar.SpacePanel var7 = new SpaceWar.SpacePanel(); + float var8 = var7.getAlignmentX(); + var7.setVisible(false); + var7.nextFocus(); + var7.updateUI(); + var7.enableInputMethods(true); + var7.enableInputMethods(true); + var0.addKeyListener((java.awt.event.KeyListener)var7); + java.util.Locale var18 = var0.getLocale(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var18); + + } + + public void test292() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test292"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + SpaceWar.SpacePanel var2 = new SpaceWar.SpacePanel(); + float var3 = var2.getAlignmentX(); + var2.setVisible(false); + java.awt.Dimension var6 = var2.getPreferredSize(); + boolean var7 = var2.getVerifyInputWhenFocusTarget(); + java.awt.Component var10 = var2.findComponentAt(10, 1); + var0.addKeyListener((java.awt.event.KeyListener)var2); + java.awt.Dimension var12 = var2.getMinimumSize(); + SpaceWar.SpacePanel var13 = new SpaceWar.SpacePanel(); + java.awt.Color var14 = var13.getBackground(); + var13.repaint(); + var13.setRequestFocusEnabled(false); + var13.reshape(100, 0, 100, 0); + var13.requestFocus(); + java.awt.Rectangle var24 = var13.getVisibleRect(); + var2.setBounds(var24); + float var26 = var2.getAlignmentX(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == 0.5f); + + } + + public void test293() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test293"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.reshape((-1), 1, (-1), 10); + var0.disable(); + java.awt.LayoutManager var11 = var0.getLayout(); + java.awt.Container var12 = var0.getParent(); + java.lang.String var13 = var0.getUIClassID(); + var0.setVerifyInputWhenFocusTarget(true); + boolean var16 = var0.isRequestFocusEnabled(); + var0.firePropertyChange("hi!", 100.0f, 100.0f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var13 + "' != '" + "PanelUI"+ "'", var13.equals("PanelUI")); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == true); + + } + + public void test294() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test294"); + + + SpaceWar.PowerUp var3 = new SpaceWar.PowerUp(100, (-1.0d), 0.0d); + double var4 = var3.getR(); + double var5 = var3.getY(); + boolean var6 = var3.update(); + int var7 = var3.getType(); + double var8 = var3.getX(); + int var9 = var3.getType(); + double var10 = var3.getX(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0.0d); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == 0.0d); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 100); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == (-1.0d)); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 100); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == (-1.0d)); + + } + + public void test295() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test295"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + java.awt.event.MouseMotionListener[] var6 = var0.getMouseMotionListeners(); + java.awt.event.ComponentListener[] var7 = var0.getComponentListeners(); + var0.setFocusTraversalPolicyProvider(false); + boolean var10 = var0.isFocusTraversable(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == true); + + } + + public void test296() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test296"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + var0.show(false); + boolean var8 = var0.isPaintingForPrint(); + boolean var9 = var0.getIgnoreRepaint(); + var0.repaint(100, 10, 100, 0); + SpaceWar.SpacePanel var15 = new SpaceWar.SpacePanel(); + float var16 = var15.getAlignmentX(); + var15.setVisible(false); + boolean var19 = var15.isDoubleBuffered(); + var15.list(); + SpaceWar.SpacePanel var21 = new SpaceWar.SpacePanel(); + float var22 = var21.getAlignmentX(); + var21.setVisible(false); + boolean var25 = var21.isDoubleBuffered(); + java.awt.dnd.DropTarget var26 = var21.getDropTarget(); + var21.show(false); + java.awt.Rectangle var29 = var21.getVisibleRect(); + java.awt.Rectangle var30 = var15.getBounds(var29); + javax.swing.JToolTip var31 = var15.createToolTip(); + var15.firePropertyChange("", false, false); + var15.validate(); + SpaceWar.SpacePanel var37 = new SpaceWar.SpacePanel(); + float var38 = var37.getAlignmentX(); + var37.setVisible(false); + boolean var41 = var37.isDoubleBuffered(); + java.awt.dnd.DropTarget var42 = var37.getDropTarget(); + var37.show(false); + boolean var45 = var37.isPaintingForPrint(); + SpaceWar.SpacePanel var46 = new SpaceWar.SpacePanel(); + float var47 = var46.getAlignmentX(); + var46.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var52 = var46.getMouseListeners(); + int var53 = var46.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var54 = var46.getInputMethodRequests(); + var37.addKeyListener((java.awt.event.KeyListener)var46); + var46.repaint(); + java.awt.Point var57 = var46.location(); + java.awt.Component var58 = var15.getComponentAt(var57); + var0.setLocation(var57); + java.awt.peer.ComponentPeer var60 = var0.getPeer(); + var0.transferFocus(); + java.awt.Toolkit var62 = var0.getToolkit(); + boolean var63 = var0.isFocusTraversable(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var22 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var29); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var30); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var31); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var38 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var41 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var42); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var45 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var47 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var52); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var53 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var54); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var57); + + // Regression assertion (captures the current behavior of the code) + assertNull(var58); + + // Regression assertion (captures the current behavior of the code) + assertNull(var60); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var62); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var63 == true); + + } + + public void test297() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test297"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var6 = var0.getUI(); + java.awt.im.InputMethodRequests var7 = var0.getInputMethodRequests(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + var8.nextFocus(); + var8.updateUI(); + var8.enableInputMethods(true); + var8.setSize((-1), 1); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + var19.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var0.add((java.awt.Component)var8, (java.lang.Object)"SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + boolean var25 = var0.isCursorSet(); + javax.swing.KeyStroke[] var26 = var0.getRegisteredKeyStrokes(); + int var27 = var0.countComponents(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == 1); + + } + + public void test298() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test298"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + SpaceWar.SpacePanel var4 = new SpaceWar.SpacePanel(); + java.awt.Color var5 = var4.getBackground(); + var0.setForeground(var5); + SpaceWar.SpacePanel var7 = new SpaceWar.SpacePanel(); + float var8 = var7.getAlignmentX(); + var7.setVisible(false); + boolean var11 = var7.isDoubleBuffered(); + java.awt.dnd.DropTarget var12 = var7.getDropTarget(); + var7.show(false); + java.awt.Rectangle var15 = var7.getVisibleRect(); + var0.repaint(var15); + java.awt.FocusTraversalPolicy var17 = var0.getFocusTraversalPolicy(); + java.awt.im.InputMethodRequests var18 = var0.getInputMethodRequests(); + javax.swing.JToolTip var19 = var0.createToolTip(); + java.awt.GraphicsConfiguration var20 = var19.getGraphicsConfiguration(); + javax.swing.event.AncestorListener[] var21 = var19.getAncestorListeners(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var21); + + } + + public void test299() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test299"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + java.awt.event.MouseMotionListener[] var6 = var0.getMouseMotionListeners(); + java.awt.event.ComponentListener[] var7 = var0.getComponentListeners(); + var0.setFocusTraversalPolicyProvider(false); + SpaceWar.SpacePanel var10 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var11 = new SpaceWar.SpacePanel(); + java.awt.Color var12 = var11.getBackground(); + SpaceWar.SpacePanel var13 = new SpaceWar.SpacePanel(); + float var14 = var13.getAlignmentX(); + var13.setVisible(false); + var13.nextFocus(); + var13.updateUI(); + var13.enableInputMethods(true); + var10.add((java.awt.Component)var11, (java.lang.Object)true); + boolean var23 = var11.areFocusTraversalKeysSet(0); + boolean var24 = var11.isFocusable(); + SpaceWar.SpacePanel var25 = new SpaceWar.SpacePanel(); + float var26 = var25.getAlignmentX(); + var25.setVisible(false); + var25.nextFocus(); + SpaceWar.SpacePanel var30 = new SpaceWar.SpacePanel(); + float var31 = var30.getAlignmentX(); + var30.setVisible(false); + SpaceWar.SpacePanel var34 = new SpaceWar.SpacePanel(); + java.awt.Color var35 = var34.getBackground(); + var30.setForeground(var35); + var25.setBackground(var35); + javax.swing.plaf.PanelUI var38 = var25.getUI(); + java.awt.peer.ComponentPeer var39 = var25.getPeer(); + java.awt.Point var40 = var25.location(); + java.awt.Component var41 = var11.getComponentAt(var40); + var0.addKeyListener((java.awt.event.KeyListener)var11); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var24 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var31 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var35); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var38); + + // Regression assertion (captures the current behavior of the code) + assertNull(var39); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var40); + + // Regression assertion (captures the current behavior of the code) + assertNull(var41); + + } + + public void test300() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test300"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + java.awt.im.InputMethodRequests var3 = var0.getInputMethodRequests(); + var0.setDoubleBuffered(true); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + float var7 = var6.getAlignmentX(); + boolean var8 = var6.hasFocus(); + java.awt.Insets var9 = var6.getInsets(); + java.awt.Insets var10 = var0.getInsets(var9); + SpaceWar.SpacePanel var11 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var12 = new SpaceWar.SpacePanel(); + java.awt.Color var13 = var12.getBackground(); + SpaceWar.SpacePanel var14 = new SpaceWar.SpacePanel(); + float var15 = var14.getAlignmentX(); + var14.setVisible(false); + var14.nextFocus(); + var14.updateUI(); + var14.enableInputMethods(true); + var11.add((java.awt.Component)var12, (java.lang.Object)true); + java.awt.Image var25 = var12.createImage(1, (-1)); + SpaceWar.SpacePanel var26 = new SpaceWar.SpacePanel(); + float var27 = var26.getAlignmentX(); + var26.setVisible(false); + var26.nextFocus(); + var26.updateUI(); + var26.enableInputMethods(true); + SpaceWar.SpacePanel var34 = new SpaceWar.SpacePanel(); + float var35 = var34.getAlignmentX(); + boolean var36 = var34.hasFocus(); + java.awt.Insets var37 = var34.getInsets(); + java.awt.Insets var38 = var26.getInsets(var37); + java.awt.Insets var39 = var12.getInsets(var37); + java.awt.Insets var40 = var0.getInsets(var37); + boolean var41 = var0.isOptimizedDrawingEnabled(); + var0.setVisible(false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var9); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNull(var25); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var35 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var36 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var37); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var38); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var39); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var40); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var41 == true); + + } + + public void test301() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test301"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + boolean var4 = var0.inside(0, (-1)); + var0.transferFocusUpCycle(); + java.awt.Container var6 = var0.getParent(); + var0.resize((-1), 25); + javax.swing.ActionMap var10 = var0.getActionMap(); + SpaceWar.SpacePanel var11 = new SpaceWar.SpacePanel(); + float var12 = var11.getAlignmentX(); + SpaceWar.SpacePanel var13 = new SpaceWar.SpacePanel(); + float var14 = var13.getAlignmentX(); + var13.setVisible(false); + java.awt.Dimension var17 = var13.getPreferredSize(); + boolean var18 = var13.getVerifyInputWhenFocusTarget(); + java.awt.Component var21 = var13.findComponentAt(10, 1); + var11.addKeyListener((java.awt.event.KeyListener)var13); + SpaceWar.SpacePanel var23 = new SpaceWar.SpacePanel(); + float var24 = var23.getAlignmentX(); + SpaceWar.SpacePanel var25 = new SpaceWar.SpacePanel(); + float var26 = var25.getAlignmentX(); + var25.setVisible(false); + java.awt.Dimension var29 = var25.getPreferredSize(); + boolean var30 = var25.getVerifyInputWhenFocusTarget(); + java.awt.Component var33 = var25.findComponentAt(10, 1); + var23.addKeyListener((java.awt.event.KeyListener)var25); + var25.repaint(100, (-1), (-1), 1); + java.awt.image.ColorModel var40 = var25.getColorModel(); + SpaceWar.SpacePanel var41 = new SpaceWar.SpacePanel(); + float var42 = var41.getAlignmentX(); + var41.setVisible(false); + boolean var45 = var41.isDoubleBuffered(); + var41.list(); + SpaceWar.SpacePanel var47 = new SpaceWar.SpacePanel(); + float var48 = var47.getAlignmentX(); + var47.setVisible(false); + boolean var51 = var47.isDoubleBuffered(); + java.awt.dnd.DropTarget var52 = var47.getDropTarget(); + var47.show(false); + java.awt.Rectangle var55 = var47.getVisibleRect(); + java.awt.image.BufferedImage var57 = var47.loadImg("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + boolean var58 = var41.isAncestorOf((java.awt.Component)var47); + javax.swing.InputVerifier var59 = var47.getInputVerifier(); + var13.putClientProperty((java.lang.Object)var25, (java.lang.Object)var47); + javax.swing.JToolTip var61 = var13.createToolTip(); + boolean var62 = var61.isFocusTraversable(); + java.awt.Component var63 = var0.add((java.awt.Component)var61); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var21); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var24 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var29); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var30 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var33); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var40); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var42 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var45 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var48 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var51 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var52); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var55); + + // Regression assertion (captures the current behavior of the code) + assertNull(var57); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var58 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var59); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var61); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var62 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var63); + + } + + public void test302() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test302"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + java.awt.Point var6 = var0.getMousePosition(); + java.lang.String var7 = var0.getUIClassID(); + var0.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", '#', '4'); + boolean var12 = var0.requestDefaultFocus(); + SpaceWar.SpacePanel var13 = new SpaceWar.SpacePanel(); + float var14 = var13.getAlignmentX(); + var13.setVisible(false); + SpaceWar.SpacePanel var17 = new SpaceWar.SpacePanel(); + java.awt.Color var18 = var17.getBackground(); + var13.setForeground(var18); + SpaceWar.SpacePanel var20 = new SpaceWar.SpacePanel(); + float var21 = var20.getAlignmentX(); + var20.setVisible(false); + boolean var24 = var20.isDoubleBuffered(); + java.awt.dnd.DropTarget var25 = var20.getDropTarget(); + var20.show(false); + java.awt.Rectangle var28 = var20.getVisibleRect(); + var13.repaint(var28); + SpaceWar.SpacePanel var30 = new SpaceWar.SpacePanel(); + float var31 = var30.getAlignmentX(); + var30.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var36 = var30.getMouseListeners(); + java.awt.Dimension var37 = var30.getPreferredSize(); + java.util.Locale var38 = var30.getLocale(); + var13.setLocale(var38); + var0.setLocale(var38); + java.awt.event.ContainerListener[] var41 = var0.getContainerListeners(); + var0.transferFocusBackward(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var7 + "' != '" + "PanelUI"+ "'", var7.equals("PanelUI")); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var24 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var25); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var28); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var31 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var36); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var37); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var38); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var41); + + } + + public void test303() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test303"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + boolean var2 = var0.hasFocus(); + SpaceWar.SpacePanel var3 = new SpaceWar.SpacePanel(); + float var4 = var3.getAlignmentX(); + var3.setVisible(false); + var3.nextFocus(); + var3.reshape((-1), 1, (-1), 10); + var3.disable(); + java.awt.LayoutManager var14 = var3.getLayout(); + var3.setVisible(false); + var0.remove((java.awt.Component)var3); + var3.repaint(); + var3.repaint(); + SpaceWar.SpacePanel var20 = new SpaceWar.SpacePanel(); + float var21 = var20.getAlignmentX(); + var20.setVisible(false); + var20.nextFocus(); + var20.repaint(1L); + SpaceWar.SpacePanel var27 = new SpaceWar.SpacePanel(); + float var28 = var27.getAlignmentX(); + var27.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var33 = new SpaceWar.SpacePanel(); + float var34 = var33.getAlignmentX(); + var33.setVisible(false); + java.awt.Dimension var37 = var33.getPreferredSize(); + var27.setMaximumSize(var37); + var20.setPreferredSize(var37); + javax.swing.plaf.PanelUI var40 = var20.getUI(); + SpaceWar.SpacePanel var41 = new SpaceWar.SpacePanel(); + float var42 = var41.getAlignmentX(); + var41.setVisible(false); + var41.nextFocus(); + var41.reshape((-1), 1, (-1), 10); + var41.disable(); + java.awt.LayoutManager var52 = var41.getLayout(); + java.awt.Container var53 = var41.getParent(); + java.lang.String var54 = var41.getUIClassID(); + SpaceWar.Enemy var57 = new SpaceWar.Enemy(0, 10); + var20.add((java.awt.Component)var41, (java.lang.Object)10); + java.awt.event.MouseListener[] var59 = var20.getMouseListeners(); + java.awt.Component var61 = var3.add((java.awt.Component)var20, (-1)); + SpaceWar.SpacePanel var62 = new SpaceWar.SpacePanel(); + float var63 = var62.getAlignmentX(); + var62.setVisible(false); + var62.nextFocus(); + var62.reshape((-1), 1, (-1), 10); + SpaceWar.SpacePanel var72 = new SpaceWar.SpacePanel(); + java.awt.Color var73 = var72.getBackground(); + var72.repaint(); + var72.setRequestFocusEnabled(false); + var72.reshape(100, 0, 100, 0); + java.awt.Component var82 = var62.add((java.awt.Component)var72); + boolean var83 = var72.isEnabled(); + javax.swing.ActionMap var84 = var72.getActionMap(); + var20.setActionMap(var84); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var2 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var28 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var34 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var37); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var40); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var42 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var52); + + // Regression assertion (captures the current behavior of the code) + assertNull(var53); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var54 + "' != '" + "PanelUI"+ "'", var54.equals("PanelUI")); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var59); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var61); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var63 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var73); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var82); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var83 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var84); + + } + + public void test304() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test304"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + SpaceWar.SpacePanel var5 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + java.awt.Color var7 = var6.getBackground(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + var8.nextFocus(); + var8.updateUI(); + var8.enableInputMethods(true); + var5.add((java.awt.Component)var6, (java.lang.Object)true); + java.awt.Dimension var17 = var6.getPreferredSize(); + var0.setMaximumSize(var17); + java.awt.Dimension var19 = var0.preferredSize(); + boolean var20 = var0.getVerifyInputWhenFocusTarget(); + java.awt.Rectangle var21 = var0.bounds(); + boolean var22 = javax.swing.JComponent.isLightweightComponent((java.awt.Component)var0); + SpaceWar.SpacePanel var23 = new SpaceWar.SpacePanel(); + float var24 = var23.getAlignmentX(); + var23.setVisible(false); + var23.nextFocus(); + var23.updateUI(); + java.util.Locale var29 = var23.getLocale(); + var23.paintImmediately(25, 100, 3, 0); + SpaceWar.SpacePanel var35 = new SpaceWar.SpacePanel(); + float var36 = var35.getAlignmentX(); + var35.setVisible(false); + var35.setInheritsPopupMenu(false); + var35.setFocusTraversalPolicyProvider(true); + boolean var45 = var35.inside(25, 3); + SpaceWar.SpacePanel var46 = new SpaceWar.SpacePanel(); + float var47 = var46.getAlignmentX(); + var46.setVisible(false); + boolean var50 = var46.isDoubleBuffered(); + java.awt.dnd.DropTarget var51 = var46.getDropTarget(); + var46.show(false); + boolean var54 = var46.isPaintingForPrint(); + SpaceWar.SpacePanel var55 = new SpaceWar.SpacePanel(); + float var56 = var55.getAlignmentX(); + SpaceWar.SpacePanel var57 = new SpaceWar.SpacePanel(); + float var58 = var57.getAlignmentX(); + var57.setVisible(false); + java.awt.Dimension var61 = var57.getPreferredSize(); + boolean var62 = var57.getVerifyInputWhenFocusTarget(); + java.awt.Component var65 = var57.findComponentAt(10, 1); + var55.addKeyListener((java.awt.event.KeyListener)var57); + java.awt.Dimension var67 = var57.getMinimumSize(); + var46.setMinimumSize(var67); + var35.setPreferredSize(var67); + var23.setMinimumSize(var67); + var0.resize(var67); + boolean var72 = javax.swing.JComponent.isLightweightComponent((java.awt.Component)var0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var21); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var22 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var24 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var29); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var36 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var45 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var47 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var50 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var51); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var54 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var56 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var58 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var61); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var62 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var65); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var67); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var72 == false); + + } + + public void test305() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test305"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + boolean var2 = var0.hasFocus(); + boolean var3 = var0.isPreferredSizeSet(); + var0.firePropertyChange("", (short)1, (short)0); + boolean var8 = var0.isMaximumSizeSet(); + var0.list(); + SpaceWar.SpacePanel var10 = new SpaceWar.SpacePanel(); + float var11 = var10.getAlignmentX(); + var10.setVisible(false); + boolean var14 = var10.isDoubleBuffered(); + java.awt.dnd.DropTarget var15 = var10.getDropTarget(); + var10.show(false); + java.awt.Rectangle var18 = var10.getVisibleRect(); + java.awt.image.BufferedImage var20 = var10.loadImg("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + java.awt.ComponentOrientation var21 = var10.getComponentOrientation(); + var10.transferFocusBackward(); + SpaceWar.SpacePanel var23 = new SpaceWar.SpacePanel(); + java.awt.Color var24 = var23.getBackground(); + var23.setFocusCycleRoot(true); + var0.add((java.awt.Component)var10, (java.lang.Object)true); + javax.swing.TransferHandler var28 = var0.getTransferHandler(); + SpaceWar.SpacePanel var29 = new SpaceWar.SpacePanel(); + java.awt.Color var30 = var29.getBackground(); + var29.repaint(); + java.awt.im.InputMethodRequests var32 = var29.getInputMethodRequests(); + int var33 = var29.countComponents(); + java.awt.event.ComponentListener[] var34 = var29.getComponentListeners(); + SpaceWar.SpacePanel var35 = new SpaceWar.SpacePanel(); + float var36 = var35.getAlignmentX(); + var35.removeNotify(); + SpaceWar.SpacePanel var38 = new SpaceWar.SpacePanel(); + float var39 = var38.getAlignmentX(); + var38.setVisible(false); + boolean var42 = var38.isDoubleBuffered(); + var38.list(); + float var44 = var38.getAlignmentY(); + java.awt.Insets var45 = var38.getInsets(); + java.awt.Insets var46 = var35.getInsets(var45); + java.awt.Insets var47 = var29.getInsets(var46); + java.awt.Insets var48 = var0.getInsets(var46); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var2 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var21); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertNull(var28); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var30); + + // Regression assertion (captures the current behavior of the code) + assertNull(var32); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var33 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var34); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var36 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var39 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var42 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var44 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var45); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var46); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var47); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var48); + + } + + public void test306() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test306"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + boolean var2 = var0.hasFocus(); + SpaceWar.SpacePanel var3 = new SpaceWar.SpacePanel(); + float var4 = var3.getAlignmentX(); + var3.setVisible(false); + var3.nextFocus(); + var3.reshape((-1), 1, (-1), 10); + var3.disable(); + java.awt.LayoutManager var14 = var3.getLayout(); + var3.setVisible(false); + var0.remove((java.awt.Component)var3); + java.awt.Color var18 = var0.getForeground(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var2 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var18); + + } + + public void test307() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test307"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + var0.show(false); + boolean var8 = var0.isPaintingForPrint(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var15 = var9.getMouseListeners(); + int var16 = var9.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var17 = var9.getInputMethodRequests(); + var0.addKeyListener((java.awt.event.KeyListener)var9); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + float var20 = var19.getAlignmentX(); + var19.setVisible(false); + boolean var23 = var19.isDoubleBuffered(); + var19.list(); + float var25 = var19.getAlignmentY(); + boolean var26 = var9.isFocusCycleRoot((java.awt.Container)var19); + var19.firePropertyChange("", 1L, 1L); + var19.setVerifyInputWhenFocusTarget(true); + java.awt.Cursor var33 = var19.getCursor(); + var19.resetKeyboardActions(); + SpaceWar.SpacePanel var35 = new SpaceWar.SpacePanel(); + float var36 = var35.getAlignmentX(); + var35.setVisible(false); + SpaceWar.SpacePanel var39 = new SpaceWar.SpacePanel(); + java.awt.Color var40 = var39.getBackground(); + var35.setForeground(var40); + SpaceWar.SpacePanel var42 = new SpaceWar.SpacePanel(); + float var43 = var42.getAlignmentX(); + var42.setVisible(false); + boolean var46 = var42.isDoubleBuffered(); + java.awt.dnd.DropTarget var47 = var42.getDropTarget(); + var42.show(false); + java.awt.Rectangle var50 = var42.getVisibleRect(); + var35.repaint(var50); + java.awt.FocusTraversalPolicy var52 = var35.getFocusTraversalPolicy(); + java.awt.im.InputMethodRequests var53 = var35.getInputMethodRequests(); + var35.layout(); + boolean var55 = var35.isFocusTraversalPolicyProvider(); + java.awt.Insets var56 = var35.insets(); + java.awt.Dimension var57 = var35.getMinimumSize(); + SpaceWar.SpacePanel var58 = new SpaceWar.SpacePanel(); + float var59 = var58.getAlignmentX(); + var58.setVisible(false); + boolean var62 = var58.isDoubleBuffered(); + java.awt.dnd.DropTarget var63 = var58.getDropTarget(); + var58.show(false); + java.awt.event.MouseWheelListener[] var66 = var58.getMouseWheelListeners(); + SpaceWar.SpacePanel var67 = new SpaceWar.SpacePanel(); + float var68 = var67.getAlignmentX(); + var67.setVisible(false); + SpaceWar.SpacePanel var71 = new SpaceWar.SpacePanel(); + java.awt.Color var72 = var71.getBackground(); + var67.setForeground(var72); + SpaceWar.SpacePanel var74 = new SpaceWar.SpacePanel(); + float var75 = var74.getAlignmentX(); + var74.setVisible(false); + boolean var78 = var74.isDoubleBuffered(); + java.awt.dnd.DropTarget var79 = var74.getDropTarget(); + var74.show(false); + java.awt.Rectangle var82 = var74.getVisibleRect(); + var67.repaint(var82); + SpaceWar.SpacePanel var84 = new SpaceWar.SpacePanel(); + float var85 = var84.getAlignmentX(); + var84.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var90 = var84.getMouseListeners(); + java.awt.Dimension var91 = var84.getPreferredSize(); + java.util.Locale var92 = var84.getLocale(); + var67.setLocale(var92); + java.util.Locale var94 = var67.getLocale(); + var58.setLocale(var94); + var35.setLocale(var94); + var19.setLocale(var94); + javax.swing.JComponent.setDefaultLocale(var94); + javax.swing.JComponent.setDefaultLocale(var94); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var33); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var36 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var40); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var43 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var46 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var47); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var50); + + // Regression assertion (captures the current behavior of the code) + assertNull(var52); + + // Regression assertion (captures the current behavior of the code) + assertNull(var53); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var55 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var56); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var57); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var59 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var62 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var63); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var66); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var68 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var72); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var75 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var78 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var79); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var82); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var85 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var90); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var91); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var92); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var94); + + } + + public void test308() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test308"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + var0.show(false); + boolean var8 = javax.swing.JComponent.isLightweightComponent((java.awt.Component)var0); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var10 = new SpaceWar.SpacePanel(); + java.awt.Color var11 = var10.getBackground(); + SpaceWar.SpacePanel var12 = new SpaceWar.SpacePanel(); + float var13 = var12.getAlignmentX(); + var12.setVisible(false); + var12.nextFocus(); + var12.updateUI(); + var12.enableInputMethods(true); + var9.add((java.awt.Component)var10, (java.lang.Object)true); + boolean var21 = var9.isMinimumSizeSet(); + java.awt.event.HierarchyListener[] var22 = var9.getHierarchyListeners(); + SpaceWar.SpacePanel var23 = new SpaceWar.SpacePanel(); + float var24 = var23.getAlignmentX(); + var23.setVisible(false); + SpaceWar.SpacePanel var27 = new SpaceWar.SpacePanel(); + java.awt.Color var28 = var27.getBackground(); + var23.setForeground(var28); + SpaceWar.SpacePanel var30 = new SpaceWar.SpacePanel(); + float var31 = var30.getAlignmentX(); + var30.setVisible(false); + boolean var34 = var30.isDoubleBuffered(); + java.awt.dnd.DropTarget var35 = var30.getDropTarget(); + var30.show(false); + java.awt.Rectangle var38 = var30.getVisibleRect(); + var23.repaint(var38); + java.awt.FocusTraversalPolicy var40 = var23.getFocusTraversalPolicy(); + java.awt.im.InputMethodRequests var41 = var23.getInputMethodRequests(); + var23.layout(); + boolean var43 = var23.isFocusTraversalPolicyProvider(); + java.lang.Object var44 = var9.getClientProperty((java.lang.Object)var43); + java.awt.Dimension var45 = var9.getSize(); + var9.removeNotify(); + java.awt.Cursor var47 = var9.getCursor(); + SpaceWar.SpacePanel var48 = new SpaceWar.SpacePanel(); + java.awt.Color var49 = var48.getBackground(); + boolean var52 = var48.inside(0, (-1)); + SpaceWar.SpacePanel var53 = new SpaceWar.SpacePanel(); + float var54 = var53.getAlignmentX(); + var53.setVisible(false); + SpaceWar.SpacePanel var57 = new SpaceWar.SpacePanel(); + java.awt.Color var58 = var57.getBackground(); + var53.setForeground(var58); + var48.setForeground(var58); + java.awt.image.VolatileImage var63 = var48.createVolatileImage(400, (-1)); + java.awt.LayoutManager var64 = var48.getLayout(); + var9.setLayout(var64); + java.awt.Dimension var66 = var9.preferredSize(); + var0.setPreferredSize(var66); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var24 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var28); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var31 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var34 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var35); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var38); + + // Regression assertion (captures the current behavior of the code) + assertNull(var40); + + // Regression assertion (captures the current behavior of the code) + assertNull(var41); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var43 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var44); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var45); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var47); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var49); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var52 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var54 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var58); + + // Regression assertion (captures the current behavior of the code) + assertNull(var63); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var64); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var66); + + } + + public void test309() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test309"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + java.awt.im.InputMethodRequests var3 = var0.getInputMethodRequests(); + var0.setDoubleBuffered(true); + var0.show(false); + var0.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", (-1), 24); + boolean var12 = var0.getAutoscrolls(); + java.awt.Graphics var13 = var0.getGraphics(); + int var14 = var0.getY(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == 0); + + } + + public void test310() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test310"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + var0.show(false); + boolean var8 = var0.isPaintingForPrint(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var15 = var9.getMouseListeners(); + int var16 = var9.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var17 = var9.getInputMethodRequests(); + var0.addKeyListener((java.awt.event.KeyListener)var9); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + float var20 = var19.getAlignmentX(); + var19.setVisible(false); + boolean var23 = var19.isDoubleBuffered(); + var19.list(); + float var25 = var19.getAlignmentY(); + boolean var26 = var9.isFocusCycleRoot((java.awt.Container)var19); + javax.swing.JPopupMenu var27 = var19.getComponentPopupMenu(); + var19.move((-1), 100); + var19.validate(); + java.awt.Toolkit var32 = var19.getToolkit(); + SpaceWar.SpacePanel var33 = new SpaceWar.SpacePanel(); + float var34 = var33.getAlignmentX(); + var33.setVisible(false); + boolean var37 = var33.isDoubleBuffered(); + SpaceWar.SpacePanel var38 = new SpaceWar.SpacePanel(); + java.awt.Color var39 = var38.getBackground(); + var38.repaint(); + java.lang.Object var41 = var33.getClientProperty((java.lang.Object)var38); + var38.repaint(10, 1, 25, 0); + var19.removeKeyListener((java.awt.event.KeyListener)var38); + var38.grabFocus(); + var38.setDoubleBuffered(true); + boolean var51 = var38.isFocusable(); + java.awt.event.ContainerListener[] var52 = var38.getContainerListeners(); + java.awt.event.ComponentListener[] var53 = var38.getComponentListeners(); + boolean var54 = var38.isPaintingForPrint(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var27); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var32); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var34 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var39); + + // Regression assertion (captures the current behavior of the code) + assertNull(var41); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var51 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var52); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var53); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var54 == false); + + } + + public void test311() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test311"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + java.awt.Dimension var4 = var0.getPreferredSize(); + java.awt.Toolkit var5 = var0.getToolkit(); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + var6.setName(""); + int var9 = var6.getX(); + SpaceWar.SpacePanel var10 = new SpaceWar.SpacePanel(); + float var11 = var10.getAlignmentX(); + var10.setVisible(false); + var10.nextFocus(); + SpaceWar.SpacePanel var15 = new SpaceWar.SpacePanel(); + float var16 = var15.getAlignmentX(); + var15.setVisible(false); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + java.awt.Color var20 = var19.getBackground(); + var15.setForeground(var20); + var10.setBackground(var20); + var6.setBackground(var20); + var0.setForeground(var20); + SpaceWar.SpacePanel var25 = new SpaceWar.SpacePanel(); + float var26 = var25.getAlignmentX(); + var25.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var31 = new SpaceWar.SpacePanel(); + float var32 = var31.getAlignmentX(); + var31.setVisible(false); + java.awt.Dimension var35 = var31.getPreferredSize(); + var25.setMaximumSize(var35); + boolean var37 = var25.getVerifyInputWhenFocusTarget(); + javax.accessibility.AccessibleContext var38 = var25.getAccessibleContext(); + boolean var39 = var25.isDoubleBuffered(); + java.awt.Rectangle var40 = var25.getVisibleRect(); + var0.scrollRectToVisible(var40); + var0.setEnabled(false); + java.awt.FocusTraversalPolicy var44 = var0.getFocusTraversalPolicy(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var4); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var32 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var35); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var38); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var39 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var40); + + // Regression assertion (captures the current behavior of the code) + assertNull(var44); + + } + + public void test312() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test312"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.requestFocus(); + boolean var6 = var0.isBackgroundSet(); + SpaceWar.SpacePanel var7 = new SpaceWar.SpacePanel(); + java.awt.Color var8 = var7.getBackground(); + var7.repaint(); + var7.setRequestFocusEnabled(false); + var7.reshape(100, 0, 100, 0); + SpaceWar.SpacePanel var17 = new SpaceWar.SpacePanel(); + float var18 = var17.getAlignmentX(); + var17.setVisible(false); + var17.setInheritsPopupMenu(false); + boolean var23 = var17.isDoubleBuffered(); + SpaceWar.SpacePanel var24 = new SpaceWar.SpacePanel(); + float var25 = var24.getAlignmentX(); + var24.setVisible(false); + var24.nextFocus(); + var24.reshape((-1), 1, (-1), 10); + var24.disable(); + java.awt.LayoutManager var35 = var24.getLayout(); + var17.setLayout(var35); + var0.add((java.awt.Component)var7, (java.lang.Object)var35); + SpaceWar.SpacePanel var38 = new SpaceWar.SpacePanel(); + float var39 = var38.getAlignmentX(); + var38.setVisible(false); + java.awt.Dimension var42 = var38.getPreferredSize(); + java.awt.Toolkit var43 = var38.getToolkit(); + boolean var44 = var38.isFocusable(); + javax.swing.KeyStroke[] var45 = var38.getRegisteredKeyStrokes(); + SpaceWar.SpacePanel var46 = new SpaceWar.SpacePanel(); + float var47 = var46.getAlignmentX(); + SpaceWar.SpacePanel var48 = new SpaceWar.SpacePanel(); + float var49 = var48.getAlignmentX(); + var48.setVisible(false); + java.awt.Dimension var52 = var48.getPreferredSize(); + boolean var53 = var48.getVerifyInputWhenFocusTarget(); + java.awt.Component var56 = var48.findComponentAt(10, 1); + var46.addKeyListener((java.awt.event.KeyListener)var48); + var48.repaint(100, (-1), (-1), 1); + boolean var63 = var38.isAncestorOf((java.awt.Component)var48); + var38.setFocusable(false); + boolean var66 = var7.isAncestorOf((java.awt.Component)var38); + boolean var67 = var7.isFocusTraversalPolicySet(); + SpaceWar.SpacePanel var68 = new SpaceWar.SpacePanel(); + float var69 = var68.getAlignmentX(); + var68.setVisible(false); + boolean var72 = var68.isDoubleBuffered(); + var68.list(); + float var74 = var68.getAlignmentY(); + boolean var75 = var68.isOpaque(); + var68.nextFocus(); + java.awt.Component var77 = var68.getNextFocusableComponent(); + var7.remove((java.awt.Component)var68); + int var79 = var7.getHeight(); + javax.swing.InputMap var80 = var7.getInputMap(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var35); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var39 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var42); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var43); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var44 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var45); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var47 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var49 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var52); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var53 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var56); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var63 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var66 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var67 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var69 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var72 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var74 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var75 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var77); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var79 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var80); + + } + + public void test313() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test313"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + SpaceWar.SpacePanel var4 = new SpaceWar.SpacePanel(); + java.awt.Color var5 = var4.getBackground(); + var0.setForeground(var5); + SpaceWar.SpacePanel var7 = new SpaceWar.SpacePanel(); + float var8 = var7.getAlignmentX(); + var7.setVisible(false); + boolean var11 = var7.isDoubleBuffered(); + java.awt.dnd.DropTarget var12 = var7.getDropTarget(); + var7.show(false); + java.awt.Rectangle var15 = var7.getVisibleRect(); + var0.repaint(var15); + java.awt.FocusTraversalPolicy var17 = var0.getFocusTraversalPolicy(); + java.awt.im.InputMethodRequests var18 = var0.getInputMethodRequests(); + var0.layout(); + var0.setDebugGraphicsOptions(10); + SpaceWar.SpacePanel var22 = new SpaceWar.SpacePanel(); + float var23 = var22.getAlignmentX(); + var22.setVisible(false); + var22.nextFocus(); + var22.reshape((-1), 1, (-1), 10); + SpaceWar.SpacePanel var32 = new SpaceWar.SpacePanel(); + java.awt.Color var33 = var32.getBackground(); + var32.repaint(); + var32.setRequestFocusEnabled(false); + var32.reshape(100, 0, 100, 0); + java.awt.Component var42 = var22.add((java.awt.Component)var32); + SpaceWar.SpacePanel var43 = new SpaceWar.SpacePanel(); + var43.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + javax.swing.plaf.PanelUI var48 = var43.getUI(); + SpaceWar.SpacePanel var49 = new SpaceWar.SpacePanel(); + float var50 = var49.getAlignmentX(); + var49.setVisible(false); + var49.nextFocus(); + var49.repaint(1L); + SpaceWar.SpacePanel var56 = new SpaceWar.SpacePanel(); + float var57 = var56.getAlignmentX(); + var56.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var62 = new SpaceWar.SpacePanel(); + float var63 = var62.getAlignmentX(); + var62.setVisible(false); + java.awt.Dimension var66 = var62.getPreferredSize(); + var56.setMaximumSize(var66); + var49.setPreferredSize(var66); + var43.setMaximumSize(var66); + java.awt.Dimension var70 = var32.getSize(var66); + var0.setSize(var70); + boolean var72 = var0.isPaintingTile(); + boolean var73 = var0.isFocusTraversalPolicyProvider(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var33); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var42); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var48); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var50 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var57 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var63 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var66); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var70); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var72 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var73 == false); + + } + + public void test314() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test314"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + var0.show(false); + boolean var8 = var0.isPaintingForPrint(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var15 = var9.getMouseListeners(); + int var16 = var9.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var17 = var9.getInputMethodRequests(); + var0.addKeyListener((java.awt.event.KeyListener)var9); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + float var20 = var19.getAlignmentX(); + var19.setVisible(false); + boolean var23 = var19.isDoubleBuffered(); + var19.list(); + float var25 = var19.getAlignmentY(); + boolean var26 = var9.isFocusCycleRoot((java.awt.Container)var19); + javax.swing.ActionMap var27 = var9.getActionMap(); + java.awt.Color var28 = var9.getForeground(); + boolean var29 = var9.isShowing(); + SpaceWar.SpacePanel var30 = new SpaceWar.SpacePanel(); + java.awt.Color var31 = var30.getBackground(); + var30.repaint(); + var30.setRequestFocusEnabled(false); + var30.reshape(100, 0, 100, 0); + var30.requestFocus(); + var30.firePropertyChange("hi!", '4', ' '); + java.awt.Point var45 = var30.getLocation(); + java.awt.Dimension var46 = var30.size(); + boolean var47 = var30.isDoubleBuffered(); + var30.reshape(0, 3, 25, 3); + java.awt.Font var53 = var30.getFont(); + java.awt.FontMetrics var54 = var9.getFontMetrics(var53); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var27); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var28); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var29 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var31); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var45); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var46); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var47 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var53); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var54); + + } + + public void test315() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test315"); + + + SpaceWar.PowerUp var3 = new SpaceWar.PowerUp(100, (-1.0d), 0.0d); + double var4 = var3.getR(); + int var5 = var3.getType(); + double var6 = var3.getX(); + int var7 = var3.getType(); + boolean var8 = var3.update(); + double var9 = var3.getX(); + boolean var10 = var3.update(); + double var11 = var3.getY(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0.0d); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == 100); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == (-1.0d)); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 100); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == (-1.0d)); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == 4.0d); + + } + + public void test316() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test316"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.repaint(1L); + SpaceWar.SpacePanel var7 = new SpaceWar.SpacePanel(); + float var8 = var7.getAlignmentX(); + var7.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var13 = new SpaceWar.SpacePanel(); + float var14 = var13.getAlignmentX(); + var13.setVisible(false); + java.awt.Dimension var17 = var13.getPreferredSize(); + var7.setMaximumSize(var17); + var0.setPreferredSize(var17); + javax.swing.plaf.PanelUI var20 = var0.getUI(); + java.awt.Dimension var21 = var0.getMinimumSize(); + javax.swing.TransferHandler var22 = var0.getTransferHandler(); + boolean var23 = var0.isRequestFocusEnabled(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var21); + + // Regression assertion (captures the current behavior of the code) + assertNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == true); + + } + + public void test317() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test317"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + var0.enable(false); + boolean var7 = var0.getFocusTraversalKeysEnabled(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + java.awt.Dimension var12 = var8.getPreferredSize(); + java.awt.Toolkit var13 = var8.getToolkit(); + boolean var14 = var8.isFocusable(); + javax.swing.KeyStroke[] var15 = var8.getRegisteredKeyStrokes(); + SpaceWar.SpacePanel var16 = new SpaceWar.SpacePanel(); + float var17 = var16.getAlignmentX(); + SpaceWar.SpacePanel var18 = new SpaceWar.SpacePanel(); + float var19 = var18.getAlignmentX(); + var18.setVisible(false); + java.awt.Dimension var22 = var18.getPreferredSize(); + boolean var23 = var18.getVerifyInputWhenFocusTarget(); + java.awt.Component var26 = var18.findComponentAt(10, 1); + var16.addKeyListener((java.awt.event.KeyListener)var18); + var18.repaint(100, (-1), (-1), 1); + boolean var33 = var8.isAncestorOf((java.awt.Component)var18); + var0.addKeyListener((java.awt.event.KeyListener)var18); + java.awt.ComponentOrientation var35 = var0.getComponentOrientation(); + java.awt.event.ComponentListener[] var36 = var0.getComponentListeners(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var33 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var35); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var36); + + } + + public void test318() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test318"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + boolean var2 = var0.hasFocus(); + boolean var3 = var0.isPreferredSizeSet(); + var0.firePropertyChange("", (short)1, (short)0); + boolean var8 = var0.isMaximumSizeSet(); + var0.list(); + SpaceWar.SpacePanel var10 = new SpaceWar.SpacePanel(); + float var11 = var10.getAlignmentX(); + var10.setVisible(false); + boolean var14 = var10.isDoubleBuffered(); + java.awt.dnd.DropTarget var15 = var10.getDropTarget(); + var10.show(false); + java.awt.Rectangle var18 = var10.getVisibleRect(); + java.awt.image.BufferedImage var20 = var10.loadImg("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + java.awt.ComponentOrientation var21 = var10.getComponentOrientation(); + var10.transferFocusBackward(); + SpaceWar.SpacePanel var23 = new SpaceWar.SpacePanel(); + java.awt.Color var24 = var23.getBackground(); + var23.setFocusCycleRoot(true); + var0.add((java.awt.Component)var10, (java.lang.Object)true); + boolean var28 = var10.isFocusOwner(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var2 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var21); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var28 == false); + + } + + public void test319() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test319"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var6 = var0.getMouseListeners(); + int var7 = var0.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var8 = var0.getInputMethodRequests(); + var0.removeNotify(); + var0.enable(); + SpaceWar.SpacePanel var11 = new SpaceWar.SpacePanel(); + java.awt.Color var12 = var11.getBackground(); + boolean var15 = var11.inside(0, (-1)); + var11.transferFocusUpCycle(); + java.lang.String var17 = var11.getName(); + boolean var18 = var0.isFocusCycleRoot((java.awt.Container)var11); + java.awt.Dimension var19 = var0.getMinimumSize(); + boolean var22 = var0.inside(500, 3); + int var23 = var0.getWidth(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var22 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == 0); + + } + + public void test320() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test320"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + SpaceWar.SpacePanel var5 = new SpaceWar.SpacePanel(); + float var6 = var5.getAlignmentX(); + var5.setVisible(false); + var5.nextFocus(); + var5.reshape((-1), 1, (-1), 10); + var5.disable(); + boolean var16 = var5.isFocusable(); + int var17 = var5.getHeight(); + var0.setNextFocusableComponent((java.awt.Component)var5); + java.util.Set var20 = var0.getFocusTraversalKeys(0); + SpaceWar.SpacePanel var21 = new SpaceWar.SpacePanel(); + float var22 = var21.getAlignmentX(); + var21.setVisible(false); + SpaceWar.SpacePanel var25 = new SpaceWar.SpacePanel(); + java.awt.Color var26 = var25.getBackground(); + var21.setForeground(var26); + SpaceWar.SpacePanel var28 = new SpaceWar.SpacePanel(); + float var29 = var28.getAlignmentX(); + var28.setVisible(false); + boolean var32 = var28.isDoubleBuffered(); + java.awt.dnd.DropTarget var33 = var28.getDropTarget(); + var28.show(false); + java.awt.Rectangle var36 = var28.getVisibleRect(); + var21.repaint(var36); + java.awt.FocusTraversalPolicy var38 = var21.getFocusTraversalPolicy(); + SpaceWar.SpacePanel var39 = new SpaceWar.SpacePanel(); + float var40 = var39.getAlignmentX(); + var39.firePropertyChange("", (-1), 1); + boolean var45 = var39.isFocusOwner(); + SpaceWar.SpacePanel var47 = new SpaceWar.SpacePanel(); + float var48 = var47.getAlignmentX(); + var47.setVisible(false); + java.awt.Dimension var51 = var47.getPreferredSize(); + java.awt.Toolkit var52 = var47.getToolkit(); + SpaceWar.SpacePanel var53 = new SpaceWar.SpacePanel(); + var53.setName(""); + int var56 = var53.getX(); + SpaceWar.SpacePanel var57 = new SpaceWar.SpacePanel(); + float var58 = var57.getAlignmentX(); + var57.setVisible(false); + var57.nextFocus(); + SpaceWar.SpacePanel var62 = new SpaceWar.SpacePanel(); + float var63 = var62.getAlignmentX(); + var62.setVisible(false); + SpaceWar.SpacePanel var66 = new SpaceWar.SpacePanel(); + java.awt.Color var67 = var66.getBackground(); + var62.setForeground(var67); + var57.setBackground(var67); + var53.setBackground(var67); + var47.setForeground(var67); + var39.putClientProperty((java.lang.Object)(byte)100, (java.lang.Object)var67); + var21.setBackground(var67); + SpaceWar.SpacePanel var74 = new SpaceWar.SpacePanel(); + float var75 = var74.getAlignmentX(); + var74.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var80 = new SpaceWar.SpacePanel(); + float var81 = var80.getAlignmentX(); + var80.setVisible(false); + SpaceWar.SpacePanel var84 = new SpaceWar.SpacePanel(); + java.awt.Color var85 = var84.getBackground(); + var80.setForeground(var85); + var74.setBackground(var85); + java.awt.Point var88 = var74.location(); + java.awt.Point var89 = var21.getLocation(var88); + boolean var90 = var0.contains(var88); + var0.setOpaque(false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == 10); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var22 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var29 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var32 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var33); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var36); + + // Regression assertion (captures the current behavior of the code) + assertNull(var38); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var40 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var45 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var48 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var51); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var52); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var56 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var58 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var63 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var67); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var75 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var81 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var85); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var88); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var89); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var90 == false); + + } + + public void test321() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test321"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + java.awt.Dimension var4 = var0.getPreferredSize(); + boolean var5 = var0.getVerifyInputWhenFocusTarget(); + java.awt.Component var8 = var0.findComponentAt(10, 1); + boolean var9 = var0.requestDefaultFocus(); + java.awt.image.VolatileImage var12 = var0.createVolatileImage(0, 3); + var0.resize(25, 25); + var0.setFocusable(true); + var0.setAlignmentY(1.0f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var4); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var12); + + } + + public void test322() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test322"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + boolean var6 = var0.isFocusCycleRoot(); + var0.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", 100, 0); + SpaceWar.SpacePanel var11 = new SpaceWar.SpacePanel(); + float var12 = var11.getAlignmentX(); + var11.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var17 = var11.getUI(); + var0.add((java.awt.Component)var11, (java.lang.Object)(short)0); + java.awt.Insets var20 = var11.getInsets(); + SpaceWar.SpacePanel var21 = new SpaceWar.SpacePanel(); + float var22 = var21.getAlignmentX(); + var21.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var27 = var21.getMouseListeners(); + java.awt.Dimension var28 = var21.getPreferredSize(); + java.util.Locale var29 = var21.getLocale(); + var21.setFocusable(true); + SpaceWar.SpacePanel var32 = new SpaceWar.SpacePanel(); + java.awt.Color var33 = var32.getBackground(); + var32.repaint(); + var32.setRequestFocusEnabled(false); + var32.setIgnoreRepaint(false); + java.lang.String var39 = var32.toString(); + java.awt.Color var40 = var32.getBackground(); + var11.putClientProperty((java.lang.Object)var21, (java.lang.Object)var32); + java.awt.Rectangle var42 = var11.getVisibleRect(); + boolean var43 = var11.requestFocusInWindow(); + float var44 = var11.getAlignmentY(); + boolean var46 = var11.requestFocus(true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var22 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var27); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var28); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var29); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var33); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var39 + "' != '" + "SpaceWar.SpacePanel[,0,0,0var39,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"+ "'", var39.equals("SpaceWar.SpacePanel[,0,0,0var39,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]")); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var40); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var42); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var43 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var44 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var46 == false); + + } + + public void test323() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test323"); + + + SpaceWar.Bullet var3 = new SpaceWar.Bullet(594.7973940347722d, 3, 100); + boolean var4 = var3.update(); + boolean var5 = var3.update(); + double var6 = var3.getR(); + boolean var7 = var3.update(); + double var8 = var3.getR(); + double var9 = var3.getX(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == 5.0d); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 5.0d); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == (-14.294084445243069d)); + + } + + public void test324() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test324"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var1 = new SpaceWar.SpacePanel(); + java.awt.Color var2 = var1.getBackground(); + SpaceWar.SpacePanel var3 = new SpaceWar.SpacePanel(); + float var4 = var3.getAlignmentX(); + var3.setVisible(false); + var3.nextFocus(); + var3.updateUI(); + var3.enableInputMethods(true); + var0.add((java.awt.Component)var1, (java.lang.Object)true); + java.awt.Image var14 = var1.createImage(1, (-1)); + boolean var15 = var1.isValidateRoot(); + var1.resize(1, 3); + boolean var19 = var1.isFocusTraversalPolicySet(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var2); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == false); + + } + + public void test325() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test325"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var6 = var0.getMouseListeners(); + int var7 = var0.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var8 = var0.getInputMethodRequests(); + var0.removeNotify(); + var0.enable(); + SpaceWar.SpacePanel var11 = new SpaceWar.SpacePanel(); + java.awt.Color var12 = var11.getBackground(); + boolean var15 = var11.inside(0, (-1)); + var11.transferFocusUpCycle(); + java.lang.String var17 = var11.getName(); + boolean var18 = var0.isFocusCycleRoot((java.awt.Container)var11); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + java.awt.Color var20 = var19.getBackground(); + var19.repaint(); + var19.setRequestFocusEnabled(false); + var19.reshape(100, 0, 100, 0); + var19.requestFocus(); + var19.firePropertyChange("hi!", '4', ' '); + java.awt.Point var34 = var19.getLocation(); + java.awt.Component var35 = var11.getComponentAt(var34); + java.beans.VetoableChangeListener[] var36 = var11.getVetoableChangeListeners(); + var11.removeAll(); + java.awt.event.HierarchyListener[] var38 = var11.getHierarchyListeners(); + java.awt.Toolkit var39 = var11.getToolkit(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var34); + + // Regression assertion (captures the current behavior of the code) + assertNull(var35); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var36); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var38); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var39); + + } + + public void test326() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test326"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + var0.setRequestFocusEnabled(false); + var0.reshape(100, 0, 100, 0); + var0.requestFocus(); + var0.firePropertyChange("hi!", '4', ' '); + java.awt.Point var15 = var0.getLocation(); + java.awt.Dimension var16 = var0.size(); + java.awt.Image var19 = var0.createImage((-1), (-1)); + java.awt.event.ComponentListener[] var20 = var0.getComponentListeners(); + SpaceWar.SpacePanel var22 = new SpaceWar.SpacePanel(); + float var23 = var22.getAlignmentX(); + var22.setVisible(false); + boolean var26 = var22.isDoubleBuffered(); + var22.list(); + SpaceWar.SpacePanel var28 = new SpaceWar.SpacePanel(); + float var29 = var28.getAlignmentX(); + var28.setVisible(false); + boolean var32 = var28.isDoubleBuffered(); + java.awt.dnd.DropTarget var33 = var28.getDropTarget(); + var28.show(false); + java.awt.Rectangle var36 = var28.getVisibleRect(); + java.awt.Rectangle var37 = var22.getBounds(var36); + javax.swing.JToolTip var38 = var22.createToolTip(); + var22.firePropertyChange("", false, false); + var22.revalidate(); + int var44 = var22.getComponentCount(); + var22.setAlignmentX(0.0f); + var22.doLayout(); + javax.swing.InputMap var48 = var22.getInputMap(); + // The following exception was thrown during execution. + // This behavior will recorded for regression testing. + try { + var0.setInputMap(25, var48); + fail("Expected exception of type java.lang.IllegalArgumentException"); + } catch (java.lang.IllegalArgumentException e) { + // Expected exception. + } + + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var29 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var32 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var33); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var36); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var37); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var38); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var44 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var48); + + } + + public void test327() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test327"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.reshape((-1), 1, (-1), 10); + var0.disable(); + java.awt.LayoutManager var11 = var0.getLayout(); + java.awt.Container var12 = var0.getParent(); + java.lang.String var13 = var0.getUIClassID(); + float var14 = var0.getAlignmentX(); + var0.enable(true); + boolean var17 = var0.isPaintingTile(); + int var18 = var0.getY(); + var0.requestFocus(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var13 + "' != '" + "PanelUI"+ "'", var13.equals("PanelUI")); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == 1); + + } + + public void test328() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test328"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var6 = var0.getUI(); + java.awt.im.InputMethodRequests var7 = var0.getInputMethodRequests(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + var8.nextFocus(); + var8.updateUI(); + var8.enableInputMethods(true); + var8.setSize((-1), 1); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + var19.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var0.add((java.awt.Component)var8, (java.lang.Object)"SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + var8.setAutoscrolls(true); + SpaceWar.SpacePanel var27 = new SpaceWar.SpacePanel(); + float var28 = var27.getAlignmentX(); + boolean var29 = var27.hasFocus(); + boolean var30 = var27.isPreferredSizeSet(); + var27.firePropertyChange("", (short)1, (short)0); + boolean var35 = var27.isMaximumSizeSet(); + java.awt.peer.ComponentPeer var36 = var27.getPeer(); + java.awt.ComponentOrientation var37 = var27.getComponentOrientation(); + var8.setComponentOrientation(var37); + SpaceWar.SpacePanel var39 = new SpaceWar.SpacePanel(); + java.awt.Color var40 = var39.getBackground(); + var39.repaint(); + var39.setRequestFocusEnabled(false); + var39.reshape(100, 0, 100, 0); + java.beans.VetoableChangeListener[] var49 = var39.getVetoableChangeListeners(); + java.awt.Rectangle var50 = var39.getVisibleRect(); + float var51 = var39.getAlignmentY(); + var8.addKeyListener((java.awt.event.KeyListener)var39); + java.awt.Component.BaselineResizeBehavior var53 = var39.getBaselineResizeBehavior(); + var39.resize(498, 399); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var28 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var29 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var30 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var35 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var36); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var37); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var40); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var49); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var50); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var51 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var53); + + } + + public void test329() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test329"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + boolean var6 = var0.isFocusOwner(); + java.awt.Dimension var7 = var0.getMinimumSize(); + boolean var8 = var0.requestFocusInWindow(); + var0.reshape(1, (-1), 0, (-1)); + float var14 = var0.getAlignmentX(); + java.awt.Color var15 = var0.getForeground(); + var0.setToolTipText(""); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + } + + public void test330() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test330"); + + + SpaceWar.Enemy var2 = new SpaceWar.Enemy(0, 10); + var2.update(); + double var4 = var2.getX(); + double var5 = var2.getY(); + double var6 = var2.getX(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 396.44637138944637d); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == 0.0d); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == 396.44637138944637d); + + } + + public void test331() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test331"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var6 = var0.getMouseListeners(); + var0.firePropertyChange("", 0.5f, 100.0f); + var0.enable(false); + int var13 = var0.getDebugGraphicsOptions(); + SpaceWar.SpacePanel var14 = new SpaceWar.SpacePanel(); + float var15 = var14.getAlignmentX(); + var14.setVisible(false); + var14.nextFocus(); + var14.repaint(1L); + SpaceWar.SpacePanel var21 = new SpaceWar.SpacePanel(); + float var22 = var21.getAlignmentX(); + var21.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var27 = new SpaceWar.SpacePanel(); + float var28 = var27.getAlignmentX(); + var27.setVisible(false); + java.awt.Dimension var31 = var27.getPreferredSize(); + var21.setMaximumSize(var31); + var14.setPreferredSize(var31); + java.awt.Container var34 = var14.getFocusCycleRootAncestor(); + java.awt.image.ColorModel var35 = var14.getColorModel(); + int var36 = var14.getComponentCount(); + java.awt.Component var37 = var0.add((java.awt.Component)var14); + var14.setBounds((-1), 25, 10, (-1)); + SpaceWar.SpacePanel var43 = new SpaceWar.SpacePanel(); + java.awt.Color var44 = var43.getBackground(); + var43.repaint(); + var43.setRequestFocusEnabled(false); + var43.reshape(100, 0, 100, 0); + var43.requestFocus(); + var43.firePropertyChange("hi!", '4', ' '); + java.awt.Point var58 = var43.getLocation(); + java.awt.Dimension var59 = var43.size(); + java.awt.Image var62 = var43.createImage((-1), (-1)); + SpaceWar.SpacePanel var63 = new SpaceWar.SpacePanel(); + float var64 = var63.getAlignmentX(); + var63.setVisible(false); + boolean var67 = var63.isDoubleBuffered(); + java.awt.dnd.DropTarget var68 = var63.getDropTarget(); + var63.show(false); + boolean var71 = var63.isPaintingForPrint(); + SpaceWar.SpacePanel var72 = new SpaceWar.SpacePanel(); + float var73 = var72.getAlignmentX(); + var72.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var78 = var72.getMouseListeners(); + int var79 = var72.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var80 = var72.getInputMethodRequests(); + var63.addKeyListener((java.awt.event.KeyListener)var72); + var72.repaint(); + java.awt.Point var83 = var72.location(); + java.awt.Component var84 = var43.findComponentAt(var83); + var14.setLocation(var83); + java.lang.String var86 = var14.getToolTipText(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var22 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var28 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var31); + + // Regression assertion (captures the current behavior of the code) + assertNull(var34); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var35); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var36 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var37); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var44); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var58); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var59); + + // Regression assertion (captures the current behavior of the code) + assertNull(var62); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var64 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var67 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var68); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var71 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var73 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var78); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var79 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var80); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var83); + + // Regression assertion (captures the current behavior of the code) + assertNull(var84); + + // Regression assertion (captures the current behavior of the code) + assertNull(var86); + + } + + public void test332() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test332"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + SpaceWar.SpacePanel var2 = new SpaceWar.SpacePanel(); + float var3 = var2.getAlignmentX(); + var2.setVisible(false); + java.awt.Dimension var6 = var2.getPreferredSize(); + boolean var7 = var2.getVerifyInputWhenFocusTarget(); + java.awt.Component var10 = var2.findComponentAt(10, 1); + var0.addKeyListener((java.awt.event.KeyListener)var2); + var2.repaint(100, (-1), (-1), 1); + SpaceWar.SpacePanel var17 = new SpaceWar.SpacePanel(); + java.awt.Color var18 = var17.getBackground(); + var17.repaint(); + java.awt.im.InputMethodRequests var20 = var17.getInputMethodRequests(); + java.awt.GraphicsConfiguration var21 = var17.getGraphicsConfiguration(); + var2.remove((java.awt.Component)var17); + var17.setName(""); + var17.repaint(99, 100, 100, 1); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertNull(var21); + + } + + public void test333() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test333"); + + + SpaceWar.Player var0 = new SpaceWar.Player(); + boolean var1 = var0.isRecovering(); + int var2 = var0.getRequiredPower(); + var0.setDown(false); + var0.setRigth(false); + int var7 = var0.getPowerLevel(); + int var8 = var0.getR(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var2 == 1); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 25); + + } + + public void test334() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test334"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + boolean var2 = var0.hasFocus(); + boolean var3 = var0.isPreferredSizeSet(); + var0.firePropertyChange("", (short)1, (short)0); + boolean var8 = var0.isMaximumSizeSet(); + java.awt.image.ColorModel var9 = var0.getColorModel(); + var0.enableInputMethods(true); + var0.setAlignmentX(10.0f); + java.awt.Dimension var14 = var0.getMinimumSize(); + java.awt.Container var15 = var0.getTopLevelAncestor(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var2 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var9); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertNull(var15); + + } + + public void test335() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test335"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + float var7 = var6.getAlignmentX(); + var6.setVisible(false); + SpaceWar.SpacePanel var10 = new SpaceWar.SpacePanel(); + java.awt.Color var11 = var10.getBackground(); + var6.setForeground(var11); + var0.setBackground(var11); + java.awt.Point var14 = var0.location(); + var0.setToolTipText("SpaceWar.SpacePanel[,0,0,0x0,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + java.awt.event.HierarchyBoundsListener[] var17 = var0.getHierarchyBoundsListeners(); + java.awt.Dimension var18 = var0.preferredSize(); + java.awt.event.MouseMotionListener[] var19 = var0.getMouseMotionListeners(); + java.awt.dnd.DropTarget var20 = var0.getDropTarget(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertNull(var20); + + } + + public void test336() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test336"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + SpaceWar.SpacePanel var2 = new SpaceWar.SpacePanel(); + float var3 = var2.getAlignmentX(); + var2.setVisible(false); + java.awt.Dimension var6 = var2.getPreferredSize(); + boolean var7 = var2.getVerifyInputWhenFocusTarget(); + java.awt.Component var10 = var2.findComponentAt(10, 1); + var0.addKeyListener((java.awt.event.KeyListener)var2); + var2.repaint(100, (-1), (-1), 1); + java.awt.image.ColorModel var17 = var2.getColorModel(); + java.awt.event.MouseWheelListener[] var18 = var2.getMouseWheelListeners(); + var2.setRequestFocusEnabled(false); + boolean var21 = var2.getFocusTraversalKeysEnabled(); + boolean var22 = var2.isFontSet(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var22 == true); + + } + + public void test337() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test337"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + var0.list(); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + float var7 = var6.getAlignmentX(); + var6.setVisible(false); + boolean var10 = var6.isDoubleBuffered(); + java.awt.dnd.DropTarget var11 = var6.getDropTarget(); + var6.show(false); + java.awt.Rectangle var14 = var6.getVisibleRect(); + java.awt.Rectangle var15 = var0.getBounds(var14); + javax.swing.JToolTip var16 = var0.createToolTip(); + java.awt.Graphics var17 = var0.getGraphics(); + float var18 = var0.getAlignmentY(); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + float var20 = var19.getAlignmentX(); + var19.setVisible(false); + var19.nextFocus(); + var19.updateUI(); + var19.enableInputMethods(true); + java.awt.Point var28 = var19.getMousePosition(false); + java.awt.Point var29 = var19.getMousePosition(); + var19.revalidate(); + java.awt.Dimension var31 = var19.getPreferredSize(); + java.awt.ComponentOrientation var32 = var19.getComponentOrientation(); + boolean var33 = var0.isFocusCycleRoot((java.awt.Container)var19); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNull(var28); + + // Regression assertion (captures the current behavior of the code) + assertNull(var29); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var31); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var32); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var33 == false); + + } + + public void test338() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test338"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + var0.list(); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + float var7 = var6.getAlignmentX(); + var6.setVisible(false); + boolean var10 = var6.isDoubleBuffered(); + java.awt.dnd.DropTarget var11 = var6.getDropTarget(); + var6.show(false); + java.awt.Rectangle var14 = var6.getVisibleRect(); + java.awt.Rectangle var15 = var0.getBounds(var14); + javax.swing.JToolTip var16 = var0.createToolTip(); + var0.firePropertyChange("", false, false); + var0.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", (-1L), (-1L)); + var0.validate(); + boolean var26 = var0.isForegroundSet(); + SpaceWar.SpacePanel var27 = new SpaceWar.SpacePanel(); + float var28 = var27.getAlignmentX(); + var27.setVisible(false); + java.awt.Dimension var31 = var27.getPreferredSize(); + boolean var32 = var27.getVerifyInputWhenFocusTarget(); + java.awt.Component var35 = var27.findComponentAt(10, 1); + boolean var36 = var27.requestDefaultFocus(); + java.awt.Insets var37 = var27.getInsets(); + var27.setDoubleBuffered(false); + java.awt.Point var41 = var27.getMousePosition(true); + boolean var42 = var27.getFocusTraversalKeysEnabled(); + java.awt.Dimension var43 = var27.getSize(); + java.awt.Dimension var44 = var27.getMinimumSize(); + var0.setSize(var44); + int var48 = var0.getBaseline(399, 10); + boolean var49 = var0.isOptimizedDrawingEnabled(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var28 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var31); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var32 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var35); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var36 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var37); + + // Regression assertion (captures the current behavior of the code) + assertNull(var41); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var42 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var43); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var44); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var48 == (-1)); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var49 == true); + + } + + public void test339() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test339"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + SpaceWar.SpacePanel var2 = new SpaceWar.SpacePanel(); + float var3 = var2.getAlignmentX(); + var2.setVisible(false); + java.awt.Dimension var6 = var2.getPreferredSize(); + boolean var7 = var2.getVerifyInputWhenFocusTarget(); + java.awt.Component var10 = var2.findComponentAt(10, 1); + var0.addKeyListener((java.awt.event.KeyListener)var2); + var2.repaint(100, (-1), (-1), 1); + SpaceWar.SpacePanel var17 = new SpaceWar.SpacePanel(); + java.awt.Color var18 = var17.getBackground(); + var17.repaint(); + java.awt.im.InputMethodRequests var20 = var17.getInputMethodRequests(); + java.awt.GraphicsConfiguration var21 = var17.getGraphicsConfiguration(); + var2.remove((java.awt.Component)var17); + var17.setName(""); + java.awt.Image var27 = var17.createImage(1, 3); + var17.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=8,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, true); + boolean var32 = var17.isRequestFocusEnabled(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertNull(var21); + + // Regression assertion (captures the current behavior of the code) + assertNull(var27); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var32 == true); + + } + + public void test340() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test340"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + SpaceWar.SpacePanel var4 = new SpaceWar.SpacePanel(); + java.awt.Color var5 = var4.getBackground(); + var0.setForeground(var5); + SpaceWar.SpacePanel var7 = new SpaceWar.SpacePanel(); + float var8 = var7.getAlignmentX(); + var7.setVisible(false); + boolean var11 = var7.isDoubleBuffered(); + java.awt.dnd.DropTarget var12 = var7.getDropTarget(); + var7.show(false); + java.awt.Rectangle var15 = var7.getVisibleRect(); + var0.repaint(var15); + java.awt.FocusTraversalPolicy var17 = var0.getFocusTraversalPolicy(); + java.awt.im.InputMethodRequests var18 = var0.getInputMethodRequests(); + javax.swing.JToolTip var19 = var0.createToolTip(); + javax.swing.border.Border var20 = var0.getBorder(); + var0.enable(true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertNull(var20); + + } + + public void test341() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test341"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + var0.enable(false); + var0.setName("SpaceWar.SpacePanel[,-1,1,-1x10,invalid,hidden,disabled,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + var0.repaint(25, 24, 24, 498); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + } + + public void test342() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test342"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + java.awt.im.InputMethodRequests var3 = var0.getInputMethodRequests(); + var0.list(); + int var5 = var0.getHeight(); + javax.accessibility.AccessibleContext var6 = var0.getAccessibleContext(); + SpaceWar.SpacePanel var7 = new SpaceWar.SpacePanel(); + float var8 = var7.getAlignmentX(); + var7.setVisible(false); + SpaceWar.SpacePanel var11 = new SpaceWar.SpacePanel(); + java.awt.Color var12 = var11.getBackground(); + var7.setForeground(var12); + SpaceWar.SpacePanel var14 = new SpaceWar.SpacePanel(); + float var15 = var14.getAlignmentX(); + var14.setVisible(false); + boolean var18 = var14.isDoubleBuffered(); + java.awt.dnd.DropTarget var19 = var14.getDropTarget(); + var14.show(false); + java.awt.Rectangle var22 = var14.getVisibleRect(); + var7.repaint(var22); + java.awt.FocusTraversalPolicy var24 = var7.getFocusTraversalPolicy(); + java.awt.im.InputMethodRequests var25 = var7.getInputMethodRequests(); + var7.layout(); + java.awt.Container var27 = var7.getFocusCycleRootAncestor(); + var7.setFocusTraversalPolicyProvider(true); + var7.hide(); + // The following exception was thrown during execution. + // This behavior will recorded for regression testing. + try { + var0.setComponentZOrder((java.awt.Component)var7, 399); + fail("Expected exception of type java.lang.IllegalArgumentException"); + } catch (java.lang.IllegalArgumentException e) { + // Expected exception. + } + + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertNull(var25); + + // Regression assertion (captures the current behavior of the code) + assertNull(var27); + + } + + public void test343() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test343"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + var0.setRequestFocusEnabled(false); + var0.reshape(100, 0, 100, 0); + java.beans.VetoableChangeListener[] var10 = var0.getVetoableChangeListeners(); + SpaceWar.SpacePanel var11 = new SpaceWar.SpacePanel(); + float var12 = var11.getAlignmentX(); + var11.setVisible(false); + boolean var15 = var11.isDoubleBuffered(); + var11.list(); + SpaceWar.SpacePanel var17 = new SpaceWar.SpacePanel(); + float var18 = var17.getAlignmentX(); + var17.setVisible(false); + boolean var21 = var17.isDoubleBuffered(); + java.awt.dnd.DropTarget var22 = var17.getDropTarget(); + var17.show(false); + java.awt.Rectangle var25 = var17.getVisibleRect(); + java.awt.Rectangle var26 = var11.getBounds(var25); + javax.swing.JToolTip var27 = var11.createToolTip(); + java.awt.Dimension var28 = var11.minimumSize(); + boolean var30 = var11.requestFocus(false); + java.awt.Dimension var31 = var11.getMaximumSize(); + var0.setPreferredSize(var31); + boolean var33 = var0.isOpaque(); + boolean var34 = var0.isOpaque(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var25); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var27); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var28); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var30 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var31); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var33 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var34 == true); + + } + + public void test344() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test344"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + java.awt.Dimension var4 = var0.getPreferredSize(); + boolean var5 = var0.getVerifyInputWhenFocusTarget(); + java.awt.Component var8 = var0.findComponentAt(10, 1); + boolean var9 = var0.requestDefaultFocus(); + var0.firePropertyChange("hi!", false, true); + javax.swing.ActionMap var14 = var0.getActionMap(); + var0.setDebugGraphicsOptions(10); + boolean var17 = var0.isDoubleBuffered(); + var0.setSize(3, 100); + var0.setDebugGraphicsOptions(0); + var0.resetKeyboardActions(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var4); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == true); + + } + + public void test345() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test345"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.reshape((-1), 1, (-1), 10); + var0.disable(); + java.awt.LayoutManager var11 = var0.getLayout(); + java.awt.Container var12 = var0.getParent(); + boolean var13 = var0.isPaintingForPrint(); + SpaceWar.SpacePanel var14 = new SpaceWar.SpacePanel(); + float var15 = var14.getAlignmentX(); + var14.setVisible(false); + var14.nextFocus(); + var14.reshape((-1), 1, (-1), 10); + SpaceWar.SpacePanel var24 = new SpaceWar.SpacePanel(); + java.awt.Color var25 = var24.getBackground(); + var24.repaint(); + var24.setRequestFocusEnabled(false); + var24.reshape(100, 0, 100, 0); + java.awt.Component var34 = var14.add((java.awt.Component)var24); + SpaceWar.SpacePanel var35 = new SpaceWar.SpacePanel(); + var35.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + javax.swing.plaf.PanelUI var40 = var35.getUI(); + SpaceWar.SpacePanel var41 = new SpaceWar.SpacePanel(); + float var42 = var41.getAlignmentX(); + var41.setVisible(false); + var41.nextFocus(); + var41.repaint(1L); + SpaceWar.SpacePanel var48 = new SpaceWar.SpacePanel(); + float var49 = var48.getAlignmentX(); + var48.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var54 = new SpaceWar.SpacePanel(); + float var55 = var54.getAlignmentX(); + var54.setVisible(false); + java.awt.Dimension var58 = var54.getPreferredSize(); + var48.setMaximumSize(var58); + var41.setPreferredSize(var58); + var35.setMaximumSize(var58); + java.awt.Dimension var62 = var24.getSize(var58); + var0.setSize(var62); + SpaceWar.SpacePanel var64 = new SpaceWar.SpacePanel(); + float var65 = var64.getAlignmentX(); + var64.setVisible(false); + boolean var68 = var64.isDoubleBuffered(); + var64.enable(false); + var0.removeKeyListener((java.awt.event.KeyListener)var64); + java.awt.Component var74 = var64.locate(0, 3); + var64.show(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var25); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var34); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var40); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var42 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var49 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var55 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var58); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var62); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var65 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var68 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var74); + + } + + public void test346() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test346"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.updateUI(); + var0.enableInputMethods(true); + java.lang.String var8 = var0.toString(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.setVisible(false); + boolean var13 = var9.isDoubleBuffered(); + java.awt.dnd.DropTarget var14 = var9.getDropTarget(); + var9.show(false); + java.awt.Rectangle var17 = var9.getVisibleRect(); + java.awt.image.BufferedImage var19 = var9.loadImg("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + java.awt.ComponentOrientation var20 = var9.getComponentOrientation(); + boolean var21 = var9.isPaintingTile(); + boolean var22 = var9.isOptimizedDrawingEnabled(); + int var23 = var0.getComponentZOrder((java.awt.Component)var9); + SpaceWar.SpacePanel var24 = new SpaceWar.SpacePanel(); + float var25 = var24.getAlignmentX(); + var24.setVisible(false); + SpaceWar.SpacePanel var28 = new SpaceWar.SpacePanel(); + java.awt.Color var29 = var28.getBackground(); + var24.setForeground(var29); + SpaceWar.SpacePanel var31 = new SpaceWar.SpacePanel(); + float var32 = var31.getAlignmentX(); + var31.setVisible(false); + boolean var35 = var31.isDoubleBuffered(); + java.awt.dnd.DropTarget var36 = var31.getDropTarget(); + var31.show(false); + java.awt.Rectangle var39 = var31.getVisibleRect(); + var24.repaint(var39); + java.awt.FocusTraversalPolicy var41 = var24.getFocusTraversalPolicy(); + javax.swing.TransferHandler var42 = var24.getTransferHandler(); + javax.swing.JToolTip var43 = var24.createToolTip(); + boolean var44 = var43.isValidateRoot(); + SpaceWar.SpacePanel var45 = new SpaceWar.SpacePanel(); + float var46 = var45.getAlignmentX(); + var45.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var51 = var45.getUI(); + java.awt.im.InputMethodRequests var52 = var45.getInputMethodRequests(); + SpaceWar.SpacePanel var53 = new SpaceWar.SpacePanel(); + float var54 = var53.getAlignmentX(); + var53.setVisible(false); + var53.nextFocus(); + var53.updateUI(); + var53.enableInputMethods(true); + var53.setSize((-1), 1); + SpaceWar.SpacePanel var64 = new SpaceWar.SpacePanel(); + var64.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var45.add((java.awt.Component)var53, (java.lang.Object)"SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + java.awt.event.KeyListener[] var70 = var45.getKeyListeners(); + var45.reshape(10, 100, 3, 3); + javax.accessibility.AccessibleContext var76 = var45.getAccessibleContext(); + java.awt.Rectangle var77 = var45.getVisibleRect(); + var43.paintImmediately(var77); + var9.setBounds(var77); + var9.setToolTipText("SpaceWar.SpacePanel[,0,0,0x0,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=java.awt.Dimension[width=800,height=600],minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var8 + "' != '" + "SpaceWar.SpacePanel[,0,0,0var8,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"+ "'", var8.equals("SpaceWar.SpacePanel[,0,0,0var8,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]")); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var22 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == (-1)); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var29); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var32 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var35 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var36); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var39); + + // Regression assertion (captures the current behavior of the code) + assertNull(var41); + + // Regression assertion (captures the current behavior of the code) + assertNull(var42); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var43); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var44 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var46 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var51); + + // Regression assertion (captures the current behavior of the code) + assertNull(var52); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var54 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var70); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var76); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var77); + + } + + public void test347() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test347"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + boolean var2 = var0.hasFocus(); + java.beans.VetoableChangeListener[] var3 = var0.getVetoableChangeListeners(); + var0.firePropertyChange("PanelUI", 1.0f, 100.0f); + boolean var8 = var0.isVisible(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var2 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == true); + + } + + public void test348() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test348"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + var0.setName(""); + java.awt.Toolkit var3 = var0.getToolkit(); + var0.setEnabled(false); + var0.removeNotify(); + var0.setDoubleBuffered(false); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.setVisible(false); + boolean var13 = var9.isDoubleBuffered(); + var9.list(); + SpaceWar.SpacePanel var15 = new SpaceWar.SpacePanel(); + float var16 = var15.getAlignmentX(); + var15.setVisible(false); + boolean var19 = var15.isDoubleBuffered(); + java.awt.dnd.DropTarget var20 = var15.getDropTarget(); + var15.show(false); + java.awt.Rectangle var23 = var15.getVisibleRect(); + java.awt.Rectangle var24 = var9.getBounds(var23); + var0.paintImmediately(var23); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var23); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var24); + + } + + public void test349() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test349"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + var0.list(); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + float var7 = var6.getAlignmentX(); + var6.setVisible(false); + boolean var10 = var6.isDoubleBuffered(); + java.awt.dnd.DropTarget var11 = var6.getDropTarget(); + var6.show(false); + java.awt.Rectangle var14 = var6.getVisibleRect(); + java.awt.Rectangle var15 = var0.getBounds(var14); + javax.swing.JToolTip var16 = var0.createToolTip(); + var0.firePropertyChange("", false, false); + var0.validate(); + var0.setFocusCycleRoot(true); + int var24 = var0.countComponents(); + java.awt.event.KeyListener[] var25 = var0.getKeyListeners(); + java.awt.im.InputContext var26 = var0.getInputContext(); + SpaceWar.SpacePanel var27 = new SpaceWar.SpacePanel(); + float var28 = var27.getAlignmentX(); + var27.setVisible(false); + boolean var31 = var27.isDoubleBuffered(); + java.awt.dnd.DropTarget var32 = var27.getDropTarget(); + var27.show(false); + boolean var35 = var27.isPaintingForPrint(); + boolean var36 = var27.getIgnoreRepaint(); + var27.repaint(100, 10, 100, 0); + SpaceWar.SpacePanel var42 = new SpaceWar.SpacePanel(); + float var43 = var42.getAlignmentX(); + var42.setVisible(false); + boolean var46 = var42.isDoubleBuffered(); + var42.list(); + SpaceWar.SpacePanel var48 = new SpaceWar.SpacePanel(); + float var49 = var48.getAlignmentX(); + var48.setVisible(false); + boolean var52 = var48.isDoubleBuffered(); + java.awt.dnd.DropTarget var53 = var48.getDropTarget(); + var48.show(false); + java.awt.Rectangle var56 = var48.getVisibleRect(); + java.awt.Rectangle var57 = var42.getBounds(var56); + javax.swing.JToolTip var58 = var42.createToolTip(); + var42.firePropertyChange("", false, false); + var42.validate(); + SpaceWar.SpacePanel var64 = new SpaceWar.SpacePanel(); + float var65 = var64.getAlignmentX(); + var64.setVisible(false); + boolean var68 = var64.isDoubleBuffered(); + java.awt.dnd.DropTarget var69 = var64.getDropTarget(); + var64.show(false); + boolean var72 = var64.isPaintingForPrint(); + SpaceWar.SpacePanel var73 = new SpaceWar.SpacePanel(); + float var74 = var73.getAlignmentX(); + var73.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var79 = var73.getMouseListeners(); + int var80 = var73.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var81 = var73.getInputMethodRequests(); + var64.addKeyListener((java.awt.event.KeyListener)var73); + var73.repaint(); + java.awt.Point var84 = var73.location(); + java.awt.Component var85 = var42.getComponentAt(var84); + var27.setLocation(var84); + java.awt.peer.ComponentPeer var87 = var27.getPeer(); + java.awt.Component var88 = var0.add((java.awt.Component)var27); + int var89 = var27.countComponents(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var24 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var25); + + // Regression assertion (captures the current behavior of the code) + assertNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var28 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var31 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var32); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var35 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var36 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var43 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var46 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var49 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var52 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var53); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var56); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var57); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var58); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var65 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var68 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var69); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var72 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var74 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var79); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var80 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var81); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var84); + + // Regression assertion (captures the current behavior of the code) + assertNull(var85); + + // Regression assertion (captures the current behavior of the code) + assertNull(var87); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var88); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var89 == 0); + + } + + public void test350() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test350"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var6 = var0.getMouseListeners(); + java.awt.Dimension var7 = var0.getPreferredSize(); + java.util.Locale var8 = var0.getLocale(); + var0.setFocusable(true); + java.lang.String var11 = var0.getToolTipText(); + SpaceWar.SpacePanel var12 = new SpaceWar.SpacePanel(); + float var13 = var12.getAlignmentX(); + var12.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var18 = new SpaceWar.SpacePanel(); + float var19 = var18.getAlignmentX(); + var18.setVisible(false); + SpaceWar.SpacePanel var22 = new SpaceWar.SpacePanel(); + java.awt.Color var23 = var22.getBackground(); + var18.setForeground(var23); + var12.setBackground(var23); + java.awt.Point var26 = var12.location(); + var0.setLocation(var26); + var0.setDebugGraphicsOptions(2); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var23); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var26); + + } + + public void test351() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test351"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var6 = var0.getUI(); + java.awt.im.InputMethodRequests var7 = var0.getInputMethodRequests(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + var8.nextFocus(); + var8.updateUI(); + var8.enableInputMethods(true); + var8.setSize((-1), 1); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + var19.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var0.add((java.awt.Component)var8, (java.lang.Object)"SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + var8.setAutoscrolls(true); + SpaceWar.SpacePanel var27 = new SpaceWar.SpacePanel(); + float var28 = var27.getAlignmentX(); + boolean var29 = var27.hasFocus(); + boolean var30 = var27.isPreferredSizeSet(); + var27.firePropertyChange("", (short)1, (short)0); + boolean var35 = var27.isMaximumSizeSet(); + java.awt.peer.ComponentPeer var36 = var27.getPeer(); + java.awt.ComponentOrientation var37 = var27.getComponentOrientation(); + var8.setComponentOrientation(var37); + SpaceWar.SpacePanel var39 = new SpaceWar.SpacePanel(); + java.awt.Color var40 = var39.getBackground(); + var39.repaint(); + var39.setRequestFocusEnabled(false); + var39.reshape(100, 0, 100, 0); + java.beans.VetoableChangeListener[] var49 = var39.getVetoableChangeListeners(); + java.awt.Rectangle var50 = var39.getVisibleRect(); + float var51 = var39.getAlignmentY(); + var8.addKeyListener((java.awt.event.KeyListener)var39); + javax.swing.InputVerifier var53 = var39.getInputVerifier(); + float var54 = var39.getAlignmentY(); + int var55 = var39.getDebugGraphicsOptions(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var28 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var29 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var30 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var35 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var36); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var37); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var40); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var49); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var50); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var51 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNull(var53); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var54 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var55 == 0); + + } + + public void test352() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test352"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var1 = new SpaceWar.SpacePanel(); + java.awt.Color var2 = var1.getBackground(); + SpaceWar.SpacePanel var3 = new SpaceWar.SpacePanel(); + float var4 = var3.getAlignmentX(); + var3.setVisible(false); + var3.nextFocus(); + var3.updateUI(); + var3.enableInputMethods(true); + var0.add((java.awt.Component)var1, (java.lang.Object)true); + java.awt.Dimension var12 = var1.getPreferredSize(); + var1.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", (-1.0f), 100.0f); + var1.removeNotify(); + java.awt.Dimension var18 = var1.size(); + java.awt.LayoutManager var19 = var1.getLayout(); + SpaceWar.SpacePanel var20 = new SpaceWar.SpacePanel(); + float var21 = var20.getAlignmentX(); + var20.setVisible(false); + boolean var24 = var20.isDoubleBuffered(); + SpaceWar.SpacePanel var25 = new SpaceWar.SpacePanel(); + java.awt.Color var26 = var25.getBackground(); + var25.repaint(); + java.lang.Object var28 = var20.getClientProperty((java.lang.Object)var25); + int var29 = var1.getComponentZOrder((java.awt.Component)var25); + var1.repaint(1, 24, 400, 505); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var2); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var24 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertNull(var28); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var29 == (-1)); + + } + + public void test353() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test353"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + var0.setRequestFocusEnabled(false); + var0.reshape(100, 0, 100, 0); + java.beans.VetoableChangeListener[] var10 = var0.getVetoableChangeListeners(); + java.awt.Rectangle var11 = var0.getVisibleRect(); + var0.setAlignmentX(100.0f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + } + + public void test354() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test354"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + java.awt.im.InputMethodRequests var3 = var0.getInputMethodRequests(); + int var4 = var0.countComponents(); + java.awt.event.MouseMotionListener[] var5 = var0.getMouseMotionListeners(); + java.awt.Dimension var6 = var0.size(); + boolean var7 = var0.isMinimumSizeSet(); + boolean var8 = var0.getIgnoreRepaint(); + java.beans.VetoableChangeListener[] var9 = var0.getVetoableChangeListeners(); + boolean var10 = var0.isValid(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var9); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == false); + + } + + public void test355() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test355"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + java.awt.im.InputMethodRequests var3 = var0.getInputMethodRequests(); + var0.setDoubleBuffered(true); + var0.show(false); + var0.transferFocusDownCycle(); + javax.swing.KeyStroke[] var9 = var0.getRegisteredKeyStrokes(); + java.awt.GraphicsConfiguration var10 = var0.getGraphicsConfiguration(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var9); + + // Regression assertion (captures the current behavior of the code) + assertNull(var10); + + } + + public void test356() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test356"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var6 = var0.getUI(); + java.awt.im.InputMethodRequests var7 = var0.getInputMethodRequests(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + var8.nextFocus(); + var8.updateUI(); + var8.enableInputMethods(true); + var8.setSize((-1), 1); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + var19.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var0.add((java.awt.Component)var8, (java.lang.Object)"SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + java.awt.ComponentOrientation var25 = var8.getComponentOrientation(); + java.beans.VetoableChangeListener[] var26 = var8.getVetoableChangeListeners(); + int var27 = var8.getHeight(); + var8.enable(true); + java.lang.Object var30 = var8.getTreeLock(); + var8.grabFocus(); + SpaceWar.SpacePanel var32 = new SpaceWar.SpacePanel(); + float var33 = var32.getAlignmentX(); + var32.setVisible(false); + boolean var36 = var32.isDoubleBuffered(); + java.awt.dnd.DropTarget var37 = var32.getDropTarget(); + boolean var38 = var32.isFocusCycleRoot(); + SpaceWar.SpacePanel var39 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var40 = new SpaceWar.SpacePanel(); + java.awt.Color var41 = var40.getBackground(); + SpaceWar.SpacePanel var42 = new SpaceWar.SpacePanel(); + float var43 = var42.getAlignmentX(); + var42.setVisible(false); + var42.nextFocus(); + var42.updateUI(); + var42.enableInputMethods(true); + var39.add((java.awt.Component)var40, (java.lang.Object)true); + java.awt.Dimension var51 = var40.getPreferredSize(); + var32.setSize(var51); + SpaceWar.SpacePanel var53 = new SpaceWar.SpacePanel(); + java.awt.Color var54 = var53.getBackground(); + var32.setForeground(var54); + var8.setBackground(var54); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var25); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == 1); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var30); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var33 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var36 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var37); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var38 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var41); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var43 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var51); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var54); + + } + + public void test357() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test357"); + + + SpaceWar.Player var0 = new SpaceWar.Player(); + int var1 = var0.getPower(); + var0.setLeft(true); + var0.increasePower(0); + int var6 = var0.getRequiredPower(); + int var7 = var0.getR(); + var0.increasePower(25); + int var10 = var0.getLives(); + boolean var11 = var0.isDead(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == 1); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 25); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 3); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == false); + + } + + public void test358() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test358"); + + + SpaceWar.Enemy var2 = new SpaceWar.Enemy(400, 0); + boolean var3 = var2.isDead(); + double var4 = var2.getX(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 254.33601775690047d); + + } + + public void test359() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test359"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + boolean var4 = var0.inside(0, (-1)); + SpaceWar.SpacePanel var5 = new SpaceWar.SpacePanel(); + float var6 = var5.getAlignmentX(); + var5.setVisible(false); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + java.awt.Color var10 = var9.getBackground(); + var5.setForeground(var10); + var0.setForeground(var10); + var0.setAutoscrolls(false); + var0.setVisible(true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var10); + + } + + public void test360() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test360"); + + + SpaceWar.Bullet var3 = new SpaceWar.Bullet(100.0d, 1, 0); + + } + + public void test361() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test361"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var6 = var0.getMouseListeners(); + var0.firePropertyChange("", 0.5f, 100.0f); + var0.enable(false); + SpaceWar.SpacePanel var13 = new SpaceWar.SpacePanel(); + float var14 = var13.getAlignmentX(); + SpaceWar.SpacePanel var15 = new SpaceWar.SpacePanel(); + float var16 = var15.getAlignmentX(); + var15.setVisible(false); + java.awt.Dimension var19 = var15.getPreferredSize(); + boolean var20 = var15.getVerifyInputWhenFocusTarget(); + java.awt.Component var23 = var15.findComponentAt(10, 1); + var13.addKeyListener((java.awt.event.KeyListener)var15); + java.awt.Cursor var25 = var13.getCursor(); + java.awt.Dimension var26 = var13.getMinimumSize(); + var0.setSize(var26); + SpaceWar.SpacePanel var28 = new SpaceWar.SpacePanel(); + java.awt.Color var29 = var28.getBackground(); + var28.repaint(); + java.awt.im.InputMethodRequests var31 = var28.getInputMethodRequests(); + var28.setDoubleBuffered(true); + var28.setInheritsPopupMenu(false); + javax.swing.plaf.PanelUI var36 = var28.getUI(); + java.util.Set var38 = var28.getFocusTraversalKeys(3); + var28.enable(); + var0.putClientProperty((java.lang.Object)var28, (java.lang.Object)(short)10); + java.awt.Color var42 = var28.getForeground(); + var28.transferFocus(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var23); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var25); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var29); + + // Regression assertion (captures the current behavior of the code) + assertNull(var31); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var36); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var38); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var42); + + } + + public void test362() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test362"); + + + SpaceWar.PowerUp var3 = new SpaceWar.PowerUp(100, (-1.0d), 0.0d); + double var4 = var3.getR(); + double var5 = var3.getY(); + boolean var6 = var3.update(); + double var7 = var3.getR(); + double var8 = var3.getR(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0.0d); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == 0.0d); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.0d); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 0.0d); + + } + + public void test363() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test363"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + var0.show(false); + boolean var8 = var0.isPaintingForPrint(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var15 = var9.getMouseListeners(); + int var16 = var9.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var17 = var9.getInputMethodRequests(); + var0.addKeyListener((java.awt.event.KeyListener)var9); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + float var20 = var19.getAlignmentX(); + var19.setVisible(false); + boolean var23 = var19.isDoubleBuffered(); + var19.list(); + float var25 = var19.getAlignmentY(); + boolean var26 = var9.isFocusCycleRoot((java.awt.Container)var19); + javax.swing.JPopupMenu var27 = var19.getComponentPopupMenu(); + var19.move((-1), 100); + var19.validate(); + java.awt.Toolkit var32 = var19.getToolkit(); + var19.disable(); + SpaceWar.SpacePanel var35 = new SpaceWar.SpacePanel(); + var35.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + javax.swing.plaf.PanelUI var40 = var35.getUI(); + boolean var41 = var35.isDisplayable(); + SpaceWar.SpacePanel var42 = new SpaceWar.SpacePanel(); + float var43 = var42.getAlignmentX(); + var42.removeNotify(); + SpaceWar.SpacePanel var45 = new SpaceWar.SpacePanel(); + float var46 = var45.getAlignmentX(); + var45.setVisible(false); + boolean var49 = var45.isDoubleBuffered(); + var45.list(); + float var51 = var45.getAlignmentY(); + java.awt.Insets var52 = var45.getInsets(); + java.awt.Insets var53 = var42.getInsets(var52); + java.awt.Insets var54 = var35.getInsets(var53); + java.awt.ComponentOrientation var55 = var35.getComponentOrientation(); + java.awt.Component var56 = var19.add("SpaceWar.SpacePanel[,0,0,0x0,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=java.awt.Dimension[width=800,height=600],minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", (java.awt.Component)var35); + var19.setIgnoreRepaint(false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var27); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var32); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var40); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var41 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var43 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var46 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var49 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var51 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var52); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var53); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var54); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var55); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var56); + + } + + public void test364() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test364"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + boolean var2 = var0.hasFocus(); + boolean var3 = var0.isPreferredSizeSet(); + var0.firePropertyChange("", (short)1, (short)0); + boolean var8 = var0.isMaximumSizeSet(); + var0.list(); + java.awt.Rectangle var10 = var0.getBounds(); + java.awt.Font var11 = var0.getFont(); + SpaceWar.SpacePanel var12 = new SpaceWar.SpacePanel(); + java.awt.Color var13 = var12.getBackground(); + var12.repaint(); + var12.setRequestFocusEnabled(false); + var12.setIgnoreRepaint(false); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + java.awt.Color var20 = var19.getBackground(); + boolean var23 = var19.inside(0, (-1)); + var19.transferFocusUpCycle(); + java.awt.Container var25 = var19.getParent(); + boolean var26 = var19.isMaximumSizeSet(); + SpaceWar.SpacePanel var27 = new SpaceWar.SpacePanel(); + var27.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + javax.swing.plaf.PanelUI var32 = var27.getUI(); + java.awt.Color var33 = var27.getBackground(); + var27.removeAll(); + var27.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", (short)(-1), (short)100); + java.awt.GraphicsConfiguration var39 = var27.getGraphicsConfiguration(); + SpaceWar.SpacePanel var40 = new SpaceWar.SpacePanel(); + float var41 = var40.getAlignmentX(); + SpaceWar.SpacePanel var42 = new SpaceWar.SpacePanel(); + float var43 = var42.getAlignmentX(); + var42.setVisible(false); + java.awt.Dimension var46 = var42.getPreferredSize(); + boolean var47 = var42.getVerifyInputWhenFocusTarget(); + java.awt.Component var50 = var42.findComponentAt(10, 1); + var40.addKeyListener((java.awt.event.KeyListener)var42); + var42.repaint(100, (-1), (-1), 1); + java.awt.image.ColorModel var57 = var42.getColorModel(); + boolean var58 = var42.isFocusTraversalPolicyProvider(); + var42.show(false); + boolean var61 = var42.isManagingFocus(); + SpaceWar.SpacePanel var62 = new SpaceWar.SpacePanel(); + java.awt.Color var63 = var62.getBackground(); + var62.repaint(); + var62.setRequestFocusEnabled(false); + var62.reshape(100, 0, 100, 0); + var62.requestFocus(); + java.awt.Rectangle var73 = var62.getVisibleRect(); + java.awt.Rectangle var74 = var62.getBounds(); + java.awt.im.InputMethodRequests var75 = var62.getInputMethodRequests(); + boolean var76 = var62.requestFocusInWindow(); + java.awt.Point var78 = var62.getMousePosition(false); + var62.setDebugGraphicsOptions(1); + java.awt.Graphics var81 = var62.getGraphics(); + var42.paint(var81); + var27.paintAll(var81); + var19.printComponents(var81); + var12.paintAll(var81); + var0.print(var81); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var2 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var25); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var32); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var33); + + // Regression assertion (captures the current behavior of the code) + assertNull(var39); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var41 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var43 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var46); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var47 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var50); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var57); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var58 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var61 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var63); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var73); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var74); + + // Regression assertion (captures the current behavior of the code) + assertNull(var75); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var76 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var78); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var81); + + } + + public void test365() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test365"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + java.awt.im.InputMethodRequests var3 = var0.getInputMethodRequests(); + int var4 = var0.countComponents(); + java.awt.Dimension var5 = var0.getSize(); + java.awt.event.MouseWheelListener[] var6 = var0.getMouseWheelListeners(); + var0.setToolTipText("SpaceWar.SpacePanel[,0,0,0x0,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=java.awt.Dimension[width=800,height=600],minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + boolean var9 = var0.isPaintingTile(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == false); + + } + + public void test366() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test366"); + + + SpaceWar.Player var0 = new SpaceWar.Player(); + var0.increasePower(25); + int var3 = var0.getR(); + int var4 = var0.getScore(); + int var5 = var0.getR(); + var0.setRigth(true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == 25); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == 25); + + } + + public void test367() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test367"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + boolean var6 = var0.isFocusOwner(); + java.awt.Dimension var7 = var0.getMinimumSize(); + boolean var8 = var0.requestFocusInWindow(); + var0.reshape(1, (-1), 0, (-1)); + java.beans.PropertyChangeListener[] var14 = var0.getPropertyChangeListeners(); + boolean var15 = var0.isPaintingForPrint(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == false); + + } + + public void test368() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test368"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.updateUI(); + var0.enableInputMethods(true); + java.lang.String var8 = var0.toString(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.setVisible(false); + boolean var13 = var9.isDoubleBuffered(); + java.awt.dnd.DropTarget var14 = var9.getDropTarget(); + var9.show(false); + java.awt.Rectangle var17 = var9.getVisibleRect(); + java.awt.image.BufferedImage var19 = var9.loadImg("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + java.awt.ComponentOrientation var20 = var9.getComponentOrientation(); + boolean var21 = var9.isPaintingTile(); + boolean var22 = var9.isOptimizedDrawingEnabled(); + int var23 = var0.getComponentZOrder((java.awt.Component)var9); + javax.swing.InputMap var24 = var9.getInputMap(); + SpaceWar.SpacePanel var25 = new SpaceWar.SpacePanel(); + float var26 = var25.getAlignmentX(); + var25.setVisible(false); + boolean var29 = var25.isDoubleBuffered(); + java.awt.dnd.DropTarget var30 = var25.getDropTarget(); + var25.show(false); + boolean var33 = var25.isPaintingForPrint(); + SpaceWar.SpacePanel var34 = new SpaceWar.SpacePanel(); + float var35 = var34.getAlignmentX(); + var34.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var40 = var34.getMouseListeners(); + int var41 = var34.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var42 = var34.getInputMethodRequests(); + var25.addKeyListener((java.awt.event.KeyListener)var34); + SpaceWar.SpacePanel var44 = new SpaceWar.SpacePanel(); + float var45 = var44.getAlignmentX(); + var44.setVisible(false); + boolean var48 = var44.isDoubleBuffered(); + var44.list(); + float var50 = var44.getAlignmentY(); + boolean var51 = var34.isFocusCycleRoot((java.awt.Container)var44); + boolean var52 = var44.isEnabled(); + java.awt.Dimension var53 = var44.getMaximumSize(); + var44.setName("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + var44.updateUI(); + boolean var57 = var44.isOptimizedDrawingEnabled(); + boolean var58 = var9.isFocusCycleRoot((java.awt.Container)var44); + SpaceWar.SpacePanel var59 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var60 = new SpaceWar.SpacePanel(); + java.awt.Color var61 = var60.getBackground(); + SpaceWar.SpacePanel var62 = new SpaceWar.SpacePanel(); + float var63 = var62.getAlignmentX(); + var62.setVisible(false); + var62.nextFocus(); + var62.updateUI(); + var62.enableInputMethods(true); + var59.add((java.awt.Component)var60, (java.lang.Object)true); + boolean var71 = var60.requestDefaultFocus(); + boolean var72 = var60.isPaintingForPrint(); + var9.removeKeyListener((java.awt.event.KeyListener)var60); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var8 + "' != '" + "SpaceWar.SpacePanel[,0,0,0var8,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"+ "'", var8.equals("SpaceWar.SpacePanel[,0,0,0var8,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]")); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var22 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == (-1)); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var29 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var30); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var33 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var35 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var40); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var41 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var42); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var45 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var48 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var50 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var51 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var52 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var53); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var57 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var58 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var61); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var63 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var71 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var72 == false); + + } + + public void test369() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test369"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + var0.show(false); + java.awt.Rectangle var8 = var0.getVisibleRect(); + java.awt.image.BufferedImage var10 = var0.loadImg("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + java.awt.ComponentOrientation var11 = var0.getComponentOrientation(); + boolean var12 = var0.isPaintingTile(); + var0.move(505, 0); + SpaceWar.SpacePanel var16 = new SpaceWar.SpacePanel(); + float var17 = var16.getAlignmentX(); + var16.setVisible(false); + var16.setInheritsPopupMenu(false); + boolean var22 = var16.isDoubleBuffered(); + java.awt.Rectangle var23 = var16.getBounds(); + var0.paintImmediately(var23); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var22 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var23); + + } + + public void test370() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test370"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + var0.setRequestFocusEnabled(false); + var0.reshape(100, 0, 100, 0); + var0.requestFocus(); + var0.firePropertyChange("hi!", '4', ' '); + java.awt.Point var15 = var0.getLocation(); + java.awt.Dimension var16 = var0.size(); + java.awt.Image var19 = var0.createImage((-1), (-1)); + java.awt.event.ComponentListener[] var20 = var0.getComponentListeners(); + SpaceWar.SpacePanel var21 = new SpaceWar.SpacePanel(); + var21.setName(""); + java.awt.ComponentOrientation var24 = var21.getComponentOrientation(); + var21.firePropertyChange("PanelUI", 1.0f, 0.5f); + int var29 = var0.getComponentZOrder((java.awt.Component)var21); + SpaceWar.SpacePanel var30 = new SpaceWar.SpacePanel(); + float var31 = var30.getAlignmentX(); + var30.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var36 = var30.getUI(); + java.awt.im.InputMethodRequests var37 = var30.getInputMethodRequests(); + SpaceWar.SpacePanel var38 = new SpaceWar.SpacePanel(); + float var39 = var38.getAlignmentX(); + var38.setVisible(false); + var38.nextFocus(); + var38.updateUI(); + var38.enableInputMethods(true); + var38.setSize((-1), 1); + SpaceWar.SpacePanel var49 = new SpaceWar.SpacePanel(); + var49.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var30.add((java.awt.Component)var38, (java.lang.Object)"SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + SpaceWar.SpacePanel var55 = new SpaceWar.SpacePanel(); + float var56 = var55.getAlignmentX(); + var55.setVisible(false); + var55.setInheritsPopupMenu(false); + boolean var61 = var55.isDoubleBuffered(); + boolean var62 = var55.isMinimumSizeSet(); + SpaceWar.SpacePanel var63 = new SpaceWar.SpacePanel(); + float var64 = var63.getAlignmentX(); + var63.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var69 = new SpaceWar.SpacePanel(); + float var70 = var69.getAlignmentX(); + var69.setVisible(false); + java.awt.Dimension var73 = var69.getPreferredSize(); + var63.setMaximumSize(var73); + boolean var75 = var63.getVerifyInputWhenFocusTarget(); + javax.accessibility.AccessibleContext var76 = var63.getAccessibleContext(); + boolean var77 = var63.isDoubleBuffered(); + java.awt.Rectangle var78 = var63.getVisibleRect(); + var55.setBounds(var78); + java.awt.Rectangle var80 = var30.getBounds(var78); + var0.computeVisibleRect(var78); + java.awt.image.ColorModel var82 = var0.getColorModel(); + boolean var83 = var0.isEnabled(); + java.awt.Component var84 = var0.getNextFocusableComponent(); + var0.nextFocus(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var29 == (-1)); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var31 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var36); + + // Regression assertion (captures the current behavior of the code) + assertNull(var37); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var39 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var56 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var61 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var62 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var64 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var70 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var73); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var75 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var76); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var77 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var78); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var80); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var82); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var83 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var84); + + } + + public void test371() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test371"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + var0.setRequestFocusEnabled(false); + var0.setIgnoreRepaint(false); + java.lang.String var7 = var0.toString(); + java.awt.Color var8 = var0.getBackground(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.setVisible(false); + java.awt.Dimension var13 = var9.getPreferredSize(); + java.awt.Toolkit var14 = var9.getToolkit(); + java.awt.Toolkit var15 = var9.getToolkit(); + SpaceWar.Player var16 = new SpaceWar.Player(); + var16.increasePower(25); + int var19 = var16.getScore(); + var16.setRigth(true); + var16.loseLife(); + var0.putClientProperty((java.lang.Object)var9, (java.lang.Object)var16); + var16.setDown(false); + var16.setLeft(true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var7 + "' != '" + "SpaceWar.SpacePanel[,0,0,0var7,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"+ "'", var7.equals("SpaceWar.SpacePanel[,0,0,0var7,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]")); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == 0); + + } + + public void test372() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test372"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + boolean var2 = var0.hasFocus(); + SpaceWar.SpacePanel var3 = new SpaceWar.SpacePanel(); + float var4 = var3.getAlignmentX(); + var3.setVisible(false); + var3.nextFocus(); + var3.reshape((-1), 1, (-1), 10); + var3.disable(); + java.awt.LayoutManager var14 = var3.getLayout(); + var3.setVisible(false); + var0.remove((java.awt.Component)var3); + var3.repaint(); + boolean var19 = var3.hasFocus(); + var3.nextFocus(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var2 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == false); + + } + + public void test373() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test373"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + java.awt.im.InputMethodRequests var3 = var0.getInputMethodRequests(); + var0.list(); + int var5 = var0.getHeight(); + var0.disable(); + var0.setLocation(2, 24); + SpaceWar.SpacePanel var10 = new SpaceWar.SpacePanel(); + float var11 = var10.getAlignmentX(); + var10.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var16 = var10.getMouseListeners(); + java.awt.Dimension var17 = var10.getPreferredSize(); + java.util.Locale var18 = var10.getLocale(); + var0.setLocale(var18); + boolean var20 = var0.isShowing(); + boolean var21 = var0.isValid(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == false); + + } + + public void test374() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test374"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + java.awt.Dimension var4 = var0.getPreferredSize(); + boolean var5 = var0.getVerifyInputWhenFocusTarget(); + java.awt.Component var8 = var0.findComponentAt(10, 1); + boolean var9 = var0.requestDefaultFocus(); + boolean var10 = var0.isPaintingTile(); + SpaceWar.SpacePanel var11 = new SpaceWar.SpacePanel(); + java.awt.Color var12 = var11.getBackground(); + var11.repaint(); + java.awt.im.InputMethodRequests var14 = var11.getInputMethodRequests(); + var11.setDoubleBuffered(true); + var11.setInheritsPopupMenu(false); + javax.swing.InputMap var19 = var11.getInputMap(); + java.awt.Point var20 = var11.location(); + SpaceWar.SpacePanel var21 = new SpaceWar.SpacePanel(); + float var22 = var21.getAlignmentX(); + var21.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var27 = var21.getUI(); + java.awt.im.InputMethodRequests var28 = var21.getInputMethodRequests(); + SpaceWar.SpacePanel var29 = new SpaceWar.SpacePanel(); + float var30 = var29.getAlignmentX(); + var29.setVisible(false); + var29.nextFocus(); + var29.updateUI(); + var29.enableInputMethods(true); + var29.setSize((-1), 1); + SpaceWar.SpacePanel var40 = new SpaceWar.SpacePanel(); + var40.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var21.add((java.awt.Component)var29, (java.lang.Object)"SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + var29.setAutoscrolls(true); + SpaceWar.SpacePanel var48 = new SpaceWar.SpacePanel(); + float var49 = var48.getAlignmentX(); + var48.setVisible(false); + var48.nextFocus(); + var48.reshape((-1), 1, (-1), 10); + var48.disable(); + java.awt.Component var61 = var48.findComponentAt(0, (-1)); + SpaceWar.SpacePanel var62 = new SpaceWar.SpacePanel(); + var62.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + javax.swing.plaf.PanelUI var67 = var62.getUI(); + SpaceWar.SpacePanel var68 = new SpaceWar.SpacePanel(); + float var69 = var68.getAlignmentX(); + var68.setVisible(false); + var68.nextFocus(); + var68.repaint(1L); + SpaceWar.SpacePanel var75 = new SpaceWar.SpacePanel(); + float var76 = var75.getAlignmentX(); + var75.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var81 = new SpaceWar.SpacePanel(); + float var82 = var81.getAlignmentX(); + var81.setVisible(false); + java.awt.Dimension var85 = var81.getPreferredSize(); + var75.setMaximumSize(var85); + var68.setPreferredSize(var85); + var62.setMaximumSize(var85); + var48.setSize(var85); + var29.setMaximumSize(var85); + var11.setMinimumSize(var85); + var0.setPreferredSize(var85); + java.awt.ComponentOrientation var93 = var0.getComponentOrientation(); + var0.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=java.awt.Dimension[width=800,height=600],minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var4); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var22 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var27); + + // Regression assertion (captures the current behavior of the code) + assertNull(var28); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var30 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var49 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNull(var61); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var67); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var69 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var76 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var82 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var85); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var93); + + } + + public void test375() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test375"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + boolean var2 = var0.hasFocus(); + java.awt.Insets var3 = var0.getInsets(); + java.awt.Rectangle var4 = var0.bounds(); + java.awt.event.MouseMotionListener[] var5 = var0.getMouseMotionListeners(); + boolean var6 = var0.isMaximumSizeSet(); + java.awt.LayoutManager var7 = var0.getLayout(); + boolean var8 = var0.isPreferredSizeSet(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + boolean var11 = var9.hasFocus(); + boolean var12 = var9.isPreferredSizeSet(); + var9.firePropertyChange("", (short)1, (short)0); + boolean var17 = var9.isMaximumSizeSet(); + java.awt.peer.ComponentPeer var18 = var9.getPeer(); + java.awt.ComponentOrientation var19 = var9.getComponentOrientation(); + var0.applyComponentOrientation(var19); + boolean var21 = var0.getVerifyInputWhenFocusTarget(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var2 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var4); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == true); + + } + + public void test376() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test376"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.setDoubleBuffered(true); + var0.repaint(0, 500, 2, 24); + java.awt.Cursor var11 = var0.getCursor(); + int var12 = var0.getX(); + var0.setEnabled(false); + java.util.Locale var15 = var0.getLocale(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + } + + public void test377() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test377"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.reshape((-1), 1, (-1), 10); + var0.disable(); + java.awt.LayoutManager var11 = var0.getLayout(); + java.awt.Container var12 = var0.getParent(); + java.lang.String var13 = var0.getUIClassID(); + var0.setVerifyInputWhenFocusTarget(true); + boolean var16 = var0.isRequestFocusEnabled(); + var0.setVerifyInputWhenFocusTarget(false); + java.awt.Toolkit var19 = var0.getToolkit(); + SpaceWar.SpacePanel var20 = new SpaceWar.SpacePanel(); + float var21 = var20.getAlignmentX(); + var20.setVisible(false); + var20.nextFocus(); + var20.reshape((-1), 1, (-1), 10); + var20.disable(); + java.awt.LayoutManager var31 = var20.getLayout(); + var20.setVisible(false); + SpaceWar.SpacePanel var34 = new SpaceWar.SpacePanel(); + float var35 = var34.getAlignmentX(); + var34.setVisible(false); + var34.setInheritsPopupMenu(false); + boolean var40 = var34.isDoubleBuffered(); + boolean var41 = var34.isMinimumSizeSet(); + SpaceWar.SpacePanel var42 = new SpaceWar.SpacePanel(); + float var43 = var42.getAlignmentX(); + var42.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var48 = new SpaceWar.SpacePanel(); + float var49 = var48.getAlignmentX(); + var48.setVisible(false); + java.awt.Dimension var52 = var48.getPreferredSize(); + var42.setMaximumSize(var52); + boolean var54 = var42.getVerifyInputWhenFocusTarget(); + javax.accessibility.AccessibleContext var55 = var42.getAccessibleContext(); + boolean var56 = var42.isDoubleBuffered(); + java.awt.Rectangle var57 = var42.getVisibleRect(); + var34.setBounds(var57); + var20.computeVisibleRect(var57); + SpaceWar.SpacePanel var60 = new SpaceWar.SpacePanel(); + float var61 = var60.getAlignmentX(); + var60.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var66 = new SpaceWar.SpacePanel(); + float var67 = var66.getAlignmentX(); + var66.setVisible(false); + java.awt.Dimension var70 = var66.getPreferredSize(); + var60.setMaximumSize(var70); + boolean var72 = var60.getVerifyInputWhenFocusTarget(); + int var73 = var60.getX(); + java.awt.Rectangle var74 = var60.bounds(); + var20.remove((java.awt.Component)var60); + java.awt.Rectangle var76 = var20.bounds(); + var0.setBounds(var76); + javax.swing.KeyStroke[] var78 = var0.getRegisteredKeyStrokes(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var13 + "' != '" + "PanelUI"+ "'", var13.equals("PanelUI")); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var31); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var35 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var40 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var41 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var43 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var49 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var52); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var54 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var55); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var56 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var57); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var61 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var67 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var70); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var72 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var73 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var74); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var76); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var78); + + } + + public void test378() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test378"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + boolean var2 = var0.hasFocus(); + SpaceWar.SpacePanel var3 = new SpaceWar.SpacePanel(); + float var4 = var3.getAlignmentX(); + var3.setVisible(false); + boolean var7 = var3.isDoubleBuffered(); + java.awt.dnd.DropTarget var8 = var3.getDropTarget(); + boolean var9 = var3.isFocusCycleRoot(); + var3.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", 100, 0); + SpaceWar.SpacePanel var14 = new SpaceWar.SpacePanel(); + float var15 = var14.getAlignmentX(); + var14.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var20 = var14.getUI(); + var3.add((java.awt.Component)var14, (java.lang.Object)(short)0); + java.awt.Insets var23 = var14.getInsets(); + java.awt.Insets var24 = var0.getInsets(var23); + var0.revalidate(); + var0.removeNotify(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var2 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var23); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var24); + + } + + public void test379() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test379"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + boolean var6 = var0.isFocusTraversalPolicyProvider(); + SpaceWar.SpacePanel var7 = new SpaceWar.SpacePanel(); + java.awt.Color var8 = var7.getBackground(); + var7.repaint(); + var7.setRequestFocusEnabled(false); + var7.reshape(100, 0, 100, 0); + var7.requestFocus(); + var7.firePropertyChange("hi!", '4', ' '); + java.awt.Point var22 = var7.getLocation(); + java.awt.Dimension var23 = var7.size(); + boolean var24 = var7.isDoubleBuffered(); + var7.reshape(0, 3, 25, 3); + java.awt.Font var30 = var7.getFont(); + var0.setFont(var30); + var0.setEnabled(false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var23); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var24 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var30); + + } + + public void test380() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test380"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + var0.setRequestFocusEnabled(false); + var0.reshape(100, 0, 100, 0); + javax.swing.event.AncestorListener[] var10 = var0.getAncestorListeners(); + int var11 = var0.getWidth(); + var0.list(); + SpaceWar.SpacePanel var13 = new SpaceWar.SpacePanel(); + float var14 = var13.getAlignmentX(); + boolean var15 = var13.hasFocus(); + boolean var16 = var13.isPreferredSizeSet(); + var13.firePropertyChange("", (short)1, (short)0); + boolean var21 = var13.isMaximumSizeSet(); + java.awt.image.ColorModel var22 = var13.getColorModel(); + var13.enableInputMethods(true); + var13.reshape(400, 3, 10, 2); + java.awt.Toolkit var30 = var13.getToolkit(); + javax.swing.ActionMap var31 = var13.getActionMap(); + var0.setActionMap(var31); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == 100); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var30); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var31); + + } + + public void test381() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test381"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + SpaceWar.SpacePanel var4 = new SpaceWar.SpacePanel(); + java.awt.Color var5 = var4.getBackground(); + var0.setForeground(var5); + SpaceWar.SpacePanel var7 = new SpaceWar.SpacePanel(); + float var8 = var7.getAlignmentX(); + var7.setVisible(false); + boolean var11 = var7.isDoubleBuffered(); + java.awt.dnd.DropTarget var12 = var7.getDropTarget(); + var7.show(false); + java.awt.Rectangle var15 = var7.getVisibleRect(); + var0.repaint(var15); + java.awt.FocusTraversalPolicy var17 = var0.getFocusTraversalPolicy(); + java.awt.im.InputMethodRequests var18 = var0.getInputMethodRequests(); + var0.layout(); + java.awt.Container var20 = var0.getFocusCycleRootAncestor(); + var0.setFocusTraversalPolicyProvider(true); + var0.hide(); + java.beans.PropertyChangeListener[] var25 = var0.getPropertyChangeListeners("SpaceWar.SpacePanel[,0,0,0x0,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + boolean var26 = var0.isDisplayable(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var25); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == false); + + } + + public void test382() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test382"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + SpaceWar.SpacePanel var4 = new SpaceWar.SpacePanel(); + java.awt.Color var5 = var4.getBackground(); + var0.setForeground(var5); + SpaceWar.SpacePanel var7 = new SpaceWar.SpacePanel(); + float var8 = var7.getAlignmentX(); + var7.setVisible(false); + boolean var11 = var7.isDoubleBuffered(); + java.awt.dnd.DropTarget var12 = var7.getDropTarget(); + var7.show(false); + java.awt.Rectangle var15 = var7.getVisibleRect(); + var0.repaint(var15); + java.awt.FocusTraversalPolicy var17 = var0.getFocusTraversalPolicy(); + var0.resetKeyboardActions(); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + float var20 = var19.getAlignmentX(); + var19.setVisible(false); + boolean var23 = var19.isDoubleBuffered(); + java.awt.dnd.DropTarget var24 = var19.getDropTarget(); + var19.show(false); + java.awt.Rectangle var27 = var19.getVisibleRect(); + var0.computeVisibleRect(var27); + javax.swing.ActionMap var29 = var0.getActionMap(); + SpaceWar.SpacePanel var30 = new SpaceWar.SpacePanel(); + float var31 = var30.getAlignmentX(); + var30.setVisible(false); + boolean var34 = var30.isDoubleBuffered(); + var30.list(); + SpaceWar.SpacePanel var36 = new SpaceWar.SpacePanel(); + float var37 = var36.getAlignmentX(); + var36.setVisible(false); + boolean var40 = var36.isDoubleBuffered(); + java.awt.dnd.DropTarget var41 = var36.getDropTarget(); + var36.show(false); + java.awt.Rectangle var44 = var36.getVisibleRect(); + java.awt.Rectangle var45 = var30.getBounds(var44); + javax.swing.JToolTip var46 = var30.createToolTip(); + var30.firePropertyChange("", false, false); + var30.validate(); + SpaceWar.SpacePanel var52 = new SpaceWar.SpacePanel(); + float var53 = var52.getAlignmentX(); + boolean var54 = var52.hasFocus(); + java.beans.VetoableChangeListener[] var55 = var52.getVetoableChangeListeners(); + var0.add((java.awt.Component)var30, (java.lang.Object)var55); + java.lang.String var57 = var30.getUIClassID(); + java.awt.Container var58 = var30.getFocusCycleRootAncestor(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var27); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var29); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var31 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var34 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var40 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var41); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var44); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var45); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var46); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var53 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var54 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var55); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var57 + "' != '" + "PanelUI"+ "'", var57.equals("PanelUI")); + + // Regression assertion (captures the current behavior of the code) + assertNull(var58); + + } + + public void test383() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test383"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + java.awt.im.InputMethodRequests var3 = var0.getInputMethodRequests(); + var0.setDoubleBuffered(true); + var0.show(false); + var0.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", (-1), 24); + java.awt.Point var12 = var0.location(); + java.awt.Dimension var13 = var0.getMinimumSize(); + java.awt.Rectangle var14 = var0.bounds(); + var0.firePropertyChange("SpaceWar.SpacePanel[,499,2,499x500,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", 12.0d, 215.19350638961689d); + var0.layout(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + } + + public void test384() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test384"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.setInheritsPopupMenu(false); + var0.setFocusTraversalPolicyProvider(true); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + java.awt.Color var9 = var8.getBackground(); + boolean var12 = var8.inside(0, (-1)); + var8.transferFocusUpCycle(); + java.awt.Container var14 = var8.getParent(); + boolean var15 = var8.isMaximumSizeSet(); + SpaceWar.SpacePanel var16 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var17 = new SpaceWar.SpacePanel(); + java.awt.Color var18 = var17.getBackground(); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + float var20 = var19.getAlignmentX(); + var19.setVisible(false); + var19.nextFocus(); + var19.updateUI(); + var19.enableInputMethods(true); + var16.add((java.awt.Component)var17, (java.lang.Object)true); + boolean var29 = var17.areFocusTraversalKeysSet(0); + SpaceWar.SpacePanel var30 = new SpaceWar.SpacePanel(); + float var31 = var30.getAlignmentX(); + var30.setVisible(false); + boolean var34 = var30.isDoubleBuffered(); + java.awt.dnd.DropTarget var35 = var30.getDropTarget(); + var30.show(false); + java.awt.Rectangle var38 = var30.getVisibleRect(); + var17.setBounds(var38); + var8.setBounds(var38); + var0.repaint(var38); + java.awt.image.ColorModel var42 = var0.getColorModel(); + boolean var43 = var0.getFocusTraversalKeysEnabled(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var9); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var29 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var31 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var34 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var35); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var38); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var42); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var43 == true); + + } + + public void test385() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test385"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + SpaceWar.SpacePanel var4 = new SpaceWar.SpacePanel(); + java.awt.Color var5 = var4.getBackground(); + var0.setForeground(var5); + SpaceWar.SpacePanel var7 = new SpaceWar.SpacePanel(); + float var8 = var7.getAlignmentX(); + var7.setVisible(false); + boolean var11 = var7.isDoubleBuffered(); + java.awt.dnd.DropTarget var12 = var7.getDropTarget(); + var7.show(false); + java.awt.Rectangle var15 = var7.getVisibleRect(); + var0.repaint(var15); + java.awt.Component.BaselineResizeBehavior var17 = var0.getBaselineResizeBehavior(); + SpaceWar.SpacePanel var18 = new SpaceWar.SpacePanel(); + float var19 = var18.getAlignmentX(); + var18.setVisible(false); + var18.nextFocus(); + var18.repaint(1L); + SpaceWar.SpacePanel var25 = new SpaceWar.SpacePanel(); + float var26 = var25.getAlignmentX(); + var25.setVisible(false); + boolean var29 = var25.isDoubleBuffered(); + var25.list(); + SpaceWar.SpacePanel var31 = new SpaceWar.SpacePanel(); + float var32 = var31.getAlignmentX(); + var31.setVisible(false); + boolean var35 = var31.isDoubleBuffered(); + java.awt.dnd.DropTarget var36 = var31.getDropTarget(); + var31.show(false); + java.awt.Rectangle var39 = var31.getVisibleRect(); + java.awt.Rectangle var40 = var25.getBounds(var39); + var18.setBounds(var40); + var0.paintImmediately(var40); + java.beans.VetoableChangeListener[] var43 = var0.getVetoableChangeListeners(); + var0.move(2, 2); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var29 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var32 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var35 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var36); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var39); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var40); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var43); + + } + + public void test386() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test386"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var1 = new SpaceWar.SpacePanel(); + java.awt.Color var2 = var1.getBackground(); + SpaceWar.SpacePanel var3 = new SpaceWar.SpacePanel(); + float var4 = var3.getAlignmentX(); + var3.setVisible(false); + var3.nextFocus(); + var3.updateUI(); + var3.enableInputMethods(true); + var0.add((java.awt.Component)var1, (java.lang.Object)true); + java.awt.Dimension var12 = var1.getPreferredSize(); + boolean var13 = var1.isValidateRoot(); + java.awt.Point var14 = var1.getMousePosition(); + var1.show(false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var2); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var14); + + } + + public void test387() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test387"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + java.awt.im.InputMethodRequests var3 = var0.getInputMethodRequests(); + var0.setDoubleBuffered(true); + var0.setInheritsPopupMenu(false); + javax.swing.plaf.PanelUI var8 = var0.getUI(); + java.util.Set var10 = var0.getFocusTraversalKeys(3); + var0.requestFocus(); + var0.setAlignmentX(0.0f); + javax.swing.TransferHandler var14 = var0.getTransferHandler(); + java.awt.Component[] var15 = var0.getComponents(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + } + + public void test388() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test388"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + java.awt.Point var6 = var0.getMousePosition(); + java.lang.String var7 = var0.getUIClassID(); + var0.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", '#', '4'); + boolean var12 = var0.requestDefaultFocus(); + var0.enable(false); + var0.setVisible(false); + java.awt.FocusTraversalPolicy var17 = var0.getFocusTraversalPolicy(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var7 + "' != '" + "PanelUI"+ "'", var7.equals("PanelUI")); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + } + + public void test389() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test389"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + boolean var6 = var0.isFocusCycleRoot(); + SpaceWar.SpacePanel var7 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + java.awt.Color var9 = var8.getBackground(); + SpaceWar.SpacePanel var10 = new SpaceWar.SpacePanel(); + float var11 = var10.getAlignmentX(); + var10.setVisible(false); + var10.nextFocus(); + var10.updateUI(); + var10.enableInputMethods(true); + var7.add((java.awt.Component)var8, (java.lang.Object)true); + java.awt.Dimension var19 = var8.getPreferredSize(); + var0.setSize(var19); + var0.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", (-1), 10); + var0.setLocation(10, 100); + SpaceWar.SpacePanel var28 = new SpaceWar.SpacePanel(); + float var29 = var28.getAlignmentX(); + var28.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var34 = var28.getMouseListeners(); + int var35 = var28.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var36 = var28.getInputMethodRequests(); + var28.removeNotify(); + var28.enable(); + SpaceWar.SpacePanel var39 = new SpaceWar.SpacePanel(); + java.awt.Color var40 = var39.getBackground(); + boolean var43 = var39.inside(0, (-1)); + var39.transferFocusUpCycle(); + java.lang.String var45 = var39.getName(); + boolean var46 = var28.isFocusCycleRoot((java.awt.Container)var39); + java.awt.Dimension var47 = var28.getMinimumSize(); + var0.resize(var47); + var0.setAlignmentX((-1.0f)); + SpaceWar.SpacePanel var51 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var52 = new SpaceWar.SpacePanel(); + java.awt.Color var53 = var52.getBackground(); + SpaceWar.SpacePanel var54 = new SpaceWar.SpacePanel(); + float var55 = var54.getAlignmentX(); + var54.setVisible(false); + var54.nextFocus(); + var54.updateUI(); + var54.enableInputMethods(true); + var51.add((java.awt.Component)var52, (java.lang.Object)true); + boolean var64 = var52.areFocusTraversalKeysSet(0); + SpaceWar.SpacePanel var65 = new SpaceWar.SpacePanel(); + float var66 = var65.getAlignmentX(); + var65.setVisible(false); + boolean var69 = var65.isDoubleBuffered(); + java.awt.dnd.DropTarget var70 = var65.getDropTarget(); + var65.show(false); + java.awt.Rectangle var73 = var65.getVisibleRect(); + var52.setBounds(var73); + var0.scrollRectToVisible(var73); + var0.repaint(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var9); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var29 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var34); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var35 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var36); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var40); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var43 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var45); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var46 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var47); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var53); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var55 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var64 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var66 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var69 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var70); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var73); + + } + + public void test390() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test390"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + var0.setRequestFocusEnabled(false); + var0.reshape(100, 0, 100, 0); + java.beans.VetoableChangeListener[] var10 = var0.getVetoableChangeListeners(); + java.awt.Rectangle var11 = var0.getVisibleRect(); + float var12 = var0.getAlignmentY(); + java.awt.Dimension var13 = var0.minimumSize(); + java.awt.Component[] var14 = var0.getComponents(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + } + + public void test391() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test391"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + var0.list(); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + float var7 = var6.getAlignmentX(); + var6.setVisible(false); + boolean var10 = var6.isDoubleBuffered(); + java.awt.dnd.DropTarget var11 = var6.getDropTarget(); + var6.show(false); + java.awt.Rectangle var14 = var6.getVisibleRect(); + java.awt.Rectangle var15 = var0.getBounds(var14); + javax.swing.JToolTip var16 = var0.createToolTip(); + java.awt.Dimension var17 = var0.minimumSize(); + boolean var19 = var0.requestFocus(false); + java.awt.Dimension var20 = var0.getMaximumSize(); + SpaceWar.SpacePanel var21 = new SpaceWar.SpacePanel(); + var21.setName(""); + var21.enable(true); + var21.enable(); + java.awt.Point var27 = var21.location(); + var21.repaint(0, 3, (-1), 1); + var21.setBounds(25, 100, 1, 0); + java.awt.Insets var38 = var21.getInsets(); + java.awt.Insets var39 = var0.getInsets(var38); + var0.enable(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var27); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var38); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var39); + + } + + public void test392() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test392"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + var0.show(false); + java.awt.Rectangle var8 = var0.getVisibleRect(); + java.awt.Toolkit var9 = var0.getToolkit(); + SpaceWar.SpacePanel var10 = new SpaceWar.SpacePanel(); + float var11 = var10.getAlignmentX(); + boolean var12 = var10.hasFocus(); + boolean var13 = var10.isPreferredSizeSet(); + var10.firePropertyChange("", (short)1, (short)0); + boolean var18 = var10.isMaximumSizeSet(); + java.awt.peer.ComponentPeer var19 = var10.getPeer(); + SpaceWar.SpacePanel var20 = new SpaceWar.SpacePanel(); + float var21 = var20.getAlignmentX(); + var20.setVisible(false); + boolean var24 = var20.isDoubleBuffered(); + java.awt.dnd.DropTarget var25 = var20.getDropTarget(); + var20.show(false); + SpaceWar.SpacePanel var28 = new SpaceWar.SpacePanel(); + float var29 = var28.getAlignmentX(); + var28.setVisible(false); + SpaceWar.SpacePanel var32 = new SpaceWar.SpacePanel(); + java.awt.Color var33 = var32.getBackground(); + var28.setForeground(var33); + SpaceWar.SpacePanel var35 = new SpaceWar.SpacePanel(); + float var36 = var35.getAlignmentX(); + var35.setVisible(false); + boolean var39 = var35.isDoubleBuffered(); + java.awt.dnd.DropTarget var40 = var35.getDropTarget(); + var35.show(false); + java.awt.Rectangle var43 = var35.getVisibleRect(); + var28.repaint(var43); + java.awt.FocusTraversalPolicy var45 = var28.getFocusTraversalPolicy(); + java.awt.im.InputMethodRequests var46 = var28.getInputMethodRequests(); + var28.layout(); + SpaceWar.SpacePanel var48 = new SpaceWar.SpacePanel(); + float var49 = var48.getAlignmentX(); + var48.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var54 = new SpaceWar.SpacePanel(); + float var55 = var54.getAlignmentX(); + var54.setVisible(false); + SpaceWar.SpacePanel var58 = new SpaceWar.SpacePanel(); + java.awt.Color var59 = var58.getBackground(); + var54.setForeground(var59); + var48.setBackground(var59); + var28.setForeground(var59); + int var63 = var28.getWidth(); + javax.swing.plaf.PanelUI var64 = var28.getUI(); + var20.setUI(var64); + var10.setUI(var64); + java.awt.event.MouseListener[] var67 = var10.getMouseListeners(); + javax.swing.plaf.PanelUI var68 = var10.getUI(); + boolean var69 = var0.isAncestorOf((java.awt.Component)var10); + boolean var70 = var0.isBackgroundSet(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var9); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var24 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var25); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var29 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var33); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var36 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var39 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var40); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var43); + + // Regression assertion (captures the current behavior of the code) + assertNull(var45); + + // Regression assertion (captures the current behavior of the code) + assertNull(var46); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var49 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var55 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var59); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var63 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var64); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var67); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var68); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var69 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var70 == true); + + } + + public void test393() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test393"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + var0.setRequestFocusEnabled(false); + var0.reshape(100, 0, 100, 0); + var0.requestFocus(); + var0.firePropertyChange("hi!", '4', ' '); + java.awt.Point var15 = var0.getLocation(); + java.awt.Dimension var16 = var0.size(); + java.awt.Image var19 = var0.createImage((-1), (-1)); + java.awt.event.ComponentListener[] var20 = var0.getComponentListeners(); + java.awt.Component var23 = var0.findComponentAt((-1), 500); + java.awt.Toolkit var24 = var0.getToolkit(); + SpaceWar.SpacePanel var25 = new SpaceWar.SpacePanel(); + float var26 = var25.getAlignmentX(); + var25.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var31 = var25.getUI(); + java.awt.im.InputMethodRequests var32 = var25.getInputMethodRequests(); + SpaceWar.SpacePanel var33 = new SpaceWar.SpacePanel(); + float var34 = var33.getAlignmentX(); + var33.setVisible(false); + var33.nextFocus(); + var33.updateUI(); + var33.enableInputMethods(true); + var33.setSize((-1), 1); + SpaceWar.SpacePanel var44 = new SpaceWar.SpacePanel(); + var44.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var25.add((java.awt.Component)var33, (java.lang.Object)"SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + java.awt.ComponentOrientation var50 = var33.getComponentOrientation(); + java.beans.VetoableChangeListener[] var51 = var33.getVetoableChangeListeners(); + int var52 = var33.countComponents(); + boolean var53 = var33.isFocusOwner(); + var33.enable(false); + var33.nextFocus(); + java.awt.Component var57 = var0.add((java.awt.Component)var33); + float var58 = var0.getAlignmentX(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertNull(var23); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var31); + + // Regression assertion (captures the current behavior of the code) + assertNull(var32); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var34 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var50); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var51); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var52 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var53 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var57); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var58 == 0.5f); + + } + + public void test394() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test394"); + + + SpaceWar.Player var0 = new SpaceWar.Player(); + boolean var1 = var0.isRecovering(); + var0.loseLife(); + int var3 = var0.getR(); + var0.loseLife(); + int var5 = var0.getY(); + var0.setRigth(true); + var0.setFiring(false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == 25); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == 500); + + } + + public void test395() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test395"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.updateUI(); + var0.enableInputMethods(true); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + boolean var10 = var8.hasFocus(); + java.awt.Insets var11 = var8.getInsets(); + java.awt.Insets var12 = var0.getInsets(var11); + java.beans.VetoableChangeListener[] var13 = var0.getVetoableChangeListeners(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var13); + + } + + public void test396() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test396"); + + + SpaceWar.Enemy var2 = new SpaceWar.Enemy(0, 0); + double var3 = var2.getY(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == 0.0d); + + } + + public void test397() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test397"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + float var7 = var6.getAlignmentX(); + var6.setVisible(false); + java.awt.Dimension var10 = var6.getPreferredSize(); + var0.setMaximumSize(var10); + boolean var12 = var0.getVerifyInputWhenFocusTarget(); + boolean var13 = var0.isFontSet(); + SpaceWar.SpacePanel var14 = new SpaceWar.SpacePanel(); + float var15 = var14.getAlignmentX(); + SpaceWar.SpacePanel var16 = new SpaceWar.SpacePanel(); + float var17 = var16.getAlignmentX(); + var16.setVisible(false); + java.awt.Dimension var20 = var16.getPreferredSize(); + boolean var21 = var16.getVerifyInputWhenFocusTarget(); + java.awt.Component var24 = var16.findComponentAt(10, 1); + var14.addKeyListener((java.awt.event.KeyListener)var16); + var16.repaint(100, (-1), (-1), 1); + java.awt.image.ColorModel var31 = var16.getColorModel(); + boolean var32 = var16.isPreferredSizeSet(); + java.awt.peer.ComponentPeer var33 = var16.getPeer(); + java.awt.Dimension var34 = var16.getMinimumSize(); + var0.setMaximumSize(var34); + SpaceWar.SpacePanel var36 = new SpaceWar.SpacePanel(); + float var37 = var36.getAlignmentX(); + var36.setVisible(false); + boolean var40 = var36.isDoubleBuffered(); + java.awt.dnd.DropTarget var41 = var36.getDropTarget(); + var36.show(false); + boolean var44 = var36.isPaintingForPrint(); + SpaceWar.SpacePanel var45 = new SpaceWar.SpacePanel(); + float var46 = var45.getAlignmentX(); + var45.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var51 = var45.getMouseListeners(); + int var52 = var45.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var53 = var45.getInputMethodRequests(); + var36.addKeyListener((java.awt.event.KeyListener)var45); + SpaceWar.SpacePanel var55 = new SpaceWar.SpacePanel(); + float var56 = var55.getAlignmentX(); + var55.setVisible(false); + boolean var59 = var55.isDoubleBuffered(); + var55.list(); + float var61 = var55.getAlignmentY(); + boolean var62 = var45.isFocusCycleRoot((java.awt.Container)var55); + boolean var63 = var55.isEnabled(); + java.awt.Dimension var64 = var55.getMaximumSize(); + var55.disable(); + var55.updateUI(); + var55.setFocusable(false); + boolean var69 = var55.isDoubleBuffered(); + java.awt.Point var70 = var55.getLocation(); + boolean var71 = var0.contains(var70); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var31); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var32 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var33); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var34); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var40 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var41); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var44 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var46 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var51); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var52 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var53); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var56 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var59 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var61 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var62 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var63 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var64); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var69 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var70); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var71 == false); + + } + + public void test398() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test398"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + SpaceWar.SpacePanel var2 = new SpaceWar.SpacePanel(); + float var3 = var2.getAlignmentX(); + var2.setVisible(false); + java.awt.Dimension var6 = var2.getPreferredSize(); + boolean var7 = var2.getVerifyInputWhenFocusTarget(); + java.awt.Component var10 = var2.findComponentAt(10, 1); + var0.addKeyListener((java.awt.event.KeyListener)var2); + var2.repaint(100, (-1), (-1), 1); + SpaceWar.SpacePanel var17 = new SpaceWar.SpacePanel(); + java.awt.Color var18 = var17.getBackground(); + var17.repaint(); + java.awt.im.InputMethodRequests var20 = var17.getInputMethodRequests(); + java.awt.GraphicsConfiguration var21 = var17.getGraphicsConfiguration(); + var2.remove((java.awt.Component)var17); + java.awt.event.HierarchyBoundsListener[] var23 = var2.getHierarchyBoundsListeners(); + boolean var24 = var2.isMaximumSizeSet(); + var2.setFocusable(true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertNull(var21); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var23); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var24 == false); + + } + + public void test399() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test399"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.setInheritsPopupMenu(false); + boolean var6 = var0.isDoubleBuffered(); + boolean var7 = var0.getAutoscrolls(); + java.awt.Image var10 = var0.createImage(100, 25); + java.awt.Dimension var11 = var0.size(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + } + + public void test400() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test400"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var6 = var0.getUI(); + java.awt.im.InputMethodRequests var7 = var0.getInputMethodRequests(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + var8.nextFocus(); + var8.updateUI(); + var8.enableInputMethods(true); + var8.setSize((-1), 1); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + var19.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var0.add((java.awt.Component)var8, (java.lang.Object)"SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + java.awt.ComponentOrientation var25 = var8.getComponentOrientation(); + boolean var26 = var8.isMaximumSizeSet(); + java.beans.PropertyChangeListener[] var28 = var8.getPropertyChangeListeners("SpaceWar.SpacePanel[,0,0,0x0,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + boolean var29 = var8.isPaintingForPrint(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var25); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var28); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var29 == false); + + } + + public void test401() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test401"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + int var2 = var0.countComponents(); + boolean var3 = var0.isFontSet(); + java.awt.Component var6 = var0.locate(400, 2); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var2 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var6); + + } + + public void test402() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test402"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + java.awt.Dimension var4 = var0.getPreferredSize(); + java.awt.Toolkit var5 = var0.getToolkit(); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + var6.setName(""); + int var9 = var6.getX(); + SpaceWar.SpacePanel var10 = new SpaceWar.SpacePanel(); + float var11 = var10.getAlignmentX(); + var10.setVisible(false); + var10.nextFocus(); + SpaceWar.SpacePanel var15 = new SpaceWar.SpacePanel(); + float var16 = var15.getAlignmentX(); + var15.setVisible(false); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + java.awt.Color var20 = var19.getBackground(); + var15.setForeground(var20); + var10.setBackground(var20); + var6.setBackground(var20); + var0.setForeground(var20); + SpaceWar.SpacePanel var25 = new SpaceWar.SpacePanel(); + float var26 = var25.getAlignmentX(); + var25.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var31 = new SpaceWar.SpacePanel(); + float var32 = var31.getAlignmentX(); + var31.setVisible(false); + java.awt.Dimension var35 = var31.getPreferredSize(); + var25.setMaximumSize(var35); + boolean var37 = var25.getVerifyInputWhenFocusTarget(); + javax.accessibility.AccessibleContext var38 = var25.getAccessibleContext(); + boolean var39 = var25.isDoubleBuffered(); + java.awt.Rectangle var40 = var25.getVisibleRect(); + var0.scrollRectToVisible(var40); + SpaceWar.SpacePanel var42 = new SpaceWar.SpacePanel(); + float var43 = var42.getAlignmentX(); + var42.setVisible(false); + java.awt.Dimension var46 = var42.getPreferredSize(); + java.awt.Toolkit var47 = var42.getToolkit(); + SpaceWar.SpacePanel var48 = new SpaceWar.SpacePanel(); + var48.setName(""); + int var51 = var48.getX(); + SpaceWar.SpacePanel var52 = new SpaceWar.SpacePanel(); + float var53 = var52.getAlignmentX(); + var52.setVisible(false); + var52.nextFocus(); + SpaceWar.SpacePanel var57 = new SpaceWar.SpacePanel(); + float var58 = var57.getAlignmentX(); + var57.setVisible(false); + SpaceWar.SpacePanel var61 = new SpaceWar.SpacePanel(); + java.awt.Color var62 = var61.getBackground(); + var57.setForeground(var62); + var52.setBackground(var62); + var48.setBackground(var62); + var42.setForeground(var62); + SpaceWar.SpacePanel var67 = new SpaceWar.SpacePanel(); + float var68 = var67.getAlignmentX(); + var67.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var73 = new SpaceWar.SpacePanel(); + float var74 = var73.getAlignmentX(); + var73.setVisible(false); + java.awt.Dimension var77 = var73.getPreferredSize(); + var67.setMaximumSize(var77); + boolean var79 = var67.getVerifyInputWhenFocusTarget(); + javax.accessibility.AccessibleContext var80 = var67.getAccessibleContext(); + boolean var81 = var67.isDoubleBuffered(); + java.awt.Rectangle var82 = var67.getVisibleRect(); + var42.scrollRectToVisible(var82); + var0.removeKeyListener((java.awt.event.KeyListener)var42); + javax.swing.InputVerifier var85 = var0.getInputVerifier(); + var0.enable(); + var0.setInheritsPopupMenu(true); + javax.swing.InputMap var89 = var0.getInputMap(); + javax.accessibility.AccessibleContext var90 = var0.getAccessibleContext(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var4); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var32 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var35); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var38); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var39 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var40); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var43 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var46); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var47); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var51 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var53 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var58 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var62); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var68 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var74 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var77); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var79 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var80); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var81 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var82); + + // Regression assertion (captures the current behavior of the code) + assertNull(var85); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var89); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var90); + + } + + public void test403() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test403"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + java.awt.Dimension var4 = var0.getPreferredSize(); + boolean var5 = var0.getVerifyInputWhenFocusTarget(); + java.awt.Component var8 = var0.findComponentAt(10, 1); + boolean var9 = var0.requestDefaultFocus(); + var0.setVerifyInputWhenFocusTarget(false); + boolean var12 = var0.isPaintingForPrint(); + SpaceWar.SpacePanel var13 = new SpaceWar.SpacePanel(); + float var14 = var13.getAlignmentX(); + var13.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var19 = var13.getMouseListeners(); + java.awt.Dimension var20 = var13.getPreferredSize(); + int var23 = var13.getBaseline(1, 1); + var13.show(false); + javax.swing.JRootPane var26 = var13.getRootPane(); + SpaceWar.SpacePanel var27 = new SpaceWar.SpacePanel(); + float var28 = var27.getAlignmentX(); + var27.setVisible(false); + java.awt.Dimension var31 = var27.getPreferredSize(); + java.awt.Toolkit var32 = var27.getToolkit(); + boolean var33 = var27.isFocusable(); + javax.swing.KeyStroke[] var34 = var27.getRegisteredKeyStrokes(); + SpaceWar.SpacePanel var35 = new SpaceWar.SpacePanel(); + float var36 = var35.getAlignmentX(); + SpaceWar.SpacePanel var37 = new SpaceWar.SpacePanel(); + float var38 = var37.getAlignmentX(); + var37.setVisible(false); + java.awt.Dimension var41 = var37.getPreferredSize(); + boolean var42 = var37.getVerifyInputWhenFocusTarget(); + java.awt.Component var45 = var37.findComponentAt(10, 1); + var35.addKeyListener((java.awt.event.KeyListener)var37); + var37.repaint(100, (-1), (-1), 1); + boolean var52 = var27.isAncestorOf((java.awt.Component)var37); + java.awt.Point var53 = var27.location(); + boolean var54 = var13.contains(var53); + boolean var55 = var0.contains(var53); + var0.enableInputMethods(true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var4); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == (-1)); + + // Regression assertion (captures the current behavior of the code) + assertNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var28 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var31); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var32); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var33 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var34); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var36 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var38 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var41); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var42 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var45); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var52 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var53); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var54 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var55 == false); + + } + + public void test404() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test404"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var6 = var0.getUI(); + java.awt.im.InputMethodRequests var7 = var0.getInputMethodRequests(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + var8.nextFocus(); + var8.updateUI(); + var8.enableInputMethods(true); + var8.setSize((-1), 1); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + var19.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var0.add((java.awt.Component)var8, (java.lang.Object)"SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + var8.setAutoscrolls(true); + SpaceWar.SpacePanel var27 = new SpaceWar.SpacePanel(); + float var28 = var27.getAlignmentX(); + var27.setVisible(false); + var27.nextFocus(); + var27.reshape((-1), 1, (-1), 10); + var27.disable(); + java.awt.Component var40 = var27.findComponentAt(0, (-1)); + SpaceWar.SpacePanel var41 = new SpaceWar.SpacePanel(); + var41.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + javax.swing.plaf.PanelUI var46 = var41.getUI(); + SpaceWar.SpacePanel var47 = new SpaceWar.SpacePanel(); + float var48 = var47.getAlignmentX(); + var47.setVisible(false); + var47.nextFocus(); + var47.repaint(1L); + SpaceWar.SpacePanel var54 = new SpaceWar.SpacePanel(); + float var55 = var54.getAlignmentX(); + var54.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var60 = new SpaceWar.SpacePanel(); + float var61 = var60.getAlignmentX(); + var60.setVisible(false); + java.awt.Dimension var64 = var60.getPreferredSize(); + var54.setMaximumSize(var64); + var47.setPreferredSize(var64); + var41.setMaximumSize(var64); + var27.setSize(var64); + var8.setMaximumSize(var64); + boolean var70 = var8.isMinimumSizeSet(); + javax.swing.event.AncestorListener[] var71 = var8.getAncestorListeners(); + var8.list(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var28 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNull(var40); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var46); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var48 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var55 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var61 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var64); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var70 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var71); + + } + + public void test405() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test405"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + SpaceWar.SpacePanel var5 = new SpaceWar.SpacePanel(); + float var6 = var5.getAlignmentX(); + var5.setVisible(false); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + java.awt.Color var10 = var9.getBackground(); + var5.setForeground(var10); + var0.setBackground(var10); + javax.swing.plaf.PanelUI var13 = var0.getUI(); + java.awt.peer.ComponentPeer var14 = var0.getPeer(); + SpaceWar.SpacePanel var15 = new SpaceWar.SpacePanel(); + float var16 = var15.getAlignmentX(); + var15.setVisible(false); + boolean var19 = var15.isDoubleBuffered(); + var15.list(); + SpaceWar.SpacePanel var21 = new SpaceWar.SpacePanel(); + float var22 = var21.getAlignmentX(); + var21.setVisible(false); + boolean var25 = var21.isDoubleBuffered(); + java.awt.dnd.DropTarget var26 = var21.getDropTarget(); + var21.show(false); + java.awt.Rectangle var29 = var21.getVisibleRect(); + java.awt.Rectangle var30 = var15.getBounds(var29); + javax.swing.JToolTip var31 = var15.createToolTip(); + var15.firePropertyChange("", false, false); + var15.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", (-1L), (-1L)); + var15.validate(); + boolean var41 = var15.isForegroundSet(); + SpaceWar.SpacePanel var42 = new SpaceWar.SpacePanel(); + float var43 = var42.getAlignmentX(); + var42.setVisible(false); + java.awt.Dimension var46 = var42.getPreferredSize(); + boolean var47 = var42.getVerifyInputWhenFocusTarget(); + java.awt.Component var50 = var42.findComponentAt(10, 1); + boolean var51 = var42.requestDefaultFocus(); + java.awt.Insets var52 = var42.getInsets(); + var42.setDoubleBuffered(false); + java.awt.Point var56 = var42.getMousePosition(true); + boolean var57 = var42.getFocusTraversalKeysEnabled(); + java.awt.Dimension var58 = var42.getSize(); + java.awt.Dimension var59 = var42.getMinimumSize(); + var15.setSize(var59); + var0.setMinimumSize(var59); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var22 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var29); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var30); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var31); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var41 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var43 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var46); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var47 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var50); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var51 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var52); + + // Regression assertion (captures the current behavior of the code) + assertNull(var56); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var57 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var58); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var59); + + } + + public void test406() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test406"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + boolean var4 = var0.inside(0, (-1)); + var0.transferFocusUpCycle(); + var0.setDebugGraphicsOptions(24); + java.awt.event.ComponentListener[] var8 = var0.getComponentListeners(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var8); + + } + + public void test407() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test407"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + var0.show(false); + boolean var8 = var0.isPaintingForPrint(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var15 = var9.getMouseListeners(); + int var16 = var9.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var17 = var9.getInputMethodRequests(); + var0.addKeyListener((java.awt.event.KeyListener)var9); + var9.repaint(); + java.awt.Component var22 = var9.findComponentAt(10, (-1)); + java.awt.Container var23 = var9.getFocusCycleRootAncestor(); + javax.swing.event.AncestorListener[] var24 = var9.getAncestorListeners(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertNull(var23); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var24); + + } + + public void test408() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test408"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + var0.enable(false); + java.awt.Container var7 = var0.getTopLevelAncestor(); + javax.swing.InputMap var9 = var0.getInputMap(1); + SpaceWar.SpacePanel var10 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var11 = new SpaceWar.SpacePanel(); + java.awt.Color var12 = var11.getBackground(); + SpaceWar.SpacePanel var13 = new SpaceWar.SpacePanel(); + float var14 = var13.getAlignmentX(); + var13.setVisible(false); + var13.nextFocus(); + var13.updateUI(); + var13.enableInputMethods(true); + var10.add((java.awt.Component)var11, (java.lang.Object)true); + java.awt.Image var24 = var11.createImage(1, (-1)); + java.awt.event.MouseListener[] var25 = var11.getMouseListeners(); + java.awt.Color var26 = var11.getBackground(); + var11.grabFocus(); + boolean var28 = var0.isAncestorOf((java.awt.Component)var11); + SpaceWar.SpacePanel var29 = new SpaceWar.SpacePanel(); + float var30 = var29.getAlignmentX(); + var29.setVisible(false); + boolean var33 = var29.isDoubleBuffered(); + java.awt.dnd.DropTarget var34 = var29.getDropTarget(); + SpaceWar.SpacePanel var35 = new SpaceWar.SpacePanel(); + java.awt.Color var36 = var35.getBackground(); + var35.repaint(); + var35.setRequestFocusEnabled(false); + var35.reshape(100, 0, 100, 0); + var35.requestFocus(); + SpaceWar.SpacePanel var46 = new SpaceWar.SpacePanel(); + float var47 = var46.getAlignmentX(); + var46.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var52 = var46.getUI(); + java.awt.im.InputMethodRequests var53 = var46.getInputMethodRequests(); + SpaceWar.SpacePanel var54 = new SpaceWar.SpacePanel(); + float var55 = var54.getAlignmentX(); + var54.setVisible(false); + var54.nextFocus(); + var54.updateUI(); + var54.enableInputMethods(true); + var54.setSize((-1), 1); + SpaceWar.SpacePanel var65 = new SpaceWar.SpacePanel(); + var65.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var46.add((java.awt.Component)var54, (java.lang.Object)"SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + SpaceWar.SpacePanel var71 = new SpaceWar.SpacePanel(); + var71.setName(""); + java.awt.ComponentOrientation var74 = var71.getComponentOrientation(); + var46.applyComponentOrientation(var74); + var35.setComponentOrientation(var74); + var29.applyComponentOrientation(var74); + boolean var78 = var29.isPaintingForPrint(); + java.awt.Component var79 = var29.getNextFocusableComponent(); + var29.firePropertyChange("", 10L, 10L); + java.awt.Component var84 = var11.add((java.awt.Component)var29); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var9); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var25); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var28 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var30 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var33 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var34); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var36); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var47 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var52); + + // Regression assertion (captures the current behavior of the code) + assertNull(var53); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var55 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var74); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var78 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var79); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var84); + + } + + public void test409() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test409"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + float var7 = var6.getAlignmentX(); + var6.setVisible(false); + SpaceWar.SpacePanel var10 = new SpaceWar.SpacePanel(); + java.awt.Color var11 = var10.getBackground(); + var6.setForeground(var11); + var0.setBackground(var11); + var0.grabFocus(); + SpaceWar.SpacePanel var15 = new SpaceWar.SpacePanel(); + float var16 = var15.getAlignmentX(); + var15.setVisible(false); + boolean var19 = var15.isDoubleBuffered(); + java.awt.dnd.DropTarget var20 = var15.getDropTarget(); + boolean var21 = var15.isFocusCycleRoot(); + SpaceWar.SpacePanel var22 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var23 = new SpaceWar.SpacePanel(); + java.awt.Color var24 = var23.getBackground(); + SpaceWar.SpacePanel var25 = new SpaceWar.SpacePanel(); + float var26 = var25.getAlignmentX(); + var25.setVisible(false); + var25.nextFocus(); + var25.updateUI(); + var25.enableInputMethods(true); + var22.add((java.awt.Component)var23, (java.lang.Object)true); + java.awt.Dimension var34 = var23.getPreferredSize(); + var15.setSize(var34); + var0.setMaximumSize(var34); + var0.enable(); + var0.repaint(0L); + var0.list(); + java.util.Locale var41 = var0.getLocale(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var34); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var41); + + } + + public void test410() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test410"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + java.awt.Dimension var4 = var0.getPreferredSize(); + java.awt.Toolkit var5 = var0.getToolkit(); + boolean var6 = var0.isFocusable(); + javax.swing.KeyStroke[] var7 = var0.getRegisteredKeyStrokes(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + var8.nextFocus(); + SpaceWar.SpacePanel var13 = new SpaceWar.SpacePanel(); + float var14 = var13.getAlignmentX(); + var13.setVisible(false); + SpaceWar.SpacePanel var17 = new SpaceWar.SpacePanel(); + java.awt.Color var18 = var17.getBackground(); + var13.setForeground(var18); + var8.setBackground(var18); + var0.setBackground(var18); + SpaceWar.SpacePanel var22 = new SpaceWar.SpacePanel(); + float var23 = var22.getAlignmentX(); + var22.setVisible(false); + boolean var26 = var22.isDoubleBuffered(); + var22.list(); + var22.setAutoscrolls(false); + var0.removeKeyListener((java.awt.event.KeyListener)var22); + var22.enable(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var4); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == true); + + } + + public void test411() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test411"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + var0.enable(false); + java.awt.Container var7 = var0.getTopLevelAncestor(); + java.awt.Dimension var8 = var0.minimumSize(); + java.awt.Dimension var9 = var0.preferredSize(); + var0.removeAll(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var9); + + } + + public void test412() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test412"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.repaint(1L); + var0.firePropertyChange("", (short)(-1), (short)(-1)); + java.awt.Component var13 = var0.getComponentAt(0, 100); + var0.nextFocus(); + java.awt.Color var15 = var0.getForeground(); + java.awt.Insets var16 = var0.getInsets(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + } + + public void test413() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test413"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + var0.enable(false); + boolean var7 = var0.getFocusTraversalKeysEnabled(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + java.awt.Dimension var12 = var8.getPreferredSize(); + java.awt.Toolkit var13 = var8.getToolkit(); + boolean var14 = var8.isFocusable(); + javax.swing.KeyStroke[] var15 = var8.getRegisteredKeyStrokes(); + SpaceWar.SpacePanel var16 = new SpaceWar.SpacePanel(); + float var17 = var16.getAlignmentX(); + SpaceWar.SpacePanel var18 = new SpaceWar.SpacePanel(); + float var19 = var18.getAlignmentX(); + var18.setVisible(false); + java.awt.Dimension var22 = var18.getPreferredSize(); + boolean var23 = var18.getVerifyInputWhenFocusTarget(); + java.awt.Component var26 = var18.findComponentAt(10, 1); + var16.addKeyListener((java.awt.event.KeyListener)var18); + var18.repaint(100, (-1), (-1), 1); + boolean var33 = var8.isAncestorOf((java.awt.Component)var18); + var0.addKeyListener((java.awt.event.KeyListener)var18); + var18.hide(); + java.awt.event.MouseWheelListener[] var36 = var18.getMouseWheelListeners(); + // The following exception was thrown during execution. + // This behavior will recorded for regression testing. + try { + javax.swing.InputMap var38 = var18.getInputMap(99); + fail("Expected exception of type java.lang.IllegalArgumentException"); + } catch (java.lang.IllegalArgumentException e) { + // Expected exception. + } + + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var33 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var36); + + } + + public void test414() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test414"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.setEnabled(false); + var0.invalidate(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + var8.nextFocus(); + var8.updateUI(); + var8.enableInputMethods(true); + SpaceWar.SpacePanel var16 = new SpaceWar.SpacePanel(); + float var17 = var16.getAlignmentX(); + boolean var18 = var16.hasFocus(); + java.awt.Insets var19 = var16.getInsets(); + java.awt.Insets var20 = var8.getInsets(var19); + boolean var21 = var8.isManagingFocus(); + java.awt.Image var24 = var8.createImage(1, 10); + SpaceWar.SpacePanel var25 = new SpaceWar.SpacePanel(); + float var26 = var25.getAlignmentX(); + var25.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var31 = new SpaceWar.SpacePanel(); + float var32 = var31.getAlignmentX(); + var31.setVisible(false); + java.awt.Dimension var35 = var31.getPreferredSize(); + var25.setMaximumSize(var35); + boolean var37 = var25.getVerifyInputWhenFocusTarget(); + int var38 = var25.getX(); + SpaceWar.SpacePanel var39 = new SpaceWar.SpacePanel(); + float var40 = var39.getAlignmentX(); + var39.setVisible(false); + var39.setEnabled(false); + var8.add((java.awt.Component)var25, (java.lang.Object)false); + boolean var46 = var8.isForegroundSet(); + java.awt.Component var47 = var0.add("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", (java.awt.Component)var8); + SpaceWar.SpacePanel var48 = new SpaceWar.SpacePanel(); + var48.setName(""); + java.awt.ComponentOrientation var51 = var48.getComponentOrientation(); + int var52 = var48.getComponentCount(); + java.awt.image.ColorModel var53 = var48.getColorModel(); + SpaceWar.SpacePanel var54 = new SpaceWar.SpacePanel(); + java.awt.Color var55 = var54.getBackground(); + var54.repaint(); + var54.setRequestFocusEnabled(false); + var54.reshape(100, 0, 100, 0); + javax.swing.event.AncestorListener[] var64 = var54.getAncestorListeners(); + var54.grabFocus(); + java.lang.Object var66 = var48.getClientProperty((java.lang.Object)var54); + SpaceWar.SpacePanel var67 = new SpaceWar.SpacePanel(); + float var68 = var67.getAlignmentX(); + var67.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var73 = new SpaceWar.SpacePanel(); + float var74 = var73.getAlignmentX(); + var73.setVisible(false); + java.awt.Dimension var77 = var73.getPreferredSize(); + var67.setMaximumSize(var77); + boolean var79 = var67.getVerifyInputWhenFocusTarget(); + java.awt.Container var80 = var67.getTopLevelAncestor(); + java.awt.Cursor var81 = var67.getCursor(); + var48.setCursor(var81); + var8.setCursor(var81); + boolean var84 = var8.isFocusTraversable(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var32 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var35); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var38 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var40 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var46 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var47); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var51); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var52 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var53); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var55); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var64); + + // Regression assertion (captures the current behavior of the code) + assertNull(var66); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var68 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var74 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var77); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var79 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var80); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var81); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var84 == true); + + } + + public void test415() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test415"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var1 = new SpaceWar.SpacePanel(); + java.awt.Color var2 = var1.getBackground(); + SpaceWar.SpacePanel var3 = new SpaceWar.SpacePanel(); + float var4 = var3.getAlignmentX(); + var3.setVisible(false); + var3.nextFocus(); + var3.updateUI(); + var3.enableInputMethods(true); + var0.add((java.awt.Component)var1, (java.lang.Object)true); + boolean var13 = var1.areFocusTraversalKeysSet(0); + SpaceWar.SpacePanel var14 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var15 = new SpaceWar.SpacePanel(); + java.awt.Color var16 = var15.getBackground(); + SpaceWar.SpacePanel var17 = new SpaceWar.SpacePanel(); + float var18 = var17.getAlignmentX(); + var17.setVisible(false); + var17.nextFocus(); + var17.updateUI(); + var17.enableInputMethods(true); + var14.add((java.awt.Component)var15, (java.lang.Object)true); + boolean var26 = var14.isMinimumSizeSet(); + java.awt.event.HierarchyListener[] var27 = var14.getHierarchyListeners(); + SpaceWar.SpacePanel var28 = new SpaceWar.SpacePanel(); + float var29 = var28.getAlignmentX(); + var28.setVisible(false); + SpaceWar.SpacePanel var32 = new SpaceWar.SpacePanel(); + java.awt.Color var33 = var32.getBackground(); + var28.setForeground(var33); + SpaceWar.SpacePanel var35 = new SpaceWar.SpacePanel(); + float var36 = var35.getAlignmentX(); + var35.setVisible(false); + boolean var39 = var35.isDoubleBuffered(); + java.awt.dnd.DropTarget var40 = var35.getDropTarget(); + var35.show(false); + java.awt.Rectangle var43 = var35.getVisibleRect(); + var28.repaint(var43); + java.awt.FocusTraversalPolicy var45 = var28.getFocusTraversalPolicy(); + java.awt.im.InputMethodRequests var46 = var28.getInputMethodRequests(); + var28.layout(); + boolean var48 = var28.isFocusTraversalPolicyProvider(); + java.lang.Object var49 = var14.getClientProperty((java.lang.Object)var48); + boolean var50 = var14.isFocusTraversable(); + var1.remove((java.awt.Component)var14); + SpaceWar.SpacePanel var52 = new SpaceWar.SpacePanel(); + float var53 = var52.getAlignmentX(); + var52.setVisible(false); + var52.nextFocus(); + var52.updateUI(); + var52.enableInputMethods(true); + SpaceWar.SpacePanel var60 = new SpaceWar.SpacePanel(); + float var61 = var60.getAlignmentX(); + boolean var62 = var60.hasFocus(); + java.awt.Insets var63 = var60.getInsets(); + java.awt.Insets var64 = var52.getInsets(var63); + boolean var65 = var52.isManagingFocus(); + java.awt.Image var68 = var52.createImage(1, 10); + SpaceWar.SpacePanel var69 = new SpaceWar.SpacePanel(); + float var70 = var69.getAlignmentX(); + var69.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var75 = new SpaceWar.SpacePanel(); + float var76 = var75.getAlignmentX(); + var75.setVisible(false); + java.awt.Dimension var79 = var75.getPreferredSize(); + var69.setMaximumSize(var79); + boolean var81 = var69.getVerifyInputWhenFocusTarget(); + int var82 = var69.getX(); + SpaceWar.SpacePanel var83 = new SpaceWar.SpacePanel(); + float var84 = var83.getAlignmentX(); + var83.setVisible(false); + var83.setEnabled(false); + var52.add((java.awt.Component)var69, (java.lang.Object)false); + int var90 = var14.getComponentZOrder((java.awt.Component)var69); + boolean var91 = var14.isDisplayable(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var2); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var27); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var29 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var33); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var36 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var39 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var40); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var43); + + // Regression assertion (captures the current behavior of the code) + assertNull(var45); + + // Regression assertion (captures the current behavior of the code) + assertNull(var46); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var48 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var49); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var50 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var53 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var61 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var62 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var63); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var64); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var65 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var68); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var70 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var76 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var79); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var81 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var82 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var84 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var90 == (-1)); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var91 == false); + + } + + public void test416() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test416"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + var0.setRequestFocusEnabled(false); + var0.reshape(100, 0, 100, 0); + var0.requestFocus(); + var0.firePropertyChange("hi!", '4', ' '); + java.awt.Point var15 = var0.getLocation(); + java.awt.Dimension var16 = var0.size(); + boolean var17 = var0.isDoubleBuffered(); + javax.swing.InputVerifier var18 = var0.getInputVerifier(); + var0.paintImmediately((-1), 399, 499, 400); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var18); + + } + + public void test417() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test417"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + float var7 = var6.getAlignmentX(); + var6.setVisible(false); + java.awt.Dimension var10 = var6.getPreferredSize(); + var0.setMaximumSize(var10); + boolean var12 = var0.getVerifyInputWhenFocusTarget(); + int var13 = var0.getX(); + SpaceWar.SpacePanel var14 = new SpaceWar.SpacePanel(); + float var15 = var14.getAlignmentX(); + SpaceWar.SpacePanel var16 = new SpaceWar.SpacePanel(); + float var17 = var16.getAlignmentX(); + var16.setVisible(false); + java.awt.Dimension var20 = var16.getPreferredSize(); + boolean var21 = var16.getVerifyInputWhenFocusTarget(); + java.awt.Component var24 = var16.findComponentAt(10, 1); + var14.addKeyListener((java.awt.event.KeyListener)var16); + var16.repaint(100, (-1), (-1), 1); + SpaceWar.SpacePanel var31 = new SpaceWar.SpacePanel(); + java.awt.Color var32 = var31.getBackground(); + var31.repaint(); + java.awt.im.InputMethodRequests var34 = var31.getInputMethodRequests(); + java.awt.GraphicsConfiguration var35 = var31.getGraphicsConfiguration(); + var16.remove((java.awt.Component)var31); + java.awt.Font var37 = var31.getFont(); + var0.setFont(var37); + SpaceWar.SpacePanel var39 = new SpaceWar.SpacePanel(); + float var40 = var39.getAlignmentX(); + var39.setVisible(false); + var39.nextFocus(); + var39.reshape((-1), 1, (-1), 10); + var39.disable(); + java.awt.LayoutManager var50 = var39.getLayout(); + var0.setLayout(var50); + java.awt.image.ColorModel var52 = var0.getColorModel(); + boolean var53 = var0.isPaintingTile(); + var0.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", '#', '#'); + var0.validate(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var32); + + // Regression assertion (captures the current behavior of the code) + assertNull(var34); + + // Regression assertion (captures the current behavior of the code) + assertNull(var35); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var37); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var40 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var50); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var52); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var53 == false); + + } + + public void test418() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test418"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + java.awt.im.InputMethodRequests var3 = var0.getInputMethodRequests(); + var0.setDoubleBuffered(true); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + float var7 = var6.getAlignmentX(); + boolean var8 = var6.hasFocus(); + java.awt.Insets var9 = var6.getInsets(); + java.awt.Insets var10 = var0.getInsets(var9); + var0.setDebugGraphicsOptions(500); + java.lang.String var13 = var0.toString(); + java.awt.FocusTraversalPolicy var14 = var0.getFocusTraversalPolicy(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var9); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var13 + "' != '" + "SpaceWar.SpacePanel[,0,0,0var13,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"+ "'", var13.equals("SpaceWar.SpacePanel[,0,0,0var13,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]")); + + // Regression assertion (captures the current behavior of the code) + assertNull(var14); + + } + + public void test419() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test419"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var6 = var0.getUI(); + java.awt.im.InputMethodRequests var7 = var0.getInputMethodRequests(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + var8.nextFocus(); + var8.updateUI(); + var8.enableInputMethods(true); + var8.setSize((-1), 1); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + var19.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var0.add((java.awt.Component)var8, (java.lang.Object)"SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + java.awt.ComponentOrientation var25 = var8.getComponentOrientation(); + java.beans.VetoableChangeListener[] var26 = var8.getVetoableChangeListeners(); + int var27 = var8.getHeight(); + var8.enable(true); + java.awt.Component var30 = var8.getNextFocusableComponent(); + java.awt.Point var31 = var8.getMousePosition(); + var8.setFocusTraversalPolicyProvider(true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var25); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == 1); + + // Regression assertion (captures the current behavior of the code) + assertNull(var30); + + // Regression assertion (captures the current behavior of the code) + assertNull(var31); + + } + + public void test420() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test420"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + var0.enable(false); + boolean var7 = var0.getFocusTraversalKeysEnabled(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + java.awt.Dimension var12 = var8.getPreferredSize(); + java.awt.Toolkit var13 = var8.getToolkit(); + boolean var14 = var8.isFocusable(); + javax.swing.KeyStroke[] var15 = var8.getRegisteredKeyStrokes(); + SpaceWar.SpacePanel var16 = new SpaceWar.SpacePanel(); + float var17 = var16.getAlignmentX(); + SpaceWar.SpacePanel var18 = new SpaceWar.SpacePanel(); + float var19 = var18.getAlignmentX(); + var18.setVisible(false); + java.awt.Dimension var22 = var18.getPreferredSize(); + boolean var23 = var18.getVerifyInputWhenFocusTarget(); + java.awt.Component var26 = var18.findComponentAt(10, 1); + var16.addKeyListener((java.awt.event.KeyListener)var18); + var18.repaint(100, (-1), (-1), 1); + boolean var33 = var8.isAncestorOf((java.awt.Component)var18); + var0.addKeyListener((java.awt.event.KeyListener)var18); + SpaceWar.SpacePanel var36 = new SpaceWar.SpacePanel(); + float var37 = var36.getAlignmentX(); + var36.setVisible(false); + boolean var40 = var36.isDoubleBuffered(); + java.awt.dnd.DropTarget var41 = var36.getDropTarget(); + var36.show(false); + boolean var44 = var36.isPaintingForPrint(); + SpaceWar.SpacePanel var45 = new SpaceWar.SpacePanel(); + float var46 = var45.getAlignmentX(); + var45.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var51 = var45.getMouseListeners(); + int var52 = var45.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var53 = var45.getInputMethodRequests(); + var36.addKeyListener((java.awt.event.KeyListener)var45); + SpaceWar.SpacePanel var55 = new SpaceWar.SpacePanel(); + float var56 = var55.getAlignmentX(); + var55.setVisible(false); + boolean var59 = var55.isDoubleBuffered(); + var55.list(); + float var61 = var55.getAlignmentY(); + boolean var62 = var45.isFocusCycleRoot((java.awt.Container)var55); + SpaceWar.SpacePanel var64 = new SpaceWar.SpacePanel(); + float var65 = var64.getAlignmentX(); + var64.setVisible(false); + var64.nextFocus(); + var64.updateUI(); + java.awt.Component var70 = var45.add("", (java.awt.Component)var64); + java.awt.Component var71 = var18.add("", (java.awt.Component)var64); + boolean var74 = var18.inside(100, 0); + java.awt.peer.ComponentPeer var75 = var18.getPeer(); + java.awt.image.VolatileImage var78 = var18.createVolatileImage(3, 399); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var33 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var40 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var41); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var44 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var46 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var51); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var52 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var53); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var56 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var59 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var61 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var62 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var65 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var70); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var71); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var74 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var75); + + // Regression assertion (captures the current behavior of the code) + assertNull(var78); + + } + + public void test421() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test421"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + boolean var5 = javax.swing.JComponent.isLightweightComponent((java.awt.Component)var0); + boolean var6 = var0.isRequestFocusEnabled(); + java.awt.Dimension var7 = var0.getSize(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + var8.setInheritsPopupMenu(false); + var8.move(10, 10); + var8.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var8.removeAll(); + var8.setInheritsPopupMenu(true); + boolean var26 = var8.inside(0, 500); + SpaceWar.SpacePanel var27 = new SpaceWar.SpacePanel(); + var27.setName(""); + java.awt.Toolkit var30 = var27.getToolkit(); + var27.setEnabled(false); + var27.removeNotify(); + boolean var34 = var27.isDisplayable(); + SpaceWar.SpacePanel var35 = new SpaceWar.SpacePanel(); + java.awt.Color var36 = var35.getBackground(); + var35.repaint(); + var35.setRequestFocusEnabled(false); + var35.reshape(100, 0, 100, 0); + var35.requestFocus(); + java.awt.Rectangle var46 = var35.getVisibleRect(); + java.awt.Rectangle var47 = var35.getBounds(); + java.awt.im.InputMethodRequests var48 = var35.getInputMethodRequests(); + boolean var49 = var35.requestFocusInWindow(); + java.awt.Point var51 = var35.getMousePosition(false); + var35.setDebugGraphicsOptions(1); + java.awt.Graphics var54 = var35.getGraphics(); + var27.paintAll(var54); + var8.printAll(var54); + var0.update(var54); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var30); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var34 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var36); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var46); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var47); + + // Regression assertion (captures the current behavior of the code) + assertNull(var48); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var49 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var51); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var54); + + } + + public void test422() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test422"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + var0.setRequestFocusEnabled(false); + var0.setIgnoreRepaint(false); + java.lang.String var7 = var0.toString(); + var0.repaint(1L, 400, 25, (-1), 25); + java.awt.event.MouseListener[] var14 = var0.getMouseListeners(); + int var15 = var0.getComponentCount(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var7 + "' != '" + "SpaceWar.SpacePanel[,0,0,0var7,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"+ "'", var7.equals("SpaceWar.SpacePanel[,0,0,0var7,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]")); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == 0); + + } + + public void test423() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test423"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + java.awt.Dimension var4 = var0.getPreferredSize(); + boolean var5 = var0.getVerifyInputWhenFocusTarget(); + java.awt.Component var8 = var0.findComponentAt(10, 1); + boolean var9 = var0.requestDefaultFocus(); + boolean var10 = var0.isPaintingTile(); + SpaceWar.SpacePanel var11 = new SpaceWar.SpacePanel(); + var11.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + javax.swing.plaf.PanelUI var16 = var11.getUI(); + java.awt.Color var17 = var11.getBackground(); + var0.addKeyListener((java.awt.event.KeyListener)var11); + java.awt.im.InputMethodRequests var19 = var11.getInputMethodRequests(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var4); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertNull(var19); + + } + + public void test424() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test424"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var6 = var0.getMouseListeners(); + var0.firePropertyChange("", 0.5f, 100.0f); + var0.enable(false); + int var13 = var0.getDebugGraphicsOptions(); + java.awt.ComponentOrientation var14 = var0.getComponentOrientation(); + var0.reshape(25, 400, 400, 0); + boolean var20 = var0.hasFocus(); + var0.setSize(3, 0); + var0.setAlignmentY(0.0f); + boolean var26 = var0.getIgnoreRepaint(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == false); + + } + + public void test425() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test425"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + float var6 = var0.getAlignmentY(); + var0.setDoubleBuffered(false); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var15 = var9.getUI(); + java.awt.im.InputMethodRequests var16 = var9.getInputMethodRequests(); + SpaceWar.SpacePanel var17 = new SpaceWar.SpacePanel(); + float var18 = var17.getAlignmentX(); + var17.setVisible(false); + var17.nextFocus(); + var17.updateUI(); + var17.enableInputMethods(true); + var17.setSize((-1), 1); + SpaceWar.SpacePanel var28 = new SpaceWar.SpacePanel(); + var28.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var9.add((java.awt.Component)var17, (java.lang.Object)"SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + SpaceWar.SpacePanel var34 = new SpaceWar.SpacePanel(); + float var35 = var34.getAlignmentX(); + var34.setVisible(false); + java.awt.Dimension var38 = var34.getPreferredSize(); + java.awt.Toolkit var39 = var34.getToolkit(); + java.awt.Toolkit var40 = var34.getToolkit(); + java.awt.Component var41 = var17.add((java.awt.Component)var34); + var41.firePropertyChange("", 0.5f, 10.0f); + SpaceWar.SpacePanel var46 = new SpaceWar.SpacePanel(); + float var47 = var46.getAlignmentX(); + var46.setVisible(false); + var46.setInheritsPopupMenu(false); + var46.move(10, 10); + var46.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + java.awt.Rectangle var59 = var46.bounds(); + var41.setBounds(var59); + var0.computeVisibleRect(var59); + SpaceWar.SpacePanel var62 = new SpaceWar.SpacePanel(); + java.awt.Color var63 = var62.getBackground(); + var62.repaint(); + javax.swing.plaf.PanelUI var65 = var62.getUI(); + var0.setUI(var65); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var35 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var38); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var39); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var40); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var41); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var47 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var59); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var63); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var65); + + } + + public void test426() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test426"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var6 = var0.getMouseListeners(); + java.awt.Dimension var7 = var0.getPreferredSize(); + java.util.Locale var8 = var0.getLocale(); + var0.setFocusable(true); + java.lang.String var11 = var0.getToolTipText(); + SpaceWar.SpacePanel var12 = new SpaceWar.SpacePanel(); + float var13 = var12.getAlignmentX(); + var12.setVisible(false); + SpaceWar.SpacePanel var16 = new SpaceWar.SpacePanel(); + java.awt.Color var17 = var16.getBackground(); + var12.setForeground(var17); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + float var20 = var19.getAlignmentX(); + var19.setVisible(false); + boolean var23 = var19.isDoubleBuffered(); + java.awt.dnd.DropTarget var24 = var19.getDropTarget(); + var19.show(false); + java.awt.Rectangle var27 = var19.getVisibleRect(); + var12.repaint(var27); + java.awt.FocusTraversalPolicy var29 = var12.getFocusTraversalPolicy(); + SpaceWar.SpacePanel var30 = new SpaceWar.SpacePanel(); + float var31 = var30.getAlignmentX(); + var30.firePropertyChange("", (-1), 1); + boolean var36 = var30.isFocusOwner(); + SpaceWar.SpacePanel var38 = new SpaceWar.SpacePanel(); + float var39 = var38.getAlignmentX(); + var38.setVisible(false); + java.awt.Dimension var42 = var38.getPreferredSize(); + java.awt.Toolkit var43 = var38.getToolkit(); + SpaceWar.SpacePanel var44 = new SpaceWar.SpacePanel(); + var44.setName(""); + int var47 = var44.getX(); + SpaceWar.SpacePanel var48 = new SpaceWar.SpacePanel(); + float var49 = var48.getAlignmentX(); + var48.setVisible(false); + var48.nextFocus(); + SpaceWar.SpacePanel var53 = new SpaceWar.SpacePanel(); + float var54 = var53.getAlignmentX(); + var53.setVisible(false); + SpaceWar.SpacePanel var57 = new SpaceWar.SpacePanel(); + java.awt.Color var58 = var57.getBackground(); + var53.setForeground(var58); + var48.setBackground(var58); + var44.setBackground(var58); + var38.setForeground(var58); + var30.putClientProperty((java.lang.Object)(byte)100, (java.lang.Object)var58); + var12.setBackground(var58); + javax.swing.JToolTip var65 = var12.createToolTip(); + var65.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, true); + SpaceWar.SpacePanel var70 = new SpaceWar.SpacePanel(); + var70.setName(""); + java.awt.Dimension var73 = var70.minimumSize(); + boolean var74 = var70.isDoubleBuffered(); + java.awt.event.HierarchyListener[] var75 = var70.getHierarchyListeners(); + java.awt.Font var76 = var70.getFont(); + java.awt.FontMetrics var77 = var65.getFontMetrics(var76); + java.awt.FontMetrics var78 = var0.getFontMetrics(var76); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var27); + + // Regression assertion (captures the current behavior of the code) + assertNull(var29); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var31 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var36 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var39 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var42); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var43); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var47 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var49 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var54 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var58); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var65); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var73); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var74 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var75); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var76); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var77); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var78); + + } + + public void test427() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test427"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.updateUI(); + var0.enableInputMethods(true); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + boolean var10 = var8.hasFocus(); + java.awt.Insets var11 = var8.getInsets(); + java.awt.Insets var12 = var0.getInsets(var11); + java.awt.Rectangle var13 = var0.bounds(); + java.awt.Component.BaselineResizeBehavior var14 = var0.getBaselineResizeBehavior(); + var0.updateUI(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + } + + public void test428() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test428"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + java.awt.Dimension var4 = var0.getPreferredSize(); + boolean var5 = var0.getVerifyInputWhenFocusTarget(); + java.awt.event.MouseWheelListener[] var6 = var0.getMouseWheelListeners(); + java.awt.Component.BaselineResizeBehavior var7 = var0.getBaselineResizeBehavior(); + javax.swing.InputMap var8 = var0.getInputMap(); + boolean var9 = var0.isFocusable(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var4); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == true); + + } + + public void test429() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test429"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.reshape((-1), 1, (-1), 10); + var0.disable(); + java.awt.LayoutManager var11 = var0.getLayout(); + var0.setVisible(false); + javax.accessibility.AccessibleContext var14 = var0.getAccessibleContext(); + var0.setInheritsPopupMenu(false); + java.awt.event.InputMethodListener[] var17 = var0.getInputMethodListeners(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var17); + + } + + public void test430() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test430"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.reshape((-1), 1, (-1), 10); + var0.disable(); + java.awt.LayoutManager var11 = var0.getLayout(); + java.awt.Container var12 = var0.getParent(); + java.lang.String var13 = var0.getUIClassID(); + var0.setVerifyInputWhenFocusTarget(true); + SpaceWar.SpacePanel var16 = new SpaceWar.SpacePanel(); + float var17 = var16.getAlignmentX(); + var16.setVisible(false); + boolean var20 = var16.isDoubleBuffered(); + java.awt.dnd.DropTarget var21 = var16.getDropTarget(); + var16.show(false); + boolean var24 = var16.isPaintingForPrint(); + SpaceWar.SpacePanel var25 = new SpaceWar.SpacePanel(); + float var26 = var25.getAlignmentX(); + var25.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var31 = var25.getMouseListeners(); + int var32 = var25.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var33 = var25.getInputMethodRequests(); + var16.addKeyListener((java.awt.event.KeyListener)var25); + SpaceWar.SpacePanel var35 = new SpaceWar.SpacePanel(); + float var36 = var35.getAlignmentX(); + var35.setVisible(false); + boolean var39 = var35.isDoubleBuffered(); + var35.list(); + float var41 = var35.getAlignmentY(); + boolean var42 = var25.isFocusCycleRoot((java.awt.Container)var35); + javax.swing.JPopupMenu var43 = var35.getComponentPopupMenu(); + var35.move((-1), 100); + SpaceWar.SpacePanel var47 = new SpaceWar.SpacePanel(); + float var48 = var47.getAlignmentX(); + var47.setVisible(false); + var47.nextFocus(); + var47.reshape((-1), 1, (-1), 10); + var47.disable(); + java.awt.LayoutManager var58 = var47.getLayout(); + java.awt.Container var59 = var47.getParent(); + java.lang.String var60 = var47.getUIClassID(); + float var61 = var47.getAlignmentX(); + var47.enable(true); + boolean var64 = var47.isPaintingTile(); + javax.swing.plaf.PanelUI var65 = var47.getUI(); + var35.setUI(var65); + var0.setUI(var65); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var13 + "' != '" + "PanelUI"+ "'", var13.equals("PanelUI")); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var21); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var24 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var31); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var32 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var33); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var36 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var39 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var41 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var42 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var43); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var48 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var58); + + // Regression assertion (captures the current behavior of the code) + assertNull(var59); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var60 + "' != '" + "PanelUI"+ "'", var60.equals("PanelUI")); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var61 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var64 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var65); + + } + + public void test431() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test431"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + var0.show(false); + boolean var8 = var0.isPaintingForPrint(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var15 = var9.getMouseListeners(); + int var16 = var9.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var17 = var9.getInputMethodRequests(); + var0.addKeyListener((java.awt.event.KeyListener)var9); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + float var20 = var19.getAlignmentX(); + var19.setVisible(false); + boolean var23 = var19.isDoubleBuffered(); + var19.list(); + float var25 = var19.getAlignmentY(); + boolean var26 = var9.isFocusCycleRoot((java.awt.Container)var19); + boolean var27 = var19.isEnabled(); + java.awt.Dimension var28 = var19.getMaximumSize(); + var19.setFocusCycleRoot(false); + java.awt.event.ComponentListener[] var31 = var19.getComponentListeners(); + SpaceWar.SpacePanel var32 = new SpaceWar.SpacePanel(); + float var33 = var32.getAlignmentX(); + var32.setVisible(false); + boolean var36 = var32.isDoubleBuffered(); + java.awt.dnd.DropTarget var37 = var32.getDropTarget(); + var32.show(false); + boolean var40 = var32.isPaintingForPrint(); + SpaceWar.SpacePanel var41 = new SpaceWar.SpacePanel(); + float var42 = var41.getAlignmentX(); + var41.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var47 = var41.getMouseListeners(); + int var48 = var41.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var49 = var41.getInputMethodRequests(); + var32.addKeyListener((java.awt.event.KeyListener)var41); + boolean var51 = var32.isDisplayable(); + var32.resize(400, 2); + SpaceWar.SpacePanel var55 = new SpaceWar.SpacePanel(); + float var56 = var55.getAlignmentX(); + var55.setVisible(false); + var55.nextFocus(); + var55.updateUI(); + var55.enableInputMethods(true); + SpaceWar.SpacePanel var63 = new SpaceWar.SpacePanel(); + float var64 = var63.getAlignmentX(); + boolean var65 = var63.hasFocus(); + java.awt.Insets var66 = var63.getInsets(); + java.awt.Insets var67 = var55.getInsets(var66); + SpaceWar.SpacePanel var68 = new SpaceWar.SpacePanel(); + var68.setName(""); + java.awt.Graphics var71 = var68.getGraphics(); + java.awt.event.MouseMotionListener[] var72 = var68.getMouseMotionListeners(); + boolean var73 = var68.getIgnoreRepaint(); + var68.transferFocusBackward(); + var32.putClientProperty((java.lang.Object)var66, (java.lang.Object)var68); + java.lang.Object var76 = var19.getClientProperty((java.lang.Object)var68); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var28); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var31); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var33 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var36 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var37); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var40 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var42 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var47); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var48 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var49); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var51 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var56 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var64 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var65 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var66); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var67); + + // Regression assertion (captures the current behavior of the code) + assertNull(var71); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var72); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var73 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var76); + + } + + public void test432() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test432"); + + + SpaceWar.Player var0 = new SpaceWar.Player(); + int var1 = var0.getR(); + var0.setRigth(false); + int var4 = var0.getRequiredPower(); + boolean var5 = var0.isRecovering(); + int var6 = var0.getX(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 25); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 1); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == 400); + + } + + public void test433() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test433"); + + + SpaceWar.Enemy var2 = new SpaceWar.Enemy(0, 100); + int var3 = var2.getR(); + var2.explode(); + var2.update(); + var2.explode(); + boolean var7 = var2.isDead(); + boolean var8 = var2.isDead(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + } + + public void test434() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test434"); + + + SpaceWar.Bullet var3 = new SpaceWar.Bullet(1.0d, 10, 400); + boolean var4 = var3.update(); + double var5 = var3.getY(); + double var6 = var3.getR(); + double var7 = var3.getY(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == 400.17452406437286d); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == 5.0d); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 400.17452406437286d); + + } + + public void test435() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test435"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var6 = var0.getMouseListeners(); + var0.firePropertyChange("", 0.5f, 100.0f); + var0.enable(false); + var0.transferFocusDownCycle(); + int var14 = var0.getComponentCount(); + boolean var15 = var0.isPreferredSizeSet(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == true); + + } + + public void test436() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test436"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + java.awt.im.InputMethodRequests var3 = var0.getInputMethodRequests(); + int var4 = var0.countComponents(); + java.awt.event.ComponentListener[] var5 = var0.getComponentListeners(); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + float var7 = var6.getAlignmentX(); + var6.removeNotify(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.setVisible(false); + boolean var13 = var9.isDoubleBuffered(); + var9.list(); + float var15 = var9.getAlignmentY(); + java.awt.Insets var16 = var9.getInsets(); + java.awt.Insets var17 = var6.getInsets(var16); + java.awt.Insets var18 = var0.getInsets(var17); + javax.swing.JPopupMenu var19 = var0.getComponentPopupMenu(); + java.awt.image.BufferedImage var21 = var0.loadImg("PanelUI"); + var0.setVerifyInputWhenFocusTarget(false); + SpaceWar.SpacePanel var24 = new SpaceWar.SpacePanel(); + java.awt.Color var25 = var24.getBackground(); + boolean var28 = var24.inside(0, (-1)); + SpaceWar.SpacePanel var30 = new SpaceWar.SpacePanel(); + float var31 = var30.getAlignmentX(); + var30.setVisible(false); + var30.nextFocus(); + var30.reshape((-1), 1, (-1), 10); + var30.disable(); + boolean var41 = var30.isFocusable(); + SpaceWar.SpacePanel var42 = new SpaceWar.SpacePanel(); + float var43 = var42.getAlignmentX(); + var42.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var48 = var42.getUI(); + java.awt.im.InputMethodRequests var49 = var42.getInputMethodRequests(); + SpaceWar.SpacePanel var50 = new SpaceWar.SpacePanel(); + float var51 = var50.getAlignmentX(); + var50.setVisible(false); + var50.nextFocus(); + var50.updateUI(); + var50.enableInputMethods(true); + var50.setSize((-1), 1); + SpaceWar.SpacePanel var61 = new SpaceWar.SpacePanel(); + var61.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var42.add((java.awt.Component)var50, (java.lang.Object)"SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + java.awt.event.KeyListener[] var67 = var42.getKeyListeners(); + java.awt.FocusTraversalPolicy var68 = var42.getFocusTraversalPolicy(); + SpaceWar.SpacePanel var69 = new SpaceWar.SpacePanel(); + var69.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + java.awt.Toolkit var74 = var69.getToolkit(); + var30.add((java.awt.Component)var42, (java.lang.Object)var69); + var30.layout(); + java.awt.Component var77 = var24.add("", (java.awt.Component)var30); + java.lang.Object var78 = var0.getClientProperty((java.lang.Object)var77); + var77.resize(400, (-1)); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertNull(var21); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var25); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var28 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var31 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var41 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var43 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var48); + + // Regression assertion (captures the current behavior of the code) + assertNull(var49); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var51 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var67); + + // Regression assertion (captures the current behavior of the code) + assertNull(var68); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var74); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var77); + + // Regression assertion (captures the current behavior of the code) + assertNull(var78); + + } + + public void test437() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test437"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + boolean var6 = var0.isFocusCycleRoot(); + var0.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", 100, 0); + java.awt.LayoutManager var11 = var0.getLayout(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + } + + public void test438() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test438"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + javax.swing.plaf.PanelUI var3 = var0.getUI(); + SpaceWar.SpacePanel var4 = new SpaceWar.SpacePanel(); + float var5 = var4.getAlignmentX(); + var4.setVisible(false); + boolean var8 = var4.isDoubleBuffered(); + java.awt.dnd.DropTarget var9 = var4.getDropTarget(); + var4.show(false); + boolean var12 = var4.isPaintingForPrint(); + SpaceWar.SpacePanel var13 = new SpaceWar.SpacePanel(); + float var14 = var13.getAlignmentX(); + var13.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var19 = var13.getMouseListeners(); + int var20 = var13.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var21 = var13.getInputMethodRequests(); + var4.addKeyListener((java.awt.event.KeyListener)var13); + SpaceWar.SpacePanel var23 = new SpaceWar.SpacePanel(); + float var24 = var23.getAlignmentX(); + var23.setVisible(false); + boolean var27 = var23.isDoubleBuffered(); + var23.list(); + float var29 = var23.getAlignmentY(); + boolean var30 = var13.isFocusCycleRoot((java.awt.Container)var23); + SpaceWar.SpacePanel var32 = new SpaceWar.SpacePanel(); + float var33 = var32.getAlignmentX(); + var32.setVisible(false); + var32.nextFocus(); + var32.updateUI(); + java.awt.Component var38 = var13.add("", (java.awt.Component)var32); + java.awt.ComponentOrientation var39 = var32.getComponentOrientation(); + boolean var40 = var32.isFocusable(); + var0.remove((java.awt.Component)var32); + boolean var42 = var0.getAutoscrolls(); + int var45 = var0.getBaseline(10, 1); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var9); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var21); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var24 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var29 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var30 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var33 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var38); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var39); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var40 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var42 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var45 == (-1)); + + } + + public void test439() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test439"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var6 = var0.getUI(); + java.awt.im.InputMethodRequests var7 = var0.getInputMethodRequests(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + var8.nextFocus(); + var8.updateUI(); + var8.enableInputMethods(true); + var8.setSize((-1), 1); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + var19.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var0.add((java.awt.Component)var8, (java.lang.Object)"SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + SpaceWar.SpacePanel var25 = new SpaceWar.SpacePanel(); + float var26 = var25.getAlignmentX(); + var25.setVisible(false); + java.awt.Dimension var29 = var25.getPreferredSize(); + java.awt.Toolkit var30 = var25.getToolkit(); + java.awt.Toolkit var31 = var25.getToolkit(); + java.awt.Component var32 = var8.add((java.awt.Component)var25); + int var33 = var8.getY(); + int var36 = var8.getBaseline(25, 10); + java.awt.im.InputMethodRequests var37 = var8.getInputMethodRequests(); + SpaceWar.SpacePanel var38 = new SpaceWar.SpacePanel(); + float var39 = var38.getAlignmentX(); + var38.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var44 = new SpaceWar.SpacePanel(); + float var45 = var44.getAlignmentX(); + var44.setVisible(false); + java.awt.Dimension var48 = var44.getPreferredSize(); + var38.setMaximumSize(var48); + boolean var50 = var38.getVerifyInputWhenFocusTarget(); + var38.transferFocusUpCycle(); + java.awt.Point var52 = var38.location(); + java.awt.Point var53 = var8.getLocation(var52); + SpaceWar.SpacePanel var54 = new SpaceWar.SpacePanel(); + float var55 = var54.getAlignmentX(); + var54.setVisible(false); + var54.nextFocus(); + SpaceWar.SpacePanel var59 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var60 = new SpaceWar.SpacePanel(); + java.awt.Color var61 = var60.getBackground(); + SpaceWar.SpacePanel var62 = new SpaceWar.SpacePanel(); + float var63 = var62.getAlignmentX(); + var62.setVisible(false); + var62.nextFocus(); + var62.updateUI(); + var62.enableInputMethods(true); + var59.add((java.awt.Component)var60, (java.lang.Object)true); + java.awt.Dimension var71 = var60.getPreferredSize(); + var54.setMaximumSize(var71); + SpaceWar.SpacePanel var73 = new SpaceWar.SpacePanel(); + float var74 = var73.getAlignmentX(); + var73.setVisible(false); + var73.nextFocus(); + var73.repaint(1L); + SpaceWar.SpacePanel var80 = new SpaceWar.SpacePanel(); + float var81 = var80.getAlignmentX(); + var80.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var86 = new SpaceWar.SpacePanel(); + float var87 = var86.getAlignmentX(); + var86.setVisible(false); + java.awt.Dimension var90 = var86.getPreferredSize(); + var80.setMaximumSize(var90); + var73.setPreferredSize(var90); + javax.swing.plaf.PanelUI var93 = var73.getUI(); + var54.setUI(var93); + var8.setUI(var93); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var29); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var30); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var31); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var32); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var33 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var36 == (-1)); + + // Regression assertion (captures the current behavior of the code) + assertNull(var37); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var39 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var45 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var48); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var50 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var52); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var53); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var55 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var61); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var63 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var71); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var74 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var81 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var87 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var90); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var93); + + } + + public void test440() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test440"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.setInheritsPopupMenu(false); + boolean var6 = var0.isDoubleBuffered(); + boolean var7 = var0.isMinimumSizeSet(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var14 = new SpaceWar.SpacePanel(); + float var15 = var14.getAlignmentX(); + var14.setVisible(false); + java.awt.Dimension var18 = var14.getPreferredSize(); + var8.setMaximumSize(var18); + boolean var20 = var8.getVerifyInputWhenFocusTarget(); + javax.accessibility.AccessibleContext var21 = var8.getAccessibleContext(); + boolean var22 = var8.isDoubleBuffered(); + java.awt.Rectangle var23 = var8.getVisibleRect(); + var0.setBounds(var23); + SpaceWar.SpacePanel var25 = new SpaceWar.SpacePanel(); + float var26 = var25.getAlignmentX(); + var25.setVisible(false); + boolean var29 = var25.isDoubleBuffered(); + var25.list(); + SpaceWar.SpacePanel var31 = new SpaceWar.SpacePanel(); + float var32 = var31.getAlignmentX(); + var31.setVisible(false); + boolean var35 = var31.isDoubleBuffered(); + java.awt.dnd.DropTarget var36 = var31.getDropTarget(); + var31.show(false); + java.awt.Rectangle var39 = var31.getVisibleRect(); + java.awt.Rectangle var40 = var25.getBounds(var39); + javax.swing.JToolTip var41 = var25.createToolTip(); + var25.firePropertyChange("", false, false); + var25.setFocusTraversalKeysEnabled(false); + boolean var48 = var25.isValid(); + SpaceWar.SpacePanel var49 = new SpaceWar.SpacePanel(); + float var50 = var49.getAlignmentX(); + var49.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var55 = var49.getMouseListeners(); + int var56 = var49.getDebugGraphicsOptions(); + java.awt.Color var57 = var49.getBackground(); + var25.setForeground(var57); + var0.addKeyListener((java.awt.event.KeyListener)var25); + SpaceWar.SpacePanel var60 = new SpaceWar.SpacePanel(); + float var61 = var60.getAlignmentX(); + var60.setVisible(false); + java.awt.Dimension var64 = var60.getPreferredSize(); + java.awt.Toolkit var65 = var60.getToolkit(); + java.awt.Toolkit var66 = var60.getToolkit(); + var60.enable(false); + java.awt.Color var69 = var60.getForeground(); + var0.remove((java.awt.Component)var60); + var0.revalidate(); + javax.swing.JPopupMenu var72 = var0.getComponentPopupMenu(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var21); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var22 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var23); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var29 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var32 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var35 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var36); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var39); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var40); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var41); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var48 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var50 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var55); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var56 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var57); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var61 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var64); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var65); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var66); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var69); + + // Regression assertion (captures the current behavior of the code) + assertNull(var72); + + } + + public void test441() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test441"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + var0.show(false); + boolean var8 = var0.isPaintingForPrint(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var15 = var9.getMouseListeners(); + int var16 = var9.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var17 = var9.getInputMethodRequests(); + var0.addKeyListener((java.awt.event.KeyListener)var9); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + float var20 = var19.getAlignmentX(); + var19.setVisible(false); + boolean var23 = var19.isDoubleBuffered(); + var19.list(); + float var25 = var19.getAlignmentY(); + boolean var26 = var9.isFocusCycleRoot((java.awt.Container)var19); + boolean var27 = var19.isEnabled(); + java.awt.Dimension var28 = var19.getMaximumSize(); + var19.setFocusCycleRoot(false); + java.awt.event.ComponentListener[] var31 = var19.getComponentListeners(); + boolean var32 = var19.isFocusCycleRoot(); + var19.firePropertyChange("PanelUI", 83.657626403857d, 10.0d); + SpaceWar.SpacePanel var37 = new SpaceWar.SpacePanel(); + var37.setName(""); + int var40 = var37.getX(); + java.lang.String var41 = var37.getToolTipText(); + java.awt.Point var42 = var37.getLocation(); + SpaceWar.SpacePanel var43 = new SpaceWar.SpacePanel(); + float var44 = var43.getAlignmentX(); + var43.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var49 = var43.getUI(); + java.awt.im.InputMethodRequests var50 = var43.getInputMethodRequests(); + SpaceWar.SpacePanel var51 = new SpaceWar.SpacePanel(); + float var52 = var51.getAlignmentX(); + var51.setVisible(false); + var51.nextFocus(); + var51.updateUI(); + var51.enableInputMethods(true); + var51.setSize((-1), 1); + SpaceWar.SpacePanel var62 = new SpaceWar.SpacePanel(); + var62.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var43.add((java.awt.Component)var51, (java.lang.Object)"SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + var43.setAutoscrolls(false); + java.awt.event.InputMethodListener[] var70 = var43.getInputMethodListeners(); + java.awt.Rectangle var71 = var43.bounds(); + var37.paintImmediately(var71); + var19.computeVisibleRect(var71); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var28); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var31); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var32 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var40 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var41); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var42); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var44 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var49); + + // Regression assertion (captures the current behavior of the code) + assertNull(var50); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var52 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var70); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var71); + + } + + public void test442() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test442"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + boolean var5 = javax.swing.JComponent.isLightweightComponent((java.awt.Component)var0); + java.awt.event.MouseWheelListener[] var6 = var0.getMouseWheelListeners(); + boolean var7 = var0.isValid(); + java.awt.Component var8 = var0.getNextFocusableComponent(); + boolean var10 = var0.requestFocus(true); + boolean var11 = var0.isFocusTraversalPolicySet(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == false); + + } + + public void test443() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test443"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + SpaceWar.SpacePanel var5 = new SpaceWar.SpacePanel(); + float var6 = var5.getAlignmentX(); + var5.setVisible(false); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + java.awt.Color var10 = var9.getBackground(); + var5.setForeground(var10); + var0.setBackground(var10); + javax.swing.plaf.PanelUI var13 = var0.getUI(); + java.awt.peer.ComponentPeer var14 = var0.getPeer(); + java.awt.Point var15 = var0.location(); + var0.reshape(499, 498, (-1), 1); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + } + + public void test444() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test444"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + boolean var2 = var0.hasFocus(); + SpaceWar.SpacePanel var3 = new SpaceWar.SpacePanel(); + float var4 = var3.getAlignmentX(); + var3.setVisible(false); + var3.nextFocus(); + var3.reshape((-1), 1, (-1), 10); + var3.disable(); + java.awt.LayoutManager var14 = var3.getLayout(); + var3.setVisible(false); + var0.remove((java.awt.Component)var3); + boolean var18 = var3.hasFocus(); + java.lang.String var19 = var3.toString(); + java.awt.Component var22 = var3.findComponentAt(3, 24); + javax.swing.plaf.PanelUI var23 = var3.getUI(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var2 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var19 + "' != '" + "SpaceWar.SpacePanel[,-1,1,-1x10,invalid,hidden,disabled,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"+ "'", var19.equals("SpaceWar.SpacePanel[,-1,1,-1x10,invalid,hidden,disabled,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]")); + + // Regression assertion (captures the current behavior of the code) + assertNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var23); + + } + + public void test445() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test445"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.reshape((-1), 1, (-1), 10); + SpaceWar.SpacePanel var10 = new SpaceWar.SpacePanel(); + java.awt.Color var11 = var10.getBackground(); + var10.repaint(); + var10.setRequestFocusEnabled(false); + var10.reshape(100, 0, 100, 0); + java.awt.Component var20 = var0.add((java.awt.Component)var10); + SpaceWar.SpacePanel var21 = new SpaceWar.SpacePanel(); + var21.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + javax.swing.plaf.PanelUI var26 = var21.getUI(); + SpaceWar.SpacePanel var27 = new SpaceWar.SpacePanel(); + float var28 = var27.getAlignmentX(); + var27.setVisible(false); + var27.nextFocus(); + var27.repaint(1L); + SpaceWar.SpacePanel var34 = new SpaceWar.SpacePanel(); + float var35 = var34.getAlignmentX(); + var34.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var40 = new SpaceWar.SpacePanel(); + float var41 = var40.getAlignmentX(); + var40.setVisible(false); + java.awt.Dimension var44 = var40.getPreferredSize(); + var34.setMaximumSize(var44); + var27.setPreferredSize(var44); + var21.setMaximumSize(var44); + java.awt.Dimension var48 = var10.getSize(var44); + boolean var49 = var10.isFontSet(); + boolean var50 = javax.swing.JComponent.isLightweightComponent((java.awt.Component)var10); + java.awt.Point var51 = var10.getLocation(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var28 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var35 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var41 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var44); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var48); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var49 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var50 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var51); + + } + + public void test446() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test446"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + var0.setName(""); + java.awt.Graphics var3 = var0.getGraphics(); + java.awt.event.MouseMotionListener[] var4 = var0.getMouseMotionListeners(); + boolean var5 = var0.getIgnoreRepaint(); + var0.transferFocusBackward(); + var0.enable(); + boolean var8 = var0.isFocusable(); + var0.list(); + + // Regression assertion (captures the current behavior of the code) + assertNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var4); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == true); + + } + + public void test447() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test447"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + SpaceWar.SpacePanel var4 = new SpaceWar.SpacePanel(); + java.awt.Color var5 = var4.getBackground(); + var0.setForeground(var5); + SpaceWar.SpacePanel var7 = new SpaceWar.SpacePanel(); + float var8 = var7.getAlignmentX(); + var7.setVisible(false); + boolean var11 = var7.isDoubleBuffered(); + java.awt.dnd.DropTarget var12 = var7.getDropTarget(); + var7.show(false); + java.awt.Rectangle var15 = var7.getVisibleRect(); + var0.repaint(var15); + java.awt.FocusTraversalPolicy var17 = var0.getFocusTraversalPolicy(); + var0.resetKeyboardActions(); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + float var20 = var19.getAlignmentX(); + var19.setVisible(false); + boolean var23 = var19.isDoubleBuffered(); + java.awt.dnd.DropTarget var24 = var19.getDropTarget(); + var19.show(false); + java.awt.Rectangle var27 = var19.getVisibleRect(); + var0.computeVisibleRect(var27); + SpaceWar.SpacePanel var29 = new SpaceWar.SpacePanel(); + java.awt.Color var30 = var29.getBackground(); + var29.repaint(); + java.awt.im.InputMethodRequests var32 = var29.getInputMethodRequests(); + var29.setDoubleBuffered(true); + var29.show(false); + var29.setAlignmentY(100.0f); + SpaceWar.SpacePanel var39 = new SpaceWar.SpacePanel(); + float var40 = var39.getAlignmentX(); + var39.setVisible(false); + SpaceWar.SpacePanel var43 = new SpaceWar.SpacePanel(); + java.awt.Color var44 = var43.getBackground(); + var39.setForeground(var44); + SpaceWar.SpacePanel var46 = new SpaceWar.SpacePanel(); + float var47 = var46.getAlignmentX(); + var46.setVisible(false); + boolean var50 = var46.isDoubleBuffered(); + java.awt.dnd.DropTarget var51 = var46.getDropTarget(); + var46.show(false); + java.awt.Rectangle var54 = var46.getVisibleRect(); + var39.repaint(var54); + java.awt.FocusTraversalPolicy var56 = var39.getFocusTraversalPolicy(); + java.awt.im.InputMethodRequests var57 = var39.getInputMethodRequests(); + var39.layout(); + boolean var59 = var39.isFocusTraversalPolicyProvider(); + java.awt.Insets var60 = var39.insets(); + java.awt.Dimension var61 = var39.getMinimumSize(); + java.awt.Dimension var62 = var29.getSize(var61); + var0.resize(var62); + java.awt.image.VolatileImage var66 = var0.createVolatileImage(505, 499); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var27); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var30); + + // Regression assertion (captures the current behavior of the code) + assertNull(var32); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var40 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var44); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var47 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var50 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var51); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var54); + + // Regression assertion (captures the current behavior of the code) + assertNull(var56); + + // Regression assertion (captures the current behavior of the code) + assertNull(var57); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var59 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var60); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var61); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var62); + + // Regression assertion (captures the current behavior of the code) + assertNull(var66); + + } + + public void test448() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test448"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + SpaceWar.SpacePanel var4 = new SpaceWar.SpacePanel(); + java.awt.Color var5 = var4.getBackground(); + var0.setForeground(var5); + SpaceWar.SpacePanel var7 = new SpaceWar.SpacePanel(); + float var8 = var7.getAlignmentX(); + var7.setVisible(false); + boolean var11 = var7.isDoubleBuffered(); + java.awt.dnd.DropTarget var12 = var7.getDropTarget(); + var7.show(false); + java.awt.Rectangle var15 = var7.getVisibleRect(); + var0.repaint(var15); + java.awt.FocusTraversalPolicy var17 = var0.getFocusTraversalPolicy(); + SpaceWar.SpacePanel var18 = new SpaceWar.SpacePanel(); + float var19 = var18.getAlignmentX(); + var18.firePropertyChange("", (-1), 1); + boolean var24 = var18.isFocusOwner(); + SpaceWar.SpacePanel var26 = new SpaceWar.SpacePanel(); + float var27 = var26.getAlignmentX(); + var26.setVisible(false); + java.awt.Dimension var30 = var26.getPreferredSize(); + java.awt.Toolkit var31 = var26.getToolkit(); + SpaceWar.SpacePanel var32 = new SpaceWar.SpacePanel(); + var32.setName(""); + int var35 = var32.getX(); + SpaceWar.SpacePanel var36 = new SpaceWar.SpacePanel(); + float var37 = var36.getAlignmentX(); + var36.setVisible(false); + var36.nextFocus(); + SpaceWar.SpacePanel var41 = new SpaceWar.SpacePanel(); + float var42 = var41.getAlignmentX(); + var41.setVisible(false); + SpaceWar.SpacePanel var45 = new SpaceWar.SpacePanel(); + java.awt.Color var46 = var45.getBackground(); + var41.setForeground(var46); + var36.setBackground(var46); + var32.setBackground(var46); + var26.setForeground(var46); + var18.putClientProperty((java.lang.Object)(byte)100, (java.lang.Object)var46); + var0.setBackground(var46); + SpaceWar.SpacePanel var53 = new SpaceWar.SpacePanel(); + float var54 = var53.getAlignmentX(); + var53.setVisible(false); + boolean var57 = var53.isDoubleBuffered(); + java.awt.dnd.DropTarget var58 = var53.getDropTarget(); + var53.show(false); + boolean var61 = var53.isPaintingForPrint(); + SpaceWar.SpacePanel var62 = new SpaceWar.SpacePanel(); + float var63 = var62.getAlignmentX(); + SpaceWar.SpacePanel var64 = new SpaceWar.SpacePanel(); + float var65 = var64.getAlignmentX(); + var64.setVisible(false); + java.awt.Dimension var68 = var64.getPreferredSize(); + boolean var69 = var64.getVerifyInputWhenFocusTarget(); + java.awt.Component var72 = var64.findComponentAt(10, 1); + var62.addKeyListener((java.awt.event.KeyListener)var64); + java.awt.Dimension var74 = var64.getMinimumSize(); + var53.setMinimumSize(var74); + java.awt.Dimension var76 = var0.getSize(var74); + var0.doLayout(); + boolean var78 = var0.isFocusTraversalPolicySet(); + boolean var80 = var0.requestFocus(false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var24 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var30); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var31); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var35 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var42 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var46); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var54 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var57 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var58); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var61 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var63 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var65 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var68); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var69 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var72); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var74); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var76); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var78 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var80 == false); + + } + + public void test449() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test449"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + boolean var4 = var0.inside(0, (-1)); + var0.transferFocusUpCycle(); + boolean var6 = var0.isFocusCycleRoot(); + var0.firePropertyChange("hi!", 2, 25); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == false); + + } + + public void test450() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test450"); + + + SpaceWar.Player var0 = new SpaceWar.Player(); + int var1 = var0.getPower(); + var0.setLeft(true); + var0.increasePower(0); + int var6 = var0.getR(); + var0.setUp(false); + var0.setDown(false); + int var11 = var0.getY(); + var0.update(); + int var13 = var0.getLives(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == 25); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == 500); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == 3); + + } + + public void test451() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test451"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.reshape((-1), 1, (-1), 10); + var0.disable(); + java.awt.LayoutManager var11 = var0.getLayout(); + java.awt.Container var12 = var0.getParent(); + java.lang.String var13 = var0.getUIClassID(); + float var14 = var0.getAlignmentX(); + var0.enable(true); + boolean var17 = var0.isPaintingTile(); + int var18 = var0.getY(); + var0.setLocation(499, 499); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var13 + "' != '" + "PanelUI"+ "'", var13.equals("PanelUI")); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == 1); + + } + + public void test452() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test452"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var6 = var0.getUI(); + java.awt.im.InputMethodRequests var7 = var0.getInputMethodRequests(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + var8.nextFocus(); + var8.updateUI(); + var8.enableInputMethods(true); + var8.setSize((-1), 1); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + var19.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var0.add((java.awt.Component)var8, (java.lang.Object)"SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + java.awt.ComponentOrientation var25 = var8.getComponentOrientation(); + java.beans.VetoableChangeListener[] var26 = var8.getVetoableChangeListeners(); + int var27 = var8.getHeight(); + var8.enable(true); + java.lang.Object var30 = var8.getTreeLock(); + var8.repaint(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var25); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == 1); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var30); + + } + + public void test453() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test453"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.setInheritsPopupMenu(false); + var0.setFocusTraversalPolicyProvider(true); + boolean var10 = var0.inside(25, 3); + SpaceWar.SpacePanel var11 = new SpaceWar.SpacePanel(); + float var12 = var11.getAlignmentX(); + var11.setVisible(false); + boolean var15 = var11.isDoubleBuffered(); + java.awt.dnd.DropTarget var16 = var11.getDropTarget(); + var11.show(false); + boolean var19 = var11.isPaintingForPrint(); + SpaceWar.SpacePanel var20 = new SpaceWar.SpacePanel(); + float var21 = var20.getAlignmentX(); + SpaceWar.SpacePanel var22 = new SpaceWar.SpacePanel(); + float var23 = var22.getAlignmentX(); + var22.setVisible(false); + java.awt.Dimension var26 = var22.getPreferredSize(); + boolean var27 = var22.getVerifyInputWhenFocusTarget(); + java.awt.Component var30 = var22.findComponentAt(10, 1); + var20.addKeyListener((java.awt.event.KeyListener)var22); + java.awt.Dimension var32 = var22.getMinimumSize(); + var11.setMinimumSize(var32); + var0.setPreferredSize(var32); + boolean var36 = var0.requestFocus(true); + java.awt.Dimension var37 = var0.getMinimumSize(); + java.beans.PropertyChangeListener[] var39 = var0.getPropertyChangeListeners("SpaceWar.SpacePanel[,0,0,0x0,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + javax.swing.KeyStroke[] var40 = var0.getRegisteredKeyStrokes(); + SpaceWar.SpacePanel var41 = new SpaceWar.SpacePanel(); + float var42 = var41.getAlignmentX(); + boolean var43 = var41.hasFocus(); + boolean var44 = var41.isPreferredSizeSet(); + var41.firePropertyChange("", (short)1, (short)0); + boolean var49 = var41.isMaximumSizeSet(); + java.awt.peer.ComponentPeer var50 = var41.getPeer(); + SpaceWar.SpacePanel var51 = new SpaceWar.SpacePanel(); + float var52 = var51.getAlignmentX(); + var51.setVisible(false); + boolean var55 = var51.isDoubleBuffered(); + java.awt.dnd.DropTarget var56 = var51.getDropTarget(); + var51.show(false); + SpaceWar.SpacePanel var59 = new SpaceWar.SpacePanel(); + float var60 = var59.getAlignmentX(); + var59.setVisible(false); + SpaceWar.SpacePanel var63 = new SpaceWar.SpacePanel(); + java.awt.Color var64 = var63.getBackground(); + var59.setForeground(var64); + SpaceWar.SpacePanel var66 = new SpaceWar.SpacePanel(); + float var67 = var66.getAlignmentX(); + var66.setVisible(false); + boolean var70 = var66.isDoubleBuffered(); + java.awt.dnd.DropTarget var71 = var66.getDropTarget(); + var66.show(false); + java.awt.Rectangle var74 = var66.getVisibleRect(); + var59.repaint(var74); + java.awt.FocusTraversalPolicy var76 = var59.getFocusTraversalPolicy(); + java.awt.im.InputMethodRequests var77 = var59.getInputMethodRequests(); + var59.layout(); + SpaceWar.SpacePanel var79 = new SpaceWar.SpacePanel(); + float var80 = var79.getAlignmentX(); + var79.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var85 = new SpaceWar.SpacePanel(); + float var86 = var85.getAlignmentX(); + var85.setVisible(false); + SpaceWar.SpacePanel var89 = new SpaceWar.SpacePanel(); + java.awt.Color var90 = var89.getBackground(); + var85.setForeground(var90); + var79.setBackground(var90); + var59.setForeground(var90); + int var94 = var59.getWidth(); + javax.swing.plaf.PanelUI var95 = var59.getUI(); + var51.setUI(var95); + var41.setUI(var95); + var0.setUI(var95); + java.awt.event.MouseMotionListener[] var99 = var0.getMouseMotionListeners(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var30); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var32); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var36 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var37); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var39); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var40); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var42 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var43 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var44 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var49 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var50); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var52 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var55 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var56); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var60 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var64); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var67 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var70 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var71); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var74); + + // Regression assertion (captures the current behavior of the code) + assertNull(var76); + + // Regression assertion (captures the current behavior of the code) + assertNull(var77); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var80 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var86 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var90); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var94 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var95); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var99); + + } + + public void test454() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test454"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + var0.setName(""); + java.awt.Dimension var3 = var0.minimumSize(); + boolean var4 = var0.isDoubleBuffered(); + SpaceWar.SpacePanel var5 = new SpaceWar.SpacePanel(); + float var6 = var5.getAlignmentX(); + var5.setVisible(false); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + java.awt.Color var10 = var9.getBackground(); + var5.setForeground(var10); + SpaceWar.SpacePanel var12 = new SpaceWar.SpacePanel(); + float var13 = var12.getAlignmentX(); + var12.setVisible(false); + boolean var16 = var12.isDoubleBuffered(); + java.awt.dnd.DropTarget var17 = var12.getDropTarget(); + var12.show(false); + java.awt.Rectangle var20 = var12.getVisibleRect(); + var5.repaint(var20); + java.awt.FocusTraversalPolicy var22 = var5.getFocusTraversalPolicy(); + java.awt.im.InputMethodRequests var23 = var5.getInputMethodRequests(); + var5.layout(); + boolean var25 = var5.isFocusTraversalPolicyProvider(); + java.awt.Component var26 = var0.add((java.awt.Component)var5); + var5.setOpaque(false); + var5.list(); + boolean var30 = javax.swing.JComponent.isLightweightComponent((java.awt.Component)var5); + var5.setFocusTraversalPolicyProvider(true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertNull(var23); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var30 == false); + + } + + public void test455() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test455"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + var0.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + java.awt.event.ContainerListener[] var5 = var0.getContainerListeners(); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + float var7 = var6.getAlignmentX(); + var6.setVisible(false); + var6.setInheritsPopupMenu(false); + boolean var12 = var6.isDoubleBuffered(); + SpaceWar.SpacePanel var13 = new SpaceWar.SpacePanel(); + float var14 = var13.getAlignmentX(); + var13.setVisible(false); + var13.nextFocus(); + var13.reshape((-1), 1, (-1), 10); + var13.disable(); + java.awt.LayoutManager var24 = var13.getLayout(); + var6.setLayout(var24); + var0.setLayout(var24); + int var27 = var0.getComponentCount(); + boolean var28 = var0.isValidateRoot(); + var0.hide(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var28 == false); + + } + + public void test456() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test456"); + + + SpaceWar.Player var0 = new SpaceWar.Player(); + boolean var1 = var0.isRecovering(); + int var2 = var0.getRequiredPower(); + var0.increasePower(0); + int var5 = var0.getR(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var2 == 1); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == 25); + + } + + public void test457() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test457"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + var0.show(false); + java.awt.Rectangle var8 = var0.getVisibleRect(); + java.awt.image.BufferedImage var10 = var0.loadImg("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + java.awt.ComponentOrientation var11 = var0.getComponentOrientation(); + boolean var12 = var0.isPaintingTile(); + boolean var13 = var0.isOptimizedDrawingEnabled(); + var0.resetKeyboardActions(); + java.awt.event.KeyListener[] var15 = var0.getKeyListeners(); + SpaceWar.SpacePanel var16 = new SpaceWar.SpacePanel(); + float var17 = var16.getAlignmentX(); + var16.setVisible(false); + var16.nextFocus(); + var16.reshape((-1), 1, (-1), 10); + var16.disable(); + boolean var27 = var16.isFocusable(); + int var28 = var16.getHeight(); + javax.swing.InputVerifier var29 = var16.getInputVerifier(); + java.awt.Graphics var30 = var16.getGraphics(); + java.awt.Color var31 = var16.getForeground(); + SpaceWar.SpacePanel var32 = new SpaceWar.SpacePanel(); + float var33 = var32.getAlignmentX(); + var32.setVisible(false); + boolean var36 = var32.isDoubleBuffered(); + java.awt.dnd.DropTarget var37 = var32.getDropTarget(); + var32.show(false); + java.awt.Rectangle var40 = var32.getVisibleRect(); + java.awt.Toolkit var41 = var32.getToolkit(); + java.awt.event.MouseMotionListener[] var42 = var32.getMouseMotionListeners(); + SpaceWar.SpacePanel var43 = new SpaceWar.SpacePanel(); + float var44 = var43.getAlignmentX(); + var43.setVisible(false); + boolean var47 = var43.isDoubleBuffered(); + java.awt.dnd.DropTarget var48 = var43.getDropTarget(); + var43.show(false); + boolean var51 = var43.isPaintingForPrint(); + SpaceWar.SpacePanel var52 = new SpaceWar.SpacePanel(); + float var53 = var52.getAlignmentX(); + var52.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var58 = var52.getMouseListeners(); + int var59 = var52.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var60 = var52.getInputMethodRequests(); + var43.addKeyListener((java.awt.event.KeyListener)var52); + SpaceWar.SpacePanel var62 = new SpaceWar.SpacePanel(); + float var63 = var62.getAlignmentX(); + var62.setVisible(false); + boolean var66 = var62.isDoubleBuffered(); + var62.list(); + float var68 = var62.getAlignmentY(); + boolean var69 = var52.isFocusCycleRoot((java.awt.Container)var62); + javax.swing.JPopupMenu var70 = var62.getComponentPopupMenu(); + var62.move((-1), 100); + var62.validate(); + java.awt.Rectangle var75 = var62.getVisibleRect(); + var32.paintImmediately(var75); + var16.paintImmediately(var75); + var0.computeVisibleRect(var75); + java.awt.Dimension var79 = var0.minimumSize(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var28 == 10); + + // Regression assertion (captures the current behavior of the code) + assertNull(var29); + + // Regression assertion (captures the current behavior of the code) + assertNull(var30); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var31); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var33 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var36 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var37); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var40); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var41); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var42); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var44 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var47 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var48); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var51 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var53 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var58); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var59 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var60); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var63 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var66 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var68 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var69 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var70); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var75); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var79); + + } + + public void test458() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test458"); + + + SpaceWar.Bullet var3 = new SpaceWar.Bullet(339.8923933063379d, 3, 498); + + } + + public void test459() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test459"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var6 = var0.getUI(); + java.awt.im.InputMethodRequests var7 = var0.getInputMethodRequests(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + var8.nextFocus(); + var8.updateUI(); + var8.enableInputMethods(true); + var8.setSize((-1), 1); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + var19.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var0.add((java.awt.Component)var8, (java.lang.Object)"SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + SpaceWar.SpacePanel var25 = new SpaceWar.SpacePanel(); + float var26 = var25.getAlignmentX(); + var25.setVisible(false); + java.awt.Dimension var29 = var25.getPreferredSize(); + java.awt.Toolkit var30 = var25.getToolkit(); + java.awt.Toolkit var31 = var25.getToolkit(); + java.awt.Component var32 = var8.add((java.awt.Component)var25); + int var33 = var8.getY(); + var8.removeNotify(); + java.awt.event.KeyListener[] var35 = var8.getKeyListeners(); + boolean var36 = var8.isFocusCycleRoot(); + var8.firePropertyChange("SpaceWar.SpacePanel[,499,2,499x500,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", (byte)(-1), (byte)1); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var29); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var30); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var31); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var32); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var33 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var35); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var36 == false); + + } + + public void test460() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test460"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + boolean var2 = var0.hasFocus(); + boolean var3 = var0.isPreferredSizeSet(); + var0.firePropertyChange("", (short)1, (short)0); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.firePropertyChange("", (-1), 1); + boolean var14 = var8.isFocusOwner(); + SpaceWar.SpacePanel var16 = new SpaceWar.SpacePanel(); + float var17 = var16.getAlignmentX(); + var16.setVisible(false); + java.awt.Dimension var20 = var16.getPreferredSize(); + java.awt.Toolkit var21 = var16.getToolkit(); + SpaceWar.SpacePanel var22 = new SpaceWar.SpacePanel(); + var22.setName(""); + int var25 = var22.getX(); + SpaceWar.SpacePanel var26 = new SpaceWar.SpacePanel(); + float var27 = var26.getAlignmentX(); + var26.setVisible(false); + var26.nextFocus(); + SpaceWar.SpacePanel var31 = new SpaceWar.SpacePanel(); + float var32 = var31.getAlignmentX(); + var31.setVisible(false); + SpaceWar.SpacePanel var35 = new SpaceWar.SpacePanel(); + java.awt.Color var36 = var35.getBackground(); + var31.setForeground(var36); + var26.setBackground(var36); + var22.setBackground(var36); + var16.setForeground(var36); + var8.putClientProperty((java.lang.Object)(byte)100, (java.lang.Object)var36); + boolean var42 = var8.isEnabled(); + java.awt.event.ComponentListener[] var43 = var8.getComponentListeners(); + java.awt.Dimension var44 = var8.getPreferredSize(); + var0.setSize(var44); + boolean var46 = var0.isValidateRoot(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var2 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var21); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var32 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var36); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var42 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var43); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var44); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var46 == false); + + } + + public void test461() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test461"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + boolean var2 = var0.hasFocus(); + boolean var3 = var0.isPreferredSizeSet(); + var0.firePropertyChange("", (short)1, (short)0); + boolean var8 = var0.isMaximumSizeSet(); + java.awt.peer.ComponentPeer var9 = var0.getPeer(); + SpaceWar.SpacePanel var10 = new SpaceWar.SpacePanel(); + float var11 = var10.getAlignmentX(); + var10.setVisible(false); + boolean var14 = var10.isDoubleBuffered(); + java.awt.dnd.DropTarget var15 = var10.getDropTarget(); + var10.show(false); + SpaceWar.SpacePanel var18 = new SpaceWar.SpacePanel(); + float var19 = var18.getAlignmentX(); + var18.setVisible(false); + SpaceWar.SpacePanel var22 = new SpaceWar.SpacePanel(); + java.awt.Color var23 = var22.getBackground(); + var18.setForeground(var23); + SpaceWar.SpacePanel var25 = new SpaceWar.SpacePanel(); + float var26 = var25.getAlignmentX(); + var25.setVisible(false); + boolean var29 = var25.isDoubleBuffered(); + java.awt.dnd.DropTarget var30 = var25.getDropTarget(); + var25.show(false); + java.awt.Rectangle var33 = var25.getVisibleRect(); + var18.repaint(var33); + java.awt.FocusTraversalPolicy var35 = var18.getFocusTraversalPolicy(); + java.awt.im.InputMethodRequests var36 = var18.getInputMethodRequests(); + var18.layout(); + SpaceWar.SpacePanel var38 = new SpaceWar.SpacePanel(); + float var39 = var38.getAlignmentX(); + var38.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var44 = new SpaceWar.SpacePanel(); + float var45 = var44.getAlignmentX(); + var44.setVisible(false); + SpaceWar.SpacePanel var48 = new SpaceWar.SpacePanel(); + java.awt.Color var49 = var48.getBackground(); + var44.setForeground(var49); + var38.setBackground(var49); + var18.setForeground(var49); + int var53 = var18.getWidth(); + javax.swing.plaf.PanelUI var54 = var18.getUI(); + var10.setUI(var54); + var0.setUI(var54); + java.awt.event.MouseListener[] var57 = var0.getMouseListeners(); + javax.swing.plaf.PanelUI var58 = var0.getUI(); + var0.transferFocusDownCycle(); + boolean var60 = var0.isBackgroundSet(); + java.awt.Point var62 = var0.getMousePosition(true); + boolean var63 = var0.getVerifyInputWhenFocusTarget(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var2 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var9); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var23); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var29 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var30); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var33); + + // Regression assertion (captures the current behavior of the code) + assertNull(var35); + + // Regression assertion (captures the current behavior of the code) + assertNull(var36); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var39 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var45 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var49); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var53 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var54); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var57); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var58); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var60 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var62); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var63 == true); + + } + + public void test462() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test462"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + var0.show(false); + boolean var8 = var0.isPaintingForPrint(); + boolean var9 = var0.getIgnoreRepaint(); + java.awt.Component[] var10 = var0.getComponents(); + SpaceWar.SpacePanel var11 = new SpaceWar.SpacePanel(); + float var12 = var11.getAlignmentX(); + SpaceWar.SpacePanel var13 = new SpaceWar.SpacePanel(); + float var14 = var13.getAlignmentX(); + var13.setVisible(false); + java.awt.Dimension var17 = var13.getPreferredSize(); + boolean var18 = var13.getVerifyInputWhenFocusTarget(); + java.awt.Component var21 = var13.findComponentAt(10, 1); + var11.addKeyListener((java.awt.event.KeyListener)var13); + SpaceWar.SpacePanel var23 = new SpaceWar.SpacePanel(); + float var24 = var23.getAlignmentX(); + SpaceWar.SpacePanel var25 = new SpaceWar.SpacePanel(); + float var26 = var25.getAlignmentX(); + var25.setVisible(false); + java.awt.Dimension var29 = var25.getPreferredSize(); + boolean var30 = var25.getVerifyInputWhenFocusTarget(); + java.awt.Component var33 = var25.findComponentAt(10, 1); + var23.addKeyListener((java.awt.event.KeyListener)var25); + var25.repaint(100, (-1), (-1), 1); + java.awt.image.ColorModel var40 = var25.getColorModel(); + SpaceWar.SpacePanel var41 = new SpaceWar.SpacePanel(); + float var42 = var41.getAlignmentX(); + var41.setVisible(false); + boolean var45 = var41.isDoubleBuffered(); + var41.list(); + SpaceWar.SpacePanel var47 = new SpaceWar.SpacePanel(); + float var48 = var47.getAlignmentX(); + var47.setVisible(false); + boolean var51 = var47.isDoubleBuffered(); + java.awt.dnd.DropTarget var52 = var47.getDropTarget(); + var47.show(false); + java.awt.Rectangle var55 = var47.getVisibleRect(); + java.awt.image.BufferedImage var57 = var47.loadImg("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + boolean var58 = var41.isAncestorOf((java.awt.Component)var47); + javax.swing.InputVerifier var59 = var47.getInputVerifier(); + var13.putClientProperty((java.lang.Object)var25, (java.lang.Object)var47); + java.lang.String var61 = var13.getUIClassID(); + SpaceWar.SpacePanel var62 = new SpaceWar.SpacePanel(); + float var63 = var62.getAlignmentX(); + var62.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var68 = var62.getMouseListeners(); + int var69 = var62.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var70 = var62.getInputMethodRequests(); + var62.removeNotify(); + var62.enable(); + SpaceWar.SpacePanel var73 = new SpaceWar.SpacePanel(); + java.awt.Color var74 = var73.getBackground(); + boolean var77 = var73.inside(0, (-1)); + var73.transferFocusUpCycle(); + java.lang.String var79 = var73.getName(); + boolean var80 = var62.isFocusCycleRoot((java.awt.Container)var73); + java.awt.Dimension var81 = var62.getMinimumSize(); + boolean var84 = var62.inside(500, 3); + boolean var85 = var13.isFocusCycleRoot((java.awt.Container)var62); + boolean var86 = var13.isFocusable(); + var0.setNextFocusableComponent((java.awt.Component)var13); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var21); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var24 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var29); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var30 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var33); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var40); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var42 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var45 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var48 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var51 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var52); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var55); + + // Regression assertion (captures the current behavior of the code) + assertNull(var57); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var58 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var59); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var61 + "' != '" + "PanelUI"+ "'", var61.equals("PanelUI")); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var63 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var68); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var69 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var70); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var74); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var77 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var79); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var80 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var81); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var84 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var85 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var86 == true); + + } + + public void test463() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test463"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + var0.show(false); + boolean var8 = var0.isPaintingForPrint(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var15 = var9.getMouseListeners(); + int var16 = var9.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var17 = var9.getInputMethodRequests(); + var0.addKeyListener((java.awt.event.KeyListener)var9); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + float var20 = var19.getAlignmentX(); + var19.setVisible(false); + boolean var23 = var19.isDoubleBuffered(); + var19.list(); + float var25 = var19.getAlignmentY(); + boolean var26 = var9.isFocusCycleRoot((java.awt.Container)var19); + boolean var27 = var19.isEnabled(); + java.awt.Dimension var28 = var19.getMaximumSize(); + var19.setFocusCycleRoot(false); + boolean var31 = var19.isPaintingTile(); + java.awt.Rectangle var32 = var19.getBounds(); + java.awt.ComponentOrientation var33 = var19.getComponentOrientation(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var28); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var31 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var32); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var33); + + } + + public void test464() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test464"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + SpaceWar.SpacePanel var4 = new SpaceWar.SpacePanel(); + java.awt.Color var5 = var4.getBackground(); + var0.setForeground(var5); + SpaceWar.SpacePanel var7 = new SpaceWar.SpacePanel(); + float var8 = var7.getAlignmentX(); + var7.setVisible(false); + boolean var11 = var7.isDoubleBuffered(); + java.awt.dnd.DropTarget var12 = var7.getDropTarget(); + var7.show(false); + java.awt.Rectangle var15 = var7.getVisibleRect(); + var0.repaint(var15); + java.awt.FocusTraversalPolicy var17 = var0.getFocusTraversalPolicy(); + var0.resetKeyboardActions(); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + float var20 = var19.getAlignmentX(); + var19.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var25 = var19.getMouseListeners(); + int var26 = var19.getDebugGraphicsOptions(); + SpaceWar.SpacePanel var27 = new SpaceWar.SpacePanel(); + float var28 = var27.getAlignmentX(); + var27.setVisible(false); + boolean var31 = var27.isDoubleBuffered(); + java.awt.dnd.DropTarget var32 = var27.getDropTarget(); + var27.show(false); + java.awt.Rectangle var35 = var27.getVisibleRect(); + var19.paintImmediately(var35); + var0.setBounds(var35); + boolean var38 = var0.getVerifyInputWhenFocusTarget(); + var0.setFocusTraversalKeysEnabled(false); + var0.validate(); + int var42 = var0.getX(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var25); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var28 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var31 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var32); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var35); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var38 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var42 == 0); + + } + + public void test465() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test465"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var6 = var0.getUI(); + java.awt.im.InputMethodRequests var7 = var0.getInputMethodRequests(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + var8.nextFocus(); + var8.updateUI(); + var8.enableInputMethods(true); + var8.setSize((-1), 1); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + var19.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var0.add((java.awt.Component)var8, (java.lang.Object)"SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + java.awt.event.KeyListener[] var25 = var0.getKeyListeners(); + java.awt.FocusTraversalPolicy var26 = var0.getFocusTraversalPolicy(); + java.awt.Component var29 = var0.locate(3, 100); + SpaceWar.SpacePanel var30 = new SpaceWar.SpacePanel(); + float var31 = var30.getAlignmentX(); + var30.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var36 = var30.getMouseListeners(); + java.awt.Dimension var37 = var30.getPreferredSize(); + java.util.Locale var38 = var30.getLocale(); + var30.setFocusable(true); + var30.setSize(3, 10); + SpaceWar.SpacePanel var44 = new SpaceWar.SpacePanel(); + float var45 = var44.getAlignmentX(); + var44.setVisible(false); + java.awt.Dimension var48 = var44.getPreferredSize(); + boolean var49 = var44.getVerifyInputWhenFocusTarget(); + java.awt.Dimension var50 = var44.size(); + var30.setSize(var50); + var0.setMinimumSize(var50); + var0.doLayout(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var25); + + // Regression assertion (captures the current behavior of the code) + assertNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertNull(var29); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var31 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var36); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var37); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var38); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var45 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var48); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var49 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var50); + + } + + public void test466() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test466"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + SpaceWar.SpacePanel var4 = new SpaceWar.SpacePanel(); + java.awt.Color var5 = var4.getBackground(); + var0.setForeground(var5); + SpaceWar.SpacePanel var7 = new SpaceWar.SpacePanel(); + float var8 = var7.getAlignmentX(); + var7.setVisible(false); + boolean var11 = var7.isDoubleBuffered(); + java.awt.dnd.DropTarget var12 = var7.getDropTarget(); + var7.show(false); + java.awt.Rectangle var15 = var7.getVisibleRect(); + var0.repaint(var15); + java.awt.FocusTraversalPolicy var17 = var0.getFocusTraversalPolicy(); + var0.resetKeyboardActions(); + var0.setInheritsPopupMenu(true); + SpaceWar.SpacePanel var21 = new SpaceWar.SpacePanel(); + float var22 = var21.getAlignmentX(); + var21.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var27 = new SpaceWar.SpacePanel(); + float var28 = var27.getAlignmentX(); + var27.setVisible(false); + java.awt.Dimension var31 = var27.getPreferredSize(); + var21.setMaximumSize(var31); + boolean var33 = var21.getVerifyInputWhenFocusTarget(); + boolean var34 = var21.isFontSet(); + SpaceWar.SpacePanel var35 = new SpaceWar.SpacePanel(); + float var36 = var35.getAlignmentX(); + var35.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var41 = var35.getUI(); + java.awt.im.InputMethodRequests var42 = var35.getInputMethodRequests(); + SpaceWar.SpacePanel var43 = new SpaceWar.SpacePanel(); + float var44 = var43.getAlignmentX(); + var43.setVisible(false); + var43.nextFocus(); + var43.updateUI(); + var43.enableInputMethods(true); + var43.setSize((-1), 1); + SpaceWar.SpacePanel var54 = new SpaceWar.SpacePanel(); + var54.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var35.add((java.awt.Component)var43, (java.lang.Object)"SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + java.awt.ComponentOrientation var60 = var43.getComponentOrientation(); + java.beans.VetoableChangeListener[] var61 = var43.getVetoableChangeListeners(); + int var62 = var43.getHeight(); + var43.enable(true); + boolean var65 = var43.isFocusTraversalPolicyProvider(); + SpaceWar.SpacePanel var66 = new SpaceWar.SpacePanel(); + java.awt.Color var67 = var66.getBackground(); + var66.repaint(); + var66.setRequestFocusEnabled(false); + var66.reshape(100, 0, 100, 0); + var66.requestFocus(); + var66.firePropertyChange("hi!", '4', ' '); + java.awt.Point var81 = var66.getLocation(); + var43.setLocation(var81); + boolean var83 = var43.isManagingFocus(); + int var84 = var21.getComponentZOrder((java.awt.Component)var43); + SpaceWar.SpacePanel var85 = new SpaceWar.SpacePanel(); + float var86 = var85.getAlignmentX(); + var85.firePropertyChange("", (-1), 1); + boolean var91 = var85.isFocusOwner(); + java.awt.Dimension var92 = var85.getMinimumSize(); + var43.setPreferredSize(var92); + var0.setMinimumSize(var92); + boolean var95 = var0.requestDefaultFocus(); + int var96 = var0.getX(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var22 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var28 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var31); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var33 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var34 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var36 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var41); + + // Regression assertion (captures the current behavior of the code) + assertNull(var42); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var44 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var60); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var61); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var62 == 1); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var65 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var67); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var81); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var83 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var84 == (-1)); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var86 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var91 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var92); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var95 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var96 == 0); + + } + + public void test467() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test467"); + + + SpaceWar.Enemy var2 = new SpaceWar.Enemy(499, 0); + var2.update(); + + } + + public void test468() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test468"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + SpaceWar.SpacePanel var2 = new SpaceWar.SpacePanel(); + float var3 = var2.getAlignmentX(); + var2.setVisible(false); + java.awt.Dimension var6 = var2.getPreferredSize(); + boolean var7 = var2.getVerifyInputWhenFocusTarget(); + java.awt.Component var10 = var2.findComponentAt(10, 1); + var0.addKeyListener((java.awt.event.KeyListener)var2); + var2.repaint(100, (-1), (-1), 1); + java.awt.image.ColorModel var17 = var2.getColorModel(); + boolean var18 = var2.isFocusTraversalPolicyProvider(); + var2.show(false); + boolean var21 = var2.isPreferredSizeSet(); + int var24 = var2.getBaseline(3, 25); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var24 == (-1)); + + } + + public void test469() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test469"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + java.awt.Dimension var4 = var0.getPreferredSize(); + boolean var5 = var0.getVerifyInputWhenFocusTarget(); + java.awt.Component var8 = var0.findComponentAt(10, 1); + boolean var9 = var0.requestDefaultFocus(); + java.awt.Insets var10 = var0.getInsets(); + var0.setDoubleBuffered(false); + java.awt.Toolkit var13 = var0.getToolkit(); + java.awt.Dimension var14 = var0.getMinimumSize(); + java.awt.event.FocusListener[] var15 = var0.getFocusListeners(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var4); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + } + + public void test470() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test470"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var6 = var0.getMouseListeners(); + int var7 = var0.getDebugGraphicsOptions(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + boolean var12 = var8.isDoubleBuffered(); + java.awt.dnd.DropTarget var13 = var8.getDropTarget(); + var8.show(false); + java.awt.Rectangle var16 = var8.getVisibleRect(); + var0.paintImmediately(var16); + var0.doLayout(); + var0.repaint((-1L), 499, 100, 2, 10); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + } + + public void test471() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test471"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + SpaceWar.SpacePanel var5 = new SpaceWar.SpacePanel(); + java.awt.Color var6 = var5.getBackground(); + var5.repaint(); + java.lang.Object var8 = var0.getClientProperty((java.lang.Object)var5); + boolean var11 = var5.contains(1, 500); + var5.firePropertyChange("PanelUI", 100L, 0L); + var5.setRequestFocusEnabled(true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == false); + + } + + public void test472() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test472"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var6 = var0.getMouseListeners(); + int var7 = var0.getDebugGraphicsOptions(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + boolean var12 = var8.isDoubleBuffered(); + java.awt.dnd.DropTarget var13 = var8.getDropTarget(); + var8.show(false); + java.awt.Rectangle var16 = var8.getVisibleRect(); + var0.paintImmediately(var16); + var0.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", '#', '#'); + var0.list(); + java.awt.Rectangle var23 = var0.getBounds(); + boolean var24 = var0.isEnabled(); + SpaceWar.SpacePanel var25 = new SpaceWar.SpacePanel(); + float var26 = var25.getAlignmentX(); + var25.setVisible(false); + var25.nextFocus(); + var25.reshape((-1), 1, (-1), 10); + var25.disable(); + java.awt.LayoutManager var36 = var25.getLayout(); + boolean var39 = var25.contains((-1), 0); + SpaceWar.SpacePanel var40 = new SpaceWar.SpacePanel(); + float var41 = var40.getAlignmentX(); + var40.setVisible(false); + var40.nextFocus(); + var40.updateUI(); + var40.enableInputMethods(true); + var40.setSize((-1), 1); + java.awt.Component var51 = var25.add((java.awt.Component)var40); + SpaceWar.SpacePanel var52 = new SpaceWar.SpacePanel(); + float var53 = var52.getAlignmentX(); + var52.setVisible(false); + var52.nextFocus(); + var52.updateUI(); + var52.enableInputMethods(true); + java.lang.String var60 = var52.toString(); + java.awt.FocusTraversalPolicy var61 = var52.getFocusTraversalPolicy(); + var40.removeKeyListener((java.awt.event.KeyListener)var52); + var40.setFocusable(false); + var40.firePropertyChange("hi!", ' ', 'a'); + var40.addNotify(); + java.awt.Component var70 = var0.add((java.awt.Component)var40); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var23); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var24 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var36); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var39 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var41 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var51); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var53 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var60 + "' != '" + "SpaceWar.SpacePanel[,0,0,0var60,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"+ "'", var60.equals("SpaceWar.SpacePanel[,0,0,0var60,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]")); + + // Regression assertion (captures the current behavior of the code) + assertNull(var61); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var70); + + } + + public void test473() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test473"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.setInheritsPopupMenu(false); + boolean var6 = var0.isMinimumSizeSet(); + java.awt.FocusTraversalPolicy var7 = var0.getFocusTraversalPolicy(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.setVisible(false); + var9.setInheritsPopupMenu(false); + var9.setFocusTraversalPolicyProvider(true); + SpaceWar.SpacePanel var17 = new SpaceWar.SpacePanel(); + float var18 = var17.getAlignmentX(); + var17.setVisible(false); + boolean var21 = var17.isDoubleBuffered(); + var17.list(); + SpaceWar.SpacePanel var23 = new SpaceWar.SpacePanel(); + float var24 = var23.getAlignmentX(); + var23.setVisible(false); + boolean var27 = var23.isDoubleBuffered(); + java.awt.dnd.DropTarget var28 = var23.getDropTarget(); + var23.show(false); + java.awt.Rectangle var31 = var23.getVisibleRect(); + java.awt.Rectangle var32 = var17.getBounds(var31); + javax.swing.JToolTip var33 = var17.createToolTip(); + var9.removeKeyListener((java.awt.event.KeyListener)var17); + var9.setFocusTraversalKeysEnabled(true); + javax.swing.KeyStroke[] var37 = var9.getRegisteredKeyStrokes(); + SpaceWar.SpacePanel var38 = new SpaceWar.SpacePanel(); + float var39 = var38.getAlignmentX(); + var38.setVisible(false); + java.awt.Dimension var42 = var38.getPreferredSize(); + java.awt.Toolkit var43 = var38.getToolkit(); + boolean var44 = var38.isFocusable(); + javax.swing.KeyStroke[] var45 = var38.getRegisteredKeyStrokes(); + java.awt.Component var48 = var38.getComponentAt(100, 100); + java.lang.Object var49 = var38.getTreeLock(); + boolean var52 = var38.inside(400, 0); + java.awt.event.MouseWheelListener[] var53 = var38.getMouseWheelListeners(); + var38.enableInputMethods(true); + boolean var56 = var9.isAncestorOf((java.awt.Component)var38); + java.awt.Component var57 = var0.add("SpaceWar.SpacePanel[,-1,1,-1x10,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", (java.awt.Component)var38); + var0.setLocation(2, 99); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var24 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var28); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var31); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var32); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var33); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var37); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var39 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var42); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var43); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var44 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var45); + + // Regression assertion (captures the current behavior of the code) + assertNull(var48); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var49); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var52 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var53); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var56 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var57); + + } + + public void test474() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test474"); + + + SpaceWar.Enemy var2 = new SpaceWar.Enemy((-1), 10); + int var3 = var2.getRank(); + var2.explode(); + var2.explode(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == 10); + + } + + public void test475() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test475"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + SpaceWar.SpacePanel var2 = new SpaceWar.SpacePanel(); + float var3 = var2.getAlignmentX(); + var2.setVisible(false); + java.awt.Dimension var6 = var2.getPreferredSize(); + boolean var7 = var2.getVerifyInputWhenFocusTarget(); + java.awt.Component var10 = var2.findComponentAt(10, 1); + var0.addKeyListener((java.awt.event.KeyListener)var2); + var2.repaint(100, (-1), (-1), 1); + java.awt.image.ColorModel var17 = var2.getColorModel(); + boolean var18 = var2.isFocusTraversalPolicyProvider(); + var2.show(false); + var2.updateUI(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == false); + + } + + public void test476() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test476"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var6 = var0.getUI(); + java.awt.im.InputMethodRequests var7 = var0.getInputMethodRequests(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + var8.nextFocus(); + var8.updateUI(); + var8.enableInputMethods(true); + var8.setSize((-1), 1); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + var19.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var0.add((java.awt.Component)var8, (java.lang.Object)"SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + var0.setAutoscrolls(false); + SpaceWar.SpacePanel var27 = new SpaceWar.SpacePanel(); + java.awt.Color var28 = var27.getBackground(); + var27.repaint(); + var27.setRequestFocusEnabled(false); + var27.setIgnoreRepaint(false); + boolean var34 = var27.requestFocusInWindow(); + float var35 = var27.getAlignmentY(); + java.awt.LayoutManager var36 = var27.getLayout(); + var0.setLayout(var36); + var0.validate(); + int var41 = var0.getBaseline(10, 0); + boolean var42 = var0.isFocusTraversable(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var28); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var34 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var35 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var36); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var41 == (-1)); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var42 == true); + + } + + public void test477() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test477"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.updateUI(); + var0.enableInputMethods(true); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + boolean var10 = var8.hasFocus(); + java.awt.Insets var11 = var8.getInsets(); + java.awt.Insets var12 = var0.getInsets(var11); + java.awt.Font var13 = var0.getFont(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var13); + + } + + public void test478() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test478"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + javax.swing.event.AncestorListener[] var1 = var0.getAncestorListeners(); + var0.setOpaque(false); + var0.setIgnoreRepaint(true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + } + + public void test479() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test479"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + boolean var6 = var0.isFocusOwner(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + java.awt.Dimension var12 = var8.getPreferredSize(); + java.awt.Toolkit var13 = var8.getToolkit(); + SpaceWar.SpacePanel var14 = new SpaceWar.SpacePanel(); + var14.setName(""); + int var17 = var14.getX(); + SpaceWar.SpacePanel var18 = new SpaceWar.SpacePanel(); + float var19 = var18.getAlignmentX(); + var18.setVisible(false); + var18.nextFocus(); + SpaceWar.SpacePanel var23 = new SpaceWar.SpacePanel(); + float var24 = var23.getAlignmentX(); + var23.setVisible(false); + SpaceWar.SpacePanel var27 = new SpaceWar.SpacePanel(); + java.awt.Color var28 = var27.getBackground(); + var23.setForeground(var28); + var18.setBackground(var28); + var14.setBackground(var28); + var8.setForeground(var28); + var0.putClientProperty((java.lang.Object)(byte)100, (java.lang.Object)var28); + java.awt.Color var34 = var0.getBackground(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var24 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var28); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var34); + + } + + public void test480() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test480"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + java.awt.Dimension var4 = var0.getPreferredSize(); + java.awt.Toolkit var5 = var0.getToolkit(); + java.awt.Toolkit var6 = var0.getToolkit(); + java.awt.ComponentOrientation var7 = var0.getComponentOrientation(); + var0.transferFocusUpCycle(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var4); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var7); + + } + + public void test481() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test481"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + java.awt.Dimension var4 = var0.getPreferredSize(); + boolean var5 = var0.getVerifyInputWhenFocusTarget(); + java.awt.Component var8 = var0.findComponentAt(10, 1); + boolean var9 = var0.requestDefaultFocus(); + var0.firePropertyChange("hi!", false, true); + javax.swing.ActionMap var14 = var0.getActionMap(); + var0.setFocusable(true); + java.lang.String var17 = var0.toString(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var4); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var17 + "' != '" + "SpaceWar.SpacePanel[,0,0,0var17,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=265,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"+ "'", var17.equals("SpaceWar.SpacePanel[,0,0,0var17,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=265,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]")); + + } + + public void test482() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test482"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.setInheritsPopupMenu(false); + var0.setFocusTraversalPolicyProvider(true); + boolean var10 = var0.inside(25, 3); + SpaceWar.SpacePanel var11 = new SpaceWar.SpacePanel(); + float var12 = var11.getAlignmentX(); + var11.setVisible(false); + boolean var15 = var11.isDoubleBuffered(); + java.awt.dnd.DropTarget var16 = var11.getDropTarget(); + var11.show(false); + boolean var19 = var11.isPaintingForPrint(); + SpaceWar.SpacePanel var20 = new SpaceWar.SpacePanel(); + float var21 = var20.getAlignmentX(); + SpaceWar.SpacePanel var22 = new SpaceWar.SpacePanel(); + float var23 = var22.getAlignmentX(); + var22.setVisible(false); + java.awt.Dimension var26 = var22.getPreferredSize(); + boolean var27 = var22.getVerifyInputWhenFocusTarget(); + java.awt.Component var30 = var22.findComponentAt(10, 1); + var20.addKeyListener((java.awt.event.KeyListener)var22); + java.awt.Dimension var32 = var22.getMinimumSize(); + var11.setMinimumSize(var32); + var0.setPreferredSize(var32); + boolean var36 = var0.requestFocus(true); + java.awt.Dimension var37 = var0.getMinimumSize(); + java.awt.event.KeyListener[] var38 = var0.getKeyListeners(); + var0.resize(399, 505); + boolean var42 = var0.isPreferredSizeSet(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var30); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var32); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var36 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var37); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var38); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var42 == true); + + } + + public void test483() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test483"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + java.awt.Dimension var4 = var0.getPreferredSize(); + java.awt.Toolkit var5 = var0.getToolkit(); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + var6.setName(""); + int var9 = var6.getX(); + SpaceWar.SpacePanel var10 = new SpaceWar.SpacePanel(); + float var11 = var10.getAlignmentX(); + var10.setVisible(false); + var10.nextFocus(); + SpaceWar.SpacePanel var15 = new SpaceWar.SpacePanel(); + float var16 = var15.getAlignmentX(); + var15.setVisible(false); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + java.awt.Color var20 = var19.getBackground(); + var15.setForeground(var20); + var10.setBackground(var20); + var6.setBackground(var20); + var0.setForeground(var20); + SpaceWar.SpacePanel var25 = new SpaceWar.SpacePanel(); + float var26 = var25.getAlignmentX(); + var25.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var31 = new SpaceWar.SpacePanel(); + float var32 = var31.getAlignmentX(); + var31.setVisible(false); + java.awt.Dimension var35 = var31.getPreferredSize(); + var25.setMaximumSize(var35); + boolean var37 = var25.getVerifyInputWhenFocusTarget(); + javax.accessibility.AccessibleContext var38 = var25.getAccessibleContext(); + boolean var39 = var25.isDoubleBuffered(); + java.awt.Rectangle var40 = var25.getVisibleRect(); + var0.scrollRectToVisible(var40); + SpaceWar.SpacePanel var42 = new SpaceWar.SpacePanel(); + float var43 = var42.getAlignmentX(); + var42.setVisible(false); + java.awt.Dimension var46 = var42.getPreferredSize(); + java.awt.Toolkit var47 = var42.getToolkit(); + SpaceWar.SpacePanel var48 = new SpaceWar.SpacePanel(); + var48.setName(""); + int var51 = var48.getX(); + SpaceWar.SpacePanel var52 = new SpaceWar.SpacePanel(); + float var53 = var52.getAlignmentX(); + var52.setVisible(false); + var52.nextFocus(); + SpaceWar.SpacePanel var57 = new SpaceWar.SpacePanel(); + float var58 = var57.getAlignmentX(); + var57.setVisible(false); + SpaceWar.SpacePanel var61 = new SpaceWar.SpacePanel(); + java.awt.Color var62 = var61.getBackground(); + var57.setForeground(var62); + var52.setBackground(var62); + var48.setBackground(var62); + var42.setForeground(var62); + SpaceWar.SpacePanel var67 = new SpaceWar.SpacePanel(); + float var68 = var67.getAlignmentX(); + var67.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var73 = new SpaceWar.SpacePanel(); + float var74 = var73.getAlignmentX(); + var73.setVisible(false); + java.awt.Dimension var77 = var73.getPreferredSize(); + var67.setMaximumSize(var77); + boolean var79 = var67.getVerifyInputWhenFocusTarget(); + javax.accessibility.AccessibleContext var80 = var67.getAccessibleContext(); + boolean var81 = var67.isDoubleBuffered(); + java.awt.Rectangle var82 = var67.getVisibleRect(); + var42.scrollRectToVisible(var82); + var0.removeKeyListener((java.awt.event.KeyListener)var42); + javax.swing.InputVerifier var85 = var0.getInputVerifier(); + var0.enable(); + var0.setInheritsPopupMenu(true); + javax.swing.plaf.PanelUI var89 = var0.getUI(); + var0.updateUI(); + var0.setName("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var4); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var32 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var35); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var38); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var39 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var40); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var43 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var46); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var47); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var51 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var53 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var58 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var62); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var68 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var74 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var77); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var79 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var80); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var81 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var82); + + // Regression assertion (captures the current behavior of the code) + assertNull(var85); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var89); + + } + + public void test484() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test484"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + boolean var2 = var0.hasFocus(); + boolean var3 = var0.isPreferredSizeSet(); + int var4 = var0.getDebugGraphicsOptions(); + var0.setLocation(400, 24); + var0.move(3, 500); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var2 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0); + + } + + public void test485() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test485"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + boolean var2 = var0.hasFocus(); + java.awt.Insets var3 = var0.getInsets(); + boolean var4 = var0.isFocusTraversalPolicyProvider(); + java.beans.PropertyChangeListener[] var6 = var0.getPropertyChangeListeners("hi!"); + java.awt.Point var8 = var0.getMousePosition(true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var2 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertNull(var8); + + } + + public void test486() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test486"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var6 = var0.getMouseListeners(); + int var7 = var0.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var8 = var0.getInputMethodRequests(); + var0.removeNotify(); + var0.enable(); + java.lang.Object var11 = var0.getTreeLock(); + var0.setAlignmentY(0.0f); + java.awt.Rectangle var14 = var0.getVisibleRect(); + boolean var17 = var0.contains((-1), 400); + var0.list(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == false); + + } + + public void test487() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test487"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var6 = var0.getMouseListeners(); + int var7 = var0.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var8 = var0.getInputMethodRequests(); + java.awt.Point var9 = var0.getMousePosition(); + SpaceWar.SpacePanel var10 = new SpaceWar.SpacePanel(); + float var11 = var10.getAlignmentX(); + var10.setVisible(false); + var10.setInheritsPopupMenu(false); + boolean var16 = var10.isDoubleBuffered(); + boolean var17 = var10.isMinimumSizeSet(); + java.awt.Font var18 = var10.getFont(); + var0.setFont(var18); + int var20 = var0.getHeight(); + java.awt.dnd.DropTarget var21 = var0.getDropTarget(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertNull(var9); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var21); + + } + + public void test488() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test488"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var6 = var0.getMouseListeners(); + int var7 = var0.getDebugGraphicsOptions(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + boolean var12 = var8.isDoubleBuffered(); + java.awt.dnd.DropTarget var13 = var8.getDropTarget(); + var8.show(false); + java.awt.Rectangle var16 = var8.getVisibleRect(); + var0.paintImmediately(var16); + SpaceWar.SpacePanel var18 = new SpaceWar.SpacePanel(); + float var19 = var18.getAlignmentX(); + var18.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var24 = var18.getMouseListeners(); + int var25 = var18.getDebugGraphicsOptions(); + SpaceWar.SpacePanel var26 = new SpaceWar.SpacePanel(); + float var27 = var26.getAlignmentX(); + var26.setVisible(false); + boolean var30 = var26.isDoubleBuffered(); + java.awt.dnd.DropTarget var31 = var26.getDropTarget(); + var26.show(false); + java.awt.Rectangle var34 = var26.getVisibleRect(); + var18.paintImmediately(var34); + java.awt.Rectangle var36 = var18.getBounds(); + var0.scrollRectToVisible(var36); + SpaceWar.SpacePanel var38 = new SpaceWar.SpacePanel(); + java.awt.Color var39 = var38.getBackground(); + var38.repaint(); + var38.setRequestFocusEnabled(false); + var38.setIgnoreRepaint(false); + boolean var45 = var38.requestFocusInWindow(); + float var46 = var38.getAlignmentY(); + java.awt.LayoutManager var47 = var38.getLayout(); + var0.setLayout(var47); + SpaceWar.SpacePanel var49 = new SpaceWar.SpacePanel(); + float var50 = var49.getAlignmentX(); + var49.setVisible(false); + boolean var53 = var49.isDoubleBuffered(); + java.awt.dnd.DropTarget var54 = var49.getDropTarget(); + var49.show(false); + boolean var57 = var49.isPaintingForPrint(); + SpaceWar.SpacePanel var58 = new SpaceWar.SpacePanel(); + float var59 = var58.getAlignmentX(); + var58.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var64 = var58.getMouseListeners(); + int var65 = var58.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var66 = var58.getInputMethodRequests(); + var49.addKeyListener((java.awt.event.KeyListener)var58); + boolean var68 = var49.isDisplayable(); + boolean var69 = var49.isOpaque(); + var49.setEnabled(false); + java.awt.Rectangle var72 = var49.getBounds(); + var0.scrollRectToVisible(var72); + java.awt.Toolkit var74 = var0.getToolkit(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var30 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var31); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var34); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var36); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var39); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var45 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var46 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var47); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var50 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var53 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var54); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var57 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var59 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var64); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var65 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var66); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var68 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var69 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var72); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var74); + + } + + public void test489() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test489"); + + + SpaceWar.Bullet var3 = new SpaceWar.Bullet(19.998476951563912d, 1, 2); + + } + + public void test490() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test490"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var1 = new SpaceWar.SpacePanel(); + java.awt.Color var2 = var1.getBackground(); + SpaceWar.SpacePanel var3 = new SpaceWar.SpacePanel(); + float var4 = var3.getAlignmentX(); + var3.setVisible(false); + var3.nextFocus(); + var3.updateUI(); + var3.enableInputMethods(true); + var0.add((java.awt.Component)var1, (java.lang.Object)true); + var0.move(24, 500); + boolean var15 = javax.swing.JComponent.isLightweightComponent((java.awt.Component)var0); + float var16 = var0.getAlignmentY(); + SpaceWar.SpacePanel var17 = new SpaceWar.SpacePanel(); + float var18 = var17.getAlignmentX(); + var17.setVisible(false); + boolean var21 = var17.isDoubleBuffered(); + var17.list(); + SpaceWar.SpacePanel var23 = new SpaceWar.SpacePanel(); + float var24 = var23.getAlignmentX(); + var23.setVisible(false); + boolean var27 = var23.isDoubleBuffered(); + java.awt.dnd.DropTarget var28 = var23.getDropTarget(); + var23.show(false); + java.awt.Rectangle var31 = var23.getVisibleRect(); + java.awt.image.BufferedImage var33 = var23.loadImg("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + boolean var34 = var17.isAncestorOf((java.awt.Component)var23); + float var35 = var17.getAlignmentX(); + java.awt.image.VolatileImage var38 = var17.createVolatileImage(25, 1); + SpaceWar.SpacePanel var39 = new SpaceWar.SpacePanel(); + var39.setName(""); + java.awt.ComponentOrientation var42 = var39.getComponentOrientation(); + var17.remove((java.awt.Component)var39); + java.awt.Dimension var44 = var39.minimumSize(); + SpaceWar.SpacePanel var45 = new SpaceWar.SpacePanel(); + float var46 = var45.getAlignmentX(); + var45.setVisible(false); + var45.setInheritsPopupMenu(false); + var45.setFocusTraversalPolicyProvider(true); + boolean var55 = var45.inside(25, 3); + SpaceWar.SpacePanel var56 = new SpaceWar.SpacePanel(); + float var57 = var56.getAlignmentX(); + var56.setVisible(false); + boolean var60 = var56.isDoubleBuffered(); + java.awt.dnd.DropTarget var61 = var56.getDropTarget(); + var56.show(false); + boolean var64 = var56.isPaintingForPrint(); + SpaceWar.SpacePanel var65 = new SpaceWar.SpacePanel(); + float var66 = var65.getAlignmentX(); + SpaceWar.SpacePanel var67 = new SpaceWar.SpacePanel(); + float var68 = var67.getAlignmentX(); + var67.setVisible(false); + java.awt.Dimension var71 = var67.getPreferredSize(); + boolean var72 = var67.getVerifyInputWhenFocusTarget(); + java.awt.Component var75 = var67.findComponentAt(10, 1); + var65.addKeyListener((java.awt.event.KeyListener)var67); + java.awt.Dimension var77 = var67.getMinimumSize(); + var56.setMinimumSize(var77); + var45.setPreferredSize(var77); + boolean var81 = var45.requestFocus(true); + var45.reshape((-1), 10, 24, 0); + java.awt.event.MouseWheelListener[] var87 = var45.getMouseWheelListeners(); + java.awt.FocusTraversalPolicy var88 = var45.getFocusTraversalPolicy(); + var39.setFocusTraversalPolicy(var88); + var0.setFocusTraversalPolicy(var88); + // The following exception was thrown during execution. + // This behavior will recorded for regression testing. + try { + boolean var92 = var0.areFocusTraversalKeysSet(498); + fail("Expected exception of type java.lang.IllegalArgumentException"); + } catch (java.lang.IllegalArgumentException e) { + // Expected exception. + } + + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var2); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var24 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var28); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var31); + + // Regression assertion (captures the current behavior of the code) + assertNull(var33); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var34 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var35 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNull(var38); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var42); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var44); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var46 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var55 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var57 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var60 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var61); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var64 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var66 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var68 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var71); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var72 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var75); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var77); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var81 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var87); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var88); + + } + + public void test491() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test491"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + boolean var5 = javax.swing.JComponent.isLightweightComponent((java.awt.Component)var0); + java.awt.event.MouseWheelListener[] var6 = var0.getMouseWheelListeners(); + var0.transferFocusUpCycle(); + var0.reshape(2, 25, 0, 24); + SpaceWar.SpacePanel var13 = new SpaceWar.SpacePanel(); + float var14 = var13.getAlignmentX(); + var13.setVisible(false); + java.awt.Dimension var17 = var13.getPreferredSize(); + java.awt.Toolkit var18 = var13.getToolkit(); + java.awt.Toolkit var19 = var13.getToolkit(); + var13.firePropertyChange("hi!", 25, 1); + boolean var24 = var13.requestDefaultFocus(); + var13.setAutoscrolls(true); + java.awt.Component var27 = var0.add((java.awt.Component)var13); + var13.doLayout(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var24 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var27); + + } + + public void test492() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test492"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + java.awt.Dimension var4 = var0.getPreferredSize(); + boolean var5 = var0.getVerifyInputWhenFocusTarget(); + java.awt.Component var8 = var0.findComponentAt(10, 1); + boolean var9 = var0.requestDefaultFocus(); + var0.setVerifyInputWhenFocusTarget(true); + var0.setFocusTraversalKeysEnabled(false); + SpaceWar.SpacePanel var14 = new SpaceWar.SpacePanel(); + float var15 = var14.getAlignmentX(); + var14.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var20 = var14.getMouseListeners(); + java.awt.Dimension var21 = var14.getPreferredSize(); + java.beans.PropertyChangeListener[] var22 = var14.getPropertyChangeListeners(); + java.awt.LayoutManager var23 = var14.getLayout(); + var0.remove((java.awt.Component)var14); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var4); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var21); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var23); + + } + + public void test493() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test493"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + var0.setName(""); + int var3 = var0.getX(); + java.lang.String var4 = var0.getToolTipText(); + java.awt.Point var5 = var0.getLocation(); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + java.awt.Color var7 = var6.getBackground(); + var6.repaint(); + var6.setRequestFocusEnabled(false); + var6.reshape(100, 0, 100, 0); + javax.swing.event.AncestorListener[] var16 = var6.getAncestorListeners(); + var6.setOpaque(true); + var6.show(); + SpaceWar.SpacePanel var20 = new SpaceWar.SpacePanel(); + float var21 = var20.getAlignmentX(); + var20.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var26 = var20.getMouseListeners(); + java.awt.Dimension var27 = var20.getPreferredSize(); + java.util.Locale var28 = var20.getLocale(); + java.awt.Font var29 = var20.getFont(); + java.awt.Container var30 = var20.getTopLevelAncestor(); + var0.add((java.awt.Component)var6, (java.lang.Object)var20); + var0.repaint(2, 25, 400, 499); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var4); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var27); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var28); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var29); + + // Regression assertion (captures the current behavior of the code) + assertNull(var30); + + } + + public void test494() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test494"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var6 = var0.getMouseListeners(); + var0.firePropertyChange("", 0.5f, 100.0f); + var0.enable(false); + SpaceWar.SpacePanel var13 = new SpaceWar.SpacePanel(); + float var14 = var13.getAlignmentX(); + SpaceWar.SpacePanel var15 = new SpaceWar.SpacePanel(); + float var16 = var15.getAlignmentX(); + var15.setVisible(false); + java.awt.Dimension var19 = var15.getPreferredSize(); + boolean var20 = var15.getVerifyInputWhenFocusTarget(); + java.awt.Component var23 = var15.findComponentAt(10, 1); + var13.addKeyListener((java.awt.event.KeyListener)var15); + java.awt.Cursor var25 = var13.getCursor(); + java.awt.Dimension var26 = var13.getMinimumSize(); + var0.setSize(var26); + SpaceWar.SpacePanel var28 = new SpaceWar.SpacePanel(); + float var29 = var28.getAlignmentX(); + var28.setVisible(false); + boolean var32 = var28.isDoubleBuffered(); + java.awt.dnd.DropTarget var33 = var28.getDropTarget(); + var28.show(false); + boolean var36 = var28.isPaintingForPrint(); + SpaceWar.SpacePanel var37 = new SpaceWar.SpacePanel(); + float var38 = var37.getAlignmentX(); + var37.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var43 = var37.getMouseListeners(); + int var44 = var37.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var45 = var37.getInputMethodRequests(); + var28.addKeyListener((java.awt.event.KeyListener)var37); + boolean var47 = var37.isShowing(); + boolean var48 = var37.isOpaque(); + var37.grabFocus(); + SpaceWar.SpacePanel var50 = new SpaceWar.SpacePanel(); + float var51 = var50.getAlignmentX(); + var50.setVisible(false); + boolean var54 = var50.isDoubleBuffered(); + var50.list(); + SpaceWar.SpacePanel var56 = new SpaceWar.SpacePanel(); + float var57 = var56.getAlignmentX(); + var56.setVisible(false); + boolean var60 = var56.isDoubleBuffered(); + java.awt.dnd.DropTarget var61 = var56.getDropTarget(); + var56.show(false); + java.awt.Rectangle var64 = var56.getVisibleRect(); + java.awt.Rectangle var65 = var50.getBounds(var64); + javax.swing.JToolTip var66 = var50.createToolTip(); + var50.firePropertyChange("", false, false); + boolean var71 = var50.isFocusTraversalPolicySet(); + SpaceWar.SpacePanel var72 = new SpaceWar.SpacePanel(); + float var73 = var72.getAlignmentX(); + var72.setVisible(false); + java.awt.Dimension var76 = var72.getPreferredSize(); + boolean var77 = var72.getVerifyInputWhenFocusTarget(); + java.awt.Component var80 = var72.findComponentAt(10, 1); + boolean var81 = var72.requestDefaultFocus(); + var72.setVerifyInputWhenFocusTarget(false); + java.awt.Point var84 = var72.getLocation(); + java.awt.Point var85 = var50.getLocation(var84); + java.awt.Component var86 = var37.getComponentAt(var85); + java.awt.Point var87 = var0.getLocation(var85); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var23); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var25); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var29 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var32 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var33); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var36 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var38 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var43); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var44 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var45); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var47 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var48 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var51 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var54 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var57 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var60 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var61); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var64); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var65); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var66); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var71 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var73 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var76); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var77 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var80); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var81 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var84); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var85); + + // Regression assertion (captures the current behavior of the code) + assertNull(var86); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var87); + + } + + public void test495() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test495"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + float var7 = var6.getAlignmentX(); + var6.setVisible(false); + java.awt.Dimension var10 = var6.getPreferredSize(); + var0.setMaximumSize(var10); + boolean var12 = var0.getVerifyInputWhenFocusTarget(); + boolean var13 = var0.isFontSet(); + boolean var14 = var0.getIgnoreRepaint(); + java.awt.Component var17 = var0.locate(1, 25); + boolean var18 = var0.isLightweight(); + var0.move(100, 500); + java.awt.Container var22 = var0.getParent(); + SpaceWar.SpacePanel var23 = new SpaceWar.SpacePanel(); + float var24 = var23.getAlignmentX(); + boolean var25 = var23.hasFocus(); + java.awt.Insets var26 = var23.getInsets(); + boolean var27 = var23.isFocusTraversalPolicyProvider(); + java.beans.PropertyChangeListener[] var29 = var23.getPropertyChangeListeners("hi!"); + java.awt.Cursor var30 = var23.getCursor(); + boolean var31 = var0.isFocusCycleRoot((java.awt.Container)var23); + boolean var32 = var23.isDisplayable(); + java.awt.Dimension var33 = var23.getMinimumSize(); + java.lang.String var34 = var23.getName(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var24 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var29); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var30); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var31 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var32 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var33); + + // Regression assertion (captures the current behavior of the code) + assertNull(var34); + + } + + public void test496() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test496"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + var0.show(false); + boolean var8 = var0.isPaintingForPrint(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var15 = var9.getMouseListeners(); + int var16 = var9.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var17 = var9.getInputMethodRequests(); + var0.addKeyListener((java.awt.event.KeyListener)var9); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + float var20 = var19.getAlignmentX(); + var19.setVisible(false); + boolean var23 = var19.isDoubleBuffered(); + var19.list(); + float var25 = var19.getAlignmentY(); + boolean var26 = var9.isFocusCycleRoot((java.awt.Container)var19); + var19.firePropertyChange("", 1L, 1L); + var19.setVerifyInputWhenFocusTarget(true); + var19.resize(25, 400); + java.awt.event.ComponentListener[] var36 = var19.getComponentListeners(); + var19.setAlignmentX(10.0f); + var19.setDoubleBuffered(false); + boolean var43 = var19.inside(0, 3); + boolean var44 = var19.isVisible(); + var19.list(); + var19.firePropertyChange("SpaceWar.SpacePanel[,-1,1,-1x10,invalid,hidden,disabled,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", 475.3294093279198d, 593.2940477488812d); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var36); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var43 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var44 == false); + + } + + public void test497() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test497"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.setInheritsPopupMenu(false); + var0.setFocusTraversalPolicyProvider(true); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + boolean var12 = var8.isDoubleBuffered(); + var8.list(); + SpaceWar.SpacePanel var14 = new SpaceWar.SpacePanel(); + float var15 = var14.getAlignmentX(); + var14.setVisible(false); + boolean var18 = var14.isDoubleBuffered(); + java.awt.dnd.DropTarget var19 = var14.getDropTarget(); + var14.show(false); + java.awt.Rectangle var22 = var14.getVisibleRect(); + java.awt.Rectangle var23 = var8.getBounds(var22); + javax.swing.JToolTip var24 = var8.createToolTip(); + var0.removeKeyListener((java.awt.event.KeyListener)var8); + javax.swing.TransferHandler var26 = var0.getTransferHandler(); + SpaceWar.SpacePanel var27 = new SpaceWar.SpacePanel(); + float var28 = var27.getAlignmentX(); + boolean var29 = var27.hasFocus(); + java.awt.Insets var30 = var27.getInsets(); + boolean var31 = var27.isFocusTraversalPolicyProvider(); + java.beans.PropertyChangeListener[] var33 = var27.getPropertyChangeListeners("hi!"); + java.awt.Cursor var34 = var27.getCursor(); + var0.setCursor(var34); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var23); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var28 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var29 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var30); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var31 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var33); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var34); + + } + + public void test498() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test498"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.reshape((-1), 1, (-1), 10); + var0.disable(); + java.awt.LayoutManager var11 = var0.getLayout(); + java.awt.Container var12 = var0.getParent(); + java.lang.String var13 = var0.getUIClassID(); + var0.setVerifyInputWhenFocusTarget(true); + boolean var16 = var0.isRequestFocusEnabled(); + var0.setVerifyInputWhenFocusTarget(false); + boolean var19 = var0.isLightweight(); + SpaceWar.SpacePanel var20 = new SpaceWar.SpacePanel(); + java.awt.Color var21 = var20.getBackground(); + var20.repaint(); + java.awt.im.InputMethodRequests var23 = var20.getInputMethodRequests(); + var20.setDoubleBuffered(true); + SpaceWar.SpacePanel var26 = new SpaceWar.SpacePanel(); + float var27 = var26.getAlignmentX(); + boolean var28 = var26.hasFocus(); + java.awt.Insets var29 = var26.getInsets(); + java.awt.Insets var30 = var20.getInsets(var29); + java.awt.Insets var31 = var0.getInsets(var30); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var13 + "' != '" + "PanelUI"+ "'", var13.equals("PanelUI")); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var21); + + // Regression assertion (captures the current behavior of the code) + assertNull(var23); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var28 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var29); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var30); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var31); + + } + + public void test499() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test499"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + java.awt.im.InputMethodRequests var3 = var0.getInputMethodRequests(); + var0.setDoubleBuffered(true); + var0.show(false); + boolean var8 = var0.isPaintingForPrint(); + var0.repaint(100L); + var0.setName("SpaceWar.SpacePanel[,-1,1,-1x10,invalid,hidden,disabled,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + boolean var13 = var0.isMinimumSizeSet(); + java.util.Locale var14 = var0.getLocale(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + } + + public void test500() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest6.test500"); + + + SpaceWar.Explosion var4 = new SpaceWar.Explosion(226.53068162065512d, 273.84550342263697d, 10, 399); + + } + +} diff --git a/test/randoop/RandoopTest7.java b/test/randoop/RandoopTest7.java new file mode 100644 index 0000000..56279cd --- /dev/null +++ b/test/randoop/RandoopTest7.java @@ -0,0 +1,38374 @@ +package randoop; + +import junit.framework.*; + +public class RandoopTest7 extends TestCase { + + public static boolean debug = false; + + public void test1() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test1"); + + + SpaceWar.Player var0 = new SpaceWar.Player(); + var0.increasePower(25); + int var3 = var0.getR(); + var0.setRigth(true); + var0.setUp(false); + boolean var8 = var0.isDead(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == 25); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + } + + public void test2() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test2"); + + + SpaceWar.Enemy var2 = new SpaceWar.Enemy(0, 0); + int var3 = var2.getType(); + int var4 = var2.getType(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0); + + } + + public void test3() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test3"); + + + SpaceWar.Player var0 = new SpaceWar.Player(); + boolean var1 = var0.isRecovering(); + var0.loseLife(); + int var3 = var0.getR(); + var0.loseLife(); + var0.setDown(true); + int var7 = var0.getX(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == 25); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 400); + + } + + public void test4() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test4"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.Graphics var5 = var0.getGraphics(); + boolean var6 = var0.hasFocus(); + boolean var8 = var0.areFocusTraversalKeysSet(1); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + } + + public void test5() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test5"); + + + SpaceWar.Enemy var2 = new SpaceWar.Enemy(500, 500); + + } + + public void test6() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test6"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.repaint(1L); + SpaceWar.SpacePanel var7 = new SpaceWar.SpacePanel(); + float var8 = var7.getAlignmentX(); + var7.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var13 = new SpaceWar.SpacePanel(); + float var14 = var13.getAlignmentX(); + var13.setVisible(false); + java.awt.Dimension var17 = var13.getPreferredSize(); + var7.setMaximumSize(var17); + var0.setPreferredSize(var17); + javax.swing.plaf.PanelUI var20 = var0.getUI(); + SpaceWar.SpacePanel var21 = new SpaceWar.SpacePanel(); + float var22 = var21.getAlignmentX(); + var21.setVisible(false); + var21.nextFocus(); + var21.reshape((-1), 1, (-1), 10); + var21.disable(); + java.awt.LayoutManager var32 = var21.getLayout(); + java.awt.Container var33 = var21.getParent(); + java.lang.String var34 = var21.getUIClassID(); + SpaceWar.Enemy var37 = new SpaceWar.Enemy(0, 10); + var0.add((java.awt.Component)var21, (java.lang.Object)10); + java.awt.event.MouseListener[] var39 = var0.getMouseListeners(); + boolean var40 = var0.isFocusOwner(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var22 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var32); + + // Regression assertion (captures the current behavior of the code) + assertNull(var33); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var34 + "' != '" + "PanelUI"+ "'", var34.equals("PanelUI")); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var39); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var40 == false); + + } + + public void test7() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test7"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + var0.setName(""); + int var3 = var0.getX(); + SpaceWar.SpacePanel var4 = new SpaceWar.SpacePanel(); + float var5 = var4.getAlignmentX(); + var4.setVisible(false); + var4.nextFocus(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.setVisible(false); + SpaceWar.SpacePanel var13 = new SpaceWar.SpacePanel(); + java.awt.Color var14 = var13.getBackground(); + var9.setForeground(var14); + var4.setBackground(var14); + var0.setBackground(var14); + boolean var18 = var0.isFocusable(); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + float var20 = var19.getAlignmentX(); + var19.setVisible(false); + SpaceWar.SpacePanel var23 = new SpaceWar.SpacePanel(); + java.awt.Color var24 = var23.getBackground(); + var19.setForeground(var24); + SpaceWar.SpacePanel var26 = new SpaceWar.SpacePanel(); + float var27 = var26.getAlignmentX(); + var26.setVisible(false); + boolean var30 = var26.isDoubleBuffered(); + java.awt.dnd.DropTarget var31 = var26.getDropTarget(); + var26.show(false); + java.awt.Rectangle var34 = var26.getVisibleRect(); + var19.repaint(var34); + java.awt.FocusTraversalPolicy var36 = var19.getFocusTraversalPolicy(); + java.awt.im.InputMethodRequests var37 = var19.getInputMethodRequests(); + javax.swing.JToolTip var38 = var19.createToolTip(); + java.awt.Dimension var39 = var19.getMinimumSize(); + var0.setPreferredSize(var39); + var0.list(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var30 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var31); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var34); + + // Regression assertion (captures the current behavior of the code) + assertNull(var36); + + // Regression assertion (captures the current behavior of the code) + assertNull(var37); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var38); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var39); + + } + + public void test8() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test8"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + boolean var2 = var0.hasFocus(); + java.beans.VetoableChangeListener[] var3 = var0.getVetoableChangeListeners(); + var0.paintImmediately(10, 0, (-1), 25); + boolean var9 = var0.getInheritsPopupMenu(); + var0.resize(500, 10); + SpaceWar.SpacePanel var13 = new SpaceWar.SpacePanel(); + float var14 = var13.getAlignmentX(); + var13.setVisible(false); + boolean var17 = var13.isDoubleBuffered(); + SpaceWar.SpacePanel var18 = new SpaceWar.SpacePanel(); + float var19 = var18.getAlignmentX(); + var18.setVisible(false); + var18.nextFocus(); + var18.reshape((-1), 1, (-1), 10); + var18.disable(); + boolean var29 = var18.isFocusable(); + int var30 = var18.getHeight(); + var13.setNextFocusableComponent((java.awt.Component)var18); + SpaceWar.SpacePanel var32 = new SpaceWar.SpacePanel(); + float var33 = var32.getAlignmentX(); + var32.setVisible(false); + var32.nextFocus(); + SpaceWar.SpacePanel var37 = new SpaceWar.SpacePanel(); + float var38 = var37.getAlignmentX(); + var37.setVisible(false); + SpaceWar.SpacePanel var41 = new SpaceWar.SpacePanel(); + java.awt.Color var42 = var41.getBackground(); + var37.setForeground(var42); + var32.setBackground(var42); + java.awt.Component var45 = var32.getNextFocusableComponent(); + float var46 = var32.getAlignmentY(); + java.awt.event.MouseListener[] var47 = var32.getMouseListeners(); + java.awt.Point var48 = var32.location(); + java.awt.Point var49 = var13.getLocation(var48); + var0.setLocation(var49); + boolean var51 = var0.isMinimumSizeSet(); + var0.doLayout(); + // The following exception was thrown during execution. + // This behavior will recorded for regression testing. + try { + javax.swing.InputMap var54 = var0.getInputMap(3); + fail("Expected exception of type java.lang.IllegalArgumentException"); + } catch (java.lang.IllegalArgumentException e) { + // Expected exception. + } + + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var2 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var29 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var30 == 10); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var33 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var38 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var42); + + // Regression assertion (captures the current behavior of the code) + assertNull(var45); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var46 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var47); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var48); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var49); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var51 == false); + + } + + public void test9() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test9"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.setInheritsPopupMenu(false); + boolean var6 = var0.isDoubleBuffered(); + boolean var7 = var0.isForegroundSet(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == true); + + } + + public void test10() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test10"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + var0.list(); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + float var7 = var6.getAlignmentX(); + var6.setVisible(false); + boolean var10 = var6.isDoubleBuffered(); + java.awt.dnd.DropTarget var11 = var6.getDropTarget(); + var6.show(false); + java.awt.Rectangle var14 = var6.getVisibleRect(); + java.awt.Rectangle var15 = var0.getBounds(var14); + javax.swing.JToolTip var16 = var0.createToolTip(); + var0.firePropertyChange("", false, false); + boolean var21 = var0.isFocusTraversalPolicySet(); + SpaceWar.SpacePanel var22 = new SpaceWar.SpacePanel(); + float var23 = var22.getAlignmentX(); + var22.setVisible(false); + java.awt.Dimension var26 = var22.getPreferredSize(); + boolean var27 = var22.getVerifyInputWhenFocusTarget(); + java.awt.Component var30 = var22.findComponentAt(10, 1); + boolean var31 = var22.requestDefaultFocus(); + var22.setVerifyInputWhenFocusTarget(false); + java.awt.Point var34 = var22.getLocation(); + java.awt.Point var35 = var0.getLocation(var34); + var0.transferFocus(); + var0.reshape(499, 400, 400, 400); + java.awt.Point var43 = var0.getMousePosition(true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var30); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var31 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var34); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var35); + + // Regression assertion (captures the current behavior of the code) + assertNull(var43); + + } + + public void test11() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test11"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.setInheritsPopupMenu(false); + var0.setFocusTraversalPolicyProvider(true); + boolean var10 = var0.inside(25, 3); + SpaceWar.SpacePanel var11 = new SpaceWar.SpacePanel(); + float var12 = var11.getAlignmentX(); + var11.setVisible(false); + boolean var15 = var11.isDoubleBuffered(); + java.awt.dnd.DropTarget var16 = var11.getDropTarget(); + var11.show(false); + boolean var19 = var11.isPaintingForPrint(); + SpaceWar.SpacePanel var20 = new SpaceWar.SpacePanel(); + float var21 = var20.getAlignmentX(); + SpaceWar.SpacePanel var22 = new SpaceWar.SpacePanel(); + float var23 = var22.getAlignmentX(); + var22.setVisible(false); + java.awt.Dimension var26 = var22.getPreferredSize(); + boolean var27 = var22.getVerifyInputWhenFocusTarget(); + java.awt.Component var30 = var22.findComponentAt(10, 1); + var20.addKeyListener((java.awt.event.KeyListener)var22); + java.awt.Dimension var32 = var22.getMinimumSize(); + var11.setMinimumSize(var32); + var0.setPreferredSize(var32); + boolean var36 = var0.requestFocus(true); + java.awt.Dimension var37 = var0.getMinimumSize(); + java.lang.String var38 = var0.toString(); + int var41 = var0.getBaseline(24, 500); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var30); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var32); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var36 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var37); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var38 + "' != '" + "SpaceWar.SpacePanel[,0,0,0var38,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=10,height=10]]"+ "'", var38.equals("SpaceWar.SpacePanel[,0,0,0var38,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=10,height=10]]")); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var41 == (-1)); + + } + + public void test12() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test12"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.updateUI(); + var0.enableInputMethods(true); + java.awt.Point var8 = var0.location(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.setVisible(false); + var9.nextFocus(); + var9.reshape((-1), 1, (-1), 10); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + java.awt.Color var20 = var19.getBackground(); + var19.repaint(); + var19.setRequestFocusEnabled(false); + var19.reshape(100, 0, 100, 0); + java.awt.Component var29 = var9.add((java.awt.Component)var19); + SpaceWar.SpacePanel var30 = new SpaceWar.SpacePanel(); + var30.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + javax.swing.plaf.PanelUI var35 = var30.getUI(); + SpaceWar.SpacePanel var36 = new SpaceWar.SpacePanel(); + float var37 = var36.getAlignmentX(); + var36.setVisible(false); + var36.nextFocus(); + var36.repaint(1L); + SpaceWar.SpacePanel var43 = new SpaceWar.SpacePanel(); + float var44 = var43.getAlignmentX(); + var43.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var49 = new SpaceWar.SpacePanel(); + float var50 = var49.getAlignmentX(); + var49.setVisible(false); + java.awt.Dimension var53 = var49.getPreferredSize(); + var43.setMaximumSize(var53); + var36.setPreferredSize(var53); + var30.setMaximumSize(var53); + java.awt.Dimension var57 = var19.getSize(var53); + var0.setMaximumSize(var53); + int var59 = var0.countComponents(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var29); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var35); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var44 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var50 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var53); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var57); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var59 == 0); + + } + + public void test13() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test13"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.updateUI(); + var0.enableInputMethods(true); + java.awt.Point var9 = var0.getMousePosition(false); + boolean var10 = var0.isShowing(); + var0.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", 10.0f, 0.0f); + java.lang.String var15 = var0.getToolTipText(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNull(var9); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var15); + + } + + public void test14() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test14"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + float var6 = var0.getAlignmentY(); + var0.setDoubleBuffered(false); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var15 = var9.getUI(); + java.awt.im.InputMethodRequests var16 = var9.getInputMethodRequests(); + SpaceWar.SpacePanel var17 = new SpaceWar.SpacePanel(); + float var18 = var17.getAlignmentX(); + var17.setVisible(false); + var17.nextFocus(); + var17.updateUI(); + var17.enableInputMethods(true); + var17.setSize((-1), 1); + SpaceWar.SpacePanel var28 = new SpaceWar.SpacePanel(); + var28.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var9.add((java.awt.Component)var17, (java.lang.Object)"SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + SpaceWar.SpacePanel var34 = new SpaceWar.SpacePanel(); + float var35 = var34.getAlignmentX(); + var34.setVisible(false); + java.awt.Dimension var38 = var34.getPreferredSize(); + java.awt.Toolkit var39 = var34.getToolkit(); + java.awt.Toolkit var40 = var34.getToolkit(); + java.awt.Component var41 = var17.add((java.awt.Component)var34); + var41.firePropertyChange("", 0.5f, 10.0f); + SpaceWar.SpacePanel var46 = new SpaceWar.SpacePanel(); + float var47 = var46.getAlignmentX(); + var46.setVisible(false); + var46.setInheritsPopupMenu(false); + var46.move(10, 10); + var46.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + java.awt.Rectangle var59 = var46.bounds(); + var41.setBounds(var59); + var0.computeVisibleRect(var59); + java.awt.Image var64 = var0.createImage(100, 499); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var35 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var38); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var39); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var40); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var41); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var47 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var59); + + // Regression assertion (captures the current behavior of the code) + assertNull(var64); + + } + + public void test15() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test15"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + float var7 = var6.getAlignmentX(); + var6.setVisible(false); + SpaceWar.SpacePanel var10 = new SpaceWar.SpacePanel(); + java.awt.Color var11 = var10.getBackground(); + var6.setForeground(var11); + var0.setBackground(var11); + java.awt.Point var14 = var0.location(); + var0.setToolTipText("SpaceWar.SpacePanel[,0,0,0x0,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + java.awt.event.HierarchyBoundsListener[] var17 = var0.getHierarchyBoundsListeners(); + var0.revalidate(); + var0.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", (-1L), 1L); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var17); + + } + + public void test16() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test16"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var1 = new SpaceWar.SpacePanel(); + java.awt.Color var2 = var1.getBackground(); + SpaceWar.SpacePanel var3 = new SpaceWar.SpacePanel(); + float var4 = var3.getAlignmentX(); + var3.setVisible(false); + var3.nextFocus(); + var3.updateUI(); + var3.enableInputMethods(true); + var0.add((java.awt.Component)var1, (java.lang.Object)true); + java.awt.Image var14 = var1.createImage(1, (-1)); + SpaceWar.SpacePanel var15 = new SpaceWar.SpacePanel(); + float var16 = var15.getAlignmentX(); + var15.setVisible(false); + var15.nextFocus(); + var15.updateUI(); + var15.enableInputMethods(true); + SpaceWar.SpacePanel var23 = new SpaceWar.SpacePanel(); + float var24 = var23.getAlignmentX(); + boolean var25 = var23.hasFocus(); + java.awt.Insets var26 = var23.getInsets(); + java.awt.Insets var27 = var15.getInsets(var26); + java.awt.Insets var28 = var1.getInsets(var26); + java.awt.Point var29 = var1.getMousePosition(); + javax.swing.InputMap var30 = var1.getInputMap(); + boolean var31 = var1.requestDefaultFocus(); + SpaceWar.SpacePanel var32 = new SpaceWar.SpacePanel(); + float var33 = var32.getAlignmentX(); + var32.firePropertyChange("", (-1), 1); + java.awt.event.MouseMotionListener[] var38 = var32.getMouseMotionListeners(); + java.awt.event.ComponentListener[] var39 = var32.getComponentListeners(); + SpaceWar.SpacePanel var40 = new SpaceWar.SpacePanel(); + float var41 = var40.getAlignmentX(); + var40.setVisible(false); + var40.nextFocus(); + var40.repaint(1L); + SpaceWar.SpacePanel var47 = new SpaceWar.SpacePanel(); + float var48 = var47.getAlignmentX(); + var47.setVisible(false); + boolean var51 = var47.isDoubleBuffered(); + var47.list(); + SpaceWar.SpacePanel var53 = new SpaceWar.SpacePanel(); + float var54 = var53.getAlignmentX(); + var53.setVisible(false); + boolean var57 = var53.isDoubleBuffered(); + java.awt.dnd.DropTarget var58 = var53.getDropTarget(); + var53.show(false); + java.awt.Rectangle var61 = var53.getVisibleRect(); + java.awt.Rectangle var62 = var47.getBounds(var61); + var40.setBounds(var62); + var32.paintImmediately(var62); + java.awt.Point var65 = var32.getMousePosition(); + java.awt.image.BufferedImage var67 = var32.loadImg("SpaceWar.SpacePanel[,-1,1,-1x10,invalid,hidden,disabled,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + var32.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", 3, 100); + java.awt.ComponentOrientation var72 = var32.getComponentOrientation(); + var1.setComponentOrientation(var72); + boolean var76 = var1.inside(100, 25); + // The following exception was thrown during execution. + // This behavior will recorded for regression testing. + try { + java.util.Set var78 = var1.getFocusTraversalKeys(99); + fail("Expected exception of type java.lang.IllegalArgumentException"); + } catch (java.lang.IllegalArgumentException e) { + // Expected exception. + } + + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var2); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var24 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var27); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var28); + + // Regression assertion (captures the current behavior of the code) + assertNull(var29); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var30); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var31 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var33 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var38); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var39); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var41 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var48 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var51 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var54 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var57 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var58); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var61); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var62); + + // Regression assertion (captures the current behavior of the code) + assertNull(var65); + + // Regression assertion (captures the current behavior of the code) + assertNull(var67); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var72); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var76 == false); + + } + + public void test17() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test17"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.setInheritsPopupMenu(false); + var0.setFocusTraversalPolicyProvider(true); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + boolean var12 = var8.isDoubleBuffered(); + var8.list(); + SpaceWar.SpacePanel var14 = new SpaceWar.SpacePanel(); + float var15 = var14.getAlignmentX(); + var14.setVisible(false); + boolean var18 = var14.isDoubleBuffered(); + java.awt.dnd.DropTarget var19 = var14.getDropTarget(); + var14.show(false); + java.awt.Rectangle var22 = var14.getVisibleRect(); + java.awt.Rectangle var23 = var8.getBounds(var22); + javax.swing.JToolTip var24 = var8.createToolTip(); + var0.removeKeyListener((java.awt.event.KeyListener)var8); + var0.setFocusTraversalKeysEnabled(true); + javax.swing.KeyStroke[] var28 = var0.getRegisteredKeyStrokes(); + SpaceWar.SpacePanel var29 = new SpaceWar.SpacePanel(); + float var30 = var29.getAlignmentX(); + var29.setVisible(false); + java.awt.Dimension var33 = var29.getPreferredSize(); + java.awt.Toolkit var34 = var29.getToolkit(); + boolean var35 = var29.isFocusable(); + javax.swing.KeyStroke[] var36 = var29.getRegisteredKeyStrokes(); + java.awt.Component var39 = var29.getComponentAt(100, 100); + java.lang.Object var40 = var29.getTreeLock(); + boolean var43 = var29.inside(400, 0); + java.awt.event.MouseWheelListener[] var44 = var29.getMouseWheelListeners(); + var29.enableInputMethods(true); + boolean var47 = var0.isAncestorOf((java.awt.Component)var29); + boolean var48 = var0.isEnabled(); + SpaceWar.SpacePanel var49 = new SpaceWar.SpacePanel(); + float var50 = var49.getAlignmentX(); + var49.setVisible(false); + java.awt.Dimension var53 = var49.getPreferredSize(); + boolean var54 = var49.getVerifyInputWhenFocusTarget(); + java.awt.Component var57 = var49.findComponentAt(10, 1); + boolean var58 = var49.requestDefaultFocus(); + var49.setVerifyInputWhenFocusTarget(false); + java.awt.Point var61 = var49.getLocation(); + boolean var62 = var0.contains(var61); + var0.setFocusable(true); + java.awt.Point var65 = var0.getLocation(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var23); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var28); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var30 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var33); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var34); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var35 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var36); + + // Regression assertion (captures the current behavior of the code) + assertNull(var39); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var40); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var43 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var44); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var47 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var48 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var50 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var53); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var54 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var57); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var58 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var61); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var62 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var65); + + } + + public void test18() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test18"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + SpaceWar.SpacePanel var4 = new SpaceWar.SpacePanel(); + java.awt.Color var5 = var4.getBackground(); + var0.setForeground(var5); + SpaceWar.SpacePanel var7 = new SpaceWar.SpacePanel(); + float var8 = var7.getAlignmentX(); + var7.setVisible(false); + boolean var11 = var7.isDoubleBuffered(); + java.awt.dnd.DropTarget var12 = var7.getDropTarget(); + var7.show(false); + java.awt.Rectangle var15 = var7.getVisibleRect(); + var0.repaint(var15); + SpaceWar.SpacePanel var17 = new SpaceWar.SpacePanel(); + float var18 = var17.getAlignmentX(); + var17.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var23 = var17.getMouseListeners(); + java.awt.Dimension var24 = var17.getPreferredSize(); + java.util.Locale var25 = var17.getLocale(); + var0.setLocale(var25); + java.util.Locale var27 = var0.getLocale(); + boolean var28 = var0.isPreferredSizeSet(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var23); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var25); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var27); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var28 == true); + + } + + public void test19() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test19"); + + + SpaceWar.Player var0 = new SpaceWar.Player(); + int var1 = var0.getPower(); + var0.setLeft(true); + var0.increasePower(0); + int var6 = var0.getR(); + int var7 = var0.getLives(); + var0.setRigth(false); + var0.update(); + int var11 = var0.getLives(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == 25); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 3); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == 3); + + } + + public void test20() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test20"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + boolean var2 = var0.hasFocus(); + java.awt.Insets var3 = var0.getInsets(); + java.awt.Rectangle var4 = var0.bounds(); + java.awt.event.MouseMotionListener[] var5 = var0.getMouseMotionListeners(); + boolean var6 = var0.isMaximumSizeSet(); + java.awt.LayoutManager var7 = var0.getLayout(); + java.awt.Rectangle var8 = var0.getBounds(); + var0.setBounds(505, 99, 100, 25); + javax.swing.InputVerifier var14 = var0.getInputVerifier(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var2 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var4); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertNull(var14); + + } + + public void test21() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test21"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.updateUI(); + var0.enableInputMethods(true); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + boolean var10 = var8.hasFocus(); + java.awt.Insets var11 = var8.getInsets(); + java.awt.Insets var12 = var0.getInsets(var11); + javax.swing.JRootPane var13 = var0.getRootPane(); + int var14 = var0.getY(); + javax.swing.JToolTip var15 = var0.createToolTip(); + boolean var18 = var15.contains(3, 499); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == false); + + } + + public void test22() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test22"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + SpaceWar.SpacePanel var2 = new SpaceWar.SpacePanel(); + float var3 = var2.getAlignmentX(); + var2.setVisible(false); + java.awt.Dimension var6 = var2.getPreferredSize(); + boolean var7 = var2.getVerifyInputWhenFocusTarget(); + java.awt.Component var10 = var2.findComponentAt(10, 1); + var0.addKeyListener((java.awt.event.KeyListener)var2); + var2.repaint(100, (-1), (-1), 1); + java.awt.image.ColorModel var17 = var2.getColorModel(); + boolean var18 = var2.isPreferredSizeSet(); + java.awt.peer.ComponentPeer var19 = var2.getPeer(); + var2.resetKeyboardActions(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var19); + + } + + public void test23() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test23"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + var0.list(); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + float var7 = var6.getAlignmentX(); + var6.setVisible(false); + boolean var10 = var6.isDoubleBuffered(); + java.awt.dnd.DropTarget var11 = var6.getDropTarget(); + var6.show(false); + java.awt.Rectangle var14 = var6.getVisibleRect(); + java.awt.Rectangle var15 = var0.getBounds(var14); + javax.swing.JToolTip var16 = var0.createToolTip(); + var0.firePropertyChange("", false, false); + var0.validate(); + var0.setAlignmentY((-1.0f)); + boolean var24 = var0.isFontSet(); + SpaceWar.SpacePanel var25 = new SpaceWar.SpacePanel(); + float var26 = var25.getAlignmentX(); + var25.setVisible(false); + boolean var29 = var25.isDoubleBuffered(); + var25.list(); + float var31 = var25.getAlignmentY(); + java.awt.event.ComponentListener[] var32 = var25.getComponentListeners(); + java.awt.Component var33 = var25.getNextFocusableComponent(); + boolean var34 = var25.isManagingFocus(); + javax.swing.border.Border var35 = var25.getBorder(); + java.lang.Object var36 = var25.getTreeLock(); + var25.show(); + var25.setFocusTraversalKeysEnabled(true); + SpaceWar.SpacePanel var40 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var41 = new SpaceWar.SpacePanel(); + java.awt.Color var42 = var41.getBackground(); + SpaceWar.SpacePanel var43 = new SpaceWar.SpacePanel(); + float var44 = var43.getAlignmentX(); + var43.setVisible(false); + var43.nextFocus(); + var43.updateUI(); + var43.enableInputMethods(true); + var40.add((java.awt.Component)var41, (java.lang.Object)true); + java.awt.Dimension var52 = var41.getPreferredSize(); + var41.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", (-1.0f), 100.0f); + var41.removeNotify(); + java.awt.Dimension var58 = var41.size(); + var25.addKeyListener((java.awt.event.KeyListener)var41); + // The following exception was thrown during execution. + // This behavior will recorded for regression testing. + try { + java.awt.Component var61 = var0.add((java.awt.Component)var41, 10); + fail("Expected exception of type java.lang.IllegalArgumentException"); + } catch (java.lang.IllegalArgumentException e) { + // Expected exception. + } + + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var24 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var29 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var31 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var32); + + // Regression assertion (captures the current behavior of the code) + assertNull(var33); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var34 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var35); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var36); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var42); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var44 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var52); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var58); + + } + + public void test24() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test24"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var1 = new SpaceWar.SpacePanel(); + java.awt.Color var2 = var1.getBackground(); + SpaceWar.SpacePanel var3 = new SpaceWar.SpacePanel(); + float var4 = var3.getAlignmentX(); + var3.setVisible(false); + var3.nextFocus(); + var3.updateUI(); + var3.enableInputMethods(true); + var0.add((java.awt.Component)var1, (java.lang.Object)true); + java.awt.Image var14 = var1.createImage(1, (-1)); + SpaceWar.SpacePanel var15 = new SpaceWar.SpacePanel(); + float var16 = var15.getAlignmentX(); + var15.setVisible(false); + var15.nextFocus(); + var15.updateUI(); + var15.enableInputMethods(true); + SpaceWar.SpacePanel var23 = new SpaceWar.SpacePanel(); + float var24 = var23.getAlignmentX(); + boolean var25 = var23.hasFocus(); + java.awt.Insets var26 = var23.getInsets(); + java.awt.Insets var27 = var15.getInsets(var26); + java.awt.Insets var28 = var1.getInsets(var26); + java.awt.Point var29 = var1.getMousePosition(); + SpaceWar.SpacePanel var30 = new SpaceWar.SpacePanel(); + float var31 = var30.getAlignmentX(); + var30.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var36 = var30.getUI(); + java.awt.im.InputMethodRequests var37 = var30.getInputMethodRequests(); + SpaceWar.SpacePanel var38 = new SpaceWar.SpacePanel(); + float var39 = var38.getAlignmentX(); + var38.setVisible(false); + var38.nextFocus(); + var38.updateUI(); + var38.enableInputMethods(true); + var38.setSize((-1), 1); + SpaceWar.SpacePanel var49 = new SpaceWar.SpacePanel(); + var49.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var30.add((java.awt.Component)var38, (java.lang.Object)"SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + java.awt.event.KeyListener[] var55 = var30.getKeyListeners(); + java.awt.FocusTraversalPolicy var56 = var30.getFocusTraversalPolicy(); + java.awt.Component var59 = var30.locate(3, 100); + SpaceWar.SpacePanel var60 = new SpaceWar.SpacePanel(); + float var61 = var60.getAlignmentX(); + var60.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var66 = var60.getMouseListeners(); + java.awt.Dimension var67 = var60.getPreferredSize(); + java.util.Locale var68 = var60.getLocale(); + var60.setFocusable(true); + var60.setSize(3, 10); + SpaceWar.SpacePanel var74 = new SpaceWar.SpacePanel(); + float var75 = var74.getAlignmentX(); + var74.setVisible(false); + java.awt.Dimension var78 = var74.getPreferredSize(); + boolean var79 = var74.getVerifyInputWhenFocusTarget(); + java.awt.Dimension var80 = var74.size(); + var60.setSize(var80); + var30.setMinimumSize(var80); + java.awt.Dimension var83 = var1.getSize(var80); + var1.setAlignmentX(10.0f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var2); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var24 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var27); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var28); + + // Regression assertion (captures the current behavior of the code) + assertNull(var29); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var31 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var36); + + // Regression assertion (captures the current behavior of the code) + assertNull(var37); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var39 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var55); + + // Regression assertion (captures the current behavior of the code) + assertNull(var56); + + // Regression assertion (captures the current behavior of the code) + assertNull(var59); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var61 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var66); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var67); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var68); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var75 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var78); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var79 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var80); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var83); + + } + + public void test25() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test25"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var6 = var0.getMouseListeners(); + java.awt.Dimension var7 = var0.getPreferredSize(); + java.util.Locale var8 = var0.getLocale(); + var0.setFocusable(true); + var0.setSize(3, 10); + var0.invalidate(); + java.awt.Component.BaselineResizeBehavior var15 = var0.getBaselineResizeBehavior(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + } + + public void test26() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test26"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + var0.show(false); + java.awt.Rectangle var8 = var0.getVisibleRect(); + java.awt.Toolkit var9 = var0.getToolkit(); + SpaceWar.SpacePanel var10 = new SpaceWar.SpacePanel(); + float var11 = var10.getAlignmentX(); + var10.setVisible(false); + java.awt.Dimension var14 = var10.getPreferredSize(); + boolean var15 = var10.getVerifyInputWhenFocusTarget(); + var0.addKeyListener((java.awt.event.KeyListener)var10); + var0.setRequestFocusEnabled(true); + java.awt.Font var19 = var0.getFont(); + boolean var20 = var0.hasFocus(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var9); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == false); + + } + + public void test27() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test27"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var6 = var0.getMouseListeners(); + int var7 = var0.getDebugGraphicsOptions(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + boolean var12 = var8.isDoubleBuffered(); + java.awt.dnd.DropTarget var13 = var8.getDropTarget(); + var8.show(false); + java.awt.Rectangle var16 = var8.getVisibleRect(); + var0.paintImmediately(var16); + java.awt.Rectangle var18 = var0.getBounds(); + java.awt.Component var21 = var0.getComponentAt((-1), 25); + java.awt.Insets var22 = var0.getInsets(); + SpaceWar.SpacePanel var23 = new SpaceWar.SpacePanel(); + float var24 = var23.getAlignmentX(); + var23.setVisible(false); + boolean var27 = var23.isDoubleBuffered(); + java.awt.dnd.DropTarget var28 = var23.getDropTarget(); + var23.show(false); + boolean var31 = var23.isPaintingForPrint(); + SpaceWar.SpacePanel var32 = new SpaceWar.SpacePanel(); + float var33 = var32.getAlignmentX(); + var32.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var38 = var32.getMouseListeners(); + int var39 = var32.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var40 = var32.getInputMethodRequests(); + var23.addKeyListener((java.awt.event.KeyListener)var32); + SpaceWar.SpacePanel var42 = new SpaceWar.SpacePanel(); + float var43 = var42.getAlignmentX(); + var42.setVisible(false); + boolean var46 = var42.isDoubleBuffered(); + var42.list(); + float var48 = var42.getAlignmentY(); + boolean var49 = var32.isFocusCycleRoot((java.awt.Container)var42); + SpaceWar.SpacePanel var51 = new SpaceWar.SpacePanel(); + float var52 = var51.getAlignmentX(); + var51.setVisible(false); + var51.nextFocus(); + var51.updateUI(); + java.awt.Component var57 = var32.add("", (java.awt.Component)var51); + SpaceWar.SpacePanel var58 = new SpaceWar.SpacePanel(); + float var59 = var58.getAlignmentX(); + var58.setVisible(false); + boolean var62 = var58.isDoubleBuffered(); + java.awt.dnd.DropTarget var63 = var58.getDropTarget(); + var58.show(false); + java.awt.event.MouseWheelListener[] var66 = var58.getMouseWheelListeners(); + SpaceWar.SpacePanel var67 = new SpaceWar.SpacePanel(); + float var68 = var67.getAlignmentX(); + var67.setVisible(false); + SpaceWar.SpacePanel var71 = new SpaceWar.SpacePanel(); + java.awt.Color var72 = var71.getBackground(); + var67.setForeground(var72); + SpaceWar.SpacePanel var74 = new SpaceWar.SpacePanel(); + float var75 = var74.getAlignmentX(); + var74.setVisible(false); + boolean var78 = var74.isDoubleBuffered(); + java.awt.dnd.DropTarget var79 = var74.getDropTarget(); + var74.show(false); + java.awt.Rectangle var82 = var74.getVisibleRect(); + var67.repaint(var82); + SpaceWar.SpacePanel var84 = new SpaceWar.SpacePanel(); + float var85 = var84.getAlignmentX(); + var84.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var90 = var84.getMouseListeners(); + java.awt.Dimension var91 = var84.getPreferredSize(); + java.util.Locale var92 = var84.getLocale(); + var67.setLocale(var92); + java.util.Locale var94 = var67.getLocale(); + var58.setLocale(var94); + var57.setLocale(var94); + javax.swing.JComponent.setDefaultLocale(var94); + var0.setLocale(var94); + java.awt.dnd.DropTarget var99 = var0.getDropTarget(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertNull(var21); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var24 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var28); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var31 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var33 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var38); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var39 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var40); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var43 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var46 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var48 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var49 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var52 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var57); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var59 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var62 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var63); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var66); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var68 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var72); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var75 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var78 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var79); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var82); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var85 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var90); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var91); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var92); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var94); + + // Regression assertion (captures the current behavior of the code) + assertNull(var99); + + } + + public void test28() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test28"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + boolean var6 = var0.isFocusCycleRoot(); + var0.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", 100, 0); + SpaceWar.SpacePanel var11 = new SpaceWar.SpacePanel(); + float var12 = var11.getAlignmentX(); + var11.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var17 = var11.getUI(); + var0.add((java.awt.Component)var11, (java.lang.Object)(short)0); + SpaceWar.SpacePanel var20 = new SpaceWar.SpacePanel(); + float var21 = var20.getAlignmentX(); + var20.setVisible(false); + var20.nextFocus(); + var20.repaint(1L); + SpaceWar.SpacePanel var27 = new SpaceWar.SpacePanel(); + float var28 = var27.getAlignmentX(); + var27.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var33 = new SpaceWar.SpacePanel(); + float var34 = var33.getAlignmentX(); + var33.setVisible(false); + java.awt.Dimension var37 = var33.getPreferredSize(); + var27.setMaximumSize(var37); + var20.setPreferredSize(var37); + javax.swing.plaf.PanelUI var40 = var20.getUI(); + SpaceWar.SpacePanel var41 = new SpaceWar.SpacePanel(); + float var42 = var41.getAlignmentX(); + var41.setVisible(false); + SpaceWar.SpacePanel var45 = new SpaceWar.SpacePanel(); + java.awt.Color var46 = var45.getBackground(); + var41.setForeground(var46); + SpaceWar.SpacePanel var48 = new SpaceWar.SpacePanel(); + float var49 = var48.getAlignmentX(); + var48.setVisible(false); + boolean var52 = var48.isDoubleBuffered(); + java.awt.dnd.DropTarget var53 = var48.getDropTarget(); + var48.show(false); + java.awt.Rectangle var56 = var48.getVisibleRect(); + var41.repaint(var56); + java.awt.FocusTraversalPolicy var58 = var41.getFocusTraversalPolicy(); + var41.resetKeyboardActions(); + SpaceWar.SpacePanel var60 = new SpaceWar.SpacePanel(); + float var61 = var60.getAlignmentX(); + var60.setVisible(false); + boolean var64 = var60.isDoubleBuffered(); + java.awt.dnd.DropTarget var65 = var60.getDropTarget(); + var60.show(false); + java.awt.Rectangle var68 = var60.getVisibleRect(); + var41.computeVisibleRect(var68); + javax.swing.ActionMap var70 = var41.getActionMap(); + var20.setActionMap(var70); + java.awt.Point var72 = var20.getMousePosition(); + int var73 = var11.getComponentZOrder((java.awt.Component)var20); + SpaceWar.SpacePanel var74 = new SpaceWar.SpacePanel(); + float var75 = var74.getAlignmentX(); + var74.setVisible(false); + java.awt.Dimension var78 = var74.getPreferredSize(); + boolean var79 = var74.getVerifyInputWhenFocusTarget(); + java.awt.Component var82 = var74.findComponentAt(10, 1); + boolean var83 = var74.isCursorSet(); + boolean var84 = var74.isFocusTraversalPolicyProvider(); + java.awt.ComponentOrientation var85 = var74.getComponentOrientation(); + boolean var86 = var20.isFocusCycleRoot((java.awt.Container)var74); + boolean var87 = var74.isManagingFocus(); + var74.setAlignmentY(10.0f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var28 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var34 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var37); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var40); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var42 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var46); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var49 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var52 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var53); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var56); + + // Regression assertion (captures the current behavior of the code) + assertNull(var58); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var61 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var64 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var65); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var68); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var70); + + // Regression assertion (captures the current behavior of the code) + assertNull(var72); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var73 == (-1)); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var75 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var78); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var79 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var82); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var83 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var84 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var85); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var86 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var87 == false); + + } + + public void test29() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test29"); + + + SpaceWar.Enemy var2 = new SpaceWar.Enemy(0, 100); + var2.explode(); + java.awt.image.BufferedImage var5 = var2.loadImg("SpaceWar.SpacePanel[,-1,1,-1x10,invalid,hidden,disabled,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + double var6 = var2.getY(); + var2.explode(); + var2.hit(); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == 0.0d); + + } + + public void test30() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test30"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + SpaceWar.SpacePanel var4 = new SpaceWar.SpacePanel(); + java.awt.Color var5 = var4.getBackground(); + var0.setForeground(var5); + SpaceWar.SpacePanel var7 = new SpaceWar.SpacePanel(); + float var8 = var7.getAlignmentX(); + var7.setVisible(false); + boolean var11 = var7.isDoubleBuffered(); + java.awt.dnd.DropTarget var12 = var7.getDropTarget(); + var7.show(false); + java.awt.Rectangle var15 = var7.getVisibleRect(); + var0.repaint(var15); + java.awt.FocusTraversalPolicy var17 = var0.getFocusTraversalPolicy(); + java.awt.im.InputMethodRequests var18 = var0.getInputMethodRequests(); + var0.layout(); + var0.setDebugGraphicsOptions(10); + SpaceWar.SpacePanel var22 = new SpaceWar.SpacePanel(); + float var23 = var22.getAlignmentX(); + var22.setVisible(false); + var22.nextFocus(); + var22.reshape((-1), 1, (-1), 10); + SpaceWar.SpacePanel var32 = new SpaceWar.SpacePanel(); + java.awt.Color var33 = var32.getBackground(); + var32.repaint(); + var32.setRequestFocusEnabled(false); + var32.reshape(100, 0, 100, 0); + java.awt.Component var42 = var22.add((java.awt.Component)var32); + SpaceWar.SpacePanel var43 = new SpaceWar.SpacePanel(); + var43.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + javax.swing.plaf.PanelUI var48 = var43.getUI(); + SpaceWar.SpacePanel var49 = new SpaceWar.SpacePanel(); + float var50 = var49.getAlignmentX(); + var49.setVisible(false); + var49.nextFocus(); + var49.repaint(1L); + SpaceWar.SpacePanel var56 = new SpaceWar.SpacePanel(); + float var57 = var56.getAlignmentX(); + var56.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var62 = new SpaceWar.SpacePanel(); + float var63 = var62.getAlignmentX(); + var62.setVisible(false); + java.awt.Dimension var66 = var62.getPreferredSize(); + var56.setMaximumSize(var66); + var49.setPreferredSize(var66); + var43.setMaximumSize(var66); + java.awt.Dimension var70 = var32.getSize(var66); + var0.setSize(var70); + var0.repaint(1L); + var0.setAlignmentX(100.0f); + SpaceWar.SpacePanel var76 = new SpaceWar.SpacePanel(); + float var77 = var76.getAlignmentX(); + var76.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var82 = var76.getMouseListeners(); + java.awt.Dimension var83 = var76.getPreferredSize(); + java.util.Locale var84 = var76.getLocale(); + java.awt.Font var85 = var76.getFont(); + java.awt.Color var86 = var76.getForeground(); + var0.setBackground(var86); + var0.resetKeyboardActions(); + var0.setRequestFocusEnabled(true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var33); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var42); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var48); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var50 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var57 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var63 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var66); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var70); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var77 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var82); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var83); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var84); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var85); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var86); + + } + + public void test31() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test31"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + var0.setRequestFocusEnabled(false); + var0.setIgnoreRepaint(false); + java.lang.String var7 = var0.toString(); + boolean var8 = var0.isCursorSet(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var7 + "' != '" + "SpaceWar.SpacePanel[,0,0,0var7,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"+ "'", var7.equals("SpaceWar.SpacePanel[,0,0,0var7,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]")); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + } + + public void test32() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test32"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var6 = var0.getUI(); + java.awt.im.InputMethodRequests var7 = var0.getInputMethodRequests(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + var8.nextFocus(); + var8.updateUI(); + var8.enableInputMethods(true); + var8.setSize((-1), 1); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + var19.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var0.add((java.awt.Component)var8, (java.lang.Object)"SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + java.awt.event.KeyListener[] var25 = var0.getKeyListeners(); + SpaceWar.SpacePanel var26 = new SpaceWar.SpacePanel(); + float var27 = var26.getAlignmentX(); + var26.setVisible(false); + boolean var30 = var26.isDoubleBuffered(); + var26.list(); + SpaceWar.SpacePanel var32 = new SpaceWar.SpacePanel(); + float var33 = var32.getAlignmentX(); + var32.setVisible(false); + boolean var36 = var32.isDoubleBuffered(); + java.awt.dnd.DropTarget var37 = var32.getDropTarget(); + var32.show(false); + java.awt.Rectangle var40 = var32.getVisibleRect(); + java.awt.image.BufferedImage var42 = var32.loadImg("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + boolean var43 = var26.isAncestorOf((java.awt.Component)var32); + java.awt.GraphicsConfiguration var44 = var32.getGraphicsConfiguration(); + java.awt.Font var45 = var32.getFont(); + var0.setFont(var45); + var0.nextFocus(); + java.awt.Point var48 = var0.getLocation(); + java.awt.Component var51 = var0.getComponentAt(500, 499); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var25); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var30 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var33 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var36 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var37); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var40); + + // Regression assertion (captures the current behavior of the code) + assertNull(var42); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var43 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var44); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var45); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var48); + + // Regression assertion (captures the current behavior of the code) + assertNull(var51); + + } + + public void test33() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test33"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.requestFocus(); + boolean var6 = var0.isBackgroundSet(); + SpaceWar.SpacePanel var7 = new SpaceWar.SpacePanel(); + java.awt.Color var8 = var7.getBackground(); + var7.repaint(); + var7.setRequestFocusEnabled(false); + var7.reshape(100, 0, 100, 0); + SpaceWar.SpacePanel var17 = new SpaceWar.SpacePanel(); + float var18 = var17.getAlignmentX(); + var17.setVisible(false); + var17.setInheritsPopupMenu(false); + boolean var23 = var17.isDoubleBuffered(); + SpaceWar.SpacePanel var24 = new SpaceWar.SpacePanel(); + float var25 = var24.getAlignmentX(); + var24.setVisible(false); + var24.nextFocus(); + var24.reshape((-1), 1, (-1), 10); + var24.disable(); + java.awt.LayoutManager var35 = var24.getLayout(); + var17.setLayout(var35); + var0.add((java.awt.Component)var7, (java.lang.Object)var35); + var7.hide(); + java.awt.im.InputMethodRequests var39 = var7.getInputMethodRequests(); + javax.swing.JPopupMenu var40 = var7.getComponentPopupMenu(); + var7.revalidate(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var35); + + // Regression assertion (captures the current behavior of the code) + assertNull(var39); + + // Regression assertion (captures the current behavior of the code) + assertNull(var40); + + } + + public void test34() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test34"); + + + SpaceWar.Enemy var2 = new SpaceWar.Enemy(0, 100); + boolean var3 = var2.isDead(); + int var4 = var2.getType(); + double var5 = var2.getY(); + boolean var6 = var2.isDead(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == 0.0d); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == false); + + } + + public void test35() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test35"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + boolean var2 = var0.hasFocus(); + boolean var3 = var0.isPreferredSizeSet(); + SpaceWar.SpacePanel var4 = new SpaceWar.SpacePanel(); + java.awt.Color var5 = var4.getBackground(); + var4.repaint(); + var4.setRequestFocusEnabled(false); + int var9 = var0.getComponentZOrder((java.awt.Component)var4); + int var10 = var0.getDebugGraphicsOptions(); + var0.enableInputMethods(true); + SpaceWar.SpacePanel var13 = new SpaceWar.SpacePanel(); + float var14 = var13.getAlignmentX(); + var13.setVisible(false); + var13.nextFocus(); + var13.reshape((-1), 1, (-1), 10); + SpaceWar.SpacePanel var23 = new SpaceWar.SpacePanel(); + java.awt.Color var24 = var23.getBackground(); + var23.repaint(); + var23.setRequestFocusEnabled(false); + var23.reshape(100, 0, 100, 0); + java.awt.Component var33 = var13.add((java.awt.Component)var23); + SpaceWar.SpacePanel var34 = new SpaceWar.SpacePanel(); + var34.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + javax.swing.plaf.PanelUI var39 = var34.getUI(); + SpaceWar.SpacePanel var40 = new SpaceWar.SpacePanel(); + float var41 = var40.getAlignmentX(); + var40.setVisible(false); + var40.nextFocus(); + var40.repaint(1L); + SpaceWar.SpacePanel var47 = new SpaceWar.SpacePanel(); + float var48 = var47.getAlignmentX(); + var47.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var53 = new SpaceWar.SpacePanel(); + float var54 = var53.getAlignmentX(); + var53.setVisible(false); + java.awt.Dimension var57 = var53.getPreferredSize(); + var47.setMaximumSize(var57); + var40.setPreferredSize(var57); + var34.setMaximumSize(var57); + java.awt.Dimension var61 = var23.getSize(var57); + var0.setMinimumSize(var61); + SpaceWar.SpacePanel var63 = new SpaceWar.SpacePanel(); + float var64 = var63.getAlignmentX(); + var63.setVisible(false); + boolean var67 = var63.isDoubleBuffered(); + var63.list(); + SpaceWar.SpacePanel var69 = new SpaceWar.SpacePanel(); + float var70 = var69.getAlignmentX(); + var69.setVisible(false); + boolean var73 = var69.isDoubleBuffered(); + java.awt.dnd.DropTarget var74 = var69.getDropTarget(); + var69.show(false); + java.awt.Rectangle var77 = var69.getVisibleRect(); + java.awt.Rectangle var78 = var63.getBounds(var77); + javax.swing.JToolTip var79 = var63.createToolTip(); + java.awt.Graphics var80 = var63.getGraphics(); + java.beans.VetoableChangeListener[] var81 = var63.getVetoableChangeListeners(); + var0.addKeyListener((java.awt.event.KeyListener)var63); + java.awt.event.ContainerListener[] var83 = var0.getContainerListeners(); + var0.enableInputMethods(true); + boolean var88 = var0.contains(505, 1); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var2 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == (-1)); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var33); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var39); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var41 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var48 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var54 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var57); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var61); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var64 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var67 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var70 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var73 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var74); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var77); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var78); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var79); + + // Regression assertion (captures the current behavior of the code) + assertNull(var80); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var81); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var83); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var88 == false); + + } + + public void test36() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test36"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + boolean var2 = var0.hasFocus(); + boolean var3 = var0.isPreferredSizeSet(); + SpaceWar.SpacePanel var4 = new SpaceWar.SpacePanel(); + java.awt.Color var5 = var4.getBackground(); + var4.repaint(); + var4.setRequestFocusEnabled(false); + int var9 = var0.getComponentZOrder((java.awt.Component)var4); + boolean var10 = var0.requestDefaultFocus(); + var0.setSize(25, 3); + var0.grabFocus(); + var0.setIgnoreRepaint(false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var2 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == (-1)); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == false); + + } + + public void test37() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test37"); + + + SpaceWar.Player var0 = new SpaceWar.Player(); + boolean var1 = var0.isRecovering(); + var0.loseLife(); + int var3 = var0.getR(); + var0.loseLife(); + int var5 = var0.getX(); + var0.setLife(2); + int var8 = var0.getY(); + var0.setScore((-1)); + boolean var11 = var0.isRecovering(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == 25); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == 400); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 500); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == true); + + } + + public void test38() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test38"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + var0.enable(false); + boolean var7 = var0.getFocusTraversalKeysEnabled(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + java.awt.Dimension var12 = var8.getPreferredSize(); + java.awt.Toolkit var13 = var8.getToolkit(); + boolean var14 = var8.isFocusable(); + javax.swing.KeyStroke[] var15 = var8.getRegisteredKeyStrokes(); + SpaceWar.SpacePanel var16 = new SpaceWar.SpacePanel(); + float var17 = var16.getAlignmentX(); + SpaceWar.SpacePanel var18 = new SpaceWar.SpacePanel(); + float var19 = var18.getAlignmentX(); + var18.setVisible(false); + java.awt.Dimension var22 = var18.getPreferredSize(); + boolean var23 = var18.getVerifyInputWhenFocusTarget(); + java.awt.Component var26 = var18.findComponentAt(10, 1); + var16.addKeyListener((java.awt.event.KeyListener)var18); + var18.repaint(100, (-1), (-1), 1); + boolean var33 = var8.isAncestorOf((java.awt.Component)var18); + var0.addKeyListener((java.awt.event.KeyListener)var18); + var18.hide(); + boolean var36 = var18.isFocusTraversalPolicySet(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var33 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var36 == false); + + } + + public void test39() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test39"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.reshape((-1), 1, (-1), 10); + var0.disable(); + java.awt.Component var13 = var0.findComponentAt(0, (-1)); + SpaceWar.SpacePanel var14 = new SpaceWar.SpacePanel(); + var14.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + javax.swing.plaf.PanelUI var19 = var14.getUI(); + SpaceWar.SpacePanel var20 = new SpaceWar.SpacePanel(); + float var21 = var20.getAlignmentX(); + var20.setVisible(false); + var20.nextFocus(); + var20.repaint(1L); + SpaceWar.SpacePanel var27 = new SpaceWar.SpacePanel(); + float var28 = var27.getAlignmentX(); + var27.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var33 = new SpaceWar.SpacePanel(); + float var34 = var33.getAlignmentX(); + var33.setVisible(false); + java.awt.Dimension var37 = var33.getPreferredSize(); + var27.setMaximumSize(var37); + var20.setPreferredSize(var37); + var14.setMaximumSize(var37); + var0.setSize(var37); + SpaceWar.SpacePanel var42 = new SpaceWar.SpacePanel(); + float var43 = var42.getAlignmentX(); + boolean var44 = var42.hasFocus(); + boolean var45 = var42.isPreferredSizeSet(); + SpaceWar.SpacePanel var46 = new SpaceWar.SpacePanel(); + java.awt.Color var47 = var46.getBackground(); + var46.repaint(); + var46.setRequestFocusEnabled(false); + int var51 = var42.getComponentZOrder((java.awt.Component)var46); + boolean var52 = var42.requestDefaultFocus(); + javax.swing.border.Border var53 = var42.getBorder(); + int var54 = var0.getComponentZOrder((java.awt.Component)var42); + javax.accessibility.AccessibleContext var55 = var42.getAccessibleContext(); + int var56 = var42.getY(); + boolean var57 = var42.isEnabled(); + javax.swing.JPopupMenu var58 = var42.getComponentPopupMenu(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var28 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var34 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var37); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var43 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var44 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var45 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var47); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var51 == (-1)); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var52 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var53); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var54 == (-1)); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var55); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var56 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var57 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var58); + + } + + public void test40() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test40"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + var0.list(); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + float var7 = var6.getAlignmentX(); + var6.setVisible(false); + boolean var10 = var6.isDoubleBuffered(); + java.awt.dnd.DropTarget var11 = var6.getDropTarget(); + var6.show(false); + java.awt.Rectangle var14 = var6.getVisibleRect(); + java.awt.Rectangle var15 = var0.getBounds(var14); + javax.swing.JToolTip var16 = var0.createToolTip(); + var0.firePropertyChange("", false, false); + var0.validate(); + var0.setFocusCycleRoot(true); + int var24 = var0.countComponents(); + java.awt.event.KeyListener[] var25 = var0.getKeyListeners(); + java.awt.Dimension var26 = var0.getMinimumSize(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var24 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var25); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var26); + + } + + public void test41() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test41"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + float var7 = var6.getAlignmentX(); + var6.setVisible(false); + java.awt.Dimension var10 = var6.getPreferredSize(); + var0.setMaximumSize(var10); + boolean var12 = var0.getVerifyInputWhenFocusTarget(); + javax.accessibility.AccessibleContext var13 = var0.getAccessibleContext(); + boolean var14 = var0.isDoubleBuffered(); + boolean var15 = var0.getAutoscrolls(); + var0.repaint(10L, (-1), 25, (-1), 100); + var0.updateUI(); + boolean var23 = var0.requestDefaultFocus(); + javax.swing.JRootPane var24 = var0.getRootPane(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var24); + + } + + public void test42() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test42"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + SpaceWar.SpacePanel var4 = new SpaceWar.SpacePanel(); + java.awt.Color var5 = var4.getBackground(); + var0.setForeground(var5); + SpaceWar.SpacePanel var7 = new SpaceWar.SpacePanel(); + float var8 = var7.getAlignmentX(); + var7.setVisible(false); + boolean var11 = var7.isDoubleBuffered(); + java.awt.dnd.DropTarget var12 = var7.getDropTarget(); + var7.show(false); + java.awt.Rectangle var15 = var7.getVisibleRect(); + var0.repaint(var15); + java.awt.FocusTraversalPolicy var17 = var0.getFocusTraversalPolicy(); + SpaceWar.SpacePanel var18 = new SpaceWar.SpacePanel(); + float var19 = var18.getAlignmentX(); + var18.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var24 = var18.getUI(); + java.awt.im.InputMethodRequests var25 = var18.getInputMethodRequests(); + SpaceWar.SpacePanel var26 = new SpaceWar.SpacePanel(); + float var27 = var26.getAlignmentX(); + var26.setVisible(false); + var26.nextFocus(); + var26.updateUI(); + var26.enableInputMethods(true); + var26.setSize((-1), 1); + SpaceWar.SpacePanel var37 = new SpaceWar.SpacePanel(); + var37.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var18.add((java.awt.Component)var26, (java.lang.Object)"SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + java.awt.ComponentOrientation var43 = var26.getComponentOrientation(); + java.beans.VetoableChangeListener[] var44 = var26.getVetoableChangeListeners(); + int var45 = var26.getHeight(); + javax.swing.ActionMap var46 = var26.getActionMap(); + var0.setActionMap(var46); + java.awt.Font var48 = var0.getFont(); + boolean var49 = javax.swing.JComponent.isLightweightComponent((java.awt.Component)var0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertNull(var25); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var43); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var44); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var45 == 1); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var46); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var48); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var49 == false); + + } + + public void test43() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test43"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + SpaceWar.SpacePanel var4 = new SpaceWar.SpacePanel(); + java.awt.Color var5 = var4.getBackground(); + var0.setForeground(var5); + SpaceWar.SpacePanel var7 = new SpaceWar.SpacePanel(); + float var8 = var7.getAlignmentX(); + var7.setVisible(false); + boolean var11 = var7.isDoubleBuffered(); + java.awt.dnd.DropTarget var12 = var7.getDropTarget(); + var7.show(false); + java.awt.Rectangle var15 = var7.getVisibleRect(); + var0.repaint(var15); + java.awt.FocusTraversalPolicy var17 = var0.getFocusTraversalPolicy(); + javax.swing.TransferHandler var18 = var0.getTransferHandler(); + java.lang.String var19 = var0.getUIClassID(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var19 + "' != '" + "PanelUI"+ "'", var19.equals("PanelUI")); + + } + + public void test44() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test44"); + + + SpaceWar.Bullet var3 = new SpaceWar.Bullet(83.657626403857d, 1, 24); + double var4 = var3.getX(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 1.0d); + + } + + public void test45() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test45"); + + + SpaceWar.Explosion var4 = new SpaceWar.Explosion(24.0d, 370.79239132960686d, 499, 100); + + } + + public void test46() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test46"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var6 = var0.getMouseListeners(); + var0.firePropertyChange("", 0.5f, 100.0f); + var0.enable(false); + var0.enable(); + SpaceWar.SpacePanel var14 = new SpaceWar.SpacePanel(); + var14.setName(""); + java.awt.Toolkit var17 = var14.getToolkit(); + var14.setEnabled(false); + var14.removeNotify(); + boolean var21 = var14.isDisplayable(); + SpaceWar.SpacePanel var22 = new SpaceWar.SpacePanel(); + java.awt.Color var23 = var22.getBackground(); + var22.repaint(); + var22.setRequestFocusEnabled(false); + var22.reshape(100, 0, 100, 0); + var22.requestFocus(); + java.awt.Rectangle var33 = var22.getVisibleRect(); + java.awt.Rectangle var34 = var22.getBounds(); + java.awt.im.InputMethodRequests var35 = var22.getInputMethodRequests(); + boolean var36 = var22.requestFocusInWindow(); + java.awt.Point var38 = var22.getMousePosition(false); + var22.setDebugGraphicsOptions(1); + java.awt.Graphics var41 = var22.getGraphics(); + var14.paintAll(var41); + var0.printComponents(var41); + javax.swing.JRootPane var44 = var0.getRootPane(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var23); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var33); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var34); + + // Regression assertion (captures the current behavior of the code) + assertNull(var35); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var36 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var38); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var41); + + // Regression assertion (captures the current behavior of the code) + assertNull(var44); + + } + + public void test47() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test47"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + var0.enable(false); + boolean var7 = var0.getFocusTraversalKeysEnabled(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + java.awt.Dimension var12 = var8.getPreferredSize(); + java.awt.Toolkit var13 = var8.getToolkit(); + boolean var14 = var8.isFocusable(); + javax.swing.KeyStroke[] var15 = var8.getRegisteredKeyStrokes(); + SpaceWar.SpacePanel var16 = new SpaceWar.SpacePanel(); + float var17 = var16.getAlignmentX(); + SpaceWar.SpacePanel var18 = new SpaceWar.SpacePanel(); + float var19 = var18.getAlignmentX(); + var18.setVisible(false); + java.awt.Dimension var22 = var18.getPreferredSize(); + boolean var23 = var18.getVerifyInputWhenFocusTarget(); + java.awt.Component var26 = var18.findComponentAt(10, 1); + var16.addKeyListener((java.awt.event.KeyListener)var18); + var18.repaint(100, (-1), (-1), 1); + boolean var33 = var8.isAncestorOf((java.awt.Component)var18); + var0.addKeyListener((java.awt.event.KeyListener)var18); + var18.hide(); + java.awt.event.MouseWheelListener[] var36 = var18.getMouseWheelListeners(); + var18.setLocation((-1), 500); + var18.nextFocus(); + java.awt.Rectangle var41 = var18.bounds(); + boolean var42 = var18.isDisplayable(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var33 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var36); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var41); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var42 == false); + + } + + public void test48() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test48"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + var0.setRequestFocusEnabled(false); + var0.reshape(100, 0, 100, 0); + var0.requestFocus(); + java.awt.Rectangle var11 = var0.getVisibleRect(); + java.awt.Rectangle var12 = var0.getBounds(); + java.awt.im.InputMethodRequests var13 = var0.getInputMethodRequests(); + boolean var14 = var0.requestFocusInWindow(); + java.awt.Rectangle var15 = var0.bounds(); + SpaceWar.SpacePanel var16 = new SpaceWar.SpacePanel(); + float var17 = var16.getAlignmentX(); + var16.setVisible(false); + var16.nextFocus(); + var16.reshape((-1), 1, (-1), 10); + var16.disable(); + boolean var27 = var16.isFocusable(); + java.awt.Dimension var28 = var16.getSize(); + var0.setSize(var28); + java.awt.Container var30 = var0.getFocusCycleRootAncestor(); + boolean var31 = var0.isFocusable(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var28); + + // Regression assertion (captures the current behavior of the code) + assertNull(var30); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var31 == true); + + } + + public void test49() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test49"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + var0.show(false); + java.awt.Rectangle var8 = var0.getVisibleRect(); + java.awt.image.BufferedImage var10 = var0.loadImg("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + java.awt.ComponentOrientation var11 = var0.getComponentOrientation(); + javax.swing.plaf.PanelUI var12 = var0.getUI(); + var0.doLayout(); + boolean var14 = var0.isOptimizedDrawingEnabled(); + java.awt.Dimension var15 = var0.minimumSize(); + SpaceWar.SpacePanel var16 = new SpaceWar.SpacePanel(); + float var17 = var16.getAlignmentX(); + var16.setVisible(false); + var16.setDoubleBuffered(true); + var16.repaint(0, 500, 2, 24); + java.awt.Cursor var27 = var16.getCursor(); + var16.setOpaque(false); + java.awt.Font var30 = var16.getFont(); + SpaceWar.SpacePanel var31 = new SpaceWar.SpacePanel(); + float var32 = var31.getAlignmentX(); + var31.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var37 = var31.getMouseListeners(); + int var38 = var31.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var39 = var31.getInputMethodRequests(); + var31.removeNotify(); + var31.enable(); + SpaceWar.SpacePanel var42 = new SpaceWar.SpacePanel(); + java.awt.Color var43 = var42.getBackground(); + boolean var46 = var42.inside(0, (-1)); + var42.transferFocusUpCycle(); + java.lang.String var48 = var42.getName(); + boolean var49 = var31.isFocusCycleRoot((java.awt.Container)var42); + boolean var50 = var31.isOptimizedDrawingEnabled(); + var16.addKeyListener((java.awt.event.KeyListener)var31); + SpaceWar.SpacePanel var52 = new SpaceWar.SpacePanel(); + float var53 = var52.getAlignmentX(); + var52.firePropertyChange("", (-1), 1); + boolean var58 = var52.isFocusOwner(); + SpaceWar.SpacePanel var60 = new SpaceWar.SpacePanel(); + float var61 = var60.getAlignmentX(); + var60.setVisible(false); + java.awt.Dimension var64 = var60.getPreferredSize(); + java.awt.Toolkit var65 = var60.getToolkit(); + SpaceWar.SpacePanel var66 = new SpaceWar.SpacePanel(); + var66.setName(""); + int var69 = var66.getX(); + SpaceWar.SpacePanel var70 = new SpaceWar.SpacePanel(); + float var71 = var70.getAlignmentX(); + var70.setVisible(false); + var70.nextFocus(); + SpaceWar.SpacePanel var75 = new SpaceWar.SpacePanel(); + float var76 = var75.getAlignmentX(); + var75.setVisible(false); + SpaceWar.SpacePanel var79 = new SpaceWar.SpacePanel(); + java.awt.Color var80 = var79.getBackground(); + var75.setForeground(var80); + var70.setBackground(var80); + var66.setBackground(var80); + var60.setForeground(var80); + var52.putClientProperty((java.lang.Object)(byte)100, (java.lang.Object)var80); + SpaceWar.SpacePanel var86 = new SpaceWar.SpacePanel(); + var86.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + javax.swing.plaf.PanelUI var91 = var86.getUI(); + var52.setUI(var91); + java.awt.Insets var93 = var52.insets(); + var0.add((java.awt.Component)var31, (java.lang.Object)var52); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var27); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var30); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var32 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var37); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var38 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var39); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var43); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var46 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var48); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var49 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var50 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var53 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var58 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var61 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var64); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var65); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var69 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var71 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var76 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var80); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var91); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var93); + + } + + public void test50() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test50"); + + + SpaceWar.Bullet var3 = new SpaceWar.Bullet(594.7973940347722d, 3, 100); + boolean var4 = var3.update(); + boolean var5 = var3.update(); + double var6 = var3.getX(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == (-8.529389630162045d)); + + } + + public void test51() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test51"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + var0.list(); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + float var7 = var6.getAlignmentX(); + var6.setVisible(false); + boolean var10 = var6.isDoubleBuffered(); + java.awt.dnd.DropTarget var11 = var6.getDropTarget(); + var6.show(false); + java.awt.Rectangle var14 = var6.getVisibleRect(); + java.awt.Rectangle var15 = var0.getBounds(var14); + javax.swing.JToolTip var16 = var0.createToolTip(); + var0.firePropertyChange("", false, false); + var0.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", (-1L), (-1L)); + java.awt.Container var25 = var0.getParent(); + java.awt.Component.BaselineResizeBehavior var26 = var0.getBaselineResizeBehavior(); + SpaceWar.SpacePanel var27 = new SpaceWar.SpacePanel(); + float var28 = var27.getAlignmentX(); + var27.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var33 = var27.getMouseListeners(); + int var34 = var27.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var35 = var27.getInputMethodRequests(); + var27.removeNotify(); + var27.enable(); + SpaceWar.SpacePanel var38 = new SpaceWar.SpacePanel(); + java.awt.Color var39 = var38.getBackground(); + boolean var42 = var38.inside(0, (-1)); + var38.transferFocusUpCycle(); + java.lang.String var44 = var38.getName(); + boolean var45 = var27.isFocusCycleRoot((java.awt.Container)var38); + java.awt.Dimension var46 = var27.getMinimumSize(); + boolean var47 = var27.getFocusTraversalKeysEnabled(); + SpaceWar.SpacePanel var48 = new SpaceWar.SpacePanel(); + float var49 = var48.getAlignmentX(); + var48.setVisible(false); + boolean var52 = var48.isDoubleBuffered(); + java.awt.Graphics var53 = var48.getGraphics(); + java.awt.event.MouseMotionListener[] var54 = var48.getMouseMotionListeners(); + SpaceWar.SpacePanel var55 = new SpaceWar.SpacePanel(); + float var56 = var55.getAlignmentX(); + var55.setVisible(false); + var55.setInheritsPopupMenu(false); + boolean var61 = var55.isDoubleBuffered(); + boolean var62 = var55.isMinimumSizeSet(); + java.awt.Font var63 = var55.getFont(); + var48.setFont(var63); + java.awt.FontMetrics var65 = var27.getFontMetrics(var63); + java.awt.FontMetrics var66 = var0.getFontMetrics(var63); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertNull(var25); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var28 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var33); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var34 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var35); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var39); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var42 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var44); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var45 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var46); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var47 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var49 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var52 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var53); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var54); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var56 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var61 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var62 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var63); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var65); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var66); + + } + + public void test52() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test52"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.reshape((-1), 1, (-1), 10); + var0.disable(); + java.awt.LayoutManager var11 = var0.getLayout(); + java.awt.Container var12 = var0.getParent(); + boolean var13 = var0.isPaintingForPrint(); + SpaceWar.SpacePanel var14 = new SpaceWar.SpacePanel(); + float var15 = var14.getAlignmentX(); + var14.setVisible(false); + var14.nextFocus(); + var14.reshape((-1), 1, (-1), 10); + SpaceWar.SpacePanel var24 = new SpaceWar.SpacePanel(); + java.awt.Color var25 = var24.getBackground(); + var24.repaint(); + var24.setRequestFocusEnabled(false); + var24.reshape(100, 0, 100, 0); + java.awt.Component var34 = var14.add((java.awt.Component)var24); + SpaceWar.SpacePanel var35 = new SpaceWar.SpacePanel(); + var35.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + javax.swing.plaf.PanelUI var40 = var35.getUI(); + SpaceWar.SpacePanel var41 = new SpaceWar.SpacePanel(); + float var42 = var41.getAlignmentX(); + var41.setVisible(false); + var41.nextFocus(); + var41.repaint(1L); + SpaceWar.SpacePanel var48 = new SpaceWar.SpacePanel(); + float var49 = var48.getAlignmentX(); + var48.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var54 = new SpaceWar.SpacePanel(); + float var55 = var54.getAlignmentX(); + var54.setVisible(false); + java.awt.Dimension var58 = var54.getPreferredSize(); + var48.setMaximumSize(var58); + var41.setPreferredSize(var58); + var35.setMaximumSize(var58); + java.awt.Dimension var62 = var24.getSize(var58); + var0.setSize(var62); + var0.list(); + java.awt.GraphicsConfiguration var65 = var0.getGraphicsConfiguration(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var25); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var34); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var40); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var42 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var49 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var55 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var58); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var62); + + // Regression assertion (captures the current behavior of the code) + assertNull(var65); + + } + + public void test53() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test53"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + SpaceWar.SpacePanel var2 = new SpaceWar.SpacePanel(); + float var3 = var2.getAlignmentX(); + var2.setVisible(false); + java.awt.Dimension var6 = var2.getPreferredSize(); + boolean var7 = var2.getVerifyInputWhenFocusTarget(); + java.awt.Component var10 = var2.findComponentAt(10, 1); + var0.addKeyListener((java.awt.event.KeyListener)var2); + var2.repaint(100, (-1), (-1), 1); + SpaceWar.SpacePanel var17 = new SpaceWar.SpacePanel(); + java.awt.Color var18 = var17.getBackground(); + var17.repaint(); + java.awt.im.InputMethodRequests var20 = var17.getInputMethodRequests(); + java.awt.GraphicsConfiguration var21 = var17.getGraphicsConfiguration(); + var2.remove((java.awt.Component)var17); + var2.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", 0.0f, 1.0f); + SpaceWar.SpacePanel var27 = new SpaceWar.SpacePanel(); + float var28 = var27.getAlignmentX(); + var27.setVisible(false); + java.awt.Dimension var31 = var27.getPreferredSize(); + boolean var32 = var27.getVerifyInputWhenFocusTarget(); + SpaceWar.SpacePanel var33 = new SpaceWar.SpacePanel(); + var33.setName(""); + int var36 = var33.getX(); + SpaceWar.SpacePanel var37 = new SpaceWar.SpacePanel(); + float var38 = var37.getAlignmentX(); + var37.setVisible(false); + var37.nextFocus(); + SpaceWar.SpacePanel var42 = new SpaceWar.SpacePanel(); + float var43 = var42.getAlignmentX(); + var42.setVisible(false); + SpaceWar.SpacePanel var46 = new SpaceWar.SpacePanel(); + java.awt.Color var47 = var46.getBackground(); + var42.setForeground(var47); + var37.setBackground(var47); + var33.setBackground(var47); + var2.add((java.awt.Component)var27, (java.lang.Object)var33); + var33.requestFocus(); + java.awt.FocusTraversalPolicy var53 = var33.getFocusTraversalPolicy(); + var33.setFocusTraversalPolicyProvider(false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertNull(var21); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var28 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var31); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var32 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var36 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var38 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var43 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var47); + + // Regression assertion (captures the current behavior of the code) + assertNull(var53); + + } + + public void test54() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test54"); + + + SpaceWar.Player var0 = new SpaceWar.Player(); + boolean var1 = var0.isRecovering(); + var0.loseLife(); + int var3 = var0.getR(); + var0.loseLife(); + java.awt.image.BufferedImage var6 = var0.loadImg("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + boolean var7 = var0.isDead(); + var0.setScore(3); + java.awt.image.BufferedImage var11 = var0.loadImg("SpaceWar.SpacePanel[,0,0,0x0,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + var0.loseLife(); + int var13 = var0.getRequiredPower(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == 25); + + // Regression assertion (captures the current behavior of the code) + assertNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == 1); + + } + + public void test55() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test55"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + var0.setBounds(500, 499, 25, 10); + boolean var10 = var0.isFocusTraversable(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == true); + + } + + public void test56() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test56"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.updateUI(); + var0.enableInputMethods(true); + var0.setSize((-1), 1); + boolean var13 = var0.contains(1, 1); + java.awt.Component var16 = var0.getComponentAt(100, 3); + SpaceWar.SpacePanel var17 = new SpaceWar.SpacePanel(); + float var18 = var17.getAlignmentX(); + var17.setVisible(false); + boolean var21 = var17.isDoubleBuffered(); + var17.enable(false); + boolean var24 = var17.getFocusTraversalKeysEnabled(); + SpaceWar.SpacePanel var25 = new SpaceWar.SpacePanel(); + float var26 = var25.getAlignmentX(); + var25.setVisible(false); + java.awt.Dimension var29 = var25.getPreferredSize(); + java.awt.Toolkit var30 = var25.getToolkit(); + boolean var31 = var25.isFocusable(); + javax.swing.KeyStroke[] var32 = var25.getRegisteredKeyStrokes(); + SpaceWar.SpacePanel var33 = new SpaceWar.SpacePanel(); + float var34 = var33.getAlignmentX(); + SpaceWar.SpacePanel var35 = new SpaceWar.SpacePanel(); + float var36 = var35.getAlignmentX(); + var35.setVisible(false); + java.awt.Dimension var39 = var35.getPreferredSize(); + boolean var40 = var35.getVerifyInputWhenFocusTarget(); + java.awt.Component var43 = var35.findComponentAt(10, 1); + var33.addKeyListener((java.awt.event.KeyListener)var35); + var35.repaint(100, (-1), (-1), 1); + boolean var50 = var25.isAncestorOf((java.awt.Component)var35); + var17.addKeyListener((java.awt.event.KeyListener)var35); + java.awt.ComponentOrientation var52 = var17.getComponentOrientation(); + var0.setComponentOrientation(var52); + var0.repaint(1L); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var24 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var29); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var30); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var31 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var32); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var34 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var36 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var39); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var40 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var43); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var50 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var52); + + } + + public void test57() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test57"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + var0.setRequestFocusEnabled(false); + var0.reshape(100, 0, 100, 0); + var0.requestFocus(); + var0.firePropertyChange("hi!", '4', ' '); + java.awt.Point var15 = var0.getLocation(); + java.awt.Dimension var16 = var0.size(); + java.awt.Image var19 = var0.createImage((-1), (-1)); + java.awt.event.ComponentListener[] var20 = var0.getComponentListeners(); + SpaceWar.SpacePanel var21 = new SpaceWar.SpacePanel(); + var21.setName(""); + java.awt.ComponentOrientation var24 = var21.getComponentOrientation(); + var21.firePropertyChange("PanelUI", 1.0f, 0.5f); + int var29 = var0.getComponentZOrder((java.awt.Component)var21); + SpaceWar.SpacePanel var30 = new SpaceWar.SpacePanel(); + float var31 = var30.getAlignmentX(); + var30.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var36 = var30.getUI(); + java.awt.im.InputMethodRequests var37 = var30.getInputMethodRequests(); + SpaceWar.SpacePanel var38 = new SpaceWar.SpacePanel(); + float var39 = var38.getAlignmentX(); + var38.setVisible(false); + var38.nextFocus(); + var38.updateUI(); + var38.enableInputMethods(true); + var38.setSize((-1), 1); + SpaceWar.SpacePanel var49 = new SpaceWar.SpacePanel(); + var49.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var30.add((java.awt.Component)var38, (java.lang.Object)"SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + SpaceWar.SpacePanel var55 = new SpaceWar.SpacePanel(); + float var56 = var55.getAlignmentX(); + var55.setVisible(false); + var55.setInheritsPopupMenu(false); + boolean var61 = var55.isDoubleBuffered(); + boolean var62 = var55.isMinimumSizeSet(); + SpaceWar.SpacePanel var63 = new SpaceWar.SpacePanel(); + float var64 = var63.getAlignmentX(); + var63.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var69 = new SpaceWar.SpacePanel(); + float var70 = var69.getAlignmentX(); + var69.setVisible(false); + java.awt.Dimension var73 = var69.getPreferredSize(); + var63.setMaximumSize(var73); + boolean var75 = var63.getVerifyInputWhenFocusTarget(); + javax.accessibility.AccessibleContext var76 = var63.getAccessibleContext(); + boolean var77 = var63.isDoubleBuffered(); + java.awt.Rectangle var78 = var63.getVisibleRect(); + var55.setBounds(var78); + java.awt.Rectangle var80 = var30.getBounds(var78); + var0.computeVisibleRect(var78); + boolean var82 = var0.isDisplayable(); + var0.setFocusTraversalKeysEnabled(false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var29 == (-1)); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var31 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var36); + + // Regression assertion (captures the current behavior of the code) + assertNull(var37); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var39 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var56 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var61 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var62 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var64 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var70 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var73); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var75 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var76); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var77 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var78); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var80); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var82 == false); + + } + + public void test58() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test58"); + + + SpaceWar.Enemy var2 = new SpaceWar.Enemy(10, 1); + int var3 = var2.getRank(); + int var4 = var2.getType(); + var2.explode(); + int var6 = var2.getR(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == 1); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 10); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == 0); + + } + + public void test59() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test59"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + var0.show(false); + java.awt.Rectangle var8 = var0.getVisibleRect(); + java.awt.image.BufferedImage var10 = var0.loadImg("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + java.awt.ComponentOrientation var11 = var0.getComponentOrientation(); + var0.transferFocusBackward(); + var0.show(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + } + + public void test60() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test60"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + SpaceWar.SpacePanel var2 = new SpaceWar.SpacePanel(); + float var3 = var2.getAlignmentX(); + var2.setVisible(false); + java.awt.Dimension var6 = var2.getPreferredSize(); + boolean var7 = var2.getVerifyInputWhenFocusTarget(); + java.awt.Component var10 = var2.findComponentAt(10, 1); + var0.addKeyListener((java.awt.event.KeyListener)var2); + SpaceWar.SpacePanel var12 = new SpaceWar.SpacePanel(); + float var13 = var12.getAlignmentX(); + SpaceWar.SpacePanel var14 = new SpaceWar.SpacePanel(); + float var15 = var14.getAlignmentX(); + var14.setVisible(false); + java.awt.Dimension var18 = var14.getPreferredSize(); + boolean var19 = var14.getVerifyInputWhenFocusTarget(); + java.awt.Component var22 = var14.findComponentAt(10, 1); + var12.addKeyListener((java.awt.event.KeyListener)var14); + var14.repaint(100, (-1), (-1), 1); + java.awt.image.ColorModel var29 = var14.getColorModel(); + SpaceWar.SpacePanel var30 = new SpaceWar.SpacePanel(); + float var31 = var30.getAlignmentX(); + var30.setVisible(false); + boolean var34 = var30.isDoubleBuffered(); + var30.list(); + SpaceWar.SpacePanel var36 = new SpaceWar.SpacePanel(); + float var37 = var36.getAlignmentX(); + var36.setVisible(false); + boolean var40 = var36.isDoubleBuffered(); + java.awt.dnd.DropTarget var41 = var36.getDropTarget(); + var36.show(false); + java.awt.Rectangle var44 = var36.getVisibleRect(); + java.awt.image.BufferedImage var46 = var36.loadImg("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + boolean var47 = var30.isAncestorOf((java.awt.Component)var36); + javax.swing.InputVerifier var48 = var36.getInputVerifier(); + var2.putClientProperty((java.lang.Object)var14, (java.lang.Object)var36); + int var50 = var36.getComponentCount(); + java.awt.Component var53 = var36.locate(100, 24); + java.awt.LayoutManager var54 = var36.getLayout(); + javax.swing.plaf.PanelUI var55 = var36.getUI(); + javax.swing.InputVerifier var56 = var36.getInputVerifier(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var29); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var31 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var34 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var40 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var41); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var44); + + // Regression assertion (captures the current behavior of the code) + assertNull(var46); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var47 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var48); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var50 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var53); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var54); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var55); + + // Regression assertion (captures the current behavior of the code) + assertNull(var56); + + } + + public void test61() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test61"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + var0.show(false); + boolean var8 = var0.isPaintingForPrint(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var15 = var9.getMouseListeners(); + int var16 = var9.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var17 = var9.getInputMethodRequests(); + var0.addKeyListener((java.awt.event.KeyListener)var9); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + float var20 = var19.getAlignmentX(); + var19.setVisible(false); + boolean var23 = var19.isDoubleBuffered(); + var19.list(); + float var25 = var19.getAlignmentY(); + boolean var26 = var9.isFocusCycleRoot((java.awt.Container)var19); + SpaceWar.SpacePanel var28 = new SpaceWar.SpacePanel(); + float var29 = var28.getAlignmentX(); + var28.setVisible(false); + var28.nextFocus(); + var28.updateUI(); + java.awt.Component var34 = var9.add("", (java.awt.Component)var28); + var9.firePropertyChange("hi!", 'a', '4'); + java.awt.ComponentOrientation var39 = var9.getComponentOrientation(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var29 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var34); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var39); + + } + + public void test62() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test62"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + java.awt.im.InputMethodRequests var3 = var0.getInputMethodRequests(); + int var4 = var0.countComponents(); + java.awt.event.ComponentListener[] var5 = var0.getComponentListeners(); + var0.removeNotify(); + javax.swing.InputMap var7 = var0.getInputMap(); + int var8 = var0.getDebugGraphicsOptions(); + java.awt.Graphics var9 = var0.getGraphics(); + var0.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", (short)(-1), (short)100); + boolean var14 = var0.isEnabled(); + SpaceWar.SpacePanel var15 = new SpaceWar.SpacePanel(); + var15.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + javax.swing.plaf.PanelUI var20 = var15.getUI(); + boolean var21 = var15.isDisplayable(); + SpaceWar.SpacePanel var22 = new SpaceWar.SpacePanel(); + float var23 = var22.getAlignmentX(); + var22.removeNotify(); + SpaceWar.SpacePanel var25 = new SpaceWar.SpacePanel(); + float var26 = var25.getAlignmentX(); + var25.setVisible(false); + boolean var29 = var25.isDoubleBuffered(); + var25.list(); + float var31 = var25.getAlignmentY(); + java.awt.Insets var32 = var25.getInsets(); + java.awt.Insets var33 = var22.getInsets(var32); + java.awt.Insets var34 = var15.getInsets(var33); + java.awt.Insets var35 = var0.getInsets(var34); + java.awt.Dimension var36 = var0.size(); + var0.setToolTipText("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=10,height=10]]"); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var9); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var29 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var31 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var32); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var33); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var34); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var35); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var36); + + } + + public void test63() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test63"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var6 = var0.getMouseListeners(); + int var7 = var0.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var8 = var0.getInputMethodRequests(); + var0.removeNotify(); + var0.enable(); + SpaceWar.SpacePanel var11 = new SpaceWar.SpacePanel(); + java.awt.Color var12 = var11.getBackground(); + boolean var15 = var11.inside(0, (-1)); + var11.transferFocusUpCycle(); + java.lang.String var17 = var11.getName(); + boolean var18 = var0.isFocusCycleRoot((java.awt.Container)var11); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + java.awt.Color var20 = var19.getBackground(); + var19.repaint(); + java.awt.im.InputMethodRequests var22 = var19.getInputMethodRequests(); + int var23 = var19.countComponents(); + java.awt.Dimension var24 = var19.getSize(); + var0.setSize(var24); + java.beans.PropertyChangeListener[] var26 = var0.getPropertyChangeListeners(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var26); + + } + + public void test64() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test64"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + var0.enable(false); + SpaceWar.SpacePanel var7 = new SpaceWar.SpacePanel(); + float var8 = var7.getAlignmentX(); + boolean var9 = var7.hasFocus(); + java.awt.Insets var10 = var7.getInsets(); + java.awt.Rectangle var11 = var7.bounds(); + var0.repaint(var11); + boolean var13 = var0.hasFocus(); + float var14 = var0.getAlignmentX(); + boolean var15 = var0.getAutoscrolls(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == false); + + } + + public void test65() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test65"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var6 = var0.getMouseListeners(); + int var7 = var0.getDebugGraphicsOptions(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + boolean var12 = var8.isDoubleBuffered(); + java.awt.dnd.DropTarget var13 = var8.getDropTarget(); + var8.show(false); + java.awt.Rectangle var16 = var8.getVisibleRect(); + var0.paintImmediately(var16); + java.awt.Rectangle var18 = var0.getBounds(); + java.awt.Component var21 = var0.getComponentAt((-1), 25); + var0.setAlignmentX(1.0f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertNull(var21); + + } + + public void test66() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test66"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var6 = var0.getMouseListeners(); + SpaceWar.SpacePanel var7 = new SpaceWar.SpacePanel(); + float var8 = var7.getAlignmentX(); + var7.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var13 = var7.getMouseListeners(); + int var14 = var7.getDebugGraphicsOptions(); + SpaceWar.SpacePanel var15 = new SpaceWar.SpacePanel(); + float var16 = var15.getAlignmentX(); + var15.setVisible(false); + boolean var19 = var15.isDoubleBuffered(); + java.awt.dnd.DropTarget var20 = var15.getDropTarget(); + var15.show(false); + java.awt.Rectangle var23 = var15.getVisibleRect(); + var7.paintImmediately(var23); + var7.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", '#', '#'); + var7.list(); + SpaceWar.SpacePanel var30 = new SpaceWar.SpacePanel(); + var30.setName(""); + java.awt.Dimension var33 = var30.minimumSize(); + var7.setSize(var33); + SpaceWar.SpacePanel var35 = new SpaceWar.SpacePanel(); + java.awt.Color var36 = var35.getBackground(); + var35.repaint(); + var35.setRequestFocusEnabled(false); + var35.setIgnoreRepaint(false); + boolean var42 = var35.requestFocusInWindow(); + SpaceWar.SpacePanel var43 = new SpaceWar.SpacePanel(); + float var44 = var43.getAlignmentX(); + SpaceWar.SpacePanel var45 = new SpaceWar.SpacePanel(); + float var46 = var45.getAlignmentX(); + var45.setVisible(false); + java.awt.Dimension var49 = var45.getPreferredSize(); + boolean var50 = var45.getVerifyInputWhenFocusTarget(); + java.awt.Component var53 = var45.findComponentAt(10, 1); + var43.addKeyListener((java.awt.event.KeyListener)var45); + java.awt.Cursor var55 = var43.getCursor(); + java.awt.Dimension var56 = var43.getMinimumSize(); + var35.resize(var56); + var7.setPreferredSize(var56); + boolean var59 = var0.isAncestorOf((java.awt.Component)var7); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var23); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var33); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var36); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var42 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var44 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var46 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var49); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var50 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var53); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var55); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var56); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var59 == false); + + } + + public void test67() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test67"); + + + SpaceWar.Player var0 = new SpaceWar.Player(); + var0.increasePower(25); + int var3 = var0.getScore(); + var0.setRigth(true); + var0.update(); + var0.setDown(false); + int var9 = var0.getPower(); + int var10 = var0.getY(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 24); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 500); + + } + + public void test68() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test68"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + java.awt.Dimension var4 = var0.getPreferredSize(); + boolean var5 = var0.getVerifyInputWhenFocusTarget(); + java.awt.Component var8 = var0.findComponentAt(10, 1); + boolean var9 = var0.requestDefaultFocus(); + boolean var10 = var0.isPaintingTile(); + boolean var11 = var0.getInheritsPopupMenu(); + javax.swing.border.Border var12 = var0.getBorder(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var4); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var12); + + } + + public void test69() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test69"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + var0.show(false); + boolean var8 = var0.isPaintingForPrint(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var15 = var9.getMouseListeners(); + int var16 = var9.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var17 = var9.getInputMethodRequests(); + var0.addKeyListener((java.awt.event.KeyListener)var9); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + float var20 = var19.getAlignmentX(); + var19.setVisible(false); + boolean var23 = var19.isDoubleBuffered(); + var19.list(); + float var25 = var19.getAlignmentY(); + boolean var26 = var9.isFocusCycleRoot((java.awt.Container)var19); + boolean var27 = var19.isEnabled(); + java.awt.Dimension var28 = var19.getMaximumSize(); + var19.setFocusCycleRoot(false); + java.awt.event.ComponentListener[] var31 = var19.getComponentListeners(); + boolean var32 = var19.isFocusCycleRoot(); + var19.firePropertyChange("PanelUI", 83.657626403857d, 10.0d); + var19.grabFocus(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var28); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var31); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var32 == false); + + } + + public void test70() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test70"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.setInheritsPopupMenu(false); + var0.move(10, 10); + boolean var9 = var0.isFocusable(); + var0.list(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == true); + + } + + public void test71() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test71"); + + + SpaceWar.PowerUp var3 = new SpaceWar.PowerUp(100, (-1.0d), 0.0d); + double var4 = var3.getR(); + int var5 = var3.getType(); + double var6 = var3.getX(); + int var7 = var3.getType(); + double var8 = var3.getX(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0.0d); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == 100); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == (-1.0d)); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 100); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == (-1.0d)); + + } + + public void test72() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test72"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + boolean var2 = var0.hasFocus(); + boolean var3 = var0.isPreferredSizeSet(); + var0.firePropertyChange("", (short)1, (short)0); + boolean var8 = var0.isMaximumSizeSet(); + java.awt.peer.ComponentPeer var9 = var0.getPeer(); + java.awt.ComponentOrientation var10 = var0.getComponentOrientation(); + java.awt.im.InputMethodRequests var11 = var0.getInputMethodRequests(); + var0.enable(); + java.awt.Rectangle var13 = var0.bounds(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var2 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var9); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var13); + + } + + public void test73() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test73"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + boolean var5 = javax.swing.JComponent.isLightweightComponent((java.awt.Component)var0); + java.awt.event.MouseWheelListener[] var6 = var0.getMouseWheelListeners(); + boolean var7 = var0.isValid(); + var0.repaint(0L, 499, 400, 0, 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == false); + + } + + public void test74() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test74"); + + + SpaceWar.Enemy var2 = new SpaceWar.Enemy(0, 100); + int var3 = var2.getR(); + int var4 = var2.getR(); + double var5 = var2.getY(); + var2.hit(); + int var7 = var2.getRank(); + double var8 = var2.getX(); + int var9 = var2.getR(); + var2.update(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == 0.0d); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 100); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 580.3258601231123d); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0); + + } + + public void test75() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test75"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + java.awt.Dimension var4 = var0.getPreferredSize(); + boolean var5 = var0.getVerifyInputWhenFocusTarget(); + java.awt.Component var8 = var0.findComponentAt(10, 1); + boolean var9 = var0.requestDefaultFocus(); + var0.setVerifyInputWhenFocusTarget(true); + var0.transferFocusDownCycle(); + var0.transferFocusUpCycle(); + var0.repaint(3, 100, 10, 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var4); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == false); + + } + + public void test76() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test76"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + SpaceWar.SpacePanel var2 = new SpaceWar.SpacePanel(); + float var3 = var2.getAlignmentX(); + var2.setVisible(false); + java.awt.Dimension var6 = var2.getPreferredSize(); + boolean var7 = var2.getVerifyInputWhenFocusTarget(); + java.awt.Component var10 = var2.findComponentAt(10, 1); + var0.addKeyListener((java.awt.event.KeyListener)var2); + var2.repaint(100, (-1), (-1), 1); + java.awt.image.ColorModel var17 = var2.getColorModel(); + boolean var18 = var2.isPreferredSizeSet(); + java.awt.peer.ComponentPeer var19 = var2.getPeer(); + java.awt.Dimension var20 = var2.getMinimumSize(); + java.awt.Component var23 = var2.findComponentAt(499, 10); + var2.setVerifyInputWhenFocusTarget(false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertNull(var23); + + } + + public void test77() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test77"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var6 = var0.getMouseListeners(); + int var7 = var0.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var8 = var0.getInputMethodRequests(); + var0.removeNotify(); + var0.enable(); + SpaceWar.SpacePanel var11 = new SpaceWar.SpacePanel(); + java.awt.Color var12 = var11.getBackground(); + boolean var15 = var11.inside(0, (-1)); + var11.transferFocusUpCycle(); + java.lang.String var17 = var11.getName(); + boolean var18 = var0.isFocusCycleRoot((java.awt.Container)var11); + var0.requestFocus(); + SpaceWar.SpacePanel var20 = new SpaceWar.SpacePanel(); + float var21 = var20.getAlignmentX(); + var20.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var26 = new SpaceWar.SpacePanel(); + float var27 = var26.getAlignmentX(); + var26.setVisible(false); + java.awt.Dimension var30 = var26.getPreferredSize(); + var20.setMaximumSize(var30); + boolean var32 = var20.getVerifyInputWhenFocusTarget(); + java.awt.Toolkit var33 = var20.getToolkit(); + java.lang.String var34 = var20.getUIClassID(); + java.awt.Dimension var35 = var20.getMinimumSize(); + SpaceWar.SpacePanel var36 = new SpaceWar.SpacePanel(); + float var37 = var36.getAlignmentX(); + var36.setVisible(false); + var36.setInheritsPopupMenu(false); + var36.setFocusTraversalPolicyProvider(true); + SpaceWar.SpacePanel var44 = new SpaceWar.SpacePanel(); + float var45 = var44.getAlignmentX(); + var44.setVisible(false); + boolean var48 = var44.isDoubleBuffered(); + var44.list(); + SpaceWar.SpacePanel var50 = new SpaceWar.SpacePanel(); + float var51 = var50.getAlignmentX(); + var50.setVisible(false); + boolean var54 = var50.isDoubleBuffered(); + java.awt.dnd.DropTarget var55 = var50.getDropTarget(); + var50.show(false); + java.awt.Rectangle var58 = var50.getVisibleRect(); + java.awt.Rectangle var59 = var44.getBounds(var58); + javax.swing.JToolTip var60 = var44.createToolTip(); + var36.removeKeyListener((java.awt.event.KeyListener)var44); + javax.swing.TransferHandler var62 = var36.getTransferHandler(); + boolean var63 = var36.requestFocusInWindow(); + var0.add((java.awt.Component)var20, (java.lang.Object)var36); + java.awt.Insets var65 = var20.getInsets(); + java.awt.Color var66 = var20.getBackground(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var30); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var32 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var33); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var34 + "' != '" + "PanelUI"+ "'", var34.equals("PanelUI")); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var35); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var45 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var48 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var51 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var54 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var55); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var58); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var59); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var60); + + // Regression assertion (captures the current behavior of the code) + assertNull(var62); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var63 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var65); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var66); + + } + + public void test78() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test78"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + SpaceWar.SpacePanel var4 = new SpaceWar.SpacePanel(); + java.awt.Color var5 = var4.getBackground(); + var0.setForeground(var5); + SpaceWar.SpacePanel var7 = new SpaceWar.SpacePanel(); + float var8 = var7.getAlignmentX(); + var7.setVisible(false); + boolean var11 = var7.isDoubleBuffered(); + java.awt.dnd.DropTarget var12 = var7.getDropTarget(); + var7.show(false); + java.awt.Rectangle var15 = var7.getVisibleRect(); + var0.repaint(var15); + java.awt.Component.BaselineResizeBehavior var17 = var0.getBaselineResizeBehavior(); + boolean var19 = var0.requestFocus(false); + var0.removeAll(); + javax.swing.JRootPane var21 = var0.getRootPane(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var21); + + } + + public void test79() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test79"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.setInheritsPopupMenu(false); + var0.setFocusTraversalPolicyProvider(true); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + boolean var12 = var8.isDoubleBuffered(); + var8.list(); + SpaceWar.SpacePanel var14 = new SpaceWar.SpacePanel(); + float var15 = var14.getAlignmentX(); + var14.setVisible(false); + boolean var18 = var14.isDoubleBuffered(); + java.awt.dnd.DropTarget var19 = var14.getDropTarget(); + var14.show(false); + java.awt.Rectangle var22 = var14.getVisibleRect(); + java.awt.Rectangle var23 = var8.getBounds(var22); + javax.swing.JToolTip var24 = var8.createToolTip(); + var0.removeKeyListener((java.awt.event.KeyListener)var8); + javax.swing.TransferHandler var26 = var0.getTransferHandler(); + boolean var27 = var0.isPaintingForPrint(); + int var28 = var0.getComponentCount(); + SpaceWar.SpacePanel var29 = new SpaceWar.SpacePanel(); + float var30 = var29.getAlignmentX(); + var29.setVisible(false); + var29.nextFocus(); + var29.updateUI(); + var29.enableInputMethods(true); + var29.enableInputMethods(true); + SpaceWar.SpacePanel var39 = new SpaceWar.SpacePanel(); + float var40 = var39.getAlignmentX(); + var39.setVisible(false); + var39.nextFocus(); + var39.reshape((-1), 1, (-1), 10); + var39.disable(); + var39.show(); + SpaceWar.SpacePanel var51 = new SpaceWar.SpacePanel(); + float var52 = var51.getAlignmentX(); + var51.setVisible(false); + boolean var55 = var51.isDoubleBuffered(); + var51.list(); + SpaceWar.SpacePanel var57 = new SpaceWar.SpacePanel(); + float var58 = var57.getAlignmentX(); + var57.setVisible(false); + boolean var61 = var57.isDoubleBuffered(); + java.awt.dnd.DropTarget var62 = var57.getDropTarget(); + var57.show(false); + java.awt.Rectangle var65 = var57.getVisibleRect(); + java.awt.Rectangle var66 = var51.getBounds(var65); + javax.swing.JToolTip var67 = var51.createToolTip(); + var51.firePropertyChange("", false, false); + var51.validate(); + SpaceWar.SpacePanel var73 = new SpaceWar.SpacePanel(); + float var74 = var73.getAlignmentX(); + var73.setVisible(false); + boolean var77 = var73.isDoubleBuffered(); + java.awt.dnd.DropTarget var78 = var73.getDropTarget(); + var73.show(false); + boolean var81 = var73.isPaintingForPrint(); + SpaceWar.SpacePanel var82 = new SpaceWar.SpacePanel(); + float var83 = var82.getAlignmentX(); + var82.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var88 = var82.getMouseListeners(); + int var89 = var82.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var90 = var82.getInputMethodRequests(); + var73.addKeyListener((java.awt.event.KeyListener)var82); + var82.repaint(); + java.awt.Point var93 = var82.location(); + java.awt.Component var94 = var51.getComponentAt(var93); + java.awt.Point var95 = var39.getLocation(var93); + java.awt.Point var96 = var29.getLocation(var93); + java.awt.Point var97 = var0.getLocation(var96); + java.util.Locale var98 = var0.getLocale(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var23); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var28 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var30 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var40 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var52 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var55 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var58 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var61 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var62); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var65); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var66); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var67); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var74 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var77 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var78); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var81 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var83 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var88); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var89 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var90); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var93); + + // Regression assertion (captures the current behavior of the code) + assertNull(var94); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var95); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var96); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var97); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var98); + + } + + public void test80() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test80"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.reshape((-1), 1, (-1), 10); + var0.disable(); + java.awt.LayoutManager var11 = var0.getLayout(); + boolean var14 = var0.contains((-1), 0); + SpaceWar.SpacePanel var15 = new SpaceWar.SpacePanel(); + float var16 = var15.getAlignmentX(); + var15.setVisible(false); + var15.nextFocus(); + var15.updateUI(); + var15.enableInputMethods(true); + var15.setSize((-1), 1); + java.awt.Component var26 = var0.add((java.awt.Component)var15); + SpaceWar.SpacePanel var27 = new SpaceWar.SpacePanel(); + float var28 = var27.getAlignmentX(); + var27.setVisible(false); + var27.nextFocus(); + var27.updateUI(); + var27.enableInputMethods(true); + java.lang.String var35 = var27.toString(); + java.awt.FocusTraversalPolicy var36 = var27.getFocusTraversalPolicy(); + var15.removeKeyListener((java.awt.event.KeyListener)var27); + var15.setFocusable(false); + var15.firePropertyChange("hi!", ' ', 'a'); + var15.addNotify(); + javax.swing.JRootPane var45 = var15.getRootPane(); + var15.revalidate(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var28 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var35 + "' != '" + "SpaceWar.SpacePanel[,0,0,0var35,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"+ "'", var35.equals("SpaceWar.SpacePanel[,0,0,0var35,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]")); + + // Regression assertion (captures the current behavior of the code) + assertNull(var36); + + // Regression assertion (captures the current behavior of the code) + assertNull(var45); + + } + + public void test81() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test81"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + boolean var6 = var0.isFocusCycleRoot(); + var0.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", 100, 0); + SpaceWar.SpacePanel var11 = new SpaceWar.SpacePanel(); + float var12 = var11.getAlignmentX(); + var11.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var17 = var11.getUI(); + var0.add((java.awt.Component)var11, (java.lang.Object)(short)0); + var11.setToolTipText("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=265,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var17); + + } + + public void test82() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test82"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + var0.enable(false); + int var7 = var0.getWidth(); + boolean var8 = var0.isMinimumSizeSet(); + boolean var9 = var0.isFocusTraversalPolicySet(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == false); + + } + + public void test83() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test83"); + + + SpaceWar.Enemy var2 = new SpaceWar.Enemy(0, 100); + int var3 = var2.getR(); + int var4 = var2.getR(); + double var5 = var2.getY(); + int var6 = var2.getRank(); + boolean var7 = var2.isDead(); + var2.update(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == 0.0d); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == 100); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == false); + + } + + public void test84() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test84"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + var0.show(false); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + SpaceWar.SpacePanel var12 = new SpaceWar.SpacePanel(); + java.awt.Color var13 = var12.getBackground(); + var8.setForeground(var13); + SpaceWar.SpacePanel var15 = new SpaceWar.SpacePanel(); + float var16 = var15.getAlignmentX(); + var15.setVisible(false); + boolean var19 = var15.isDoubleBuffered(); + java.awt.dnd.DropTarget var20 = var15.getDropTarget(); + var15.show(false); + java.awt.Rectangle var23 = var15.getVisibleRect(); + var8.repaint(var23); + java.awt.FocusTraversalPolicy var25 = var8.getFocusTraversalPolicy(); + java.awt.im.InputMethodRequests var26 = var8.getInputMethodRequests(); + var8.layout(); + SpaceWar.SpacePanel var28 = new SpaceWar.SpacePanel(); + float var29 = var28.getAlignmentX(); + var28.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var34 = new SpaceWar.SpacePanel(); + float var35 = var34.getAlignmentX(); + var34.setVisible(false); + SpaceWar.SpacePanel var38 = new SpaceWar.SpacePanel(); + java.awt.Color var39 = var38.getBackground(); + var34.setForeground(var39); + var28.setBackground(var39); + var8.setForeground(var39); + int var43 = var8.getWidth(); + javax.swing.plaf.PanelUI var44 = var8.getUI(); + var0.setUI(var44); + var0.setName("SpaceWar.SpacePanel[,0,0,0x0,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + SpaceWar.SpacePanel var48 = new SpaceWar.SpacePanel(); + float var49 = var48.getAlignmentX(); + var48.setVisible(false); + boolean var52 = var48.isDoubleBuffered(); + var48.list(); + SpaceWar.SpacePanel var54 = new SpaceWar.SpacePanel(); + float var55 = var54.getAlignmentX(); + var54.setVisible(false); + boolean var58 = var54.isDoubleBuffered(); + java.awt.dnd.DropTarget var59 = var54.getDropTarget(); + var54.show(false); + java.awt.Rectangle var62 = var54.getVisibleRect(); + java.awt.Rectangle var63 = var48.getBounds(var62); + javax.swing.JToolTip var64 = var48.createToolTip(); + var48.firePropertyChange("", false, false); + var48.validate(); + SpaceWar.SpacePanel var70 = new SpaceWar.SpacePanel(); + float var71 = var70.getAlignmentX(); + var70.setVisible(false); + boolean var74 = var70.isDoubleBuffered(); + java.awt.dnd.DropTarget var75 = var70.getDropTarget(); + var70.show(false); + boolean var78 = var70.isPaintingForPrint(); + SpaceWar.SpacePanel var79 = new SpaceWar.SpacePanel(); + float var80 = var79.getAlignmentX(); + var79.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var85 = var79.getMouseListeners(); + int var86 = var79.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var87 = var79.getInputMethodRequests(); + var70.addKeyListener((java.awt.event.KeyListener)var79); + var79.repaint(); + java.awt.Point var90 = var79.location(); + java.awt.Component var91 = var48.getComponentAt(var90); + boolean var92 = var0.contains(var90); + java.awt.Dimension var93 = var0.getPreferredSize(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var23); + + // Regression assertion (captures the current behavior of the code) + assertNull(var25); + + // Regression assertion (captures the current behavior of the code) + assertNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var29 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var35 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var39); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var43 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var44); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var49 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var52 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var55 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var58 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var59); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var62); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var63); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var64); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var71 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var74 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var75); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var78 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var80 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var85); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var86 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var87); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var90); + + // Regression assertion (captures the current behavior of the code) + assertNull(var91); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var92 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var93); + + } + + public void test85() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test85"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + SpaceWar.SpacePanel var4 = new SpaceWar.SpacePanel(); + java.awt.Color var5 = var4.getBackground(); + var0.setForeground(var5); + SpaceWar.SpacePanel var7 = new SpaceWar.SpacePanel(); + float var8 = var7.getAlignmentX(); + var7.setVisible(false); + boolean var11 = var7.isDoubleBuffered(); + java.awt.dnd.DropTarget var12 = var7.getDropTarget(); + var7.show(false); + java.awt.Rectangle var15 = var7.getVisibleRect(); + var0.repaint(var15); + java.awt.FocusTraversalPolicy var17 = var0.getFocusTraversalPolicy(); + var0.resetKeyboardActions(); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + float var20 = var19.getAlignmentX(); + var19.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var25 = var19.getMouseListeners(); + int var26 = var19.getDebugGraphicsOptions(); + SpaceWar.SpacePanel var27 = new SpaceWar.SpacePanel(); + float var28 = var27.getAlignmentX(); + var27.setVisible(false); + boolean var31 = var27.isDoubleBuffered(); + java.awt.dnd.DropTarget var32 = var27.getDropTarget(); + var27.show(false); + java.awt.Rectangle var35 = var27.getVisibleRect(); + var19.paintImmediately(var35); + var0.setBounds(var35); + boolean var38 = var0.getVerifyInputWhenFocusTarget(); + var0.setFocusTraversalKeysEnabled(false); + var0.setAlignmentY(0.0f); + var0.enableInputMethods(true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var25); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var28 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var31 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var32); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var35); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var38 == true); + + } + + public void test86() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test86"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + java.awt.Dimension var4 = var0.getPreferredSize(); + boolean var5 = var0.getVerifyInputWhenFocusTarget(); + java.awt.event.MouseWheelListener[] var6 = var0.getMouseWheelListeners(); + java.awt.event.MouseWheelListener[] var7 = var0.getMouseWheelListeners(); + boolean var8 = var0.isShowing(); + java.awt.dnd.DropTarget var9 = var0.getDropTarget(); + java.awt.Point var10 = var0.getMousePosition(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var4); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var9); + + // Regression assertion (captures the current behavior of the code) + assertNull(var10); + + } + + public void test87() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test87"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + java.awt.Color var7 = var6.getBackground(); + var6.repaint(); + var6.setRequestFocusEnabled(false); + var6.reshape(100, 0, 100, 0); + var6.requestFocus(); + SpaceWar.SpacePanel var17 = new SpaceWar.SpacePanel(); + float var18 = var17.getAlignmentX(); + var17.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var23 = var17.getUI(); + java.awt.im.InputMethodRequests var24 = var17.getInputMethodRequests(); + SpaceWar.SpacePanel var25 = new SpaceWar.SpacePanel(); + float var26 = var25.getAlignmentX(); + var25.setVisible(false); + var25.nextFocus(); + var25.updateUI(); + var25.enableInputMethods(true); + var25.setSize((-1), 1); + SpaceWar.SpacePanel var36 = new SpaceWar.SpacePanel(); + var36.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var17.add((java.awt.Component)var25, (java.lang.Object)"SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + SpaceWar.SpacePanel var42 = new SpaceWar.SpacePanel(); + var42.setName(""); + java.awt.ComponentOrientation var45 = var42.getComponentOrientation(); + var17.applyComponentOrientation(var45); + var6.setComponentOrientation(var45); + var0.applyComponentOrientation(var45); + int var49 = var0.getHeight(); + boolean var52 = var0.inside(3, 2); + java.beans.PropertyChangeListener[] var53 = var0.getPropertyChangeListeners(); + SpaceWar.SpacePanel var54 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var55 = new SpaceWar.SpacePanel(); + java.awt.Color var56 = var55.getBackground(); + SpaceWar.SpacePanel var57 = new SpaceWar.SpacePanel(); + float var58 = var57.getAlignmentX(); + var57.setVisible(false); + var57.nextFocus(); + var57.updateUI(); + var57.enableInputMethods(true); + var54.add((java.awt.Component)var55, (java.lang.Object)true); + java.awt.Dimension var66 = var55.getPreferredSize(); + var55.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", (-1.0f), 100.0f); + SpaceWar.SpacePanel var71 = new SpaceWar.SpacePanel(); + float var72 = var71.getAlignmentX(); + var71.setVisible(false); + boolean var75 = var71.isDoubleBuffered(); + SpaceWar.SpacePanel var76 = new SpaceWar.SpacePanel(); + java.awt.Color var77 = var76.getBackground(); + var76.repaint(); + java.lang.Object var79 = var71.getClientProperty((java.lang.Object)var76); + var55.remove((java.awt.Component)var71); + SpaceWar.SpacePanel var81 = new SpaceWar.SpacePanel(); + float var82 = var81.getAlignmentX(); + var81.firePropertyChange("", (-1), 1); + java.awt.event.MouseMotionListener[] var87 = var81.getMouseMotionListeners(); + java.awt.Dimension var88 = var81.getMinimumSize(); + var55.setMaximumSize(var88); + var0.resize(var88); + java.awt.Toolkit var91 = var0.getToolkit(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var23); + + // Regression assertion (captures the current behavior of the code) + assertNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var45); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var49 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var52 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var53); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var56); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var58 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var66); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var72 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var75 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var77); + + // Regression assertion (captures the current behavior of the code) + assertNull(var79); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var82 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var87); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var88); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var91); + + } + + public void test88() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test88"); + + + SpaceWar.Player var0 = new SpaceWar.Player(); + boolean var1 = var0.isRecovering(); + var0.setRigth(false); + boolean var4 = var0.isDead(); + int var5 = var0.getR(); + var0.setLife(500); + boolean var8 = var0.isRecovering(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == 25); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + } + + public void test89() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test89"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + var0.list(); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + float var7 = var6.getAlignmentX(); + var6.setVisible(false); + boolean var10 = var6.isDoubleBuffered(); + java.awt.dnd.DropTarget var11 = var6.getDropTarget(); + var6.show(false); + java.awt.Rectangle var14 = var6.getVisibleRect(); + java.awt.Rectangle var15 = var0.getBounds(var14); + javax.swing.JToolTip var16 = var0.createToolTip(); + var0.firePropertyChange("", false, false); + var0.validate(); + var0.setFocusCycleRoot(true); + int var24 = var0.countComponents(); + java.awt.event.KeyListener[] var25 = var0.getKeyListeners(); + java.awt.im.InputContext var26 = var0.getInputContext(); + SpaceWar.SpacePanel var27 = new SpaceWar.SpacePanel(); + float var28 = var27.getAlignmentX(); + var27.setVisible(false); + boolean var31 = var27.isDoubleBuffered(); + java.awt.dnd.DropTarget var32 = var27.getDropTarget(); + var27.show(false); + boolean var35 = var27.isPaintingForPrint(); + boolean var36 = var27.getIgnoreRepaint(); + var27.repaint(100, 10, 100, 0); + SpaceWar.SpacePanel var42 = new SpaceWar.SpacePanel(); + float var43 = var42.getAlignmentX(); + var42.setVisible(false); + boolean var46 = var42.isDoubleBuffered(); + var42.list(); + SpaceWar.SpacePanel var48 = new SpaceWar.SpacePanel(); + float var49 = var48.getAlignmentX(); + var48.setVisible(false); + boolean var52 = var48.isDoubleBuffered(); + java.awt.dnd.DropTarget var53 = var48.getDropTarget(); + var48.show(false); + java.awt.Rectangle var56 = var48.getVisibleRect(); + java.awt.Rectangle var57 = var42.getBounds(var56); + javax.swing.JToolTip var58 = var42.createToolTip(); + var42.firePropertyChange("", false, false); + var42.validate(); + SpaceWar.SpacePanel var64 = new SpaceWar.SpacePanel(); + float var65 = var64.getAlignmentX(); + var64.setVisible(false); + boolean var68 = var64.isDoubleBuffered(); + java.awt.dnd.DropTarget var69 = var64.getDropTarget(); + var64.show(false); + boolean var72 = var64.isPaintingForPrint(); + SpaceWar.SpacePanel var73 = new SpaceWar.SpacePanel(); + float var74 = var73.getAlignmentX(); + var73.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var79 = var73.getMouseListeners(); + int var80 = var73.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var81 = var73.getInputMethodRequests(); + var64.addKeyListener((java.awt.event.KeyListener)var73); + var73.repaint(); + java.awt.Point var84 = var73.location(); + java.awt.Component var85 = var42.getComponentAt(var84); + var27.setLocation(var84); + java.awt.peer.ComponentPeer var87 = var27.getPeer(); + java.awt.Component var88 = var0.add((java.awt.Component)var27); + java.awt.Font var89 = var27.getFont(); + java.awt.event.FocusListener[] var90 = var27.getFocusListeners(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var24 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var25); + + // Regression assertion (captures the current behavior of the code) + assertNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var28 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var31 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var32); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var35 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var36 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var43 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var46 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var49 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var52 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var53); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var56); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var57); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var58); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var65 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var68 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var69); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var72 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var74 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var79); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var80 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var81); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var84); + + // Regression assertion (captures the current behavior of the code) + assertNull(var85); + + // Regression assertion (captures the current behavior of the code) + assertNull(var87); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var88); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var89); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var90); + + } + + public void test90() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test90"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + var0.setRequestFocusEnabled(false); + var0.reshape(100, 0, 100, 0); + var0.requestFocus(); + java.awt.Rectangle var11 = var0.getVisibleRect(); + java.awt.Rectangle var12 = var0.getBounds(); + java.awt.im.InputMethodRequests var13 = var0.getInputMethodRequests(); + boolean var14 = var0.requestFocusInWindow(); + java.awt.Rectangle var15 = var0.bounds(); + var0.setAutoscrolls(true); + SpaceWar.SpacePanel var18 = new SpaceWar.SpacePanel(); + float var19 = var18.getAlignmentX(); + var18.setVisible(false); + var18.setEnabled(false); + var18.invalidate(); + SpaceWar.SpacePanel var26 = new SpaceWar.SpacePanel(); + float var27 = var26.getAlignmentX(); + var26.setVisible(false); + var26.nextFocus(); + var26.updateUI(); + var26.enableInputMethods(true); + SpaceWar.SpacePanel var34 = new SpaceWar.SpacePanel(); + float var35 = var34.getAlignmentX(); + boolean var36 = var34.hasFocus(); + java.awt.Insets var37 = var34.getInsets(); + java.awt.Insets var38 = var26.getInsets(var37); + boolean var39 = var26.isManagingFocus(); + java.awt.Image var42 = var26.createImage(1, 10); + SpaceWar.SpacePanel var43 = new SpaceWar.SpacePanel(); + float var44 = var43.getAlignmentX(); + var43.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var49 = new SpaceWar.SpacePanel(); + float var50 = var49.getAlignmentX(); + var49.setVisible(false); + java.awt.Dimension var53 = var49.getPreferredSize(); + var43.setMaximumSize(var53); + boolean var55 = var43.getVerifyInputWhenFocusTarget(); + int var56 = var43.getX(); + SpaceWar.SpacePanel var57 = new SpaceWar.SpacePanel(); + float var58 = var57.getAlignmentX(); + var57.setVisible(false); + var57.setEnabled(false); + var26.add((java.awt.Component)var43, (java.lang.Object)false); + boolean var64 = var26.isForegroundSet(); + java.awt.Component var65 = var18.add("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", (java.awt.Component)var26); + var26.revalidate(); + SpaceWar.SpacePanel var67 = new SpaceWar.SpacePanel(); + var67.setName(""); + java.awt.Toolkit var70 = var67.getToolkit(); + var67.setEnabled(false); + var67.removeNotify(); + boolean var74 = var67.isDisplayable(); + SpaceWar.SpacePanel var75 = new SpaceWar.SpacePanel(); + java.awt.Color var76 = var75.getBackground(); + var75.repaint(); + var75.setRequestFocusEnabled(false); + var75.reshape(100, 0, 100, 0); + var75.requestFocus(); + java.awt.Rectangle var86 = var75.getVisibleRect(); + java.awt.Rectangle var87 = var75.getBounds(); + java.awt.im.InputMethodRequests var88 = var75.getInputMethodRequests(); + boolean var89 = var75.requestFocusInWindow(); + java.awt.Point var91 = var75.getMousePosition(false); + var75.setDebugGraphicsOptions(1); + java.awt.Graphics var94 = var75.getGraphics(); + var67.paintAll(var94); + var26.print(var94); + var0.paint(var94); + java.awt.Dimension var98 = var0.getMinimumSize(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var35 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var36 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var37); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var38); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var39 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var42); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var44 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var50 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var53); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var55 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var56 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var58 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var64 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var65); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var70); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var74 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var76); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var86); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var87); + + // Regression assertion (captures the current behavior of the code) + assertNull(var88); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var89 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var91); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var94); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var98); + + } + + public void test91() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test91"); + + + SpaceWar.Enemy var2 = new SpaceWar.Enemy(0, 24); + double var3 = var2.getY(); + var2.update(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == 0.0d); + + } + + public void test92() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test92"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + var0.setRequestFocusEnabled(false); + var0.setIgnoreRepaint(false); + java.lang.String var7 = var0.toString(); + java.awt.Color var8 = var0.getBackground(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.setVisible(false); + java.awt.Dimension var13 = var9.getPreferredSize(); + java.awt.Toolkit var14 = var9.getToolkit(); + java.awt.Toolkit var15 = var9.getToolkit(); + SpaceWar.Player var16 = new SpaceWar.Player(); + var16.increasePower(25); + int var19 = var16.getScore(); + var16.setRigth(true); + var16.loseLife(); + var0.putClientProperty((java.lang.Object)var9, (java.lang.Object)var16); + int var24 = var16.getPowerLevel(); + boolean var25 = var16.isDead(); + int var26 = var16.getPower(); + var16.setLeft(false); + var16.setLife(1); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var7 + "' != '" + "SpaceWar.SpacePanel[,0,0,0var7,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"+ "'", var7.equals("SpaceWar.SpacePanel[,0,0,0var7,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]")); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var24 == 1); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == 24); + + } + + public void test93() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test93"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.setInheritsPopupMenu(false); + var0.setFocusTraversalPolicyProvider(true); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + boolean var12 = var8.isDoubleBuffered(); + var8.list(); + SpaceWar.SpacePanel var14 = new SpaceWar.SpacePanel(); + float var15 = var14.getAlignmentX(); + var14.setVisible(false); + boolean var18 = var14.isDoubleBuffered(); + java.awt.dnd.DropTarget var19 = var14.getDropTarget(); + var14.show(false); + java.awt.Rectangle var22 = var14.getVisibleRect(); + java.awt.Rectangle var23 = var8.getBounds(var22); + javax.swing.JToolTip var24 = var8.createToolTip(); + var0.removeKeyListener((java.awt.event.KeyListener)var8); + java.awt.image.ColorModel var26 = var8.getColorModel(); + var8.transferFocusUpCycle(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var23); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var26); + + } + + public void test94() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test94"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + java.awt.Dimension var4 = var0.getPreferredSize(); + java.awt.Toolkit var5 = var0.getToolkit(); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + var6.setName(""); + int var9 = var6.getX(); + SpaceWar.SpacePanel var10 = new SpaceWar.SpacePanel(); + float var11 = var10.getAlignmentX(); + var10.setVisible(false); + var10.nextFocus(); + SpaceWar.SpacePanel var15 = new SpaceWar.SpacePanel(); + float var16 = var15.getAlignmentX(); + var15.setVisible(false); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + java.awt.Color var20 = var19.getBackground(); + var15.setForeground(var20); + var10.setBackground(var20); + var6.setBackground(var20); + var0.setForeground(var20); + SpaceWar.SpacePanel var25 = new SpaceWar.SpacePanel(); + float var26 = var25.getAlignmentX(); + var25.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var31 = new SpaceWar.SpacePanel(); + float var32 = var31.getAlignmentX(); + var31.setVisible(false); + java.awt.Dimension var35 = var31.getPreferredSize(); + var25.setMaximumSize(var35); + boolean var37 = var25.getVerifyInputWhenFocusTarget(); + javax.accessibility.AccessibleContext var38 = var25.getAccessibleContext(); + boolean var39 = var25.isDoubleBuffered(); + java.awt.Rectangle var40 = var25.getVisibleRect(); + var0.scrollRectToVisible(var40); + SpaceWar.SpacePanel var42 = new SpaceWar.SpacePanel(); + float var43 = var42.getAlignmentX(); + var42.setVisible(false); + java.awt.Dimension var46 = var42.getPreferredSize(); + java.awt.Toolkit var47 = var42.getToolkit(); + SpaceWar.SpacePanel var48 = new SpaceWar.SpacePanel(); + var48.setName(""); + int var51 = var48.getX(); + SpaceWar.SpacePanel var52 = new SpaceWar.SpacePanel(); + float var53 = var52.getAlignmentX(); + var52.setVisible(false); + var52.nextFocus(); + SpaceWar.SpacePanel var57 = new SpaceWar.SpacePanel(); + float var58 = var57.getAlignmentX(); + var57.setVisible(false); + SpaceWar.SpacePanel var61 = new SpaceWar.SpacePanel(); + java.awt.Color var62 = var61.getBackground(); + var57.setForeground(var62); + var52.setBackground(var62); + var48.setBackground(var62); + var42.setForeground(var62); + SpaceWar.SpacePanel var67 = new SpaceWar.SpacePanel(); + float var68 = var67.getAlignmentX(); + var67.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var73 = new SpaceWar.SpacePanel(); + float var74 = var73.getAlignmentX(); + var73.setVisible(false); + java.awt.Dimension var77 = var73.getPreferredSize(); + var67.setMaximumSize(var77); + boolean var79 = var67.getVerifyInputWhenFocusTarget(); + javax.accessibility.AccessibleContext var80 = var67.getAccessibleContext(); + boolean var81 = var67.isDoubleBuffered(); + java.awt.Rectangle var82 = var67.getVisibleRect(); + var42.scrollRectToVisible(var82); + var0.removeKeyListener((java.awt.event.KeyListener)var42); + var0.setVerifyInputWhenFocusTarget(false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var4); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var32 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var35); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var38); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var39 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var40); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var43 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var46); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var47); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var51 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var53 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var58 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var62); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var68 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var74 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var77); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var79 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var80); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var81 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var82); + + } + + public void test95() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test95"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var1 = new SpaceWar.SpacePanel(); + java.awt.Color var2 = var1.getBackground(); + SpaceWar.SpacePanel var3 = new SpaceWar.SpacePanel(); + float var4 = var3.getAlignmentX(); + var3.setVisible(false); + var3.nextFocus(); + var3.updateUI(); + var3.enableInputMethods(true); + var0.add((java.awt.Component)var1, (java.lang.Object)true); + java.awt.Dimension var12 = var1.getPreferredSize(); + var1.move(100, 10); + java.awt.Graphics var16 = var1.getGraphics(); + boolean var17 = var1.getInheritsPopupMenu(); + javax.swing.event.AncestorListener[] var18 = var1.getAncestorListeners(); + var1.doLayout(); + var1.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=1.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", '#', 'a'); + boolean var24 = var1.isCursorSet(); + java.awt.LayoutManager var25 = var1.getLayout(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var2); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var24 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var25); + + } + + public void test96() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test96"); + + + SpaceWar.Bullet var3 = new SpaceWar.Bullet(594.7973940347722d, 3, 100); + double var4 = var3.getY(); + double var5 = var3.getR(); + boolean var6 = var3.update(); + boolean var7 = var3.update(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 100.0d); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == 5.0d); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == true); + + } + + public void test97() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test97"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + float var7 = var6.getAlignmentX(); + var6.setVisible(false); + java.awt.Dimension var10 = var6.getPreferredSize(); + var0.setMaximumSize(var10); + boolean var12 = var0.getVerifyInputWhenFocusTarget(); + java.awt.Toolkit var13 = var0.getToolkit(); + java.lang.String var14 = var0.getUIClassID(); + java.awt.Dimension var15 = var0.getMinimumSize(); + javax.swing.InputVerifier var16 = var0.getInputVerifier(); + java.awt.Component.BaselineResizeBehavior var17 = var0.getBaselineResizeBehavior(); + int var18 = var0.getDebugGraphicsOptions(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var14 + "' != '" + "PanelUI"+ "'", var14.equals("PanelUI")); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == 0); + + } + + public void test98() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test98"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var6 = var0.getUI(); + java.awt.im.InputMethodRequests var7 = var0.getInputMethodRequests(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + var8.nextFocus(); + var8.updateUI(); + var8.enableInputMethods(true); + var8.setSize((-1), 1); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + var19.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var0.add((java.awt.Component)var8, (java.lang.Object)"SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + boolean var25 = var0.isCursorSet(); + var0.enableInputMethods(true); + java.awt.FocusTraversalPolicy var28 = var0.getFocusTraversalPolicy(); + java.awt.image.VolatileImage var31 = var0.createVolatileImage(1, 25); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var28); + + // Regression assertion (captures the current behavior of the code) + assertNull(var31); + + } + + public void test99() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test99"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.reshape((-1), 1, (-1), 10); + var0.disable(); + java.awt.Component var13 = var0.findComponentAt(0, (-1)); + SpaceWar.SpacePanel var14 = new SpaceWar.SpacePanel(); + var14.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + javax.swing.plaf.PanelUI var19 = var14.getUI(); + SpaceWar.SpacePanel var20 = new SpaceWar.SpacePanel(); + float var21 = var20.getAlignmentX(); + var20.setVisible(false); + var20.nextFocus(); + var20.repaint(1L); + SpaceWar.SpacePanel var27 = new SpaceWar.SpacePanel(); + float var28 = var27.getAlignmentX(); + var27.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var33 = new SpaceWar.SpacePanel(); + float var34 = var33.getAlignmentX(); + var33.setVisible(false); + java.awt.Dimension var37 = var33.getPreferredSize(); + var27.setMaximumSize(var37); + var20.setPreferredSize(var37); + var14.setMaximumSize(var37); + var0.setSize(var37); + java.awt.Container var42 = var0.getParent(); + java.awt.Dimension var43 = var0.getPreferredSize(); + java.lang.String var44 = var0.getUIClassID(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var28 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var34 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var37); + + // Regression assertion (captures the current behavior of the code) + assertNull(var42); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var43); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var44 + "' != '" + "PanelUI"+ "'", var44.equals("PanelUI")); + + } + + public void test100() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test100"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.updateUI(); + var0.enableInputMethods(true); + java.awt.Point var8 = var0.location(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.setVisible(false); + var9.nextFocus(); + java.awt.Component var14 = var0.add((java.awt.Component)var9); + boolean var15 = var0.isRequestFocusEnabled(); + boolean var16 = var0.isFocusable(); + var0.move(0, 400); + SpaceWar.SpacePanel var20 = new SpaceWar.SpacePanel(); + float var21 = var20.getAlignmentX(); + var20.setVisible(false); + var20.setEnabled(false); + java.awt.Image var28 = var20.createImage(10, 100); + SpaceWar.SpacePanel var29 = new SpaceWar.SpacePanel(); + java.awt.Color var30 = var29.getBackground(); + var20.setForeground(var30); + var20.setFocusTraversalPolicyProvider(true); + var0.setNextFocusableComponent((java.awt.Component)var20); + boolean var35 = var20.isFocusTraversalPolicyProvider(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNull(var28); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var30); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var35 == true); + + } + + public void test101() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test101"); + + + SpaceWar.Text var4 = new SpaceWar.Text(400.0d, 432.7832140219743d, (-1L), "SpaceWar.SpacePanel[,10,10,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + + } + + public void test102() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test102"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.setEnabled(false); + var0.invalidate(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + var8.nextFocus(); + var8.updateUI(); + var8.enableInputMethods(true); + SpaceWar.SpacePanel var16 = new SpaceWar.SpacePanel(); + float var17 = var16.getAlignmentX(); + boolean var18 = var16.hasFocus(); + java.awt.Insets var19 = var16.getInsets(); + java.awt.Insets var20 = var8.getInsets(var19); + boolean var21 = var8.isManagingFocus(); + java.awt.Image var24 = var8.createImage(1, 10); + SpaceWar.SpacePanel var25 = new SpaceWar.SpacePanel(); + float var26 = var25.getAlignmentX(); + var25.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var31 = new SpaceWar.SpacePanel(); + float var32 = var31.getAlignmentX(); + var31.setVisible(false); + java.awt.Dimension var35 = var31.getPreferredSize(); + var25.setMaximumSize(var35); + boolean var37 = var25.getVerifyInputWhenFocusTarget(); + int var38 = var25.getX(); + SpaceWar.SpacePanel var39 = new SpaceWar.SpacePanel(); + float var40 = var39.getAlignmentX(); + var39.setVisible(false); + var39.setEnabled(false); + var8.add((java.awt.Component)var25, (java.lang.Object)false); + boolean var46 = var8.isForegroundSet(); + java.awt.Component var47 = var0.add("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", (java.awt.Component)var8); + var8.revalidate(); + float var49 = var8.getAlignmentY(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var32 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var35); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var38 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var40 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var46 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var47); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var49 == 0.5f); + + } + + public void test103() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test103"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var6 = var0.getMouseListeners(); + int var7 = var0.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var8 = var0.getInputMethodRequests(); + var0.removeNotify(); + var0.enable(); + SpaceWar.SpacePanel var11 = new SpaceWar.SpacePanel(); + java.awt.Color var12 = var11.getBackground(); + boolean var15 = var11.inside(0, (-1)); + var11.transferFocusUpCycle(); + java.lang.String var17 = var11.getName(); + boolean var18 = var0.isFocusCycleRoot((java.awt.Container)var11); + var0.requestFocus(); + SpaceWar.SpacePanel var20 = new SpaceWar.SpacePanel(); + float var21 = var20.getAlignmentX(); + var20.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var26 = new SpaceWar.SpacePanel(); + float var27 = var26.getAlignmentX(); + var26.setVisible(false); + java.awt.Dimension var30 = var26.getPreferredSize(); + var20.setMaximumSize(var30); + boolean var32 = var20.getVerifyInputWhenFocusTarget(); + java.awt.Toolkit var33 = var20.getToolkit(); + java.lang.String var34 = var20.getUIClassID(); + java.awt.Dimension var35 = var20.getMinimumSize(); + SpaceWar.SpacePanel var36 = new SpaceWar.SpacePanel(); + float var37 = var36.getAlignmentX(); + var36.setVisible(false); + var36.setInheritsPopupMenu(false); + var36.setFocusTraversalPolicyProvider(true); + SpaceWar.SpacePanel var44 = new SpaceWar.SpacePanel(); + float var45 = var44.getAlignmentX(); + var44.setVisible(false); + boolean var48 = var44.isDoubleBuffered(); + var44.list(); + SpaceWar.SpacePanel var50 = new SpaceWar.SpacePanel(); + float var51 = var50.getAlignmentX(); + var50.setVisible(false); + boolean var54 = var50.isDoubleBuffered(); + java.awt.dnd.DropTarget var55 = var50.getDropTarget(); + var50.show(false); + java.awt.Rectangle var58 = var50.getVisibleRect(); + java.awt.Rectangle var59 = var44.getBounds(var58); + javax.swing.JToolTip var60 = var44.createToolTip(); + var36.removeKeyListener((java.awt.event.KeyListener)var44); + javax.swing.TransferHandler var62 = var36.getTransferHandler(); + boolean var63 = var36.requestFocusInWindow(); + var0.add((java.awt.Component)var20, (java.lang.Object)var36); + boolean var65 = var36.isPaintingForPrint(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var30); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var32 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var33); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var34 + "' != '" + "PanelUI"+ "'", var34.equals("PanelUI")); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var35); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var45 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var48 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var51 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var54 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var55); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var58); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var59); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var60); + + // Regression assertion (captures the current behavior of the code) + assertNull(var62); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var63 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var65 == false); + + } + + public void test104() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test104"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.setEnabled(false); + var0.invalidate(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + var8.nextFocus(); + var8.updateUI(); + var8.enableInputMethods(true); + SpaceWar.SpacePanel var16 = new SpaceWar.SpacePanel(); + float var17 = var16.getAlignmentX(); + boolean var18 = var16.hasFocus(); + java.awt.Insets var19 = var16.getInsets(); + java.awt.Insets var20 = var8.getInsets(var19); + boolean var21 = var8.isManagingFocus(); + java.awt.Image var24 = var8.createImage(1, 10); + SpaceWar.SpacePanel var25 = new SpaceWar.SpacePanel(); + float var26 = var25.getAlignmentX(); + var25.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var31 = new SpaceWar.SpacePanel(); + float var32 = var31.getAlignmentX(); + var31.setVisible(false); + java.awt.Dimension var35 = var31.getPreferredSize(); + var25.setMaximumSize(var35); + boolean var37 = var25.getVerifyInputWhenFocusTarget(); + int var38 = var25.getX(); + SpaceWar.SpacePanel var39 = new SpaceWar.SpacePanel(); + float var40 = var39.getAlignmentX(); + var39.setVisible(false); + var39.setEnabled(false); + var8.add((java.awt.Component)var25, (java.lang.Object)false); + boolean var46 = var8.isForegroundSet(); + java.awt.Component var47 = var0.add("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", (java.awt.Component)var8); + var8.transferFocusDownCycle(); + var8.move(1, 10); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var32 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var35); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var38 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var40 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var46 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var47); + + } + + public void test105() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test105"); + + + SpaceWar.Enemy var2 = new SpaceWar.Enemy(0, 10); + int var3 = var2.getRank(); + int var4 = var2.getR(); + int var5 = var2.getType(); + int var6 = var2.getRank(); + var2.update(); + int var8 = var2.getR(); + double var9 = var2.getY(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == 10); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == 10); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.0d); + + } + + public void test106() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test106"); + + + SpaceWar.Enemy var2 = new SpaceWar.Enemy(1, 1); + var2.update(); + + } + + public void test107() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test107"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + SpaceWar.SpacePanel var4 = new SpaceWar.SpacePanel(); + java.awt.Color var5 = var4.getBackground(); + var0.setForeground(var5); + SpaceWar.SpacePanel var7 = new SpaceWar.SpacePanel(); + float var8 = var7.getAlignmentX(); + var7.setVisible(false); + boolean var11 = var7.isDoubleBuffered(); + java.awt.dnd.DropTarget var12 = var7.getDropTarget(); + var7.show(false); + java.awt.Rectangle var15 = var7.getVisibleRect(); + var0.repaint(var15); + SpaceWar.SpacePanel var17 = new SpaceWar.SpacePanel(); + float var18 = var17.getAlignmentX(); + var17.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var23 = var17.getMouseListeners(); + java.awt.Dimension var24 = var17.getPreferredSize(); + java.util.Locale var25 = var17.getLocale(); + var0.setLocale(var25); + java.util.Locale var27 = var0.getLocale(); + SpaceWar.SpacePanel var28 = new SpaceWar.SpacePanel(); + float var29 = var28.getAlignmentX(); + var28.setVisible(false); + boolean var32 = var28.isDoubleBuffered(); + java.awt.dnd.DropTarget var33 = var28.getDropTarget(); + boolean var34 = var28.isFocusCycleRoot(); + var28.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", 100, 0); + SpaceWar.SpacePanel var39 = new SpaceWar.SpacePanel(); + float var40 = var39.getAlignmentX(); + var39.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var45 = var39.getUI(); + var28.add((java.awt.Component)var39, (java.lang.Object)(short)0); + java.awt.event.InputMethodListener[] var48 = var39.getInputMethodListeners(); + java.awt.Toolkit var49 = var39.getToolkit(); + boolean var50 = var39.isDoubleBuffered(); + boolean var51 = var0.isAncestorOf((java.awt.Component)var39); + java.awt.Dimension var52 = var0.size(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var23); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var25); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var27); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var29 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var32 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var33); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var34 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var40 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var45); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var48); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var49); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var50 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var51 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var52); + + } + + public void test108() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test108"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + var0.list(); + float var6 = var0.getAlignmentY(); + boolean var7 = var0.isOpaque(); + var0.resetKeyboardActions(); + boolean var9 = var0.isFocusTraversalPolicyProvider(); + java.awt.im.InputContext var10 = var0.getInputContext(); + var0.setFocusTraversalKeysEnabled(true); + var0.removeAll(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var10); + + } + + public void test109() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test109"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var6 = var0.getUI(); + java.awt.im.InputMethodRequests var7 = var0.getInputMethodRequests(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + var8.nextFocus(); + var8.updateUI(); + var8.enableInputMethods(true); + var8.setSize((-1), 1); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + var19.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var0.add((java.awt.Component)var8, (java.lang.Object)"SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + SpaceWar.SpacePanel var25 = new SpaceWar.SpacePanel(); + var25.setName(""); + java.awt.ComponentOrientation var28 = var25.getComponentOrientation(); + var0.applyComponentOrientation(var28); + boolean var30 = var0.getVerifyInputWhenFocusTarget(); + boolean var31 = var0.getFocusTraversalKeysEnabled(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var28); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var30 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var31 == true); + + } + + public void test110() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test110"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.setDoubleBuffered(true); + var0.repaint(0, 500, 2, 24); + java.awt.Cursor var11 = var0.getCursor(); + var0.setOpaque(false); + java.awt.Font var14 = var0.getFont(); + SpaceWar.SpacePanel var15 = new SpaceWar.SpacePanel(); + float var16 = var15.getAlignmentX(); + var15.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var21 = var15.getMouseListeners(); + int var22 = var15.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var23 = var15.getInputMethodRequests(); + var15.removeNotify(); + var15.enable(); + SpaceWar.SpacePanel var26 = new SpaceWar.SpacePanel(); + java.awt.Color var27 = var26.getBackground(); + boolean var30 = var26.inside(0, (-1)); + var26.transferFocusUpCycle(); + java.lang.String var32 = var26.getName(); + boolean var33 = var15.isFocusCycleRoot((java.awt.Container)var26); + boolean var34 = var15.isOptimizedDrawingEnabled(); + var0.addKeyListener((java.awt.event.KeyListener)var15); + SpaceWar.SpacePanel var36 = new SpaceWar.SpacePanel(); + float var37 = var36.getAlignmentX(); + var36.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var42 = var36.getUI(); + java.awt.im.InputMethodRequests var43 = var36.getInputMethodRequests(); + SpaceWar.SpacePanel var44 = new SpaceWar.SpacePanel(); + float var45 = var44.getAlignmentX(); + var44.setVisible(false); + var44.nextFocus(); + var44.updateUI(); + var44.enableInputMethods(true); + var44.setSize((-1), 1); + SpaceWar.SpacePanel var55 = new SpaceWar.SpacePanel(); + var55.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var36.add((java.awt.Component)var44, (java.lang.Object)"SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + SpaceWar.SpacePanel var61 = new SpaceWar.SpacePanel(); + float var62 = var61.getAlignmentX(); + var61.setVisible(false); + java.awt.Dimension var65 = var61.getPreferredSize(); + java.awt.Toolkit var66 = var61.getToolkit(); + java.awt.Toolkit var67 = var61.getToolkit(); + java.awt.Component var68 = var44.add((java.awt.Component)var61); + var44.setDebugGraphicsOptions(0); + var44.setVerifyInputWhenFocusTarget(false); + SpaceWar.SpacePanel var73 = new SpaceWar.SpacePanel(); + float var74 = var73.getAlignmentX(); + var73.setVisible(false); + boolean var77 = var73.isDoubleBuffered(); + var73.list(); + float var79 = var73.getAlignmentY(); + java.awt.Insets var80 = var73.getInsets(); + SpaceWar.SpacePanel var81 = new SpaceWar.SpacePanel(); + float var82 = var81.getAlignmentX(); + var81.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var87 = new SpaceWar.SpacePanel(); + float var88 = var87.getAlignmentX(); + var87.setVisible(false); + java.awt.Dimension var91 = var87.getPreferredSize(); + var81.setMaximumSize(var91); + java.awt.Dimension var93 = var73.getSize(var91); + var44.setPreferredSize(var93); + java.awt.event.MouseWheelListener[] var95 = var44.getMouseWheelListeners(); + var0.removeKeyListener((java.awt.event.KeyListener)var44); + var44.removeNotify(); + java.awt.Dimension var98 = var44.getPreferredSize(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var21); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var22 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var23); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var27); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var30 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var32); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var33 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var34 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var42); + + // Regression assertion (captures the current behavior of the code) + assertNull(var43); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var45 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var62 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var65); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var66); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var67); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var68); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var74 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var77 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var79 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var80); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var82 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var88 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var91); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var93); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var95); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var98); + + } + + public void test111() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test111"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + var0.show(false); + boolean var8 = var0.isPaintingForPrint(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var15 = var9.getMouseListeners(); + int var16 = var9.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var17 = var9.getInputMethodRequests(); + var0.addKeyListener((java.awt.event.KeyListener)var9); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + float var20 = var19.getAlignmentX(); + var19.setVisible(false); + boolean var23 = var19.isDoubleBuffered(); + var19.list(); + float var25 = var19.getAlignmentY(); + boolean var26 = var9.isFocusCycleRoot((java.awt.Container)var19); + java.awt.Component[] var27 = var9.getComponents(); + boolean var28 = var9.isFocusCycleRoot(); + SpaceWar.SpacePanel var29 = new SpaceWar.SpacePanel(); + float var30 = var29.getAlignmentX(); + var29.setVisible(false); + boolean var33 = var29.isDoubleBuffered(); + SpaceWar.SpacePanel var34 = new SpaceWar.SpacePanel(); + float var35 = var34.getAlignmentX(); + var34.setVisible(false); + var34.nextFocus(); + var34.reshape((-1), 1, (-1), 10); + var34.disable(); + boolean var45 = var34.isFocusable(); + int var46 = var34.getHeight(); + var29.setNextFocusableComponent((java.awt.Component)var34); + SpaceWar.SpacePanel var48 = new SpaceWar.SpacePanel(); + float var49 = var48.getAlignmentX(); + var48.setVisible(false); + var48.nextFocus(); + SpaceWar.SpacePanel var53 = new SpaceWar.SpacePanel(); + float var54 = var53.getAlignmentX(); + var53.setVisible(false); + SpaceWar.SpacePanel var57 = new SpaceWar.SpacePanel(); + java.awt.Color var58 = var57.getBackground(); + var53.setForeground(var58); + var48.setBackground(var58); + java.awt.Component var61 = var48.getNextFocusableComponent(); + float var62 = var48.getAlignmentY(); + java.awt.event.MouseListener[] var63 = var48.getMouseListeners(); + java.awt.Point var64 = var48.location(); + java.awt.Point var65 = var29.getLocation(var64); + java.awt.Point var66 = var9.getLocation(var65); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var27); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var28 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var30 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var33 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var35 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var45 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var46 == 10); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var49 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var54 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var58); + + // Regression assertion (captures the current behavior of the code) + assertNull(var61); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var62 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var63); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var64); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var65); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var66); + + } + + public void test112() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test112"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var6 = var0.getMouseListeners(); + java.awt.Dimension var7 = var0.getPreferredSize(); + int var10 = var0.getBaseline(1, 1); + var0.show(false); + javax.swing.JRootPane var13 = var0.getRootPane(); + SpaceWar.SpacePanel var14 = new SpaceWar.SpacePanel(); + float var15 = var14.getAlignmentX(); + var14.setVisible(false); + java.awt.Dimension var18 = var14.getPreferredSize(); + java.awt.Toolkit var19 = var14.getToolkit(); + boolean var20 = var14.isFocusable(); + javax.swing.KeyStroke[] var21 = var14.getRegisteredKeyStrokes(); + SpaceWar.SpacePanel var22 = new SpaceWar.SpacePanel(); + float var23 = var22.getAlignmentX(); + SpaceWar.SpacePanel var24 = new SpaceWar.SpacePanel(); + float var25 = var24.getAlignmentX(); + var24.setVisible(false); + java.awt.Dimension var28 = var24.getPreferredSize(); + boolean var29 = var24.getVerifyInputWhenFocusTarget(); + java.awt.Component var32 = var24.findComponentAt(10, 1); + var22.addKeyListener((java.awt.event.KeyListener)var24); + var24.repaint(100, (-1), (-1), 1); + boolean var39 = var14.isAncestorOf((java.awt.Component)var24); + java.awt.Point var40 = var14.location(); + boolean var41 = var0.contains(var40); + var0.firePropertyChange("hi!", 0.5f, 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == (-1)); + + // Regression assertion (captures the current behavior of the code) + assertNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var21); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var28); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var29 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var32); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var39 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var40); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var41 == false); + + } + + public void test113() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test113"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + var0.setName(""); + java.awt.Toolkit var3 = var0.getToolkit(); + java.awt.Point var5 = var0.getMousePosition(false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + } + + public void test114() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test114"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + java.awt.im.InputMethodRequests var3 = var0.getInputMethodRequests(); + int var4 = var0.countComponents(); + java.awt.event.MouseMotionListener[] var5 = var0.getMouseMotionListeners(); + java.awt.Dimension var6 = var0.size(); + boolean var7 = var0.isMinimumSizeSet(); + boolean var8 = var0.getIgnoreRepaint(); + var0.repaint(); + var0.hide(); + java.awt.event.MouseWheelListener[] var11 = var0.getMouseWheelListeners(); + java.awt.GraphicsConfiguration var12 = var0.getGraphicsConfiguration(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNull(var12); + + } + + public void test115() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test115"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + SpaceWar.SpacePanel var4 = new SpaceWar.SpacePanel(); + java.awt.Color var5 = var4.getBackground(); + var0.setForeground(var5); + SpaceWar.SpacePanel var7 = new SpaceWar.SpacePanel(); + float var8 = var7.getAlignmentX(); + var7.setVisible(false); + boolean var11 = var7.isDoubleBuffered(); + java.awt.dnd.DropTarget var12 = var7.getDropTarget(); + var7.show(false); + java.awt.Rectangle var15 = var7.getVisibleRect(); + var0.repaint(var15); + java.awt.FocusTraversalPolicy var17 = var0.getFocusTraversalPolicy(); + var0.resetKeyboardActions(); + var0.setInheritsPopupMenu(true); + SpaceWar.SpacePanel var21 = new SpaceWar.SpacePanel(); + float var22 = var21.getAlignmentX(); + var21.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var27 = new SpaceWar.SpacePanel(); + float var28 = var27.getAlignmentX(); + var27.setVisible(false); + java.awt.Dimension var31 = var27.getPreferredSize(); + var21.setMaximumSize(var31); + boolean var33 = var21.getVerifyInputWhenFocusTarget(); + boolean var34 = var21.isFontSet(); + SpaceWar.SpacePanel var35 = new SpaceWar.SpacePanel(); + float var36 = var35.getAlignmentX(); + var35.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var41 = var35.getUI(); + java.awt.im.InputMethodRequests var42 = var35.getInputMethodRequests(); + SpaceWar.SpacePanel var43 = new SpaceWar.SpacePanel(); + float var44 = var43.getAlignmentX(); + var43.setVisible(false); + var43.nextFocus(); + var43.updateUI(); + var43.enableInputMethods(true); + var43.setSize((-1), 1); + SpaceWar.SpacePanel var54 = new SpaceWar.SpacePanel(); + var54.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var35.add((java.awt.Component)var43, (java.lang.Object)"SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + java.awt.ComponentOrientation var60 = var43.getComponentOrientation(); + java.beans.VetoableChangeListener[] var61 = var43.getVetoableChangeListeners(); + int var62 = var43.getHeight(); + var43.enable(true); + boolean var65 = var43.isFocusTraversalPolicyProvider(); + SpaceWar.SpacePanel var66 = new SpaceWar.SpacePanel(); + java.awt.Color var67 = var66.getBackground(); + var66.repaint(); + var66.setRequestFocusEnabled(false); + var66.reshape(100, 0, 100, 0); + var66.requestFocus(); + var66.firePropertyChange("hi!", '4', ' '); + java.awt.Point var81 = var66.getLocation(); + var43.setLocation(var81); + boolean var83 = var43.isManagingFocus(); + int var84 = var21.getComponentZOrder((java.awt.Component)var43); + SpaceWar.SpacePanel var85 = new SpaceWar.SpacePanel(); + float var86 = var85.getAlignmentX(); + var85.firePropertyChange("", (-1), 1); + boolean var91 = var85.isFocusOwner(); + java.awt.Dimension var92 = var85.getMinimumSize(); + var43.setPreferredSize(var92); + var0.setMinimumSize(var92); + boolean var95 = var0.requestDefaultFocus(); + java.awt.FocusTraversalPolicy var96 = var0.getFocusTraversalPolicy(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var22 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var28 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var31); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var33 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var34 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var36 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var41); + + // Regression assertion (captures the current behavior of the code) + assertNull(var42); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var44 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var60); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var61); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var62 == 1); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var65 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var67); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var81); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var83 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var84 == (-1)); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var86 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var91 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var92); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var95 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var96); + + } + + public void test116() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test116"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + SpaceWar.SpacePanel var4 = new SpaceWar.SpacePanel(); + java.awt.Color var5 = var4.getBackground(); + var0.setForeground(var5); + SpaceWar.SpacePanel var7 = new SpaceWar.SpacePanel(); + float var8 = var7.getAlignmentX(); + var7.setVisible(false); + boolean var11 = var7.isDoubleBuffered(); + java.awt.dnd.DropTarget var12 = var7.getDropTarget(); + var7.show(false); + java.awt.Rectangle var15 = var7.getVisibleRect(); + var0.repaint(var15); + java.awt.FocusTraversalPolicy var17 = var0.getFocusTraversalPolicy(); + java.awt.im.InputMethodRequests var18 = var0.getInputMethodRequests(); + var0.layout(); + java.awt.Point var20 = var0.getMousePosition(); + java.awt.Graphics var21 = var0.getGraphics(); + boolean var22 = var0.isManagingFocus(); + var0.transferFocusUpCycle(); + var0.setToolTipText("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=1.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + SpaceWar.SpacePanel var26 = new SpaceWar.SpacePanel(); + float var27 = var26.getAlignmentX(); + var26.setVisible(false); + var26.setInheritsPopupMenu(false); + java.awt.Component var34 = var26.findComponentAt((-1), 1); + java.awt.Insets var35 = var26.getInsets(); + javax.swing.InputMap var36 = var26.getInputMap(); + java.awt.Component var37 = var0.add((java.awt.Component)var26); + boolean var38 = var26.isFocusTraversable(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertNull(var21); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var22 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNull(var34); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var35); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var36); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var37); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var38 == true); + + } + + public void test117() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test117"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + boolean var2 = var0.hasFocus(); + java.awt.Insets var3 = var0.getInsets(); + java.awt.Rectangle var4 = var0.bounds(); + boolean var5 = var0.isMaximumSizeSet(); + SpaceWar.SpacePanel var7 = new SpaceWar.SpacePanel(); + float var8 = var7.getAlignmentX(); + var7.setVisible(false); + var7.setEnabled(false); + java.awt.Image var15 = var7.createImage(10, 100); + SpaceWar.SpacePanel var16 = new SpaceWar.SpacePanel(); + java.awt.Color var17 = var16.getBackground(); + var7.setForeground(var17); + var7.setFocusTraversalPolicyProvider(true); + java.util.Set var22 = var7.getFocusTraversalKeys(2); + // The following exception was thrown during execution. + // This behavior will recorded for regression testing. + try { + var0.setFocusTraversalKeys(500, var22); + fail("Expected exception of type java.lang.IllegalArgumentException"); + } catch (java.lang.IllegalArgumentException e) { + // Expected exception. + } + + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var2 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var4); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var22); + + } + + public void test118() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test118"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + var0.setRequestFocusEnabled(false); + var0.reshape(100, 0, 100, 0); + var0.requestFocus(); + var0.firePropertyChange("hi!", '4', ' '); + java.awt.Point var15 = var0.getLocation(); + java.awt.Dimension var16 = var0.size(); + java.awt.Image var19 = var0.createImage((-1), (-1)); + java.awt.event.ComponentListener[] var20 = var0.getComponentListeners(); + SpaceWar.SpacePanel var21 = new SpaceWar.SpacePanel(); + var21.setName(""); + java.awt.ComponentOrientation var24 = var21.getComponentOrientation(); + var21.firePropertyChange("PanelUI", 1.0f, 0.5f); + int var29 = var0.getComponentZOrder((java.awt.Component)var21); + boolean var31 = var0.areFocusTraversalKeysSet(0); + javax.swing.TransferHandler var32 = var0.getTransferHandler(); + boolean var33 = var0.isForegroundSet(); + boolean var34 = var0.getInheritsPopupMenu(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var29 == (-1)); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var31 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var32); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var33 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var34 == false); + + } + + public void test119() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test119"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.reshape((-1), 1, (-1), 10); + SpaceWar.SpacePanel var10 = new SpaceWar.SpacePanel(); + java.awt.Color var11 = var10.getBackground(); + var10.repaint(); + var10.setRequestFocusEnabled(false); + var10.reshape(100, 0, 100, 0); + java.awt.Component var20 = var0.add((java.awt.Component)var10); + var0.removeNotify(); + var0.requestFocus(); + var0.setFocusCycleRoot(false); + var0.layout(); + java.lang.String var26 = var0.toString(); + SpaceWar.SpacePanel var27 = new SpaceWar.SpacePanel(); + float var28 = var27.getAlignmentX(); + var27.setVisible(false); + var27.setInheritsPopupMenu(false); + var27.move(10, 10); + var27.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var27.removeAll(); + java.awt.Point var41 = var27.location(); + SpaceWar.SpacePanel var42 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var43 = new SpaceWar.SpacePanel(); + java.awt.Color var44 = var43.getBackground(); + SpaceWar.SpacePanel var45 = new SpaceWar.SpacePanel(); + float var46 = var45.getAlignmentX(); + var45.setVisible(false); + var45.nextFocus(); + var45.updateUI(); + var45.enableInputMethods(true); + var42.add((java.awt.Component)var43, (java.lang.Object)true); + java.awt.Dimension var54 = var43.getPreferredSize(); + var43.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", (-1.0f), 100.0f); + SpaceWar.SpacePanel var59 = new SpaceWar.SpacePanel(); + float var60 = var59.getAlignmentX(); + var59.setVisible(false); + boolean var63 = var59.isDoubleBuffered(); + SpaceWar.SpacePanel var64 = new SpaceWar.SpacePanel(); + java.awt.Color var65 = var64.getBackground(); + var64.repaint(); + java.lang.Object var67 = var59.getClientProperty((java.lang.Object)var64); + var43.remove((java.awt.Component)var59); + SpaceWar.SpacePanel var69 = new SpaceWar.SpacePanel(); + float var70 = var69.getAlignmentX(); + var69.firePropertyChange("", (-1), 1); + java.awt.event.MouseMotionListener[] var75 = var69.getMouseMotionListeners(); + java.awt.Dimension var76 = var69.getMinimumSize(); + var43.setMaximumSize(var76); + var27.setMinimumSize(var76); + java.awt.Dimension var79 = var0.getSize(var76); + java.awt.event.KeyListener[] var80 = var0.getKeyListeners(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var26 + "' != '" + "SpaceWar.SpacePanel[,-1,1,-1x10,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"+ "'", var26.equals("SpaceWar.SpacePanel[,-1,1,-1x10,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]")); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var28 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var41); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var44); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var46 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var54); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var60 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var63 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var65); + + // Regression assertion (captures the current behavior of the code) + assertNull(var67); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var70 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var75); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var76); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var79); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var80); + + } + + public void test120() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test120"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + SpaceWar.SpacePanel var2 = new SpaceWar.SpacePanel(); + float var3 = var2.getAlignmentX(); + var2.setVisible(false); + java.awt.Dimension var6 = var2.getPreferredSize(); + boolean var7 = var2.getVerifyInputWhenFocusTarget(); + java.awt.Component var10 = var2.findComponentAt(10, 1); + var0.addKeyListener((java.awt.event.KeyListener)var2); + var2.repaint(100, (-1), (-1), 1); + java.awt.image.ColorModel var17 = var2.getColorModel(); + boolean var18 = var2.isPreferredSizeSet(); + java.awt.im.InputMethodRequests var19 = var2.getInputMethodRequests(); + boolean var20 = var2.isForegroundSet(); + boolean var21 = var2.isDisplayable(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == false); + + } + + public void test121() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test121"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + var0.setName(""); + java.awt.ComponentOrientation var3 = var0.getComponentOrientation(); + var0.enable(); + int var5 = var0.getHeight(); + boolean var6 = var0.isValidateRoot(); + boolean var7 = var0.isDisplayable(); + int var8 = var0.getY(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var15 = var9.getUI(); + java.awt.im.InputMethodRequests var16 = var9.getInputMethodRequests(); + SpaceWar.SpacePanel var17 = new SpaceWar.SpacePanel(); + float var18 = var17.getAlignmentX(); + var17.setVisible(false); + var17.nextFocus(); + var17.updateUI(); + var17.enableInputMethods(true); + var17.setSize((-1), 1); + SpaceWar.SpacePanel var28 = new SpaceWar.SpacePanel(); + var28.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var9.add((java.awt.Component)var17, (java.lang.Object)"SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + java.awt.ComponentOrientation var34 = var17.getComponentOrientation(); + java.beans.VetoableChangeListener[] var35 = var17.getVetoableChangeListeners(); + int var36 = var17.getHeight(); + var17.enable(true); + java.awt.Component var39 = var17.getNextFocusableComponent(); + java.awt.Point var40 = var17.getMousePosition(); + java.awt.LayoutManager var41 = var17.getLayout(); + SpaceWar.SpacePanel var42 = new SpaceWar.SpacePanel(); + float var43 = var42.getAlignmentX(); + var42.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var48 = var42.getMouseListeners(); + var42.firePropertyChange("", 0.5f, 100.0f); + var42.enable(false); + int var55 = var42.getDebugGraphicsOptions(); + java.awt.ComponentOrientation var56 = var42.getComponentOrientation(); + var17.applyComponentOrientation(var56); + SpaceWar.SpacePanel var58 = new SpaceWar.SpacePanel(); + float var59 = var58.getAlignmentX(); + boolean var60 = var58.hasFocus(); + java.awt.Insets var61 = var58.getInsets(); + boolean var62 = var58.isFocusTraversalPolicyProvider(); + java.beans.PropertyChangeListener[] var64 = var58.getPropertyChangeListeners("hi!"); + java.awt.Cursor var65 = var58.getCursor(); + var58.setEnabled(false); + SpaceWar.SpacePanel var68 = new SpaceWar.SpacePanel(); + java.awt.Color var69 = var68.getBackground(); + var68.repaint(); + var68.setRequestFocusEnabled(false); + var68.reshape(100, 0, 100, 0); + var68.requestFocus(); + java.awt.Rectangle var79 = var68.getVisibleRect(); + java.awt.Rectangle var80 = var68.getBounds(); + java.awt.im.InputMethodRequests var81 = var68.getInputMethodRequests(); + boolean var82 = var68.requestFocusInWindow(); + java.awt.Point var84 = var68.getMousePosition(false); + var68.setDebugGraphicsOptions(1); + java.awt.Graphics var87 = var68.getGraphics(); + var58.printAll(var87); + var17.paintComponents(var87); + var0.printAll(var87); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var34); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var35); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var36 == 1); + + // Regression assertion (captures the current behavior of the code) + assertNull(var39); + + // Regression assertion (captures the current behavior of the code) + assertNull(var40); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var41); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var43 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var48); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var55 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var56); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var59 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var60 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var61); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var62 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var64); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var65); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var69); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var79); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var80); + + // Regression assertion (captures the current behavior of the code) + assertNull(var81); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var82 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var84); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var87); + + } + + public void test122() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test122"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.setInheritsPopupMenu(false); + var0.setFocusTraversalPolicyProvider(true); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + boolean var12 = var8.isDoubleBuffered(); + var8.list(); + SpaceWar.SpacePanel var14 = new SpaceWar.SpacePanel(); + float var15 = var14.getAlignmentX(); + var14.setVisible(false); + boolean var18 = var14.isDoubleBuffered(); + java.awt.dnd.DropTarget var19 = var14.getDropTarget(); + var14.show(false); + java.awt.Rectangle var22 = var14.getVisibleRect(); + java.awt.Rectangle var23 = var8.getBounds(var22); + javax.swing.JToolTip var24 = var8.createToolTip(); + var0.removeKeyListener((java.awt.event.KeyListener)var8); + javax.swing.TransferHandler var26 = var0.getTransferHandler(); + var0.transferFocus(); + boolean var28 = var0.isFocusable(); + var0.disable(); + java.awt.event.ComponentListener[] var30 = var0.getComponentListeners(); + var0.show(true); + SpaceWar.SpacePanel var33 = new SpaceWar.SpacePanel(); + float var34 = var33.getAlignmentX(); + var33.setVisible(false); + boolean var37 = var33.isDoubleBuffered(); + SpaceWar.SpacePanel var38 = new SpaceWar.SpacePanel(); + java.awt.Color var39 = var38.getBackground(); + var38.repaint(); + java.lang.Object var41 = var33.getClientProperty((java.lang.Object)var38); + boolean var44 = var38.contains(1, 500); + java.awt.Dimension var45 = var38.preferredSize(); + var0.setSize(var45); + var0.requestFocus(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var23); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var28 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var30); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var34 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var39); + + // Regression assertion (captures the current behavior of the code) + assertNull(var41); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var44 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var45); + + } + + public void test123() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test123"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + SpaceWar.SpacePanel var2 = new SpaceWar.SpacePanel(); + float var3 = var2.getAlignmentX(); + var2.setVisible(false); + java.awt.Dimension var6 = var2.getPreferredSize(); + boolean var7 = var2.getVerifyInputWhenFocusTarget(); + java.awt.Component var10 = var2.findComponentAt(10, 1); + var0.addKeyListener((java.awt.event.KeyListener)var2); + var2.repaint(100, (-1), (-1), 1); + SpaceWar.SpacePanel var17 = new SpaceWar.SpacePanel(); + java.awt.Color var18 = var17.getBackground(); + var17.repaint(); + java.awt.im.InputMethodRequests var20 = var17.getInputMethodRequests(); + java.awt.GraphicsConfiguration var21 = var17.getGraphicsConfiguration(); + var2.remove((java.awt.Component)var17); + var2.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", 0.0f, 1.0f); + SpaceWar.SpacePanel var27 = new SpaceWar.SpacePanel(); + float var28 = var27.getAlignmentX(); + var27.setVisible(false); + java.awt.Dimension var31 = var27.getPreferredSize(); + boolean var32 = var27.getVerifyInputWhenFocusTarget(); + SpaceWar.SpacePanel var33 = new SpaceWar.SpacePanel(); + var33.setName(""); + int var36 = var33.getX(); + SpaceWar.SpacePanel var37 = new SpaceWar.SpacePanel(); + float var38 = var37.getAlignmentX(); + var37.setVisible(false); + var37.nextFocus(); + SpaceWar.SpacePanel var42 = new SpaceWar.SpacePanel(); + float var43 = var42.getAlignmentX(); + var42.setVisible(false); + SpaceWar.SpacePanel var46 = new SpaceWar.SpacePanel(); + java.awt.Color var47 = var46.getBackground(); + var42.setForeground(var47); + var37.setBackground(var47); + var33.setBackground(var47); + var2.add((java.awt.Component)var27, (java.lang.Object)var33); + var33.requestFocus(); + java.awt.FocusTraversalPolicy var53 = var33.getFocusTraversalPolicy(); + java.awt.event.ContainerListener[] var54 = var33.getContainerListeners(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertNull(var21); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var28 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var31); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var32 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var36 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var38 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var43 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var47); + + // Regression assertion (captures the current behavior of the code) + assertNull(var53); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var54); + + } + + public void test124() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test124"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + java.awt.Dimension var4 = var0.getPreferredSize(); + java.awt.Toolkit var5 = var0.getToolkit(); + boolean var6 = var0.isFocusable(); + java.awt.Container var7 = var0.getFocusCycleRootAncestor(); + var0.setAutoscrolls(true); + SpaceWar.SpacePanel var10 = new SpaceWar.SpacePanel(); + float var11 = var10.getAlignmentX(); + var10.setVisible(false); + var10.nextFocus(); + var10.reshape((-1), 1, (-1), 10); + var10.disable(); + java.awt.LayoutManager var21 = var10.getLayout(); + boolean var24 = var10.contains((-1), 0); + SpaceWar.SpacePanel var25 = new SpaceWar.SpacePanel(); + float var26 = var25.getAlignmentX(); + var25.setVisible(false); + var25.nextFocus(); + var25.updateUI(); + var25.enableInputMethods(true); + var25.setSize((-1), 1); + java.awt.Component var36 = var10.add((java.awt.Component)var25); + var25.paintImmediately(100, 25, 2, 2); + SpaceWar.SpacePanel var42 = new SpaceWar.SpacePanel(); + var42.setName(""); + java.awt.Toolkit var45 = var42.getToolkit(); + var42.setEnabled(false); + var42.removeNotify(); + boolean var49 = var42.isDisplayable(); + SpaceWar.SpacePanel var50 = new SpaceWar.SpacePanel(); + java.awt.Color var51 = var50.getBackground(); + var50.repaint(); + var50.setRequestFocusEnabled(false); + var50.reshape(100, 0, 100, 0); + var50.requestFocus(); + java.awt.Rectangle var61 = var50.getVisibleRect(); + java.awt.Rectangle var62 = var50.getBounds(); + java.awt.im.InputMethodRequests var63 = var50.getInputMethodRequests(); + boolean var64 = var50.requestFocusInWindow(); + java.awt.Point var66 = var50.getMousePosition(false); + var50.setDebugGraphicsOptions(1); + java.awt.Graphics var69 = var50.getGraphics(); + var42.paintAll(var69); + var25.paintComponents(var69); + var0.paintComponents(var69); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var4); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var21); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var24 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var36); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var45); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var49 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var51); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var61); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var62); + + // Regression assertion (captures the current behavior of the code) + assertNull(var63); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var64 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var66); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var69); + + } + + public void test125() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test125"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var1 = new SpaceWar.SpacePanel(); + java.awt.Color var2 = var1.getBackground(); + SpaceWar.SpacePanel var3 = new SpaceWar.SpacePanel(); + float var4 = var3.getAlignmentX(); + var3.setVisible(false); + var3.nextFocus(); + var3.updateUI(); + var3.enableInputMethods(true); + var0.add((java.awt.Component)var1, (java.lang.Object)true); + java.awt.Image var14 = var1.createImage(1, (-1)); + java.awt.dnd.DropTarget var15 = var1.getDropTarget(); + var1.doLayout(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var2); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertNull(var15); + + } + + public void test126() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test126"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + java.awt.im.InputMethodRequests var3 = var0.getInputMethodRequests(); + int var4 = var0.countComponents(); + java.awt.Dimension var5 = var0.getSize(); + java.awt.event.MouseWheelListener[] var6 = var0.getMouseWheelListeners(); + var0.setToolTipText("SpaceWar.SpacePanel[,0,0,0x0,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=java.awt.Dimension[width=800,height=600],minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + java.awt.Component var11 = var0.getComponentAt(400, 399); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertNull(var11); + + } + + public void test127() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test127"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + var0.show(false); + java.awt.Rectangle var8 = var0.getVisibleRect(); + java.awt.Toolkit var9 = var0.getToolkit(); + java.awt.event.MouseMotionListener[] var10 = var0.getMouseMotionListeners(); + SpaceWar.SpacePanel var11 = new SpaceWar.SpacePanel(); + float var12 = var11.getAlignmentX(); + var11.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var17 = var11.getMouseListeners(); + int var18 = var11.getDebugGraphicsOptions(); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + float var20 = var19.getAlignmentX(); + var19.setVisible(false); + boolean var23 = var19.isDoubleBuffered(); + java.awt.dnd.DropTarget var24 = var19.getDropTarget(); + var19.show(false); + java.awt.Rectangle var27 = var19.getVisibleRect(); + var11.paintImmediately(var27); + var0.setBounds(var27); + var0.setBounds((-1), 399, (-1), 10); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var9); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var27); + + } + + public void test128() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test128"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + var0.setRequestFocusEnabled(false); + var0.reshape(100, 0, 100, 0); + javax.swing.event.AncestorListener[] var10 = var0.getAncestorListeners(); + var0.resize(10, 0); + java.awt.Dimension var14 = var0.preferredSize(); + var0.firePropertyChange("SpaceWar.SpacePanel[,-1,1,-1x10,invalid,hidden,disabled,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", 24, (-1)); + boolean var19 = javax.swing.JComponent.isLightweightComponent((java.awt.Component)var0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == false); + + } + + public void test129() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test129"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + SpaceWar.SpacePanel var2 = new SpaceWar.SpacePanel(); + float var3 = var2.getAlignmentX(); + var2.setVisible(false); + java.awt.Dimension var6 = var2.getPreferredSize(); + boolean var7 = var2.getVerifyInputWhenFocusTarget(); + java.awt.Component var10 = var2.findComponentAt(10, 1); + var0.addKeyListener((java.awt.event.KeyListener)var2); + SpaceWar.SpacePanel var12 = new SpaceWar.SpacePanel(); + float var13 = var12.getAlignmentX(); + SpaceWar.SpacePanel var14 = new SpaceWar.SpacePanel(); + float var15 = var14.getAlignmentX(); + var14.setVisible(false); + java.awt.Dimension var18 = var14.getPreferredSize(); + boolean var19 = var14.getVerifyInputWhenFocusTarget(); + java.awt.Component var22 = var14.findComponentAt(10, 1); + var12.addKeyListener((java.awt.event.KeyListener)var14); + var14.repaint(100, (-1), (-1), 1); + java.awt.image.ColorModel var29 = var14.getColorModel(); + SpaceWar.SpacePanel var30 = new SpaceWar.SpacePanel(); + float var31 = var30.getAlignmentX(); + var30.setVisible(false); + boolean var34 = var30.isDoubleBuffered(); + var30.list(); + SpaceWar.SpacePanel var36 = new SpaceWar.SpacePanel(); + float var37 = var36.getAlignmentX(); + var36.setVisible(false); + boolean var40 = var36.isDoubleBuffered(); + java.awt.dnd.DropTarget var41 = var36.getDropTarget(); + var36.show(false); + java.awt.Rectangle var44 = var36.getVisibleRect(); + java.awt.image.BufferedImage var46 = var36.loadImg("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + boolean var47 = var30.isAncestorOf((java.awt.Component)var36); + javax.swing.InputVerifier var48 = var36.getInputVerifier(); + var2.putClientProperty((java.lang.Object)var14, (java.lang.Object)var36); + boolean var50 = var14.isFocusTraversable(); + var14.revalidate(); + boolean var52 = var14.isPaintingTile(); + javax.swing.InputMap var53 = var14.getInputMap(); + javax.swing.InputVerifier var54 = var14.getInputVerifier(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var29); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var31 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var34 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var40 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var41); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var44); + + // Regression assertion (captures the current behavior of the code) + assertNull(var46); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var47 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var48); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var50 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var52 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var53); + + // Regression assertion (captures the current behavior of the code) + assertNull(var54); + + } + + public void test130() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test130"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + var0.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", 10.0d, 100.0d); + var0.setToolTipText(""); + int var7 = var0.countComponents(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0); + + } + + public void test131() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test131"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + java.awt.Dimension var4 = var0.getPreferredSize(); + boolean var5 = var0.getVerifyInputWhenFocusTarget(); + java.awt.Component var8 = var0.findComponentAt(10, 1); + boolean var9 = var0.isCursorSet(); + java.awt.Dimension var10 = var0.getMinimumSize(); + var0.setFocusCycleRoot(true); + javax.accessibility.AccessibleContext var13 = var0.getAccessibleContext(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var4); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var13); + + } + + public void test132() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test132"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + var0.setName(""); + java.awt.Graphics var3 = var0.getGraphics(); + var0.repaint(); + var0.transferFocusUpCycle(); + var0.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", (short)10, (short)10); + + // Regression assertion (captures the current behavior of the code) + assertNull(var3); + + } + + public void test133() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test133"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + var0.show(false); + boolean var8 = var0.isPaintingForPrint(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var15 = var9.getMouseListeners(); + int var16 = var9.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var17 = var9.getInputMethodRequests(); + var0.addKeyListener((java.awt.event.KeyListener)var9); + boolean var19 = var0.isDisplayable(); + boolean var20 = var0.isOpaque(); + var0.setIgnoreRepaint(true); + SpaceWar.SpacePanel var23 = new SpaceWar.SpacePanel(); + java.awt.Color var24 = var23.getBackground(); + var23.repaint(); + var23.setRequestFocusEnabled(false); + var23.setIgnoreRepaint(false); + SpaceWar.SpacePanel var30 = new SpaceWar.SpacePanel(); + java.awt.Color var31 = var30.getBackground(); + boolean var34 = var30.inside(0, (-1)); + var30.transferFocusUpCycle(); + java.awt.Container var36 = var30.getParent(); + boolean var37 = var30.isMaximumSizeSet(); + SpaceWar.SpacePanel var38 = new SpaceWar.SpacePanel(); + var38.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + javax.swing.plaf.PanelUI var43 = var38.getUI(); + java.awt.Color var44 = var38.getBackground(); + var38.removeAll(); + var38.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", (short)(-1), (short)100); + java.awt.GraphicsConfiguration var50 = var38.getGraphicsConfiguration(); + SpaceWar.SpacePanel var51 = new SpaceWar.SpacePanel(); + float var52 = var51.getAlignmentX(); + SpaceWar.SpacePanel var53 = new SpaceWar.SpacePanel(); + float var54 = var53.getAlignmentX(); + var53.setVisible(false); + java.awt.Dimension var57 = var53.getPreferredSize(); + boolean var58 = var53.getVerifyInputWhenFocusTarget(); + java.awt.Component var61 = var53.findComponentAt(10, 1); + var51.addKeyListener((java.awt.event.KeyListener)var53); + var53.repaint(100, (-1), (-1), 1); + java.awt.image.ColorModel var68 = var53.getColorModel(); + boolean var69 = var53.isFocusTraversalPolicyProvider(); + var53.show(false); + boolean var72 = var53.isManagingFocus(); + SpaceWar.SpacePanel var73 = new SpaceWar.SpacePanel(); + java.awt.Color var74 = var73.getBackground(); + var73.repaint(); + var73.setRequestFocusEnabled(false); + var73.reshape(100, 0, 100, 0); + var73.requestFocus(); + java.awt.Rectangle var84 = var73.getVisibleRect(); + java.awt.Rectangle var85 = var73.getBounds(); + java.awt.im.InputMethodRequests var86 = var73.getInputMethodRequests(); + boolean var87 = var73.requestFocusInWindow(); + java.awt.Point var89 = var73.getMousePosition(false); + var73.setDebugGraphicsOptions(1); + java.awt.Graphics var92 = var73.getGraphics(); + var53.paint(var92); + var38.paintAll(var92); + var30.printComponents(var92); + var23.paintAll(var92); + var0.paintAll(var92); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var31); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var34 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var36); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var43); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var44); + + // Regression assertion (captures the current behavior of the code) + assertNull(var50); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var52 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var54 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var57); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var58 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var61); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var68); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var69 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var72 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var74); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var84); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var85); + + // Regression assertion (captures the current behavior of the code) + assertNull(var86); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var87 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var89); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var92); + + } + + public void test134() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test134"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.requestFocus(); + int var6 = var0.getHeight(); + var0.setEnabled(true); + java.awt.Component[] var9 = var0.getComponents(); + java.awt.Graphics var10 = var0.getGraphics(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var9); + + // Regression assertion (captures the current behavior of the code) + assertNull(var10); + + } + + public void test135() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test135"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.updateUI(); + var0.enableInputMethods(true); + java.awt.Point var8 = var0.location(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.setVisible(false); + var9.nextFocus(); + java.awt.Component var14 = var0.add((java.awt.Component)var9); + SpaceWar.SpacePanel var15 = new SpaceWar.SpacePanel(); + float var16 = var15.getAlignmentX(); + var15.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var21 = var15.getMouseListeners(); + java.awt.Dimension var22 = var15.getPreferredSize(); + java.util.Locale var23 = var15.getLocale(); + var15.setFocusable(true); + var15.setSize(3, 10); + SpaceWar.SpacePanel var29 = new SpaceWar.SpacePanel(); + float var30 = var29.getAlignmentX(); + var29.setVisible(false); + java.awt.Dimension var33 = var29.getPreferredSize(); + boolean var34 = var29.getVerifyInputWhenFocusTarget(); + java.awt.Dimension var35 = var29.size(); + var15.setSize(var35); + var0.resize(var35); + SpaceWar.SpacePanel var38 = new SpaceWar.SpacePanel(); + float var39 = var38.getAlignmentX(); + var38.setVisible(false); + SpaceWar.SpacePanel var42 = new SpaceWar.SpacePanel(); + java.awt.Color var43 = var42.getBackground(); + var38.setForeground(var43); + SpaceWar.SpacePanel var45 = new SpaceWar.SpacePanel(); + float var46 = var45.getAlignmentX(); + var45.setVisible(false); + boolean var49 = var45.isDoubleBuffered(); + java.awt.dnd.DropTarget var50 = var45.getDropTarget(); + var45.show(false); + java.awt.Rectangle var53 = var45.getVisibleRect(); + var38.repaint(var53); + java.awt.FocusTraversalPolicy var55 = var38.getFocusTraversalPolicy(); + var38.resetKeyboardActions(); + SpaceWar.SpacePanel var57 = new SpaceWar.SpacePanel(); + float var58 = var57.getAlignmentX(); + var57.setVisible(false); + boolean var61 = var57.isDoubleBuffered(); + java.awt.dnd.DropTarget var62 = var57.getDropTarget(); + var57.show(false); + java.awt.Rectangle var65 = var57.getVisibleRect(); + var38.computeVisibleRect(var65); + var0.setBounds(var65); + var0.setAlignmentX(10.0f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var21); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var23); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var30 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var33); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var34 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var35); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var39 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var43); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var46 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var49 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var50); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var53); + + // Regression assertion (captures the current behavior of the code) + assertNull(var55); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var58 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var61 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var62); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var65); + + } + + public void test136() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test136"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + var0.show(false); + java.awt.Rectangle var8 = var0.getVisibleRect(); + java.awt.Toolkit var9 = var0.getToolkit(); + SpaceWar.SpacePanel var10 = new SpaceWar.SpacePanel(); + float var11 = var10.getAlignmentX(); + var10.setVisible(false); + boolean var14 = var10.isDoubleBuffered(); + var10.list(); + SpaceWar.SpacePanel var16 = new SpaceWar.SpacePanel(); + float var17 = var16.getAlignmentX(); + var16.setVisible(false); + boolean var20 = var16.isDoubleBuffered(); + java.awt.dnd.DropTarget var21 = var16.getDropTarget(); + var16.show(false); + java.awt.Rectangle var24 = var16.getVisibleRect(); + java.awt.Rectangle var25 = var10.getBounds(var24); + javax.swing.JToolTip var26 = var10.createToolTip(); + var10.firePropertyChange("", false, false); + var10.validate(); + SpaceWar.SpacePanel var32 = new SpaceWar.SpacePanel(); + float var33 = var32.getAlignmentX(); + var32.setVisible(false); + var32.nextFocus(); + var32.updateUI(); + var32.enableInputMethods(true); + java.lang.String var40 = var32.toString(); + var0.putClientProperty((java.lang.Object)var10, (java.lang.Object)var32); + java.awt.Dimension var42 = var10.size(); + boolean var43 = var10.isOptimizedDrawingEnabled(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var9); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var21); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var25); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var33 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var40 + "' != '" + "SpaceWar.SpacePanel[,0,0,0var40,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"+ "'", var40.equals("SpaceWar.SpacePanel[,0,0,0var40,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]")); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var42); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var43 == true); + + } + + public void test137() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test137"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + java.awt.Dimension var4 = var0.getPreferredSize(); + java.awt.Toolkit var5 = var0.getToolkit(); + boolean var6 = var0.isFocusable(); + javax.swing.KeyStroke[] var7 = var0.getRegisteredKeyStrokes(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + SpaceWar.SpacePanel var10 = new SpaceWar.SpacePanel(); + float var11 = var10.getAlignmentX(); + var10.setVisible(false); + java.awt.Dimension var14 = var10.getPreferredSize(); + boolean var15 = var10.getVerifyInputWhenFocusTarget(); + java.awt.Component var18 = var10.findComponentAt(10, 1); + var8.addKeyListener((java.awt.event.KeyListener)var10); + var10.repaint(100, (-1), (-1), 1); + boolean var25 = var0.isAncestorOf((java.awt.Component)var10); + var0.nextFocus(); + var0.disable(); + int var28 = var0.countComponents(); + boolean var29 = var0.isDoubleBuffered(); + boolean var30 = var0.isFocusTraversable(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var4); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var28 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var29 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var30 == true); + + } + + public void test138() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test138"); + + + SpaceWar.Bullet var3 = new SpaceWar.Bullet(594.7973940347722d, 3, 100); + boolean var4 = var3.update(); + boolean var5 = var3.update(); + double var6 = var3.getR(); + boolean var7 = var3.update(); + boolean var8 = var3.update(); + double var9 = var3.getR(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == 5.0d); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 5.0d); + + } + + public void test139() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test139"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + java.awt.im.InputMethodRequests var3 = var0.getInputMethodRequests(); + var0.setDoubleBuffered(true); + var0.show(false); + boolean var8 = var0.isPaintingForPrint(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.setVisible(false); + var9.nextFocus(); + var9.reshape((-1), 1, (-1), 10); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + java.awt.Color var20 = var19.getBackground(); + var19.repaint(); + var19.setRequestFocusEnabled(false); + var19.reshape(100, 0, 100, 0); + java.awt.Component var29 = var9.add((java.awt.Component)var19); + SpaceWar.SpacePanel var30 = new SpaceWar.SpacePanel(); + var30.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + javax.swing.plaf.PanelUI var35 = var30.getUI(); + SpaceWar.SpacePanel var36 = new SpaceWar.SpacePanel(); + float var37 = var36.getAlignmentX(); + var36.setVisible(false); + var36.nextFocus(); + var36.repaint(1L); + SpaceWar.SpacePanel var43 = new SpaceWar.SpacePanel(); + float var44 = var43.getAlignmentX(); + var43.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var49 = new SpaceWar.SpacePanel(); + float var50 = var49.getAlignmentX(); + var49.setVisible(false); + java.awt.Dimension var53 = var49.getPreferredSize(); + var43.setMaximumSize(var53); + var36.setPreferredSize(var53); + var30.setMaximumSize(var53); + java.awt.Dimension var57 = var19.getSize(var53); + SpaceWar.SpacePanel var58 = new SpaceWar.SpacePanel(); + float var59 = var58.getAlignmentX(); + var58.setVisible(false); + boolean var62 = var58.isDoubleBuffered(); + java.awt.dnd.DropTarget var63 = var58.getDropTarget(); + var58.show(false); + boolean var66 = var58.isPaintingForPrint(); + SpaceWar.SpacePanel var67 = new SpaceWar.SpacePanel(); + float var68 = var67.getAlignmentX(); + var67.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var73 = var67.getMouseListeners(); + int var74 = var67.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var75 = var67.getInputMethodRequests(); + var58.addKeyListener((java.awt.event.KeyListener)var67); + SpaceWar.SpacePanel var77 = new SpaceWar.SpacePanel(); + float var78 = var77.getAlignmentX(); + var77.setVisible(false); + boolean var81 = var77.isDoubleBuffered(); + var77.list(); + float var83 = var77.getAlignmentY(); + boolean var84 = var67.isFocusCycleRoot((java.awt.Container)var77); + var19.setNextFocusableComponent((java.awt.Component)var77); + boolean var86 = var19.isForegroundSet(); + java.awt.LayoutManager var87 = var19.getLayout(); + var0.setLayout(var87); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var29); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var35); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var44 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var50 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var53); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var57); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var59 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var62 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var63); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var66 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var68 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var73); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var74 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var75); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var78 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var81 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var83 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var84 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var86 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var87); + + } + + public void test140() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test140"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var1 = new SpaceWar.SpacePanel(); + java.awt.Color var2 = var1.getBackground(); + SpaceWar.SpacePanel var3 = new SpaceWar.SpacePanel(); + float var4 = var3.getAlignmentX(); + var3.setVisible(false); + var3.nextFocus(); + var3.updateUI(); + var3.enableInputMethods(true); + var0.add((java.awt.Component)var1, (java.lang.Object)true); + java.awt.Dimension var12 = var1.getPreferredSize(); + var1.move(100, 10); + java.awt.Dimension var16 = var1.preferredSize(); + java.awt.Toolkit var17 = var1.getToolkit(); + var1.setLocation(1, 2); + var1.setFocusCycleRoot(true); + boolean var23 = var1.getVerifyInputWhenFocusTarget(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var2); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == true); + + } + + public void test141() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test141"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + var0.list(); + float var6 = var0.getAlignmentY(); + java.awt.event.ComponentListener[] var7 = var0.getComponentListeners(); + java.awt.Component var8 = var0.getNextFocusableComponent(); + boolean var9 = var0.isManagingFocus(); + javax.swing.border.Border var10 = var0.getBorder(); + SpaceWar.SpacePanel var11 = new SpaceWar.SpacePanel(); + float var12 = var11.getAlignmentX(); + var11.setVisible(false); + boolean var15 = var11.isDoubleBuffered(); + java.awt.dnd.DropTarget var16 = var11.getDropTarget(); + var11.show(false); + boolean var19 = var11.isPaintingForPrint(); + SpaceWar.SpacePanel var20 = new SpaceWar.SpacePanel(); + float var21 = var20.getAlignmentX(); + var20.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var26 = var20.getMouseListeners(); + int var27 = var20.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var28 = var20.getInputMethodRequests(); + var11.addKeyListener((java.awt.event.KeyListener)var20); + SpaceWar.SpacePanel var30 = new SpaceWar.SpacePanel(); + float var31 = var30.getAlignmentX(); + var30.setVisible(false); + boolean var34 = var30.isDoubleBuffered(); + var30.list(); + float var36 = var30.getAlignmentY(); + boolean var37 = var20.isFocusCycleRoot((java.awt.Container)var30); + var30.firePropertyChange("", 1L, 1L); + var30.setVerifyInputWhenFocusTarget(true); + var30.resize(25, 400); + java.awt.event.ComponentListener[] var47 = var30.getComponentListeners(); + boolean var48 = var30.isBackgroundSet(); + boolean var49 = var30.isFontSet(); + SpaceWar.SpacePanel var50 = new SpaceWar.SpacePanel(); + var50.setName(""); + var50.enable(true); + var50.enable(); + java.awt.Point var56 = var50.location(); + var50.repaint(0, 3, (-1), 1); + var50.setBounds(25, 100, 1, 0); + var0.putClientProperty((java.lang.Object)var49, (java.lang.Object)1); + boolean var68 = var0.isValidateRoot(); + int var69 = var0.getComponentCount(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var28); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var31 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var34 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var36 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var47); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var48 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var49 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var56); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var68 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var69 == 0); + + } + + public void test142() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test142"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + var0.show(false); + boolean var8 = var0.isPaintingForPrint(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var15 = var9.getMouseListeners(); + int var16 = var9.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var17 = var9.getInputMethodRequests(); + var0.addKeyListener((java.awt.event.KeyListener)var9); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + float var20 = var19.getAlignmentX(); + var19.setVisible(false); + boolean var23 = var19.isDoubleBuffered(); + var19.list(); + float var25 = var19.getAlignmentY(); + boolean var26 = var9.isFocusCycleRoot((java.awt.Container)var19); + SpaceWar.SpacePanel var28 = new SpaceWar.SpacePanel(); + float var29 = var28.getAlignmentX(); + var28.setVisible(false); + var28.nextFocus(); + var28.updateUI(); + java.awt.Component var34 = var9.add("", (java.awt.Component)var28); + var28.repaint(100L, 0, 100, 500, (-1)); + boolean var41 = var28.isFocusTraversalPolicySet(); + java.awt.Cursor var42 = var28.getCursor(); + var28.list(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var29 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var34); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var41 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var42); + + } + + public void test143() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test143"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var6 = var0.getMouseListeners(); + int var7 = var0.getDebugGraphicsOptions(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + boolean var12 = var8.isDoubleBuffered(); + java.awt.dnd.DropTarget var13 = var8.getDropTarget(); + var8.show(false); + java.awt.Rectangle var16 = var8.getVisibleRect(); + var0.paintImmediately(var16); + java.awt.Rectangle var18 = var0.getBounds(); + java.beans.PropertyChangeListener[] var20 = var0.getPropertyChangeListeners("SpaceWar.SpacePanel[,0,0,0x0,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + java.awt.Insets var21 = var0.getInsets(); + java.awt.image.VolatileImage var24 = var0.createVolatileImage(499, 400); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var21); + + // Regression assertion (captures the current behavior of the code) + assertNull(var24); + + } + + public void test144() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test144"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.setInheritsPopupMenu(false); + var0.setFocusTraversalPolicyProvider(true); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + boolean var12 = var8.isDoubleBuffered(); + var8.list(); + SpaceWar.SpacePanel var14 = new SpaceWar.SpacePanel(); + float var15 = var14.getAlignmentX(); + var14.setVisible(false); + boolean var18 = var14.isDoubleBuffered(); + java.awt.dnd.DropTarget var19 = var14.getDropTarget(); + var14.show(false); + java.awt.Rectangle var22 = var14.getVisibleRect(); + java.awt.Rectangle var23 = var8.getBounds(var22); + javax.swing.JToolTip var24 = var8.createToolTip(); + var0.removeKeyListener((java.awt.event.KeyListener)var8); + javax.swing.TransferHandler var26 = var0.getTransferHandler(); + boolean var27 = var0.requestFocusInWindow(); + SpaceWar.SpacePanel var28 = new SpaceWar.SpacePanel(); + float var29 = var28.getAlignmentX(); + var28.setVisible(false); + SpaceWar.SpacePanel var32 = new SpaceWar.SpacePanel(); + java.awt.Color var33 = var32.getBackground(); + var28.setForeground(var33); + SpaceWar.SpacePanel var35 = new SpaceWar.SpacePanel(); + float var36 = var35.getAlignmentX(); + var35.setVisible(false); + boolean var39 = var35.isDoubleBuffered(); + java.awt.dnd.DropTarget var40 = var35.getDropTarget(); + var35.show(false); + java.awt.Rectangle var43 = var35.getVisibleRect(); + var28.repaint(var43); + java.awt.FocusTraversalPolicy var45 = var28.getFocusTraversalPolicy(); + SpaceWar.SpacePanel var46 = new SpaceWar.SpacePanel(); + float var47 = var46.getAlignmentX(); + var46.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var52 = var46.getUI(); + java.awt.im.InputMethodRequests var53 = var46.getInputMethodRequests(); + SpaceWar.SpacePanel var54 = new SpaceWar.SpacePanel(); + float var55 = var54.getAlignmentX(); + var54.setVisible(false); + var54.nextFocus(); + var54.updateUI(); + var54.enableInputMethods(true); + var54.setSize((-1), 1); + SpaceWar.SpacePanel var65 = new SpaceWar.SpacePanel(); + var65.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var46.add((java.awt.Component)var54, (java.lang.Object)"SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + java.awt.ComponentOrientation var71 = var54.getComponentOrientation(); + java.beans.VetoableChangeListener[] var72 = var54.getVetoableChangeListeners(); + int var73 = var54.getHeight(); + javax.swing.ActionMap var74 = var54.getActionMap(); + var28.setActionMap(var74); + var0.setActionMap(var74); + boolean var77 = var0.isManagingFocus(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var23); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var29 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var33); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var36 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var39 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var40); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var43); + + // Regression assertion (captures the current behavior of the code) + assertNull(var45); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var47 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var52); + + // Regression assertion (captures the current behavior of the code) + assertNull(var53); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var55 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var71); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var72); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var73 == 1); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var74); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var77 == false); + + } + + public void test145() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test145"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + java.awt.im.InputMethodRequests var3 = var0.getInputMethodRequests(); + var0.setDoubleBuffered(true); + var0.setInheritsPopupMenu(false); + javax.swing.plaf.PanelUI var8 = var0.getUI(); + java.util.Set var10 = var0.getFocusTraversalKeys(3); + var0.requestFocus(); + var0.setLocation(0, 24); + var0.doLayout(); + SpaceWar.SpacePanel var16 = new SpaceWar.SpacePanel(); + float var17 = var16.getAlignmentX(); + var16.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var22 = var16.getMouseListeners(); + var16.firePropertyChange("", 0.5f, 100.0f); + var16.enable(false); + int var29 = var16.getDebugGraphicsOptions(); + SpaceWar.SpacePanel var30 = new SpaceWar.SpacePanel(); + float var31 = var30.getAlignmentX(); + var30.setVisible(false); + var30.nextFocus(); + var30.repaint(1L); + SpaceWar.SpacePanel var37 = new SpaceWar.SpacePanel(); + float var38 = var37.getAlignmentX(); + var37.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var43 = new SpaceWar.SpacePanel(); + float var44 = var43.getAlignmentX(); + var43.setVisible(false); + java.awt.Dimension var47 = var43.getPreferredSize(); + var37.setMaximumSize(var47); + var30.setPreferredSize(var47); + java.awt.Container var50 = var30.getFocusCycleRootAncestor(); + java.awt.image.ColorModel var51 = var30.getColorModel(); + int var52 = var30.getComponentCount(); + java.awt.Component var53 = var16.add((java.awt.Component)var30); + var30.setBounds((-1), 25, 10, (-1)); + var30.grabFocus(); + boolean var60 = var0.isAncestorOf((java.awt.Component)var30); + SpaceWar.SpacePanel var61 = new SpaceWar.SpacePanel(); + java.awt.Color var62 = var61.getBackground(); + var61.repaint(); + var61.setRequestFocusEnabled(false); + var61.setIgnoreRepaint(false); + java.lang.String var68 = var61.toString(); + java.awt.Color var69 = var61.getBackground(); + SpaceWar.SpacePanel var70 = new SpaceWar.SpacePanel(); + float var71 = var70.getAlignmentX(); + var70.setVisible(false); + java.awt.Dimension var74 = var70.getPreferredSize(); + java.awt.Toolkit var75 = var70.getToolkit(); + java.awt.Toolkit var76 = var70.getToolkit(); + SpaceWar.Player var77 = new SpaceWar.Player(); + var77.increasePower(25); + int var80 = var77.getScore(); + var77.setRigth(true); + var77.loseLife(); + var61.putClientProperty((java.lang.Object)var70, (java.lang.Object)var77); + var30.addKeyListener((java.awt.event.KeyListener)var70); + boolean var86 = var70.isPreferredSizeSet(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var29 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var31 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var38 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var44 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var47); + + // Regression assertion (captures the current behavior of the code) + assertNull(var50); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var51); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var52 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var53); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var60 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var62); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var68 + "' != '" + "SpaceWar.SpacePanel[,0,0,0var68,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"+ "'", var68.equals("SpaceWar.SpacePanel[,0,0,0var68,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]")); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var69); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var71 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var74); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var75); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var76); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var80 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var86 == true); + + } + + public void test146() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test146"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + var0.show(false); + java.awt.event.MouseWheelListener[] var8 = var0.getMouseWheelListeners(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + java.awt.Color var10 = var9.getBackground(); + var9.repaint(); + var9.setRequestFocusEnabled(false); + var9.reshape(100, 0, 100, 0); + var9.requestFocus(); + var9.firePropertyChange("hi!", '4', ' '); + java.awt.Point var24 = var9.getLocation(); + java.awt.Dimension var25 = var9.size(); + boolean var26 = var9.isDoubleBuffered(); + var9.grabFocus(); + java.awt.Rectangle var28 = var9.bounds(); + java.awt.Rectangle var29 = var0.getBounds(var28); + java.awt.event.InputMethodListener[] var30 = var0.getInputMethodListeners(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var25); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var28); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var29); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var30); + + } + + public void test147() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test147"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + java.awt.Dimension var4 = var0.getPreferredSize(); + java.awt.Toolkit var5 = var0.getToolkit(); + boolean var6 = var0.isFocusable(); + javax.swing.KeyStroke[] var7 = var0.getRegisteredKeyStrokes(); + java.awt.Component var10 = var0.getComponentAt(100, 100); + java.lang.Object var11 = var0.getTreeLock(); + boolean var14 = var0.inside(400, 0); + java.awt.event.MouseWheelListener[] var15 = var0.getMouseWheelListeners(); + var0.enableInputMethods(true); + var0.list(); + var0.firePropertyChange("hi!", 10.0f, 0.5f); + boolean var23 = var0.isFocusTraversalPolicyProvider(); + SpaceWar.SpacePanel var24 = new SpaceWar.SpacePanel(); + float var25 = var24.getAlignmentX(); + var24.setVisible(false); + var24.setDoubleBuffered(true); + var24.repaint(0, 500, 2, 24); + java.awt.Cursor var35 = var24.getCursor(); + var24.setOpaque(false); + var24.repaint(0L); + SpaceWar.SpacePanel var40 = new SpaceWar.SpacePanel(); + float var41 = var40.getAlignmentX(); + var40.setVisible(false); + var40.nextFocus(); + var40.reshape((-1), 1, (-1), 10); + var40.disable(); + java.awt.LayoutManager var51 = var40.getLayout(); + var24.setLayout(var51); + var0.setLayout(var51); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var4); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var35); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var41 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var51); + + } + + public void test148() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test148"); + + + SpaceWar.Bullet var3 = new SpaceWar.Bullet(590.8075763025306d, 25, 10); + + } + + public void test149() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test149"); + + + SpaceWar.Player var0 = new SpaceWar.Player(); + int var1 = var0.getR(); + var0.setRigth(false); + var0.setLife(100); + var0.setDown(false); + var0.setScore(3); + int var10 = var0.getLives(); + int var11 = var0.getX(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 25); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 100); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == 400); + + } + + public void test150() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test150"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + javax.swing.plaf.PanelUI var3 = var0.getUI(); + SpaceWar.SpacePanel var4 = new SpaceWar.SpacePanel(); + float var5 = var4.getAlignmentX(); + var4.setVisible(false); + boolean var8 = var4.isDoubleBuffered(); + java.awt.dnd.DropTarget var9 = var4.getDropTarget(); + var4.show(false); + boolean var12 = var4.isPaintingForPrint(); + SpaceWar.SpacePanel var13 = new SpaceWar.SpacePanel(); + float var14 = var13.getAlignmentX(); + var13.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var19 = var13.getMouseListeners(); + int var20 = var13.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var21 = var13.getInputMethodRequests(); + var4.addKeyListener((java.awt.event.KeyListener)var13); + SpaceWar.SpacePanel var23 = new SpaceWar.SpacePanel(); + float var24 = var23.getAlignmentX(); + var23.setVisible(false); + boolean var27 = var23.isDoubleBuffered(); + var23.list(); + float var29 = var23.getAlignmentY(); + boolean var30 = var13.isFocusCycleRoot((java.awt.Container)var23); + SpaceWar.SpacePanel var32 = new SpaceWar.SpacePanel(); + float var33 = var32.getAlignmentX(); + var32.setVisible(false); + var32.nextFocus(); + var32.updateUI(); + java.awt.Component var38 = var13.add("", (java.awt.Component)var32); + java.awt.ComponentOrientation var39 = var32.getComponentOrientation(); + boolean var40 = var32.isFocusable(); + var0.remove((java.awt.Component)var32); + boolean var42 = var32.isOptimizedDrawingEnabled(); + var32.doLayout(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var9); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var21); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var24 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var29 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var30 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var33 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var38); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var39); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var40 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var42 == true); + + } + + public void test151() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test151"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + java.awt.Dimension var4 = var0.getPreferredSize(); + java.awt.Toolkit var5 = var0.getToolkit(); + boolean var6 = var0.isFocusable(); + javax.swing.KeyStroke[] var7 = var0.getRegisteredKeyStrokes(); + java.awt.Component var10 = var0.getComponentAt(100, 100); + java.lang.Object var11 = var0.getTreeLock(); + var0.grabFocus(); + var0.firePropertyChange("SpaceWar.SpacePanel[,100,0,100x0,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", ' ', 'a'); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var4); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + } + + public void test152() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test152"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + var0.show(false); + boolean var8 = var0.isPaintingForPrint(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var15 = var9.getMouseListeners(); + int var16 = var9.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var17 = var9.getInputMethodRequests(); + var0.addKeyListener((java.awt.event.KeyListener)var9); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + float var20 = var19.getAlignmentX(); + var19.setVisible(false); + boolean var23 = var19.isDoubleBuffered(); + var19.list(); + float var25 = var19.getAlignmentY(); + boolean var26 = var9.isFocusCycleRoot((java.awt.Container)var19); + SpaceWar.SpacePanel var28 = new SpaceWar.SpacePanel(); + float var29 = var28.getAlignmentX(); + var28.setVisible(false); + var28.nextFocus(); + var28.updateUI(); + java.awt.Component var34 = var9.add("", (java.awt.Component)var28); + java.awt.ComponentOrientation var35 = var28.getComponentOrientation(); + boolean var36 = var28.isFocusable(); + SpaceWar.SpacePanel var37 = new SpaceWar.SpacePanel(); + float var38 = var37.getAlignmentX(); + var37.setVisible(false); + var37.nextFocus(); + var37.reshape((-1), 1, (-1), 10); + var37.disable(); + java.awt.LayoutManager var48 = var37.getLayout(); + java.awt.Container var49 = var37.getParent(); + boolean var50 = var37.isOptimizedDrawingEnabled(); + var28.addKeyListener((java.awt.event.KeyListener)var37); + var37.setFocusTraversalPolicyProvider(true); + javax.swing.JPopupMenu var54 = var37.getComponentPopupMenu(); + SpaceWar.SpacePanel var55 = new SpaceWar.SpacePanel(); + float var56 = var55.getAlignmentX(); + var55.setVisible(false); + var55.nextFocus(); + var55.reshape((-1), 1, (-1), 10); + var55.disable(); + java.awt.LayoutManager var66 = var55.getLayout(); + boolean var69 = var55.contains((-1), 0); + SpaceWar.SpacePanel var70 = new SpaceWar.SpacePanel(); + float var71 = var70.getAlignmentX(); + var70.setVisible(false); + var70.nextFocus(); + var70.updateUI(); + var70.enableInputMethods(true); + var70.setSize((-1), 1); + java.awt.Component var81 = var55.add((java.awt.Component)var70); + SpaceWar.SpacePanel var82 = new SpaceWar.SpacePanel(); + float var83 = var82.getAlignmentX(); + var82.setVisible(false); + var82.nextFocus(); + var82.updateUI(); + var82.enableInputMethods(true); + java.lang.String var90 = var82.toString(); + java.awt.FocusTraversalPolicy var91 = var82.getFocusTraversalPolicy(); + var70.removeKeyListener((java.awt.event.KeyListener)var82); + boolean var93 = var82.isShowing(); + java.awt.GraphicsConfiguration var94 = var82.getGraphicsConfiguration(); + java.awt.Cursor var95 = var82.getCursor(); + var37.setCursor(var95); + boolean var97 = var37.isPaintingTile(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var29 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var34); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var35); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var36 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var38 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var48); + + // Regression assertion (captures the current behavior of the code) + assertNull(var49); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var50 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var54); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var56 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var66); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var69 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var71 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var81); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var83 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var90 + "' != '" + "SpaceWar.SpacePanel[,0,0,0var90,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"+ "'", var90.equals("SpaceWar.SpacePanel[,0,0,0var90,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]")); + + // Regression assertion (captures the current behavior of the code) + assertNull(var91); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var93 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var94); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var95); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var97 == false); + + } + + public void test153() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test153"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + var0.setRequestFocusEnabled(false); + var0.reshape(100, 0, 100, 0); + java.beans.VetoableChangeListener[] var10 = var0.getVetoableChangeListeners(); + java.awt.Rectangle var11 = var0.getVisibleRect(); + float var12 = var0.getAlignmentY(); + SpaceWar.SpacePanel var13 = new SpaceWar.SpacePanel(); + float var14 = var13.getAlignmentX(); + var13.setVisible(false); + var13.nextFocus(); + var13.reshape((-1), 1, (-1), 10); + java.util.Set var24 = var13.getFocusTraversalKeys(3); + SpaceWar.SpacePanel var25 = new SpaceWar.SpacePanel(); + float var26 = var25.getAlignmentX(); + var25.setVisible(false); + SpaceWar.SpacePanel var29 = new SpaceWar.SpacePanel(); + java.awt.Color var30 = var29.getBackground(); + var25.setForeground(var30); + SpaceWar.SpacePanel var32 = new SpaceWar.SpacePanel(); + float var33 = var32.getAlignmentX(); + var32.setVisible(false); + boolean var36 = var32.isDoubleBuffered(); + java.awt.dnd.DropTarget var37 = var32.getDropTarget(); + var32.show(false); + java.awt.Rectangle var40 = var32.getVisibleRect(); + var25.repaint(var40); + java.awt.FocusTraversalPolicy var42 = var25.getFocusTraversalPolicy(); + SpaceWar.SpacePanel var43 = new SpaceWar.SpacePanel(); + float var44 = var43.getAlignmentX(); + var43.firePropertyChange("", (-1), 1); + boolean var49 = var43.isFocusOwner(); + SpaceWar.SpacePanel var51 = new SpaceWar.SpacePanel(); + float var52 = var51.getAlignmentX(); + var51.setVisible(false); + java.awt.Dimension var55 = var51.getPreferredSize(); + java.awt.Toolkit var56 = var51.getToolkit(); + SpaceWar.SpacePanel var57 = new SpaceWar.SpacePanel(); + var57.setName(""); + int var60 = var57.getX(); + SpaceWar.SpacePanel var61 = new SpaceWar.SpacePanel(); + float var62 = var61.getAlignmentX(); + var61.setVisible(false); + var61.nextFocus(); + SpaceWar.SpacePanel var66 = new SpaceWar.SpacePanel(); + float var67 = var66.getAlignmentX(); + var66.setVisible(false); + SpaceWar.SpacePanel var70 = new SpaceWar.SpacePanel(); + java.awt.Color var71 = var70.getBackground(); + var66.setForeground(var71); + var61.setBackground(var71); + var57.setBackground(var71); + var51.setForeground(var71); + var43.putClientProperty((java.lang.Object)(byte)100, (java.lang.Object)var71); + var25.setBackground(var71); + SpaceWar.SpacePanel var78 = new SpaceWar.SpacePanel(); + float var79 = var78.getAlignmentX(); + var78.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var84 = new SpaceWar.SpacePanel(); + float var85 = var84.getAlignmentX(); + var84.setVisible(false); + SpaceWar.SpacePanel var88 = new SpaceWar.SpacePanel(); + java.awt.Color var89 = var88.getBackground(); + var84.setForeground(var89); + var78.setBackground(var89); + java.awt.Point var92 = var78.location(); + java.awt.Point var93 = var25.getLocation(var92); + java.awt.Component var94 = var13.findComponentAt(var92); + boolean var95 = var0.contains(var92); + boolean var96 = var0.isFocusTraversalPolicyProvider(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var30); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var33 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var36 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var37); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var40); + + // Regression assertion (captures the current behavior of the code) + assertNull(var42); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var44 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var49 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var52 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var55); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var56); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var60 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var62 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var67 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var71); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var79 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var85 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var89); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var92); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var93); + + // Regression assertion (captures the current behavior of the code) + assertNull(var94); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var95 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var96 == false); + + } + + public void test154() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test154"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var6 = var0.getMouseListeners(); + var0.firePropertyChange("", 0.5f, 100.0f); + var0.enable(false); + int var13 = var0.getDebugGraphicsOptions(); + var0.repaint((-1L)); + java.awt.event.HierarchyListener[] var16 = var0.getHierarchyListeners(); + // The following exception was thrown during execution. + // This behavior will recorded for regression testing. + try { + javax.swing.InputMap var18 = var0.getInputMap(399); + fail("Expected exception of type java.lang.IllegalArgumentException"); + } catch (java.lang.IllegalArgumentException e) { + // Expected exception. + } + + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + } + + public void test155() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test155"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + float var7 = var6.getAlignmentX(); + var6.setVisible(false); + java.awt.Dimension var10 = var6.getPreferredSize(); + var0.setMaximumSize(var10); + boolean var12 = var0.getVerifyInputWhenFocusTarget(); + javax.accessibility.AccessibleContext var13 = var0.getAccessibleContext(); + boolean var14 = var0.isOpaque(); + java.lang.String var15 = var0.toString(); + SpaceWar.SpacePanel var16 = new SpaceWar.SpacePanel(); + java.awt.Color var17 = var16.getBackground(); + boolean var20 = var16.inside(0, (-1)); + SpaceWar.SpacePanel var21 = new SpaceWar.SpacePanel(); + float var22 = var21.getAlignmentX(); + var21.setVisible(false); + SpaceWar.SpacePanel var25 = new SpaceWar.SpacePanel(); + java.awt.Color var26 = var25.getBackground(); + var21.setForeground(var26); + var16.setForeground(var26); + java.awt.event.MouseMotionListener[] var29 = var16.getMouseMotionListeners(); + SpaceWar.SpacePanel var31 = new SpaceWar.SpacePanel(); + float var32 = var31.getAlignmentX(); + var31.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var37 = var31.getMouseListeners(); + int var38 = var31.getDebugGraphicsOptions(); + javax.swing.event.AncestorListener[] var39 = var31.getAncestorListeners(); + java.awt.Component var40 = var16.add("SpaceWar.SpacePanel[,0,0,0x0,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", (java.awt.Component)var31); + boolean var41 = var0.isAncestorOf(var40); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var15 + "' != '" + "SpaceWar.SpacePanel[,0,0,0var15,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=java.awt.Dimension[width=800,height=600],minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"+ "'", var15.equals("SpaceWar.SpacePanel[,0,0,0var15,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=java.awt.Dimension[width=800,height=600],minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]")); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var22 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var29); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var32 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var37); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var38 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var39); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var40); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var41 == false); + + } + + public void test156() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test156"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + var0.show(false); + boolean var8 = var0.isPaintingForPrint(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var15 = var9.getMouseListeners(); + int var16 = var9.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var17 = var9.getInputMethodRequests(); + var0.addKeyListener((java.awt.event.KeyListener)var9); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + float var20 = var19.getAlignmentX(); + var19.setVisible(false); + boolean var23 = var19.isDoubleBuffered(); + var19.list(); + float var25 = var19.getAlignmentY(); + boolean var26 = var9.isFocusCycleRoot((java.awt.Container)var19); + SpaceWar.SpacePanel var28 = new SpaceWar.SpacePanel(); + float var29 = var28.getAlignmentX(); + var28.setVisible(false); + var28.nextFocus(); + var28.updateUI(); + java.awt.Component var34 = var9.add("", (java.awt.Component)var28); + java.awt.ComponentOrientation var35 = var28.getComponentOrientation(); + java.awt.Point var37 = var28.getMousePosition(true); + java.awt.Dimension var38 = var28.getMaximumSize(); + java.awt.ComponentOrientation var39 = var28.getComponentOrientation(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var29 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var34); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var35); + + // Regression assertion (captures the current behavior of the code) + assertNull(var37); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var38); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var39); + + } + + public void test157() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test157"); + + + SpaceWar.Player var0 = new SpaceWar.Player(); + int var1 = var0.getR(); + var0.setUp(false); + int var4 = var0.getLives(); + var0.setScore(0); + int var7 = var0.getPowerLevel(); + int var8 = var0.getR(); + var0.update(); + var0.increasePower(10); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 25); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 3); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 25); + + } + + public void test158() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test158"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + java.awt.im.InputMethodRequests var3 = var0.getInputMethodRequests(); + int var4 = var0.countComponents(); + java.awt.event.ComponentListener[] var5 = var0.getComponentListeners(); + var0.transferFocusBackward(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + boolean var12 = var8.isDoubleBuffered(); + var8.enable(false); + SpaceWar.SpacePanel var15 = new SpaceWar.SpacePanel(); + float var16 = var15.getAlignmentX(); + boolean var17 = var15.hasFocus(); + java.awt.Insets var18 = var15.getInsets(); + java.awt.Rectangle var19 = var15.bounds(); + var8.repaint(var19); + java.awt.Component var21 = var0.add("", (java.awt.Component)var8); + boolean var22 = var8.isEnabled(); + int var23 = var8.getX(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var21); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var22 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == 0); + + } + + public void test159() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test159"); + + + SpaceWar.Enemy var2 = new SpaceWar.Enemy(0, 10); + int var3 = var2.getRank(); + var2.update(); + var2.hit(); + int var6 = var2.getRank(); + boolean var7 = var2.isDead(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == 10); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == 10); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == true); + + } + + public void test160() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test160"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var6 = var0.getMouseListeners(); + var0.firePropertyChange("", 0.5f, 100.0f); + var0.enable(false); + boolean var13 = var0.isOpaque(); + var0.requestFocus(); + java.awt.Rectangle var15 = var0.getVisibleRect(); + java.awt.Insets var16 = var0.insets(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + } + + public void test161() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test161"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.updateUI(); + var0.enableInputMethods(true); + var0.setSize((-1), 1); + boolean var13 = var0.contains(1, 1); + javax.swing.TransferHandler var14 = var0.getTransferHandler(); + SpaceWar.SpacePanel var15 = new SpaceWar.SpacePanel(); + float var16 = var15.getAlignmentX(); + var15.setVisible(false); + boolean var19 = var15.isDoubleBuffered(); + var15.enable(false); + java.lang.Object var22 = var0.getClientProperty((java.lang.Object)false); + boolean var23 = javax.swing.JComponent.isLightweightComponent((java.awt.Component)var0); + java.lang.String var24 = var0.getUIClassID(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var24 + "' != '" + "PanelUI"+ "'", var24.equals("PanelUI")); + + } + + public void test162() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test162"); + + + SpaceWar.PowerUp var3 = new SpaceWar.PowerUp(100, (-1.0d), 0.0d); + double var4 = var3.getR(); + int var5 = var3.getType(); + double var6 = var3.getX(); + int var7 = var3.getType(); + double var8 = var3.getY(); + double var9 = var3.getY(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0.0d); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == 100); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == (-1.0d)); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 100); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 0.0d); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.0d); + + } + + public void test163() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test163"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.reshape((-1), 1, (-1), 10); + var0.disable(); + boolean var11 = var0.isFocusable(); + SpaceWar.SpacePanel var12 = new SpaceWar.SpacePanel(); + float var13 = var12.getAlignmentX(); + var12.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var18 = var12.getUI(); + java.awt.im.InputMethodRequests var19 = var12.getInputMethodRequests(); + SpaceWar.SpacePanel var20 = new SpaceWar.SpacePanel(); + float var21 = var20.getAlignmentX(); + var20.setVisible(false); + var20.nextFocus(); + var20.updateUI(); + var20.enableInputMethods(true); + var20.setSize((-1), 1); + SpaceWar.SpacePanel var31 = new SpaceWar.SpacePanel(); + var31.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var12.add((java.awt.Component)var20, (java.lang.Object)"SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + java.awt.event.KeyListener[] var37 = var12.getKeyListeners(); + java.awt.FocusTraversalPolicy var38 = var12.getFocusTraversalPolicy(); + SpaceWar.SpacePanel var39 = new SpaceWar.SpacePanel(); + var39.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + java.awt.Toolkit var44 = var39.getToolkit(); + var0.add((java.awt.Component)var12, (java.lang.Object)var39); + var12.transferFocusDownCycle(); + boolean var47 = var12.isVisible(); + boolean var48 = var12.getFocusTraversalKeysEnabled(); + java.awt.Container var49 = var12.getParent(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var37); + + // Regression assertion (captures the current behavior of the code) + assertNull(var38); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var44); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var47 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var48 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var49); + + } + + public void test164() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test164"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + java.awt.im.InputMethodRequests var3 = var0.getInputMethodRequests(); + var0.setDoubleBuffered(true); + var0.setInheritsPopupMenu(false); + var0.invalidate(); + var0.setRequestFocusEnabled(true); + SpaceWar.SpacePanel var11 = new SpaceWar.SpacePanel(); + float var12 = var11.getAlignmentX(); + var11.setVisible(false); + SpaceWar.SpacePanel var15 = new SpaceWar.SpacePanel(); + java.awt.Color var16 = var15.getBackground(); + var11.setForeground(var16); + SpaceWar.SpacePanel var18 = new SpaceWar.SpacePanel(); + float var19 = var18.getAlignmentX(); + var18.setVisible(false); + boolean var22 = var18.isDoubleBuffered(); + java.awt.dnd.DropTarget var23 = var18.getDropTarget(); + var18.show(false); + java.awt.Rectangle var26 = var18.getVisibleRect(); + var11.repaint(var26); + java.awt.FocusTraversalPolicy var28 = var11.getFocusTraversalPolicy(); + java.awt.im.InputMethodRequests var29 = var11.getInputMethodRequests(); + var11.layout(); + SpaceWar.SpacePanel var31 = new SpaceWar.SpacePanel(); + float var32 = var31.getAlignmentX(); + var31.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var37 = new SpaceWar.SpacePanel(); + float var38 = var37.getAlignmentX(); + var37.setVisible(false); + SpaceWar.SpacePanel var41 = new SpaceWar.SpacePanel(); + java.awt.Color var42 = var41.getBackground(); + var37.setForeground(var42); + var31.setBackground(var42); + var11.setForeground(var42); + int var46 = var11.getWidth(); + int var47 = var0.getComponentZOrder((java.awt.Component)var11); + var11.validate(); + boolean var49 = var11.isMinimumSizeSet(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var22 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var23); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertNull(var28); + + // Regression assertion (captures the current behavior of the code) + assertNull(var29); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var32 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var38 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var42); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var46 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var47 == (-1)); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var49 == false); + + } + + public void test165() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test165"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + var0.enable(false); + boolean var7 = var0.getFocusTraversalKeysEnabled(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + java.awt.Dimension var12 = var8.getPreferredSize(); + java.awt.Toolkit var13 = var8.getToolkit(); + boolean var14 = var8.isFocusable(); + javax.swing.KeyStroke[] var15 = var8.getRegisteredKeyStrokes(); + SpaceWar.SpacePanel var16 = new SpaceWar.SpacePanel(); + float var17 = var16.getAlignmentX(); + SpaceWar.SpacePanel var18 = new SpaceWar.SpacePanel(); + float var19 = var18.getAlignmentX(); + var18.setVisible(false); + java.awt.Dimension var22 = var18.getPreferredSize(); + boolean var23 = var18.getVerifyInputWhenFocusTarget(); + java.awt.Component var26 = var18.findComponentAt(10, 1); + var16.addKeyListener((java.awt.event.KeyListener)var18); + var18.repaint(100, (-1), (-1), 1); + boolean var33 = var8.isAncestorOf((java.awt.Component)var18); + var0.addKeyListener((java.awt.event.KeyListener)var18); + SpaceWar.SpacePanel var35 = new SpaceWar.SpacePanel(); + float var36 = var35.getAlignmentX(); + var35.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var41 = var35.getUI(); + java.awt.im.InputMethodRequests var42 = var35.getInputMethodRequests(); + SpaceWar.SpacePanel var43 = new SpaceWar.SpacePanel(); + float var44 = var43.getAlignmentX(); + var43.setVisible(false); + var43.nextFocus(); + var43.updateUI(); + var43.enableInputMethods(true); + var43.setSize((-1), 1); + SpaceWar.SpacePanel var54 = new SpaceWar.SpacePanel(); + var54.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var35.add((java.awt.Component)var43, (java.lang.Object)"SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + SpaceWar.SpacePanel var60 = new SpaceWar.SpacePanel(); + float var61 = var60.getAlignmentX(); + var60.setVisible(false); + var60.setInheritsPopupMenu(false); + boolean var66 = var60.isDoubleBuffered(); + boolean var67 = var60.isMinimumSizeSet(); + SpaceWar.SpacePanel var68 = new SpaceWar.SpacePanel(); + float var69 = var68.getAlignmentX(); + var68.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var74 = new SpaceWar.SpacePanel(); + float var75 = var74.getAlignmentX(); + var74.setVisible(false); + java.awt.Dimension var78 = var74.getPreferredSize(); + var68.setMaximumSize(var78); + boolean var80 = var68.getVerifyInputWhenFocusTarget(); + javax.accessibility.AccessibleContext var81 = var68.getAccessibleContext(); + boolean var82 = var68.isDoubleBuffered(); + java.awt.Rectangle var83 = var68.getVisibleRect(); + var60.setBounds(var83); + java.awt.Rectangle var85 = var35.getBounds(var83); + var18.setBounds(var85); + java.awt.im.InputContext var87 = var18.getInputContext(); + boolean var88 = var18.requestDefaultFocus(); + var18.setEnabled(true); + javax.swing.InputVerifier var91 = var18.getInputVerifier(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var33 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var36 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var41); + + // Regression assertion (captures the current behavior of the code) + assertNull(var42); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var44 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var61 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var66 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var67 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var69 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var75 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var78); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var80 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var81); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var82 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var83); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var85); + + // Regression assertion (captures the current behavior of the code) + assertNull(var87); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var88 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var91); + + } + + public void test166() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test166"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + var0.show(false); + boolean var8 = var0.isPaintingForPrint(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var15 = var9.getMouseListeners(); + int var16 = var9.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var17 = var9.getInputMethodRequests(); + var0.addKeyListener((java.awt.event.KeyListener)var9); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + float var20 = var19.getAlignmentX(); + var19.setVisible(false); + boolean var23 = var19.isDoubleBuffered(); + var19.list(); + float var25 = var19.getAlignmentY(); + boolean var26 = var9.isFocusCycleRoot((java.awt.Container)var19); + java.awt.event.MouseListener[] var27 = var19.getMouseListeners(); + var19.setFocusCycleRoot(true); + float var30 = var19.getAlignmentY(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var27); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var30 == 0.5f); + + } + + public void test167() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test167"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + java.lang.String var2 = var0.toString(); + var0.setAlignmentX(0.5f); + SpaceWar.SpacePanel var5 = new SpaceWar.SpacePanel(); + float var6 = var5.getAlignmentX(); + var5.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var11 = var5.getUI(); + java.awt.im.InputMethodRequests var12 = var5.getInputMethodRequests(); + SpaceWar.SpacePanel var13 = new SpaceWar.SpacePanel(); + float var14 = var13.getAlignmentX(); + var13.setVisible(false); + var13.nextFocus(); + var13.updateUI(); + var13.enableInputMethods(true); + var13.setSize((-1), 1); + SpaceWar.SpacePanel var24 = new SpaceWar.SpacePanel(); + var24.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var5.add((java.awt.Component)var13, (java.lang.Object)"SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + SpaceWar.SpacePanel var30 = new SpaceWar.SpacePanel(); + float var31 = var30.getAlignmentX(); + var30.setVisible(false); + java.awt.Dimension var34 = var30.getPreferredSize(); + java.awt.Toolkit var35 = var30.getToolkit(); + java.awt.Toolkit var36 = var30.getToolkit(); + java.awt.Component var37 = var13.add((java.awt.Component)var30); + int var38 = var13.getY(); + int var41 = var13.getBaseline(25, 10); + var0.setComponentZOrder((java.awt.Component)var13, 0); + java.awt.event.HierarchyBoundsListener[] var44 = var13.getHierarchyBoundsListeners(); + SpaceWar.SpacePanel var45 = new SpaceWar.SpacePanel(); + float var46 = var45.getAlignmentX(); + var45.setVisible(false); + SpaceWar.SpacePanel var49 = new SpaceWar.SpacePanel(); + java.awt.Color var50 = var49.getBackground(); + var45.setForeground(var50); + SpaceWar.SpacePanel var52 = new SpaceWar.SpacePanel(); + float var53 = var52.getAlignmentX(); + var52.setVisible(false); + boolean var56 = var52.isDoubleBuffered(); + java.awt.dnd.DropTarget var57 = var52.getDropTarget(); + var52.show(false); + java.awt.Rectangle var60 = var52.getVisibleRect(); + var45.repaint(var60); + java.awt.FocusTraversalPolicy var62 = var45.getFocusTraversalPolicy(); + java.awt.im.InputMethodRequests var63 = var45.getInputMethodRequests(); + var45.layout(); + java.awt.Point var65 = var45.getMousePosition(); + java.awt.Graphics var66 = var45.getGraphics(); + javax.swing.TransferHandler var67 = var45.getTransferHandler(); + int var68 = var13.getComponentZOrder((java.awt.Component)var45); + java.awt.Dimension var69 = var13.getMinimumSize(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var2 + "' != '" + "SpaceWar.SpacePanel[,0,0,0var2,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"+ "'", var2.equals("SpaceWar.SpacePanel[,0,0,0var2,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]")); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var31 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var34); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var35); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var36); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var37); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var38 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var41 == (-1)); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var44); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var46 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var50); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var53 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var56 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var57); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var60); + + // Regression assertion (captures the current behavior of the code) + assertNull(var62); + + // Regression assertion (captures the current behavior of the code) + assertNull(var63); + + // Regression assertion (captures the current behavior of the code) + assertNull(var65); + + // Regression assertion (captures the current behavior of the code) + assertNull(var66); + + // Regression assertion (captures the current behavior of the code) + assertNull(var67); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var68 == (-1)); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var69); + + } + + public void test168() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test168"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + boolean var4 = var0.inside(0, (-1)); + var0.transferFocusUpCycle(); + java.awt.Container var6 = var0.getParent(); + SpaceWar.SpacePanel var7 = new SpaceWar.SpacePanel(); + float var8 = var7.getAlignmentX(); + var7.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var13 = var7.getUI(); + java.awt.im.InputMethodRequests var14 = var7.getInputMethodRequests(); + SpaceWar.SpacePanel var15 = new SpaceWar.SpacePanel(); + float var16 = var15.getAlignmentX(); + var15.setVisible(false); + var15.nextFocus(); + var15.updateUI(); + var15.enableInputMethods(true); + var15.setSize((-1), 1); + SpaceWar.SpacePanel var26 = new SpaceWar.SpacePanel(); + var26.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var7.add((java.awt.Component)var15, (java.lang.Object)"SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + SpaceWar.SpacePanel var32 = new SpaceWar.SpacePanel(); + float var33 = var32.getAlignmentX(); + var32.setVisible(false); + java.awt.Dimension var36 = var32.getPreferredSize(); + java.awt.Toolkit var37 = var32.getToolkit(); + java.awt.Toolkit var38 = var32.getToolkit(); + java.awt.Component var39 = var15.add((java.awt.Component)var32); + var39.firePropertyChange("", 0.5f, 10.0f); + SpaceWar.SpacePanel var44 = new SpaceWar.SpacePanel(); + float var45 = var44.getAlignmentX(); + var44.setVisible(false); + var44.setInheritsPopupMenu(false); + var44.move(10, 10); + var44.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + java.awt.Rectangle var57 = var44.bounds(); + var39.setBounds(var57); + var0.scrollRectToVisible(var57); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var33 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var36); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var37); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var38); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var39); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var45 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var57); + + } + + public void test169() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test169"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.requestFocus(); + boolean var6 = var0.isBackgroundSet(); + SpaceWar.SpacePanel var7 = new SpaceWar.SpacePanel(); + java.awt.Color var8 = var7.getBackground(); + var7.repaint(); + var7.setRequestFocusEnabled(false); + var7.reshape(100, 0, 100, 0); + SpaceWar.SpacePanel var17 = new SpaceWar.SpacePanel(); + float var18 = var17.getAlignmentX(); + var17.setVisible(false); + var17.setInheritsPopupMenu(false); + boolean var23 = var17.isDoubleBuffered(); + SpaceWar.SpacePanel var24 = new SpaceWar.SpacePanel(); + float var25 = var24.getAlignmentX(); + var24.setVisible(false); + var24.nextFocus(); + var24.reshape((-1), 1, (-1), 10); + var24.disable(); + java.awt.LayoutManager var35 = var24.getLayout(); + var17.setLayout(var35); + var0.add((java.awt.Component)var7, (java.lang.Object)var35); + SpaceWar.SpacePanel var38 = new SpaceWar.SpacePanel(); + float var39 = var38.getAlignmentX(); + var38.setVisible(false); + java.awt.Dimension var42 = var38.getPreferredSize(); + java.awt.Toolkit var43 = var38.getToolkit(); + boolean var44 = var38.isFocusable(); + javax.swing.KeyStroke[] var45 = var38.getRegisteredKeyStrokes(); + SpaceWar.SpacePanel var46 = new SpaceWar.SpacePanel(); + float var47 = var46.getAlignmentX(); + SpaceWar.SpacePanel var48 = new SpaceWar.SpacePanel(); + float var49 = var48.getAlignmentX(); + var48.setVisible(false); + java.awt.Dimension var52 = var48.getPreferredSize(); + boolean var53 = var48.getVerifyInputWhenFocusTarget(); + java.awt.Component var56 = var48.findComponentAt(10, 1); + var46.addKeyListener((java.awt.event.KeyListener)var48); + var48.repaint(100, (-1), (-1), 1); + boolean var63 = var38.isAncestorOf((java.awt.Component)var48); + var38.setFocusable(false); + boolean var66 = var7.isAncestorOf((java.awt.Component)var38); + java.awt.event.HierarchyListener[] var67 = var38.getHierarchyListeners(); + SpaceWar.SpacePanel var68 = new SpaceWar.SpacePanel(); + java.awt.Color var69 = var68.getBackground(); + var68.repaint(); + var68.setRequestFocusEnabled(false); + var68.reshape(100, 0, 100, 0); + javax.swing.event.AncestorListener[] var78 = var68.getAncestorListeners(); + SpaceWar.SpacePanel var79 = new SpaceWar.SpacePanel(); + float var80 = var79.getAlignmentX(); + SpaceWar.SpacePanel var81 = new SpaceWar.SpacePanel(); + float var82 = var81.getAlignmentX(); + var81.setVisible(false); + java.awt.Dimension var85 = var81.getPreferredSize(); + boolean var86 = var81.getVerifyInputWhenFocusTarget(); + java.awt.Component var89 = var81.findComponentAt(10, 1); + var79.addKeyListener((java.awt.event.KeyListener)var81); + java.awt.Cursor var91 = var79.getCursor(); + var68.setCursor(var91); + var38.setCursor(var91); + boolean var94 = var38.getFocusTraversalKeysEnabled(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var35); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var39 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var42); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var43); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var44 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var45); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var47 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var49 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var52); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var53 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var56); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var63 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var66 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var67); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var69); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var78); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var80 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var82 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var85); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var86 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var89); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var91); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var94 == true); + + } + + public void test170() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test170"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var6 = var0.getUI(); + var0.disable(); + java.awt.im.InputContext var8 = var0.getInputContext(); + var0.repaint(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertNull(var8); + + } + + public void test171() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test171"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + float var7 = var6.getAlignmentX(); + var6.setVisible(false); + SpaceWar.SpacePanel var10 = new SpaceWar.SpacePanel(); + java.awt.Color var11 = var10.getBackground(); + var6.setForeground(var11); + var0.setBackground(var11); + java.awt.Point var14 = var0.location(); + java.awt.Image var17 = var0.createImage((-1), 10); + int var18 = var0.getWidth(); + java.awt.image.BufferedImage var20 = var0.loadImg("SpaceWar.SpacePanel[,499,2,499x500,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var20); + + } + + public void test172() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test172"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var1 = new SpaceWar.SpacePanel(); + java.awt.Color var2 = var1.getBackground(); + SpaceWar.SpacePanel var3 = new SpaceWar.SpacePanel(); + float var4 = var3.getAlignmentX(); + var3.setVisible(false); + var3.nextFocus(); + var3.updateUI(); + var3.enableInputMethods(true); + var0.add((java.awt.Component)var1, (java.lang.Object)true); + boolean var13 = var1.areFocusTraversalKeysSet(0); + SpaceWar.SpacePanel var14 = new SpaceWar.SpacePanel(); + float var15 = var14.getAlignmentX(); + var14.setVisible(false); + SpaceWar.SpacePanel var18 = new SpaceWar.SpacePanel(); + java.awt.Color var19 = var18.getBackground(); + var14.setForeground(var19); + SpaceWar.SpacePanel var21 = new SpaceWar.SpacePanel(); + float var22 = var21.getAlignmentX(); + var21.setVisible(false); + boolean var25 = var21.isDoubleBuffered(); + java.awt.dnd.DropTarget var26 = var21.getDropTarget(); + var21.show(false); + java.awt.Rectangle var29 = var21.getVisibleRect(); + var14.repaint(var29); + java.awt.FocusTraversalPolicy var31 = var14.getFocusTraversalPolicy(); + SpaceWar.SpacePanel var32 = new SpaceWar.SpacePanel(); + float var33 = var32.getAlignmentX(); + var32.firePropertyChange("", (-1), 1); + boolean var38 = var32.isFocusOwner(); + SpaceWar.SpacePanel var40 = new SpaceWar.SpacePanel(); + float var41 = var40.getAlignmentX(); + var40.setVisible(false); + java.awt.Dimension var44 = var40.getPreferredSize(); + java.awt.Toolkit var45 = var40.getToolkit(); + SpaceWar.SpacePanel var46 = new SpaceWar.SpacePanel(); + var46.setName(""); + int var49 = var46.getX(); + SpaceWar.SpacePanel var50 = new SpaceWar.SpacePanel(); + float var51 = var50.getAlignmentX(); + var50.setVisible(false); + var50.nextFocus(); + SpaceWar.SpacePanel var55 = new SpaceWar.SpacePanel(); + float var56 = var55.getAlignmentX(); + var55.setVisible(false); + SpaceWar.SpacePanel var59 = new SpaceWar.SpacePanel(); + java.awt.Color var60 = var59.getBackground(); + var55.setForeground(var60); + var50.setBackground(var60); + var46.setBackground(var60); + var40.setForeground(var60); + var32.putClientProperty((java.lang.Object)(byte)100, (java.lang.Object)var60); + var14.setBackground(var60); + SpaceWar.SpacePanel var67 = new SpaceWar.SpacePanel(); + float var68 = var67.getAlignmentX(); + var67.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var73 = new SpaceWar.SpacePanel(); + float var74 = var73.getAlignmentX(); + var73.setVisible(false); + SpaceWar.SpacePanel var77 = new SpaceWar.SpacePanel(); + java.awt.Color var78 = var77.getBackground(); + var73.setForeground(var78); + var67.setBackground(var78); + java.awt.Point var81 = var67.location(); + java.awt.Point var82 = var14.getLocation(var81); + boolean var83 = var1.contains(var82); + boolean var84 = var1.isDisplayable(); + boolean var85 = var1.isFocusTraversalPolicyProvider(); + java.awt.Rectangle var86 = var1.bounds(); + java.beans.VetoableChangeListener[] var87 = var1.getVetoableChangeListeners(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var2); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var22 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var29); + + // Regression assertion (captures the current behavior of the code) + assertNull(var31); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var33 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var38 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var41 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var44); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var45); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var49 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var51 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var56 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var60); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var68 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var74 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var78); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var81); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var82); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var83 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var84 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var85 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var86); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var87); + + } + + public void test173() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test173"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + SpaceWar.SpacePanel var2 = new SpaceWar.SpacePanel(); + float var3 = var2.getAlignmentX(); + var2.setVisible(false); + java.awt.Dimension var6 = var2.getPreferredSize(); + boolean var7 = var2.getVerifyInputWhenFocusTarget(); + java.awt.Component var10 = var2.findComponentAt(10, 1); + var0.addKeyListener((java.awt.event.KeyListener)var2); + java.awt.Dimension var12 = var2.getMinimumSize(); + java.awt.Point var13 = var2.location(); + SpaceWar.SpacePanel var14 = new SpaceWar.SpacePanel(); + java.awt.Color var15 = var14.getBackground(); + var14.repaint(); + java.awt.im.InputMethodRequests var17 = var14.getInputMethodRequests(); + int var18 = var14.countComponents(); + java.awt.event.ComponentListener[] var19 = var14.getComponentListeners(); + var14.removeNotify(); + javax.swing.InputMap var21 = var14.getInputMap(); + SpaceWar.SpacePanel var22 = new SpaceWar.SpacePanel(); + float var23 = var22.getAlignmentX(); + var22.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var28 = new SpaceWar.SpacePanel(); + float var29 = var28.getAlignmentX(); + var28.setVisible(false); + SpaceWar.SpacePanel var32 = new SpaceWar.SpacePanel(); + java.awt.Color var33 = var32.getBackground(); + var28.setForeground(var33); + var22.setBackground(var33); + java.awt.Point var36 = var22.location(); + var14.setLocation(var36); + java.awt.Component var38 = var2.findComponentAt(var36); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var21); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var29 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var33); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var36); + + // Regression assertion (captures the current behavior of the code) + assertNull(var38); + + } + + public void test174() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test174"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + java.awt.im.InputMethodRequests var3 = var0.getInputMethodRequests(); + var0.setDoubleBuffered(true); + var0.setInheritsPopupMenu(false); + var0.invalidate(); + boolean var9 = var0.isOpaque(); + var0.updateUI(); + SpaceWar.SpacePanel var11 = new SpaceWar.SpacePanel(); + float var12 = var11.getAlignmentX(); + var11.firePropertyChange("", (-1), 1); + java.awt.Rectangle var17 = var11.getVisibleRect(); + java.awt.event.MouseListener[] var18 = var11.getMouseListeners(); + int var19 = var11.getDebugGraphicsOptions(); + SpaceWar.SpacePanel var20 = new SpaceWar.SpacePanel(); + float var21 = var20.getAlignmentX(); + var20.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var26 = var20.getUI(); + java.awt.im.InputMethodRequests var27 = var20.getInputMethodRequests(); + SpaceWar.SpacePanel var28 = new SpaceWar.SpacePanel(); + float var29 = var28.getAlignmentX(); + var28.setVisible(false); + var28.nextFocus(); + var28.updateUI(); + var28.enableInputMethods(true); + var28.setSize((-1), 1); + SpaceWar.SpacePanel var39 = new SpaceWar.SpacePanel(); + var39.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var20.add((java.awt.Component)var28, (java.lang.Object)"SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + SpaceWar.SpacePanel var45 = new SpaceWar.SpacePanel(); + float var46 = var45.getAlignmentX(); + var45.setVisible(false); + java.awt.Dimension var49 = var45.getPreferredSize(); + java.awt.Toolkit var50 = var45.getToolkit(); + java.awt.Toolkit var51 = var45.getToolkit(); + java.awt.Component var52 = var28.add((java.awt.Component)var45); + int var53 = var28.getY(); + int var56 = var28.getBaseline(25, 10); + java.awt.im.InputMethodRequests var57 = var28.getInputMethodRequests(); + SpaceWar.SpacePanel var58 = new SpaceWar.SpacePanel(); + float var59 = var58.getAlignmentX(); + var58.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var64 = new SpaceWar.SpacePanel(); + float var65 = var64.getAlignmentX(); + var64.setVisible(false); + java.awt.Dimension var68 = var64.getPreferredSize(); + var58.setMaximumSize(var68); + boolean var70 = var58.getVerifyInputWhenFocusTarget(); + var58.transferFocusUpCycle(); + java.awt.Point var72 = var58.location(); + java.awt.Point var73 = var28.getLocation(var72); + java.awt.Component var74 = var11.getComponentAt(var72); + java.awt.Component var75 = var0.findComponentAt(var72); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertNull(var27); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var29 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var46 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var49); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var50); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var51); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var52); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var53 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var56 == (-1)); + + // Regression assertion (captures the current behavior of the code) + assertNull(var57); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var59 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var65 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var68); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var70 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var72); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var73); + + // Regression assertion (captures the current behavior of the code) + assertNull(var74); + + // Regression assertion (captures the current behavior of the code) + assertNull(var75); + + } + + public void test175() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test175"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + boolean var2 = var0.hasFocus(); + java.beans.VetoableChangeListener[] var3 = var0.getVetoableChangeListeners(); + var0.paintImmediately(10, 0, (-1), 25); + boolean var9 = var0.getInheritsPopupMenu(); + var0.resize(500, 10); + SpaceWar.SpacePanel var13 = new SpaceWar.SpacePanel(); + float var14 = var13.getAlignmentX(); + var13.setVisible(false); + boolean var17 = var13.isDoubleBuffered(); + SpaceWar.SpacePanel var18 = new SpaceWar.SpacePanel(); + float var19 = var18.getAlignmentX(); + var18.setVisible(false); + var18.nextFocus(); + var18.reshape((-1), 1, (-1), 10); + var18.disable(); + boolean var29 = var18.isFocusable(); + int var30 = var18.getHeight(); + var13.setNextFocusableComponent((java.awt.Component)var18); + SpaceWar.SpacePanel var32 = new SpaceWar.SpacePanel(); + float var33 = var32.getAlignmentX(); + var32.setVisible(false); + var32.nextFocus(); + SpaceWar.SpacePanel var37 = new SpaceWar.SpacePanel(); + float var38 = var37.getAlignmentX(); + var37.setVisible(false); + SpaceWar.SpacePanel var41 = new SpaceWar.SpacePanel(); + java.awt.Color var42 = var41.getBackground(); + var37.setForeground(var42); + var32.setBackground(var42); + java.awt.Component var45 = var32.getNextFocusableComponent(); + float var46 = var32.getAlignmentY(); + java.awt.event.MouseListener[] var47 = var32.getMouseListeners(); + java.awt.Point var48 = var32.location(); + java.awt.Point var49 = var13.getLocation(var48); + var0.setLocation(var49); + var0.setSize(2, 3); + SpaceWar.Player var54 = new SpaceWar.Player(); + boolean var55 = var54.isRecovering(); + var54.setRigth(false); + int var58 = var54.getPower(); + boolean var59 = var54.isDead(); + SpaceWar.SpacePanel var60 = new SpaceWar.SpacePanel(); + java.awt.Color var61 = var60.getBackground(); + var60.repaint(); + java.awt.im.InputMethodRequests var63 = var60.getInputMethodRequests(); + var60.setDoubleBuffered(true); + var60.setInheritsPopupMenu(false); + boolean var68 = var60.isFocusTraversalPolicySet(); + var0.putClientProperty((java.lang.Object)var54, (java.lang.Object)var68); + var0.setDebugGraphicsOptions(99); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var2 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var29 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var30 == 10); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var33 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var38 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var42); + + // Regression assertion (captures the current behavior of the code) + assertNull(var45); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var46 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var47); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var48); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var49); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var55 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var58 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var59 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var61); + + // Regression assertion (captures the current behavior of the code) + assertNull(var63); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var68 == false); + + } + + public void test176() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test176"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var6 = var0.getUI(); + java.awt.im.InputMethodRequests var7 = var0.getInputMethodRequests(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + var8.nextFocus(); + var8.updateUI(); + var8.enableInputMethods(true); + var8.setSize((-1), 1); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + var19.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var0.add((java.awt.Component)var8, (java.lang.Object)"SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + java.awt.event.KeyListener[] var25 = var0.getKeyListeners(); + SpaceWar.SpacePanel var26 = new SpaceWar.SpacePanel(); + float var27 = var26.getAlignmentX(); + var26.setVisible(false); + var26.setInheritsPopupMenu(false); + var26.setFocusTraversalPolicyProvider(true); + boolean var36 = var26.inside(25, 3); + SpaceWar.SpacePanel var37 = new SpaceWar.SpacePanel(); + float var38 = var37.getAlignmentX(); + var37.setVisible(false); + boolean var41 = var37.isDoubleBuffered(); + java.awt.dnd.DropTarget var42 = var37.getDropTarget(); + var37.show(false); + boolean var45 = var37.isPaintingForPrint(); + SpaceWar.SpacePanel var46 = new SpaceWar.SpacePanel(); + float var47 = var46.getAlignmentX(); + SpaceWar.SpacePanel var48 = new SpaceWar.SpacePanel(); + float var49 = var48.getAlignmentX(); + var48.setVisible(false); + java.awt.Dimension var52 = var48.getPreferredSize(); + boolean var53 = var48.getVerifyInputWhenFocusTarget(); + java.awt.Component var56 = var48.findComponentAt(10, 1); + var46.addKeyListener((java.awt.event.KeyListener)var48); + java.awt.Dimension var58 = var48.getMinimumSize(); + var37.setMinimumSize(var58); + var26.setPreferredSize(var58); + SpaceWar.SpacePanel var61 = new SpaceWar.SpacePanel(); + float var62 = var61.getAlignmentX(); + var61.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var67 = var61.getUI(); + java.awt.im.InputMethodRequests var68 = var61.getInputMethodRequests(); + SpaceWar.SpacePanel var69 = new SpaceWar.SpacePanel(); + float var70 = var69.getAlignmentX(); + var69.setVisible(false); + var69.nextFocus(); + var69.updateUI(); + var69.enableInputMethods(true); + var69.setSize((-1), 1); + SpaceWar.SpacePanel var80 = new SpaceWar.SpacePanel(); + var80.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var61.add((java.awt.Component)var69, (java.lang.Object)"SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + SpaceWar.SpacePanel var86 = new SpaceWar.SpacePanel(); + var86.setName(""); + java.awt.ComponentOrientation var89 = var86.getComponentOrientation(); + var61.applyComponentOrientation(var89); + var26.setComponentOrientation(var89); + var0.setComponentOrientation(var89); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var25); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var36 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var38 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var41 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var42); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var45 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var47 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var49 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var52); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var53 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var56); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var58); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var62 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var67); + + // Regression assertion (captures the current behavior of the code) + assertNull(var68); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var70 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var89); + + } + + public void test177() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test177"); + + + SpaceWar.Player var0 = new SpaceWar.Player(); + boolean var1 = var0.isRecovering(); + int var2 = var0.getRequiredPower(); + var0.setDown(false); + var0.setRigth(false); + int var7 = var0.getPower(); + var0.setDown(false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var2 == 1); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0); + + } + + public void test178() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test178"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + var0.show(false); + boolean var8 = var0.isPaintingForPrint(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var15 = var9.getMouseListeners(); + int var16 = var9.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var17 = var9.getInputMethodRequests(); + var0.addKeyListener((java.awt.event.KeyListener)var9); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + float var20 = var19.getAlignmentX(); + var19.setVisible(false); + boolean var23 = var19.isDoubleBuffered(); + var19.list(); + float var25 = var19.getAlignmentY(); + boolean var26 = var9.isFocusCycleRoot((java.awt.Container)var19); + boolean var27 = var19.isEnabled(); + java.awt.Dimension var28 = var19.getMaximumSize(); + var19.setName("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + SpaceWar.SpacePanel var31 = new SpaceWar.SpacePanel(); + float var32 = var31.getAlignmentX(); + SpaceWar.SpacePanel var33 = new SpaceWar.SpacePanel(); + float var34 = var33.getAlignmentX(); + var33.setVisible(false); + java.awt.Dimension var37 = var33.getPreferredSize(); + boolean var38 = var33.getVerifyInputWhenFocusTarget(); + java.awt.Component var41 = var33.findComponentAt(10, 1); + var31.addKeyListener((java.awt.event.KeyListener)var33); + boolean var43 = var33.getFocusTraversalKeysEnabled(); + var33.requestFocus(); + var33.layout(); + var19.remove((java.awt.Component)var33); + java.awt.FocusTraversalPolicy var47 = var19.getFocusTraversalPolicy(); + var19.show(true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var28); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var32 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var34 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var37); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var38 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var41); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var43 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var47); + + } + + public void test179() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test179"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.updateUI(); + var0.enableInputMethods(true); + java.awt.Point var9 = var0.getMousePosition(false); + java.awt.Dimension var10 = var0.getMinimumSize(); + SpaceWar.SpacePanel var11 = new SpaceWar.SpacePanel(); + float var12 = var11.getAlignmentX(); + var11.setVisible(false); + java.awt.Dimension var15 = var11.getPreferredSize(); + java.awt.Toolkit var16 = var11.getToolkit(); + SpaceWar.SpacePanel var17 = new SpaceWar.SpacePanel(); + var17.setName(""); + int var20 = var17.getX(); + SpaceWar.SpacePanel var21 = new SpaceWar.SpacePanel(); + float var22 = var21.getAlignmentX(); + var21.setVisible(false); + var21.nextFocus(); + SpaceWar.SpacePanel var26 = new SpaceWar.SpacePanel(); + float var27 = var26.getAlignmentX(); + var26.setVisible(false); + SpaceWar.SpacePanel var30 = new SpaceWar.SpacePanel(); + java.awt.Color var31 = var30.getBackground(); + var26.setForeground(var31); + var21.setBackground(var31); + var17.setBackground(var31); + var11.setForeground(var31); + SpaceWar.SpacePanel var36 = new SpaceWar.SpacePanel(); + float var37 = var36.getAlignmentX(); + var36.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var42 = new SpaceWar.SpacePanel(); + float var43 = var42.getAlignmentX(); + var42.setVisible(false); + java.awt.Dimension var46 = var42.getPreferredSize(); + var36.setMaximumSize(var46); + boolean var48 = var36.getVerifyInputWhenFocusTarget(); + javax.accessibility.AccessibleContext var49 = var36.getAccessibleContext(); + boolean var50 = var36.isDoubleBuffered(); + java.awt.Rectangle var51 = var36.getVisibleRect(); + var11.scrollRectToVisible(var51); + SpaceWar.SpacePanel var53 = new SpaceWar.SpacePanel(); + float var54 = var53.getAlignmentX(); + var53.setVisible(false); + java.awt.Dimension var57 = var53.getPreferredSize(); + java.awt.Toolkit var58 = var53.getToolkit(); + SpaceWar.SpacePanel var59 = new SpaceWar.SpacePanel(); + var59.setName(""); + int var62 = var59.getX(); + SpaceWar.SpacePanel var63 = new SpaceWar.SpacePanel(); + float var64 = var63.getAlignmentX(); + var63.setVisible(false); + var63.nextFocus(); + SpaceWar.SpacePanel var68 = new SpaceWar.SpacePanel(); + float var69 = var68.getAlignmentX(); + var68.setVisible(false); + SpaceWar.SpacePanel var72 = new SpaceWar.SpacePanel(); + java.awt.Color var73 = var72.getBackground(); + var68.setForeground(var73); + var63.setBackground(var73); + var59.setBackground(var73); + var53.setForeground(var73); + SpaceWar.SpacePanel var78 = new SpaceWar.SpacePanel(); + float var79 = var78.getAlignmentX(); + var78.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var84 = new SpaceWar.SpacePanel(); + float var85 = var84.getAlignmentX(); + var84.setVisible(false); + java.awt.Dimension var88 = var84.getPreferredSize(); + var78.setMaximumSize(var88); + boolean var90 = var78.getVerifyInputWhenFocusTarget(); + javax.accessibility.AccessibleContext var91 = var78.getAccessibleContext(); + boolean var92 = var78.isDoubleBuffered(); + java.awt.Rectangle var93 = var78.getVisibleRect(); + var53.scrollRectToVisible(var93); + var11.removeKeyListener((java.awt.event.KeyListener)var53); + javax.swing.JPopupMenu var96 = var11.getComponentPopupMenu(); + java.awt.ComponentOrientation var97 = var11.getComponentOrientation(); + var0.setComponentOrientation(var97); + boolean var99 = var0.isManagingFocus(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNull(var9); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var22 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var31); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var43 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var46); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var48 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var49); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var50 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var51); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var54 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var57); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var58); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var62 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var64 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var69 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var73); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var79 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var85 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var88); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var90 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var91); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var92 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var93); + + // Regression assertion (captures the current behavior of the code) + assertNull(var96); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var97); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var99 == false); + + } + + public void test180() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test180"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + var0.setRequestFocusEnabled(false); + var0.setIgnoreRepaint(false); + boolean var7 = var0.isFocusable(); + boolean var8 = var0.isPaintingForPrint(); + var0.setAlignmentY(10.0f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + } + + public void test181() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test181"); + + + SpaceWar.Player var0 = new SpaceWar.Player(); + var0.increasePower(25); + int var3 = var0.getScore(); + int var4 = var0.getX(); + var0.setLife(100); + var0.setDown(true); + var0.setLife(500); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 400); + + } + + public void test182() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test182"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + java.awt.im.InputMethodRequests var3 = var0.getInputMethodRequests(); + var0.setDoubleBuffered(true); + var0.show(false); + var0.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", (-1), 24); + boolean var12 = var0.getAutoscrolls(); + java.awt.image.VolatileImage var15 = var0.createVolatileImage(498, 10); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var15); + + } + + public void test183() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test183"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + boolean var6 = var0.isFocusCycleRoot(); + SpaceWar.SpacePanel var7 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + java.awt.Color var9 = var8.getBackground(); + SpaceWar.SpacePanel var10 = new SpaceWar.SpacePanel(); + float var11 = var10.getAlignmentX(); + var10.setVisible(false); + var10.nextFocus(); + var10.updateUI(); + var10.enableInputMethods(true); + var7.add((java.awt.Component)var8, (java.lang.Object)true); + java.awt.Dimension var19 = var8.getPreferredSize(); + var0.setSize(var19); + var0.updateUI(); + SpaceWar.SpacePanel var22 = new SpaceWar.SpacePanel(); + float var23 = var22.getAlignmentX(); + var22.setVisible(false); + java.awt.Dimension var26 = var22.getPreferredSize(); + java.awt.Toolkit var27 = var22.getToolkit(); + boolean var28 = var22.isFocusable(); + javax.swing.KeyStroke[] var29 = var22.getRegisteredKeyStrokes(); + SpaceWar.SpacePanel var30 = new SpaceWar.SpacePanel(); + float var31 = var30.getAlignmentX(); + SpaceWar.SpacePanel var32 = new SpaceWar.SpacePanel(); + float var33 = var32.getAlignmentX(); + var32.setVisible(false); + java.awt.Dimension var36 = var32.getPreferredSize(); + boolean var37 = var32.getVerifyInputWhenFocusTarget(); + java.awt.Component var40 = var32.findComponentAt(10, 1); + var30.addKeyListener((java.awt.event.KeyListener)var32); + var32.repaint(100, (-1), (-1), 1); + boolean var47 = var22.isAncestorOf((java.awt.Component)var32); + java.awt.Point var48 = var22.location(); + boolean var49 = var0.contains(var48); + var0.repaint(10L); + java.awt.event.MouseListener[] var52 = var0.getMouseListeners(); + java.awt.Dimension var53 = var0.preferredSize(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var9); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var27); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var28 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var29); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var31 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var33 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var36); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var40); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var47 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var48); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var49 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var52); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var53); + + } + + public void test184() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test184"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + java.awt.Color var7 = var6.getBackground(); + var6.repaint(); + var6.setRequestFocusEnabled(false); + var6.reshape(100, 0, 100, 0); + var6.requestFocus(); + SpaceWar.SpacePanel var17 = new SpaceWar.SpacePanel(); + float var18 = var17.getAlignmentX(); + var17.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var23 = var17.getUI(); + java.awt.im.InputMethodRequests var24 = var17.getInputMethodRequests(); + SpaceWar.SpacePanel var25 = new SpaceWar.SpacePanel(); + float var26 = var25.getAlignmentX(); + var25.setVisible(false); + var25.nextFocus(); + var25.updateUI(); + var25.enableInputMethods(true); + var25.setSize((-1), 1); + SpaceWar.SpacePanel var36 = new SpaceWar.SpacePanel(); + var36.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var17.add((java.awt.Component)var25, (java.lang.Object)"SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + SpaceWar.SpacePanel var42 = new SpaceWar.SpacePanel(); + var42.setName(""); + java.awt.ComponentOrientation var45 = var42.getComponentOrientation(); + var17.applyComponentOrientation(var45); + var6.setComponentOrientation(var45); + var0.applyComponentOrientation(var45); + int var49 = var0.getHeight(); + boolean var52 = var0.inside(3, 2); + java.awt.Insets var53 = var0.getInsets(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var23); + + // Regression assertion (captures the current behavior of the code) + assertNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var45); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var49 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var52 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var53); + + } + + public void test185() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test185"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + SpaceWar.SpacePanel var4 = new SpaceWar.SpacePanel(); + java.awt.Color var5 = var4.getBackground(); + var0.setForeground(var5); + SpaceWar.SpacePanel var7 = new SpaceWar.SpacePanel(); + float var8 = var7.getAlignmentX(); + var7.setVisible(false); + boolean var11 = var7.isDoubleBuffered(); + java.awt.dnd.DropTarget var12 = var7.getDropTarget(); + var7.show(false); + java.awt.Rectangle var15 = var7.getVisibleRect(); + var0.repaint(var15); + java.awt.FocusTraversalPolicy var17 = var0.getFocusTraversalPolicy(); + SpaceWar.SpacePanel var18 = new SpaceWar.SpacePanel(); + float var19 = var18.getAlignmentX(); + var18.firePropertyChange("", (-1), 1); + boolean var24 = var18.isFocusOwner(); + SpaceWar.SpacePanel var26 = new SpaceWar.SpacePanel(); + float var27 = var26.getAlignmentX(); + var26.setVisible(false); + java.awt.Dimension var30 = var26.getPreferredSize(); + java.awt.Toolkit var31 = var26.getToolkit(); + SpaceWar.SpacePanel var32 = new SpaceWar.SpacePanel(); + var32.setName(""); + int var35 = var32.getX(); + SpaceWar.SpacePanel var36 = new SpaceWar.SpacePanel(); + float var37 = var36.getAlignmentX(); + var36.setVisible(false); + var36.nextFocus(); + SpaceWar.SpacePanel var41 = new SpaceWar.SpacePanel(); + float var42 = var41.getAlignmentX(); + var41.setVisible(false); + SpaceWar.SpacePanel var45 = new SpaceWar.SpacePanel(); + java.awt.Color var46 = var45.getBackground(); + var41.setForeground(var46); + var36.setBackground(var46); + var32.setBackground(var46); + var26.setForeground(var46); + var18.putClientProperty((java.lang.Object)(byte)100, (java.lang.Object)var46); + var0.setBackground(var46); + javax.swing.JToolTip var53 = var0.createToolTip(); + var53.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, true); + var53.show(); + var53.setVisible(false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var24 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var30); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var31); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var35 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var42 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var46); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var53); + + } + + public void test186() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test186"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + var0.show(false); + java.awt.Rectangle var8 = var0.getVisibleRect(); + java.awt.image.BufferedImage var10 = var0.loadImg("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + java.awt.ComponentOrientation var11 = var0.getComponentOrientation(); + boolean var12 = var0.isPaintingTile(); + boolean var13 = var0.isOptimizedDrawingEnabled(); + boolean var14 = var0.isMinimumSizeSet(); + java.awt.Component.BaselineResizeBehavior var15 = var0.getBaselineResizeBehavior(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + } + + public void test187() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test187"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.reshape((-1), 1, (-1), 10); + var0.disable(); + java.awt.LayoutManager var11 = var0.getLayout(); + java.awt.Container var12 = var0.getParent(); + boolean var13 = var0.isOptimizedDrawingEnabled(); + var0.enableInputMethods(true); + java.awt.im.InputContext var16 = var0.getInputContext(); + java.awt.event.KeyListener[] var17 = var0.getKeyListeners(); + SpaceWar.SpacePanel var18 = new SpaceWar.SpacePanel(); + float var19 = var18.getAlignmentX(); + var18.setVisible(false); + boolean var22 = var18.isDoubleBuffered(); + var18.list(); + SpaceWar.SpacePanel var24 = new SpaceWar.SpacePanel(); + float var25 = var24.getAlignmentX(); + var24.setVisible(false); + boolean var28 = var24.isDoubleBuffered(); + java.awt.dnd.DropTarget var29 = var24.getDropTarget(); + var24.show(false); + java.awt.Rectangle var32 = var24.getVisibleRect(); + java.awt.Rectangle var33 = var18.getBounds(var32); + javax.swing.JToolTip var34 = var18.createToolTip(); + boolean var35 = var34.getInheritsPopupMenu(); + int var36 = var0.getComponentZOrder((java.awt.Component)var34); + javax.swing.InputMap var37 = var34.getInputMap(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var22 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var28 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var29); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var32); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var33); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var34); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var35 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var36 == (-1)); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var37); + + } + + public void test188() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test188"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.setInheritsPopupMenu(false); + boolean var6 = var0.isMinimumSizeSet(); + java.awt.Point var8 = var0.getMousePosition(true); + var0.setVerifyInputWhenFocusTarget(false); + java.beans.VetoableChangeListener[] var11 = var0.getVetoableChangeListeners(); + SpaceWar.SpacePanel var12 = new SpaceWar.SpacePanel(); + float var13 = var12.getAlignmentX(); + var12.setVisible(false); + var12.setInheritsPopupMenu(false); + boolean var18 = var12.isDoubleBuffered(); + java.awt.Rectangle var19 = var12.getBounds(); + var0.scrollRectToVisible(var19); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var19); + + } + + public void test189() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test189"); + + + SpaceWar.Player var0 = new SpaceWar.Player(); + int var1 = var0.getPower(); + var0.setLeft(true); + var0.increasePower(0); + var0.setRigth(false); + int var8 = var0.getScore(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 0); + + } + + public void test190() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test190"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var6 = var0.getUI(); + java.awt.im.InputMethodRequests var7 = var0.getInputMethodRequests(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + var8.nextFocus(); + var8.updateUI(); + var8.enableInputMethods(true); + var8.setSize((-1), 1); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + var19.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var0.add((java.awt.Component)var8, (java.lang.Object)"SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + boolean var25 = var0.isCursorSet(); + javax.swing.KeyStroke[] var26 = var0.getRegisteredKeyStrokes(); + java.util.Locale var27 = var0.getLocale(); + var0.nextFocus(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var27); + + } + + public void test191() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test191"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var6 = var0.getUI(); + java.awt.im.InputMethodRequests var7 = var0.getInputMethodRequests(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + var8.nextFocus(); + var8.updateUI(); + var8.enableInputMethods(true); + var8.setSize((-1), 1); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + var19.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var0.add((java.awt.Component)var8, (java.lang.Object)"SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + var8.setAutoscrolls(true); + java.awt.Image var29 = var8.createImage(400, 400); + var8.enableInputMethods(true); + javax.swing.plaf.PanelUI var32 = var8.getUI(); + java.awt.Component var33 = var8.getNextFocusableComponent(); + boolean var34 = var8.isPaintingForPrint(); + int var37 = var8.getBaseline(500, 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNull(var29); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var32); + + // Regression assertion (captures the current behavior of the code) + assertNull(var33); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var34 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == (-1)); + + } + + public void test192() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test192"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + SpaceWar.SpacePanel var4 = new SpaceWar.SpacePanel(); + java.awt.Color var5 = var4.getBackground(); + var0.setForeground(var5); + SpaceWar.SpacePanel var7 = new SpaceWar.SpacePanel(); + float var8 = var7.getAlignmentX(); + var7.setVisible(false); + boolean var11 = var7.isDoubleBuffered(); + java.awt.dnd.DropTarget var12 = var7.getDropTarget(); + var7.show(false); + java.awt.Rectangle var15 = var7.getVisibleRect(); + var0.repaint(var15); + java.awt.FocusTraversalPolicy var17 = var0.getFocusTraversalPolicy(); + javax.swing.TransferHandler var18 = var0.getTransferHandler(); + java.awt.Component var19 = var0.getNextFocusableComponent(); + java.awt.image.VolatileImage var22 = var0.createVolatileImage(10, (-1)); + var0.setVisible(false); + boolean var25 = var0.isFocusable(); + SpaceWar.SpacePanel var27 = new SpaceWar.SpacePanel(); + float var28 = var27.getAlignmentX(); + var27.setVisible(false); + boolean var31 = var27.isDoubleBuffered(); + SpaceWar.SpacePanel var32 = new SpaceWar.SpacePanel(); + float var33 = var32.getAlignmentX(); + var32.setVisible(false); + var32.nextFocus(); + var32.reshape((-1), 1, (-1), 10); + var32.disable(); + boolean var43 = var32.isFocusable(); + int var44 = var32.getHeight(); + var27.setNextFocusableComponent((java.awt.Component)var32); + boolean var46 = var27.isMinimumSizeSet(); + var27.transferFocusBackward(); + boolean var48 = var27.isMaximumSizeSet(); + java.awt.Component var49 = var0.add("SpaceWar.SpacePanel[,-1,1,-1x10,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", (java.awt.Component)var27); + SpaceWar.SpacePanel var50 = new SpaceWar.SpacePanel(); + float var51 = var50.getAlignmentX(); + var50.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var56 = var50.getMouseListeners(); + var50.firePropertyChange("", 0.5f, 100.0f); + var50.enable(false); + int var63 = var50.getDebugGraphicsOptions(); + java.awt.ComponentOrientation var64 = var50.getComponentOrientation(); + var0.setComponentOrientation(var64); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var28 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var31 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var33 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var43 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var44 == 10); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var46 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var48 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var49); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var51 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var56); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var63 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var64); + + } + + public void test193() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test193"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + var0.enable(false); + boolean var7 = var0.requestDefaultFocus(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var14 = var8.getMouseListeners(); + int var15 = var8.getDebugGraphicsOptions(); + SpaceWar.SpacePanel var16 = new SpaceWar.SpacePanel(); + float var17 = var16.getAlignmentX(); + var16.setVisible(false); + boolean var20 = var16.isDoubleBuffered(); + java.awt.dnd.DropTarget var21 = var16.getDropTarget(); + var16.show(false); + java.awt.Rectangle var24 = var16.getVisibleRect(); + var8.paintImmediately(var24); + var8.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", '#', '#'); + var8.list(); + java.awt.Rectangle var31 = var8.getBounds(); + var0.scrollRectToVisible(var31); + SpaceWar.Player var33 = new SpaceWar.Player(); + boolean var34 = var33.isRecovering(); + var33.setRigth(false); + int var37 = var33.getPowerLevel(); + var33.increasePower((-1)); + java.lang.Object var40 = var0.getClientProperty((java.lang.Object)(-1)); + var0.setFocusable(true); + SpaceWar.SpacePanel var43 = new SpaceWar.SpacePanel(); + float var44 = var43.getAlignmentX(); + var43.setVisible(false); + boolean var47 = var43.isDoubleBuffered(); + java.awt.dnd.DropTarget var48 = var43.getDropTarget(); + var43.show(false); + java.awt.Rectangle var51 = var43.getVisibleRect(); + java.awt.image.BufferedImage var53 = var43.loadImg("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + java.awt.ComponentOrientation var54 = var43.getComponentOrientation(); + javax.swing.plaf.PanelUI var55 = var43.getUI(); + var43.doLayout(); + boolean var57 = var43.isOptimizedDrawingEnabled(); + java.awt.Dimension var58 = var43.minimumSize(); + java.awt.Dimension var59 = var0.getSize(var58); + var0.setFocusTraversalKeysEnabled(true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var21); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var31); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var34 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var40); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var44 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var47 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var48); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var51); + + // Regression assertion (captures the current behavior of the code) + assertNull(var53); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var54); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var55); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var57 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var58); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var59); + + } + + public void test194() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test194"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.reshape((-1), 1, (-1), 10); + var0.disable(); + java.awt.LayoutManager var11 = var0.getLayout(); + java.awt.Container var12 = var0.getParent(); + java.beans.PropertyChangeListener[] var14 = var0.getPropertyChangeListeners("SpaceWar.SpacePanel[,0,0,0x0,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + var0.setToolTipText("hi!"); + SpaceWar.SpacePanel var17 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var18 = new SpaceWar.SpacePanel(); + java.awt.Color var19 = var18.getBackground(); + SpaceWar.SpacePanel var20 = new SpaceWar.SpacePanel(); + float var21 = var20.getAlignmentX(); + var20.setVisible(false); + var20.nextFocus(); + var20.updateUI(); + var20.enableInputMethods(true); + var17.add((java.awt.Component)var18, (java.lang.Object)true); + java.awt.Image var31 = var18.createImage(1, (-1)); + java.awt.event.MouseListener[] var32 = var18.getMouseListeners(); + java.awt.Color var33 = var18.getBackground(); + var18.grabFocus(); + javax.swing.JToolTip var35 = var18.createToolTip(); + java.awt.Rectangle var36 = var35.getVisibleRect(); + var0.paintImmediately(var36); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNull(var31); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var32); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var33); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var35); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var36); + + } + + public void test195() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test195"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + var0.show(false); + boolean var8 = var0.isPaintingForPrint(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var15 = var9.getMouseListeners(); + int var16 = var9.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var17 = var9.getInputMethodRequests(); + var0.addKeyListener((java.awt.event.KeyListener)var9); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + float var20 = var19.getAlignmentX(); + var19.setVisible(false); + boolean var23 = var19.isDoubleBuffered(); + var19.list(); + float var25 = var19.getAlignmentY(); + boolean var26 = var9.isFocusCycleRoot((java.awt.Container)var19); + var19.firePropertyChange("", 1L, 1L); + var19.setVerifyInputWhenFocusTarget(true); + var19.resize(25, 400); + java.awt.event.ComponentListener[] var36 = var19.getComponentListeners(); + var19.setAlignmentX(10.0f); + var19.setDoubleBuffered(false); + boolean var43 = var19.inside(0, 3); + boolean var44 = var19.isVisible(); + var19.list(); + java.awt.event.HierarchyBoundsListener[] var46 = var19.getHierarchyBoundsListeners(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var36); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var43 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var44 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var46); + + } + + public void test196() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test196"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + java.awt.im.InputMethodRequests var3 = var0.getInputMethodRequests(); + int var4 = var0.countComponents(); + java.awt.event.ComponentListener[] var5 = var0.getComponentListeners(); + var0.removeNotify(); + java.awt.Component var9 = var0.getComponentAt(1, (-1)); + int var10 = var0.getHeight(); + java.awt.FocusTraversalPolicy var11 = var0.getFocusTraversalPolicy(); + javax.swing.ActionMap var12 = var0.getActionMap(); + var0.requestFocus(); + boolean var14 = var0.isFocusable(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertNull(var9); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == true); + + } + + public void test197() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test197"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.reshape((-1), 1, (-1), 10); + var0.disable(); + java.awt.Component var13 = var0.findComponentAt(0, (-1)); + SpaceWar.SpacePanel var14 = new SpaceWar.SpacePanel(); + var14.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + javax.swing.plaf.PanelUI var19 = var14.getUI(); + SpaceWar.SpacePanel var20 = new SpaceWar.SpacePanel(); + float var21 = var20.getAlignmentX(); + var20.setVisible(false); + var20.nextFocus(); + var20.repaint(1L); + SpaceWar.SpacePanel var27 = new SpaceWar.SpacePanel(); + float var28 = var27.getAlignmentX(); + var27.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var33 = new SpaceWar.SpacePanel(); + float var34 = var33.getAlignmentX(); + var33.setVisible(false); + java.awt.Dimension var37 = var33.getPreferredSize(); + var27.setMaximumSize(var37); + var20.setPreferredSize(var37); + var14.setMaximumSize(var37); + var0.setSize(var37); + SpaceWar.SpacePanel var42 = new SpaceWar.SpacePanel(); + float var43 = var42.getAlignmentX(); + boolean var44 = var42.hasFocus(); + boolean var45 = var42.isPreferredSizeSet(); + SpaceWar.SpacePanel var46 = new SpaceWar.SpacePanel(); + java.awt.Color var47 = var46.getBackground(); + var46.repaint(); + var46.setRequestFocusEnabled(false); + int var51 = var42.getComponentZOrder((java.awt.Component)var46); + boolean var52 = var42.requestDefaultFocus(); + javax.swing.border.Border var53 = var42.getBorder(); + int var54 = var0.getComponentZOrder((java.awt.Component)var42); + javax.swing.InputVerifier var55 = var42.getInputVerifier(); + var42.setOpaque(true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var28 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var34 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var37); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var43 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var44 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var45 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var47); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var51 == (-1)); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var52 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var53); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var54 == (-1)); + + // Regression assertion (captures the current behavior of the code) + assertNull(var55); + + } + + public void test198() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test198"); + + + SpaceWar.Player var0 = new SpaceWar.Player(); + int var1 = var0.getR(); + var0.setRigth(false); + var0.setLife(100); + var0.setDown(false); + var0.loseLife(); + int var9 = var0.getScore(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 25); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0); + + } + + public void test199() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test199"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var1 = new SpaceWar.SpacePanel(); + java.awt.Color var2 = var1.getBackground(); + SpaceWar.SpacePanel var3 = new SpaceWar.SpacePanel(); + float var4 = var3.getAlignmentX(); + var3.setVisible(false); + var3.nextFocus(); + var3.updateUI(); + var3.enableInputMethods(true); + var0.add((java.awt.Component)var1, (java.lang.Object)true); + java.awt.Image var14 = var1.createImage(1, (-1)); + SpaceWar.SpacePanel var15 = new SpaceWar.SpacePanel(); + float var16 = var15.getAlignmentX(); + var15.setVisible(false); + var15.nextFocus(); + var15.updateUI(); + var15.enableInputMethods(true); + SpaceWar.SpacePanel var23 = new SpaceWar.SpacePanel(); + float var24 = var23.getAlignmentX(); + boolean var25 = var23.hasFocus(); + java.awt.Insets var26 = var23.getInsets(); + java.awt.Insets var27 = var15.getInsets(var26); + java.awt.Insets var28 = var1.getInsets(var26); + var1.paintImmediately(400, (-1), 0, 3); + var1.setVerifyInputWhenFocusTarget(false); + java.awt.Point var36 = var1.getMousePosition(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var2); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var24 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var27); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var28); + + // Regression assertion (captures the current behavior of the code) + assertNull(var36); + + } + + public void test200() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test200"); + + + SpaceWar.Enemy var2 = new SpaceWar.Enemy(0, 100); + int var3 = var2.getR(); + java.awt.image.BufferedImage var5 = var2.loadImg("SpaceWar.SpacePanel[,0,0,0x0,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + int var6 = var2.getRank(); + double var7 = var2.getX(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == 100); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 388.0925419430599d); + + } + + public void test201() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test201"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + var0.setRequestFocusEnabled(false); + var0.reshape(100, 0, 100, 0); + var0.requestFocus(); + var0.firePropertyChange("hi!", '4', ' '); + java.awt.Point var15 = var0.getLocation(); + java.awt.Dimension var16 = var0.size(); + boolean var17 = var0.isDoubleBuffered(); + var0.reshape(0, 3, 25, 3); + java.awt.Font var23 = var0.getFont(); + var0.revalidate(); + java.awt.image.ColorModel var25 = var0.getColorModel(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var23); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var25); + + } + + public void test202() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test202"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + boolean var6 = var0.isFocusCycleRoot(); + SpaceWar.SpacePanel var7 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + java.awt.Color var9 = var8.getBackground(); + SpaceWar.SpacePanel var10 = new SpaceWar.SpacePanel(); + float var11 = var10.getAlignmentX(); + var10.setVisible(false); + var10.nextFocus(); + var10.updateUI(); + var10.enableInputMethods(true); + var7.add((java.awt.Component)var8, (java.lang.Object)true); + java.awt.Dimension var19 = var8.getPreferredSize(); + var0.setSize(var19); + var0.updateUI(); + SpaceWar.SpacePanel var22 = new SpaceWar.SpacePanel(); + float var23 = var22.getAlignmentX(); + var22.setVisible(false); + java.awt.Dimension var26 = var22.getPreferredSize(); + java.awt.Toolkit var27 = var22.getToolkit(); + boolean var28 = var22.isFocusable(); + javax.swing.KeyStroke[] var29 = var22.getRegisteredKeyStrokes(); + SpaceWar.SpacePanel var30 = new SpaceWar.SpacePanel(); + float var31 = var30.getAlignmentX(); + SpaceWar.SpacePanel var32 = new SpaceWar.SpacePanel(); + float var33 = var32.getAlignmentX(); + var32.setVisible(false); + java.awt.Dimension var36 = var32.getPreferredSize(); + boolean var37 = var32.getVerifyInputWhenFocusTarget(); + java.awt.Component var40 = var32.findComponentAt(10, 1); + var30.addKeyListener((java.awt.event.KeyListener)var32); + var32.repaint(100, (-1), (-1), 1); + boolean var47 = var22.isAncestorOf((java.awt.Component)var32); + java.awt.Point var48 = var22.location(); + boolean var49 = var0.contains(var48); + var0.repaint(10L); + java.awt.event.MouseListener[] var52 = var0.getMouseListeners(); + SpaceWar.SpacePanel var53 = new SpaceWar.SpacePanel(); + float var54 = var53.getAlignmentX(); + var53.setVisible(false); + SpaceWar.SpacePanel var57 = new SpaceWar.SpacePanel(); + java.awt.Color var58 = var57.getBackground(); + var53.setForeground(var58); + SpaceWar.SpacePanel var60 = new SpaceWar.SpacePanel(); + float var61 = var60.getAlignmentX(); + var60.setVisible(false); + boolean var64 = var60.isDoubleBuffered(); + java.awt.dnd.DropTarget var65 = var60.getDropTarget(); + var60.show(false); + java.awt.Rectangle var68 = var60.getVisibleRect(); + var53.repaint(var68); + java.awt.FocusTraversalPolicy var70 = var53.getFocusTraversalPolicy(); + javax.swing.TransferHandler var71 = var53.getTransferHandler(); + javax.swing.JToolTip var72 = var53.createToolTip(); + boolean var73 = var72.isValidateRoot(); + java.awt.Rectangle var74 = var72.getVisibleRect(); + var0.computeVisibleRect(var74); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var9); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var27); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var28 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var29); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var31 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var33 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var36); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var40); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var47 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var48); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var49 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var52); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var54 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var58); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var61 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var64 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var65); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var68); + + // Regression assertion (captures the current behavior of the code) + assertNull(var70); + + // Regression assertion (captures the current behavior of the code) + assertNull(var71); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var72); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var73 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var74); + + } + + public void test203() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test203"); + + + SpaceWar.Player var0 = new SpaceWar.Player(); + var0.increasePower(25); + int var3 = var0.getScore(); + var0.setRigth(true); + var0.loseLife(); + int var7 = var0.getPower(); + var0.setLife(0); + var0.setLife(498); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 24); + + } + + public void test204() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test204"); + + + SpaceWar.Player var0 = new SpaceWar.Player(); + boolean var1 = var0.isRecovering(); + var0.loseLife(); + int var3 = var0.getR(); + var0.loseLife(); + int var5 = var0.getY(); + var0.setRigth(true); + var0.setUp(true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == 25); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == 500); + + } + + public void test205() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test205"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + boolean var2 = var0.hasFocus(); + java.beans.VetoableChangeListener[] var3 = var0.getVetoableChangeListeners(); + var0.paintImmediately(10, 0, (-1), 25); + boolean var9 = var0.getInheritsPopupMenu(); + var0.resize(500, 10); + SpaceWar.SpacePanel var13 = new SpaceWar.SpacePanel(); + float var14 = var13.getAlignmentX(); + var13.setVisible(false); + boolean var17 = var13.isDoubleBuffered(); + SpaceWar.SpacePanel var18 = new SpaceWar.SpacePanel(); + float var19 = var18.getAlignmentX(); + var18.setVisible(false); + var18.nextFocus(); + var18.reshape((-1), 1, (-1), 10); + var18.disable(); + boolean var29 = var18.isFocusable(); + int var30 = var18.getHeight(); + var13.setNextFocusableComponent((java.awt.Component)var18); + SpaceWar.SpacePanel var32 = new SpaceWar.SpacePanel(); + float var33 = var32.getAlignmentX(); + var32.setVisible(false); + var32.nextFocus(); + SpaceWar.SpacePanel var37 = new SpaceWar.SpacePanel(); + float var38 = var37.getAlignmentX(); + var37.setVisible(false); + SpaceWar.SpacePanel var41 = new SpaceWar.SpacePanel(); + java.awt.Color var42 = var41.getBackground(); + var37.setForeground(var42); + var32.setBackground(var42); + java.awt.Component var45 = var32.getNextFocusableComponent(); + float var46 = var32.getAlignmentY(); + java.awt.event.MouseListener[] var47 = var32.getMouseListeners(); + java.awt.Point var48 = var32.location(); + java.awt.Point var49 = var13.getLocation(var48); + var0.setLocation(var49); + boolean var51 = var0.isMinimumSizeSet(); + var0.doLayout(); + java.awt.image.BufferedImage var54 = var0.loadImg("SpaceWar.SpacePanel[,0,0,0x0,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + java.awt.Dimension var55 = var0.minimumSize(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var2 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var29 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var30 == 10); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var33 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var38 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var42); + + // Regression assertion (captures the current behavior of the code) + assertNull(var45); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var46 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var47); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var48); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var49); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var51 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var54); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var55); + + } + + public void test206() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test206"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.reshape((-1), 1, (-1), 10); + var0.disable(); + var0.show(); + SpaceWar.SpacePanel var12 = new SpaceWar.SpacePanel(); + float var13 = var12.getAlignmentX(); + var12.setVisible(false); + boolean var16 = var12.isDoubleBuffered(); + var12.list(); + SpaceWar.SpacePanel var18 = new SpaceWar.SpacePanel(); + float var19 = var18.getAlignmentX(); + var18.setVisible(false); + boolean var22 = var18.isDoubleBuffered(); + java.awt.dnd.DropTarget var23 = var18.getDropTarget(); + var18.show(false); + java.awt.Rectangle var26 = var18.getVisibleRect(); + java.awt.Rectangle var27 = var12.getBounds(var26); + javax.swing.JToolTip var28 = var12.createToolTip(); + var12.firePropertyChange("", false, false); + var12.validate(); + SpaceWar.SpacePanel var34 = new SpaceWar.SpacePanel(); + float var35 = var34.getAlignmentX(); + var34.setVisible(false); + boolean var38 = var34.isDoubleBuffered(); + java.awt.dnd.DropTarget var39 = var34.getDropTarget(); + var34.show(false); + boolean var42 = var34.isPaintingForPrint(); + SpaceWar.SpacePanel var43 = new SpaceWar.SpacePanel(); + float var44 = var43.getAlignmentX(); + var43.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var49 = var43.getMouseListeners(); + int var50 = var43.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var51 = var43.getInputMethodRequests(); + var34.addKeyListener((java.awt.event.KeyListener)var43); + var43.repaint(); + java.awt.Point var54 = var43.location(); + java.awt.Component var55 = var12.getComponentAt(var54); + java.awt.Point var56 = var0.getLocation(var54); + var0.setAlignmentY(0.5f); + java.awt.event.InputMethodListener[] var59 = var0.getInputMethodListeners(); + var0.setSize(0, 499); + java.awt.event.KeyListener[] var63 = var0.getKeyListeners(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var22 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var23); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var27); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var28); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var35 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var38 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var39); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var42 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var44 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var49); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var50 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var51); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var54); + + // Regression assertion (captures the current behavior of the code) + assertNull(var55); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var56); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var59); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var63); + + } + + public void test207() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test207"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.reshape((-1), 1, (-1), 10); + var0.disable(); + boolean var11 = var0.isFocusable(); + SpaceWar.SpacePanel var12 = new SpaceWar.SpacePanel(); + float var13 = var12.getAlignmentX(); + var12.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var18 = var12.getUI(); + java.awt.im.InputMethodRequests var19 = var12.getInputMethodRequests(); + SpaceWar.SpacePanel var20 = new SpaceWar.SpacePanel(); + float var21 = var20.getAlignmentX(); + var20.setVisible(false); + var20.nextFocus(); + var20.updateUI(); + var20.enableInputMethods(true); + var20.setSize((-1), 1); + SpaceWar.SpacePanel var31 = new SpaceWar.SpacePanel(); + var31.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var12.add((java.awt.Component)var20, (java.lang.Object)"SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + java.awt.event.KeyListener[] var37 = var12.getKeyListeners(); + java.awt.FocusTraversalPolicy var38 = var12.getFocusTraversalPolicy(); + SpaceWar.SpacePanel var39 = new SpaceWar.SpacePanel(); + var39.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + java.awt.Toolkit var44 = var39.getToolkit(); + var0.add((java.awt.Component)var12, (java.lang.Object)var39); + java.awt.GraphicsConfiguration var46 = var0.getGraphicsConfiguration(); + var0.repaint(399, 498, 25, 3); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var37); + + // Regression assertion (captures the current behavior of the code) + assertNull(var38); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var44); + + // Regression assertion (captures the current behavior of the code) + assertNull(var46); + + } + + public void test208() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test208"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var6 = var0.getMouseListeners(); + int var7 = var0.getDebugGraphicsOptions(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + boolean var12 = var8.isDoubleBuffered(); + java.awt.dnd.DropTarget var13 = var8.getDropTarget(); + var8.show(false); + java.awt.Rectangle var16 = var8.getVisibleRect(); + var0.paintImmediately(var16); + SpaceWar.SpacePanel var18 = new SpaceWar.SpacePanel(); + float var19 = var18.getAlignmentX(); + var18.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var24 = var18.getMouseListeners(); + int var25 = var18.getDebugGraphicsOptions(); + SpaceWar.SpacePanel var26 = new SpaceWar.SpacePanel(); + float var27 = var26.getAlignmentX(); + var26.setVisible(false); + boolean var30 = var26.isDoubleBuffered(); + java.awt.dnd.DropTarget var31 = var26.getDropTarget(); + var26.show(false); + java.awt.Rectangle var34 = var26.getVisibleRect(); + var18.paintImmediately(var34); + java.awt.Rectangle var36 = var18.getBounds(); + var0.scrollRectToVisible(var36); + SpaceWar.SpacePanel var38 = new SpaceWar.SpacePanel(); + java.awt.Color var39 = var38.getBackground(); + var38.repaint(); + var38.setRequestFocusEnabled(false); + var38.setIgnoreRepaint(false); + boolean var45 = var38.requestFocusInWindow(); + float var46 = var38.getAlignmentY(); + java.awt.LayoutManager var47 = var38.getLayout(); + var0.setLayout(var47); + java.awt.Dimension var49 = var0.minimumSize(); + var0.grabFocus(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var30 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var31); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var34); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var36); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var39); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var45 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var46 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var47); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var49); + + } + + public void test209() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test209"); + + + SpaceWar.Player var0 = new SpaceWar.Player(); + boolean var1 = var0.isRecovering(); + int var2 = var0.getRequiredPower(); + int var3 = var0.getPowerLevel(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var2 == 1); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == 0); + + } + + public void test210() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test210"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + var0.setName(""); + java.awt.Graphics var3 = var0.getGraphics(); + java.awt.event.MouseMotionListener[] var4 = var0.getMouseMotionListeners(); + boolean var5 = var0.getIgnoreRepaint(); + var0.transferFocusBackward(); + var0.enable(); + java.awt.Container var8 = var0.getTopLevelAncestor(); + var0.invalidate(); + SpaceWar.SpacePanel var10 = new SpaceWar.SpacePanel(); + float var11 = var10.getAlignmentX(); + var10.setVisible(false); + var10.nextFocus(); + var10.updateUI(); + var10.enableInputMethods(true); + java.lang.String var18 = var10.toString(); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + float var20 = var19.getAlignmentX(); + var19.setVisible(false); + boolean var23 = var19.isDoubleBuffered(); + java.awt.dnd.DropTarget var24 = var19.getDropTarget(); + var19.show(false); + java.awt.Rectangle var27 = var19.getVisibleRect(); + java.awt.image.BufferedImage var29 = var19.loadImg("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + java.awt.ComponentOrientation var30 = var19.getComponentOrientation(); + boolean var31 = var19.isPaintingTile(); + boolean var32 = var19.isOptimizedDrawingEnabled(); + int var33 = var10.getComponentZOrder((java.awt.Component)var19); + javax.swing.InputMap var34 = var19.getInputMap(); + SpaceWar.SpacePanel var35 = new SpaceWar.SpacePanel(); + float var36 = var35.getAlignmentX(); + boolean var37 = var35.hasFocus(); + SpaceWar.SpacePanel var38 = new SpaceWar.SpacePanel(); + float var39 = var38.getAlignmentX(); + var38.setVisible(false); + var38.nextFocus(); + var38.reshape((-1), 1, (-1), 10); + var38.disable(); + java.awt.LayoutManager var49 = var38.getLayout(); + var38.setVisible(false); + var35.remove((java.awt.Component)var38); + java.beans.VetoableChangeListener[] var53 = var35.getVetoableChangeListeners(); + var0.putClientProperty((java.lang.Object)var34, (java.lang.Object)var35); + java.awt.Color var55 = var35.getBackground(); + SpaceWar.SpacePanel var56 = new SpaceWar.SpacePanel(); + float var57 = var56.getAlignmentX(); + var56.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var62 = var56.getMouseListeners(); + int var63 = var56.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var64 = var56.getInputMethodRequests(); + var56.removeNotify(); + var56.enable(); + boolean var67 = var56.hasFocus(); + java.awt.Dimension var68 = var56.size(); + java.awt.Dimension var69 = var35.getSize(var68); + + // Regression assertion (captures the current behavior of the code) + assertNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var4); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var18 + "' != '" + "SpaceWar.SpacePanel[,0,0,0var18,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"+ "'", var18.equals("SpaceWar.SpacePanel[,0,0,0var18,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]")); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var27); + + // Regression assertion (captures the current behavior of the code) + assertNull(var29); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var30); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var31 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var32 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var33 == (-1)); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var34); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var36 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var39 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var49); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var53); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var55); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var57 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var62); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var63 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var64); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var67 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var68); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var69); + + } + + public void test211() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test211"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var6 = var0.getUI(); + java.awt.im.InputMethodRequests var7 = var0.getInputMethodRequests(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + var8.nextFocus(); + var8.updateUI(); + var8.enableInputMethods(true); + var8.setSize((-1), 1); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + var19.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var0.add((java.awt.Component)var8, (java.lang.Object)"SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + SpaceWar.SpacePanel var25 = new SpaceWar.SpacePanel(); + float var26 = var25.getAlignmentX(); + var25.setVisible(false); + java.awt.Dimension var29 = var25.getPreferredSize(); + java.awt.Toolkit var30 = var25.getToolkit(); + java.awt.Toolkit var31 = var25.getToolkit(); + java.awt.Component var32 = var8.add((java.awt.Component)var25); + var8.setDebugGraphicsOptions(0); + java.lang.String var35 = var8.getUIClassID(); + var8.resetKeyboardActions(); + boolean var37 = var8.isPreferredSizeSet(); + SpaceWar.SpacePanel var38 = new SpaceWar.SpacePanel(); + float var39 = var38.getAlignmentX(); + boolean var40 = var38.hasFocus(); + SpaceWar.SpacePanel var41 = new SpaceWar.SpacePanel(); + float var42 = var41.getAlignmentX(); + var41.setVisible(false); + var41.nextFocus(); + var41.reshape((-1), 1, (-1), 10); + var41.disable(); + java.awt.LayoutManager var52 = var41.getLayout(); + var41.setVisible(false); + var38.remove((java.awt.Component)var41); + var41.repaint(); + var41.repaint(); + boolean var58 = var41.isRequestFocusEnabled(); + SpaceWar.SpacePanel var59 = new SpaceWar.SpacePanel(); + float var60 = var59.getAlignmentX(); + var59.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var65 = new SpaceWar.SpacePanel(); + float var66 = var65.getAlignmentX(); + var65.setVisible(false); + java.awt.Dimension var69 = var65.getPreferredSize(); + var59.setMaximumSize(var69); + boolean var71 = var59.getVerifyInputWhenFocusTarget(); + var59.transferFocusUpCycle(); + java.awt.Point var73 = var59.location(); + java.awt.Component var74 = var41.getComponentAt(var73); + java.awt.Point var75 = var8.getLocation(var73); + java.awt.event.MouseWheelListener[] var76 = var8.getMouseWheelListeners(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var29); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var30); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var31); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var32); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var35 + "' != '" + "PanelUI"+ "'", var35.equals("PanelUI")); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var39 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var40 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var42 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var52); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var58 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var60 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var66 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var69); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var71 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var73); + + // Regression assertion (captures the current behavior of the code) + assertNull(var74); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var75); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var76); + + } + + public void test212() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test212"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.setInheritsPopupMenu(false); + var0.setFocusTraversalPolicyProvider(true); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + boolean var12 = var8.isDoubleBuffered(); + var8.list(); + SpaceWar.SpacePanel var14 = new SpaceWar.SpacePanel(); + float var15 = var14.getAlignmentX(); + var14.setVisible(false); + boolean var18 = var14.isDoubleBuffered(); + java.awt.dnd.DropTarget var19 = var14.getDropTarget(); + var14.show(false); + java.awt.Rectangle var22 = var14.getVisibleRect(); + java.awt.Rectangle var23 = var8.getBounds(var22); + javax.swing.JToolTip var24 = var8.createToolTip(); + var0.removeKeyListener((java.awt.event.KeyListener)var8); + javax.swing.TransferHandler var26 = var0.getTransferHandler(); + boolean var27 = var0.isPaintingForPrint(); + int var28 = var0.getComponentCount(); + boolean var29 = var0.isFontSet(); + java.lang.String var30 = var0.getToolTipText(); + boolean var31 = var0.getAutoscrolls(); + SpaceWar.SpacePanel var32 = new SpaceWar.SpacePanel(); + float var33 = var32.getAlignmentX(); + var32.setVisible(false); + var32.nextFocus(); + var32.reshape((-1), 1, (-1), 10); + var32.disable(); + java.awt.LayoutManager var43 = var32.getLayout(); + var32.setVisible(false); + SpaceWar.SpacePanel var46 = new SpaceWar.SpacePanel(); + float var47 = var46.getAlignmentX(); + var46.setVisible(false); + var46.nextFocus(); + var46.updateUI(); + java.util.Locale var52 = var46.getLocale(); + var32.setLocale(var52); + boolean var54 = var32.isRequestFocusEnabled(); + SpaceWar.SpacePanel var55 = new SpaceWar.SpacePanel(); + float var56 = var55.getAlignmentX(); + var55.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var61 = var55.getMouseListeners(); + int var62 = var55.getDebugGraphicsOptions(); + SpaceWar.SpacePanel var63 = new SpaceWar.SpacePanel(); + float var64 = var63.getAlignmentX(); + var63.setVisible(false); + boolean var67 = var63.isDoubleBuffered(); + java.awt.dnd.DropTarget var68 = var63.getDropTarget(); + var63.show(false); + java.awt.Rectangle var71 = var63.getVisibleRect(); + var55.paintImmediately(var71); + int var73 = var55.getWidth(); + var32.removeKeyListener((java.awt.event.KeyListener)var55); + SpaceWar.Player var75 = new SpaceWar.Player(); + boolean var76 = var75.isRecovering(); + var75.loseLife(); + int var78 = var75.getR(); + var75.loseLife(); + java.awt.image.BufferedImage var81 = var75.loadImg("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + boolean var82 = var75.isDead(); + var75.setScore(3); + java.awt.image.BufferedImage var86 = var75.loadImg("SpaceWar.SpacePanel[,0,0,0x0,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + var75.loseLife(); + var0.add((java.awt.Component)var32, (java.lang.Object)var75); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var23); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var28 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var29 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var30); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var31 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var33 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var43); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var47 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var52); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var54 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var56 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var61); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var62 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var64 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var67 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var68); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var71); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var73 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var76 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var78 == 25); + + // Regression assertion (captures the current behavior of the code) + assertNull(var81); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var82 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var86); + + } + + public void test213() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test213"); + + + SpaceWar.Player var0 = new SpaceWar.Player(); + boolean var1 = var0.isRecovering(); + int var2 = var0.getRequiredPower(); + var0.setDown(false); + var0.setRigth(false); + int var7 = var0.getLives(); + int var8 = var0.getScore(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var2 == 1); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 3); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 0); + + } + + public void test214() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test214"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + var0.list(); + float var6 = var0.getAlignmentY(); + boolean var7 = var0.isOpaque(); + var0.resetKeyboardActions(); + boolean var9 = var0.isFocusTraversalPolicyProvider(); + SpaceWar.SpacePanel var10 = new SpaceWar.SpacePanel(); + java.awt.Color var11 = var10.getBackground(); + var10.repaint(); + var10.setRequestFocusEnabled(false); + var10.reshape(100, 0, 100, 0); + java.beans.VetoableChangeListener[] var20 = var10.getVetoableChangeListeners(); + java.awt.Rectangle var21 = var10.getVisibleRect(); + float var22 = var10.getAlignmentY(); + java.awt.Dimension var23 = var10.minimumSize(); + var0.setPreferredSize(var23); + SpaceWar.SpacePanel var25 = new SpaceWar.SpacePanel(); + float var26 = var25.getAlignmentX(); + var25.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var31 = var25.getMouseListeners(); + java.awt.Dimension var32 = var25.getPreferredSize(); + java.util.Locale var33 = var25.getLocale(); + java.awt.Dimension var34 = var25.getMinimumSize(); + var0.setMaximumSize(var34); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var21); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var22 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var23); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var31); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var32); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var33); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var34); + + } + + public void test215() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test215"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + var0.show(false); + boolean var8 = var0.isPaintingForPrint(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var15 = var9.getMouseListeners(); + int var16 = var9.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var17 = var9.getInputMethodRequests(); + var0.addKeyListener((java.awt.event.KeyListener)var9); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + float var20 = var19.getAlignmentX(); + var19.setVisible(false); + boolean var23 = var19.isDoubleBuffered(); + var19.list(); + float var25 = var19.getAlignmentY(); + boolean var26 = var9.isFocusCycleRoot((java.awt.Container)var19); + var19.firePropertyChange("", 1L, 1L); + var19.list(); + java.awt.im.InputContext var32 = var19.getInputContext(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var32); + + } + + public void test216() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test216"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + boolean var5 = javax.swing.JComponent.isLightweightComponent((java.awt.Component)var0); + java.awt.event.MouseWheelListener[] var6 = var0.getMouseWheelListeners(); + var0.transferFocusUpCycle(); + var0.reshape(2, 25, 0, 24); + java.awt.Component var15 = var0.findComponentAt(400, 24); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertNull(var15); + + } + + public void test217() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test217"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + var0.setRequestFocusEnabled(false); + var0.setIgnoreRepaint(false); + java.lang.String var7 = var0.toString(); + java.awt.Color var8 = var0.getBackground(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.setVisible(false); + java.awt.Dimension var13 = var9.getPreferredSize(); + java.awt.Toolkit var14 = var9.getToolkit(); + java.awt.Toolkit var15 = var9.getToolkit(); + SpaceWar.Player var16 = new SpaceWar.Player(); + var16.increasePower(25); + int var19 = var16.getScore(); + var16.setRigth(true); + var16.loseLife(); + var0.putClientProperty((java.lang.Object)var9, (java.lang.Object)var16); + java.awt.Rectangle var24 = var9.bounds(); + var9.setLocation(25, 400); + java.awt.Insets var28 = var9.insets(); + java.awt.im.InputContext var29 = var9.getInputContext(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var7 + "' != '" + "SpaceWar.SpacePanel[,0,0,0var7,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"+ "'", var7.equals("SpaceWar.SpacePanel[,0,0,0var7,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]")); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var28); + + // Regression assertion (captures the current behavior of the code) + assertNull(var29); + + } + + public void test218() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test218"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + java.awt.im.InputMethodRequests var3 = var0.getInputMethodRequests(); + var0.list(); + java.awt.Dimension var5 = var0.minimumSize(); + boolean var6 = var0.isOpaque(); + SpaceWar.SpacePanel var7 = new SpaceWar.SpacePanel(); + java.awt.Color var8 = var7.getBackground(); + var7.repaint(); + java.awt.im.InputMethodRequests var10 = var7.getInputMethodRequests(); + var7.setDoubleBuffered(true); + SpaceWar.SpacePanel var13 = new SpaceWar.SpacePanel(); + float var14 = var13.getAlignmentX(); + boolean var15 = var13.hasFocus(); + java.awt.Insets var16 = var13.getInsets(); + java.awt.Insets var17 = var7.getInsets(var16); + SpaceWar.SpacePanel var18 = new SpaceWar.SpacePanel(); + java.awt.Color var19 = var18.getBackground(); + var18.repaint(); + java.awt.im.InputMethodRequests var21 = var18.getInputMethodRequests(); + var18.setDoubleBuffered(true); + var18.setInheritsPopupMenu(false); + boolean var26 = var18.isFocusTraversalPolicySet(); + var18.transferFocusUpCycle(); + java.awt.image.BufferedImage var29 = var18.loadImg("SpaceWar.SpacePanel[,0,0,0x0,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + SpaceWar.SpacePanel var30 = new SpaceWar.SpacePanel(); + float var31 = var30.getAlignmentX(); + var30.setVisible(false); + var30.setInheritsPopupMenu(false); + boolean var36 = var30.isDoubleBuffered(); + boolean var37 = var30.isMinimumSizeSet(); + java.awt.Font var38 = var30.getFont(); + java.awt.FontMetrics var39 = var18.getFontMetrics(var38); + java.awt.FontMetrics var40 = var7.getFontMetrics(var38); + SpaceWar.SpacePanel var41 = new SpaceWar.SpacePanel(); + java.awt.Color var42 = var41.getBackground(); + var41.repaint(); + java.awt.im.InputMethodRequests var44 = var41.getInputMethodRequests(); + int var45 = var41.countComponents(); + java.awt.Dimension var46 = var41.getSize(); + var7.setMinimumSize(var46); + var0.setMinimumSize(var46); + boolean var49 = var0.isManagingFocus(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertNull(var21); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var29); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var31 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var36 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var38); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var39); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var40); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var42); + + // Regression assertion (captures the current behavior of the code) + assertNull(var44); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var45 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var46); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var49 == false); + + } + + public void test219() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test219"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + boolean var6 = var0.isFocusOwner(); + java.awt.Dimension var7 = var0.getMinimumSize(); + java.awt.Component var10 = var0.findComponentAt(0, 400); + java.awt.Component.BaselineResizeBehavior var11 = var0.getBaselineResizeBehavior(); + var0.setFocusTraversalPolicyProvider(true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + } + + public void test220() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test220"); + + + SpaceWar.Bullet var3 = new SpaceWar.Bullet(594.7973940347722d, 3, 100); + boolean var4 = var3.update(); + boolean var5 = var3.update(); + boolean var6 = var3.update(); + boolean var7 = var3.update(); + double var8 = var3.getX(); + double var9 = var3.getY(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == (-20.05877926032409d)); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 67.31525280771399d); + + } + + public void test221() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test221"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + var0.list(); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + float var7 = var6.getAlignmentX(); + var6.setVisible(false); + boolean var10 = var6.isDoubleBuffered(); + java.awt.dnd.DropTarget var11 = var6.getDropTarget(); + var6.show(false); + java.awt.Rectangle var14 = var6.getVisibleRect(); + java.awt.Rectangle var15 = var0.getBounds(var14); + javax.swing.JToolTip var16 = var0.createToolTip(); + java.awt.Graphics var17 = var0.getGraphics(); + float var18 = var0.getAlignmentY(); + boolean var19 = var0.getInheritsPopupMenu(); + javax.accessibility.AccessibleContext var20 = var0.getAccessibleContext(); + SpaceWar.SpacePanel var21 = new SpaceWar.SpacePanel(); + java.awt.Color var22 = var21.getBackground(); + var21.repaint(); + var21.setRequestFocusEnabled(false); + var21.reshape(100, 0, 100, 0); + var21.requestFocus(); + var21.firePropertyChange("hi!", '4', ' '); + java.awt.Point var36 = var21.getLocation(); + java.awt.Dimension var37 = var21.size(); + java.awt.Image var40 = var21.createImage((-1), (-1)); + SpaceWar.SpacePanel var41 = new SpaceWar.SpacePanel(); + float var42 = var41.getAlignmentX(); + var41.setVisible(false); + boolean var45 = var41.isDoubleBuffered(); + java.awt.dnd.DropTarget var46 = var41.getDropTarget(); + var41.show(false); + boolean var49 = var41.isPaintingForPrint(); + SpaceWar.SpacePanel var50 = new SpaceWar.SpacePanel(); + float var51 = var50.getAlignmentX(); + var50.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var56 = var50.getMouseListeners(); + int var57 = var50.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var58 = var50.getInputMethodRequests(); + var41.addKeyListener((java.awt.event.KeyListener)var50); + var50.repaint(); + java.awt.Point var61 = var50.location(); + java.awt.Component var62 = var21.findComponentAt(var61); + java.awt.im.InputContext var63 = var21.getInputContext(); + var21.setName("hi!"); + var0.removeKeyListener((java.awt.event.KeyListener)var21); + SpaceWar.SpacePanel var67 = new SpaceWar.SpacePanel(); + var67.setName(""); + java.awt.Toolkit var70 = var67.getToolkit(); + var67.setEnabled(false); + java.awt.Color var73 = var67.getForeground(); + var0.setForeground(var73); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var36); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var37); + + // Regression assertion (captures the current behavior of the code) + assertNull(var40); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var42 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var45 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var46); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var49 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var51 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var56); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var57 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var58); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var61); + + // Regression assertion (captures the current behavior of the code) + assertNull(var62); + + // Regression assertion (captures the current behavior of the code) + assertNull(var63); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var70); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var73); + + } + + public void test222() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test222"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + var0.setRequestFocusEnabled(false); + var0.removeAll(); + var0.paintImmediately(500, 500, 100, 2); + boolean var11 = var0.isMaximumSizeSet(); + boolean var12 = var0.isOpaque(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == true); + + } + + public void test223() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test223"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + var0.setName(""); + int var3 = var0.getX(); + SpaceWar.SpacePanel var4 = new SpaceWar.SpacePanel(); + float var5 = var4.getAlignmentX(); + var4.setVisible(false); + var4.nextFocus(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.setVisible(false); + SpaceWar.SpacePanel var13 = new SpaceWar.SpacePanel(); + java.awt.Color var14 = var13.getBackground(); + var9.setForeground(var14); + var4.setBackground(var14); + var0.setBackground(var14); + boolean var18 = var0.isFocusTraversable(); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + var19.setName(""); + int var22 = var19.getX(); + SpaceWar.SpacePanel var23 = new SpaceWar.SpacePanel(); + float var24 = var23.getAlignmentX(); + var23.setVisible(false); + var23.nextFocus(); + SpaceWar.SpacePanel var28 = new SpaceWar.SpacePanel(); + float var29 = var28.getAlignmentX(); + var28.setVisible(false); + SpaceWar.SpacePanel var32 = new SpaceWar.SpacePanel(); + java.awt.Color var33 = var32.getBackground(); + var28.setForeground(var33); + var23.setBackground(var33); + var19.setBackground(var33); + var0.setBackground(var33); + SpaceWar.SpacePanel var38 = new SpaceWar.SpacePanel(); + float var39 = var38.getAlignmentX(); + var38.setVisible(false); + var38.nextFocus(); + var38.updateUI(); + var38.enableInputMethods(true); + java.awt.Point var47 = var38.getMousePosition(false); + SpaceWar.SpacePanel var48 = new SpaceWar.SpacePanel(); + float var49 = var48.getAlignmentX(); + var48.setVisible(false); + boolean var52 = var48.isDoubleBuffered(); + var48.list(); + SpaceWar.SpacePanel var54 = new SpaceWar.SpacePanel(); + float var55 = var54.getAlignmentX(); + var54.setVisible(false); + boolean var58 = var54.isDoubleBuffered(); + java.awt.dnd.DropTarget var59 = var54.getDropTarget(); + var54.show(false); + java.awt.Rectangle var62 = var54.getVisibleRect(); + java.awt.Rectangle var63 = var48.getBounds(var62); + var38.scrollRectToVisible(var62); + var0.paintImmediately(var62); + var0.firePropertyChange("hi!", 1L, 100L); + var0.firePropertyChange("SpaceWar.SpacePanel[,-1,1,-1x10,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", (short)100, (short)10); + java.awt.peer.ComponentPeer var74 = var0.getPeer(); + var0.setFocusTraversalKeysEnabled(true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var22 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var24 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var29 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var33); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var39 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNull(var47); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var49 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var52 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var55 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var58 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var59); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var62); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var63); + + // Regression assertion (captures the current behavior of the code) + assertNull(var74); + + } + + public void test224() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test224"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var6 = var0.getMouseListeners(); + java.awt.Dimension var7 = var0.getPreferredSize(); + java.util.Locale var8 = var0.getLocale(); + java.awt.Font var9 = var0.getFont(); + java.awt.Container var10 = var0.getTopLevelAncestor(); + java.awt.Component[] var11 = var0.getComponents(); + var0.setInheritsPopupMenu(true); + javax.swing.KeyStroke[] var14 = var0.getRegisteredKeyStrokes(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var9); + + // Regression assertion (captures the current behavior of the code) + assertNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + } + + public void test225() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test225"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.requestFocus(); + boolean var6 = var0.isBackgroundSet(); + SpaceWar.SpacePanel var7 = new SpaceWar.SpacePanel(); + java.awt.Color var8 = var7.getBackground(); + var7.repaint(); + var7.setRequestFocusEnabled(false); + var7.reshape(100, 0, 100, 0); + SpaceWar.SpacePanel var17 = new SpaceWar.SpacePanel(); + float var18 = var17.getAlignmentX(); + var17.setVisible(false); + var17.setInheritsPopupMenu(false); + boolean var23 = var17.isDoubleBuffered(); + SpaceWar.SpacePanel var24 = new SpaceWar.SpacePanel(); + float var25 = var24.getAlignmentX(); + var24.setVisible(false); + var24.nextFocus(); + var24.reshape((-1), 1, (-1), 10); + var24.disable(); + java.awt.LayoutManager var35 = var24.getLayout(); + var17.setLayout(var35); + var0.add((java.awt.Component)var7, (java.lang.Object)var35); + var7.hide(); + java.awt.Component var41 = var7.locate(2, 24); + var7.show(false); + java.awt.Container var44 = var7.getFocusCycleRootAncestor(); + boolean var45 = var7.isDoubleBuffered(); + SpaceWar.SpacePanel var46 = new SpaceWar.SpacePanel(); + float var47 = var46.getAlignmentX(); + var46.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var52 = var46.getMouseListeners(); + int var53 = var46.getDebugGraphicsOptions(); + SpaceWar.SpacePanel var54 = new SpaceWar.SpacePanel(); + float var55 = var54.getAlignmentX(); + var54.setVisible(false); + boolean var58 = var54.isDoubleBuffered(); + java.awt.dnd.DropTarget var59 = var54.getDropTarget(); + var54.show(false); + java.awt.Rectangle var62 = var54.getVisibleRect(); + var46.paintImmediately(var62); + java.awt.Rectangle var64 = var46.getBounds(); + java.beans.PropertyChangeListener[] var66 = var46.getPropertyChangeListeners("SpaceWar.SpacePanel[,0,0,0x0,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + java.awt.Insets var67 = var46.getInsets(); + java.awt.Insets var68 = var7.getInsets(var67); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var35); + + // Regression assertion (captures the current behavior of the code) + assertNull(var41); + + // Regression assertion (captures the current behavior of the code) + assertNull(var44); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var45 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var47 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var52); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var53 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var55 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var58 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var59); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var62); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var64); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var66); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var67); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var68); + + } + + public void test226() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test226"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var6 = var0.getUI(); + java.awt.im.InputMethodRequests var7 = var0.getInputMethodRequests(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + var8.nextFocus(); + var8.updateUI(); + var8.enableInputMethods(true); + var8.setSize((-1), 1); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + var19.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var0.add((java.awt.Component)var8, (java.lang.Object)"SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + java.awt.ComponentOrientation var25 = var8.getComponentOrientation(); + boolean var26 = var8.isMaximumSizeSet(); + SpaceWar.SpacePanel var27 = new SpaceWar.SpacePanel(); + float var28 = var27.getAlignmentX(); + var27.setVisible(false); + boolean var31 = var27.isDoubleBuffered(); + java.awt.dnd.DropTarget var32 = var27.getDropTarget(); + var27.show(false); + boolean var35 = var27.isPaintingForPrint(); + SpaceWar.SpacePanel var36 = new SpaceWar.SpacePanel(); + float var37 = var36.getAlignmentX(); + var36.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var42 = var36.getMouseListeners(); + int var43 = var36.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var44 = var36.getInputMethodRequests(); + var27.addKeyListener((java.awt.event.KeyListener)var36); + SpaceWar.SpacePanel var46 = new SpaceWar.SpacePanel(); + float var47 = var46.getAlignmentX(); + var46.setVisible(false); + boolean var50 = var46.isDoubleBuffered(); + var46.list(); + float var52 = var46.getAlignmentY(); + boolean var53 = var36.isFocusCycleRoot((java.awt.Container)var46); + boolean var54 = var46.isEnabled(); + java.awt.Dimension var55 = var46.getMaximumSize(); + var8.setMinimumSize(var55); + var8.disable(); + int var58 = var8.getComponentCount(); + var8.resetKeyboardActions(); + SpaceWar.SpacePanel var60 = new SpaceWar.SpacePanel(); + java.awt.Color var61 = var60.getBackground(); + var60.repaint(); + var60.setRequestFocusEnabled(false); + var60.setIgnoreRepaint(false); + boolean var67 = var60.requestFocusInWindow(); + var60.setAlignmentY(100.0f); + int var70 = var60.getHeight(); + var8.setNextFocusableComponent((java.awt.Component)var60); + java.beans.PropertyChangeListener[] var73 = var60.getPropertyChangeListeners("SpaceWar.SpacePanel[,0,0,0x0,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + SpaceWar.SpacePanel var74 = new SpaceWar.SpacePanel(); + java.awt.Color var75 = var74.getBackground(); + var74.repaint(); + var74.setRequestFocusEnabled(false); + var74.reshape(100, 0, 100, 0); + java.beans.VetoableChangeListener[] var84 = var74.getVetoableChangeListeners(); + java.awt.Rectangle var85 = var74.getVisibleRect(); + float var86 = var74.getAlignmentY(); + java.awt.Dimension var87 = var74.minimumSize(); + javax.swing.InputVerifier var88 = var74.getInputVerifier(); + java.awt.Font var89 = var74.getFont(); + java.awt.LayoutManager var90 = var74.getLayout(); + var60.setLayout(var90); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var25); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var28 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var31 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var32); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var35 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var42); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var43 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var44); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var47 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var50 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var52 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var53 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var54 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var55); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var58 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var61); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var67 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var70 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var73); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var75); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var84); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var85); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var86 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var87); + + // Regression assertion (captures the current behavior of the code) + assertNull(var88); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var89); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var90); + + } + + public void test227() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test227"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + boolean var6 = var0.isFocusOwner(); + java.awt.Dimension var7 = var0.getMinimumSize(); + boolean var8 = var0.requestFocusInWindow(); + java.awt.Rectangle var9 = var0.getVisibleRect(); + SpaceWar.SpacePanel var10 = new SpaceWar.SpacePanel(); + float var11 = var10.getAlignmentX(); + var10.setVisible(false); + boolean var14 = var10.isDoubleBuffered(); + java.awt.dnd.DropTarget var15 = var10.getDropTarget(); + SpaceWar.SpacePanel var16 = new SpaceWar.SpacePanel(); + java.awt.Color var17 = var16.getBackground(); + var16.repaint(); + var16.setRequestFocusEnabled(false); + var16.reshape(100, 0, 100, 0); + var16.requestFocus(); + SpaceWar.SpacePanel var27 = new SpaceWar.SpacePanel(); + float var28 = var27.getAlignmentX(); + var27.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var33 = var27.getUI(); + java.awt.im.InputMethodRequests var34 = var27.getInputMethodRequests(); + SpaceWar.SpacePanel var35 = new SpaceWar.SpacePanel(); + float var36 = var35.getAlignmentX(); + var35.setVisible(false); + var35.nextFocus(); + var35.updateUI(); + var35.enableInputMethods(true); + var35.setSize((-1), 1); + SpaceWar.SpacePanel var46 = new SpaceWar.SpacePanel(); + var46.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var27.add((java.awt.Component)var35, (java.lang.Object)"SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + SpaceWar.SpacePanel var52 = new SpaceWar.SpacePanel(); + var52.setName(""); + java.awt.ComponentOrientation var55 = var52.getComponentOrientation(); + var27.applyComponentOrientation(var55); + var16.setComponentOrientation(var55); + var10.applyComponentOrientation(var55); + int var59 = var10.getHeight(); + boolean var62 = var10.inside(3, 2); + java.beans.PropertyChangeListener[] var63 = var10.getPropertyChangeListeners(); + SpaceWar.SpacePanel var64 = new SpaceWar.SpacePanel(); + float var65 = var64.getAlignmentX(); + var64.setVisible(false); + var64.nextFocus(); + var64.repaint(1L); + SpaceWar.SpacePanel var71 = new SpaceWar.SpacePanel(); + float var72 = var71.getAlignmentX(); + var71.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var77 = new SpaceWar.SpacePanel(); + float var78 = var77.getAlignmentX(); + var77.setVisible(false); + java.awt.Dimension var81 = var77.getPreferredSize(); + var71.setMaximumSize(var81); + var64.setPreferredSize(var81); + javax.swing.plaf.PanelUI var84 = var64.getUI(); + java.awt.Dimension var85 = var64.getMinimumSize(); + boolean var86 = var64.isFocusable(); + java.awt.Color var87 = var64.getForeground(); + var10.setForeground(var87); + var0.setBackground(var87); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var9); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var28 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var33); + + // Regression assertion (captures the current behavior of the code) + assertNull(var34); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var36 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var55); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var59 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var62 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var63); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var65 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var72 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var78 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var81); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var84); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var85); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var86 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var87); + + } + + public void test228() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test228"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + var0.show(false); + boolean var8 = var0.isPaintingForPrint(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var15 = var9.getMouseListeners(); + int var16 = var9.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var17 = var9.getInputMethodRequests(); + var0.addKeyListener((java.awt.event.KeyListener)var9); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + float var20 = var19.getAlignmentX(); + var19.setVisible(false); + boolean var23 = var19.isDoubleBuffered(); + var19.list(); + float var25 = var19.getAlignmentY(); + boolean var26 = var9.isFocusCycleRoot((java.awt.Container)var19); + javax.swing.JPopupMenu var27 = var19.getComponentPopupMenu(); + var19.move((-1), 100); + var19.validate(); + java.awt.Toolkit var32 = var19.getToolkit(); + SpaceWar.SpacePanel var33 = new SpaceWar.SpacePanel(); + float var34 = var33.getAlignmentX(); + var33.setVisible(false); + boolean var37 = var33.isDoubleBuffered(); + SpaceWar.SpacePanel var38 = new SpaceWar.SpacePanel(); + java.awt.Color var39 = var38.getBackground(); + var38.repaint(); + java.lang.Object var41 = var33.getClientProperty((java.lang.Object)var38); + var38.repaint(10, 1, 25, 0); + var19.removeKeyListener((java.awt.event.KeyListener)var38); + boolean var48 = var38.isDoubleBuffered(); + // The following exception was thrown during execution. + // This behavior will recorded for regression testing. + try { + java.awt.Point var49 = var38.getLocationOnScreen(); + fail("Expected exception of type java.awt.IllegalComponentStateException"); + } catch (java.awt.IllegalComponentStateException e) { + // Expected exception. + } + + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var27); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var32); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var34 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var39); + + // Regression assertion (captures the current behavior of the code) + assertNull(var41); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var48 == true); + + } + + public void test229() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test229"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + var0.enable(false); + java.awt.Container var7 = var0.getTopLevelAncestor(); + var0.show(false); + boolean var11 = var0.requestFocus(false); + boolean var12 = var0.getIgnoreRepaint(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == false); + + } + + public void test230() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test230"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.repaint(1L); + SpaceWar.SpacePanel var7 = new SpaceWar.SpacePanel(); + float var8 = var7.getAlignmentX(); + var7.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var13 = new SpaceWar.SpacePanel(); + float var14 = var13.getAlignmentX(); + var13.setVisible(false); + java.awt.Dimension var17 = var13.getPreferredSize(); + var7.setMaximumSize(var17); + var0.setPreferredSize(var17); + java.awt.Container var20 = var0.getFocusCycleRootAncestor(); + boolean var21 = var0.isDoubleBuffered(); + SpaceWar.SpacePanel var22 = new SpaceWar.SpacePanel(); + float var23 = var22.getAlignmentX(); + boolean var24 = var22.hasFocus(); + SpaceWar.SpacePanel var25 = new SpaceWar.SpacePanel(); + float var26 = var25.getAlignmentX(); + var25.setVisible(false); + var25.nextFocus(); + var25.reshape((-1), 1, (-1), 10); + var25.disable(); + java.awt.LayoutManager var36 = var25.getLayout(); + var25.setVisible(false); + var22.remove((java.awt.Component)var25); + java.beans.VetoableChangeListener[] var40 = var22.getVetoableChangeListeners(); + SpaceWar.SpacePanel var41 = new SpaceWar.SpacePanel(); + float var42 = var41.getAlignmentX(); + var41.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var47 = var41.getUI(); + java.awt.im.InputMethodRequests var48 = var41.getInputMethodRequests(); + SpaceWar.SpacePanel var49 = new SpaceWar.SpacePanel(); + float var50 = var49.getAlignmentX(); + var49.setVisible(false); + var49.nextFocus(); + var49.updateUI(); + var49.enableInputMethods(true); + var49.setSize((-1), 1); + SpaceWar.SpacePanel var60 = new SpaceWar.SpacePanel(); + var60.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var41.add((java.awt.Component)var49, (java.lang.Object)"SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + SpaceWar.SpacePanel var66 = new SpaceWar.SpacePanel(); + float var67 = var66.getAlignmentX(); + var66.setVisible(false); + var66.setInheritsPopupMenu(false); + boolean var72 = var66.isDoubleBuffered(); + boolean var73 = var66.isMinimumSizeSet(); + SpaceWar.SpacePanel var74 = new SpaceWar.SpacePanel(); + float var75 = var74.getAlignmentX(); + var74.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var80 = new SpaceWar.SpacePanel(); + float var81 = var80.getAlignmentX(); + var80.setVisible(false); + java.awt.Dimension var84 = var80.getPreferredSize(); + var74.setMaximumSize(var84); + boolean var86 = var74.getVerifyInputWhenFocusTarget(); + javax.accessibility.AccessibleContext var87 = var74.getAccessibleContext(); + boolean var88 = var74.isDoubleBuffered(); + java.awt.Rectangle var89 = var74.getVisibleRect(); + var66.setBounds(var89); + java.awt.Rectangle var91 = var41.getBounds(var89); + var22.repaint(var91); + java.awt.Font var93 = var22.getFont(); + java.awt.FontMetrics var94 = var0.getFontMetrics(var93); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var24 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var36); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var40); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var42 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var47); + + // Regression assertion (captures the current behavior of the code) + assertNull(var48); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var50 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var67 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var72 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var73 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var75 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var81 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var84); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var86 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var87); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var88 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var89); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var91); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var93); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var94); + + } + + public void test231() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test231"); + + + SpaceWar.PowerUp var3 = new SpaceWar.PowerUp(100, (-1.0d), 0.0d); + double var4 = var3.getR(); + int var5 = var3.getType(); + double var6 = var3.getX(); + int var7 = var3.getType(); + double var8 = var3.getY(); + double var9 = var3.getX(); + double var10 = var3.getY(); + double var11 = var3.getX(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0.0d); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == 100); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == (-1.0d)); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 100); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 0.0d); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == (-1.0d)); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.0d); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == (-1.0d)); + + } + + public void test232() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test232"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + var0.show(false); + boolean var8 = var0.isPaintingForPrint(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var15 = var9.getMouseListeners(); + int var16 = var9.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var17 = var9.getInputMethodRequests(); + var0.addKeyListener((java.awt.event.KeyListener)var9); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + float var20 = var19.getAlignmentX(); + var19.setVisible(false); + boolean var23 = var19.isDoubleBuffered(); + var19.list(); + float var25 = var19.getAlignmentY(); + boolean var26 = var9.isFocusCycleRoot((java.awt.Container)var19); + var19.firePropertyChange("", 1L, 1L); + var19.list(); + java.awt.Cursor var32 = var19.getCursor(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var32); + + } + + public void test233() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test233"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + var0.setRequestFocusEnabled(false); + var0.reshape(100, 0, 100, 0); + var0.requestFocus(); + var0.firePropertyChange("hi!", '4', ' '); + java.awt.Point var15 = var0.getLocation(); + java.awt.Dimension var16 = var0.size(); + boolean var17 = var0.isDoubleBuffered(); + boolean var18 = var0.getFocusTraversalKeysEnabled(); + int var19 = var0.getDebugGraphicsOptions(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == 0); + + } + + public void test234() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test234"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + SpaceWar.SpacePanel var4 = new SpaceWar.SpacePanel(); + java.awt.Color var5 = var4.getBackground(); + var0.setForeground(var5); + SpaceWar.SpacePanel var7 = new SpaceWar.SpacePanel(); + float var8 = var7.getAlignmentX(); + var7.setVisible(false); + boolean var11 = var7.isDoubleBuffered(); + java.awt.dnd.DropTarget var12 = var7.getDropTarget(); + var7.show(false); + java.awt.Rectangle var15 = var7.getVisibleRect(); + var0.repaint(var15); + java.awt.FocusTraversalPolicy var17 = var0.getFocusTraversalPolicy(); + SpaceWar.SpacePanel var18 = new SpaceWar.SpacePanel(); + float var19 = var18.getAlignmentX(); + var18.firePropertyChange("", (-1), 1); + boolean var24 = var18.isFocusOwner(); + SpaceWar.SpacePanel var26 = new SpaceWar.SpacePanel(); + float var27 = var26.getAlignmentX(); + var26.setVisible(false); + java.awt.Dimension var30 = var26.getPreferredSize(); + java.awt.Toolkit var31 = var26.getToolkit(); + SpaceWar.SpacePanel var32 = new SpaceWar.SpacePanel(); + var32.setName(""); + int var35 = var32.getX(); + SpaceWar.SpacePanel var36 = new SpaceWar.SpacePanel(); + float var37 = var36.getAlignmentX(); + var36.setVisible(false); + var36.nextFocus(); + SpaceWar.SpacePanel var41 = new SpaceWar.SpacePanel(); + float var42 = var41.getAlignmentX(); + var41.setVisible(false); + SpaceWar.SpacePanel var45 = new SpaceWar.SpacePanel(); + java.awt.Color var46 = var45.getBackground(); + var41.setForeground(var46); + var36.setBackground(var46); + var32.setBackground(var46); + var26.setForeground(var46); + var18.putClientProperty((java.lang.Object)(byte)100, (java.lang.Object)var46); + var0.setBackground(var46); + SpaceWar.SpacePanel var53 = new SpaceWar.SpacePanel(); + float var54 = var53.getAlignmentX(); + var53.setVisible(false); + boolean var57 = var53.isDoubleBuffered(); + java.awt.dnd.DropTarget var58 = var53.getDropTarget(); + var53.show(false); + boolean var61 = var53.isPaintingForPrint(); + SpaceWar.SpacePanel var62 = new SpaceWar.SpacePanel(); + float var63 = var62.getAlignmentX(); + SpaceWar.SpacePanel var64 = new SpaceWar.SpacePanel(); + float var65 = var64.getAlignmentX(); + var64.setVisible(false); + java.awt.Dimension var68 = var64.getPreferredSize(); + boolean var69 = var64.getVerifyInputWhenFocusTarget(); + java.awt.Component var72 = var64.findComponentAt(10, 1); + var62.addKeyListener((java.awt.event.KeyListener)var64); + java.awt.Dimension var74 = var64.getMinimumSize(); + var53.setMinimumSize(var74); + java.awt.Dimension var76 = var0.getSize(var74); + boolean var77 = var0.isValid(); + int var78 = var0.getWidth(); + SpaceWar.SpacePanel var79 = new SpaceWar.SpacePanel(); + float var80 = var79.getAlignmentX(); + var79.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var85 = new SpaceWar.SpacePanel(); + float var86 = var85.getAlignmentX(); + var85.setVisible(false); + java.awt.Dimension var89 = var85.getPreferredSize(); + var79.setMaximumSize(var89); + boolean var91 = var79.getVerifyInputWhenFocusTarget(); + var79.transferFocusUpCycle(); + java.awt.Point var93 = var79.location(); + java.awt.Point var94 = var0.getLocation(var93); + var0.hide(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var24 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var30); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var31); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var35 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var42 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var46); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var54 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var57 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var58); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var61 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var63 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var65 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var68); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var69 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var72); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var74); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var76); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var77 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var78 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var80 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var86 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var89); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var91 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var93); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var94); + + } + + public void test235() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test235"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + var0.setRequestFocusEnabled(false); + var0.reshape(100, 0, 100, 0); + var0.requestFocus(); + var0.firePropertyChange("hi!", '4', ' '); + java.awt.Point var15 = var0.getLocation(); + java.awt.Dimension var16 = var0.size(); + java.awt.Image var19 = var0.createImage((-1), (-1)); + java.awt.image.VolatileImage var22 = var0.createVolatileImage(3, 2); + SpaceWar.SpacePanel var23 = new SpaceWar.SpacePanel(); + float var24 = var23.getAlignmentX(); + var23.setVisible(false); + SpaceWar.SpacePanel var27 = new SpaceWar.SpacePanel(); + java.awt.Color var28 = var27.getBackground(); + var23.setForeground(var28); + var0.setForeground(var28); + SpaceWar.SpacePanel var31 = new SpaceWar.SpacePanel(); + float var32 = var31.getAlignmentX(); + var31.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var37 = new SpaceWar.SpacePanel(); + float var38 = var37.getAlignmentX(); + var37.setVisible(false); + java.awt.Dimension var41 = var37.getPreferredSize(); + var31.setMaximumSize(var41); + boolean var43 = var31.getVerifyInputWhenFocusTarget(); + java.awt.Toolkit var44 = var31.getToolkit(); + java.awt.Dimension var45 = var31.minimumSize(); + java.awt.Insets var46 = var31.insets(); + java.lang.Object var47 = var0.getClientProperty((java.lang.Object)var46); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var24 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var28); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var32 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var38 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var41); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var43 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var44); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var45); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var46); + + // Regression assertion (captures the current behavior of the code) + assertNull(var47); + + } + + public void test236() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test236"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + java.awt.im.InputMethodRequests var3 = var0.getInputMethodRequests(); + int var4 = var0.countComponents(); + java.awt.event.ComponentListener[] var5 = var0.getComponentListeners(); + var0.removeNotify(); + java.awt.Component var9 = var0.getComponentAt(1, (-1)); + int var10 = var0.getHeight(); + java.awt.FocusTraversalPolicy var11 = var0.getFocusTraversalPolicy(); + javax.swing.ActionMap var12 = var0.getActionMap(); + var0.requestFocus(); + boolean var14 = var0.isFocusCycleRoot(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertNull(var9); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == false); + + } + + public void test237() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test237"); + + + SpaceWar.Enemy var2 = new SpaceWar.Enemy(500, 3); + double var3 = var2.getX(); + int var4 = var2.getRank(); + int var5 = var2.getR(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == 346.2900065551228d); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 3); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == 0); + + } + + public void test238() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test238"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + boolean var6 = var0.isFocusOwner(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + java.awt.Dimension var12 = var8.getPreferredSize(); + java.awt.Toolkit var13 = var8.getToolkit(); + SpaceWar.SpacePanel var14 = new SpaceWar.SpacePanel(); + var14.setName(""); + int var17 = var14.getX(); + SpaceWar.SpacePanel var18 = new SpaceWar.SpacePanel(); + float var19 = var18.getAlignmentX(); + var18.setVisible(false); + var18.nextFocus(); + SpaceWar.SpacePanel var23 = new SpaceWar.SpacePanel(); + float var24 = var23.getAlignmentX(); + var23.setVisible(false); + SpaceWar.SpacePanel var27 = new SpaceWar.SpacePanel(); + java.awt.Color var28 = var27.getBackground(); + var23.setForeground(var28); + var18.setBackground(var28); + var14.setBackground(var28); + var8.setForeground(var28); + var0.putClientProperty((java.lang.Object)(byte)100, (java.lang.Object)var28); + SpaceWar.SpacePanel var34 = new SpaceWar.SpacePanel(); + var34.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + javax.swing.plaf.PanelUI var39 = var34.getUI(); + var0.setUI(var39); + java.awt.Dimension var41 = var0.getSize(); + java.awt.Component var44 = var0.findComponentAt(400, 399); + java.awt.Font var45 = var0.getFont(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var24 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var28); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var39); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var41); + + // Regression assertion (captures the current behavior of the code) + assertNull(var44); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var45); + + } + + public void test239() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test239"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + javax.swing.plaf.PanelUI var3 = var0.getUI(); + SpaceWar.SpacePanel var4 = new SpaceWar.SpacePanel(); + float var5 = var4.getAlignmentX(); + var4.setVisible(false); + boolean var8 = var4.isDoubleBuffered(); + java.awt.dnd.DropTarget var9 = var4.getDropTarget(); + var4.show(false); + boolean var12 = var4.isPaintingForPrint(); + SpaceWar.SpacePanel var13 = new SpaceWar.SpacePanel(); + float var14 = var13.getAlignmentX(); + var13.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var19 = var13.getMouseListeners(); + int var20 = var13.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var21 = var13.getInputMethodRequests(); + var4.addKeyListener((java.awt.event.KeyListener)var13); + SpaceWar.SpacePanel var23 = new SpaceWar.SpacePanel(); + float var24 = var23.getAlignmentX(); + var23.setVisible(false); + boolean var27 = var23.isDoubleBuffered(); + var23.list(); + float var29 = var23.getAlignmentY(); + boolean var30 = var13.isFocusCycleRoot((java.awt.Container)var23); + SpaceWar.SpacePanel var32 = new SpaceWar.SpacePanel(); + float var33 = var32.getAlignmentX(); + var32.setVisible(false); + var32.nextFocus(); + var32.updateUI(); + java.awt.Component var38 = var13.add("", (java.awt.Component)var32); + java.awt.ComponentOrientation var39 = var32.getComponentOrientation(); + boolean var40 = var32.isFocusable(); + var0.remove((java.awt.Component)var32); + var0.hide(); + var0.revalidate(); + javax.swing.event.AncestorListener[] var44 = var0.getAncestorListeners(); + var0.transferFocusDownCycle(); + java.awt.Container var46 = var0.getParent(); + SpaceWar.SpacePanel var47 = new SpaceWar.SpacePanel(); + float var48 = var47.getAlignmentX(); + var47.setVisible(false); + boolean var51 = var47.isDoubleBuffered(); + java.awt.dnd.DropTarget var52 = var47.getDropTarget(); + boolean var53 = var47.isFocusCycleRoot(); + var47.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", 100, 0); + SpaceWar.SpacePanel var58 = new SpaceWar.SpacePanel(); + float var59 = var58.getAlignmentX(); + var58.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var64 = var58.getUI(); + var47.add((java.awt.Component)var58, (java.lang.Object)(short)0); + java.awt.event.InputMethodListener[] var67 = var58.getInputMethodListeners(); + java.awt.Toolkit var68 = var58.getToolkit(); + var58.setSize(24, 2); + java.awt.Dimension var72 = var58.getPreferredSize(); + var0.setMaximumSize(var72); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var9); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var21); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var24 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var29 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var30 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var33 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var38); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var39); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var40 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var44); + + // Regression assertion (captures the current behavior of the code) + assertNull(var46); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var48 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var51 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var52); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var53 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var59 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var64); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var67); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var68); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var72); + + } + + public void test240() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test240"); + + + SpaceWar.Player var0 = new SpaceWar.Player(); + int var1 = var0.getPower(); + var0.setLeft(true); + var0.increasePower(0); + int var6 = var0.getR(); + var0.setUp(false); + var0.setLeft(true); + int var11 = var0.getScore(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == 25); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == 0); + + } + + public void test241() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test241"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + var0.setName(""); + java.awt.Dimension var3 = var0.minimumSize(); + boolean var4 = var0.isDoubleBuffered(); + SpaceWar.SpacePanel var5 = new SpaceWar.SpacePanel(); + float var6 = var5.getAlignmentX(); + var5.setVisible(false); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + java.awt.Color var10 = var9.getBackground(); + var5.setForeground(var10); + SpaceWar.SpacePanel var12 = new SpaceWar.SpacePanel(); + float var13 = var12.getAlignmentX(); + var12.setVisible(false); + boolean var16 = var12.isDoubleBuffered(); + java.awt.dnd.DropTarget var17 = var12.getDropTarget(); + var12.show(false); + java.awt.Rectangle var20 = var12.getVisibleRect(); + var5.repaint(var20); + java.awt.FocusTraversalPolicy var22 = var5.getFocusTraversalPolicy(); + java.awt.im.InputMethodRequests var23 = var5.getInputMethodRequests(); + var5.layout(); + boolean var25 = var5.isFocusTraversalPolicyProvider(); + java.awt.Component var26 = var0.add((java.awt.Component)var5); + SpaceWar.SpacePanel var27 = new SpaceWar.SpacePanel(); + float var28 = var27.getAlignmentX(); + var27.setVisible(false); + var27.nextFocus(); + var27.updateUI(); + var27.enableInputMethods(true); + java.awt.Point var35 = var27.location(); + var26.setLocation(var35); + boolean var37 = var26.isFocusTraversable(); + SpaceWar.SpacePanel var38 = new SpaceWar.SpacePanel(); + float var39 = var38.getAlignmentX(); + var38.setVisible(false); + boolean var42 = var38.isDoubleBuffered(); + var38.list(); + SpaceWar.SpacePanel var44 = new SpaceWar.SpacePanel(); + float var45 = var44.getAlignmentX(); + var44.setVisible(false); + boolean var48 = var44.isDoubleBuffered(); + java.awt.dnd.DropTarget var49 = var44.getDropTarget(); + var44.show(false); + java.awt.Rectangle var52 = var44.getVisibleRect(); + java.awt.Rectangle var53 = var38.getBounds(var52); + javax.swing.JToolTip var54 = var38.createToolTip(); + var38.firePropertyChange("", false, false); + var38.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", (-1L), (-1L)); + java.awt.Container var63 = var38.getParent(); + java.awt.Component.BaselineResizeBehavior var64 = var38.getBaselineResizeBehavior(); + boolean var65 = var38.isDoubleBuffered(); + var26.addKeyListener((java.awt.event.KeyListener)var38); + java.awt.event.MouseWheelListener[] var67 = var38.getMouseWheelListeners(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertNull(var23); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var28 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var35); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var39 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var42 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var45 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var48 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var49); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var52); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var53); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var54); + + // Regression assertion (captures the current behavior of the code) + assertNull(var63); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var64); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var65 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var67); + + } + + public void test242() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test242"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + boolean var2 = var0.hasFocus(); + boolean var3 = var0.isPreferredSizeSet(); + SpaceWar.SpacePanel var4 = new SpaceWar.SpacePanel(); + java.awt.Color var5 = var4.getBackground(); + var4.repaint(); + var4.setRequestFocusEnabled(false); + int var9 = var0.getComponentZOrder((java.awt.Component)var4); + boolean var10 = var0.requestDefaultFocus(); + SpaceWar.SpacePanel var11 = new SpaceWar.SpacePanel(); + float var12 = var11.getAlignmentX(); + var11.setVisible(false); + SpaceWar.SpacePanel var15 = new SpaceWar.SpacePanel(); + java.awt.Color var16 = var15.getBackground(); + var11.setForeground(var16); + SpaceWar.SpacePanel var18 = new SpaceWar.SpacePanel(); + float var19 = var18.getAlignmentX(); + var18.setVisible(false); + boolean var22 = var18.isDoubleBuffered(); + java.awt.dnd.DropTarget var23 = var18.getDropTarget(); + var18.show(false); + java.awt.Rectangle var26 = var18.getVisibleRect(); + var11.repaint(var26); + java.awt.FocusTraversalPolicy var28 = var11.getFocusTraversalPolicy(); + SpaceWar.SpacePanel var29 = new SpaceWar.SpacePanel(); + float var30 = var29.getAlignmentX(); + var29.firePropertyChange("", (-1), 1); + boolean var35 = var29.isFocusOwner(); + SpaceWar.SpacePanel var37 = new SpaceWar.SpacePanel(); + float var38 = var37.getAlignmentX(); + var37.setVisible(false); + java.awt.Dimension var41 = var37.getPreferredSize(); + java.awt.Toolkit var42 = var37.getToolkit(); + SpaceWar.SpacePanel var43 = new SpaceWar.SpacePanel(); + var43.setName(""); + int var46 = var43.getX(); + SpaceWar.SpacePanel var47 = new SpaceWar.SpacePanel(); + float var48 = var47.getAlignmentX(); + var47.setVisible(false); + var47.nextFocus(); + SpaceWar.SpacePanel var52 = new SpaceWar.SpacePanel(); + float var53 = var52.getAlignmentX(); + var52.setVisible(false); + SpaceWar.SpacePanel var56 = new SpaceWar.SpacePanel(); + java.awt.Color var57 = var56.getBackground(); + var52.setForeground(var57); + var47.setBackground(var57); + var43.setBackground(var57); + var37.setForeground(var57); + var29.putClientProperty((java.lang.Object)(byte)100, (java.lang.Object)var57); + var11.setBackground(var57); + SpaceWar.SpacePanel var64 = new SpaceWar.SpacePanel(); + float var65 = var64.getAlignmentX(); + var64.setVisible(false); + boolean var68 = var64.isDoubleBuffered(); + java.awt.dnd.DropTarget var69 = var64.getDropTarget(); + var64.show(false); + boolean var72 = var64.isPaintingForPrint(); + SpaceWar.SpacePanel var73 = new SpaceWar.SpacePanel(); + float var74 = var73.getAlignmentX(); + SpaceWar.SpacePanel var75 = new SpaceWar.SpacePanel(); + float var76 = var75.getAlignmentX(); + var75.setVisible(false); + java.awt.Dimension var79 = var75.getPreferredSize(); + boolean var80 = var75.getVerifyInputWhenFocusTarget(); + java.awt.Component var83 = var75.findComponentAt(10, 1); + var73.addKeyListener((java.awt.event.KeyListener)var75); + java.awt.Dimension var85 = var75.getMinimumSize(); + var64.setMinimumSize(var85); + java.awt.Dimension var87 = var11.getSize(var85); + java.awt.Rectangle var88 = var11.getVisibleRect(); + var0.paintImmediately(var88); + boolean var90 = var0.isFontSet(); + var0.transferFocusDownCycle(); + java.lang.Object var92 = var0.getTreeLock(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var2 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == (-1)); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var22 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var23); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertNull(var28); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var30 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var35 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var38 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var41); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var42); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var46 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var48 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var53 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var57); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var65 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var68 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var69); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var72 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var74 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var76 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var79); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var80 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var83); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var85); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var87); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var88); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var90 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var92); + + } + + public void test243() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test243"); + + + SpaceWar.Player var0 = new SpaceWar.Player(); + int var1 = var0.getPower(); + int var2 = var0.getPower(); + var0.setUp(true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var2 == 0); + + } + + public void test244() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test244"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + boolean var2 = var0.hasFocus(); + SpaceWar.SpacePanel var3 = new SpaceWar.SpacePanel(); + float var4 = var3.getAlignmentX(); + var3.setVisible(false); + var3.nextFocus(); + var3.reshape((-1), 1, (-1), 10); + var3.disable(); + java.awt.LayoutManager var14 = var3.getLayout(); + var3.setVisible(false); + var0.remove((java.awt.Component)var3); + java.awt.Dimension var18 = var3.getSize(); + java.awt.FocusTraversalPolicy var19 = var3.getFocusTraversalPolicy(); + var3.disable(); + java.awt.Color var21 = var3.getBackground(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var2 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var21); + + } + + public void test245() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test245"); + + + SpaceWar.Enemy var2 = new SpaceWar.Enemy(2, 10); + var2.update(); + int var4 = var2.getType(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 2); + + } + + public void test246() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test246"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + SpaceWar.SpacePanel var4 = new SpaceWar.SpacePanel(); + java.awt.Color var5 = var4.getBackground(); + var0.setForeground(var5); + SpaceWar.SpacePanel var7 = new SpaceWar.SpacePanel(); + float var8 = var7.getAlignmentX(); + var7.setVisible(false); + boolean var11 = var7.isDoubleBuffered(); + java.awt.dnd.DropTarget var12 = var7.getDropTarget(); + var7.show(false); + java.awt.Rectangle var15 = var7.getVisibleRect(); + var0.repaint(var15); + java.awt.FocusTraversalPolicy var17 = var0.getFocusTraversalPolicy(); + java.awt.im.InputMethodRequests var18 = var0.getInputMethodRequests(); + var0.layout(); + boolean var20 = var0.isFocusTraversalPolicyProvider(); + java.awt.Insets var21 = var0.insets(); + java.awt.Dimension var22 = var0.getMinimumSize(); + java.awt.Container var23 = var0.getFocusCycleRootAncestor(); + java.awt.im.InputMethodRequests var24 = var0.getInputMethodRequests(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var21); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertNull(var23); + + // Regression assertion (captures the current behavior of the code) + assertNull(var24); + + } + + public void test247() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test247"); + + + SpaceWar.Player var0 = new SpaceWar.Player(); + var0.increasePower(25); + int var3 = var0.getR(); + int var4 = var0.getScore(); + var0.loseLife(); + int var6 = var0.getX(); + var0.setDown(false); + var0.setLife(505); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == 25); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == 400); + + } + + public void test248() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test248"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.reshape((-1), 1, (-1), 10); + var0.disable(); + boolean var11 = var0.isFocusable(); + int var12 = var0.getHeight(); + javax.swing.InputVerifier var13 = var0.getInputVerifier(); + java.awt.Graphics var14 = var0.getGraphics(); + java.awt.Color var15 = var0.getForeground(); + SpaceWar.SpacePanel var16 = new SpaceWar.SpacePanel(); + float var17 = var16.getAlignmentX(); + var16.setVisible(false); + boolean var20 = var16.isDoubleBuffered(); + java.awt.dnd.DropTarget var21 = var16.getDropTarget(); + var16.show(false); + java.awt.Rectangle var24 = var16.getVisibleRect(); + java.awt.Toolkit var25 = var16.getToolkit(); + java.awt.event.MouseMotionListener[] var26 = var16.getMouseMotionListeners(); + SpaceWar.SpacePanel var27 = new SpaceWar.SpacePanel(); + float var28 = var27.getAlignmentX(); + var27.setVisible(false); + boolean var31 = var27.isDoubleBuffered(); + java.awt.dnd.DropTarget var32 = var27.getDropTarget(); + var27.show(false); + boolean var35 = var27.isPaintingForPrint(); + SpaceWar.SpacePanel var36 = new SpaceWar.SpacePanel(); + float var37 = var36.getAlignmentX(); + var36.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var42 = var36.getMouseListeners(); + int var43 = var36.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var44 = var36.getInputMethodRequests(); + var27.addKeyListener((java.awt.event.KeyListener)var36); + SpaceWar.SpacePanel var46 = new SpaceWar.SpacePanel(); + float var47 = var46.getAlignmentX(); + var46.setVisible(false); + boolean var50 = var46.isDoubleBuffered(); + var46.list(); + float var52 = var46.getAlignmentY(); + boolean var53 = var36.isFocusCycleRoot((java.awt.Container)var46); + javax.swing.JPopupMenu var54 = var46.getComponentPopupMenu(); + var46.move((-1), 100); + var46.validate(); + java.awt.Rectangle var59 = var46.getVisibleRect(); + var16.paintImmediately(var59); + var0.paintImmediately(var59); + java.awt.image.ColorModel var62 = var0.getColorModel(); + boolean var63 = var0.isForegroundSet(); + var0.setSize(10, 399); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == 10); + + // Regression assertion (captures the current behavior of the code) + assertNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var21); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var25); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var28 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var31 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var32); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var35 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var42); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var43 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var44); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var47 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var50 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var52 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var53 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var54); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var59); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var62); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var63 == true); + + } + + public void test249() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test249"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + var0.show(false); + boolean var8 = var0.isPaintingForPrint(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var15 = var9.getMouseListeners(); + int var16 = var9.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var17 = var9.getInputMethodRequests(); + var0.addKeyListener((java.awt.event.KeyListener)var9); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + float var20 = var19.getAlignmentX(); + var19.setVisible(false); + boolean var23 = var19.isDoubleBuffered(); + var19.list(); + float var25 = var19.getAlignmentY(); + boolean var26 = var9.isFocusCycleRoot((java.awt.Container)var19); + SpaceWar.SpacePanel var28 = new SpaceWar.SpacePanel(); + float var29 = var28.getAlignmentX(); + var28.setVisible(false); + var28.nextFocus(); + var28.updateUI(); + java.awt.Component var34 = var9.add("", (java.awt.Component)var28); + var9.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=1.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", (byte)10, (byte)100); + java.awt.image.BufferedImage var40 = var9.loadImg("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=10,height=10]]"); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var29 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var34); + + // Regression assertion (captures the current behavior of the code) + assertNull(var40); + + } + + public void test250() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test250"); + + + SpaceWar.Enemy var2 = new SpaceWar.Enemy(0, 100); + int var3 = var2.getR(); + java.awt.image.BufferedImage var5 = var2.loadImg("SpaceWar.SpacePanel[,0,0,0x0,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + int var6 = var2.getRank(); + var2.hit(); + double var8 = var2.getY(); + double var9 = var2.getX(); + int var10 = var2.getRank(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == 100); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 0.0d); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 506.2085981463309d); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 100); + + } + + public void test251() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test251"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + java.awt.Dimension var4 = var0.getPreferredSize(); + java.awt.Toolkit var5 = var0.getToolkit(); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + var6.setName(""); + int var9 = var6.getX(); + SpaceWar.SpacePanel var10 = new SpaceWar.SpacePanel(); + float var11 = var10.getAlignmentX(); + var10.setVisible(false); + var10.nextFocus(); + SpaceWar.SpacePanel var15 = new SpaceWar.SpacePanel(); + float var16 = var15.getAlignmentX(); + var15.setVisible(false); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + java.awt.Color var20 = var19.getBackground(); + var15.setForeground(var20); + var10.setBackground(var20); + var6.setBackground(var20); + var0.setForeground(var20); + SpaceWar.SpacePanel var25 = new SpaceWar.SpacePanel(); + float var26 = var25.getAlignmentX(); + var25.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var31 = new SpaceWar.SpacePanel(); + float var32 = var31.getAlignmentX(); + var31.setVisible(false); + java.awt.Dimension var35 = var31.getPreferredSize(); + var25.setMaximumSize(var35); + boolean var37 = var25.getVerifyInputWhenFocusTarget(); + javax.accessibility.AccessibleContext var38 = var25.getAccessibleContext(); + boolean var39 = var25.isDoubleBuffered(); + java.awt.Rectangle var40 = var25.getVisibleRect(); + var0.scrollRectToVisible(var40); + SpaceWar.SpacePanel var42 = new SpaceWar.SpacePanel(); + float var43 = var42.getAlignmentX(); + var42.setVisible(false); + java.awt.Dimension var46 = var42.getPreferredSize(); + java.awt.Toolkit var47 = var42.getToolkit(); + SpaceWar.SpacePanel var48 = new SpaceWar.SpacePanel(); + var48.setName(""); + int var51 = var48.getX(); + SpaceWar.SpacePanel var52 = new SpaceWar.SpacePanel(); + float var53 = var52.getAlignmentX(); + var52.setVisible(false); + var52.nextFocus(); + SpaceWar.SpacePanel var57 = new SpaceWar.SpacePanel(); + float var58 = var57.getAlignmentX(); + var57.setVisible(false); + SpaceWar.SpacePanel var61 = new SpaceWar.SpacePanel(); + java.awt.Color var62 = var61.getBackground(); + var57.setForeground(var62); + var52.setBackground(var62); + var48.setBackground(var62); + var42.setForeground(var62); + SpaceWar.SpacePanel var67 = new SpaceWar.SpacePanel(); + float var68 = var67.getAlignmentX(); + var67.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var73 = new SpaceWar.SpacePanel(); + float var74 = var73.getAlignmentX(); + var73.setVisible(false); + java.awt.Dimension var77 = var73.getPreferredSize(); + var67.setMaximumSize(var77); + boolean var79 = var67.getVerifyInputWhenFocusTarget(); + javax.accessibility.AccessibleContext var80 = var67.getAccessibleContext(); + boolean var81 = var67.isDoubleBuffered(); + java.awt.Rectangle var82 = var67.getVisibleRect(); + var42.scrollRectToVisible(var82); + var0.removeKeyListener((java.awt.event.KeyListener)var42); + javax.swing.InputVerifier var85 = var0.getInputVerifier(); + var0.enable(); + var0.setInheritsPopupMenu(true); + var0.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=java.awt.Dimension[width=800,height=600],minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", 1.0f, 0.5f); + java.awt.Component var95 = var0.locate(500, 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var4); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var32 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var35); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var38); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var39 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var40); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var43 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var46); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var47); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var51 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var53 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var58 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var62); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var68 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var74 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var77); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var79 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var80); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var81 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var82); + + // Regression assertion (captures the current behavior of the code) + assertNull(var85); + + // Regression assertion (captures the current behavior of the code) + assertNull(var95); + + } + + public void test252() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test252"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + SpaceWar.SpacePanel var4 = new SpaceWar.SpacePanel(); + java.awt.Color var5 = var4.getBackground(); + var0.setForeground(var5); + SpaceWar.SpacePanel var7 = new SpaceWar.SpacePanel(); + float var8 = var7.getAlignmentX(); + var7.setVisible(false); + boolean var11 = var7.isDoubleBuffered(); + java.awt.dnd.DropTarget var12 = var7.getDropTarget(); + var7.show(false); + java.awt.Rectangle var15 = var7.getVisibleRect(); + var0.repaint(var15); + java.awt.FocusTraversalPolicy var17 = var0.getFocusTraversalPolicy(); + var0.resetKeyboardActions(); + boolean var19 = var0.getAutoscrolls(); + java.awt.Component var22 = var0.getComponentAt(2, 2); + java.awt.Component var25 = var0.findComponentAt((-1), 3); + boolean var26 = var0.isLightweight(); + SpaceWar.SpacePanel var27 = new SpaceWar.SpacePanel(); + var27.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + javax.swing.plaf.PanelUI var32 = var27.getUI(); + java.awt.Color var33 = var27.getBackground(); + var27.removeAll(); + SpaceWar.SpacePanel var35 = new SpaceWar.SpacePanel(); + float var36 = var35.getAlignmentX(); + var35.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var41 = var35.getUI(); + java.awt.im.InputMethodRequests var42 = var35.getInputMethodRequests(); + SpaceWar.SpacePanel var43 = new SpaceWar.SpacePanel(); + float var44 = var43.getAlignmentX(); + var43.setVisible(false); + var43.nextFocus(); + var43.updateUI(); + var43.enableInputMethods(true); + var43.setSize((-1), 1); + SpaceWar.SpacePanel var54 = new SpaceWar.SpacePanel(); + var54.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var35.add((java.awt.Component)var43, (java.lang.Object)"SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + java.awt.ComponentOrientation var60 = var43.getComponentOrientation(); + java.beans.VetoableChangeListener[] var61 = var43.getVetoableChangeListeners(); + java.awt.Rectangle var62 = var43.bounds(); + java.awt.Rectangle var63 = var27.getBounds(var62); + var0.computeVisibleRect(var63); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertNull(var25); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var32); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var33); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var36 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var41); + + // Regression assertion (captures the current behavior of the code) + assertNull(var42); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var44 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var60); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var61); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var62); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var63); + + } + + public void test253() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test253"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + var0.show(false); + boolean var8 = var0.isPaintingForPrint(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var15 = var9.getMouseListeners(); + int var16 = var9.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var17 = var9.getInputMethodRequests(); + var0.addKeyListener((java.awt.event.KeyListener)var9); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + float var20 = var19.getAlignmentX(); + var19.setVisible(false); + boolean var23 = var19.isDoubleBuffered(); + var19.list(); + float var25 = var19.getAlignmentY(); + boolean var26 = var9.isFocusCycleRoot((java.awt.Container)var19); + SpaceWar.SpacePanel var28 = new SpaceWar.SpacePanel(); + float var29 = var28.getAlignmentX(); + var28.setVisible(false); + var28.nextFocus(); + var28.updateUI(); + java.awt.Component var34 = var9.add("", (java.awt.Component)var28); + var28.repaint(10L); + java.lang.String var37 = var28.getUIClassID(); + java.awt.Container var38 = var28.getTopLevelAncestor(); + java.awt.Image var41 = var28.createImage(24, 99); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var29 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var34); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var37 + "' != '" + "PanelUI"+ "'", var37.equals("PanelUI")); + + // Regression assertion (captures the current behavior of the code) + assertNull(var38); + + // Regression assertion (captures the current behavior of the code) + assertNull(var41); + + } + + public void test254() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test254"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.repaint(1L); + SpaceWar.SpacePanel var7 = new SpaceWar.SpacePanel(); + float var8 = var7.getAlignmentX(); + var7.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var13 = new SpaceWar.SpacePanel(); + float var14 = var13.getAlignmentX(); + var13.setVisible(false); + java.awt.Dimension var17 = var13.getPreferredSize(); + var7.setMaximumSize(var17); + var0.setPreferredSize(var17); + javax.swing.plaf.PanelUI var20 = var0.getUI(); + SpaceWar.SpacePanel var21 = new SpaceWar.SpacePanel(); + float var22 = var21.getAlignmentX(); + var21.setVisible(false); + var21.nextFocus(); + var21.reshape((-1), 1, (-1), 10); + var21.disable(); + java.awt.LayoutManager var32 = var21.getLayout(); + java.awt.Container var33 = var21.getParent(); + java.lang.String var34 = var21.getUIClassID(); + SpaceWar.Enemy var37 = new SpaceWar.Enemy(0, 10); + var0.add((java.awt.Component)var21, (java.lang.Object)10); + boolean var39 = var0.hasFocus(); + var0.setAutoscrolls(false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var22 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var32); + + // Regression assertion (captures the current behavior of the code) + assertNull(var33); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var34 + "' != '" + "PanelUI"+ "'", var34.equals("PanelUI")); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var39 == false); + + } + + public void test255() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test255"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.setInheritsPopupMenu(false); + var0.setFocusTraversalPolicyProvider(true); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + boolean var12 = var8.isDoubleBuffered(); + var8.list(); + SpaceWar.SpacePanel var14 = new SpaceWar.SpacePanel(); + float var15 = var14.getAlignmentX(); + var14.setVisible(false); + boolean var18 = var14.isDoubleBuffered(); + java.awt.dnd.DropTarget var19 = var14.getDropTarget(); + var14.show(false); + java.awt.Rectangle var22 = var14.getVisibleRect(); + java.awt.Rectangle var23 = var8.getBounds(var22); + javax.swing.JToolTip var24 = var8.createToolTip(); + var0.removeKeyListener((java.awt.event.KeyListener)var8); + var0.setFocusTraversalKeysEnabled(true); + javax.swing.KeyStroke[] var28 = var0.getRegisteredKeyStrokes(); + SpaceWar.SpacePanel var29 = new SpaceWar.SpacePanel(); + float var30 = var29.getAlignmentX(); + var29.setVisible(false); + java.awt.Dimension var33 = var29.getPreferredSize(); + java.awt.Toolkit var34 = var29.getToolkit(); + boolean var35 = var29.isFocusable(); + javax.swing.KeyStroke[] var36 = var29.getRegisteredKeyStrokes(); + java.awt.Component var39 = var29.getComponentAt(100, 100); + java.lang.Object var40 = var29.getTreeLock(); + boolean var43 = var29.inside(400, 0); + java.awt.event.MouseWheelListener[] var44 = var29.getMouseWheelListeners(); + var29.enableInputMethods(true); + boolean var47 = var0.isAncestorOf((java.awt.Component)var29); + java.awt.event.HierarchyListener[] var48 = var29.getHierarchyListeners(); + java.awt.Image var51 = var29.createImage(100, (-1)); + java.awt.Component var54 = var29.locate(25, 399); + SpaceWar.SpacePanel var55 = new SpaceWar.SpacePanel(); + float var56 = var55.getAlignmentX(); + var55.setVisible(false); + SpaceWar.SpacePanel var59 = new SpaceWar.SpacePanel(); + java.awt.Color var60 = var59.getBackground(); + var55.setForeground(var60); + SpaceWar.SpacePanel var62 = new SpaceWar.SpacePanel(); + float var63 = var62.getAlignmentX(); + var62.setVisible(false); + boolean var66 = var62.isDoubleBuffered(); + java.awt.dnd.DropTarget var67 = var62.getDropTarget(); + var62.show(false); + java.awt.Rectangle var70 = var62.getVisibleRect(); + var55.repaint(var70); + java.awt.FocusTraversalPolicy var72 = var55.getFocusTraversalPolicy(); + java.awt.im.InputMethodRequests var73 = var55.getInputMethodRequests(); + var55.layout(); + java.awt.Point var75 = var55.getMousePosition(); + java.awt.Graphics var76 = var55.getGraphics(); + javax.swing.JPopupMenu var77 = var55.getComponentPopupMenu(); + var55.transferFocusDownCycle(); + var55.setAutoscrolls(false); + var29.setNextFocusableComponent((java.awt.Component)var55); + javax.swing.InputMap var82 = var55.getInputMap(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var23); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var28); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var30 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var33); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var34); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var35 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var36); + + // Regression assertion (captures the current behavior of the code) + assertNull(var39); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var40); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var43 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var44); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var47 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var48); + + // Regression assertion (captures the current behavior of the code) + assertNull(var51); + + // Regression assertion (captures the current behavior of the code) + assertNull(var54); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var56 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var60); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var63 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var66 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var67); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var70); + + // Regression assertion (captures the current behavior of the code) + assertNull(var72); + + // Regression assertion (captures the current behavior of the code) + assertNull(var73); + + // Regression assertion (captures the current behavior of the code) + assertNull(var75); + + // Regression assertion (captures the current behavior of the code) + assertNull(var76); + + // Regression assertion (captures the current behavior of the code) + assertNull(var77); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var82); + + } + + public void test256() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test256"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var6 = var0.getUI(); + java.awt.im.InputMethodRequests var7 = var0.getInputMethodRequests(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + var8.nextFocus(); + var8.updateUI(); + var8.enableInputMethods(true); + var8.setSize((-1), 1); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + var19.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var0.add((java.awt.Component)var8, (java.lang.Object)"SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + SpaceWar.SpacePanel var25 = new SpaceWar.SpacePanel(); + float var26 = var25.getAlignmentX(); + var25.setVisible(false); + var25.setInheritsPopupMenu(false); + boolean var31 = var25.isDoubleBuffered(); + boolean var32 = var25.isMinimumSizeSet(); + SpaceWar.SpacePanel var33 = new SpaceWar.SpacePanel(); + float var34 = var33.getAlignmentX(); + var33.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var39 = new SpaceWar.SpacePanel(); + float var40 = var39.getAlignmentX(); + var39.setVisible(false); + java.awt.Dimension var43 = var39.getPreferredSize(); + var33.setMaximumSize(var43); + boolean var45 = var33.getVerifyInputWhenFocusTarget(); + javax.accessibility.AccessibleContext var46 = var33.getAccessibleContext(); + boolean var47 = var33.isDoubleBuffered(); + java.awt.Rectangle var48 = var33.getVisibleRect(); + var25.setBounds(var48); + java.awt.Rectangle var50 = var0.getBounds(var48); + SpaceWar.SpacePanel var51 = new SpaceWar.SpacePanel(); + float var52 = var51.getAlignmentX(); + var51.setVisible(false); + boolean var55 = var51.isDoubleBuffered(); + java.awt.dnd.DropTarget var56 = var51.getDropTarget(); + var51.show(false); + boolean var59 = var51.isPaintingForPrint(); + SpaceWar.SpacePanel var60 = new SpaceWar.SpacePanel(); + float var61 = var60.getAlignmentX(); + var60.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var66 = var60.getMouseListeners(); + int var67 = var60.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var68 = var60.getInputMethodRequests(); + var51.addKeyListener((java.awt.event.KeyListener)var60); + SpaceWar.SpacePanel var70 = new SpaceWar.SpacePanel(); + float var71 = var70.getAlignmentX(); + var70.setVisible(false); + boolean var74 = var70.isDoubleBuffered(); + var70.list(); + float var76 = var70.getAlignmentY(); + boolean var77 = var60.isFocusCycleRoot((java.awt.Container)var70); + SpaceWar.SpacePanel var79 = new SpaceWar.SpacePanel(); + float var80 = var79.getAlignmentX(); + var79.setVisible(false); + var79.nextFocus(); + var79.updateUI(); + java.awt.Component var85 = var60.add("", (java.awt.Component)var79); + java.awt.ComponentOrientation var86 = var79.getComponentOrientation(); + var0.applyComponentOrientation(var86); + var0.requestFocus(); + boolean var89 = var0.getAutoscrolls(); + int var90 = var0.getX(); + javax.swing.JRootPane var91 = var0.getRootPane(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var31 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var32 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var34 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var40 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var43); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var45 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var46); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var47 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var48); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var50); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var52 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var55 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var56); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var59 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var61 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var66); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var67 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var68); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var71 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var74 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var76 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var77 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var80 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var85); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var86); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var89 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var90 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var91); + + } + + public void test257() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test257"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + SpaceWar.SpacePanel var4 = new SpaceWar.SpacePanel(); + java.awt.Color var5 = var4.getBackground(); + var0.setForeground(var5); + SpaceWar.SpacePanel var7 = new SpaceWar.SpacePanel(); + float var8 = var7.getAlignmentX(); + var7.setVisible(false); + boolean var11 = var7.isDoubleBuffered(); + java.awt.dnd.DropTarget var12 = var7.getDropTarget(); + var7.show(false); + java.awt.Rectangle var15 = var7.getVisibleRect(); + var0.repaint(var15); + java.awt.FocusTraversalPolicy var17 = var0.getFocusTraversalPolicy(); + SpaceWar.SpacePanel var18 = new SpaceWar.SpacePanel(); + float var19 = var18.getAlignmentX(); + var18.firePropertyChange("", (-1), 1); + boolean var24 = var18.isFocusOwner(); + SpaceWar.SpacePanel var26 = new SpaceWar.SpacePanel(); + float var27 = var26.getAlignmentX(); + var26.setVisible(false); + java.awt.Dimension var30 = var26.getPreferredSize(); + java.awt.Toolkit var31 = var26.getToolkit(); + SpaceWar.SpacePanel var32 = new SpaceWar.SpacePanel(); + var32.setName(""); + int var35 = var32.getX(); + SpaceWar.SpacePanel var36 = new SpaceWar.SpacePanel(); + float var37 = var36.getAlignmentX(); + var36.setVisible(false); + var36.nextFocus(); + SpaceWar.SpacePanel var41 = new SpaceWar.SpacePanel(); + float var42 = var41.getAlignmentX(); + var41.setVisible(false); + SpaceWar.SpacePanel var45 = new SpaceWar.SpacePanel(); + java.awt.Color var46 = var45.getBackground(); + var41.setForeground(var46); + var36.setBackground(var46); + var32.setBackground(var46); + var26.setForeground(var46); + var18.putClientProperty((java.lang.Object)(byte)100, (java.lang.Object)var46); + var0.setBackground(var46); + javax.swing.JToolTip var53 = var0.createToolTip(); + var53.enable(true); + // The following exception was thrown during execution. + // This behavior will recorded for regression testing. + try { + java.awt.Point var56 = var53.getLocationOnScreen(); + fail("Expected exception of type java.awt.IllegalComponentStateException"); + } catch (java.awt.IllegalComponentStateException e) { + // Expected exception. + } + + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var24 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var30); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var31); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var35 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var42 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var46); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var53); + + } + + public void test258() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test258"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.setInheritsPopupMenu(false); + boolean var6 = var0.isDoubleBuffered(); + boolean var7 = var0.isMinimumSizeSet(); + java.awt.Font var8 = var0.getFont(); + java.awt.event.MouseListener[] var9 = var0.getMouseListeners(); + boolean var10 = var0.getAutoscrolls(); + var0.setAutoscrolls(false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var9); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == false); + + } + + public void test259() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test259"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + var0.show(false); + boolean var8 = var0.isPaintingForPrint(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var15 = var9.getMouseListeners(); + int var16 = var9.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var17 = var9.getInputMethodRequests(); + var0.addKeyListener((java.awt.event.KeyListener)var9); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + float var20 = var19.getAlignmentX(); + var19.setVisible(false); + boolean var23 = var19.isDoubleBuffered(); + var19.list(); + float var25 = var19.getAlignmentY(); + boolean var26 = var9.isFocusCycleRoot((java.awt.Container)var19); + boolean var27 = var19.isEnabled(); + java.awt.Dimension var28 = var19.getMaximumSize(); + var19.setName("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + var19.updateUI(); + var19.reshape(99, 10, (-1), 100); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var28); + + } + + public void test260() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test260"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var6 = var0.getUI(); + java.awt.im.InputMethodRequests var7 = var0.getInputMethodRequests(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + var8.nextFocus(); + var8.updateUI(); + var8.enableInputMethods(true); + var8.setSize((-1), 1); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + var19.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var0.add((java.awt.Component)var8, (java.lang.Object)"SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + var8.setAutoscrolls(true); + SpaceWar.SpacePanel var27 = new SpaceWar.SpacePanel(); + float var28 = var27.getAlignmentX(); + boolean var29 = var27.hasFocus(); + boolean var30 = var27.isPreferredSizeSet(); + var27.firePropertyChange("", (short)1, (short)0); + boolean var35 = var27.isMaximumSizeSet(); + java.awt.peer.ComponentPeer var36 = var27.getPeer(); + java.awt.ComponentOrientation var37 = var27.getComponentOrientation(); + var8.setComponentOrientation(var37); + SpaceWar.SpacePanel var39 = new SpaceWar.SpacePanel(); + java.awt.Color var40 = var39.getBackground(); + var39.repaint(); + var39.setRequestFocusEnabled(false); + var39.reshape(100, 0, 100, 0); + java.beans.VetoableChangeListener[] var49 = var39.getVetoableChangeListeners(); + java.awt.Rectangle var50 = var39.getVisibleRect(); + float var51 = var39.getAlignmentY(); + var8.addKeyListener((java.awt.event.KeyListener)var39); + javax.swing.InputVerifier var53 = var39.getInputVerifier(); + SpaceWar.SpacePanel var54 = new SpaceWar.SpacePanel(); + float var55 = var54.getAlignmentX(); + var54.setVisible(false); + boolean var58 = var54.isDoubleBuffered(); + var54.enable(false); + boolean var61 = var54.requestDefaultFocus(); + SpaceWar.SpacePanel var62 = new SpaceWar.SpacePanel(); + float var63 = var62.getAlignmentX(); + var62.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var68 = var62.getMouseListeners(); + int var69 = var62.getDebugGraphicsOptions(); + SpaceWar.SpacePanel var70 = new SpaceWar.SpacePanel(); + float var71 = var70.getAlignmentX(); + var70.setVisible(false); + boolean var74 = var70.isDoubleBuffered(); + java.awt.dnd.DropTarget var75 = var70.getDropTarget(); + var70.show(false); + java.awt.Rectangle var78 = var70.getVisibleRect(); + var62.paintImmediately(var78); + var62.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", '#', '#'); + var62.list(); + java.awt.Rectangle var85 = var62.getBounds(); + var54.scrollRectToVisible(var85); + SpaceWar.Player var87 = new SpaceWar.Player(); + boolean var88 = var87.isRecovering(); + var87.setRigth(false); + int var91 = var87.getPowerLevel(); + var87.increasePower((-1)); + java.lang.Object var94 = var54.getClientProperty((java.lang.Object)(-1)); + boolean var95 = var54.hasFocus(); + java.awt.Point var97 = var54.getMousePosition(false); + boolean var98 = var39.isFocusCycleRoot((java.awt.Container)var54); + java.awt.Point var99 = var39.getMousePosition(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var28 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var29 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var30 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var35 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var36); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var37); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var40); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var49); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var50); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var51 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNull(var53); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var55 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var58 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var61 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var63 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var68); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var69 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var71 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var74 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var75); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var78); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var85); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var88 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var91 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var94); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var95 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var97); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var98 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var99); + + } + + public void test261() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test261"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + SpaceWar.SpacePanel var4 = new SpaceWar.SpacePanel(); + java.awt.Color var5 = var4.getBackground(); + var0.setForeground(var5); + SpaceWar.SpacePanel var7 = new SpaceWar.SpacePanel(); + float var8 = var7.getAlignmentX(); + var7.setVisible(false); + boolean var11 = var7.isDoubleBuffered(); + java.awt.dnd.DropTarget var12 = var7.getDropTarget(); + var7.show(false); + java.awt.Rectangle var15 = var7.getVisibleRect(); + var0.repaint(var15); + java.awt.FocusTraversalPolicy var17 = var0.getFocusTraversalPolicy(); + SpaceWar.SpacePanel var18 = new SpaceWar.SpacePanel(); + float var19 = var18.getAlignmentX(); + var18.firePropertyChange("", (-1), 1); + boolean var24 = var18.isFocusOwner(); + SpaceWar.SpacePanel var26 = new SpaceWar.SpacePanel(); + float var27 = var26.getAlignmentX(); + var26.setVisible(false); + java.awt.Dimension var30 = var26.getPreferredSize(); + java.awt.Toolkit var31 = var26.getToolkit(); + SpaceWar.SpacePanel var32 = new SpaceWar.SpacePanel(); + var32.setName(""); + int var35 = var32.getX(); + SpaceWar.SpacePanel var36 = new SpaceWar.SpacePanel(); + float var37 = var36.getAlignmentX(); + var36.setVisible(false); + var36.nextFocus(); + SpaceWar.SpacePanel var41 = new SpaceWar.SpacePanel(); + float var42 = var41.getAlignmentX(); + var41.setVisible(false); + SpaceWar.SpacePanel var45 = new SpaceWar.SpacePanel(); + java.awt.Color var46 = var45.getBackground(); + var41.setForeground(var46); + var36.setBackground(var46); + var32.setBackground(var46); + var26.setForeground(var46); + var18.putClientProperty((java.lang.Object)(byte)100, (java.lang.Object)var46); + var0.setBackground(var46); + javax.swing.JToolTip var53 = var0.createToolTip(); + var53.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, true); + SpaceWar.SpacePanel var58 = new SpaceWar.SpacePanel(); + var58.setName(""); + java.awt.Dimension var61 = var58.minimumSize(); + boolean var62 = var58.isDoubleBuffered(); + java.awt.event.HierarchyListener[] var63 = var58.getHierarchyListeners(); + java.awt.Font var64 = var58.getFont(); + java.awt.FontMetrics var65 = var53.getFontMetrics(var64); + int var66 = var53.getX(); + int var67 = var53.getX(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var24 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var30); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var31); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var35 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var42 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var46); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var53); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var61); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var62 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var63); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var64); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var65); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var66 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var67 == 0); + + } + + public void test262() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test262"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var6 = var0.getMouseListeners(); + java.awt.Dimension var7 = var0.getPreferredSize(); + java.util.Locale var8 = var0.getLocale(); + var0.setFocusable(true); + var0.paintImmediately((-1), 10, 100, 25); + boolean var16 = var0.isOpaque(); + javax.swing.border.Border var17 = var0.getBorder(); + java.util.Locale var18 = var0.getLocale(); + javax.swing.JComponent.setDefaultLocale(var18); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var18); + + } + + public void test263() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test263"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.reshape((-1), 1, (-1), 10); + SpaceWar.SpacePanel var10 = new SpaceWar.SpacePanel(); + java.awt.Color var11 = var10.getBackground(); + var10.repaint(); + var10.setRequestFocusEnabled(false); + var10.reshape(100, 0, 100, 0); + java.awt.Component var20 = var0.add((java.awt.Component)var10); + var0.removeNotify(); + var0.requestFocus(); + var0.setFocusCycleRoot(false); + var0.layout(); + java.lang.String var26 = var0.toString(); + javax.swing.JToolTip var27 = var0.createToolTip(); + SpaceWar.SpacePanel var28 = new SpaceWar.SpacePanel(); + float var29 = var28.getAlignmentX(); + var28.setVisible(false); + boolean var32 = var28.isDoubleBuffered(); + var28.enable(false); + boolean var35 = var28.getFocusTraversalKeysEnabled(); + SpaceWar.SpacePanel var36 = new SpaceWar.SpacePanel(); + float var37 = var36.getAlignmentX(); + var36.setVisible(false); + java.awt.Dimension var40 = var36.getPreferredSize(); + java.awt.Toolkit var41 = var36.getToolkit(); + boolean var42 = var36.isFocusable(); + javax.swing.KeyStroke[] var43 = var36.getRegisteredKeyStrokes(); + SpaceWar.SpacePanel var44 = new SpaceWar.SpacePanel(); + float var45 = var44.getAlignmentX(); + SpaceWar.SpacePanel var46 = new SpaceWar.SpacePanel(); + float var47 = var46.getAlignmentX(); + var46.setVisible(false); + java.awt.Dimension var50 = var46.getPreferredSize(); + boolean var51 = var46.getVerifyInputWhenFocusTarget(); + java.awt.Component var54 = var46.findComponentAt(10, 1); + var44.addKeyListener((java.awt.event.KeyListener)var46); + var46.repaint(100, (-1), (-1), 1); + boolean var61 = var36.isAncestorOf((java.awt.Component)var46); + var28.addKeyListener((java.awt.event.KeyListener)var46); + var46.hide(); + java.awt.event.MouseWheelListener[] var64 = var46.getMouseWheelListeners(); + var46.setBounds(24, 400, (-1), 2); + java.awt.ComponentOrientation var70 = var46.getComponentOrientation(); + var0.setComponentOrientation(var70); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var26 + "' != '" + "SpaceWar.SpacePanel[,-1,1,-1x10,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"+ "'", var26.equals("SpaceWar.SpacePanel[,-1,1,-1x10,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]")); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var27); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var29 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var32 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var35 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var40); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var41); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var42 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var43); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var45 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var47 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var50); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var51 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var54); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var61 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var64); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var70); + + } + + public void test264() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test264"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + SpaceWar.SpacePanel var2 = new SpaceWar.SpacePanel(); + float var3 = var2.getAlignmentX(); + var2.setVisible(false); + java.awt.Dimension var6 = var2.getPreferredSize(); + boolean var7 = var2.getVerifyInputWhenFocusTarget(); + java.awt.Component var10 = var2.findComponentAt(10, 1); + var0.addKeyListener((java.awt.event.KeyListener)var2); + var2.repaint(100, (-1), (-1), 1); + SpaceWar.SpacePanel var17 = new SpaceWar.SpacePanel(); + java.awt.Color var18 = var17.getBackground(); + var17.repaint(); + java.awt.im.InputMethodRequests var20 = var17.getInputMethodRequests(); + java.awt.GraphicsConfiguration var21 = var17.getGraphicsConfiguration(); + var2.remove((java.awt.Component)var17); + var2.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", 0.0f, 1.0f); + SpaceWar.SpacePanel var27 = new SpaceWar.SpacePanel(); + float var28 = var27.getAlignmentX(); + var27.setVisible(false); + java.awt.Dimension var31 = var27.getPreferredSize(); + boolean var32 = var27.getVerifyInputWhenFocusTarget(); + SpaceWar.SpacePanel var33 = new SpaceWar.SpacePanel(); + var33.setName(""); + int var36 = var33.getX(); + SpaceWar.SpacePanel var37 = new SpaceWar.SpacePanel(); + float var38 = var37.getAlignmentX(); + var37.setVisible(false); + var37.nextFocus(); + SpaceWar.SpacePanel var42 = new SpaceWar.SpacePanel(); + float var43 = var42.getAlignmentX(); + var42.setVisible(false); + SpaceWar.SpacePanel var46 = new SpaceWar.SpacePanel(); + java.awt.Color var47 = var46.getBackground(); + var42.setForeground(var47); + var37.setBackground(var47); + var33.setBackground(var47); + var2.add((java.awt.Component)var27, (java.lang.Object)var33); + var33.requestFocus(); + boolean var53 = var33.isDoubleBuffered(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertNull(var21); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var28 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var31); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var32 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var36 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var38 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var43 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var47); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var53 == true); + + } + + public void test265() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test265"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + java.awt.im.InputMethodRequests var3 = var0.getInputMethodRequests(); + var0.setDoubleBuffered(true); + var0.show(false); + boolean var8 = var0.isPaintingForPrint(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.setVisible(false); + boolean var13 = var9.isDoubleBuffered(); + var9.list(); + float var15 = var9.getAlignmentY(); + boolean var16 = var9.isOpaque(); + SpaceWar.SpacePanel var17 = new SpaceWar.SpacePanel(); + java.awt.Color var18 = var17.getBackground(); + var17.repaint(); + java.awt.im.InputMethodRequests var20 = var17.getInputMethodRequests(); + int var21 = var17.countComponents(); + java.awt.event.ComponentListener[] var22 = var17.getComponentListeners(); + SpaceWar.SpacePanel var23 = new SpaceWar.SpacePanel(); + float var24 = var23.getAlignmentX(); + var23.removeNotify(); + SpaceWar.SpacePanel var26 = new SpaceWar.SpacePanel(); + float var27 = var26.getAlignmentX(); + var26.setVisible(false); + boolean var30 = var26.isDoubleBuffered(); + var26.list(); + float var32 = var26.getAlignmentY(); + java.awt.Insets var33 = var26.getInsets(); + java.awt.Insets var34 = var23.getInsets(var33); + java.awt.Insets var35 = var17.getInsets(var34); + java.awt.Dimension var36 = var17.preferredSize(); + var9.removeKeyListener((java.awt.event.KeyListener)var17); + java.lang.Object var38 = var0.getClientProperty((java.lang.Object)var17); + java.awt.im.InputContext var39 = var17.getInputContext(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var24 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var30 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var32 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var33); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var34); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var35); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var36); + + // Regression assertion (captures the current behavior of the code) + assertNull(var38); + + // Regression assertion (captures the current behavior of the code) + assertNull(var39); + + } + + public void test266() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test266"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var6 = var0.getUI(); + java.awt.im.InputMethodRequests var7 = var0.getInputMethodRequests(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + var8.nextFocus(); + var8.updateUI(); + var8.enableInputMethods(true); + var8.setSize((-1), 1); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + var19.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var0.add((java.awt.Component)var8, (java.lang.Object)"SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + var8.setAutoscrolls(true); + SpaceWar.SpacePanel var27 = new SpaceWar.SpacePanel(); + float var28 = var27.getAlignmentX(); + var27.setVisible(false); + var27.nextFocus(); + var27.reshape((-1), 1, (-1), 10); + var27.disable(); + java.awt.Component var40 = var27.findComponentAt(0, (-1)); + SpaceWar.SpacePanel var41 = new SpaceWar.SpacePanel(); + var41.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + javax.swing.plaf.PanelUI var46 = var41.getUI(); + SpaceWar.SpacePanel var47 = new SpaceWar.SpacePanel(); + float var48 = var47.getAlignmentX(); + var47.setVisible(false); + var47.nextFocus(); + var47.repaint(1L); + SpaceWar.SpacePanel var54 = new SpaceWar.SpacePanel(); + float var55 = var54.getAlignmentX(); + var54.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var60 = new SpaceWar.SpacePanel(); + float var61 = var60.getAlignmentX(); + var60.setVisible(false); + java.awt.Dimension var64 = var60.getPreferredSize(); + var54.setMaximumSize(var64); + var47.setPreferredSize(var64); + var41.setMaximumSize(var64); + var27.setSize(var64); + var8.setMaximumSize(var64); + int var70 = var8.getY(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var28 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNull(var40); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var46); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var48 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var55 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var61 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var64); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var70 == 0); + + } + + public void test267() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test267"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + SpaceWar.SpacePanel var4 = new SpaceWar.SpacePanel(); + java.awt.Color var5 = var4.getBackground(); + var0.setForeground(var5); + SpaceWar.SpacePanel var7 = new SpaceWar.SpacePanel(); + float var8 = var7.getAlignmentX(); + var7.setVisible(false); + boolean var11 = var7.isDoubleBuffered(); + java.awt.dnd.DropTarget var12 = var7.getDropTarget(); + var7.show(false); + java.awt.Rectangle var15 = var7.getVisibleRect(); + var0.repaint(var15); + java.awt.FocusTraversalPolicy var17 = var0.getFocusTraversalPolicy(); + java.awt.im.InputMethodRequests var18 = var0.getInputMethodRequests(); + var0.layout(); + boolean var20 = var0.isFocusTraversalPolicyProvider(); + java.awt.Insets var21 = var0.insets(); + java.awt.Rectangle var22 = var0.getVisibleRect(); + boolean var23 = var0.isMinimumSizeSet(); + boolean var24 = var0.isMinimumSizeSet(); + var0.setLocation(3, 1); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var21); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var24 == false); + + } + + public void test268() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test268"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.setInheritsPopupMenu(false); + var0.setFocusTraversalPolicyProvider(true); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + boolean var12 = var8.isDoubleBuffered(); + var8.list(); + SpaceWar.SpacePanel var14 = new SpaceWar.SpacePanel(); + float var15 = var14.getAlignmentX(); + var14.setVisible(false); + boolean var18 = var14.isDoubleBuffered(); + java.awt.dnd.DropTarget var19 = var14.getDropTarget(); + var14.show(false); + java.awt.Rectangle var22 = var14.getVisibleRect(); + java.awt.Rectangle var23 = var8.getBounds(var22); + javax.swing.JToolTip var24 = var8.createToolTip(); + var0.removeKeyListener((java.awt.event.KeyListener)var8); + var0.setFocusTraversalKeysEnabled(true); + javax.swing.KeyStroke[] var28 = var0.getRegisteredKeyStrokes(); + var0.setOpaque(false); + var0.move(3, 24); + boolean var34 = var0.isOptimizedDrawingEnabled(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var23); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var28); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var34 == true); + + } + + public void test269() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test269"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + var0.setRequestFocusEnabled(false); + var0.reshape(100, 0, 100, 0); + var0.requestFocus(); + var0.firePropertyChange("hi!", '4', ' '); + java.awt.Point var15 = var0.getLocation(); + java.awt.Dimension var16 = var0.size(); + java.awt.Image var19 = var0.createImage((-1), (-1)); + java.awt.event.ComponentListener[] var20 = var0.getComponentListeners(); + SpaceWar.SpacePanel var21 = new SpaceWar.SpacePanel(); + var21.setName(""); + java.awt.ComponentOrientation var24 = var21.getComponentOrientation(); + var21.firePropertyChange("PanelUI", 1.0f, 0.5f); + int var29 = var0.getComponentZOrder((java.awt.Component)var21); + SpaceWar.SpacePanel var30 = new SpaceWar.SpacePanel(); + float var31 = var30.getAlignmentX(); + var30.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var36 = var30.getUI(); + java.awt.im.InputMethodRequests var37 = var30.getInputMethodRequests(); + SpaceWar.SpacePanel var38 = new SpaceWar.SpacePanel(); + float var39 = var38.getAlignmentX(); + var38.setVisible(false); + var38.nextFocus(); + var38.updateUI(); + var38.enableInputMethods(true); + var38.setSize((-1), 1); + SpaceWar.SpacePanel var49 = new SpaceWar.SpacePanel(); + var49.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var30.add((java.awt.Component)var38, (java.lang.Object)"SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + SpaceWar.SpacePanel var55 = new SpaceWar.SpacePanel(); + float var56 = var55.getAlignmentX(); + var55.setVisible(false); + var55.setInheritsPopupMenu(false); + boolean var61 = var55.isDoubleBuffered(); + boolean var62 = var55.isMinimumSizeSet(); + SpaceWar.SpacePanel var63 = new SpaceWar.SpacePanel(); + float var64 = var63.getAlignmentX(); + var63.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var69 = new SpaceWar.SpacePanel(); + float var70 = var69.getAlignmentX(); + var69.setVisible(false); + java.awt.Dimension var73 = var69.getPreferredSize(); + var63.setMaximumSize(var73); + boolean var75 = var63.getVerifyInputWhenFocusTarget(); + javax.accessibility.AccessibleContext var76 = var63.getAccessibleContext(); + boolean var77 = var63.isDoubleBuffered(); + java.awt.Rectangle var78 = var63.getVisibleRect(); + var55.setBounds(var78); + java.awt.Rectangle var80 = var30.getBounds(var78); + var0.computeVisibleRect(var78); + java.awt.image.ColorModel var82 = var0.getColorModel(); + boolean var83 = var0.isEnabled(); + java.awt.Component var84 = var0.getNextFocusableComponent(); + java.awt.Component var87 = var0.findComponentAt(2, 10); + java.awt.Point var89 = var0.getMousePosition(false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var29 == (-1)); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var31 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var36); + + // Regression assertion (captures the current behavior of the code) + assertNull(var37); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var39 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var56 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var61 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var62 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var64 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var70 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var73); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var75 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var76); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var77 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var78); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var80); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var82); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var83 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var84); + + // Regression assertion (captures the current behavior of the code) + assertNull(var87); + + // Regression assertion (captures the current behavior of the code) + assertNull(var89); + + } + + public void test270() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test270"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var1 = new SpaceWar.SpacePanel(); + java.awt.Color var2 = var1.getBackground(); + SpaceWar.SpacePanel var3 = new SpaceWar.SpacePanel(); + float var4 = var3.getAlignmentX(); + var3.setVisible(false); + var3.nextFocus(); + var3.updateUI(); + var3.enableInputMethods(true); + var0.add((java.awt.Component)var1, (java.lang.Object)true); + java.awt.Dimension var12 = var1.getPreferredSize(); + var1.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=1.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", '#', ' '); + java.lang.String var17 = var1.getUIClassID(); + boolean var18 = var1.isPreferredSizeSet(); + var1.setBounds(2, 2, 505, 24); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var2); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var17 + "' != '" + "PanelUI"+ "'", var17.equals("PanelUI")); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == true); + + } + + public void test271() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test271"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + java.awt.Dimension var4 = var0.getPreferredSize(); + java.awt.Toolkit var5 = var0.getToolkit(); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + var6.setName(""); + int var9 = var6.getX(); + SpaceWar.SpacePanel var10 = new SpaceWar.SpacePanel(); + float var11 = var10.getAlignmentX(); + var10.setVisible(false); + var10.nextFocus(); + SpaceWar.SpacePanel var15 = new SpaceWar.SpacePanel(); + float var16 = var15.getAlignmentX(); + var15.setVisible(false); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + java.awt.Color var20 = var19.getBackground(); + var15.setForeground(var20); + var10.setBackground(var20); + var6.setBackground(var20); + var0.setForeground(var20); + SpaceWar.SpacePanel var25 = new SpaceWar.SpacePanel(); + float var26 = var25.getAlignmentX(); + var25.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var31 = new SpaceWar.SpacePanel(); + float var32 = var31.getAlignmentX(); + var31.setVisible(false); + java.awt.Dimension var35 = var31.getPreferredSize(); + var25.setMaximumSize(var35); + boolean var37 = var25.getVerifyInputWhenFocusTarget(); + javax.accessibility.AccessibleContext var38 = var25.getAccessibleContext(); + boolean var39 = var25.isDoubleBuffered(); + java.awt.Rectangle var40 = var25.getVisibleRect(); + var0.scrollRectToVisible(var40); + SpaceWar.SpacePanel var42 = new SpaceWar.SpacePanel(); + float var43 = var42.getAlignmentX(); + var42.setVisible(false); + java.awt.Dimension var46 = var42.getPreferredSize(); + java.awt.Toolkit var47 = var42.getToolkit(); + SpaceWar.SpacePanel var48 = new SpaceWar.SpacePanel(); + var48.setName(""); + int var51 = var48.getX(); + SpaceWar.SpacePanel var52 = new SpaceWar.SpacePanel(); + float var53 = var52.getAlignmentX(); + var52.setVisible(false); + var52.nextFocus(); + SpaceWar.SpacePanel var57 = new SpaceWar.SpacePanel(); + float var58 = var57.getAlignmentX(); + var57.setVisible(false); + SpaceWar.SpacePanel var61 = new SpaceWar.SpacePanel(); + java.awt.Color var62 = var61.getBackground(); + var57.setForeground(var62); + var52.setBackground(var62); + var48.setBackground(var62); + var42.setForeground(var62); + SpaceWar.SpacePanel var67 = new SpaceWar.SpacePanel(); + float var68 = var67.getAlignmentX(); + var67.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var73 = new SpaceWar.SpacePanel(); + float var74 = var73.getAlignmentX(); + var73.setVisible(false); + java.awt.Dimension var77 = var73.getPreferredSize(); + var67.setMaximumSize(var77); + boolean var79 = var67.getVerifyInputWhenFocusTarget(); + javax.accessibility.AccessibleContext var80 = var67.getAccessibleContext(); + boolean var81 = var67.isDoubleBuffered(); + java.awt.Rectangle var82 = var67.getVisibleRect(); + var42.scrollRectToVisible(var82); + var0.removeKeyListener((java.awt.event.KeyListener)var42); + var42.firePropertyChange("PanelUI", (short)1, (short)1); + java.lang.String var89 = var42.getToolTipText(); + var42.setAlignmentY(100.0f); + boolean var92 = var42.isBackgroundSet(); + java.awt.GraphicsConfiguration var93 = var42.getGraphicsConfiguration(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var4); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var32 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var35); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var38); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var39 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var40); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var43 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var46); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var47); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var51 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var53 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var58 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var62); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var68 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var74 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var77); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var79 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var80); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var81 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var82); + + // Regression assertion (captures the current behavior of the code) + assertNull(var89); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var92 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var93); + + } + + public void test272() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test272"); + + + SpaceWar.Player var0 = new SpaceWar.Player(); + int var1 = var0.getPower(); + var0.setLeft(true); + var0.increasePower(0); + int var6 = var0.getR(); + int var7 = var0.getLives(); + int var8 = var0.getPowerLevel(); + var0.setDown(false); + var0.setLeft(false); + int var13 = var0.getPower(); + var0.setScore(99); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == 25); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 3); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == 0); + + } + + public void test273() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test273"); + + + SpaceWar.Player var0 = new SpaceWar.Player(); + var0.increasePower(25); + int var3 = var0.getScore(); + var0.setRigth(true); + var0.loseLife(); + var0.increasePower(3); + var0.setRigth(true); + int var11 = var0.getLives(); + int var12 = var0.getLives(); + int var13 = var0.getR(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == 2); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == 2); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == 25); + + } + + public void test274() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test274"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.setInheritsPopupMenu(false); + var0.move(10, 10); + var0.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var0.removeAll(); + javax.accessibility.AccessibleContext var14 = var0.getAccessibleContext(); + java.awt.event.InputMethodListener[] var15 = var0.getInputMethodListeners(); + var0.revalidate(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + } + + public void test275() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test275"); + + + SpaceWar.PowerUp var3 = new SpaceWar.PowerUp(10, 499.0d, 506.9915098063617d); + double var4 = var3.getY(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 506.9915098063617d); + + } + + public void test276() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test276"); + + + SpaceWar.Enemy var2 = new SpaceWar.Enemy(10, 2); + var2.update(); + int var4 = var2.getR(); + java.awt.image.BufferedImage var6 = var2.loadImg("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var6); + + } + + public void test277() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test277"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var6 = var0.getUI(); + java.awt.im.InputMethodRequests var7 = var0.getInputMethodRequests(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + var8.nextFocus(); + var8.updateUI(); + var8.enableInputMethods(true); + var8.setSize((-1), 1); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + var19.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var0.add((java.awt.Component)var8, (java.lang.Object)"SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + SpaceWar.SpacePanel var25 = new SpaceWar.SpacePanel(); + float var26 = var25.getAlignmentX(); + var25.setVisible(false); + java.awt.Dimension var29 = var25.getPreferredSize(); + java.awt.Toolkit var30 = var25.getToolkit(); + java.awt.Toolkit var31 = var25.getToolkit(); + java.awt.Component var32 = var8.add((java.awt.Component)var25); + var8.setDebugGraphicsOptions(0); + var8.setVerifyInputWhenFocusTarget(false); + var8.nextFocus(); + var8.repaint(100, 0, 10, 3); + java.awt.Dimension var43 = var8.getSize(); + var8.resetKeyboardActions(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var29); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var30); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var31); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var32); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var43); + + } + + public void test278() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test278"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + var0.setRequestFocusEnabled(false); + var0.setIgnoreRepaint(false); + java.lang.String var7 = var0.toString(); + java.awt.Color var8 = var0.getBackground(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.setVisible(false); + java.awt.Dimension var13 = var9.getPreferredSize(); + java.awt.Toolkit var14 = var9.getToolkit(); + java.awt.Toolkit var15 = var9.getToolkit(); + SpaceWar.Player var16 = new SpaceWar.Player(); + var16.increasePower(25); + int var19 = var16.getScore(); + var16.setRigth(true); + var16.loseLife(); + var0.putClientProperty((java.lang.Object)var9, (java.lang.Object)var16); + int var24 = var16.getPowerLevel(); + int var25 = var16.getPower(); + boolean var26 = var16.isRecovering(); + int var27 = var16.getLives(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var7 + "' != '" + "SpaceWar.SpacePanel[,0,0,0var7,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"+ "'", var7.equals("SpaceWar.SpacePanel[,0,0,0var7,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]")); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var24 == 1); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == 24); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == 2); + + } + + public void test279() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test279"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + var0.show(false); + boolean var8 = var0.isPaintingForPrint(); + javax.swing.TransferHandler var9 = var0.getTransferHandler(); + java.awt.Insets var10 = var0.getInsets(); + java.awt.Point var11 = var0.getLocation(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var9); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + } + + public void test280() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test280"); + + + SpaceWar.PowerUp var3 = new SpaceWar.PowerUp(499, 495.44236387443226d, 0.0d); + boolean var4 = var3.update(); + int var5 = var3.getType(); + int var6 = var3.getType(); + boolean var7 = var3.update(); + boolean var8 = var3.update(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == 499); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == 499); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + } + + public void test281() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test281"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + var0.enable(false); + boolean var7 = var0.getFocusTraversalKeysEnabled(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + java.awt.Dimension var12 = var8.getPreferredSize(); + java.awt.Toolkit var13 = var8.getToolkit(); + boolean var14 = var8.isFocusable(); + javax.swing.KeyStroke[] var15 = var8.getRegisteredKeyStrokes(); + SpaceWar.SpacePanel var16 = new SpaceWar.SpacePanel(); + float var17 = var16.getAlignmentX(); + SpaceWar.SpacePanel var18 = new SpaceWar.SpacePanel(); + float var19 = var18.getAlignmentX(); + var18.setVisible(false); + java.awt.Dimension var22 = var18.getPreferredSize(); + boolean var23 = var18.getVerifyInputWhenFocusTarget(); + java.awt.Component var26 = var18.findComponentAt(10, 1); + var16.addKeyListener((java.awt.event.KeyListener)var18); + var18.repaint(100, (-1), (-1), 1); + boolean var33 = var8.isAncestorOf((java.awt.Component)var18); + var0.addKeyListener((java.awt.event.KeyListener)var18); + SpaceWar.SpacePanel var36 = new SpaceWar.SpacePanel(); + float var37 = var36.getAlignmentX(); + var36.setVisible(false); + boolean var40 = var36.isDoubleBuffered(); + java.awt.dnd.DropTarget var41 = var36.getDropTarget(); + var36.show(false); + boolean var44 = var36.isPaintingForPrint(); + SpaceWar.SpacePanel var45 = new SpaceWar.SpacePanel(); + float var46 = var45.getAlignmentX(); + var45.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var51 = var45.getMouseListeners(); + int var52 = var45.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var53 = var45.getInputMethodRequests(); + var36.addKeyListener((java.awt.event.KeyListener)var45); + SpaceWar.SpacePanel var55 = new SpaceWar.SpacePanel(); + float var56 = var55.getAlignmentX(); + var55.setVisible(false); + boolean var59 = var55.isDoubleBuffered(); + var55.list(); + float var61 = var55.getAlignmentY(); + boolean var62 = var45.isFocusCycleRoot((java.awt.Container)var55); + SpaceWar.SpacePanel var64 = new SpaceWar.SpacePanel(); + float var65 = var64.getAlignmentX(); + var64.setVisible(false); + var64.nextFocus(); + var64.updateUI(); + java.awt.Component var70 = var45.add("", (java.awt.Component)var64); + java.awt.Component var71 = var18.add("", (java.awt.Component)var64); + var18.layout(); + var18.paintImmediately(2, 400, 10, 499); + var18.setIgnoreRepaint(false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var33 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var40 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var41); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var44 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var46 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var51); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var52 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var53); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var56 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var59 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var61 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var62 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var65 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var70); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var71); + + } + + public void test282() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test282"); + + + SpaceWar.Enemy var2 = new SpaceWar.Enemy(0, 100); + var2.explode(); + boolean var4 = var2.isDead(); + double var5 = var2.getX(); + boolean var6 = var2.isDead(); + boolean var7 = var2.isDead(); + var2.explode(); + double var9 = var2.getY(); + double var10 = var2.getX(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == 401.4053889947292d); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.0d); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 401.4053889947292d); + + } + + public void test283() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test283"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + var0.list(); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + float var7 = var6.getAlignmentX(); + var6.setVisible(false); + boolean var10 = var6.isDoubleBuffered(); + java.awt.dnd.DropTarget var11 = var6.getDropTarget(); + var6.show(false); + java.awt.Rectangle var14 = var6.getVisibleRect(); + java.awt.Rectangle var15 = var0.getBounds(var14); + javax.swing.JToolTip var16 = var0.createToolTip(); + java.awt.Dimension var17 = var0.minimumSize(); + var0.setAutoscrolls(true); + var0.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", (short)10, (short)1); + javax.accessibility.AccessibleContext var24 = var0.getAccessibleContext(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var24); + + } + + public void test284() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test284"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.reshape((-1), 1, (-1), 10); + SpaceWar.SpacePanel var10 = new SpaceWar.SpacePanel(); + java.awt.Color var11 = var10.getBackground(); + var10.repaint(); + var10.setRequestFocusEnabled(false); + var10.reshape(100, 0, 100, 0); + java.awt.Component var20 = var0.add((java.awt.Component)var10); + SpaceWar.SpacePanel var21 = new SpaceWar.SpacePanel(); + var21.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + javax.swing.plaf.PanelUI var26 = var21.getUI(); + SpaceWar.SpacePanel var27 = new SpaceWar.SpacePanel(); + float var28 = var27.getAlignmentX(); + var27.setVisible(false); + var27.nextFocus(); + var27.repaint(1L); + SpaceWar.SpacePanel var34 = new SpaceWar.SpacePanel(); + float var35 = var34.getAlignmentX(); + var34.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var40 = new SpaceWar.SpacePanel(); + float var41 = var40.getAlignmentX(); + var40.setVisible(false); + java.awt.Dimension var44 = var40.getPreferredSize(); + var34.setMaximumSize(var44); + var27.setPreferredSize(var44); + var21.setMaximumSize(var44); + java.awt.Dimension var48 = var10.getSize(var44); + SpaceWar.SpacePanel var49 = new SpaceWar.SpacePanel(); + float var50 = var49.getAlignmentX(); + var49.setVisible(false); + boolean var53 = var49.isDoubleBuffered(); + java.awt.dnd.DropTarget var54 = var49.getDropTarget(); + var49.show(false); + boolean var57 = var49.isPaintingForPrint(); + SpaceWar.SpacePanel var58 = new SpaceWar.SpacePanel(); + float var59 = var58.getAlignmentX(); + var58.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var64 = var58.getMouseListeners(); + int var65 = var58.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var66 = var58.getInputMethodRequests(); + var49.addKeyListener((java.awt.event.KeyListener)var58); + SpaceWar.SpacePanel var68 = new SpaceWar.SpacePanel(); + float var69 = var68.getAlignmentX(); + var68.setVisible(false); + boolean var72 = var68.isDoubleBuffered(); + var68.list(); + float var74 = var68.getAlignmentY(); + boolean var75 = var58.isFocusCycleRoot((java.awt.Container)var68); + var10.setNextFocusableComponent((java.awt.Component)var68); + java.awt.Rectangle var77 = var68.getVisibleRect(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var28 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var35 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var41 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var44); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var48); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var50 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var53 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var54); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var57 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var59 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var64); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var65 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var66); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var69 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var72 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var74 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var75 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var77); + + } + + public void test285() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test285"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + var0.setRequestFocusEnabled(false); + var0.reshape(100, 0, 100, 0); + javax.swing.event.AncestorListener[] var10 = var0.getAncestorListeners(); + java.awt.event.FocusListener[] var11 = var0.getFocusListeners(); + java.awt.event.MouseWheelListener[] var12 = var0.getMouseWheelListeners(); + java.lang.String var13 = var0.getUIClassID(); + java.awt.Rectangle var14 = var0.getVisibleRect(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var13 + "' != '" + "PanelUI"+ "'", var13.equals("PanelUI")); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + } + + public void test286() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test286"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var6 = var0.getUI(); + java.awt.im.InputMethodRequests var7 = var0.getInputMethodRequests(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + var8.nextFocus(); + var8.updateUI(); + var8.enableInputMethods(true); + var8.setSize((-1), 1); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + var19.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var0.add((java.awt.Component)var8, (java.lang.Object)"SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + java.awt.event.KeyListener[] var25 = var0.getKeyListeners(); + java.awt.FocusTraversalPolicy var26 = var0.getFocusTraversalPolicy(); + java.awt.Component var29 = var0.locate(3, 100); + var0.removeAll(); + var0.nextFocus(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var25); + + // Regression assertion (captures the current behavior of the code) + assertNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertNull(var29); + + } + + public void test287() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test287"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var6 = var0.getUI(); + java.awt.im.InputMethodRequests var7 = var0.getInputMethodRequests(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + var8.nextFocus(); + var8.updateUI(); + var8.enableInputMethods(true); + var8.setSize((-1), 1); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + var19.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var0.add((java.awt.Component)var8, (java.lang.Object)"SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + SpaceWar.SpacePanel var25 = new SpaceWar.SpacePanel(); + var25.setName(""); + java.awt.ComponentOrientation var28 = var25.getComponentOrientation(); + var0.applyComponentOrientation(var28); + java.awt.Component[] var30 = var0.getComponents(); + SpaceWar.SpacePanel var31 = new SpaceWar.SpacePanel(); + float var32 = var31.getAlignmentX(); + var31.setVisible(false); + java.awt.Dimension var35 = var31.getPreferredSize(); + boolean var36 = var31.getVerifyInputWhenFocusTarget(); + java.awt.Component var39 = var31.findComponentAt(10, 1); + boolean var40 = var31.requestDefaultFocus(); + var31.setVerifyInputWhenFocusTarget(false); + java.awt.Point var43 = var31.getLocation(); + var0.setLocation(var43); + SpaceWar.SpacePanel var45 = new SpaceWar.SpacePanel(); + float var46 = var45.getAlignmentX(); + var45.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var51 = new SpaceWar.SpacePanel(); + float var52 = var51.getAlignmentX(); + var51.setVisible(false); + java.awt.Dimension var55 = var51.getPreferredSize(); + var45.setMaximumSize(var55); + boolean var57 = var45.getVerifyInputWhenFocusTarget(); + javax.accessibility.AccessibleContext var58 = var45.getAccessibleContext(); + boolean var59 = var45.isDoubleBuffered(); + boolean var60 = var45.getAutoscrolls(); + var45.repaint(10L, (-1), 25, (-1), 100); + var45.updateUI(); + var45.show(); + SpaceWar.SpacePanel var69 = new SpaceWar.SpacePanel(); + float var70 = var69.getAlignmentX(); + var69.setVisible(false); + var69.setInheritsPopupMenu(false); + var69.move(10, 10); + var69.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var69.removeAll(); + java.awt.Point var83 = var69.location(); + java.awt.Point var84 = var69.location(); + java.awt.Component var85 = var45.findComponentAt(var84); + java.awt.Component var86 = var0.findComponentAt(var84); + java.awt.Color var87 = var0.getForeground(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var28); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var30); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var32 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var35); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var36 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var39); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var40 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var43); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var46 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var52 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var55); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var57 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var58); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var59 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var60 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var70 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var83); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var84); + + // Regression assertion (captures the current behavior of the code) + assertNull(var85); + + // Regression assertion (captures the current behavior of the code) + assertNull(var86); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var87); + + } + + public void test288() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test288"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + SpaceWar.SpacePanel var4 = new SpaceWar.SpacePanel(); + java.awt.Color var5 = var4.getBackground(); + var0.setForeground(var5); + SpaceWar.SpacePanel var7 = new SpaceWar.SpacePanel(); + float var8 = var7.getAlignmentX(); + var7.setVisible(false); + boolean var11 = var7.isDoubleBuffered(); + java.awt.dnd.DropTarget var12 = var7.getDropTarget(); + var7.show(false); + java.awt.Rectangle var15 = var7.getVisibleRect(); + var0.repaint(var15); + java.awt.FocusTraversalPolicy var17 = var0.getFocusTraversalPolicy(); + SpaceWar.SpacePanel var18 = new SpaceWar.SpacePanel(); + float var19 = var18.getAlignmentX(); + var18.firePropertyChange("", (-1), 1); + boolean var24 = var18.isFocusOwner(); + SpaceWar.SpacePanel var26 = new SpaceWar.SpacePanel(); + float var27 = var26.getAlignmentX(); + var26.setVisible(false); + java.awt.Dimension var30 = var26.getPreferredSize(); + java.awt.Toolkit var31 = var26.getToolkit(); + SpaceWar.SpacePanel var32 = new SpaceWar.SpacePanel(); + var32.setName(""); + int var35 = var32.getX(); + SpaceWar.SpacePanel var36 = new SpaceWar.SpacePanel(); + float var37 = var36.getAlignmentX(); + var36.setVisible(false); + var36.nextFocus(); + SpaceWar.SpacePanel var41 = new SpaceWar.SpacePanel(); + float var42 = var41.getAlignmentX(); + var41.setVisible(false); + SpaceWar.SpacePanel var45 = new SpaceWar.SpacePanel(); + java.awt.Color var46 = var45.getBackground(); + var41.setForeground(var46); + var36.setBackground(var46); + var32.setBackground(var46); + var26.setForeground(var46); + var18.putClientProperty((java.lang.Object)(byte)100, (java.lang.Object)var46); + var0.setBackground(var46); + SpaceWar.SpacePanel var53 = new SpaceWar.SpacePanel(); + float var54 = var53.getAlignmentX(); + var53.setVisible(false); + boolean var57 = var53.isDoubleBuffered(); + java.awt.dnd.DropTarget var58 = var53.getDropTarget(); + var53.show(false); + boolean var61 = var53.isPaintingForPrint(); + SpaceWar.SpacePanel var62 = new SpaceWar.SpacePanel(); + float var63 = var62.getAlignmentX(); + SpaceWar.SpacePanel var64 = new SpaceWar.SpacePanel(); + float var65 = var64.getAlignmentX(); + var64.setVisible(false); + java.awt.Dimension var68 = var64.getPreferredSize(); + boolean var69 = var64.getVerifyInputWhenFocusTarget(); + java.awt.Component var72 = var64.findComponentAt(10, 1); + var62.addKeyListener((java.awt.event.KeyListener)var64); + java.awt.Dimension var74 = var64.getMinimumSize(); + var53.setMinimumSize(var74); + java.awt.Dimension var76 = var0.getSize(var74); + var0.doLayout(); + java.awt.image.ColorModel var78 = var0.getColorModel(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var24 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var30); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var31); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var35 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var42 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var46); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var54 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var57 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var58); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var61 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var63 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var65 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var68); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var69 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var72); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var74); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var76); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var78); + + } + + public void test289() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test289"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + var0.show(false); + boolean var8 = var0.isPaintingForPrint(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var15 = var9.getMouseListeners(); + int var16 = var9.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var17 = var9.getInputMethodRequests(); + var0.addKeyListener((java.awt.event.KeyListener)var9); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + float var20 = var19.getAlignmentX(); + var19.setVisible(false); + boolean var23 = var19.isDoubleBuffered(); + var19.list(); + float var25 = var19.getAlignmentY(); + boolean var26 = var9.isFocusCycleRoot((java.awt.Container)var19); + var19.firePropertyChange("", 1L, 1L); + var19.setVerifyInputWhenFocusTarget(true); + SpaceWar.SpacePanel var33 = new SpaceWar.SpacePanel(); + var33.setName(""); + java.awt.Dimension var36 = var33.minimumSize(); + boolean var37 = var33.isDoubleBuffered(); + SpaceWar.SpacePanel var38 = new SpaceWar.SpacePanel(); + float var39 = var38.getAlignmentX(); + SpaceWar.SpacePanel var40 = new SpaceWar.SpacePanel(); + float var41 = var40.getAlignmentX(); + var40.setVisible(false); + java.awt.Dimension var44 = var40.getPreferredSize(); + boolean var45 = var40.getVerifyInputWhenFocusTarget(); + java.awt.Component var48 = var40.findComponentAt(10, 1); + var38.addKeyListener((java.awt.event.KeyListener)var40); + var40.repaint(100, (-1), (-1), 1); + SpaceWar.SpacePanel var55 = new SpaceWar.SpacePanel(); + java.awt.Color var56 = var55.getBackground(); + var55.repaint(); + java.awt.im.InputMethodRequests var58 = var55.getInputMethodRequests(); + java.awt.GraphicsConfiguration var59 = var55.getGraphicsConfiguration(); + var40.remove((java.awt.Component)var55); + java.awt.Font var61 = var55.getFont(); + java.awt.FontMetrics var62 = var33.getFontMetrics(var61); + java.awt.FontMetrics var63 = var19.getFontMetrics(var61); + boolean var64 = var19.isFocusTraversalPolicyProvider(); + var19.resetKeyboardActions(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var36); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var39 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var41 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var44); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var45 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var48); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var56); + + // Regression assertion (captures the current behavior of the code) + assertNull(var58); + + // Regression assertion (captures the current behavior of the code) + assertNull(var59); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var61); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var62); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var63); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var64 == false); + + } + + public void test290() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test290"); + + + SpaceWar.PowerUp var3 = new SpaceWar.PowerUp(100, (-1.0d), 0.0d); + double var4 = var3.getX(); + double var5 = var3.getR(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == (-1.0d)); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == 0.0d); + + } + + public void test291() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test291"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + var0.show(false); + boolean var8 = var0.isPaintingForPrint(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var15 = var9.getMouseListeners(); + int var16 = var9.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var17 = var9.getInputMethodRequests(); + var0.addKeyListener((java.awt.event.KeyListener)var9); + boolean var19 = var0.isDisplayable(); + java.awt.Point var20 = var0.getLocation(); + var0.layout(); + SpaceWar.SpacePanel var22 = new SpaceWar.SpacePanel(); + float var23 = var22.getAlignmentX(); + var22.setVisible(false); + var22.nextFocus(); + var22.reshape((-1), 1, (-1), 10); + SpaceWar.SpacePanel var32 = new SpaceWar.SpacePanel(); + java.awt.Color var33 = var32.getBackground(); + var32.repaint(); + var32.setRequestFocusEnabled(false); + var32.reshape(100, 0, 100, 0); + java.awt.Component var42 = var22.add((java.awt.Component)var32); + var22.enable(); + java.lang.Object var44 = var0.getClientProperty((java.lang.Object)var22); + var22.revalidate(); + boolean var46 = var22.isFocusable(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var33); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var42); + + // Regression assertion (captures the current behavior of the code) + assertNull(var44); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var46 == true); + + } + + public void test292() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test292"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + var0.show(false); + boolean var8 = var0.isPaintingForPrint(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var15 = var9.getMouseListeners(); + int var16 = var9.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var17 = var9.getInputMethodRequests(); + var0.addKeyListener((java.awt.event.KeyListener)var9); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + float var20 = var19.getAlignmentX(); + var19.setVisible(false); + boolean var23 = var19.isDoubleBuffered(); + var19.list(); + float var25 = var19.getAlignmentY(); + boolean var26 = var9.isFocusCycleRoot((java.awt.Container)var19); + var19.firePropertyChange("", 1L, 1L); + var19.setVerifyInputWhenFocusTarget(true); + java.awt.image.VolatileImage var35 = var19.createVolatileImage(500, 99); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var35); + + } + + public void test293() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test293"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var6 = var0.getUI(); + java.awt.im.InputMethodRequests var7 = var0.getInputMethodRequests(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + var8.nextFocus(); + var8.updateUI(); + var8.enableInputMethods(true); + var8.setSize((-1), 1); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + var19.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var0.add((java.awt.Component)var8, (java.lang.Object)"SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + boolean var25 = var0.isCursorSet(); + var0.enableInputMethods(true); + java.awt.FocusTraversalPolicy var28 = var0.getFocusTraversalPolicy(); + var0.firePropertyChange("SpaceWar.SpacePanel[,-1,1,-1x10,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", 100.0d, 328.72617228257167d); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var28); + + } + + public void test294() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test294"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.reshape((-1), 1, (-1), 10); + var0.disable(); + java.awt.LayoutManager var11 = var0.getLayout(); + java.awt.Container var12 = var0.getParent(); + java.lang.String var13 = var0.getToolTipText(); + java.awt.Dimension var14 = var0.preferredSize(); + var0.hide(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + } + + public void test295() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test295"); + + + SpaceWar.Player var0 = new SpaceWar.Player(); + var0.increasePower(25); + int var3 = var0.getR(); + int var4 = var0.getScore(); + var0.loseLife(); + boolean var6 = var0.isRecovering(); + var0.setFiring(false); + int var9 = var0.getScore(); + var0.setLeft(true); + var0.setDown(true); + var0.update(); + int var15 = var0.getY(); + var0.update(); + var0.increasePower(498); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == 25); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == 505); + + } + + public void test296() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test296"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.reshape((-1), 1, (-1), 10); + var0.disable(); + var0.show(); + SpaceWar.SpacePanel var12 = new SpaceWar.SpacePanel(); + float var13 = var12.getAlignmentX(); + var12.setVisible(false); + boolean var16 = var12.isDoubleBuffered(); + var12.list(); + SpaceWar.SpacePanel var18 = new SpaceWar.SpacePanel(); + float var19 = var18.getAlignmentX(); + var18.setVisible(false); + boolean var22 = var18.isDoubleBuffered(); + java.awt.dnd.DropTarget var23 = var18.getDropTarget(); + var18.show(false); + java.awt.Rectangle var26 = var18.getVisibleRect(); + java.awt.Rectangle var27 = var12.getBounds(var26); + javax.swing.JToolTip var28 = var12.createToolTip(); + var12.firePropertyChange("", false, false); + var12.validate(); + SpaceWar.SpacePanel var34 = new SpaceWar.SpacePanel(); + float var35 = var34.getAlignmentX(); + var34.setVisible(false); + boolean var38 = var34.isDoubleBuffered(); + java.awt.dnd.DropTarget var39 = var34.getDropTarget(); + var34.show(false); + boolean var42 = var34.isPaintingForPrint(); + SpaceWar.SpacePanel var43 = new SpaceWar.SpacePanel(); + float var44 = var43.getAlignmentX(); + var43.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var49 = var43.getMouseListeners(); + int var50 = var43.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var51 = var43.getInputMethodRequests(); + var34.addKeyListener((java.awt.event.KeyListener)var43); + var43.repaint(); + java.awt.Point var54 = var43.location(); + java.awt.Component var55 = var12.getComponentAt(var54); + java.awt.Point var56 = var0.getLocation(var54); + var0.setAlignmentY(0.5f); + SpaceWar.SpacePanel var59 = new SpaceWar.SpacePanel(); + java.awt.Color var60 = var59.getBackground(); + var59.repaint(); + java.awt.im.InputMethodRequests var62 = var59.getInputMethodRequests(); + var59.setDoubleBuffered(true); + SpaceWar.SpacePanel var65 = new SpaceWar.SpacePanel(); + float var66 = var65.getAlignmentX(); + boolean var67 = var65.hasFocus(); + java.awt.Insets var68 = var65.getInsets(); + java.awt.Insets var69 = var59.getInsets(var68); + java.awt.Insets var70 = var0.getInsets(var68); + java.awt.event.FocusListener[] var71 = var0.getFocusListeners(); + var0.firePropertyChange("hi!", 3, 499); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var22 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var23); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var27); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var28); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var35 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var38 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var39); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var42 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var44 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var49); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var50 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var51); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var54); + + // Regression assertion (captures the current behavior of the code) + assertNull(var55); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var56); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var60); + + // Regression assertion (captures the current behavior of the code) + assertNull(var62); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var66 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var67 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var68); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var69); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var70); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var71); + + } + + public void test297() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test297"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + var0.setName(""); + int var3 = var0.getX(); + SpaceWar.SpacePanel var4 = new SpaceWar.SpacePanel(); + float var5 = var4.getAlignmentX(); + var4.setVisible(false); + var4.nextFocus(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.setVisible(false); + SpaceWar.SpacePanel var13 = new SpaceWar.SpacePanel(); + java.awt.Color var14 = var13.getBackground(); + var9.setForeground(var14); + var4.setBackground(var14); + var0.setBackground(var14); + boolean var18 = var0.isFocusable(); + java.awt.Dimension var19 = var0.minimumSize(); + SpaceWar.SpacePanel var20 = new SpaceWar.SpacePanel(); + float var21 = var20.getAlignmentX(); + var20.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var26 = var20.getUI(); + var20.disable(); + java.awt.FocusTraversalPolicy var28 = var20.getFocusTraversalPolicy(); + SpaceWar.SpacePanel var29 = new SpaceWar.SpacePanel(); + float var30 = var29.getAlignmentX(); + var29.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var35 = new SpaceWar.SpacePanel(); + float var36 = var35.getAlignmentX(); + var35.setVisible(false); + java.awt.Dimension var39 = var35.getPreferredSize(); + var29.setMaximumSize(var39); + boolean var41 = var29.getVerifyInputWhenFocusTarget(); + javax.accessibility.AccessibleContext var42 = var29.getAccessibleContext(); + boolean var43 = var29.isDoubleBuffered(); + boolean var44 = var29.getAutoscrolls(); + var29.repaint(10L, (-1), 25, (-1), 100); + var29.updateUI(); + boolean var52 = var29.requestDefaultFocus(); + SpaceWar.SpacePanel var53 = new SpaceWar.SpacePanel(); + float var54 = var53.getAlignmentX(); + var53.setVisible(false); + boolean var57 = var53.isDoubleBuffered(); + SpaceWar.SpacePanel var58 = new SpaceWar.SpacePanel(); + float var59 = var58.getAlignmentX(); + var58.setVisible(false); + var58.nextFocus(); + var58.reshape((-1), 1, (-1), 10); + var58.disable(); + boolean var69 = var58.isFocusable(); + int var70 = var58.getHeight(); + var53.setNextFocusableComponent((java.awt.Component)var58); + SpaceWar.SpacePanel var72 = new SpaceWar.SpacePanel(); + float var73 = var72.getAlignmentX(); + var72.setVisible(false); + var72.nextFocus(); + SpaceWar.SpacePanel var77 = new SpaceWar.SpacePanel(); + float var78 = var77.getAlignmentX(); + var77.setVisible(false); + SpaceWar.SpacePanel var81 = new SpaceWar.SpacePanel(); + java.awt.Color var82 = var81.getBackground(); + var77.setForeground(var82); + var72.setBackground(var82); + java.awt.Component var85 = var72.getNextFocusableComponent(); + float var86 = var72.getAlignmentY(); + java.awt.event.MouseListener[] var87 = var72.getMouseListeners(); + java.awt.Point var88 = var72.location(); + java.awt.Point var89 = var53.getLocation(var88); + java.awt.Point var90 = var29.getLocation(var88); + java.awt.Component var91 = var20.getComponentAt(var88); + boolean var92 = var0.contains(var88); + var0.setFocusTraversalPolicyProvider(false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertNull(var28); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var30 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var36 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var39); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var41 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var42); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var43 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var44 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var52 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var54 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var57 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var59 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var69 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var70 == 10); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var73 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var78 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var82); + + // Regression assertion (captures the current behavior of the code) + assertNull(var85); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var86 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var87); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var88); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var89); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var90); + + // Regression assertion (captures the current behavior of the code) + assertNull(var91); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var92 == false); + + } + + public void test298() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test298"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var6 = var0.getMouseListeners(); + var0.firePropertyChange("", 0.5f, 100.0f); + var0.enable(false); + int var13 = var0.getDebugGraphicsOptions(); + SpaceWar.SpacePanel var14 = new SpaceWar.SpacePanel(); + float var15 = var14.getAlignmentX(); + var14.setVisible(false); + var14.nextFocus(); + var14.repaint(1L); + SpaceWar.SpacePanel var21 = new SpaceWar.SpacePanel(); + float var22 = var21.getAlignmentX(); + var21.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var27 = new SpaceWar.SpacePanel(); + float var28 = var27.getAlignmentX(); + var27.setVisible(false); + java.awt.Dimension var31 = var27.getPreferredSize(); + var21.setMaximumSize(var31); + var14.setPreferredSize(var31); + java.awt.Container var34 = var14.getFocusCycleRootAncestor(); + java.awt.image.ColorModel var35 = var14.getColorModel(); + int var36 = var14.getComponentCount(); + java.awt.Component var37 = var0.add((java.awt.Component)var14); + java.awt.Cursor var38 = var37.getCursor(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var22 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var28 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var31); + + // Regression assertion (captures the current behavior of the code) + assertNull(var34); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var35); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var36 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var37); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var38); + + } + + public void test299() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test299"); + + + SpaceWar.Enemy var2 = new SpaceWar.Enemy((-1), 10); + int var3 = var2.getRank(); + java.awt.image.BufferedImage var5 = var2.loadImg("SpaceWar.SpacePanel[,-1,1,-1x10,invalid,hidden,disabled,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + double var6 = var2.getX(); + var2.explode(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == 10); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == 303.60543962277467d); + + } + + public void test300() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test300"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.repaint(1L); + SpaceWar.SpacePanel var7 = new SpaceWar.SpacePanel(); + float var8 = var7.getAlignmentX(); + var7.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var13 = new SpaceWar.SpacePanel(); + float var14 = var13.getAlignmentX(); + var13.setVisible(false); + java.awt.Dimension var17 = var13.getPreferredSize(); + var7.setMaximumSize(var17); + var0.setPreferredSize(var17); + javax.swing.plaf.PanelUI var20 = var0.getUI(); + SpaceWar.SpacePanel var21 = new SpaceWar.SpacePanel(); + float var22 = var21.getAlignmentX(); + var21.setVisible(false); + var21.nextFocus(); + var21.reshape((-1), 1, (-1), 10); + var21.disable(); + java.awt.LayoutManager var32 = var21.getLayout(); + java.awt.Container var33 = var21.getParent(); + java.lang.String var34 = var21.getUIClassID(); + SpaceWar.Enemy var37 = new SpaceWar.Enemy(0, 10); + var0.add((java.awt.Component)var21, (java.lang.Object)10); + javax.swing.JToolTip var39 = var0.createToolTip(); + var0.setBounds((-1), 25, 10, 400); + java.awt.Container var45 = var0.getParent(); + var0.repaint((-1), 500, 500, 400); + float var51 = var0.getAlignmentX(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var22 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var32); + + // Regression assertion (captures the current behavior of the code) + assertNull(var33); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var34 + "' != '" + "PanelUI"+ "'", var34.equals("PanelUI")); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var39); + + // Regression assertion (captures the current behavior of the code) + assertNull(var45); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var51 == 0.5f); + + } + + public void test301() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test301"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var6 = var0.getUI(); + java.awt.im.InputMethodRequests var7 = var0.getInputMethodRequests(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + var8.nextFocus(); + var8.updateUI(); + var8.enableInputMethods(true); + var8.setSize((-1), 1); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + var19.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var0.add((java.awt.Component)var8, (java.lang.Object)"SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + java.awt.ComponentOrientation var25 = var8.getComponentOrientation(); + java.beans.VetoableChangeListener[] var26 = var8.getVetoableChangeListeners(); + java.awt.dnd.DropTarget var27 = var8.getDropTarget(); + SpaceWar.SpacePanel var28 = new SpaceWar.SpacePanel(); + java.awt.Color var29 = var28.getBackground(); + var28.repaint(); + java.awt.im.InputMethodRequests var31 = var28.getInputMethodRequests(); + var28.setDoubleBuffered(true); + var28.setInheritsPopupMenu(false); + SpaceWar.SpacePanel var36 = new SpaceWar.SpacePanel(); + var36.setName(""); + java.awt.Graphics var39 = var36.getGraphics(); + java.awt.event.MouseMotionListener[] var40 = var36.getMouseMotionListeners(); + boolean var41 = var36.getIgnoreRepaint(); + var36.transferFocusBackward(); + java.awt.Cursor var43 = var36.getCursor(); + var28.setCursor(var43); + var8.setCursor(var43); + var8.setLocation(100, 24); + var8.setLocation(399, 2); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var25); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertNull(var27); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var29); + + // Regression assertion (captures the current behavior of the code) + assertNull(var31); + + // Regression assertion (captures the current behavior of the code) + assertNull(var39); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var40); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var41 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var43); + + } + + public void test302() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test302"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + var0.setRequestFocusEnabled(false); + var0.reshape(100, 0, 100, 0); + var0.requestFocus(); + java.awt.Rectangle var11 = var0.getVisibleRect(); + SpaceWar.SpacePanel var12 = new SpaceWar.SpacePanel(); + float var13 = var12.getAlignmentX(); + var12.setVisible(false); + SpaceWar.SpacePanel var16 = new SpaceWar.SpacePanel(); + java.awt.Color var17 = var16.getBackground(); + var12.setForeground(var17); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + float var20 = var19.getAlignmentX(); + var19.setVisible(false); + boolean var23 = var19.isDoubleBuffered(); + java.awt.dnd.DropTarget var24 = var19.getDropTarget(); + var19.show(false); + java.awt.Rectangle var27 = var19.getVisibleRect(); + var12.repaint(var27); + java.awt.FocusTraversalPolicy var29 = var12.getFocusTraversalPolicy(); + SpaceWar.SpacePanel var30 = new SpaceWar.SpacePanel(); + float var31 = var30.getAlignmentX(); + var30.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var36 = var30.getUI(); + java.awt.im.InputMethodRequests var37 = var30.getInputMethodRequests(); + SpaceWar.SpacePanel var38 = new SpaceWar.SpacePanel(); + float var39 = var38.getAlignmentX(); + var38.setVisible(false); + var38.nextFocus(); + var38.updateUI(); + var38.enableInputMethods(true); + var38.setSize((-1), 1); + SpaceWar.SpacePanel var49 = new SpaceWar.SpacePanel(); + var49.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var30.add((java.awt.Component)var38, (java.lang.Object)"SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + java.awt.ComponentOrientation var55 = var38.getComponentOrientation(); + java.beans.VetoableChangeListener[] var56 = var38.getVetoableChangeListeners(); + int var57 = var38.getHeight(); + javax.swing.ActionMap var58 = var38.getActionMap(); + var12.setActionMap(var58); + java.awt.Font var60 = var12.getFont(); + var0.setFont(var60); + var0.repaint((-1), 1, 1, 3); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var27); + + // Regression assertion (captures the current behavior of the code) + assertNull(var29); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var31 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var36); + + // Regression assertion (captures the current behavior of the code) + assertNull(var37); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var39 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var55); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var56); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var57 == 1); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var58); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var60); + + } + + public void test303() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test303"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + boolean var4 = var0.inside(0, (-1)); + var0.transferFocusUpCycle(); + java.awt.Container var6 = var0.getParent(); + var0.resize((-1), 25); + javax.swing.ActionMap var10 = var0.getActionMap(); + int var11 = var0.getX(); + java.util.Locale var12 = javax.swing.JComponent.getDefaultLocale(); + var0.setLocale(var12); + javax.swing.JComponent.setDefaultLocale(var12); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var12); + + } + + public void test304() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test304"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + SpaceWar.SpacePanel var2 = new SpaceWar.SpacePanel(); + float var3 = var2.getAlignmentX(); + var2.setVisible(false); + java.awt.Dimension var6 = var2.getPreferredSize(); + boolean var7 = var2.getVerifyInputWhenFocusTarget(); + java.awt.Component var10 = var2.findComponentAt(10, 1); + var0.addKeyListener((java.awt.event.KeyListener)var2); + var2.repaint(100, (-1), (-1), 1); + SpaceWar.SpacePanel var17 = new SpaceWar.SpacePanel(); + java.awt.Color var18 = var17.getBackground(); + var17.repaint(); + java.awt.im.InputMethodRequests var20 = var17.getInputMethodRequests(); + java.awt.GraphicsConfiguration var21 = var17.getGraphicsConfiguration(); + var2.remove((java.awt.Component)var17); + var2.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", 0.0f, 1.0f); + SpaceWar.SpacePanel var27 = new SpaceWar.SpacePanel(); + float var28 = var27.getAlignmentX(); + var27.setVisible(false); + java.awt.Dimension var31 = var27.getPreferredSize(); + boolean var32 = var27.getVerifyInputWhenFocusTarget(); + SpaceWar.SpacePanel var33 = new SpaceWar.SpacePanel(); + var33.setName(""); + int var36 = var33.getX(); + SpaceWar.SpacePanel var37 = new SpaceWar.SpacePanel(); + float var38 = var37.getAlignmentX(); + var37.setVisible(false); + var37.nextFocus(); + SpaceWar.SpacePanel var42 = new SpaceWar.SpacePanel(); + float var43 = var42.getAlignmentX(); + var42.setVisible(false); + SpaceWar.SpacePanel var46 = new SpaceWar.SpacePanel(); + java.awt.Color var47 = var46.getBackground(); + var42.setForeground(var47); + var37.setBackground(var47); + var33.setBackground(var47); + var2.add((java.awt.Component)var27, (java.lang.Object)var33); + boolean var53 = var33.areFocusTraversalKeysSet(2); + java.awt.im.InputContext var54 = var33.getInputContext(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertNull(var21); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var28 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var31); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var32 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var36 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var38 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var43 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var47); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var53 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var54); + + } + + public void test305() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test305"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + boolean var6 = var0.isFocusOwner(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + java.awt.Dimension var12 = var8.getPreferredSize(); + java.awt.Toolkit var13 = var8.getToolkit(); + SpaceWar.SpacePanel var14 = new SpaceWar.SpacePanel(); + var14.setName(""); + int var17 = var14.getX(); + SpaceWar.SpacePanel var18 = new SpaceWar.SpacePanel(); + float var19 = var18.getAlignmentX(); + var18.setVisible(false); + var18.nextFocus(); + SpaceWar.SpacePanel var23 = new SpaceWar.SpacePanel(); + float var24 = var23.getAlignmentX(); + var23.setVisible(false); + SpaceWar.SpacePanel var27 = new SpaceWar.SpacePanel(); + java.awt.Color var28 = var27.getBackground(); + var23.setForeground(var28); + var18.setBackground(var28); + var14.setBackground(var28); + var8.setForeground(var28); + var0.putClientProperty((java.lang.Object)(byte)100, (java.lang.Object)var28); + java.awt.Dimension var34 = var0.size(); + boolean var35 = var0.isFocusable(); + SpaceWar.SpacePanel var36 = new SpaceWar.SpacePanel(); + java.awt.Color var37 = var36.getBackground(); + var36.repaint(); + java.awt.im.InputMethodRequests var39 = var36.getInputMethodRequests(); + int var40 = var36.countComponents(); + java.awt.event.ComponentListener[] var41 = var36.getComponentListeners(); + var36.removeNotify(); + java.awt.Component var45 = var36.getComponentAt(1, (-1)); + SpaceWar.SpacePanel var46 = new SpaceWar.SpacePanel(); + float var47 = var46.getAlignmentX(); + var46.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var52 = new SpaceWar.SpacePanel(); + float var53 = var52.getAlignmentX(); + var52.setVisible(false); + java.awt.Dimension var56 = var52.getPreferredSize(); + var46.setMaximumSize(var56); + boolean var58 = var46.getVerifyInputWhenFocusTarget(); + javax.accessibility.AccessibleContext var59 = var46.getAccessibleContext(); + boolean var60 = var46.isDoubleBuffered(); + java.awt.Rectangle var61 = var46.getVisibleRect(); + var36.setBounds(var61); + var0.setNextFocusableComponent((java.awt.Component)var36); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var24 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var28); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var34); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var35 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var37); + + // Regression assertion (captures the current behavior of the code) + assertNull(var39); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var40 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var41); + + // Regression assertion (captures the current behavior of the code) + assertNull(var45); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var47 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var53 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var56); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var58 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var59); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var60 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var61); + + } + + public void test306() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test306"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + float var7 = var6.getAlignmentX(); + var6.setVisible(false); + java.awt.Dimension var10 = var6.getPreferredSize(); + var0.setMaximumSize(var10); + boolean var12 = var0.getVerifyInputWhenFocusTarget(); + java.awt.Toolkit var13 = var0.getToolkit(); + java.lang.String var14 = var0.getUIClassID(); + java.awt.Dimension var15 = var0.getMinimumSize(); + javax.swing.InputVerifier var16 = var0.getInputVerifier(); + java.awt.Component.BaselineResizeBehavior var17 = var0.getBaselineResizeBehavior(); + boolean var20 = var0.contains(24, 24); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var14 + "' != '" + "PanelUI"+ "'", var14.equals("PanelUI")); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == false); + + } + + public void test307() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test307"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + float var7 = var6.getAlignmentX(); + var6.setVisible(false); + java.awt.Dimension var10 = var6.getPreferredSize(); + var0.setMaximumSize(var10); + boolean var12 = var0.getVerifyInputWhenFocusTarget(); + boolean var13 = var0.isFontSet(); + SpaceWar.SpacePanel var14 = new SpaceWar.SpacePanel(); + float var15 = var14.getAlignmentX(); + SpaceWar.SpacePanel var16 = new SpaceWar.SpacePanel(); + float var17 = var16.getAlignmentX(); + var16.setVisible(false); + java.awt.Dimension var20 = var16.getPreferredSize(); + boolean var21 = var16.getVerifyInputWhenFocusTarget(); + java.awt.Component var24 = var16.findComponentAt(10, 1); + var14.addKeyListener((java.awt.event.KeyListener)var16); + var16.repaint(100, (-1), (-1), 1); + java.awt.image.ColorModel var31 = var16.getColorModel(); + boolean var32 = var16.isPreferredSizeSet(); + java.awt.peer.ComponentPeer var33 = var16.getPeer(); + java.awt.Dimension var34 = var16.getMinimumSize(); + var0.setMaximumSize(var34); + SpaceWar.SpacePanel var36 = new SpaceWar.SpacePanel(); + float var37 = var36.getAlignmentX(); + var36.setVisible(false); + java.awt.Dimension var40 = var36.getPreferredSize(); + java.awt.Toolkit var41 = var36.getToolkit(); + java.awt.Toolkit var42 = var36.getToolkit(); + var36.firePropertyChange("hi!", 25, 1); + java.awt.Color var47 = var36.getBackground(); + var0.setForeground(var47); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var31); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var32 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var33); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var34); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var40); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var41); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var42); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var47); + + } + + public void test308() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test308"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + boolean var4 = var0.inside(0, (-1)); + SpaceWar.SpacePanel var5 = new SpaceWar.SpacePanel(); + float var6 = var5.getAlignmentX(); + var5.setVisible(false); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + java.awt.Color var10 = var9.getBackground(); + var5.setForeground(var10); + var0.setForeground(var10); + java.awt.event.MouseMotionListener[] var13 = var0.getMouseMotionListeners(); + var0.firePropertyChange("PanelUI", (short)100, (short)1); + SpaceWar.SpacePanel var18 = new SpaceWar.SpacePanel(); + float var19 = var18.getAlignmentX(); + var18.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var24 = var18.getUI(); + SpaceWar.SpacePanel var25 = new SpaceWar.SpacePanel(); + float var26 = var25.getAlignmentX(); + var25.setVisible(false); + SpaceWar.SpacePanel var29 = new SpaceWar.SpacePanel(); + java.awt.Color var30 = var29.getBackground(); + var25.setForeground(var30); + SpaceWar.SpacePanel var32 = new SpaceWar.SpacePanel(); + float var33 = var32.getAlignmentX(); + var32.setVisible(false); + boolean var36 = var32.isDoubleBuffered(); + java.awt.dnd.DropTarget var37 = var32.getDropTarget(); + var32.show(false); + java.awt.Rectangle var40 = var32.getVisibleRect(); + var25.repaint(var40); + java.awt.FocusTraversalPolicy var42 = var25.getFocusTraversalPolicy(); + var25.resetKeyboardActions(); + SpaceWar.SpacePanel var44 = new SpaceWar.SpacePanel(); + float var45 = var44.getAlignmentX(); + var44.setVisible(false); + boolean var48 = var44.isDoubleBuffered(); + java.awt.dnd.DropTarget var49 = var44.getDropTarget(); + var44.show(false); + java.awt.Rectangle var52 = var44.getVisibleRect(); + var25.computeVisibleRect(var52); + javax.swing.ActionMap var54 = var25.getActionMap(); + var18.setActionMap(var54); + javax.swing.InputMap var56 = var18.getInputMap(); + java.awt.dnd.DropTarget var57 = var18.getDropTarget(); + var18.move(499, 3); + var0.setNextFocusableComponent((java.awt.Component)var18); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var30); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var33 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var36 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var37); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var40); + + // Regression assertion (captures the current behavior of the code) + assertNull(var42); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var45 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var48 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var49); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var52); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var54); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var56); + + // Regression assertion (captures the current behavior of the code) + assertNull(var57); + + } + + public void test309() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test309"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + var0.show(false); + boolean var8 = var0.isPaintingForPrint(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var15 = var9.getMouseListeners(); + int var16 = var9.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var17 = var9.getInputMethodRequests(); + var0.addKeyListener((java.awt.event.KeyListener)var9); + boolean var19 = var0.isDisplayable(); + boolean var20 = var0.isOpaque(); + var0.setEnabled(false); + java.awt.Rectangle var23 = var0.getBounds(); + boolean var24 = var0.isMinimumSizeSet(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var23); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var24 == false); + + } + + public void test310() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test310"); + + + SpaceWar.PowerUp var3 = new SpaceWar.PowerUp(500, 273.84550342263697d, 516.8000611430284d); + + } + + public void test311() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test311"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + var0.setBounds(500, 499, 25, 10); + SpaceWar.SpacePanel var10 = new SpaceWar.SpacePanel(); + var10.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", 10.0d, 100.0d); + SpaceWar.SpacePanel var15 = new SpaceWar.SpacePanel(); + float var16 = var15.getAlignmentX(); + var15.setVisible(false); + boolean var19 = var15.isDoubleBuffered(); + java.awt.dnd.DropTarget var20 = var15.getDropTarget(); + boolean var21 = var15.isFocusCycleRoot(); + var15.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", 100, 0); + SpaceWar.SpacePanel var26 = new SpaceWar.SpacePanel(); + java.awt.Color var27 = var26.getBackground(); + var26.repaint(); + var26.setRequestFocusEnabled(false); + var26.reshape(100, 0, 100, 0); + javax.swing.event.AncestorListener[] var36 = var26.getAncestorListeners(); + var26.grabFocus(); + boolean var38 = var15.isFocusCycleRoot((java.awt.Container)var26); + javax.swing.ActionMap var39 = var26.getActionMap(); + var10.setActionMap(var39); + var0.setActionMap(var39); + SpaceWar.SpacePanel var42 = new SpaceWar.SpacePanel(); + float var43 = var42.getAlignmentX(); + var42.setVisible(false); + var42.setInheritsPopupMenu(false); + boolean var48 = var42.isDoubleBuffered(); + boolean var49 = var42.isMinimumSizeSet(); + java.awt.Font var50 = var42.getFont(); + java.awt.Insets var51 = var42.insets(); + java.awt.Insets var52 = var0.getInsets(var51); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var27); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var36); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var38 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var39); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var43 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var48 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var49 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var50); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var51); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var52); + + } + + public void test312() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test312"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var6 = var0.getMouseListeners(); + java.awt.Dimension var7 = var0.getPreferredSize(); + java.util.Locale var8 = var0.getLocale(); + java.awt.Dimension var9 = var0.getMinimumSize(); + SpaceWar.SpacePanel var10 = new SpaceWar.SpacePanel(); + float var11 = var10.getAlignmentX(); + var10.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var16 = var10.getMouseListeners(); + int var17 = var10.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var18 = var10.getInputMethodRequests(); + var10.removeNotify(); + var10.enable(); + java.lang.Object var21 = var10.getTreeLock(); + java.awt.Component var22 = var0.add((java.awt.Component)var10); + SpaceWar.SpacePanel var24 = new SpaceWar.SpacePanel(); + java.awt.Color var25 = var24.getBackground(); + var24.repaint(); + java.awt.im.InputMethodRequests var27 = var24.getInputMethodRequests(); + int var28 = var24.countComponents(); + java.awt.event.ComponentListener[] var29 = var24.getComponentListeners(); + var24.removeNotify(); + javax.swing.InputMap var31 = var24.getInputMap(); + java.awt.Cursor var32 = var24.getCursor(); + var24.firePropertyChange("PanelUI", 499, 0); + SpaceWar.SpacePanel var38 = new SpaceWar.SpacePanel(); + java.awt.Color var39 = var38.getBackground(); + var38.repaint(); + var38.setRequestFocusEnabled(false); + var38.setIgnoreRepaint(false); + java.lang.String var45 = var38.toString(); + java.awt.Color var46 = var38.getBackground(); + SpaceWar.SpacePanel var47 = new SpaceWar.SpacePanel(); + float var48 = var47.getAlignmentX(); + var47.setVisible(false); + java.awt.Dimension var51 = var47.getPreferredSize(); + java.awt.Toolkit var52 = var47.getToolkit(); + java.awt.Toolkit var53 = var47.getToolkit(); + SpaceWar.Player var54 = new SpaceWar.Player(); + var54.increasePower(25); + int var57 = var54.getScore(); + var54.setRigth(true); + var54.loseLife(); + var38.putClientProperty((java.lang.Object)var47, (java.lang.Object)var54); + SpaceWar.SpacePanel var63 = new SpaceWar.SpacePanel(); + java.awt.Color var64 = var63.getBackground(); + var63.repaint(); + java.awt.im.InputMethodRequests var66 = var63.getInputMethodRequests(); + var63.setDoubleBuffered(true); + var63.setInheritsPopupMenu(false); + javax.swing.plaf.PanelUI var71 = var63.getUI(); + java.util.Set var73 = var63.getFocusTraversalKeys(3); + var38.setFocusTraversalKeys(0, var73); + var24.setFocusTraversalKeys(0, var73); + // The following exception was thrown during execution. + // This behavior will recorded for regression testing. + try { + var10.setFocusTraversalKeys(500, var73); + fail("Expected exception of type java.lang.IllegalArgumentException"); + } catch (java.lang.IllegalArgumentException e) { + // Expected exception. + } + + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var9); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var21); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var25); + + // Regression assertion (captures the current behavior of the code) + assertNull(var27); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var28 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var29); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var31); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var32); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var39); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var45 + "' != '" + "SpaceWar.SpacePanel[,0,0,0var45,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"+ "'", var45.equals("SpaceWar.SpacePanel[,0,0,0var45,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]")); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var46); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var48 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var51); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var52); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var53); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var57 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var64); + + // Regression assertion (captures the current behavior of the code) + assertNull(var66); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var71); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var73); + + } + + public void test313() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test313"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + var0.list(); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + float var7 = var6.getAlignmentX(); + var6.setVisible(false); + boolean var10 = var6.isDoubleBuffered(); + java.awt.dnd.DropTarget var11 = var6.getDropTarget(); + var6.show(false); + java.awt.Rectangle var14 = var6.getVisibleRect(); + java.awt.Rectangle var15 = var0.getBounds(var14); + javax.swing.JToolTip var16 = var0.createToolTip(); + var0.firePropertyChange("", false, false); + boolean var21 = var0.isFocusTraversalPolicySet(); + SpaceWar.SpacePanel var22 = new SpaceWar.SpacePanel(); + float var23 = var22.getAlignmentX(); + var22.setVisible(false); + java.awt.Dimension var26 = var22.getPreferredSize(); + boolean var27 = var22.getVerifyInputWhenFocusTarget(); + java.awt.Component var30 = var22.findComponentAt(10, 1); + boolean var31 = var22.requestDefaultFocus(); + var22.setVerifyInputWhenFocusTarget(false); + java.awt.Point var34 = var22.getLocation(); + java.awt.Point var35 = var0.getLocation(var34); + SpaceWar.SpacePanel var36 = new SpaceWar.SpacePanel(); + float var37 = var36.getAlignmentX(); + var36.setVisible(false); + boolean var40 = var36.isDoubleBuffered(); + var36.list(); + SpaceWar.SpacePanel var42 = new SpaceWar.SpacePanel(); + float var43 = var42.getAlignmentX(); + var42.setVisible(false); + boolean var46 = var42.isDoubleBuffered(); + java.awt.dnd.DropTarget var47 = var42.getDropTarget(); + var42.show(false); + java.awt.Rectangle var50 = var42.getVisibleRect(); + java.awt.image.BufferedImage var52 = var42.loadImg("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + boolean var53 = var36.isAncestorOf((java.awt.Component)var42); + SpaceWar.SpacePanel var54 = new SpaceWar.SpacePanel(); + java.awt.Color var55 = var54.getBackground(); + var54.repaint(); + var54.setRequestFocusEnabled(false); + var54.setIgnoreRepaint(false); + java.lang.String var61 = var54.toString(); + java.awt.Color var62 = var54.getBackground(); + SpaceWar.SpacePanel var63 = new SpaceWar.SpacePanel(); + float var64 = var63.getAlignmentX(); + var63.setVisible(false); + java.awt.Dimension var67 = var63.getPreferredSize(); + java.awt.Toolkit var68 = var63.getToolkit(); + java.awt.Toolkit var69 = var63.getToolkit(); + SpaceWar.Player var70 = new SpaceWar.Player(); + var70.increasePower(25); + int var73 = var70.getScore(); + var70.setRigth(true); + var70.loseLife(); + var54.putClientProperty((java.lang.Object)var63, (java.lang.Object)var70); + java.awt.Rectangle var78 = var63.bounds(); + java.awt.Rectangle var79 = var42.getBounds(var78); + var0.paintImmediately(var79); + javax.swing.JPopupMenu var81 = var0.getComponentPopupMenu(); + var0.grabFocus(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var30); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var31 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var34); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var35); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var40 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var43 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var46 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var47); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var50); + + // Regression assertion (captures the current behavior of the code) + assertNull(var52); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var53 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var55); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var61 + "' != '" + "SpaceWar.SpacePanel[,0,0,0var61,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"+ "'", var61.equals("SpaceWar.SpacePanel[,0,0,0var61,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]")); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var62); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var64 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var67); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var68); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var69); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var73 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var78); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var79); + + // Regression assertion (captures the current behavior of the code) + assertNull(var81); + + } + + public void test314() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test314"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + var0.setRequestFocusEnabled(false); + var0.reshape(100, 0, 100, 0); + var0.requestFocus(); + var0.firePropertyChange("hi!", '4', ' '); + java.awt.Point var15 = var0.getLocation(); + java.awt.Dimension var16 = var0.size(); + java.awt.Image var19 = var0.createImage((-1), (-1)); + java.awt.event.ComponentListener[] var20 = var0.getComponentListeners(); + var0.setName("PanelUI"); + boolean var23 = var0.isFocusTraversalPolicySet(); + var0.updateUI(); + SpaceWar.SpacePanel var25 = new SpaceWar.SpacePanel(); + java.awt.Color var26 = var25.getBackground(); + var25.repaint(); + var25.setRequestFocusEnabled(false); + var25.reshape(100, 0, 100, 0); + java.beans.VetoableChangeListener[] var35 = var25.getVetoableChangeListeners(); + java.awt.Rectangle var36 = var25.getVisibleRect(); + float var37 = var25.getAlignmentY(); + SpaceWar.SpacePanel var38 = new SpaceWar.SpacePanel(); + java.awt.Color var39 = var38.getBackground(); + var38.repaint(); + java.awt.im.InputMethodRequests var41 = var38.getInputMethodRequests(); + int var42 = var38.countComponents(); + java.awt.Dimension var43 = var38.getSize(); + var25.setPreferredSize(var43); + var0.setPreferredSize(var43); + java.awt.Container var46 = var0.getParent(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var35); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var36); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var39); + + // Regression assertion (captures the current behavior of the code) + assertNull(var41); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var42 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var43); + + // Regression assertion (captures the current behavior of the code) + assertNull(var46); + + } + + public void test315() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test315"); + + + SpaceWar.Enemy var2 = new SpaceWar.Enemy(0, 100); + int var3 = var2.getR(); + int var4 = var2.getR(); + double var5 = var2.getY(); + var2.hit(); + int var7 = var2.getRank(); + double var8 = var2.getX(); + boolean var9 = var2.isDead(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == 0.0d); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 100); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 559.7948801674848d); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == true); + + } + + public void test316() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test316"); + + + SpaceWar.Enemy var2 = new SpaceWar.Enemy(0, 100); + boolean var3 = var2.isDead(); + var2.hit(); + double var5 = var2.getY(); + int var6 = var2.getRank(); + int var7 = var2.getType(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == 0.0d); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == 100); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0); + + } + + public void test317() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test317"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var6 = var0.getMouseListeners(); + int var7 = var0.getDebugGraphicsOptions(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + boolean var12 = var8.isDoubleBuffered(); + java.awt.dnd.DropTarget var13 = var8.getDropTarget(); + var8.show(false); + java.awt.Rectangle var16 = var8.getVisibleRect(); + var0.paintImmediately(var16); + boolean var18 = var0.isFocusCycleRoot(); + var0.list(); + java.awt.Color var20 = var0.getBackground(); + var0.validate(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + } + + public void test318() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test318"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + java.awt.im.InputMethodRequests var3 = var0.getInputMethodRequests(); + var0.setDoubleBuffered(true); + var0.show(false); + boolean var8 = var0.isPaintingForPrint(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.setVisible(false); + boolean var13 = var9.isDoubleBuffered(); + var9.list(); + float var15 = var9.getAlignmentY(); + boolean var16 = var9.isOpaque(); + SpaceWar.SpacePanel var17 = new SpaceWar.SpacePanel(); + java.awt.Color var18 = var17.getBackground(); + var17.repaint(); + java.awt.im.InputMethodRequests var20 = var17.getInputMethodRequests(); + int var21 = var17.countComponents(); + java.awt.event.ComponentListener[] var22 = var17.getComponentListeners(); + SpaceWar.SpacePanel var23 = new SpaceWar.SpacePanel(); + float var24 = var23.getAlignmentX(); + var23.removeNotify(); + SpaceWar.SpacePanel var26 = new SpaceWar.SpacePanel(); + float var27 = var26.getAlignmentX(); + var26.setVisible(false); + boolean var30 = var26.isDoubleBuffered(); + var26.list(); + float var32 = var26.getAlignmentY(); + java.awt.Insets var33 = var26.getInsets(); + java.awt.Insets var34 = var23.getInsets(var33); + java.awt.Insets var35 = var17.getInsets(var34); + java.awt.Dimension var36 = var17.preferredSize(); + var9.removeKeyListener((java.awt.event.KeyListener)var17); + java.lang.Object var38 = var0.getClientProperty((java.lang.Object)var17); + java.awt.Insets var39 = var0.getInsets(); + boolean var40 = javax.swing.JComponent.isLightweightComponent((java.awt.Component)var0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var24 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var30 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var32 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var33); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var34); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var35); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var36); + + // Regression assertion (captures the current behavior of the code) + assertNull(var38); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var39); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var40 == false); + + } + + public void test319() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test319"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.requestFocus(); + boolean var6 = var0.isBackgroundSet(); + SpaceWar.SpacePanel var7 = new SpaceWar.SpacePanel(); + java.awt.Color var8 = var7.getBackground(); + var7.repaint(); + var7.setRequestFocusEnabled(false); + var7.reshape(100, 0, 100, 0); + SpaceWar.SpacePanel var17 = new SpaceWar.SpacePanel(); + float var18 = var17.getAlignmentX(); + var17.setVisible(false); + var17.setInheritsPopupMenu(false); + boolean var23 = var17.isDoubleBuffered(); + SpaceWar.SpacePanel var24 = new SpaceWar.SpacePanel(); + float var25 = var24.getAlignmentX(); + var24.setVisible(false); + var24.nextFocus(); + var24.reshape((-1), 1, (-1), 10); + var24.disable(); + java.awt.LayoutManager var35 = var24.getLayout(); + var17.setLayout(var35); + var0.add((java.awt.Component)var7, (java.lang.Object)var35); + var0.setVerifyInputWhenFocusTarget(true); + var0.firePropertyChange("SpaceWar.SpacePanel[,-1,100,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=265,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", 0L, 10L); + java.awt.Color var44 = var0.getForeground(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var35); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var44); + + } + + public void test320() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test320"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + var0.setRequestFocusEnabled(false); + var0.reshape(100, 0, 100, 0); + var0.requestFocus(); + java.awt.Rectangle var11 = var0.getVisibleRect(); + java.awt.Rectangle var12 = var0.getBounds(); + java.awt.im.InputMethodRequests var13 = var0.getInputMethodRequests(); + SpaceWar.SpacePanel var14 = new SpaceWar.SpacePanel(); + var14.setName(""); + java.awt.Dimension var17 = var14.minimumSize(); + boolean var18 = var14.isDoubleBuffered(); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + float var20 = var19.getAlignmentX(); + var19.setVisible(false); + SpaceWar.SpacePanel var23 = new SpaceWar.SpacePanel(); + java.awt.Color var24 = var23.getBackground(); + var19.setForeground(var24); + SpaceWar.SpacePanel var26 = new SpaceWar.SpacePanel(); + float var27 = var26.getAlignmentX(); + var26.setVisible(false); + boolean var30 = var26.isDoubleBuffered(); + java.awt.dnd.DropTarget var31 = var26.getDropTarget(); + var26.show(false); + java.awt.Rectangle var34 = var26.getVisibleRect(); + var19.repaint(var34); + java.awt.FocusTraversalPolicy var36 = var19.getFocusTraversalPolicy(); + java.awt.im.InputMethodRequests var37 = var19.getInputMethodRequests(); + var19.layout(); + boolean var39 = var19.isFocusTraversalPolicyProvider(); + java.awt.Component var40 = var14.add((java.awt.Component)var19); + var14.transferFocusUpCycle(); + var0.remove((java.awt.Component)var14); + java.awt.Rectangle var43 = var0.getVisibleRect(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var30 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var31); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var34); + + // Regression assertion (captures the current behavior of the code) + assertNull(var36); + + // Regression assertion (captures the current behavior of the code) + assertNull(var37); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var39 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var40); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var43); + + } + + public void test321() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test321"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.setInheritsPopupMenu(false); + var0.setFocusTraversalPolicyProvider(true); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + boolean var12 = var8.isDoubleBuffered(); + var8.list(); + SpaceWar.SpacePanel var14 = new SpaceWar.SpacePanel(); + float var15 = var14.getAlignmentX(); + var14.setVisible(false); + boolean var18 = var14.isDoubleBuffered(); + java.awt.dnd.DropTarget var19 = var14.getDropTarget(); + var14.show(false); + java.awt.Rectangle var22 = var14.getVisibleRect(); + java.awt.Rectangle var23 = var8.getBounds(var22); + javax.swing.JToolTip var24 = var8.createToolTip(); + var0.removeKeyListener((java.awt.event.KeyListener)var8); + java.awt.Rectangle var26 = var0.getVisibleRect(); + SpaceWar.SpacePanel var27 = new SpaceWar.SpacePanel(); + float var28 = var27.getAlignmentX(); + var27.setVisible(false); + var27.setInheritsPopupMenu(false); + var27.setFocusTraversalPolicyProvider(true); + SpaceWar.SpacePanel var35 = new SpaceWar.SpacePanel(); + java.awt.Color var36 = var35.getBackground(); + var35.repaint(); + java.awt.im.InputMethodRequests var38 = var35.getInputMethodRequests(); + java.awt.GraphicsConfiguration var39 = var35.getGraphicsConfiguration(); + java.awt.Component var40 = var27.add((java.awt.Component)var35); + java.awt.Rectangle var41 = var27.getBounds(); + java.awt.Rectangle var42 = var0.getBounds(var41); + var0.revalidate(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var23); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var28 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var36); + + // Regression assertion (captures the current behavior of the code) + assertNull(var38); + + // Regression assertion (captures the current behavior of the code) + assertNull(var39); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var40); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var41); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var42); + + } + + public void test322() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test322"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var6 = var0.getMouseListeners(); + java.awt.Dimension var7 = var0.getPreferredSize(); + java.util.Locale var8 = var0.getLocale(); + java.lang.String var9 = var0.getToolTipText(); + javax.swing.plaf.PanelUI var10 = var0.getUI(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertNull(var9); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var10); + + } + + public void test323() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test323"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + boolean var2 = var0.hasFocus(); + SpaceWar.SpacePanel var3 = new SpaceWar.SpacePanel(); + float var4 = var3.getAlignmentX(); + var3.setVisible(false); + var3.nextFocus(); + var3.reshape((-1), 1, (-1), 10); + var3.disable(); + java.awt.LayoutManager var14 = var3.getLayout(); + var3.setVisible(false); + var0.remove((java.awt.Component)var3); + var3.repaint(); + boolean var19 = var3.hasFocus(); + boolean var22 = var3.inside(399, 399); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var2 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var22 == false); + + } + + public void test324() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test324"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + java.awt.Dimension var4 = var0.getPreferredSize(); + boolean var5 = var0.getVerifyInputWhenFocusTarget(); + java.awt.Component var8 = var0.findComponentAt(10, 1); + boolean var9 = var0.requestDefaultFocus(); + var0.setVerifyInputWhenFocusTarget(false); + boolean var12 = var0.isPaintingForPrint(); + boolean var13 = var0.getIgnoreRepaint(); + java.awt.FocusTraversalPolicy var14 = var0.getFocusTraversalPolicy(); + var0.setRequestFocusEnabled(true); + java.awt.Rectangle var17 = var0.getBounds(); + javax.swing.JToolTip var18 = var0.createToolTip(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var4); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var18); + + } + + public void test325() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test325"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + var0.show(false); + boolean var8 = var0.isPaintingForPrint(); + javax.swing.TransferHandler var9 = var0.getTransferHandler(); + java.awt.Insets var10 = var0.getInsets(); + boolean var11 = var0.isValid(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var9); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == false); + + } + + public void test326() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test326"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + java.awt.Dimension var4 = var0.getPreferredSize(); + boolean var5 = var0.getVerifyInputWhenFocusTarget(); + java.awt.Component var8 = var0.findComponentAt(10, 1); + boolean var9 = var0.requestDefaultFocus(); + java.awt.Insets var10 = var0.getInsets(); + var0.setDoubleBuffered(false); + java.awt.Point var14 = var0.getMousePosition(true); + boolean var15 = var0.getFocusTraversalKeysEnabled(); + SpaceWar.SpacePanel var17 = new SpaceWar.SpacePanel(); + float var18 = var17.getAlignmentX(); + var17.setVisible(false); + var17.nextFocus(); + var17.reshape((-1), 1, (-1), 10); + var17.disable(); + boolean var28 = var17.isFocusable(); + SpaceWar.SpacePanel var29 = new SpaceWar.SpacePanel(); + float var30 = var29.getAlignmentX(); + var29.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var35 = var29.getUI(); + java.awt.im.InputMethodRequests var36 = var29.getInputMethodRequests(); + SpaceWar.SpacePanel var37 = new SpaceWar.SpacePanel(); + float var38 = var37.getAlignmentX(); + var37.setVisible(false); + var37.nextFocus(); + var37.updateUI(); + var37.enableInputMethods(true); + var37.setSize((-1), 1); + SpaceWar.SpacePanel var48 = new SpaceWar.SpacePanel(); + var48.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var29.add((java.awt.Component)var37, (java.lang.Object)"SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + java.awt.event.KeyListener[] var54 = var29.getKeyListeners(); + java.awt.FocusTraversalPolicy var55 = var29.getFocusTraversalPolicy(); + SpaceWar.SpacePanel var56 = new SpaceWar.SpacePanel(); + var56.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + java.awt.Toolkit var61 = var56.getToolkit(); + var17.add((java.awt.Component)var29, (java.lang.Object)var56); + java.beans.VetoableChangeListener[] var63 = var56.getVetoableChangeListeners(); + java.awt.Component var64 = var0.add("SpaceWar.SpacePanel[,0,0,0x0,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", (java.awt.Component)var56); + var56.setRequestFocusEnabled(true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var4); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var28 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var30 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var35); + + // Regression assertion (captures the current behavior of the code) + assertNull(var36); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var38 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var54); + + // Regression assertion (captures the current behavior of the code) + assertNull(var55); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var61); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var63); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var64); + + } + + public void test327() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test327"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + java.awt.Dimension var4 = var0.getPreferredSize(); + java.awt.Toolkit var5 = var0.getToolkit(); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + var6.setName(""); + int var9 = var6.getX(); + SpaceWar.SpacePanel var10 = new SpaceWar.SpacePanel(); + float var11 = var10.getAlignmentX(); + var10.setVisible(false); + var10.nextFocus(); + SpaceWar.SpacePanel var15 = new SpaceWar.SpacePanel(); + float var16 = var15.getAlignmentX(); + var15.setVisible(false); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + java.awt.Color var20 = var19.getBackground(); + var15.setForeground(var20); + var10.setBackground(var20); + var6.setBackground(var20); + var0.setForeground(var20); + SpaceWar.SpacePanel var25 = new SpaceWar.SpacePanel(); + float var26 = var25.getAlignmentX(); + var25.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var31 = new SpaceWar.SpacePanel(); + float var32 = var31.getAlignmentX(); + var31.setVisible(false); + java.awt.Dimension var35 = var31.getPreferredSize(); + var25.setMaximumSize(var35); + boolean var37 = var25.getVerifyInputWhenFocusTarget(); + javax.accessibility.AccessibleContext var38 = var25.getAccessibleContext(); + boolean var39 = var25.isDoubleBuffered(); + java.awt.Rectangle var40 = var25.getVisibleRect(); + var0.scrollRectToVisible(var40); + SpaceWar.SpacePanel var42 = new SpaceWar.SpacePanel(); + float var43 = var42.getAlignmentX(); + var42.setVisible(false); + java.awt.Dimension var46 = var42.getPreferredSize(); + java.awt.Toolkit var47 = var42.getToolkit(); + SpaceWar.SpacePanel var48 = new SpaceWar.SpacePanel(); + var48.setName(""); + int var51 = var48.getX(); + SpaceWar.SpacePanel var52 = new SpaceWar.SpacePanel(); + float var53 = var52.getAlignmentX(); + var52.setVisible(false); + var52.nextFocus(); + SpaceWar.SpacePanel var57 = new SpaceWar.SpacePanel(); + float var58 = var57.getAlignmentX(); + var57.setVisible(false); + SpaceWar.SpacePanel var61 = new SpaceWar.SpacePanel(); + java.awt.Color var62 = var61.getBackground(); + var57.setForeground(var62); + var52.setBackground(var62); + var48.setBackground(var62); + var42.setForeground(var62); + SpaceWar.SpacePanel var67 = new SpaceWar.SpacePanel(); + float var68 = var67.getAlignmentX(); + var67.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var73 = new SpaceWar.SpacePanel(); + float var74 = var73.getAlignmentX(); + var73.setVisible(false); + java.awt.Dimension var77 = var73.getPreferredSize(); + var67.setMaximumSize(var77); + boolean var79 = var67.getVerifyInputWhenFocusTarget(); + javax.accessibility.AccessibleContext var80 = var67.getAccessibleContext(); + boolean var81 = var67.isDoubleBuffered(); + java.awt.Rectangle var82 = var67.getVisibleRect(); + var42.scrollRectToVisible(var82); + var0.removeKeyListener((java.awt.event.KeyListener)var42); + var42.firePropertyChange("PanelUI", (short)1, (short)1); + int var89 = var42.getHeight(); + var42.layout(); + java.awt.im.InputMethodRequests var91 = var42.getInputMethodRequests(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var4); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var32 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var35); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var38); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var39 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var40); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var43 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var46); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var47); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var51 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var53 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var58 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var62); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var68 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var74 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var77); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var79 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var80); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var81 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var82); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var89 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var91); + + } + + public void test328() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test328"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.setInheritsPopupMenu(false); + boolean var6 = var0.isDoubleBuffered(); + var0.setAlignmentY(100.0f); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.setVisible(false); + boolean var13 = var9.isDoubleBuffered(); + java.awt.dnd.DropTarget var14 = var9.getDropTarget(); + var9.show(false); + boolean var17 = var9.isPaintingForPrint(); + SpaceWar.SpacePanel var18 = new SpaceWar.SpacePanel(); + float var19 = var18.getAlignmentX(); + var18.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var24 = var18.getMouseListeners(); + int var25 = var18.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var26 = var18.getInputMethodRequests(); + var9.addKeyListener((java.awt.event.KeyListener)var18); + SpaceWar.SpacePanel var28 = new SpaceWar.SpacePanel(); + float var29 = var28.getAlignmentX(); + var28.setVisible(false); + boolean var32 = var28.isDoubleBuffered(); + var28.list(); + float var34 = var28.getAlignmentY(); + boolean var35 = var18.isFocusCycleRoot((java.awt.Container)var28); + boolean var36 = var28.isEnabled(); + java.awt.Dimension var37 = var28.getMaximumSize(); + var28.disable(); + java.awt.peer.ComponentPeer var39 = var28.getPeer(); + var28.list(); + SpaceWar.SpacePanel var41 = new SpaceWar.SpacePanel(); + java.awt.Color var42 = var41.getBackground(); + var41.repaint(); + var41.setRequestFocusEnabled(false); + var41.reshape(100, 0, 100, 0); + var41.requestFocus(); + java.awt.Rectangle var52 = var41.getVisibleRect(); + java.awt.Rectangle var53 = var41.getBounds(); + java.awt.im.InputMethodRequests var54 = var41.getInputMethodRequests(); + boolean var55 = var41.requestFocusInWindow(); + java.awt.Point var57 = var41.getMousePosition(false); + var41.setDebugGraphicsOptions(1); + java.awt.Graphics var60 = var41.getGraphics(); + var28.paintAll(var60); + var0.print(var60); + SpaceWar.SpacePanel var63 = new SpaceWar.SpacePanel(); + float var64 = var63.getAlignmentX(); + boolean var65 = var63.hasFocus(); + boolean var66 = var63.isPreferredSizeSet(); + SpaceWar.SpacePanel var67 = new SpaceWar.SpacePanel(); + java.awt.Color var68 = var67.getBackground(); + var67.repaint(); + var67.setRequestFocusEnabled(false); + int var72 = var63.getComponentZOrder((java.awt.Component)var67); + var67.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", 1, (-1)); + // The following exception was thrown during execution. + // This behavior will recorded for regression testing. + try { + var0.setComponentZOrder((java.awt.Component)var67, 1); + fail("Expected exception of type java.lang.IllegalArgumentException"); + } catch (java.lang.IllegalArgumentException e) { + // Expected exception. + } + + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var29 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var32 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var34 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var35 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var36 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var37); + + // Regression assertion (captures the current behavior of the code) + assertNull(var39); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var42); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var52); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var53); + + // Regression assertion (captures the current behavior of the code) + assertNull(var54); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var55 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var57); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var60); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var64 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var65 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var66 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var68); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var72 == (-1)); + + } + + public void test329() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test329"); + + + SpaceWar.Player var0 = new SpaceWar.Player(); + var0.increasePower(25); + int var3 = var0.getR(); + int var4 = var0.getScore(); + var0.loseLife(); + int var6 = var0.getX(); + var0.loseLife(); + boolean var8 = var0.isRecovering(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == 25); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == 400); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == true); + + } + + public void test330() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test330"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + var0.setRequestFocusEnabled(false); + var0.reshape(100, 0, 100, 0); + java.beans.VetoableChangeListener[] var10 = var0.getVetoableChangeListeners(); + java.awt.Rectangle var11 = var0.getVisibleRect(); + float var12 = var0.getAlignmentY(); + java.awt.Container var13 = var0.getTopLevelAncestor(); + int var14 = var0.getDebugGraphicsOptions(); + var0.move(400, 3); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == 0); + + } + + public void test331() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test331"); + + + SpaceWar.PowerUp var3 = new SpaceWar.PowerUp(499, 212.52893787993318d, 2.0d); + + } + + public void test332() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test332"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + SpaceWar.SpacePanel var2 = new SpaceWar.SpacePanel(); + float var3 = var2.getAlignmentX(); + var2.setVisible(false); + java.awt.Dimension var6 = var2.getPreferredSize(); + boolean var7 = var2.getVerifyInputWhenFocusTarget(); + java.awt.Component var10 = var2.findComponentAt(10, 1); + var0.addKeyListener((java.awt.event.KeyListener)var2); + var2.repaint(100, (-1), (-1), 1); + java.awt.image.ColorModel var17 = var2.getColorModel(); + boolean var18 = var2.isPreferredSizeSet(); + java.awt.im.InputMethodRequests var19 = var2.getInputMethodRequests(); + boolean var20 = var2.isForegroundSet(); + java.awt.Point var21 = var2.location(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var21); + + } + + public void test333() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test333"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.setInheritsPopupMenu(false); + java.awt.im.InputContext var6 = var0.getInputContext(); + boolean var7 = var0.isMinimumSizeSet(); + java.awt.image.BufferedImage var9 = var0.loadImg("SpaceWar.SpacePanel[,-1,100,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=265,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + var0.hide(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var9); + + } + + public void test334() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test334"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + boolean var5 = javax.swing.JComponent.isLightweightComponent((java.awt.Component)var0); + var0.removeAll(); + java.awt.Component.BaselineResizeBehavior var7 = var0.getBaselineResizeBehavior(); + boolean var8 = var0.isVisible(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.setVisible(false); + boolean var13 = var9.isDoubleBuffered(); + java.awt.dnd.DropTarget var14 = var9.getDropTarget(); + var9.show(false); + boolean var17 = var9.isPaintingForPrint(); + SpaceWar.SpacePanel var18 = new SpaceWar.SpacePanel(); + float var19 = var18.getAlignmentX(); + var18.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var24 = var18.getMouseListeners(); + int var25 = var18.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var26 = var18.getInputMethodRequests(); + var9.addKeyListener((java.awt.event.KeyListener)var18); + var18.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", (-1.0f), 1.0f); + SpaceWar.SpacePanel var32 = new SpaceWar.SpacePanel(); + java.awt.Color var33 = var32.getBackground(); + var32.repaint(); + java.awt.im.InputMethodRequests var35 = var32.getInputMethodRequests(); + int var36 = var32.countComponents(); + java.awt.event.ComponentListener[] var37 = var32.getComponentListeners(); + var32.removeNotify(); + javax.swing.InputMap var39 = var32.getInputMap(); + int var40 = var32.getDebugGraphicsOptions(); + java.awt.Rectangle var41 = var32.getBounds(); + var18.repaint(var41); + var0.repaint(var41); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var33); + + // Regression assertion (captures the current behavior of the code) + assertNull(var35); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var36 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var37); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var39); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var40 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var41); + + } + + public void test335() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test335"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var6 = var0.getMouseListeners(); + int var7 = var0.getDebugGraphicsOptions(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + boolean var12 = var8.isDoubleBuffered(); + java.awt.dnd.DropTarget var13 = var8.getDropTarget(); + var8.show(false); + java.awt.Rectangle var16 = var8.getVisibleRect(); + var0.paintImmediately(var16); + var0.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", '#', '#'); + var0.list(); + java.awt.Rectangle var23 = var0.getBounds(); + javax.swing.JToolTip var24 = var0.createToolTip(); + java.awt.Component var25 = var0.getNextFocusableComponent(); + SpaceWar.SpacePanel var26 = new SpaceWar.SpacePanel(); + java.awt.Color var27 = var26.getBackground(); + var26.repaint(); + var26.setRequestFocusEnabled(false); + var26.setIgnoreRepaint(false); + java.lang.String var33 = var26.toString(); + java.awt.Color var34 = var26.getBackground(); + SpaceWar.SpacePanel var35 = new SpaceWar.SpacePanel(); + float var36 = var35.getAlignmentX(); + var35.setVisible(false); + java.awt.Dimension var39 = var35.getPreferredSize(); + java.awt.Toolkit var40 = var35.getToolkit(); + java.awt.Toolkit var41 = var35.getToolkit(); + SpaceWar.Player var42 = new SpaceWar.Player(); + var42.increasePower(25); + int var45 = var42.getScore(); + var42.setRigth(true); + var42.loseLife(); + var26.putClientProperty((java.lang.Object)var35, (java.lang.Object)var42); + java.awt.Rectangle var50 = var35.bounds(); + var0.paintImmediately(var50); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var23); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertNull(var25); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var27); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var33 + "' != '" + "SpaceWar.SpacePanel[,0,0,0var33,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"+ "'", var33.equals("SpaceWar.SpacePanel[,0,0,0var33,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]")); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var34); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var36 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var39); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var40); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var41); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var45 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var50); + + } + + public void test336() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test336"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.reshape((-1), 1, (-1), 10); + var0.disable(); + var0.show(); + SpaceWar.SpacePanel var12 = new SpaceWar.SpacePanel(); + float var13 = var12.getAlignmentX(); + var12.setVisible(false); + boolean var16 = var12.isDoubleBuffered(); + var12.list(); + SpaceWar.SpacePanel var18 = new SpaceWar.SpacePanel(); + float var19 = var18.getAlignmentX(); + var18.setVisible(false); + boolean var22 = var18.isDoubleBuffered(); + java.awt.dnd.DropTarget var23 = var18.getDropTarget(); + var18.show(false); + java.awt.Rectangle var26 = var18.getVisibleRect(); + java.awt.Rectangle var27 = var12.getBounds(var26); + javax.swing.JToolTip var28 = var12.createToolTip(); + var12.firePropertyChange("", false, false); + var12.validate(); + SpaceWar.SpacePanel var34 = new SpaceWar.SpacePanel(); + float var35 = var34.getAlignmentX(); + var34.setVisible(false); + boolean var38 = var34.isDoubleBuffered(); + java.awt.dnd.DropTarget var39 = var34.getDropTarget(); + var34.show(false); + boolean var42 = var34.isPaintingForPrint(); + SpaceWar.SpacePanel var43 = new SpaceWar.SpacePanel(); + float var44 = var43.getAlignmentX(); + var43.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var49 = var43.getMouseListeners(); + int var50 = var43.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var51 = var43.getInputMethodRequests(); + var34.addKeyListener((java.awt.event.KeyListener)var43); + var43.repaint(); + java.awt.Point var54 = var43.location(); + java.awt.Component var55 = var12.getComponentAt(var54); + java.awt.Point var56 = var0.getLocation(var54); + var0.setAlignmentY(0.5f); + boolean var59 = var0.getVerifyInputWhenFocusTarget(); + boolean var60 = var0.isBackgroundSet(); + java.awt.Point var61 = var0.location(); + java.awt.Dimension var62 = var0.size(); + boolean var63 = var0.isRequestFocusEnabled(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var22 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var23); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var27); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var28); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var35 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var38 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var39); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var42 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var44 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var49); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var50 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var51); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var54); + + // Regression assertion (captures the current behavior of the code) + assertNull(var55); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var56); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var59 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var60 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var61); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var62); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var63 == true); + + } + + public void test337() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test337"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var6 = var0.getUI(); + java.awt.im.InputMethodRequests var7 = var0.getInputMethodRequests(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + var8.nextFocus(); + var8.updateUI(); + var8.enableInputMethods(true); + var8.setSize((-1), 1); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + var19.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var0.add((java.awt.Component)var8, (java.lang.Object)"SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + java.awt.ComponentOrientation var25 = var8.getComponentOrientation(); + java.beans.VetoableChangeListener[] var26 = var8.getVetoableChangeListeners(); + int var27 = var8.getHeight(); + var8.enable(true); + boolean var30 = var8.isFocusTraversalPolicyProvider(); + SpaceWar.SpacePanel var31 = new SpaceWar.SpacePanel(); + java.awt.Color var32 = var31.getBackground(); + var31.repaint(); + var31.setRequestFocusEnabled(false); + var31.reshape(100, 0, 100, 0); + var31.requestFocus(); + var31.firePropertyChange("hi!", '4', ' '); + java.awt.Point var46 = var31.getLocation(); + var8.setLocation(var46); + boolean var48 = var8.isManagingFocus(); + var8.transferFocusDownCycle(); + var8.list(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var25); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == 1); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var30 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var32); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var46); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var48 == false); + + } + + public void test338() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test338"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + var0.list(); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + float var7 = var6.getAlignmentX(); + var6.setVisible(false); + boolean var10 = var6.isDoubleBuffered(); + java.awt.dnd.DropTarget var11 = var6.getDropTarget(); + var6.show(false); + java.awt.Rectangle var14 = var6.getVisibleRect(); + java.awt.Rectangle var15 = var0.getBounds(var14); + javax.swing.JToolTip var16 = var0.createToolTip(); + java.awt.Dimension var17 = var0.minimumSize(); + boolean var19 = var0.requestFocus(false); + java.awt.Dimension var20 = var0.minimumSize(); + java.awt.image.VolatileImage var23 = var0.createVolatileImage(24, 10); + SpaceWar.SpacePanel var24 = new SpaceWar.SpacePanel(); + float var25 = var24.getAlignmentX(); + var24.setVisible(false); + var24.nextFocus(); + var24.updateUI(); + var24.enableInputMethods(true); + java.awt.Point var33 = var24.getMousePosition(false); + java.awt.Dimension var34 = var24.getMinimumSize(); + var0.setMaximumSize(var34); + var0.repaint(2, 2, 3, 25); + var0.setSize(1, 3); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertNull(var23); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNull(var33); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var34); + + } + + public void test339() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test339"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.setInheritsPopupMenu(false); + var0.setFocusTraversalPolicyProvider(true); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + boolean var12 = var8.isDoubleBuffered(); + var8.list(); + SpaceWar.SpacePanel var14 = new SpaceWar.SpacePanel(); + float var15 = var14.getAlignmentX(); + var14.setVisible(false); + boolean var18 = var14.isDoubleBuffered(); + java.awt.dnd.DropTarget var19 = var14.getDropTarget(); + var14.show(false); + java.awt.Rectangle var22 = var14.getVisibleRect(); + java.awt.Rectangle var23 = var8.getBounds(var22); + javax.swing.JToolTip var24 = var8.createToolTip(); + var0.removeKeyListener((java.awt.event.KeyListener)var8); + javax.swing.TransferHandler var26 = var0.getTransferHandler(); + boolean var27 = var0.isPaintingForPrint(); + int var28 = var0.getY(); + java.lang.Object var29 = var0.getTreeLock(); + var0.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=265,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", '#', ' '); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var23); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var28 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var29); + + } + + public void test340() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test340"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + var0.show(false); + boolean var8 = var0.isPaintingForPrint(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var15 = var9.getMouseListeners(); + int var16 = var9.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var17 = var9.getInputMethodRequests(); + var0.addKeyListener((java.awt.event.KeyListener)var9); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + float var20 = var19.getAlignmentX(); + var19.setVisible(false); + boolean var23 = var19.isDoubleBuffered(); + var19.list(); + float var25 = var19.getAlignmentY(); + boolean var26 = var9.isFocusCycleRoot((java.awt.Container)var19); + var19.firePropertyChange("", 1L, 1L); + var19.setVerifyInputWhenFocusTarget(true); + SpaceWar.SpacePanel var33 = new SpaceWar.SpacePanel(); + var33.setName(""); + java.awt.Dimension var36 = var33.minimumSize(); + boolean var37 = var33.isDoubleBuffered(); + SpaceWar.SpacePanel var38 = new SpaceWar.SpacePanel(); + float var39 = var38.getAlignmentX(); + SpaceWar.SpacePanel var40 = new SpaceWar.SpacePanel(); + float var41 = var40.getAlignmentX(); + var40.setVisible(false); + java.awt.Dimension var44 = var40.getPreferredSize(); + boolean var45 = var40.getVerifyInputWhenFocusTarget(); + java.awt.Component var48 = var40.findComponentAt(10, 1); + var38.addKeyListener((java.awt.event.KeyListener)var40); + var40.repaint(100, (-1), (-1), 1); + SpaceWar.SpacePanel var55 = new SpaceWar.SpacePanel(); + java.awt.Color var56 = var55.getBackground(); + var55.repaint(); + java.awt.im.InputMethodRequests var58 = var55.getInputMethodRequests(); + java.awt.GraphicsConfiguration var59 = var55.getGraphicsConfiguration(); + var40.remove((java.awt.Component)var55); + java.awt.Font var61 = var55.getFont(); + java.awt.FontMetrics var62 = var33.getFontMetrics(var61); + java.awt.FontMetrics var63 = var19.getFontMetrics(var61); + java.awt.Component[] var64 = var19.getComponents(); + var19.validate(); + var19.show(false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var36); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var39 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var41 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var44); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var45 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var48); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var56); + + // Regression assertion (captures the current behavior of the code) + assertNull(var58); + + // Regression assertion (captures the current behavior of the code) + assertNull(var59); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var61); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var62); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var63); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var64); + + } + + public void test341() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test341"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.updateUI(); + var0.enableInputMethods(true); + java.lang.String var8 = var0.toString(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.setVisible(false); + boolean var13 = var9.isDoubleBuffered(); + java.awt.dnd.DropTarget var14 = var9.getDropTarget(); + var9.show(false); + java.awt.Rectangle var17 = var9.getVisibleRect(); + java.awt.image.BufferedImage var19 = var9.loadImg("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + java.awt.ComponentOrientation var20 = var9.getComponentOrientation(); + boolean var21 = var9.isPaintingTile(); + boolean var22 = var9.isOptimizedDrawingEnabled(); + int var23 = var0.getComponentZOrder((java.awt.Component)var9); + javax.swing.event.AncestorListener[] var24 = var0.getAncestorListeners(); + var0.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=1.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", 498, 3); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var8 + "' != '" + "SpaceWar.SpacePanel[,0,0,0var8,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"+ "'", var8.equals("SpaceWar.SpacePanel[,0,0,0var8,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]")); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var22 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == (-1)); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var24); + + } + + public void test342() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test342"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + boolean var2 = var0.hasFocus(); + java.awt.Insets var3 = var0.getInsets(); + java.awt.Dimension var4 = var0.getPreferredSize(); + SpaceWar.SpacePanel var5 = new SpaceWar.SpacePanel(); + var5.setName(""); + java.awt.Dimension var8 = var5.minimumSize(); + boolean var9 = var5.isDoubleBuffered(); + java.awt.event.HierarchyListener[] var10 = var5.getHierarchyListeners(); + java.awt.Font var11 = var5.getFont(); + var0.setFont(var11); + boolean var13 = var0.getInheritsPopupMenu(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var2 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var4); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == false); + + } + + public void test343() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test343"); + + + SpaceWar.Text var4 = new SpaceWar.Text(83.657626403857d, 475.3294093279198d, 10L, "SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=1.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + boolean var5 = var4.update(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == false); + + } + + public void test344() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test344"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + java.awt.Dimension var4 = var0.getPreferredSize(); + java.awt.Toolkit var5 = var0.getToolkit(); + boolean var6 = var0.isFocusable(); + javax.swing.KeyStroke[] var7 = var0.getRegisteredKeyStrokes(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + var8.nextFocus(); + SpaceWar.SpacePanel var13 = new SpaceWar.SpacePanel(); + float var14 = var13.getAlignmentX(); + var13.setVisible(false); + SpaceWar.SpacePanel var17 = new SpaceWar.SpacePanel(); + java.awt.Color var18 = var17.getBackground(); + var13.setForeground(var18); + var8.setBackground(var18); + var0.setBackground(var18); + SpaceWar.SpacePanel var22 = new SpaceWar.SpacePanel(); + float var23 = var22.getAlignmentX(); + var22.setVisible(false); + boolean var26 = var22.isDoubleBuffered(); + var22.list(); + var22.setAutoscrolls(false); + var0.removeKeyListener((java.awt.event.KeyListener)var22); + SpaceWar.SpacePanel var31 = new SpaceWar.SpacePanel(); + float var32 = var31.getAlignmentX(); + var31.setVisible(false); + boolean var35 = var31.isDoubleBuffered(); + var31.enable(false); + boolean var38 = var31.getFocusTraversalKeysEnabled(); + SpaceWar.SpacePanel var39 = new SpaceWar.SpacePanel(); + float var40 = var39.getAlignmentX(); + var39.setVisible(false); + java.awt.Dimension var43 = var39.getPreferredSize(); + java.awt.Toolkit var44 = var39.getToolkit(); + boolean var45 = var39.isFocusable(); + javax.swing.KeyStroke[] var46 = var39.getRegisteredKeyStrokes(); + SpaceWar.SpacePanel var47 = new SpaceWar.SpacePanel(); + float var48 = var47.getAlignmentX(); + SpaceWar.SpacePanel var49 = new SpaceWar.SpacePanel(); + float var50 = var49.getAlignmentX(); + var49.setVisible(false); + java.awt.Dimension var53 = var49.getPreferredSize(); + boolean var54 = var49.getVerifyInputWhenFocusTarget(); + java.awt.Component var57 = var49.findComponentAt(10, 1); + var47.addKeyListener((java.awt.event.KeyListener)var49); + var49.repaint(100, (-1), (-1), 1); + boolean var64 = var39.isAncestorOf((java.awt.Component)var49); + var31.addKeyListener((java.awt.event.KeyListener)var49); + var49.hide(); + java.awt.Point var67 = var49.getLocation(); + java.awt.Point var68 = var22.getLocation(var67); + java.awt.event.KeyListener[] var69 = var22.getKeyListeners(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var4); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var32 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var35 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var38 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var40 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var43); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var44); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var45 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var46); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var48 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var50 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var53); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var54 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var57); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var64 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var67); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var68); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var69); + + } + + public void test345() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test345"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + float var7 = var6.getAlignmentX(); + var6.setVisible(false); + java.awt.Dimension var10 = var6.getPreferredSize(); + var0.setMaximumSize(var10); + boolean var12 = var0.getVerifyInputWhenFocusTarget(); + boolean var13 = var0.isFontSet(); + boolean var14 = var0.getIgnoreRepaint(); + java.awt.Component var17 = var0.locate(1, 25); + java.awt.Dimension var18 = var0.getMinimumSize(); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + float var20 = var19.getAlignmentX(); + var19.setVisible(false); + boolean var23 = var19.isDoubleBuffered(); + java.awt.dnd.DropTarget var24 = var19.getDropTarget(); + var19.show(false); + java.awt.Rectangle var27 = var19.getVisibleRect(); + boolean var28 = var19.isFocusTraversalPolicySet(); + SpaceWar.SpacePanel var29 = new SpaceWar.SpacePanel(); + float var30 = var29.getAlignmentX(); + var29.setVisible(false); + boolean var33 = var29.isDoubleBuffered(); + var29.enable(false); + boolean var36 = var29.getFocusTraversalKeysEnabled(); + SpaceWar.SpacePanel var37 = new SpaceWar.SpacePanel(); + float var38 = var37.getAlignmentX(); + var37.setVisible(false); + java.awt.Dimension var41 = var37.getPreferredSize(); + java.awt.Toolkit var42 = var37.getToolkit(); + boolean var43 = var37.isFocusable(); + javax.swing.KeyStroke[] var44 = var37.getRegisteredKeyStrokes(); + SpaceWar.SpacePanel var45 = new SpaceWar.SpacePanel(); + float var46 = var45.getAlignmentX(); + SpaceWar.SpacePanel var47 = new SpaceWar.SpacePanel(); + float var48 = var47.getAlignmentX(); + var47.setVisible(false); + java.awt.Dimension var51 = var47.getPreferredSize(); + boolean var52 = var47.getVerifyInputWhenFocusTarget(); + java.awt.Component var55 = var47.findComponentAt(10, 1); + var45.addKeyListener((java.awt.event.KeyListener)var47); + var47.repaint(100, (-1), (-1), 1); + boolean var62 = var37.isAncestorOf((java.awt.Component)var47); + var29.addKeyListener((java.awt.event.KeyListener)var47); + java.util.Locale var64 = var47.getLocale(); + var19.setLocale(var64); + javax.swing.JComponent.setDefaultLocale(var64); + var0.setLocale(var64); + boolean var68 = var0.isMinimumSizeSet(); + var0.hide(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var27); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var28 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var30 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var33 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var36 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var38 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var41); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var42); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var43 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var44); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var46 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var48 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var51); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var52 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var55); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var62 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var64); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var68 == false); + + } + + public void test346() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test346"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.updateUI(); + var0.enableInputMethods(true); + int var8 = var0.getY(); + var0.setDebugGraphicsOptions(10); + java.awt.event.ContainerListener[] var11 = var0.getContainerListeners(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + } + + public void test347() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test347"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + boolean var2 = var0.hasFocus(); + java.beans.VetoableChangeListener[] var3 = var0.getVetoableChangeListeners(); + var0.paintImmediately(10, 0, (-1), 25); + boolean var9 = var0.getInheritsPopupMenu(); + var0.resize(500, 10); + SpaceWar.SpacePanel var13 = new SpaceWar.SpacePanel(); + float var14 = var13.getAlignmentX(); + var13.setVisible(false); + boolean var17 = var13.isDoubleBuffered(); + SpaceWar.SpacePanel var18 = new SpaceWar.SpacePanel(); + float var19 = var18.getAlignmentX(); + var18.setVisible(false); + var18.nextFocus(); + var18.reshape((-1), 1, (-1), 10); + var18.disable(); + boolean var29 = var18.isFocusable(); + int var30 = var18.getHeight(); + var13.setNextFocusableComponent((java.awt.Component)var18); + SpaceWar.SpacePanel var32 = new SpaceWar.SpacePanel(); + float var33 = var32.getAlignmentX(); + var32.setVisible(false); + var32.nextFocus(); + SpaceWar.SpacePanel var37 = new SpaceWar.SpacePanel(); + float var38 = var37.getAlignmentX(); + var37.setVisible(false); + SpaceWar.SpacePanel var41 = new SpaceWar.SpacePanel(); + java.awt.Color var42 = var41.getBackground(); + var37.setForeground(var42); + var32.setBackground(var42); + java.awt.Component var45 = var32.getNextFocusableComponent(); + float var46 = var32.getAlignmentY(); + java.awt.event.MouseListener[] var47 = var32.getMouseListeners(); + java.awt.Point var48 = var32.location(); + java.awt.Point var49 = var13.getLocation(var48); + var0.setLocation(var49); + var0.setSize(2, 3); + SpaceWar.Player var54 = new SpaceWar.Player(); + boolean var55 = var54.isRecovering(); + var54.setRigth(false); + int var58 = var54.getPower(); + boolean var59 = var54.isDead(); + SpaceWar.SpacePanel var60 = new SpaceWar.SpacePanel(); + java.awt.Color var61 = var60.getBackground(); + var60.repaint(); + java.awt.im.InputMethodRequests var63 = var60.getInputMethodRequests(); + var60.setDoubleBuffered(true); + var60.setInheritsPopupMenu(false); + boolean var68 = var60.isFocusTraversalPolicySet(); + var0.putClientProperty((java.lang.Object)var54, (java.lang.Object)var68); + var54.setRigth(false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var2 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var29 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var30 == 10); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var33 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var38 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var42); + + // Regression assertion (captures the current behavior of the code) + assertNull(var45); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var46 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var47); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var48); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var49); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var55 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var58 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var59 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var61); + + // Regression assertion (captures the current behavior of the code) + assertNull(var63); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var68 == false); + + } + + public void test348() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test348"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.updateUI(); + var0.enableInputMethods(true); + java.lang.String var8 = var0.toString(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.setVisible(false); + boolean var13 = var9.isDoubleBuffered(); + java.awt.dnd.DropTarget var14 = var9.getDropTarget(); + var9.show(false); + java.awt.Rectangle var17 = var9.getVisibleRect(); + java.awt.image.BufferedImage var19 = var9.loadImg("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + java.awt.ComponentOrientation var20 = var9.getComponentOrientation(); + boolean var21 = var9.isPaintingTile(); + boolean var22 = var9.isOptimizedDrawingEnabled(); + int var23 = var0.getComponentZOrder((java.awt.Component)var9); + SpaceWar.SpacePanel var24 = new SpaceWar.SpacePanel(); + float var25 = var24.getAlignmentX(); + var24.setVisible(false); + SpaceWar.SpacePanel var28 = new SpaceWar.SpacePanel(); + java.awt.Color var29 = var28.getBackground(); + var24.setForeground(var29); + SpaceWar.SpacePanel var31 = new SpaceWar.SpacePanel(); + float var32 = var31.getAlignmentX(); + var31.setVisible(false); + boolean var35 = var31.isDoubleBuffered(); + java.awt.dnd.DropTarget var36 = var31.getDropTarget(); + var31.show(false); + java.awt.Rectangle var39 = var31.getVisibleRect(); + var24.repaint(var39); + java.awt.FocusTraversalPolicy var41 = var24.getFocusTraversalPolicy(); + javax.swing.TransferHandler var42 = var24.getTransferHandler(); + javax.swing.JToolTip var43 = var24.createToolTip(); + boolean var44 = var43.isValidateRoot(); + SpaceWar.SpacePanel var45 = new SpaceWar.SpacePanel(); + float var46 = var45.getAlignmentX(); + var45.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var51 = var45.getUI(); + java.awt.im.InputMethodRequests var52 = var45.getInputMethodRequests(); + SpaceWar.SpacePanel var53 = new SpaceWar.SpacePanel(); + float var54 = var53.getAlignmentX(); + var53.setVisible(false); + var53.nextFocus(); + var53.updateUI(); + var53.enableInputMethods(true); + var53.setSize((-1), 1); + SpaceWar.SpacePanel var64 = new SpaceWar.SpacePanel(); + var64.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var45.add((java.awt.Component)var53, (java.lang.Object)"SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + java.awt.event.KeyListener[] var70 = var45.getKeyListeners(); + var45.reshape(10, 100, 3, 3); + javax.accessibility.AccessibleContext var76 = var45.getAccessibleContext(); + java.awt.Rectangle var77 = var45.getVisibleRect(); + var43.paintImmediately(var77); + var9.setBounds(var77); + java.awt.Color var80 = var9.getForeground(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var8 + "' != '" + "SpaceWar.SpacePanel[,0,0,0var8,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"+ "'", var8.equals("SpaceWar.SpacePanel[,0,0,0var8,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]")); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var22 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == (-1)); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var29); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var32 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var35 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var36); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var39); + + // Regression assertion (captures the current behavior of the code) + assertNull(var41); + + // Regression assertion (captures the current behavior of the code) + assertNull(var42); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var43); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var44 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var46 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var51); + + // Regression assertion (captures the current behavior of the code) + assertNull(var52); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var54 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var70); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var76); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var77); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var80); + + } + + public void test349() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test349"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + var0.enable(false); + boolean var7 = var0.requestDefaultFocus(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var14 = var8.getMouseListeners(); + int var15 = var8.getDebugGraphicsOptions(); + SpaceWar.SpacePanel var16 = new SpaceWar.SpacePanel(); + float var17 = var16.getAlignmentX(); + var16.setVisible(false); + boolean var20 = var16.isDoubleBuffered(); + java.awt.dnd.DropTarget var21 = var16.getDropTarget(); + var16.show(false); + java.awt.Rectangle var24 = var16.getVisibleRect(); + var8.paintImmediately(var24); + var8.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", '#', '#'); + var8.list(); + java.awt.Rectangle var31 = var8.getBounds(); + var0.scrollRectToVisible(var31); + java.awt.peer.ComponentPeer var33 = var0.getPeer(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var21); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var31); + + // Regression assertion (captures the current behavior of the code) + assertNull(var33); + + } + + public void test350() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test350"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + var0.show(false); + boolean var8 = var0.isPaintingForPrint(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var15 = var9.getMouseListeners(); + int var16 = var9.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var17 = var9.getInputMethodRequests(); + var0.addKeyListener((java.awt.event.KeyListener)var9); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + float var20 = var19.getAlignmentX(); + var19.setVisible(false); + boolean var23 = var19.isDoubleBuffered(); + var19.list(); + float var25 = var19.getAlignmentY(); + boolean var26 = var9.isFocusCycleRoot((java.awt.Container)var19); + var19.firePropertyChange("", 1L, 1L); + var19.setVerifyInputWhenFocusTarget(true); + var19.resize(25, 400); + java.awt.event.ComponentListener[] var36 = var19.getComponentListeners(); + boolean var37 = var19.isBackgroundSet(); + boolean var38 = var19.isFontSet(); + java.awt.im.InputMethodRequests var39 = var19.getInputMethodRequests(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var36); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var38 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var39); + + } + + public void test351() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test351"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.setInheritsPopupMenu(false); + var0.move(10, 10); + var0.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var0.removeAll(); + java.awt.Point var14 = var0.location(); + var0.list(); + var0.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=java.awt.Dimension[width=800,height=600],minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", 0, 99); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + } + + public void test352() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test352"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var6 = var0.getUI(); + java.awt.im.InputMethodRequests var7 = var0.getInputMethodRequests(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + var8.nextFocus(); + var8.updateUI(); + var8.enableInputMethods(true); + var8.setSize((-1), 1); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + var19.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var0.add((java.awt.Component)var8, (java.lang.Object)"SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + java.awt.ComponentOrientation var25 = var8.getComponentOrientation(); + java.beans.VetoableChangeListener[] var26 = var8.getVetoableChangeListeners(); + java.awt.dnd.DropTarget var27 = var8.getDropTarget(); + var8.repaint(3, 499, 400, 1); + java.awt.Toolkit var33 = var8.getToolkit(); + var8.setFocusCycleRoot(true); + var8.setFocusCycleRoot(true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var25); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertNull(var27); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var33); + + } + + public void test353() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test353"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + SpaceWar.SpacePanel var5 = new SpaceWar.SpacePanel(); + float var6 = var5.getAlignmentX(); + var5.setVisible(false); + var5.nextFocus(); + var5.reshape((-1), 1, (-1), 10); + var5.disable(); + boolean var16 = var5.isFocusable(); + int var17 = var5.getHeight(); + var0.setNextFocusableComponent((java.awt.Component)var5); + boolean var19 = var0.isMinimumSizeSet(); + var0.transferFocusBackward(); + boolean var21 = var0.isMaximumSizeSet(); + var0.repaint(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == 10); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == false); + + } + + public void test354() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test354"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.setInheritsPopupMenu(false); + var0.setFocusTraversalPolicyProvider(true); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + boolean var12 = var8.isDoubleBuffered(); + var8.list(); + SpaceWar.SpacePanel var14 = new SpaceWar.SpacePanel(); + float var15 = var14.getAlignmentX(); + var14.setVisible(false); + boolean var18 = var14.isDoubleBuffered(); + java.awt.dnd.DropTarget var19 = var14.getDropTarget(); + var14.show(false); + java.awt.Rectangle var22 = var14.getVisibleRect(); + java.awt.Rectangle var23 = var8.getBounds(var22); + javax.swing.JToolTip var24 = var8.createToolTip(); + var0.removeKeyListener((java.awt.event.KeyListener)var8); + var0.setFocusTraversalKeysEnabled(true); + var0.firePropertyChange("SpaceWar.SpacePanel[,-1,1,-1x10,invalid,hidden,disabled,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", (byte)10, (byte)10); + boolean var33 = var0.requestFocus(true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var23); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var33 == false); + + } + + public void test355() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test355"); + + + SpaceWar.Text var4 = new SpaceWar.Text(495.44236387443226d, 67.31525280771399d, 1L, "PanelUI"); + + } + + public void test356() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test356"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var6 = var0.getUI(); + java.awt.im.InputMethodRequests var7 = var0.getInputMethodRequests(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + var8.nextFocus(); + var8.updateUI(); + var8.enableInputMethods(true); + var8.setSize((-1), 1); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + var19.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var0.add((java.awt.Component)var8, (java.lang.Object)"SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + var8.doLayout(); + java.awt.event.MouseListener[] var26 = var8.getMouseListeners(); + var8.enableInputMethods(false); + int var29 = var8.getWidth(); + boolean var30 = var8.isDisplayable(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var29 == (-1)); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var30 == false); + + } + + public void test357() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test357"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.setInheritsPopupMenu(false); + var0.setFocusTraversalPolicyProvider(true); + boolean var10 = var0.inside(25, 3); + SpaceWar.SpacePanel var11 = new SpaceWar.SpacePanel(); + float var12 = var11.getAlignmentX(); + var11.setVisible(false); + boolean var15 = var11.isDoubleBuffered(); + java.awt.dnd.DropTarget var16 = var11.getDropTarget(); + var11.show(false); + boolean var19 = var11.isPaintingForPrint(); + SpaceWar.SpacePanel var20 = new SpaceWar.SpacePanel(); + float var21 = var20.getAlignmentX(); + SpaceWar.SpacePanel var22 = new SpaceWar.SpacePanel(); + float var23 = var22.getAlignmentX(); + var22.setVisible(false); + java.awt.Dimension var26 = var22.getPreferredSize(); + boolean var27 = var22.getVerifyInputWhenFocusTarget(); + java.awt.Component var30 = var22.findComponentAt(10, 1); + var20.addKeyListener((java.awt.event.KeyListener)var22); + java.awt.Dimension var32 = var22.getMinimumSize(); + var11.setMinimumSize(var32); + var0.setPreferredSize(var32); + SpaceWar.SpacePanel var35 = new SpaceWar.SpacePanel(); + float var36 = var35.getAlignmentX(); + var35.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var41 = var35.getUI(); + java.awt.im.InputMethodRequests var42 = var35.getInputMethodRequests(); + SpaceWar.SpacePanel var43 = new SpaceWar.SpacePanel(); + float var44 = var43.getAlignmentX(); + var43.setVisible(false); + var43.nextFocus(); + var43.updateUI(); + var43.enableInputMethods(true); + var43.setSize((-1), 1); + SpaceWar.SpacePanel var54 = new SpaceWar.SpacePanel(); + var54.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var35.add((java.awt.Component)var43, (java.lang.Object)"SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + SpaceWar.SpacePanel var60 = new SpaceWar.SpacePanel(); + var60.setName(""); + java.awt.ComponentOrientation var63 = var60.getComponentOrientation(); + var35.applyComponentOrientation(var63); + var0.setComponentOrientation(var63); + java.awt.peer.ComponentPeer var66 = var0.getPeer(); + var0.resetKeyboardActions(); + var0.doLayout(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var30); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var32); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var36 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var41); + + // Regression assertion (captures the current behavior of the code) + assertNull(var42); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var44 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var63); + + // Regression assertion (captures the current behavior of the code) + assertNull(var66); + + } + + public void test358() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test358"); + + + SpaceWar.Player var0 = new SpaceWar.Player(); + int var1 = var0.getPower(); + var0.setLeft(true); + var0.increasePower(0); + int var6 = var0.getR(); + var0.setUp(false); + var0.setDown(false); + int var11 = var0.getY(); + var0.update(); + var0.setDown(false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == 25); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == 500); + + } + + public void test359() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test359"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + var0.setRequestFocusEnabled(false); + var0.reshape(100, 0, 100, 0); + java.beans.VetoableChangeListener[] var10 = var0.getVetoableChangeListeners(); + java.awt.Rectangle var11 = var0.getVisibleRect(); + float var12 = var0.getAlignmentY(); + java.awt.Container var13 = var0.getTopLevelAncestor(); + java.awt.Insets var14 = var0.getInsets(); + SpaceWar.SpacePanel var15 = new SpaceWar.SpacePanel(); + float var16 = var15.getAlignmentX(); + var15.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var21 = var15.getMouseListeners(); + int var22 = var15.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var23 = var15.getInputMethodRequests(); + var15.removeNotify(); + var15.enable(); + boolean var26 = var15.isShowing(); + SpaceWar.SpacePanel var27 = new SpaceWar.SpacePanel(); + float var28 = var27.getAlignmentX(); + var27.setVisible(false); + SpaceWar.SpacePanel var31 = new SpaceWar.SpacePanel(); + java.awt.Color var32 = var31.getBackground(); + var27.setForeground(var32); + SpaceWar.SpacePanel var34 = new SpaceWar.SpacePanel(); + float var35 = var34.getAlignmentX(); + var34.setVisible(false); + boolean var38 = var34.isDoubleBuffered(); + java.awt.dnd.DropTarget var39 = var34.getDropTarget(); + var34.show(false); + java.awt.Rectangle var42 = var34.getVisibleRect(); + var27.repaint(var42); + java.awt.FocusTraversalPolicy var44 = var27.getFocusTraversalPolicy(); + SpaceWar.SpacePanel var45 = new SpaceWar.SpacePanel(); + float var46 = var45.getAlignmentX(); + var45.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var51 = var45.getUI(); + java.awt.im.InputMethodRequests var52 = var45.getInputMethodRequests(); + SpaceWar.SpacePanel var53 = new SpaceWar.SpacePanel(); + float var54 = var53.getAlignmentX(); + var53.setVisible(false); + var53.nextFocus(); + var53.updateUI(); + var53.enableInputMethods(true); + var53.setSize((-1), 1); + SpaceWar.SpacePanel var64 = new SpaceWar.SpacePanel(); + var64.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var45.add((java.awt.Component)var53, (java.lang.Object)"SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + java.awt.ComponentOrientation var70 = var53.getComponentOrientation(); + java.beans.VetoableChangeListener[] var71 = var53.getVetoableChangeListeners(); + int var72 = var53.getHeight(); + javax.swing.ActionMap var73 = var53.getActionMap(); + var27.setActionMap(var73); + var15.setActionMap(var73); + var0.setActionMap(var73); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var21); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var22 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var23); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var28 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var32); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var35 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var38 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var39); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var42); + + // Regression assertion (captures the current behavior of the code) + assertNull(var44); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var46 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var51); + + // Regression assertion (captures the current behavior of the code) + assertNull(var52); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var54 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var70); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var71); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var72 == 1); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var73); + + } + + public void test360() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test360"); + + + SpaceWar.Player var0 = new SpaceWar.Player(); + var0.increasePower(25); + int var3 = var0.getScore(); + int var4 = var0.getX(); + var0.setLife(100); + var0.setScore(2); + int var9 = var0.getRequiredPower(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 400); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 2); + + } + + public void test361() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test361"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.setInheritsPopupMenu(false); + var0.move(10, 10); + javax.swing.TransferHandler var9 = var0.getTransferHandler(); + var0.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=10,height=10]]", 506.9915098063617d, 370.2289277239558d); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNull(var9); + + } + + public void test362() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test362"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + SpaceWar.SpacePanel var5 = new SpaceWar.SpacePanel(); + float var6 = var5.getAlignmentX(); + var5.setVisible(false); + var5.nextFocus(); + var5.reshape((-1), 1, (-1), 10); + var5.disable(); + boolean var16 = var5.isFocusable(); + int var17 = var5.getHeight(); + var0.setNextFocusableComponent((java.awt.Component)var5); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + float var20 = var19.getAlignmentX(); + var19.setVisible(false); + var19.nextFocus(); + SpaceWar.SpacePanel var24 = new SpaceWar.SpacePanel(); + float var25 = var24.getAlignmentX(); + var24.setVisible(false); + SpaceWar.SpacePanel var28 = new SpaceWar.SpacePanel(); + java.awt.Color var29 = var28.getBackground(); + var24.setForeground(var29); + var19.setBackground(var29); + java.awt.Component var32 = var19.getNextFocusableComponent(); + float var33 = var19.getAlignmentY(); + java.awt.event.MouseListener[] var34 = var19.getMouseListeners(); + java.awt.Point var35 = var19.location(); + java.awt.Point var36 = var0.getLocation(var35); + var0.updateUI(); + java.awt.event.KeyListener[] var38 = var0.getKeyListeners(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == 10); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var29); + + // Regression assertion (captures the current behavior of the code) + assertNull(var32); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var33 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var34); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var35); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var36); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var38); + + } + + public void test363() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test363"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.updateUI(); + java.util.Locale var6 = var0.getLocale(); + var0.paintImmediately(25, 100, 3, 0); + java.awt.Dimension var12 = var0.getSize(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var12); + + } + + public void test364() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test364"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + var0.setName(""); + java.awt.Dimension var3 = var0.minimumSize(); + boolean var4 = var0.isDoubleBuffered(); + SpaceWar.SpacePanel var5 = new SpaceWar.SpacePanel(); + float var6 = var5.getAlignmentX(); + SpaceWar.SpacePanel var7 = new SpaceWar.SpacePanel(); + float var8 = var7.getAlignmentX(); + var7.setVisible(false); + java.awt.Dimension var11 = var7.getPreferredSize(); + boolean var12 = var7.getVerifyInputWhenFocusTarget(); + java.awt.Component var15 = var7.findComponentAt(10, 1); + var5.addKeyListener((java.awt.event.KeyListener)var7); + var7.repaint(100, (-1), (-1), 1); + SpaceWar.SpacePanel var22 = new SpaceWar.SpacePanel(); + java.awt.Color var23 = var22.getBackground(); + var22.repaint(); + java.awt.im.InputMethodRequests var25 = var22.getInputMethodRequests(); + java.awt.GraphicsConfiguration var26 = var22.getGraphicsConfiguration(); + var7.remove((java.awt.Component)var22); + java.awt.Font var28 = var22.getFont(); + java.awt.FontMetrics var29 = var0.getFontMetrics(var28); + var0.resize(3, (-1)); + SpaceWar.SpacePanel var33 = new SpaceWar.SpacePanel(); + float var34 = var33.getAlignmentX(); + var33.setVisible(false); + var33.setInheritsPopupMenu(false); + var33.setFocusTraversalPolicyProvider(true); + SpaceWar.SpacePanel var41 = new SpaceWar.SpacePanel(); + float var42 = var41.getAlignmentX(); + var41.setVisible(false); + boolean var45 = var41.isDoubleBuffered(); + var41.list(); + SpaceWar.SpacePanel var47 = new SpaceWar.SpacePanel(); + float var48 = var47.getAlignmentX(); + var47.setVisible(false); + boolean var51 = var47.isDoubleBuffered(); + java.awt.dnd.DropTarget var52 = var47.getDropTarget(); + var47.show(false); + java.awt.Rectangle var55 = var47.getVisibleRect(); + java.awt.Rectangle var56 = var41.getBounds(var55); + javax.swing.JToolTip var57 = var41.createToolTip(); + var33.removeKeyListener((java.awt.event.KeyListener)var41); + java.awt.Cursor var59 = var41.getCursor(); + var0.setCursor(var59); + javax.swing.InputVerifier var61 = var0.getInputVerifier(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var23); + + // Regression assertion (captures the current behavior of the code) + assertNull(var25); + + // Regression assertion (captures the current behavior of the code) + assertNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var28); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var29); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var34 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var42 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var45 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var48 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var51 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var52); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var55); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var56); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var57); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var59); + + // Regression assertion (captures the current behavior of the code) + assertNull(var61); + + } + + public void test365() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test365"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var1 = new SpaceWar.SpacePanel(); + java.awt.Color var2 = var1.getBackground(); + SpaceWar.SpacePanel var3 = new SpaceWar.SpacePanel(); + float var4 = var3.getAlignmentX(); + var3.setVisible(false); + var3.nextFocus(); + var3.updateUI(); + var3.enableInputMethods(true); + var0.add((java.awt.Component)var1, (java.lang.Object)true); + java.awt.Dimension var12 = var1.getPreferredSize(); + var1.move(100, 10); + boolean var16 = var1.getAutoscrolls(); + java.awt.event.HierarchyBoundsListener[] var17 = var1.getHierarchyBoundsListeners(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var2); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var17); + + } + + public void test366() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test366"); + + + SpaceWar.PowerUp var3 = new SpaceWar.PowerUp(500, 306.4012291647917d, (-8.529389630162045d)); + double var4 = var3.getY(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == (-8.529389630162045d)); + + } + + public void test367() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test367"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + var0.setRequestFocusEnabled(false); + var0.reshape(100, 0, 100, 0); + var0.requestFocus(); + var0.firePropertyChange("hi!", '4', ' '); + java.awt.Point var15 = var0.getLocation(); + java.awt.Dimension var16 = var0.size(); + java.awt.Image var19 = var0.createImage((-1), (-1)); + java.awt.event.ComponentListener[] var20 = var0.getComponentListeners(); + var0.setName("PanelUI"); + boolean var23 = var0.isFocusTraversalPolicySet(); + var0.updateUI(); + SpaceWar.SpacePanel var25 = new SpaceWar.SpacePanel(); + java.awt.Color var26 = var25.getBackground(); + var25.repaint(); + var25.setRequestFocusEnabled(false); + var25.reshape(100, 0, 100, 0); + java.beans.VetoableChangeListener[] var35 = var25.getVetoableChangeListeners(); + java.awt.Rectangle var36 = var25.getVisibleRect(); + float var37 = var25.getAlignmentY(); + SpaceWar.SpacePanel var38 = new SpaceWar.SpacePanel(); + java.awt.Color var39 = var38.getBackground(); + var38.repaint(); + java.awt.im.InputMethodRequests var41 = var38.getInputMethodRequests(); + int var42 = var38.countComponents(); + java.awt.Dimension var43 = var38.getSize(); + var25.setPreferredSize(var43); + var0.setPreferredSize(var43); + javax.swing.ActionMap var46 = var0.getActionMap(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var35); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var36); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var39); + + // Regression assertion (captures the current behavior of the code) + assertNull(var41); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var42 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var43); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var46); + + } + + public void test368() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test368"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + var0.show(false); + boolean var8 = var0.isPaintingForPrint(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var15 = var9.getMouseListeners(); + int var16 = var9.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var17 = var9.getInputMethodRequests(); + var0.addKeyListener((java.awt.event.KeyListener)var9); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + float var20 = var19.getAlignmentX(); + var19.setVisible(false); + boolean var23 = var19.isDoubleBuffered(); + var19.list(); + float var25 = var19.getAlignmentY(); + boolean var26 = var9.isFocusCycleRoot((java.awt.Container)var19); + var19.firePropertyChange("", 1L, 1L); + var19.setVerifyInputWhenFocusTarget(true); + var19.resize(25, 400); + java.awt.event.ComponentListener[] var36 = var19.getComponentListeners(); + boolean var37 = var19.isBackgroundSet(); + boolean var38 = var19.isFontSet(); + boolean var41 = var19.contains(1, 500); + int var42 = var19.countComponents(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var36); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var38 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var41 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var42 == 0); + + } + + public void test369() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test369"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + SpaceWar.SpacePanel var4 = new SpaceWar.SpacePanel(); + java.awt.Color var5 = var4.getBackground(); + var0.setForeground(var5); + SpaceWar.SpacePanel var7 = new SpaceWar.SpacePanel(); + float var8 = var7.getAlignmentX(); + var7.setVisible(false); + boolean var11 = var7.isDoubleBuffered(); + java.awt.dnd.DropTarget var12 = var7.getDropTarget(); + var7.show(false); + java.awt.Rectangle var15 = var7.getVisibleRect(); + var0.repaint(var15); + java.awt.FocusTraversalPolicy var17 = var0.getFocusTraversalPolicy(); + java.awt.im.InputMethodRequests var18 = var0.getInputMethodRequests(); + var0.layout(); + java.awt.Point var20 = var0.getMousePosition(); + java.awt.Graphics var21 = var0.getGraphics(); + boolean var22 = var0.isManagingFocus(); + var0.transferFocusUpCycle(); + var0.setToolTipText("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=1.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + var0.setFocusCycleRoot(true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertNull(var21); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var22 == false); + + } + + public void test370() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test370"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + SpaceWar.SpacePanel var5 = new SpaceWar.SpacePanel(); + java.awt.Color var6 = var5.getBackground(); + var5.repaint(); + java.lang.Object var8 = var0.getClientProperty((java.lang.Object)var5); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + java.awt.Color var10 = var9.getBackground(); + boolean var13 = var9.inside(0, (-1)); + SpaceWar.SpacePanel var14 = new SpaceWar.SpacePanel(); + float var15 = var14.getAlignmentX(); + var14.setVisible(false); + SpaceWar.SpacePanel var18 = new SpaceWar.SpacePanel(); + java.awt.Color var19 = var18.getBackground(); + var14.setForeground(var19); + var9.setForeground(var19); + var5.setBackground(var19); + java.awt.Image var25 = var5.createImage(100, 24); + SpaceWar.SpacePanel var26 = new SpaceWar.SpacePanel(); + var26.setName(""); + java.awt.Dimension var29 = var26.minimumSize(); + boolean var30 = var26.isDoubleBuffered(); + java.awt.event.HierarchyListener[] var31 = var26.getHierarchyListeners(); + java.awt.Font var32 = var26.getFont(); + var5.setFont(var32); + SpaceWar.SpacePanel var35 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var36 = new SpaceWar.SpacePanel(); + java.awt.Color var37 = var36.getBackground(); + SpaceWar.SpacePanel var38 = new SpaceWar.SpacePanel(); + float var39 = var38.getAlignmentX(); + var38.setVisible(false); + var38.nextFocus(); + var38.updateUI(); + var38.enableInputMethods(true); + var35.add((java.awt.Component)var36, (java.lang.Object)true); + boolean var47 = var35.isMinimumSizeSet(); + var35.reshape(499, 2, 499, 500); + java.awt.Component var53 = var5.add("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=10,height=10]]", (java.awt.Component)var35); + java.lang.String var54 = var35.toString(); + java.awt.event.InputMethodListener[] var55 = var35.getInputMethodListeners(); + java.awt.Point var57 = var35.getMousePosition(false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertNull(var25); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var29); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var30 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var31); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var32); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var37); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var39 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var47 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var53); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var54 + "' != '" + "SpaceWar.SpacePanel[,499,2,499x500,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"+ "'", var54.equals("SpaceWar.SpacePanel[,499,2,499x500,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]")); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var55); + + // Regression assertion (captures the current behavior of the code) + assertNull(var57); + + } + + public void test371() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test371"); + + + SpaceWar.Player var0 = new SpaceWar.Player(); + var0.increasePower(25); + int var3 = var0.getScore(); + var0.setFiring(false); + var0.setDown(true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == 0); + + } + + public void test372() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test372"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var6 = var0.getUI(); + java.awt.im.InputMethodRequests var7 = var0.getInputMethodRequests(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + var8.nextFocus(); + var8.updateUI(); + var8.enableInputMethods(true); + var8.setSize((-1), 1); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + var19.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var0.add((java.awt.Component)var8, (java.lang.Object)"SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + var8.firePropertyChange("SpaceWar.SpacePanel[,-1,1,-1x10,invalid,hidden,disabled,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", 2, 10); + boolean var29 = var8.isOpaque(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var29 == true); + + } + + public void test373() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test373"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + var0.setRequestFocusEnabled(false); + var0.reshape(100, 0, 100, 0); + var0.requestFocus(); + var0.firePropertyChange("hi!", '4', ' '); + java.awt.Point var15 = var0.getLocation(); + java.awt.Dimension var16 = var0.size(); + java.awt.Image var19 = var0.createImage((-1), (-1)); + java.awt.event.ComponentListener[] var20 = var0.getComponentListeners(); + SpaceWar.SpacePanel var21 = new SpaceWar.SpacePanel(); + var21.setName(""); + java.awt.ComponentOrientation var24 = var21.getComponentOrientation(); + var21.firePropertyChange("PanelUI", 1.0f, 0.5f); + int var29 = var0.getComponentZOrder((java.awt.Component)var21); + SpaceWar.SpacePanel var30 = new SpaceWar.SpacePanel(); + float var31 = var30.getAlignmentX(); + var30.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var36 = var30.getUI(); + java.awt.im.InputMethodRequests var37 = var30.getInputMethodRequests(); + SpaceWar.SpacePanel var38 = new SpaceWar.SpacePanel(); + float var39 = var38.getAlignmentX(); + var38.setVisible(false); + var38.nextFocus(); + var38.updateUI(); + var38.enableInputMethods(true); + var38.setSize((-1), 1); + SpaceWar.SpacePanel var49 = new SpaceWar.SpacePanel(); + var49.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var30.add((java.awt.Component)var38, (java.lang.Object)"SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + SpaceWar.SpacePanel var55 = new SpaceWar.SpacePanel(); + float var56 = var55.getAlignmentX(); + var55.setVisible(false); + var55.setInheritsPopupMenu(false); + boolean var61 = var55.isDoubleBuffered(); + boolean var62 = var55.isMinimumSizeSet(); + SpaceWar.SpacePanel var63 = new SpaceWar.SpacePanel(); + float var64 = var63.getAlignmentX(); + var63.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var69 = new SpaceWar.SpacePanel(); + float var70 = var69.getAlignmentX(); + var69.setVisible(false); + java.awt.Dimension var73 = var69.getPreferredSize(); + var63.setMaximumSize(var73); + boolean var75 = var63.getVerifyInputWhenFocusTarget(); + javax.accessibility.AccessibleContext var76 = var63.getAccessibleContext(); + boolean var77 = var63.isDoubleBuffered(); + java.awt.Rectangle var78 = var63.getVisibleRect(); + var55.setBounds(var78); + java.awt.Rectangle var80 = var30.getBounds(var78); + var0.computeVisibleRect(var78); + java.awt.image.ColorModel var82 = var0.getColorModel(); + var0.repaint(100L); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var29 == (-1)); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var31 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var36); + + // Regression assertion (captures the current behavior of the code) + assertNull(var37); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var39 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var56 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var61 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var62 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var64 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var70 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var73); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var75 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var76); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var77 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var78); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var80); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var82); + + } + + public void test374() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test374"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + var0.setRequestFocusEnabled(false); + var0.reshape(100, 0, 100, 0); + var0.requestFocus(); + var0.firePropertyChange("hi!", '4', ' '); + SpaceWar.Enemy var17 = new SpaceWar.Enemy(0, 100); + int var18 = var17.getR(); + var17.explode(); + var0.putClientProperty((java.lang.Object)var17, (java.lang.Object)(short)10); + boolean var23 = var0.requestFocus(false); + java.awt.Component var24 = var0.getNextFocusableComponent(); + boolean var25 = var0.isFocusCycleRoot(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == false); + + } + + public void test375() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test375"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var6 = var0.getMouseListeners(); + int var7 = var0.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var8 = var0.getInputMethodRequests(); + var0.removeNotify(); + var0.enable(); + SpaceWar.SpacePanel var11 = new SpaceWar.SpacePanel(); + java.awt.Color var12 = var11.getBackground(); + boolean var15 = var11.inside(0, (-1)); + var11.transferFocusUpCycle(); + java.lang.String var17 = var11.getName(); + boolean var18 = var0.isFocusCycleRoot((java.awt.Container)var11); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + java.awt.Color var20 = var19.getBackground(); + var19.repaint(); + var19.setRequestFocusEnabled(false); + var19.reshape(100, 0, 100, 0); + var19.requestFocus(); + var19.firePropertyChange("hi!", '4', ' '); + java.awt.Point var34 = var19.getLocation(); + java.awt.Component var35 = var11.getComponentAt(var34); + boolean var36 = var11.getVerifyInputWhenFocusTarget(); + SpaceWar.SpacePanel var37 = new SpaceWar.SpacePanel(); + float var38 = var37.getAlignmentX(); + var37.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var43 = var37.getMouseListeners(); + java.awt.Dimension var44 = var37.getPreferredSize(); + java.util.Locale var45 = var37.getLocale(); + javax.swing.JComponent.setDefaultLocale(var45); + javax.swing.JComponent.setDefaultLocale(var45); + var11.setLocale(var45); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var34); + + // Regression assertion (captures the current behavior of the code) + assertNull(var35); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var36 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var38 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var43); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var44); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var45); + + } + + public void test376() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test376"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + var0.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + java.awt.event.ContainerListener[] var5 = var0.getContainerListeners(); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + float var7 = var6.getAlignmentX(); + var6.setVisible(false); + var6.setInheritsPopupMenu(false); + boolean var12 = var6.isDoubleBuffered(); + SpaceWar.SpacePanel var13 = new SpaceWar.SpacePanel(); + float var14 = var13.getAlignmentX(); + var13.setVisible(false); + var13.nextFocus(); + var13.reshape((-1), 1, (-1), 10); + var13.disable(); + java.awt.LayoutManager var24 = var13.getLayout(); + var6.setLayout(var24); + var0.setLayout(var24); + int var27 = var0.getComponentCount(); + boolean var28 = var0.isValidateRoot(); + var0.resetKeyboardActions(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var28 == false); + + } + + public void test377() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test377"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + java.awt.im.InputMethodRequests var3 = var0.getInputMethodRequests(); + int var4 = var0.countComponents(); + java.awt.event.ComponentListener[] var5 = var0.getComponentListeners(); + var0.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=8,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", 0L, 100L); + java.awt.dnd.DropTarget var10 = var0.getDropTarget(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertNull(var10); + + } + + public void test378() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test378"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var6 = var0.getMouseListeners(); + int var7 = var0.getDebugGraphicsOptions(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + boolean var12 = var8.isDoubleBuffered(); + java.awt.dnd.DropTarget var13 = var8.getDropTarget(); + var8.show(false); + java.awt.Rectangle var16 = var8.getVisibleRect(); + var0.paintImmediately(var16); + var0.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", '#', '#'); + var0.resetKeyboardActions(); + javax.swing.JRootPane var23 = var0.getRootPane(); + boolean var26 = var0.inside(500, 0); + java.lang.Object var27 = var0.getTreeLock(); + java.lang.Object var28 = var0.getTreeLock(); + var0.repaint(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertNull(var23); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var27); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var28); + + } + + public void test379() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test379"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + java.awt.im.InputMethodRequests var3 = var0.getInputMethodRequests(); + var0.setDoubleBuffered(true); + var0.setInheritsPopupMenu(false); + javax.swing.plaf.PanelUI var8 = var0.getUI(); + java.util.Set var10 = var0.getFocusTraversalKeys(3); + var0.requestFocus(); + var0.setLocation(0, 24); + var0.doLayout(); + boolean var16 = var0.isForegroundSet(); + boolean var17 = javax.swing.JComponent.isLightweightComponent((java.awt.Component)var0); + java.awt.Component var20 = var0.findComponentAt(25, 25); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var20); + + } + + public void test380() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test380"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var6 = var0.getMouseListeners(); + java.awt.Dimension var7 = var0.getPreferredSize(); + int var10 = var0.getBaseline(1, 1); + var0.show(false); + var0.repaint(100L); + java.awt.Dimension var15 = var0.preferredSize(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == (-1)); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + } + + public void test381() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test381"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + boolean var2 = var0.hasFocus(); + boolean var3 = var0.isPreferredSizeSet(); + SpaceWar.SpacePanel var4 = new SpaceWar.SpacePanel(); + java.awt.Color var5 = var4.getBackground(); + var4.repaint(); + var4.setRequestFocusEnabled(false); + int var9 = var0.getComponentZOrder((java.awt.Component)var4); + int var10 = var0.getDebugGraphicsOptions(); + var0.enableInputMethods(true); + var0.setFocusTraversalPolicyProvider(true); + java.awt.Container var15 = var0.getFocusCycleRootAncestor(); + java.awt.Component.BaselineResizeBehavior var16 = var0.getBaselineResizeBehavior(); + var0.revalidate(); + java.awt.Container var18 = var0.getTopLevelAncestor(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var2 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == (-1)); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertNull(var18); + + } + + public void test382() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test382"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + SpaceWar.SpacePanel var5 = new SpaceWar.SpacePanel(); + float var6 = var5.getAlignmentX(); + var5.setVisible(false); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + java.awt.Color var10 = var9.getBackground(); + var5.setForeground(var10); + var0.setBackground(var10); + var0.grabFocus(); + SpaceWar.SpacePanel var14 = new SpaceWar.SpacePanel(); + var14.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + javax.swing.plaf.PanelUI var19 = var14.getUI(); + java.awt.Color var20 = var14.getBackground(); + var14.removeAll(); + SpaceWar.SpacePanel var22 = new SpaceWar.SpacePanel(); + float var23 = var22.getAlignmentX(); + var22.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var28 = var22.getUI(); + java.awt.im.InputMethodRequests var29 = var22.getInputMethodRequests(); + SpaceWar.SpacePanel var30 = new SpaceWar.SpacePanel(); + float var31 = var30.getAlignmentX(); + var30.setVisible(false); + var30.nextFocus(); + var30.updateUI(); + var30.enableInputMethods(true); + var30.setSize((-1), 1); + SpaceWar.SpacePanel var41 = new SpaceWar.SpacePanel(); + var41.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var22.add((java.awt.Component)var30, (java.lang.Object)"SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + java.awt.ComponentOrientation var47 = var30.getComponentOrientation(); + java.beans.VetoableChangeListener[] var48 = var30.getVetoableChangeListeners(); + java.awt.Rectangle var49 = var30.bounds(); + java.awt.Rectangle var50 = var14.getBounds(var49); + boolean var51 = var0.isFocusCycleRoot((java.awt.Container)var14); + java.awt.Dimension var52 = var0.getPreferredSize(); + javax.swing.TransferHandler var53 = var0.getTransferHandler(); + javax.swing.TransferHandler var54 = var0.getTransferHandler(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var28); + + // Regression assertion (captures the current behavior of the code) + assertNull(var29); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var31 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var47); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var48); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var49); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var50); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var51 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var52); + + // Regression assertion (captures the current behavior of the code) + assertNull(var53); + + // Regression assertion (captures the current behavior of the code) + assertNull(var54); + + } + + public void test383() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test383"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + var0.list(); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + float var7 = var6.getAlignmentX(); + var6.setVisible(false); + boolean var10 = var6.isDoubleBuffered(); + java.awt.dnd.DropTarget var11 = var6.getDropTarget(); + var6.show(false); + java.awt.Rectangle var14 = var6.getVisibleRect(); + java.awt.Rectangle var15 = var0.getBounds(var14); + javax.swing.JToolTip var16 = var0.createToolTip(); + java.awt.Graphics var17 = var0.getGraphics(); + var0.enable(false); + SpaceWar.SpacePanel var20 = new SpaceWar.SpacePanel(); + float var21 = var20.getAlignmentX(); + var20.setVisible(false); + var20.setInheritsPopupMenu(false); + var20.setFocusTraversalPolicyProvider(true); + SpaceWar.SpacePanel var28 = new SpaceWar.SpacePanel(); + float var29 = var28.getAlignmentX(); + var28.setVisible(false); + boolean var32 = var28.isDoubleBuffered(); + var28.list(); + SpaceWar.SpacePanel var34 = new SpaceWar.SpacePanel(); + float var35 = var34.getAlignmentX(); + var34.setVisible(false); + boolean var38 = var34.isDoubleBuffered(); + java.awt.dnd.DropTarget var39 = var34.getDropTarget(); + var34.show(false); + java.awt.Rectangle var42 = var34.getVisibleRect(); + java.awt.Rectangle var43 = var28.getBounds(var42); + javax.swing.JToolTip var44 = var28.createToolTip(); + var20.removeKeyListener((java.awt.event.KeyListener)var28); + java.awt.Cursor var46 = var28.getCursor(); + java.awt.image.BufferedImage var48 = var28.loadImg("hi!"); + SpaceWar.SpacePanel var49 = new SpaceWar.SpacePanel(); + float var50 = var49.getAlignmentX(); + var49.setVisible(false); + boolean var53 = var49.isDoubleBuffered(); + java.awt.dnd.DropTarget var54 = var49.getDropTarget(); + var49.show(false); + boolean var57 = var49.isPaintingForPrint(); + SpaceWar.SpacePanel var58 = new SpaceWar.SpacePanel(); + float var59 = var58.getAlignmentX(); + var58.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var64 = var58.getMouseListeners(); + int var65 = var58.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var66 = var58.getInputMethodRequests(); + var49.addKeyListener((java.awt.event.KeyListener)var58); + SpaceWar.SpacePanel var68 = new SpaceWar.SpacePanel(); + float var69 = var68.getAlignmentX(); + var68.setVisible(false); + boolean var72 = var68.isDoubleBuffered(); + var68.list(); + float var74 = var68.getAlignmentY(); + boolean var75 = var58.isFocusCycleRoot((java.awt.Container)var68); + boolean var76 = var68.isEnabled(); + java.awt.Dimension var77 = var68.getMaximumSize(); + var28.resize(var77); + var0.setSize(var77); + java.awt.Component[] var80 = var0.getComponents(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var29 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var32 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var35 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var38 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var39); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var42); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var43); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var44); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var46); + + // Regression assertion (captures the current behavior of the code) + assertNull(var48); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var50 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var53 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var54); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var57 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var59 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var64); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var65 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var66); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var69 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var72 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var74 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var75 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var76 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var77); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var80); + + } + + public void test384() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test384"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.updateUI(); + var0.enableInputMethods(true); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + boolean var10 = var8.hasFocus(); + java.awt.Insets var11 = var8.getInsets(); + java.awt.Insets var12 = var0.getInsets(var11); + javax.swing.JRootPane var13 = var0.getRootPane(); + int var14 = var0.getY(); + boolean var17 = var0.contains(0, 2); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == false); + + } + + public void test385() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test385"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + var0.show(false); + boolean var8 = var0.isPaintingForPrint(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var15 = var9.getMouseListeners(); + int var16 = var9.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var17 = var9.getInputMethodRequests(); + var0.addKeyListener((java.awt.event.KeyListener)var9); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + float var20 = var19.getAlignmentX(); + var19.setVisible(false); + boolean var23 = var19.isDoubleBuffered(); + var19.list(); + float var25 = var19.getAlignmentY(); + boolean var26 = var9.isFocusCycleRoot((java.awt.Container)var19); + boolean var27 = var19.isEnabled(); + java.awt.Dimension var28 = var19.getMaximumSize(); + var19.setFocusCycleRoot(false); + var19.setInheritsPopupMenu(false); + java.awt.Image var35 = var19.createImage((-1), 100); + SpaceWar.SpacePanel var36 = new SpaceWar.SpacePanel(); + java.awt.Color var37 = var36.getBackground(); + var36.repaint(); + java.awt.im.InputMethodRequests var39 = var36.getInputMethodRequests(); + int var40 = var36.countComponents(); + java.awt.event.ComponentListener[] var41 = var36.getComponentListeners(); + var36.transferFocusBackward(); + java.awt.LayoutManager var43 = var36.getLayout(); + var19.setLayout(var43); + javax.accessibility.AccessibleContext var45 = var19.getAccessibleContext(); + java.awt.Rectangle var46 = var19.getBounds(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var28); + + // Regression assertion (captures the current behavior of the code) + assertNull(var35); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var37); + + // Regression assertion (captures the current behavior of the code) + assertNull(var39); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var40 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var41); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var43); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var45); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var46); + + } + + public void test386() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test386"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + java.awt.im.InputMethodRequests var3 = var0.getInputMethodRequests(); + var0.setDoubleBuffered(true); + var0.setInheritsPopupMenu(false); + javax.swing.plaf.PanelUI var8 = var0.getUI(); + java.util.Set var10 = var0.getFocusTraversalKeys(3); + var0.requestFocus(); + var0.setLocation(0, 24); + var0.doLayout(); + java.awt.Component[] var16 = var0.getComponents(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + } + + public void test387() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test387"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.updateUI(); + var0.enableInputMethods(true); + java.awt.Point var8 = var0.location(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.setVisible(false); + var9.nextFocus(); + java.awt.Component var14 = var0.add((java.awt.Component)var9); + boolean var15 = var0.isRequestFocusEnabled(); + boolean var16 = var0.isFocusable(); + var0.move(0, 400); + SpaceWar.SpacePanel var20 = new SpaceWar.SpacePanel(); + float var21 = var20.getAlignmentX(); + var20.setVisible(false); + var20.setEnabled(false); + java.awt.Image var28 = var20.createImage(10, 100); + SpaceWar.SpacePanel var29 = new SpaceWar.SpacePanel(); + java.awt.Color var30 = var29.getBackground(); + var20.setForeground(var30); + var20.setFocusTraversalPolicyProvider(true); + var0.setNextFocusableComponent((java.awt.Component)var20); + javax.swing.TransferHandler var35 = var20.getTransferHandler(); + SpaceWar.SpacePanel var36 = new SpaceWar.SpacePanel(); + float var37 = var36.getAlignmentX(); + var36.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var42 = new SpaceWar.SpacePanel(); + float var43 = var42.getAlignmentX(); + var42.setVisible(false); + SpaceWar.SpacePanel var46 = new SpaceWar.SpacePanel(); + java.awt.Color var47 = var46.getBackground(); + var42.setForeground(var47); + var36.setBackground(var47); + java.awt.Point var50 = var36.location(); + var36.setToolTipText("SpaceWar.SpacePanel[,0,0,0x0,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + java.awt.event.HierarchyBoundsListener[] var53 = var36.getHierarchyBoundsListeners(); + java.awt.Dimension var54 = var36.preferredSize(); + var20.addKeyListener((java.awt.event.KeyListener)var36); + java.awt.Component var58 = var36.locate(25, 399); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNull(var28); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var30); + + // Regression assertion (captures the current behavior of the code) + assertNull(var35); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var43 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var47); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var50); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var53); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var54); + + // Regression assertion (captures the current behavior of the code) + assertNull(var58); + + } + + public void test388() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test388"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + var0.setRequestFocusEnabled(false); + var0.setIgnoreRepaint(false); + java.lang.String var7 = var0.toString(); + java.awt.Color var8 = var0.getBackground(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.setVisible(false); + java.awt.Dimension var13 = var9.getPreferredSize(); + java.awt.Toolkit var14 = var9.getToolkit(); + java.awt.Toolkit var15 = var9.getToolkit(); + SpaceWar.Player var16 = new SpaceWar.Player(); + var16.increasePower(25); + int var19 = var16.getScore(); + var16.setRigth(true); + var16.loseLife(); + var0.putClientProperty((java.lang.Object)var9, (java.lang.Object)var16); + int var24 = var16.getPowerLevel(); + int var25 = var16.getPower(); + boolean var26 = var16.isRecovering(); + int var27 = var16.getX(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var7 + "' != '" + "SpaceWar.SpacePanel[,0,0,0var7,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"+ "'", var7.equals("SpaceWar.SpacePanel[,0,0,0var7,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]")); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var24 == 1); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == 24); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == 400); + + } + + public void test389() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test389"); + + + SpaceWar.Player var0 = new SpaceWar.Player(); + int var1 = var0.getPower(); + var0.setLeft(true); + boolean var4 = var0.isRecovering(); + var0.setLife(499); + var0.update(); + boolean var8 = var0.isDead(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + } + + public void test390() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test390"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.setInheritsPopupMenu(false); + var0.setFocusTraversalPolicyProvider(true); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + var8.setName(""); + var8.enable(true); + var8.enable(); + java.awt.Point var14 = var8.location(); + var8.repaint(0, 3, (-1), 1); + java.awt.Component var22 = var8.findComponentAt(0, 25); + java.awt.event.MouseListener[] var23 = var8.getMouseListeners(); + java.awt.Point var24 = var8.getLocation(); + var0.addKeyListener((java.awt.event.KeyListener)var8); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var23); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var24); + + } + + public void test391() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test391"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.repaint(1L); + SpaceWar.SpacePanel var7 = new SpaceWar.SpacePanel(); + float var8 = var7.getAlignmentX(); + var7.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var13 = new SpaceWar.SpacePanel(); + float var14 = var13.getAlignmentX(); + var13.setVisible(false); + java.awt.Dimension var17 = var13.getPreferredSize(); + var7.setMaximumSize(var17); + var0.setPreferredSize(var17); + javax.swing.plaf.PanelUI var20 = var0.getUI(); + SpaceWar.SpacePanel var21 = new SpaceWar.SpacePanel(); + float var22 = var21.getAlignmentX(); + var21.setVisible(false); + var21.nextFocus(); + var21.reshape((-1), 1, (-1), 10); + var21.disable(); + java.awt.LayoutManager var32 = var21.getLayout(); + java.awt.Container var33 = var21.getParent(); + java.lang.String var34 = var21.getUIClassID(); + SpaceWar.Enemy var37 = new SpaceWar.Enemy(0, 10); + var0.add((java.awt.Component)var21, (java.lang.Object)10); + javax.swing.JToolTip var39 = var0.createToolTip(); + java.awt.Point var40 = var39.getMousePosition(); + java.lang.String var41 = var39.toString(); + var39.setFocusTraversalPolicyProvider(false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var22 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var32); + + // Regression assertion (captures the current behavior of the code) + assertNull(var33); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var34 + "' != '" + "PanelUI"+ "'", var34.equals("PanelUI")); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var39); + + // Regression assertion (captures the current behavior of the code) + assertNull(var40); + + } + + public void test392() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test392"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + var0.setName(""); + int var3 = var0.getX(); + SpaceWar.SpacePanel var4 = new SpaceWar.SpacePanel(); + float var5 = var4.getAlignmentX(); + var4.setVisible(false); + var4.nextFocus(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.setVisible(false); + SpaceWar.SpacePanel var13 = new SpaceWar.SpacePanel(); + java.awt.Color var14 = var13.getBackground(); + var9.setForeground(var14); + var4.setBackground(var14); + var0.setBackground(var14); + boolean var18 = var0.isFocusTraversable(); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + var19.setName(""); + int var22 = var19.getX(); + SpaceWar.SpacePanel var23 = new SpaceWar.SpacePanel(); + float var24 = var23.getAlignmentX(); + var23.setVisible(false); + var23.nextFocus(); + SpaceWar.SpacePanel var28 = new SpaceWar.SpacePanel(); + float var29 = var28.getAlignmentX(); + var28.setVisible(false); + SpaceWar.SpacePanel var32 = new SpaceWar.SpacePanel(); + java.awt.Color var33 = var32.getBackground(); + var28.setForeground(var33); + var23.setBackground(var33); + var19.setBackground(var33); + var0.setBackground(var33); + SpaceWar.SpacePanel var38 = new SpaceWar.SpacePanel(); + float var39 = var38.getAlignmentX(); + var38.setVisible(false); + var38.nextFocus(); + var38.updateUI(); + var38.enableInputMethods(true); + java.awt.Point var47 = var38.getMousePosition(false); + SpaceWar.SpacePanel var48 = new SpaceWar.SpacePanel(); + float var49 = var48.getAlignmentX(); + var48.setVisible(false); + boolean var52 = var48.isDoubleBuffered(); + var48.list(); + SpaceWar.SpacePanel var54 = new SpaceWar.SpacePanel(); + float var55 = var54.getAlignmentX(); + var54.setVisible(false); + boolean var58 = var54.isDoubleBuffered(); + java.awt.dnd.DropTarget var59 = var54.getDropTarget(); + var54.show(false); + java.awt.Rectangle var62 = var54.getVisibleRect(); + java.awt.Rectangle var63 = var48.getBounds(var62); + var38.scrollRectToVisible(var62); + var0.paintImmediately(var62); + java.awt.event.HierarchyBoundsListener[] var66 = var0.getHierarchyBoundsListeners(); + boolean var67 = var0.requestFocusInWindow(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var22 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var24 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var29 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var33); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var39 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNull(var47); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var49 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var52 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var55 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var58 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var59); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var62); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var63); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var66); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var67 == false); + + } + + public void test393() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test393"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + var0.show(false); + boolean var8 = var0.isPaintingForPrint(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var15 = var9.getMouseListeners(); + int var16 = var9.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var17 = var9.getInputMethodRequests(); + var0.addKeyListener((java.awt.event.KeyListener)var9); + var9.repaint(); + java.awt.Component var22 = var9.findComponentAt(10, (-1)); + var9.transferFocusDownCycle(); + java.awt.Graphics var24 = var9.getGraphics(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertNull(var24); + + } + + public void test394() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test394"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + var0.setRequestFocusEnabled(false); + var0.reshape(100, 0, 100, 0); + var0.requestFocus(); + SpaceWar.SpacePanel var11 = new SpaceWar.SpacePanel(); + float var12 = var11.getAlignmentX(); + var11.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var17 = var11.getUI(); + java.awt.im.InputMethodRequests var18 = var11.getInputMethodRequests(); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + float var20 = var19.getAlignmentX(); + var19.setVisible(false); + var19.nextFocus(); + var19.updateUI(); + var19.enableInputMethods(true); + var19.setSize((-1), 1); + SpaceWar.SpacePanel var30 = new SpaceWar.SpacePanel(); + var30.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var11.add((java.awt.Component)var19, (java.lang.Object)"SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + SpaceWar.SpacePanel var36 = new SpaceWar.SpacePanel(); + var36.setName(""); + java.awt.ComponentOrientation var39 = var36.getComponentOrientation(); + var11.applyComponentOrientation(var39); + var0.setComponentOrientation(var39); + java.util.Locale var42 = var0.getLocale(); + SpaceWar.SpacePanel var43 = new SpaceWar.SpacePanel(); + float var44 = var43.getAlignmentX(); + var43.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var49 = var43.getUI(); + java.awt.im.InputMethodRequests var50 = var43.getInputMethodRequests(); + SpaceWar.SpacePanel var51 = new SpaceWar.SpacePanel(); + float var52 = var51.getAlignmentX(); + var51.setVisible(false); + var51.nextFocus(); + var51.updateUI(); + var51.enableInputMethods(true); + var51.setSize((-1), 1); + SpaceWar.SpacePanel var62 = new SpaceWar.SpacePanel(); + var62.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var43.add((java.awt.Component)var51, (java.lang.Object)"SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + java.awt.ComponentOrientation var68 = var51.getComponentOrientation(); + java.beans.VetoableChangeListener[] var69 = var51.getVetoableChangeListeners(); + int var70 = var51.getHeight(); + var51.enable(true); + java.awt.Component var73 = var51.getNextFocusableComponent(); + java.awt.Point var74 = var51.getMousePosition(); + java.awt.event.InputMethodListener[] var75 = var51.getInputMethodListeners(); + java.awt.Component var76 = var0.add((java.awt.Component)var51); + boolean var77 = var51.isPreferredSizeSet(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var39); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var42); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var44 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var49); + + // Regression assertion (captures the current behavior of the code) + assertNull(var50); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var52 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var68); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var69); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var70 == 1); + + // Regression assertion (captures the current behavior of the code) + assertNull(var73); + + // Regression assertion (captures the current behavior of the code) + assertNull(var74); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var75); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var76); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var77 == true); + + } + + public void test395() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test395"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + java.awt.Dimension var4 = var0.getPreferredSize(); + java.awt.Toolkit var5 = var0.getToolkit(); + boolean var6 = var0.isFocusable(); + javax.swing.KeyStroke[] var7 = var0.getRegisteredKeyStrokes(); + java.awt.Component var10 = var0.getComponentAt(100, 100); + java.lang.Object var11 = var0.getTreeLock(); + var0.setFocusTraversalKeysEnabled(true); + float var14 = var0.getAlignmentX(); + javax.accessibility.AccessibleContext var15 = var0.getAccessibleContext(); + var0.firePropertyChange("", (-1), 99); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var4); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + } + + public void test396() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test396"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.updateUI(); + var0.enableInputMethods(true); + var0.setSize((-1), 1); + boolean var13 = var0.contains(1, 1); + javax.swing.TransferHandler var14 = var0.getTransferHandler(); + SpaceWar.SpacePanel var15 = new SpaceWar.SpacePanel(); + float var16 = var15.getAlignmentX(); + var15.setVisible(false); + boolean var19 = var15.isDoubleBuffered(); + var15.enable(false); + java.lang.Object var22 = var0.getClientProperty((java.lang.Object)false); + SpaceWar.SpacePanel var23 = new SpaceWar.SpacePanel(); + float var24 = var23.getAlignmentX(); + var23.setVisible(false); + SpaceWar.SpacePanel var27 = new SpaceWar.SpacePanel(); + java.awt.Color var28 = var27.getBackground(); + var23.setForeground(var28); + SpaceWar.SpacePanel var30 = new SpaceWar.SpacePanel(); + float var31 = var30.getAlignmentX(); + var30.setVisible(false); + boolean var34 = var30.isDoubleBuffered(); + java.awt.dnd.DropTarget var35 = var30.getDropTarget(); + var30.show(false); + java.awt.Rectangle var38 = var30.getVisibleRect(); + var23.repaint(var38); + java.awt.Component.BaselineResizeBehavior var40 = var23.getBaselineResizeBehavior(); + SpaceWar.SpacePanel var41 = new SpaceWar.SpacePanel(); + float var42 = var41.getAlignmentX(); + var41.setVisible(false); + var41.nextFocus(); + var41.repaint(1L); + SpaceWar.SpacePanel var48 = new SpaceWar.SpacePanel(); + float var49 = var48.getAlignmentX(); + var48.setVisible(false); + boolean var52 = var48.isDoubleBuffered(); + var48.list(); + SpaceWar.SpacePanel var54 = new SpaceWar.SpacePanel(); + float var55 = var54.getAlignmentX(); + var54.setVisible(false); + boolean var58 = var54.isDoubleBuffered(); + java.awt.dnd.DropTarget var59 = var54.getDropTarget(); + var54.show(false); + java.awt.Rectangle var62 = var54.getVisibleRect(); + java.awt.Rectangle var63 = var48.getBounds(var62); + var41.setBounds(var63); + var23.paintImmediately(var63); + SpaceWar.SpacePanel var66 = new SpaceWar.SpacePanel(); + float var67 = var66.getAlignmentX(); + var66.setVisible(false); + boolean var70 = var66.isDoubleBuffered(); + java.awt.dnd.DropTarget var71 = var66.getDropTarget(); + java.awt.Point var72 = var66.getMousePosition(); + boolean var73 = var66.getAutoscrolls(); + var0.add((java.awt.Component)var23, (java.lang.Object)var66); + java.awt.Color var75 = var23.getBackground(); + boolean var77 = var23.requestFocus(false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var24 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var28); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var31 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var34 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var35); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var38); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var40); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var42 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var49 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var52 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var55 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var58 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var59); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var62); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var63); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var67 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var70 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var71); + + // Regression assertion (captures the current behavior of the code) + assertNull(var72); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var73 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var75); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var77 == false); + + } + + public void test397() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test397"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + var0.setRequestFocusEnabled(false); + var0.reshape(100, 0, 100, 0); + javax.swing.event.AncestorListener[] var10 = var0.getAncestorListeners(); + boolean var13 = var0.inside(24, 2); + int var14 = var0.getComponentCount(); + SpaceWar.SpacePanel var15 = new SpaceWar.SpacePanel(); + java.awt.Color var16 = var15.getBackground(); + var15.repaint(); + java.awt.im.InputMethodRequests var18 = var15.getInputMethodRequests(); + var15.setDoubleBuffered(true); + var15.show(false); + var15.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", (-1), 24); + boolean var27 = var15.getAutoscrolls(); + java.awt.Graphics var28 = var15.getGraphics(); + var15.disable(); + java.awt.ComponentOrientation var30 = var15.getComponentOrientation(); + var0.applyComponentOrientation(var30); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var28); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var30); + + } + + public void test398() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test398"); + + + SpaceWar.Enemy var2 = new SpaceWar.Enemy(0, 24); + double var3 = var2.getY(); + int var4 = var2.getType(); + double var5 = var2.getY(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == 0.0d); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == 0.0d); + + } + + public void test399() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test399"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + boolean var4 = var0.inside(0, (-1)); + var0.transferFocusUpCycle(); + java.awt.Toolkit var6 = var0.getToolkit(); + var0.firePropertyChange("SpaceWar.SpacePanel[,10,10,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", 241.4584513263457d, 518.0151860204259d); + java.awt.Component[] var11 = var0.getComponents(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + } + + public void test400() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test400"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + java.awt.Dimension var4 = var0.getPreferredSize(); + java.awt.Toolkit var5 = var0.getToolkit(); + boolean var6 = var0.isFocusable(); + javax.swing.KeyStroke[] var7 = var0.getRegisteredKeyStrokes(); + java.awt.Component var10 = var0.getComponentAt(100, 100); + java.lang.Object var11 = var0.getTreeLock(); + boolean var14 = var0.inside(400, 0); + java.awt.event.MouseWheelListener[] var15 = var0.getMouseWheelListeners(); + var0.requestFocus(); + java.awt.Toolkit var17 = var0.getToolkit(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var4); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var17); + + } + + public void test401() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test401"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + SpaceWar.SpacePanel var4 = new SpaceWar.SpacePanel(); + java.awt.Color var5 = var4.getBackground(); + var0.setForeground(var5); + SpaceWar.SpacePanel var7 = new SpaceWar.SpacePanel(); + float var8 = var7.getAlignmentX(); + var7.setVisible(false); + boolean var11 = var7.isDoubleBuffered(); + java.awt.dnd.DropTarget var12 = var7.getDropTarget(); + var7.show(false); + java.awt.Rectangle var15 = var7.getVisibleRect(); + var0.repaint(var15); + java.awt.FocusTraversalPolicy var17 = var0.getFocusTraversalPolicy(); + java.awt.im.InputMethodRequests var18 = var0.getInputMethodRequests(); + var0.layout(); + java.awt.Point var20 = var0.getMousePosition(); + java.awt.Graphics var21 = var0.getGraphics(); + SpaceWar.SpacePanel var22 = new SpaceWar.SpacePanel(); + float var23 = var22.getAlignmentX(); + var22.setVisible(false); + var22.setInheritsPopupMenu(false); + var22.setFocusTraversalPolicyProvider(true); + SpaceWar.SpacePanel var30 = new SpaceWar.SpacePanel(); + float var31 = var30.getAlignmentX(); + var30.setVisible(false); + boolean var34 = var30.isDoubleBuffered(); + var30.list(); + SpaceWar.SpacePanel var36 = new SpaceWar.SpacePanel(); + float var37 = var36.getAlignmentX(); + var36.setVisible(false); + boolean var40 = var36.isDoubleBuffered(); + java.awt.dnd.DropTarget var41 = var36.getDropTarget(); + var36.show(false); + java.awt.Rectangle var44 = var36.getVisibleRect(); + java.awt.Rectangle var45 = var30.getBounds(var44); + javax.swing.JToolTip var46 = var30.createToolTip(); + var22.removeKeyListener((java.awt.event.KeyListener)var30); + var0.setComponentZOrder((java.awt.Component)var22, 0); + var0.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", 1.0f, 0.5f); + javax.swing.JPopupMenu var54 = var0.getComponentPopupMenu(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertNull(var21); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var31 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var34 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var40 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var41); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var44); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var45); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var46); + + // Regression assertion (captures the current behavior of the code) + assertNull(var54); + + } + + public void test402() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test402"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + SpaceWar.SpacePanel var4 = new SpaceWar.SpacePanel(); + java.awt.Color var5 = var4.getBackground(); + var0.setForeground(var5); + SpaceWar.SpacePanel var7 = new SpaceWar.SpacePanel(); + float var8 = var7.getAlignmentX(); + var7.setVisible(false); + boolean var11 = var7.isDoubleBuffered(); + java.awt.dnd.DropTarget var12 = var7.getDropTarget(); + var7.show(false); + java.awt.Rectangle var15 = var7.getVisibleRect(); + var0.repaint(var15); + java.awt.FocusTraversalPolicy var17 = var0.getFocusTraversalPolicy(); + var0.resetKeyboardActions(); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + float var20 = var19.getAlignmentX(); + var19.setVisible(false); + boolean var23 = var19.isDoubleBuffered(); + java.awt.dnd.DropTarget var24 = var19.getDropTarget(); + var19.show(false); + java.awt.Rectangle var27 = var19.getVisibleRect(); + var0.computeVisibleRect(var27); + javax.swing.ActionMap var29 = var0.getActionMap(); + javax.swing.KeyStroke[] var30 = var0.getRegisteredKeyStrokes(); + SpaceWar.SpacePanel var31 = new SpaceWar.SpacePanel(); + float var32 = var31.getAlignmentX(); + var31.setVisible(false); + var31.setInheritsPopupMenu(false); + var31.setFocusTraversalPolicyProvider(true); + SpaceWar.SpacePanel var39 = new SpaceWar.SpacePanel(); + float var40 = var39.getAlignmentX(); + var39.setVisible(false); + boolean var43 = var39.isDoubleBuffered(); + var39.list(); + SpaceWar.SpacePanel var45 = new SpaceWar.SpacePanel(); + float var46 = var45.getAlignmentX(); + var45.setVisible(false); + boolean var49 = var45.isDoubleBuffered(); + java.awt.dnd.DropTarget var50 = var45.getDropTarget(); + var45.show(false); + java.awt.Rectangle var53 = var45.getVisibleRect(); + java.awt.Rectangle var54 = var39.getBounds(var53); + javax.swing.JToolTip var55 = var39.createToolTip(); + var31.removeKeyListener((java.awt.event.KeyListener)var39); + javax.swing.TransferHandler var57 = var31.getTransferHandler(); + var31.transferFocus(); + SpaceWar.SpacePanel var59 = new SpaceWar.SpacePanel(); + float var60 = var59.getAlignmentX(); + SpaceWar.SpacePanel var61 = new SpaceWar.SpacePanel(); + float var62 = var61.getAlignmentX(); + var61.setVisible(false); + java.awt.Dimension var65 = var61.getPreferredSize(); + boolean var66 = var61.getVerifyInputWhenFocusTarget(); + java.awt.Component var69 = var61.findComponentAt(10, 1); + var59.addKeyListener((java.awt.event.KeyListener)var61); + java.awt.Dimension var71 = var61.getMinimumSize(); + SpaceWar.SpacePanel var72 = new SpaceWar.SpacePanel(); + java.awt.Color var73 = var72.getBackground(); + var72.repaint(); + var72.setRequestFocusEnabled(false); + var72.reshape(100, 0, 100, 0); + var72.requestFocus(); + java.awt.Rectangle var83 = var72.getVisibleRect(); + var61.setBounds(var83); + var31.scrollRectToVisible(var83); + var31.setLocation(2, 499); + java.awt.Dimension var89 = var31.getPreferredSize(); + var0.setPreferredSize(var89); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var27); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var29); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var30); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var32 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var40 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var43 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var46 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var49 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var50); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var53); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var54); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var55); + + // Regression assertion (captures the current behavior of the code) + assertNull(var57); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var60 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var62 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var65); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var66 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var69); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var71); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var73); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var83); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var89); + + } + + public void test403() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test403"); + + + SpaceWar.PowerUp var3 = new SpaceWar.PowerUp(100, (-1.0d), 0.0d); + double var4 = var3.getR(); + int var5 = var3.getType(); + double var6 = var3.getX(); + double var7 = var3.getX(); + boolean var8 = var3.update(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0.0d); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == 100); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == (-1.0d)); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == (-1.0d)); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + } + + public void test404() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test404"); + + + SpaceWar.Enemy var2 = new SpaceWar.Enemy(0, 100); + int var3 = var2.getR(); + int var4 = var2.getR(); + double var5 = var2.getY(); + int var6 = var2.getRank(); + double var7 = var2.getY(); + int var8 = var2.getRank(); + double var9 = var2.getY(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == 0.0d); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == 100); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.0d); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 100); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.0d); + + } + + public void test405() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test405"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + boolean var2 = var0.hasFocus(); + SpaceWar.SpacePanel var3 = new SpaceWar.SpacePanel(); + float var4 = var3.getAlignmentX(); + var3.setVisible(false); + var3.nextFocus(); + var3.reshape((-1), 1, (-1), 10); + var3.disable(); + java.awt.LayoutManager var14 = var3.getLayout(); + var3.setVisible(false); + var0.remove((java.awt.Component)var3); + var3.repaint(); + var3.firePropertyChange("SpaceWar.SpacePanel[,-1,1,-1x10,invalid,hidden,disabled,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", (-1L), 0L); + java.awt.Container var23 = var3.getFocusCycleRootAncestor(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var2 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertNull(var23); + + } + + public void test406() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test406"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + java.awt.im.InputMethodRequests var3 = var0.getInputMethodRequests(); + var0.setDoubleBuffered(true); + var0.show(false); + var0.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", (-1), 24); + java.awt.Point var12 = var0.location(); + java.awt.Dimension var13 = var0.getMinimumSize(); + java.awt.Rectangle var14 = var0.bounds(); + var0.move(498, 24); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + } + + public void test407() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test407"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + var0.setRequestFocusEnabled(false); + var0.reshape(100, 0, 100, 0); + var0.requestFocus(); + var0.firePropertyChange("hi!", '4', ' '); + java.awt.Point var15 = var0.getLocation(); + java.awt.Dimension var16 = var0.size(); + java.awt.Image var19 = var0.createImage((-1), (-1)); + java.awt.image.VolatileImage var22 = var0.createVolatileImage(3, 2); + SpaceWar.SpacePanel var23 = new SpaceWar.SpacePanel(); + float var24 = var23.getAlignmentX(); + var23.setVisible(false); + boolean var27 = var23.isDoubleBuffered(); + java.awt.dnd.DropTarget var28 = var23.getDropTarget(); + var23.show(false); + java.awt.Rectangle var31 = var23.getVisibleRect(); + boolean var32 = var23.isFocusTraversalPolicySet(); + SpaceWar.SpacePanel var33 = new SpaceWar.SpacePanel(); + float var34 = var33.getAlignmentX(); + var33.setVisible(false); + boolean var37 = var33.isDoubleBuffered(); + var33.enable(false); + boolean var40 = var33.getFocusTraversalKeysEnabled(); + SpaceWar.SpacePanel var41 = new SpaceWar.SpacePanel(); + float var42 = var41.getAlignmentX(); + var41.setVisible(false); + java.awt.Dimension var45 = var41.getPreferredSize(); + java.awt.Toolkit var46 = var41.getToolkit(); + boolean var47 = var41.isFocusable(); + javax.swing.KeyStroke[] var48 = var41.getRegisteredKeyStrokes(); + SpaceWar.SpacePanel var49 = new SpaceWar.SpacePanel(); + float var50 = var49.getAlignmentX(); + SpaceWar.SpacePanel var51 = new SpaceWar.SpacePanel(); + float var52 = var51.getAlignmentX(); + var51.setVisible(false); + java.awt.Dimension var55 = var51.getPreferredSize(); + boolean var56 = var51.getVerifyInputWhenFocusTarget(); + java.awt.Component var59 = var51.findComponentAt(10, 1); + var49.addKeyListener((java.awt.event.KeyListener)var51); + var51.repaint(100, (-1), (-1), 1); + boolean var66 = var41.isAncestorOf((java.awt.Component)var51); + var33.addKeyListener((java.awt.event.KeyListener)var51); + java.util.Locale var68 = var51.getLocale(); + var23.setLocale(var68); + javax.swing.JComponent.setDefaultLocale(var68); + var0.setLocale(var68); + var0.resetKeyboardActions(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var24 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var28); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var31); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var32 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var34 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var40 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var42 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var45); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var46); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var47 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var48); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var50 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var52 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var55); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var56 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var59); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var66 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var68); + + } + + public void test408() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test408"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + SpaceWar.SpacePanel var4 = new SpaceWar.SpacePanel(); + java.awt.Color var5 = var4.getBackground(); + var0.setForeground(var5); + SpaceWar.SpacePanel var7 = new SpaceWar.SpacePanel(); + float var8 = var7.getAlignmentX(); + var7.setVisible(false); + boolean var11 = var7.isDoubleBuffered(); + java.awt.dnd.DropTarget var12 = var7.getDropTarget(); + var7.show(false); + java.awt.Rectangle var15 = var7.getVisibleRect(); + var0.repaint(var15); + java.awt.FocusTraversalPolicy var17 = var0.getFocusTraversalPolicy(); + javax.swing.TransferHandler var18 = var0.getTransferHandler(); + javax.swing.JToolTip var19 = var0.createToolTip(); + boolean var20 = var19.isValidateRoot(); + var19.disable(); + SpaceWar.SpacePanel var22 = new SpaceWar.SpacePanel(); + float var23 = var22.getAlignmentX(); + var22.setVisible(false); + var22.setInheritsPopupMenu(false); + var22.setFocusTraversalPolicyProvider(true); + SpaceWar.SpacePanel var30 = new SpaceWar.SpacePanel(); + float var31 = var30.getAlignmentX(); + var30.setVisible(false); + boolean var34 = var30.isDoubleBuffered(); + var30.list(); + SpaceWar.SpacePanel var36 = new SpaceWar.SpacePanel(); + float var37 = var36.getAlignmentX(); + var36.setVisible(false); + boolean var40 = var36.isDoubleBuffered(); + java.awt.dnd.DropTarget var41 = var36.getDropTarget(); + var36.show(false); + java.awt.Rectangle var44 = var36.getVisibleRect(); + java.awt.Rectangle var45 = var30.getBounds(var44); + javax.swing.JToolTip var46 = var30.createToolTip(); + var22.removeKeyListener((java.awt.event.KeyListener)var30); + java.awt.Rectangle var48 = var22.getVisibleRect(); + SpaceWar.SpacePanel var49 = new SpaceWar.SpacePanel(); + float var50 = var49.getAlignmentX(); + var49.setVisible(false); + var49.setInheritsPopupMenu(false); + var49.setFocusTraversalPolicyProvider(true); + SpaceWar.SpacePanel var57 = new SpaceWar.SpacePanel(); + java.awt.Color var58 = var57.getBackground(); + var57.repaint(); + java.awt.im.InputMethodRequests var60 = var57.getInputMethodRequests(); + java.awt.GraphicsConfiguration var61 = var57.getGraphicsConfiguration(); + java.awt.Component var62 = var49.add((java.awt.Component)var57); + java.awt.Rectangle var63 = var49.getBounds(); + java.awt.Rectangle var64 = var22.getBounds(var63); + var19.computeVisibleRect(var63); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var31 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var34 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var40 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var41); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var44); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var45); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var46); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var48); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var50 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var58); + + // Regression assertion (captures the current behavior of the code) + assertNull(var60); + + // Regression assertion (captures the current behavior of the code) + assertNull(var61); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var62); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var63); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var64); + + } + + public void test409() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test409"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + java.awt.im.InputMethodRequests var3 = var0.getInputMethodRequests(); + int var4 = var0.countComponents(); + java.awt.event.ComponentListener[] var5 = var0.getComponentListeners(); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + float var7 = var6.getAlignmentX(); + var6.removeNotify(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.setVisible(false); + boolean var13 = var9.isDoubleBuffered(); + var9.list(); + float var15 = var9.getAlignmentY(); + java.awt.Insets var16 = var9.getInsets(); + java.awt.Insets var17 = var6.getInsets(var16); + java.awt.Insets var18 = var0.getInsets(var17); + java.awt.Dimension var19 = var0.preferredSize(); + var0.enableInputMethods(true); + SpaceWar.SpacePanel var22 = new SpaceWar.SpacePanel(); + float var23 = var22.getAlignmentX(); + var22.setVisible(false); + java.awt.Dimension var26 = var22.getPreferredSize(); + boolean var27 = var22.getVerifyInputWhenFocusTarget(); + java.awt.Component var30 = var22.findComponentAt(10, 1); + boolean var31 = var22.requestDefaultFocus(); + var22.setVerifyInputWhenFocusTarget(true); + SpaceWar.SpacePanel var34 = new SpaceWar.SpacePanel(); + float var35 = var34.getAlignmentX(); + var34.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var40 = new SpaceWar.SpacePanel(); + float var41 = var40.getAlignmentX(); + var40.setVisible(false); + java.awt.Dimension var44 = var40.getPreferredSize(); + var34.setMaximumSize(var44); + boolean var46 = var34.getVerifyInputWhenFocusTarget(); + boolean var47 = var34.isFontSet(); + SpaceWar.SpacePanel var48 = new SpaceWar.SpacePanel(); + float var49 = var48.getAlignmentX(); + SpaceWar.SpacePanel var50 = new SpaceWar.SpacePanel(); + float var51 = var50.getAlignmentX(); + var50.setVisible(false); + java.awt.Dimension var54 = var50.getPreferredSize(); + boolean var55 = var50.getVerifyInputWhenFocusTarget(); + java.awt.Component var58 = var50.findComponentAt(10, 1); + var48.addKeyListener((java.awt.event.KeyListener)var50); + var50.repaint(100, (-1), (-1), 1); + java.awt.image.ColorModel var65 = var50.getColorModel(); + boolean var66 = var50.isPreferredSizeSet(); + java.awt.peer.ComponentPeer var67 = var50.getPeer(); + java.awt.Dimension var68 = var50.getMinimumSize(); + var34.setMaximumSize(var68); + boolean var70 = var22.isAncestorOf((java.awt.Component)var34); + SpaceWar.SpacePanel var71 = new SpaceWar.SpacePanel(); + java.awt.Color var72 = var71.getBackground(); + var71.repaint(); + var71.setRequestFocusEnabled(false); + var71.reshape(100, 0, 100, 0); + var71.requestFocus(); + var71.firePropertyChange("hi!", '4', ' '); + java.awt.Point var86 = var71.getLocation(); + java.awt.Dimension var87 = var71.size(); + var71.repaint(1L, 25, 3, 1, 0); + java.awt.Font var94 = var71.getFont(); + var34.setFont(var94); + var0.setFont(var94); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var30); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var31 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var35 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var41 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var44); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var46 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var47 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var49 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var51 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var54); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var55 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var58); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var65); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var66 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var67); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var68); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var70 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var72); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var86); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var87); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var94); + + } + + public void test410() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test410"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var1 = new SpaceWar.SpacePanel(); + java.awt.Color var2 = var1.getBackground(); + SpaceWar.SpacePanel var3 = new SpaceWar.SpacePanel(); + float var4 = var3.getAlignmentX(); + var3.setVisible(false); + var3.nextFocus(); + var3.updateUI(); + var3.enableInputMethods(true); + var0.add((java.awt.Component)var1, (java.lang.Object)true); + java.awt.Image var14 = var1.createImage(1, (-1)); + java.awt.event.MouseListener[] var15 = var1.getMouseListeners(); + java.awt.Color var16 = var1.getBackground(); + boolean var17 = var1.getIgnoreRepaint(); + var1.enable(); + var1.show(false); + SpaceWar.SpacePanel var21 = new SpaceWar.SpacePanel(); + float var22 = var21.getAlignmentX(); + var21.setVisible(false); + boolean var25 = var21.isDoubleBuffered(); + java.awt.dnd.DropTarget var26 = var21.getDropTarget(); + var21.show(false); + boolean var29 = var21.isPaintingForPrint(); + SpaceWar.SpacePanel var30 = new SpaceWar.SpacePanel(); + float var31 = var30.getAlignmentX(); + var30.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var36 = var30.getMouseListeners(); + int var37 = var30.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var38 = var30.getInputMethodRequests(); + var21.addKeyListener((java.awt.event.KeyListener)var30); + SpaceWar.SpacePanel var40 = new SpaceWar.SpacePanel(); + float var41 = var40.getAlignmentX(); + var40.setVisible(false); + boolean var44 = var40.isDoubleBuffered(); + var40.list(); + float var46 = var40.getAlignmentY(); + boolean var47 = var30.isFocusCycleRoot((java.awt.Container)var40); + var40.firePropertyChange("", 1L, 1L); + var40.setVerifyInputWhenFocusTarget(true); + java.awt.Cursor var54 = var40.getCursor(); + var40.resetKeyboardActions(); + var40.grabFocus(); + boolean var57 = var40.isForegroundSet(); + boolean var59 = var40.requestFocus(false); + var1.setNextFocusableComponent((java.awt.Component)var40); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var2); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var22 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var29 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var31 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var36); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var38); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var41 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var44 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var46 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var47 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var54); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var57 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var59 == false); + + } + + public void test411() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test411"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + var0.setRequestFocusEnabled(false); + var0.reshape(100, 0, 100, 0); + var0.requestFocus(); + java.awt.Rectangle var11 = var0.getVisibleRect(); + java.awt.Rectangle var12 = var0.getBounds(); + java.awt.Container var13 = var0.getFocusCycleRootAncestor(); + java.awt.ComponentOrientation var14 = var0.getComponentOrientation(); + java.awt.event.FocusListener[] var15 = var0.getFocusListeners(); + javax.swing.TransferHandler var16 = var0.getTransferHandler(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNull(var16); + + } + + public void test412() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test412"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var6 = var0.getUI(); + java.awt.im.InputMethodRequests var7 = var0.getInputMethodRequests(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + var8.nextFocus(); + var8.updateUI(); + var8.enableInputMethods(true); + var8.setSize((-1), 1); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + var19.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var0.add((java.awt.Component)var8, (java.lang.Object)"SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + boolean var25 = var0.isCursorSet(); + javax.swing.KeyStroke[] var26 = var0.getRegisteredKeyStrokes(); + java.awt.Image var29 = var0.createImage(25, 2); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertNull(var29); + + } + + public void test413() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test413"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + boolean var6 = var0.isFocusCycleRoot(); + SpaceWar.SpacePanel var7 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + java.awt.Color var9 = var8.getBackground(); + SpaceWar.SpacePanel var10 = new SpaceWar.SpacePanel(); + float var11 = var10.getAlignmentX(); + var10.setVisible(false); + var10.nextFocus(); + var10.updateUI(); + var10.enableInputMethods(true); + var7.add((java.awt.Component)var8, (java.lang.Object)true); + java.awt.Dimension var19 = var8.getPreferredSize(); + var0.setSize(var19); + SpaceWar.SpacePanel var21 = new SpaceWar.SpacePanel(); + java.awt.Color var22 = var21.getBackground(); + var0.setForeground(var22); + boolean var24 = var0.isCursorSet(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var9); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var24 == false); + + } + + public void test414() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test414"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + var0.show(false); + boolean var8 = var0.isPaintingForPrint(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var15 = var9.getMouseListeners(); + int var16 = var9.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var17 = var9.getInputMethodRequests(); + var0.addKeyListener((java.awt.event.KeyListener)var9); + boolean var19 = var0.isDisplayable(); + var0.doLayout(); + boolean var21 = javax.swing.JComponent.isLightweightComponent((java.awt.Component)var0); + SpaceWar.SpacePanel var22 = new SpaceWar.SpacePanel(); + java.awt.Color var23 = var22.getBackground(); + var22.repaint(); + java.awt.im.InputMethodRequests var25 = var22.getInputMethodRequests(); + int var26 = var22.countComponents(); + java.awt.event.ComponentListener[] var27 = var22.getComponentListeners(); + SpaceWar.SpacePanel var28 = new SpaceWar.SpacePanel(); + float var29 = var28.getAlignmentX(); + var28.removeNotify(); + SpaceWar.SpacePanel var31 = new SpaceWar.SpacePanel(); + float var32 = var31.getAlignmentX(); + var31.setVisible(false); + boolean var35 = var31.isDoubleBuffered(); + var31.list(); + float var37 = var31.getAlignmentY(); + java.awt.Insets var38 = var31.getInsets(); + java.awt.Insets var39 = var28.getInsets(var38); + java.awt.Insets var40 = var22.getInsets(var39); + var22.removeAll(); + java.awt.Point var42 = var22.location(); + java.awt.Component var43 = var0.findComponentAt(var42); + javax.swing.ActionMap var44 = var0.getActionMap(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var23); + + // Regression assertion (captures the current behavior of the code) + assertNull(var25); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var27); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var29 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var32 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var35 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var38); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var39); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var40); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var42); + + // Regression assertion (captures the current behavior of the code) + assertNull(var43); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var44); + + } + + public void test415() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test415"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + var0.setName(""); + java.awt.Graphics var3 = var0.getGraphics(); + SpaceWar.SpacePanel var4 = new SpaceWar.SpacePanel(); + float var5 = var4.getAlignmentX(); + var4.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var10 = new SpaceWar.SpacePanel(); + float var11 = var10.getAlignmentX(); + var10.setVisible(false); + java.awt.Dimension var14 = var10.getPreferredSize(); + var4.setMaximumSize(var14); + boolean var16 = var4.getVerifyInputWhenFocusTarget(); + int var17 = var4.getX(); + SpaceWar.SpacePanel var18 = new SpaceWar.SpacePanel(); + float var19 = var18.getAlignmentX(); + SpaceWar.SpacePanel var20 = new SpaceWar.SpacePanel(); + float var21 = var20.getAlignmentX(); + var20.setVisible(false); + java.awt.Dimension var24 = var20.getPreferredSize(); + boolean var25 = var20.getVerifyInputWhenFocusTarget(); + java.awt.Component var28 = var20.findComponentAt(10, 1); + var18.addKeyListener((java.awt.event.KeyListener)var20); + var20.repaint(100, (-1), (-1), 1); + SpaceWar.SpacePanel var35 = new SpaceWar.SpacePanel(); + java.awt.Color var36 = var35.getBackground(); + var35.repaint(); + java.awt.im.InputMethodRequests var38 = var35.getInputMethodRequests(); + java.awt.GraphicsConfiguration var39 = var35.getGraphicsConfiguration(); + var20.remove((java.awt.Component)var35); + java.awt.Font var41 = var35.getFont(); + var4.setFont(var41); + var0.setFont(var41); + boolean var44 = var0.isLightweight(); + boolean var45 = var0.isBackgroundSet(); + var0.reshape(0, 3, 100, 0); + SpaceWar.SpacePanel var51 = new SpaceWar.SpacePanel(); + var51.setName(""); + java.awt.Dimension var54 = var51.minimumSize(); + var0.setMinimumSize(var54); + boolean var56 = var0.isFocusable(); + + // Regression assertion (captures the current behavior of the code) + assertNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var28); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var36); + + // Regression assertion (captures the current behavior of the code) + assertNull(var38); + + // Regression assertion (captures the current behavior of the code) + assertNull(var39); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var41); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var44 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var45 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var54); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var56 == true); + + } + + public void test416() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test416"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + SpaceWar.SpacePanel var2 = new SpaceWar.SpacePanel(); + float var3 = var2.getAlignmentX(); + var2.setVisible(false); + java.awt.Dimension var6 = var2.getPreferredSize(); + boolean var7 = var2.getVerifyInputWhenFocusTarget(); + java.awt.Component var10 = var2.findComponentAt(10, 1); + var0.addKeyListener((java.awt.event.KeyListener)var2); + java.awt.Dimension var12 = var2.getMinimumSize(); + java.lang.String var13 = var2.getToolTipText(); + SpaceWar.SpacePanel var14 = new SpaceWar.SpacePanel(); + var14.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", 10.0d, 100.0d); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + float var20 = var19.getAlignmentX(); + var19.setVisible(false); + boolean var23 = var19.isDoubleBuffered(); + java.awt.dnd.DropTarget var24 = var19.getDropTarget(); + boolean var25 = var19.isFocusCycleRoot(); + var19.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", 100, 0); + SpaceWar.SpacePanel var30 = new SpaceWar.SpacePanel(); + java.awt.Color var31 = var30.getBackground(); + var30.repaint(); + var30.setRequestFocusEnabled(false); + var30.reshape(100, 0, 100, 0); + javax.swing.event.AncestorListener[] var40 = var30.getAncestorListeners(); + var30.grabFocus(); + boolean var42 = var19.isFocusCycleRoot((java.awt.Container)var30); + javax.swing.ActionMap var43 = var30.getActionMap(); + var14.setActionMap(var43); + var2.setActionMap(var43); + SpaceWar.SpacePanel var46 = new SpaceWar.SpacePanel(); + float var47 = var46.getAlignmentX(); + var46.setVisible(false); + boolean var50 = var46.isDoubleBuffered(); + var46.list(); + SpaceWar.SpacePanel var52 = new SpaceWar.SpacePanel(); + float var53 = var52.getAlignmentX(); + var52.setVisible(false); + boolean var56 = var52.isDoubleBuffered(); + java.awt.dnd.DropTarget var57 = var52.getDropTarget(); + var52.show(false); + java.awt.Rectangle var60 = var52.getVisibleRect(); + java.awt.Rectangle var61 = var46.getBounds(var60); + javax.swing.JToolTip var62 = var46.createToolTip(); + boolean var63 = var62.getInheritsPopupMenu(); + var62.layout(); + var62.invalidate(); + java.awt.Cursor var66 = var62.getCursor(); + var2.setCursor(var66); + SpaceWar.SpacePanel var68 = new SpaceWar.SpacePanel(); + float var69 = var68.getAlignmentX(); + var68.setVisible(false); + java.awt.Dimension var72 = var68.getPreferredSize(); + boolean var73 = var68.getVerifyInputWhenFocusTarget(); + java.awt.event.MouseWheelListener[] var74 = var68.getMouseWheelListeners(); + java.awt.Component.BaselineResizeBehavior var75 = var68.getBaselineResizeBehavior(); + javax.swing.InputMap var76 = var68.getInputMap(); + boolean var77 = var2.isFocusCycleRoot((java.awt.Container)var68); + boolean var80 = var2.contains(498, 99); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var31); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var40); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var42 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var43); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var47 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var50 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var53 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var56 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var57); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var60); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var61); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var62); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var63 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var66); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var69 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var72); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var73 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var74); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var75); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var76); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var77 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var80 == false); + + } + + public void test417() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test417"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + boolean var2 = var0.hasFocus(); + boolean var3 = var0.isPreferredSizeSet(); + var0.firePropertyChange("", (short)1, (short)0); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.firePropertyChange("", (-1), 1); + boolean var14 = var8.isFocusOwner(); + SpaceWar.SpacePanel var16 = new SpaceWar.SpacePanel(); + float var17 = var16.getAlignmentX(); + var16.setVisible(false); + java.awt.Dimension var20 = var16.getPreferredSize(); + java.awt.Toolkit var21 = var16.getToolkit(); + SpaceWar.SpacePanel var22 = new SpaceWar.SpacePanel(); + var22.setName(""); + int var25 = var22.getX(); + SpaceWar.SpacePanel var26 = new SpaceWar.SpacePanel(); + float var27 = var26.getAlignmentX(); + var26.setVisible(false); + var26.nextFocus(); + SpaceWar.SpacePanel var31 = new SpaceWar.SpacePanel(); + float var32 = var31.getAlignmentX(); + var31.setVisible(false); + SpaceWar.SpacePanel var35 = new SpaceWar.SpacePanel(); + java.awt.Color var36 = var35.getBackground(); + var31.setForeground(var36); + var26.setBackground(var36); + var22.setBackground(var36); + var16.setForeground(var36); + var8.putClientProperty((java.lang.Object)(byte)100, (java.lang.Object)var36); + boolean var42 = var8.isEnabled(); + java.awt.event.ComponentListener[] var43 = var8.getComponentListeners(); + java.awt.Dimension var44 = var8.getPreferredSize(); + var0.setSize(var44); + // The following exception was thrown during execution. + // This behavior will recorded for regression testing. + try { + boolean var47 = var0.areFocusTraversalKeysSet(500); + fail("Expected exception of type java.lang.IllegalArgumentException"); + } catch (java.lang.IllegalArgumentException e) { + // Expected exception. + } + + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var2 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var21); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var32 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var36); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var42 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var43); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var44); + + } + + public void test418() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test418"); + + + SpaceWar.Player var0 = new SpaceWar.Player(); + boolean var1 = var0.isRecovering(); + var0.loseLife(); + int var3 = var0.getR(); + var0.loseLife(); + int var5 = var0.getX(); + var0.setLife(2); + var0.setLife(0); + boolean var10 = var0.isDead(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == 25); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == 400); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == true); + + } + + public void test419() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test419"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var1 = new SpaceWar.SpacePanel(); + java.awt.Color var2 = var1.getBackground(); + SpaceWar.SpacePanel var3 = new SpaceWar.SpacePanel(); + float var4 = var3.getAlignmentX(); + var3.setVisible(false); + var3.nextFocus(); + var3.updateUI(); + var3.enableInputMethods(true); + var0.add((java.awt.Component)var1, (java.lang.Object)true); + boolean var12 = var0.isMinimumSizeSet(); + java.awt.event.HierarchyListener[] var13 = var0.getHierarchyListeners(); + int var14 = var0.getComponentCount(); + SpaceWar.SpacePanel var15 = new SpaceWar.SpacePanel(); + java.awt.Color var16 = var15.getBackground(); + var15.repaint(); + var15.setRequestFocusEnabled(false); + var15.removeAll(); + var0.setNextFocusableComponent((java.awt.Component)var15); + java.awt.event.KeyListener[] var22 = var15.getKeyListeners(); + var15.invalidate(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var2); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == 1); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var22); + + } + + public void test420() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test420"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.updateUI(); + var0.enableInputMethods(true); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + boolean var10 = var8.hasFocus(); + java.awt.Insets var11 = var8.getInsets(); + java.awt.Insets var12 = var0.getInsets(var11); + var0.enable(true); + boolean var15 = var0.getVerifyInputWhenFocusTarget(); + SpaceWar.SpacePanel var16 = new SpaceWar.SpacePanel(); + java.awt.Color var17 = var16.getBackground(); + boolean var20 = var16.inside(0, (-1)); + var16.transferFocusUpCycle(); + javax.swing.JToolTip var22 = var16.createToolTip(); + SpaceWar.SpacePanel var23 = new SpaceWar.SpacePanel(); + float var24 = var23.getAlignmentX(); + var23.setVisible(false); + boolean var27 = var23.isDoubleBuffered(); + java.awt.dnd.DropTarget var28 = var23.getDropTarget(); + var23.show(false); + boolean var31 = var23.isPaintingForPrint(); + SpaceWar.SpacePanel var32 = new SpaceWar.SpacePanel(); + float var33 = var32.getAlignmentX(); + var32.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var38 = var32.getMouseListeners(); + int var39 = var32.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var40 = var32.getInputMethodRequests(); + var23.addKeyListener((java.awt.event.KeyListener)var32); + SpaceWar.SpacePanel var42 = new SpaceWar.SpacePanel(); + float var43 = var42.getAlignmentX(); + var42.setVisible(false); + boolean var46 = var42.isDoubleBuffered(); + var42.list(); + float var48 = var42.getAlignmentY(); + boolean var49 = var32.isFocusCycleRoot((java.awt.Container)var42); + javax.swing.JPopupMenu var50 = var42.getComponentPopupMenu(); + var42.firePropertyChange("hi!", 3, 0); + boolean var55 = var42.isValidateRoot(); + java.awt.Rectangle var56 = var42.getVisibleRect(); + java.awt.Rectangle var57 = var16.getBounds(var56); + var0.scrollRectToVisible(var56); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var24 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var28); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var31 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var33 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var38); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var39 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var40); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var43 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var46 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var48 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var49 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var50); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var55 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var56); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var57); + + } + + public void test421() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test421"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.setInheritsPopupMenu(false); + boolean var6 = var0.isDoubleBuffered(); + var0.setAlignmentY(100.0f); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var15 = var9.getUI(); + java.awt.im.InputMethodRequests var16 = var9.getInputMethodRequests(); + SpaceWar.SpacePanel var17 = new SpaceWar.SpacePanel(); + float var18 = var17.getAlignmentX(); + var17.setVisible(false); + var17.nextFocus(); + var17.updateUI(); + var17.enableInputMethods(true); + var17.setSize((-1), 1); + SpaceWar.SpacePanel var28 = new SpaceWar.SpacePanel(); + var28.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var9.add((java.awt.Component)var17, (java.lang.Object)"SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + java.awt.event.KeyListener[] var34 = var9.getKeyListeners(); + var9.repaint(3, 1, 25, 0); + SpaceWar.SpacePanel var40 = new SpaceWar.SpacePanel(); + java.awt.Color var41 = var40.getBackground(); + boolean var44 = var40.inside(0, (-1)); + var40.transferFocusUpCycle(); + java.awt.Container var46 = var40.getParent(); + boolean var47 = var40.isMaximumSizeSet(); + SpaceWar.SpacePanel var48 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var49 = new SpaceWar.SpacePanel(); + java.awt.Color var50 = var49.getBackground(); + SpaceWar.SpacePanel var51 = new SpaceWar.SpacePanel(); + float var52 = var51.getAlignmentX(); + var51.setVisible(false); + var51.nextFocus(); + var51.updateUI(); + var51.enableInputMethods(true); + var48.add((java.awt.Component)var49, (java.lang.Object)true); + boolean var61 = var49.areFocusTraversalKeysSet(0); + SpaceWar.SpacePanel var62 = new SpaceWar.SpacePanel(); + float var63 = var62.getAlignmentX(); + var62.setVisible(false); + boolean var66 = var62.isDoubleBuffered(); + java.awt.dnd.DropTarget var67 = var62.getDropTarget(); + var62.show(false); + java.awt.Rectangle var70 = var62.getVisibleRect(); + var49.setBounds(var70); + var40.setBounds(var70); + java.awt.Rectangle var73 = var9.getBounds(var70); + var0.setBounds(var73); + boolean var76 = var0.requestFocus(false); + java.awt.Point var77 = var0.location(); + // The following exception was thrown during execution. + // This behavior will recorded for regression testing. + try { + var0.remove(25); + fail("Expected exception of type java.lang.ArrayIndexOutOfBoundsException"); + } catch (java.lang.ArrayIndexOutOfBoundsException e) { + // Expected exception. + } + + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var34); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var41); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var44 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var46); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var47 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var50); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var52 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var61 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var63 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var66 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var67); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var70); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var73); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var76 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var77); + + } + + public void test422() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test422"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + javax.swing.plaf.PanelUI var3 = var0.getUI(); + SpaceWar.SpacePanel var4 = new SpaceWar.SpacePanel(); + float var5 = var4.getAlignmentX(); + var4.setVisible(false); + boolean var8 = var4.isDoubleBuffered(); + java.awt.dnd.DropTarget var9 = var4.getDropTarget(); + var4.show(false); + boolean var12 = var4.isPaintingForPrint(); + SpaceWar.SpacePanel var13 = new SpaceWar.SpacePanel(); + float var14 = var13.getAlignmentX(); + var13.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var19 = var13.getMouseListeners(); + int var20 = var13.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var21 = var13.getInputMethodRequests(); + var4.addKeyListener((java.awt.event.KeyListener)var13); + SpaceWar.SpacePanel var23 = new SpaceWar.SpacePanel(); + float var24 = var23.getAlignmentX(); + var23.setVisible(false); + boolean var27 = var23.isDoubleBuffered(); + var23.list(); + float var29 = var23.getAlignmentY(); + boolean var30 = var13.isFocusCycleRoot((java.awt.Container)var23); + SpaceWar.SpacePanel var32 = new SpaceWar.SpacePanel(); + float var33 = var32.getAlignmentX(); + var32.setVisible(false); + var32.nextFocus(); + var32.updateUI(); + java.awt.Component var38 = var13.add("", (java.awt.Component)var32); + java.awt.ComponentOrientation var39 = var32.getComponentOrientation(); + boolean var40 = var32.isFocusable(); + var0.remove((java.awt.Component)var32); + java.awt.Insets var42 = var0.insets(); + var0.grabFocus(); + int var44 = var0.getComponentCount(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var9); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var21); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var24 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var29 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var30 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var33 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var38); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var39); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var40 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var42); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var44 == 0); + + } + + public void test423() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test423"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + var0.list(); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + float var7 = var6.getAlignmentX(); + var6.setVisible(false); + boolean var10 = var6.isDoubleBuffered(); + java.awt.dnd.DropTarget var11 = var6.getDropTarget(); + var6.show(false); + java.awt.Rectangle var14 = var6.getVisibleRect(); + java.awt.image.BufferedImage var16 = var6.loadImg("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + boolean var17 = var0.isAncestorOf((java.awt.Component)var6); + float var18 = var0.getAlignmentX(); + java.awt.image.VolatileImage var21 = var0.createVolatileImage(25, 1); + java.beans.PropertyChangeListener[] var23 = var0.getPropertyChangeListeners("PanelUI"); + boolean var24 = var0.isPaintingForPrint(); + SpaceWar.SpacePanel var25 = new SpaceWar.SpacePanel(); + float var26 = var25.getAlignmentX(); + boolean var27 = var25.hasFocus(); + java.awt.Insets var28 = var25.getInsets(); + boolean var29 = var25.isFocusTraversalPolicyProvider(); + var25.firePropertyChange("", (byte)10, (byte)1); + SpaceWar.SpacePanel var34 = new SpaceWar.SpacePanel(); + float var35 = var34.getAlignmentX(); + SpaceWar.SpacePanel var36 = new SpaceWar.SpacePanel(); + float var37 = var36.getAlignmentX(); + var36.setVisible(false); + java.awt.Dimension var40 = var36.getPreferredSize(); + boolean var41 = var36.getVerifyInputWhenFocusTarget(); + java.awt.Component var44 = var36.findComponentAt(10, 1); + var34.addKeyListener((java.awt.event.KeyListener)var36); + java.awt.Cursor var46 = var34.getCursor(); + var25.setCursor(var46); + var0.setCursor(var46); + var0.transferFocus(); + boolean var50 = var0.isFocusCycleRoot(); + var0.removeAll(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNull(var21); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var23); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var24 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var28); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var29 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var35 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var40); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var41 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var44); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var46); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var50 == false); + + } + + public void test424() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test424"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var6 = var0.getUI(); + java.awt.im.InputMethodRequests var7 = var0.getInputMethodRequests(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + var8.nextFocus(); + var8.updateUI(); + var8.enableInputMethods(true); + var8.setSize((-1), 1); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + var19.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var0.add((java.awt.Component)var8, (java.lang.Object)"SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + SpaceWar.SpacePanel var25 = new SpaceWar.SpacePanel(); + float var26 = var25.getAlignmentX(); + var25.setVisible(false); + var25.setInheritsPopupMenu(false); + boolean var31 = var25.isDoubleBuffered(); + boolean var32 = var25.isMinimumSizeSet(); + SpaceWar.SpacePanel var33 = new SpaceWar.SpacePanel(); + float var34 = var33.getAlignmentX(); + var33.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var39 = new SpaceWar.SpacePanel(); + float var40 = var39.getAlignmentX(); + var39.setVisible(false); + java.awt.Dimension var43 = var39.getPreferredSize(); + var33.setMaximumSize(var43); + boolean var45 = var33.getVerifyInputWhenFocusTarget(); + javax.accessibility.AccessibleContext var46 = var33.getAccessibleContext(); + boolean var47 = var33.isDoubleBuffered(); + java.awt.Rectangle var48 = var33.getVisibleRect(); + var25.setBounds(var48); + java.awt.Rectangle var50 = var0.getBounds(var48); + SpaceWar.SpacePanel var51 = new SpaceWar.SpacePanel(); + float var52 = var51.getAlignmentX(); + var51.setVisible(false); + boolean var55 = var51.isDoubleBuffered(); + java.awt.dnd.DropTarget var56 = var51.getDropTarget(); + var51.show(false); + boolean var59 = var51.isPaintingForPrint(); + SpaceWar.SpacePanel var60 = new SpaceWar.SpacePanel(); + float var61 = var60.getAlignmentX(); + var60.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var66 = var60.getMouseListeners(); + int var67 = var60.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var68 = var60.getInputMethodRequests(); + var51.addKeyListener((java.awt.event.KeyListener)var60); + SpaceWar.SpacePanel var70 = new SpaceWar.SpacePanel(); + float var71 = var70.getAlignmentX(); + var70.setVisible(false); + boolean var74 = var70.isDoubleBuffered(); + var70.list(); + float var76 = var70.getAlignmentY(); + boolean var77 = var60.isFocusCycleRoot((java.awt.Container)var70); + SpaceWar.SpacePanel var79 = new SpaceWar.SpacePanel(); + float var80 = var79.getAlignmentX(); + var79.setVisible(false); + var79.nextFocus(); + var79.updateUI(); + java.awt.Component var85 = var60.add("", (java.awt.Component)var79); + java.awt.ComponentOrientation var86 = var79.getComponentOrientation(); + var0.applyComponentOrientation(var86); + var0.repaint(100L); + var0.setFocusTraversalPolicyProvider(false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var31 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var32 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var34 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var40 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var43); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var45 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var46); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var47 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var48); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var50); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var52 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var55 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var56); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var59 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var61 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var66); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var67 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var68); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var71 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var74 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var76 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var77 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var80 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var85); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var86); + + } + + public void test425() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test425"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + var0.list(); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + float var7 = var6.getAlignmentX(); + var6.setVisible(false); + boolean var10 = var6.isDoubleBuffered(); + java.awt.dnd.DropTarget var11 = var6.getDropTarget(); + var6.show(false); + java.awt.Rectangle var14 = var6.getVisibleRect(); + java.awt.Rectangle var15 = var0.getBounds(var14); + javax.swing.JToolTip var16 = var0.createToolTip(); + var0.firePropertyChange("", false, false); + boolean var21 = var0.isFocusTraversalPolicySet(); + SpaceWar.SpacePanel var22 = new SpaceWar.SpacePanel(); + float var23 = var22.getAlignmentX(); + var22.setVisible(false); + java.awt.Dimension var26 = var22.getPreferredSize(); + boolean var27 = var22.getVerifyInputWhenFocusTarget(); + java.awt.Component var30 = var22.findComponentAt(10, 1); + boolean var31 = var22.requestDefaultFocus(); + var22.setVerifyInputWhenFocusTarget(false); + java.awt.Point var34 = var22.getLocation(); + java.awt.Point var35 = var0.getLocation(var34); + SpaceWar.SpacePanel var36 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var37 = new SpaceWar.SpacePanel(); + java.awt.Color var38 = var37.getBackground(); + SpaceWar.SpacePanel var39 = new SpaceWar.SpacePanel(); + float var40 = var39.getAlignmentX(); + var39.setVisible(false); + var39.nextFocus(); + var39.updateUI(); + var39.enableInputMethods(true); + var36.add((java.awt.Component)var37, (java.lang.Object)true); + java.awt.Dimension var48 = var37.getPreferredSize(); + var37.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", (-1.0f), 100.0f); + var37.removeNotify(); + java.awt.Dimension var54 = var37.size(); + var0.resize(var54); + boolean var56 = var0.isFocusCycleRoot(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var30); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var31 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var34); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var35); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var38); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var40 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var48); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var54); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var56 == false); + + } + + public void test426() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test426"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + var0.setRequestFocusEnabled(false); + var0.reshape(100, 0, 100, 0); + var0.requestFocus(); + var0.firePropertyChange("hi!", '4', ' '); + java.awt.Point var15 = var0.getLocation(); + java.awt.Dimension var16 = var0.size(); + java.awt.Image var19 = var0.createImage((-1), (-1)); + java.awt.event.ComponentListener[] var20 = var0.getComponentListeners(); + SpaceWar.SpacePanel var21 = new SpaceWar.SpacePanel(); + var21.setName(""); + java.awt.ComponentOrientation var24 = var21.getComponentOrientation(); + var21.firePropertyChange("PanelUI", 1.0f, 0.5f); + int var29 = var0.getComponentZOrder((java.awt.Component)var21); + boolean var31 = var0.areFocusTraversalKeysSet(0); + var0.removeAll(); + int var33 = var0.getX(); + boolean var34 = var0.isFocusCycleRoot(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var29 == (-1)); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var31 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var33 == 100); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var34 == false); + + } + + public void test427() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test427"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + var0.list(); + float var6 = var0.getAlignmentY(); + boolean var7 = var0.isOpaque(); + var0.nextFocus(); + java.awt.Component var9 = var0.getNextFocusableComponent(); + java.awt.Dimension var10 = var0.getPreferredSize(); + var0.setRequestFocusEnabled(true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var9); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var10); + + } + + public void test428() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test428"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.reshape((-1), 1, (-1), 10); + var0.disable(); + java.awt.LayoutManager var11 = var0.getLayout(); + boolean var14 = var0.contains((-1), 0); + SpaceWar.SpacePanel var15 = new SpaceWar.SpacePanel(); + float var16 = var15.getAlignmentX(); + var15.setVisible(false); + var15.nextFocus(); + var15.updateUI(); + var15.enableInputMethods(true); + var15.setSize((-1), 1); + java.awt.Component var26 = var0.add((java.awt.Component)var15); + SpaceWar.SpacePanel var27 = new SpaceWar.SpacePanel(); + float var28 = var27.getAlignmentX(); + var27.setVisible(false); + var27.nextFocus(); + var27.updateUI(); + var27.enableInputMethods(true); + java.lang.String var35 = var27.toString(); + java.awt.FocusTraversalPolicy var36 = var27.getFocusTraversalPolicy(); + var15.removeKeyListener((java.awt.event.KeyListener)var27); + boolean var38 = var27.isShowing(); + java.awt.GraphicsConfiguration var39 = var27.getGraphicsConfiguration(); + java.awt.Cursor var40 = var27.getCursor(); + javax.swing.TransferHandler var41 = var27.getTransferHandler(); + SpaceWar.SpacePanel var43 = new SpaceWar.SpacePanel(); + java.awt.Color var44 = var43.getBackground(); + var43.repaint(); + java.awt.im.InputMethodRequests var46 = var43.getInputMethodRequests(); + int var47 = var43.countComponents(); + java.awt.event.ComponentListener[] var48 = var43.getComponentListeners(); + var43.removeNotify(); + javax.swing.InputMap var50 = var43.getInputMap(); + // The following exception was thrown during execution. + // This behavior will recorded for regression testing. + try { + var27.setInputMap(25, var50); + fail("Expected exception of type java.lang.IllegalArgumentException"); + } catch (java.lang.IllegalArgumentException e) { + // Expected exception. + } + + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var28 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var35 + "' != '" + "SpaceWar.SpacePanel[,0,0,0var35,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"+ "'", var35.equals("SpaceWar.SpacePanel[,0,0,0var35,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]")); + + // Regression assertion (captures the current behavior of the code) + assertNull(var36); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var38 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var39); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var40); + + // Regression assertion (captures the current behavior of the code) + assertNull(var41); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var44); + + // Regression assertion (captures the current behavior of the code) + assertNull(var46); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var47 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var48); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var50); + + } + + public void test429() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test429"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var1 = new SpaceWar.SpacePanel(); + java.awt.Color var2 = var1.getBackground(); + SpaceWar.SpacePanel var3 = new SpaceWar.SpacePanel(); + float var4 = var3.getAlignmentX(); + var3.setVisible(false); + var3.nextFocus(); + var3.updateUI(); + var3.enableInputMethods(true); + var0.add((java.awt.Component)var1, (java.lang.Object)true); + boolean var12 = var0.isMinimumSizeSet(); + java.awt.event.HierarchyListener[] var13 = var0.getHierarchyListeners(); + SpaceWar.SpacePanel var14 = new SpaceWar.SpacePanel(); + float var15 = var14.getAlignmentX(); + var14.setVisible(false); + SpaceWar.SpacePanel var18 = new SpaceWar.SpacePanel(); + java.awt.Color var19 = var18.getBackground(); + var14.setForeground(var19); + SpaceWar.SpacePanel var21 = new SpaceWar.SpacePanel(); + float var22 = var21.getAlignmentX(); + var21.setVisible(false); + boolean var25 = var21.isDoubleBuffered(); + java.awt.dnd.DropTarget var26 = var21.getDropTarget(); + var21.show(false); + java.awt.Rectangle var29 = var21.getVisibleRect(); + var14.repaint(var29); + java.awt.FocusTraversalPolicy var31 = var14.getFocusTraversalPolicy(); + java.awt.im.InputMethodRequests var32 = var14.getInputMethodRequests(); + var14.layout(); + boolean var34 = var14.isFocusTraversalPolicyProvider(); + java.lang.Object var35 = var0.getClientProperty((java.lang.Object)var34); + java.awt.Dimension var36 = var0.getSize(); + boolean var37 = var0.isFocusTraversable(); + SpaceWar.SpacePanel var38 = new SpaceWar.SpacePanel(); + float var39 = var38.getAlignmentX(); + var38.setVisible(false); + var38.nextFocus(); + var38.updateUI(); + var38.enableInputMethods(true); + var38.resetKeyboardActions(); + var0.removeKeyListener((java.awt.event.KeyListener)var38); + SpaceWar.SpacePanel var48 = new SpaceWar.SpacePanel(); + float var49 = var48.getAlignmentX(); + var48.setVisible(false); + boolean var52 = var48.isDoubleBuffered(); + java.awt.dnd.DropTarget var53 = var48.getDropTarget(); + var48.show(false); + boolean var56 = var48.isPaintingForPrint(); + SpaceWar.SpacePanel var57 = new SpaceWar.SpacePanel(); + float var58 = var57.getAlignmentX(); + var57.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var63 = var57.getMouseListeners(); + int var64 = var57.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var65 = var57.getInputMethodRequests(); + var48.addKeyListener((java.awt.event.KeyListener)var57); + boolean var67 = var48.isDisplayable(); + java.awt.Dimension var68 = var48.getPreferredSize(); + var0.setSize(var68); + java.awt.Graphics var70 = var0.getGraphics(); + boolean var71 = var0.requestDefaultFocus(); + java.awt.event.MouseWheelListener[] var72 = var0.getMouseWheelListeners(); + boolean var73 = var0.isCursorSet(); + var0.reshape(1, 399, 399, 10); + boolean var79 = var0.isMinimumSizeSet(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var2); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var22 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var29); + + // Regression assertion (captures the current behavior of the code) + assertNull(var31); + + // Regression assertion (captures the current behavior of the code) + assertNull(var32); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var34 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var35); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var36); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var39 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var49 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var52 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var53); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var56 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var58 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var63); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var64 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var65); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var67 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var68); + + // Regression assertion (captures the current behavior of the code) + assertNull(var70); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var71 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var72); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var73 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var79 == false); + + } + + public void test430() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test430"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + var0.show(false); + boolean var8 = var0.isPaintingForPrint(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var15 = var9.getMouseListeners(); + int var16 = var9.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var17 = var9.getInputMethodRequests(); + var0.addKeyListener((java.awt.event.KeyListener)var9); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + float var20 = var19.getAlignmentX(); + var19.setVisible(false); + boolean var23 = var19.isDoubleBuffered(); + var19.list(); + float var25 = var19.getAlignmentY(); + boolean var26 = var9.isFocusCycleRoot((java.awt.Container)var19); + var19.firePropertyChange("", 1L, 1L); + var19.setVerifyInputWhenFocusTarget(true); + var19.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", '4', '4'); + java.awt.Point var37 = var19.getLocation(); + int var40 = var19.getBaseline(2, 399); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var37); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var40 == (-1)); + + } + + public void test431() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test431"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + var0.setName(""); + int var3 = var0.getX(); + java.lang.String var4 = var0.getToolTipText(); + java.awt.Point var5 = var0.getLocation(); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + float var7 = var6.getAlignmentX(); + var6.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var12 = var6.getUI(); + java.awt.im.InputMethodRequests var13 = var6.getInputMethodRequests(); + SpaceWar.SpacePanel var14 = new SpaceWar.SpacePanel(); + float var15 = var14.getAlignmentX(); + var14.setVisible(false); + var14.nextFocus(); + var14.updateUI(); + var14.enableInputMethods(true); + var14.setSize((-1), 1); + SpaceWar.SpacePanel var25 = new SpaceWar.SpacePanel(); + var25.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var6.add((java.awt.Component)var14, (java.lang.Object)"SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + var6.setAutoscrolls(false); + java.awt.event.InputMethodListener[] var33 = var6.getInputMethodListeners(); + java.awt.Rectangle var34 = var6.bounds(); + var0.paintImmediately(var34); + boolean var36 = var0.isManagingFocus(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var4); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var33); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var34); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var36 == false); + + } + + public void test432() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test432"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + java.awt.Point var6 = var0.getMousePosition(); + java.lang.String var7 = var0.getUIClassID(); + var0.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", '#', '4'); + javax.accessibility.AccessibleContext var12 = var0.getAccessibleContext(); + var0.repaint(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var7 + "' != '" + "PanelUI"+ "'", var7.equals("PanelUI")); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var12); + + } + + public void test433() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test433"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + boolean var4 = var0.inside(0, (-1)); + var0.transferFocusUpCycle(); + java.awt.Container var6 = var0.getParent(); + boolean var7 = var0.isMaximumSizeSet(); + java.awt.event.InputMethodListener[] var8 = var0.getInputMethodListeners(); + javax.swing.TransferHandler var9 = var0.getTransferHandler(); + boolean var10 = var0.getFocusTraversalKeysEnabled(); + java.awt.Component[] var11 = var0.getComponents(); + var0.transferFocusDownCycle(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertNull(var9); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + } + + public void test434() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test434"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.setInheritsPopupMenu(false); + var0.setFocusTraversalPolicyProvider(true); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + java.awt.Color var9 = var8.getBackground(); + var8.repaint(); + java.awt.im.InputMethodRequests var11 = var8.getInputMethodRequests(); + java.awt.GraphicsConfiguration var12 = var8.getGraphicsConfiguration(); + java.awt.Component var13 = var0.add((java.awt.Component)var8); + java.awt.Rectangle var14 = var0.getBounds(); + java.lang.Object var15 = var0.getTreeLock(); + SpaceWar.SpacePanel var17 = new SpaceWar.SpacePanel(); + java.awt.Color var18 = var17.getBackground(); + var17.repaint(); + java.awt.im.InputMethodRequests var20 = var17.getInputMethodRequests(); + var17.setDoubleBuffered(true); + var17.setInheritsPopupMenu(false); + javax.swing.InputMap var25 = var17.getInputMap(); + // The following exception was thrown during execution. + // This behavior will recorded for regression testing. + try { + var0.setInputMap(500, var25); + fail("Expected exception of type java.lang.IllegalArgumentException"); + } catch (java.lang.IllegalArgumentException e) { + // Expected exception. + } + + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var9); + + // Regression assertion (captures the current behavior of the code) + assertNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var25); + + } + + public void test435() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test435"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + var0.show(false); + boolean var8 = var0.isPaintingForPrint(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var15 = var9.getMouseListeners(); + int var16 = var9.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var17 = var9.getInputMethodRequests(); + var0.addKeyListener((java.awt.event.KeyListener)var9); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + float var20 = var19.getAlignmentX(); + var19.setVisible(false); + boolean var23 = var19.isDoubleBuffered(); + var19.list(); + float var25 = var19.getAlignmentY(); + boolean var26 = var9.isFocusCycleRoot((java.awt.Container)var19); + SpaceWar.SpacePanel var28 = new SpaceWar.SpacePanel(); + float var29 = var28.getAlignmentX(); + var28.setVisible(false); + var28.nextFocus(); + var28.updateUI(); + java.awt.Component var34 = var9.add("", (java.awt.Component)var28); + java.awt.ComponentOrientation var35 = var28.getComponentOrientation(); + var28.transferFocusUpCycle(); + var28.setFocusTraversalPolicyProvider(true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var29 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var34); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var35); + + } + + public void test436() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test436"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + var0.show(false); + boolean var8 = var0.isPaintingForPrint(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var15 = var9.getMouseListeners(); + int var16 = var9.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var17 = var9.getInputMethodRequests(); + var0.addKeyListener((java.awt.event.KeyListener)var9); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + float var20 = var19.getAlignmentX(); + var19.setVisible(false); + boolean var23 = var19.isDoubleBuffered(); + var19.list(); + float var25 = var19.getAlignmentY(); + boolean var26 = var9.isFocusCycleRoot((java.awt.Container)var19); + javax.swing.JPopupMenu var27 = var19.getComponentPopupMenu(); + var19.move((-1), 100); + var19.validate(); + java.awt.event.FocusListener[] var32 = var19.getFocusListeners(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var27); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var32); + + } + + public void test437() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test437"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var6 = var0.getMouseListeners(); + var0.firePropertyChange("", 0.5f, 100.0f); + var0.enable(false); + var0.transferFocusDownCycle(); + java.awt.Rectangle var14 = var0.bounds(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + } + + public void test438() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test438"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.Graphics var5 = var0.getGraphics(); + java.awt.event.MouseMotionListener[] var6 = var0.getMouseMotionListeners(); + SpaceWar.SpacePanel var7 = new SpaceWar.SpacePanel(); + float var8 = var7.getAlignmentX(); + var7.setVisible(false); + var7.setInheritsPopupMenu(false); + boolean var13 = var7.isDoubleBuffered(); + boolean var14 = var7.isMinimumSizeSet(); + java.awt.Font var15 = var7.getFont(); + var0.setFont(var15); + java.beans.PropertyChangeListener[] var17 = var0.getPropertyChangeListeners(); + java.awt.GraphicsConfiguration var18 = var0.getGraphicsConfiguration(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertNull(var18); + + } + + public void test439() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test439"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + boolean var5 = javax.swing.JComponent.isLightweightComponent((java.awt.Component)var0); + java.awt.event.MouseWheelListener[] var6 = var0.getMouseWheelListeners(); + var0.transferFocusUpCycle(); + java.lang.String var8 = var0.toString(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var8 + "' != '" + "SpaceWar.SpacePanel[,0,0,0var8,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"+ "'", var8.equals("SpaceWar.SpacePanel[,0,0,0var8,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]")); + + } + + public void test440() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test440"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + SpaceWar.SpacePanel var5 = new SpaceWar.SpacePanel(); + float var6 = var5.getAlignmentX(); + var5.setVisible(false); + var5.nextFocus(); + var5.reshape((-1), 1, (-1), 10); + var5.disable(); + boolean var16 = var5.isFocusable(); + int var17 = var5.getHeight(); + var0.setNextFocusableComponent((java.awt.Component)var5); + java.util.Set var20 = var0.getFocusTraversalKeys(0); + boolean var21 = var0.isFocusOwner(); + java.awt.Point var23 = var0.getMousePosition(true); + boolean var24 = var0.isFontSet(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == 10); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var23); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var24 == true); + + } + + public void test441() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test441"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + SpaceWar.SpacePanel var4 = new SpaceWar.SpacePanel(); + java.awt.Color var5 = var4.getBackground(); + var0.setForeground(var5); + SpaceWar.SpacePanel var7 = new SpaceWar.SpacePanel(); + float var8 = var7.getAlignmentX(); + var7.setVisible(false); + boolean var11 = var7.isDoubleBuffered(); + java.awt.dnd.DropTarget var12 = var7.getDropTarget(); + var7.show(false); + java.awt.Rectangle var15 = var7.getVisibleRect(); + var0.repaint(var15); + java.awt.FocusTraversalPolicy var17 = var0.getFocusTraversalPolicy(); + var0.resetKeyboardActions(); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + float var20 = var19.getAlignmentX(); + var19.setVisible(false); + boolean var23 = var19.isDoubleBuffered(); + java.awt.dnd.DropTarget var24 = var19.getDropTarget(); + var19.show(false); + java.awt.Rectangle var27 = var19.getVisibleRect(); + var0.computeVisibleRect(var27); + javax.swing.ActionMap var29 = var0.getActionMap(); + SpaceWar.SpacePanel var30 = new SpaceWar.SpacePanel(); + float var31 = var30.getAlignmentX(); + var30.setVisible(false); + boolean var34 = var30.isDoubleBuffered(); + var30.list(); + SpaceWar.SpacePanel var36 = new SpaceWar.SpacePanel(); + float var37 = var36.getAlignmentX(); + var36.setVisible(false); + boolean var40 = var36.isDoubleBuffered(); + java.awt.dnd.DropTarget var41 = var36.getDropTarget(); + var36.show(false); + java.awt.Rectangle var44 = var36.getVisibleRect(); + java.awt.Rectangle var45 = var30.getBounds(var44); + javax.swing.JToolTip var46 = var30.createToolTip(); + var30.firePropertyChange("", false, false); + var30.validate(); + SpaceWar.SpacePanel var52 = new SpaceWar.SpacePanel(); + float var53 = var52.getAlignmentX(); + boolean var54 = var52.hasFocus(); + java.beans.VetoableChangeListener[] var55 = var52.getVetoableChangeListeners(); + var0.add((java.awt.Component)var30, (java.lang.Object)var55); + java.lang.String var57 = var30.getUIClassID(); + java.awt.Component.BaselineResizeBehavior var58 = var30.getBaselineResizeBehavior(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var27); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var29); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var31 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var34 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var40 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var41); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var44); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var45); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var46); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var53 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var54 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var55); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var57 + "' != '" + "PanelUI"+ "'", var57.equals("PanelUI")); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var58); + + } + + public void test442() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test442"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + java.awt.Dimension var4 = var0.getPreferredSize(); + java.awt.Toolkit var5 = var0.getToolkit(); + boolean var6 = var0.isFocusable(); + javax.swing.KeyStroke[] var7 = var0.getRegisteredKeyStrokes(); + java.awt.Component var10 = var0.getComponentAt(100, 100); + java.lang.Object var11 = var0.getTreeLock(); + boolean var14 = var0.inside(400, 0); + java.awt.event.MouseWheelListener[] var15 = var0.getMouseWheelListeners(); + var0.enableInputMethods(true); + var0.list(); + boolean var19 = var0.isOpaque(); + boolean var22 = var0.contains(1, 1); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var4); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var22 == false); + + } + + public void test443() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test443"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + SpaceWar.SpacePanel var5 = new SpaceWar.SpacePanel(); + float var6 = var5.getAlignmentX(); + var5.setVisible(false); + var5.nextFocus(); + var5.reshape((-1), 1, (-1), 10); + var5.disable(); + boolean var16 = var5.isFocusable(); + int var17 = var5.getHeight(); + var0.setNextFocusableComponent((java.awt.Component)var5); + java.util.Set var20 = var0.getFocusTraversalKeys(0); + java.awt.FocusTraversalPolicy var21 = var0.getFocusTraversalPolicy(); + java.lang.String var22 = var0.getToolTipText(); + java.awt.Insets var23 = var0.getInsets(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == 10); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertNull(var21); + + // Regression assertion (captures the current behavior of the code) + assertNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var23); + + } + + public void test444() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test444"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var6 = var0.getMouseListeners(); + java.awt.Dimension var7 = var0.getPreferredSize(); + java.util.Locale var8 = var0.getLocale(); + var0.setFocusable(true); + var0.setSize(3, 10); + var0.invalidate(); + boolean var15 = var0.isValid(); + boolean var16 = var0.getVerifyInputWhenFocusTarget(); + SpaceWar.SpacePanel var17 = new SpaceWar.SpacePanel(); + float var18 = var17.getAlignmentX(); + boolean var19 = var17.hasFocus(); + boolean var20 = var17.isPreferredSizeSet(); + var17.firePropertyChange("", (short)1, (short)0); + boolean var25 = var17.isMaximumSizeSet(); + java.awt.peer.ComponentPeer var26 = var17.getPeer(); + SpaceWar.SpacePanel var27 = new SpaceWar.SpacePanel(); + float var28 = var27.getAlignmentX(); + var27.setVisible(false); + boolean var31 = var27.isDoubleBuffered(); + java.awt.dnd.DropTarget var32 = var27.getDropTarget(); + var27.show(false); + SpaceWar.SpacePanel var35 = new SpaceWar.SpacePanel(); + float var36 = var35.getAlignmentX(); + var35.setVisible(false); + SpaceWar.SpacePanel var39 = new SpaceWar.SpacePanel(); + java.awt.Color var40 = var39.getBackground(); + var35.setForeground(var40); + SpaceWar.SpacePanel var42 = new SpaceWar.SpacePanel(); + float var43 = var42.getAlignmentX(); + var42.setVisible(false); + boolean var46 = var42.isDoubleBuffered(); + java.awt.dnd.DropTarget var47 = var42.getDropTarget(); + var42.show(false); + java.awt.Rectangle var50 = var42.getVisibleRect(); + var35.repaint(var50); + java.awt.FocusTraversalPolicy var52 = var35.getFocusTraversalPolicy(); + java.awt.im.InputMethodRequests var53 = var35.getInputMethodRequests(); + var35.layout(); + SpaceWar.SpacePanel var55 = new SpaceWar.SpacePanel(); + float var56 = var55.getAlignmentX(); + var55.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var61 = new SpaceWar.SpacePanel(); + float var62 = var61.getAlignmentX(); + var61.setVisible(false); + SpaceWar.SpacePanel var65 = new SpaceWar.SpacePanel(); + java.awt.Color var66 = var65.getBackground(); + var61.setForeground(var66); + var55.setBackground(var66); + var35.setForeground(var66); + int var70 = var35.getWidth(); + javax.swing.plaf.PanelUI var71 = var35.getUI(); + var27.setUI(var71); + var17.setUI(var71); + javax.swing.ActionMap var74 = var17.getActionMap(); + javax.swing.KeyStroke[] var75 = var17.getRegisteredKeyStrokes(); + // The following exception was thrown during execution. + // This behavior will recorded for regression testing. + try { + java.awt.Component var77 = var0.add((java.awt.Component)var17, 99); + fail("Expected exception of type java.lang.IllegalArgumentException"); + } catch (java.lang.IllegalArgumentException e) { + // Expected exception. + } + + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var28 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var31 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var32); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var36 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var40); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var43 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var46 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var47); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var50); + + // Regression assertion (captures the current behavior of the code) + assertNull(var52); + + // Regression assertion (captures the current behavior of the code) + assertNull(var53); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var56 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var62 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var66); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var70 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var71); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var74); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var75); + + } + + public void test445() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test445"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + var0.list(); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + float var7 = var6.getAlignmentX(); + var6.setVisible(false); + boolean var10 = var6.isDoubleBuffered(); + java.awt.dnd.DropTarget var11 = var6.getDropTarget(); + var6.show(false); + java.awt.Rectangle var14 = var6.getVisibleRect(); + java.awt.Rectangle var15 = var0.getBounds(var14); + javax.swing.JToolTip var16 = var0.createToolTip(); + var0.firePropertyChange("", false, false); + var0.validate(); + boolean var22 = var0.isEnabled(); + SpaceWar.SpacePanel var23 = new SpaceWar.SpacePanel(); + float var24 = var23.getAlignmentX(); + var23.setVisible(false); + boolean var27 = var23.isDoubleBuffered(); + java.awt.dnd.DropTarget var28 = var23.getDropTarget(); + var23.show(false); + java.awt.Rectangle var31 = var23.getVisibleRect(); + javax.swing.KeyStroke[] var32 = var23.getRegisteredKeyStrokes(); + SpaceWar.SpacePanel var33 = new SpaceWar.SpacePanel(); + float var34 = var33.getAlignmentX(); + var33.setVisible(false); + boolean var37 = var33.isDoubleBuffered(); + java.awt.dnd.DropTarget var38 = var33.getDropTarget(); + boolean var39 = var33.isFocusCycleRoot(); + var33.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", 100, 0); + SpaceWar.SpacePanel var44 = new SpaceWar.SpacePanel(); + float var45 = var44.getAlignmentX(); + var44.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var50 = var44.getUI(); + var33.add((java.awt.Component)var44, (java.lang.Object)(short)0); + java.awt.event.InputMethodListener[] var53 = var44.getInputMethodListeners(); + var0.putClientProperty((java.lang.Object)var32, (java.lang.Object)var44); + boolean var55 = var0.requestFocusInWindow(); + boolean var56 = var0.isCursorSet(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var22 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var24 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var28); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var31); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var32); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var34 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var38); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var39 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var45 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var50); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var53); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var55 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var56 == false); + + } + + public void test446() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test446"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + boolean var6 = var0.isFocusCycleRoot(); + java.util.Locale var7 = var0.getLocale(); + javax.swing.JComponent.setDefaultLocale(var7); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var7); + + } + + public void test447() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test447"); + + + SpaceWar.Player var0 = new SpaceWar.Player(); + int var1 = var0.getPower(); + int var2 = var0.getPower(); + boolean var3 = var0.isRecovering(); + int var4 = var0.getPowerLevel(); + var0.setScore(3); + var0.update(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var2 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0); + + } + + public void test448() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test448"); + + + SpaceWar.Player var0 = new SpaceWar.Player(); + int var1 = var0.getLives(); + var0.setDown(true); + int var4 = var0.getLives(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 3); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 3); + + } + + public void test449() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test449"); + + + SpaceWar.Bullet var3 = new SpaceWar.Bullet(25.0d, 99, 2); + + } + + public void test450() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test450"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + java.awt.Dimension var4 = var0.getPreferredSize(); + boolean var5 = var0.getVerifyInputWhenFocusTarget(); + java.awt.Component var8 = var0.findComponentAt(10, 1); + boolean var9 = var0.isCursorSet(); + boolean var10 = var0.isFocusTraversalPolicyProvider(); + java.awt.Rectangle var11 = var0.getBounds(); + java.awt.Dimension var12 = var0.getMaximumSize(); + SpaceWar.SpacePanel var13 = new SpaceWar.SpacePanel(); + float var14 = var13.getAlignmentX(); + var13.setVisible(false); + var13.nextFocus(); + var13.reshape((-1), 1, (-1), 10); + var13.disable(); + java.awt.LayoutManager var24 = var13.getLayout(); + java.awt.Container var25 = var13.getParent(); + java.lang.String var26 = var13.getUIClassID(); + float var27 = var13.getAlignmentX(); + var13.enable(true); + boolean var30 = var13.isPaintingTile(); + javax.swing.plaf.PanelUI var31 = var13.getUI(); + java.awt.Component var32 = var0.add((java.awt.Component)var13); + java.awt.event.HierarchyBoundsListener[] var33 = var0.getHierarchyBoundsListeners(); + var0.removeNotify(); + var0.setToolTipText("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=265,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var4); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertNull(var25); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var26 + "' != '" + "PanelUI"+ "'", var26.equals("PanelUI")); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var30 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var31); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var32); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var33); + + } + + public void test451() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test451"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.reshape((-1), 1, (-1), 10); + var0.disable(); + java.awt.LayoutManager var11 = var0.getLayout(); + boolean var14 = var0.contains((-1), 0); + SpaceWar.SpacePanel var15 = new SpaceWar.SpacePanel(); + float var16 = var15.getAlignmentX(); + var15.setVisible(false); + var15.nextFocus(); + var15.updateUI(); + var15.enableInputMethods(true); + var15.setSize((-1), 1); + java.awt.Component var26 = var0.add((java.awt.Component)var15); + java.awt.Graphics var27 = var15.getGraphics(); + var15.addNotify(); + java.awt.LayoutManager var29 = var15.getLayout(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertNull(var27); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var29); + + } + + public void test452() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test452"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + var0.show(false); + boolean var8 = var0.isPaintingForPrint(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var15 = var9.getMouseListeners(); + int var16 = var9.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var17 = var9.getInputMethodRequests(); + var0.addKeyListener((java.awt.event.KeyListener)var9); + var9.removeNotify(); + SpaceWar.SpacePanel var20 = new SpaceWar.SpacePanel(); + java.awt.Color var21 = var20.getBackground(); + var20.repaint(); + var20.setRequestFocusEnabled(false); + var20.reshape(100, 0, 100, 0); + var20.requestFocus(); + SpaceWar.SpacePanel var31 = new SpaceWar.SpacePanel(); + float var32 = var31.getAlignmentX(); + var31.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var37 = var31.getUI(); + java.awt.im.InputMethodRequests var38 = var31.getInputMethodRequests(); + SpaceWar.SpacePanel var39 = new SpaceWar.SpacePanel(); + float var40 = var39.getAlignmentX(); + var39.setVisible(false); + var39.nextFocus(); + var39.updateUI(); + var39.enableInputMethods(true); + var39.setSize((-1), 1); + SpaceWar.SpacePanel var50 = new SpaceWar.SpacePanel(); + var50.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var31.add((java.awt.Component)var39, (java.lang.Object)"SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + SpaceWar.SpacePanel var56 = new SpaceWar.SpacePanel(); + var56.setName(""); + java.awt.ComponentOrientation var59 = var56.getComponentOrientation(); + var31.applyComponentOrientation(var59); + var20.setComponentOrientation(var59); + var9.applyComponentOrientation(var59); + java.awt.Color var63 = var9.getForeground(); + SpaceWar.SpacePanel var65 = new SpaceWar.SpacePanel(); + java.awt.Color var66 = var65.getBackground(); + var65.repaint(); + java.awt.im.InputMethodRequests var68 = var65.getInputMethodRequests(); + java.awt.Component var69 = var9.add("", (java.awt.Component)var65); + java.awt.event.MouseListener[] var70 = var9.getMouseListeners(); + java.lang.String var71 = var9.toString(); + var9.updateUI(); + java.beans.PropertyChangeListener[] var73 = var9.getPropertyChangeListeners(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var21); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var32 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var37); + + // Regression assertion (captures the current behavior of the code) + assertNull(var38); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var40 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var59); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var63); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var66); + + // Regression assertion (captures the current behavior of the code) + assertNull(var68); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var69); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var70); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var71 + "' != '" + "SpaceWar.SpacePanel[,0,0,0var71,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"+ "'", var71.equals("SpaceWar.SpacePanel[,0,0,0var71,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]")); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var73); + + } + + public void test453() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test453"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + var0.enable(false); + boolean var7 = var0.requestDefaultFocus(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var14 = var8.getMouseListeners(); + int var15 = var8.getDebugGraphicsOptions(); + SpaceWar.SpacePanel var16 = new SpaceWar.SpacePanel(); + float var17 = var16.getAlignmentX(); + var16.setVisible(false); + boolean var20 = var16.isDoubleBuffered(); + java.awt.dnd.DropTarget var21 = var16.getDropTarget(); + var16.show(false); + java.awt.Rectangle var24 = var16.getVisibleRect(); + var8.paintImmediately(var24); + var8.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", '#', '#'); + var8.list(); + java.awt.Rectangle var31 = var8.getBounds(); + var0.scrollRectToVisible(var31); + SpaceWar.Player var33 = new SpaceWar.Player(); + boolean var34 = var33.isRecovering(); + var33.setRigth(false); + int var37 = var33.getPowerLevel(); + var33.increasePower((-1)); + java.lang.Object var40 = var0.getClientProperty((java.lang.Object)(-1)); + boolean var41 = var0.hasFocus(); + var0.updateUI(); + SpaceWar.SpacePanel var43 = new SpaceWar.SpacePanel(); + float var44 = var43.getAlignmentX(); + var43.setVisible(false); + var43.nextFocus(); + var43.updateUI(); + var43.enableInputMethods(true); + var43.resetKeyboardActions(); + java.awt.event.HierarchyListener[] var52 = var43.getHierarchyListeners(); + var43.hide(); + var0.setNextFocusableComponent((java.awt.Component)var43); + java.awt.Dimension var55 = var0.preferredSize(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var21); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var31); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var34 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var40); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var41 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var44 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var52); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var55); + + } + + public void test454() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test454"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + var0.list(); + float var6 = var0.getAlignmentY(); + java.awt.event.ComponentListener[] var7 = var0.getComponentListeners(); + java.awt.Component var8 = var0.getNextFocusableComponent(); + boolean var9 = var0.isManagingFocus(); + javax.swing.border.Border var10 = var0.getBorder(); + SpaceWar.SpacePanel var11 = new SpaceWar.SpacePanel(); + float var12 = var11.getAlignmentX(); + var11.setVisible(false); + boolean var15 = var11.isDoubleBuffered(); + java.awt.dnd.DropTarget var16 = var11.getDropTarget(); + var11.show(false); + boolean var19 = var11.isPaintingForPrint(); + SpaceWar.SpacePanel var20 = new SpaceWar.SpacePanel(); + float var21 = var20.getAlignmentX(); + var20.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var26 = var20.getMouseListeners(); + int var27 = var20.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var28 = var20.getInputMethodRequests(); + var11.addKeyListener((java.awt.event.KeyListener)var20); + SpaceWar.SpacePanel var30 = new SpaceWar.SpacePanel(); + float var31 = var30.getAlignmentX(); + var30.setVisible(false); + boolean var34 = var30.isDoubleBuffered(); + var30.list(); + float var36 = var30.getAlignmentY(); + boolean var37 = var20.isFocusCycleRoot((java.awt.Container)var30); + var30.firePropertyChange("", 1L, 1L); + var30.setVerifyInputWhenFocusTarget(true); + var30.resize(25, 400); + java.awt.event.ComponentListener[] var47 = var30.getComponentListeners(); + boolean var48 = var30.isBackgroundSet(); + boolean var49 = var30.isFontSet(); + SpaceWar.SpacePanel var50 = new SpaceWar.SpacePanel(); + var50.setName(""); + var50.enable(true); + var50.enable(); + java.awt.Point var56 = var50.location(); + var50.repaint(0, 3, (-1), 1); + var50.setBounds(25, 100, 1, 0); + var0.putClientProperty((java.lang.Object)var49, (java.lang.Object)1); + java.awt.Insets var68 = var0.getInsets(); + java.awt.im.InputMethodRequests var69 = var0.getInputMethodRequests(); + var0.repaint(10L); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var28); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var31 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var34 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var36 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var47); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var48 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var49 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var56); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var68); + + // Regression assertion (captures the current behavior of the code) + assertNull(var69); + + } + + public void test455() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test455"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + var0.show(false); + boolean var8 = var0.isPaintingForPrint(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var15 = var9.getMouseListeners(); + int var16 = var9.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var17 = var9.getInputMethodRequests(); + var0.addKeyListener((java.awt.event.KeyListener)var9); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + float var20 = var19.getAlignmentX(); + var19.setVisible(false); + boolean var23 = var19.isDoubleBuffered(); + var19.list(); + float var25 = var19.getAlignmentY(); + boolean var26 = var9.isFocusCycleRoot((java.awt.Container)var19); + javax.swing.JPopupMenu var27 = var19.getComponentPopupMenu(); + var19.move((-1), 100); + var19.validate(); + var19.setAlignmentY(0.0f); + boolean var34 = var19.isShowing(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var27); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var34 == false); + + } + + public void test456() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test456"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + boolean var6 = var0.isFocusOwner(); + java.awt.Dimension var7 = var0.getMinimumSize(); + boolean var8 = var0.requestFocusInWindow(); + var0.repaint(10L); + boolean var11 = var0.getInheritsPopupMenu(); + SpaceWar.SpacePanel var12 = new SpaceWar.SpacePanel(); + float var13 = var12.getAlignmentX(); + var12.setVisible(false); + var12.nextFocus(); + var12.repaint(1L); + var12.firePropertyChange("", (short)(-1), (short)(-1)); + java.awt.Component var25 = var12.getComponentAt(0, 100); + var12.nextFocus(); + java.awt.Component var27 = var0.add((java.awt.Component)var12); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNull(var25); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var27); + + } + + public void test457() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test457"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.requestFocus(); + boolean var6 = var0.getInheritsPopupMenu(); + boolean var7 = var0.isFocusOwner(); + boolean var8 = var0.isValidateRoot(); + java.awt.Graphics var9 = var0.getGraphics(); + boolean var10 = var0.isEnabled(); + SpaceWar.SpacePanel var12 = new SpaceWar.SpacePanel(); + float var13 = var12.getAlignmentX(); + var12.firePropertyChange("", (-1), 1); + java.awt.event.MouseMotionListener[] var18 = var12.getMouseMotionListeners(); + java.awt.event.ComponentListener[] var19 = var12.getComponentListeners(); + SpaceWar.SpacePanel var20 = new SpaceWar.SpacePanel(); + float var21 = var20.getAlignmentX(); + var20.setVisible(false); + var20.nextFocus(); + var20.repaint(1L); + SpaceWar.SpacePanel var27 = new SpaceWar.SpacePanel(); + float var28 = var27.getAlignmentX(); + var27.setVisible(false); + boolean var31 = var27.isDoubleBuffered(); + var27.list(); + SpaceWar.SpacePanel var33 = new SpaceWar.SpacePanel(); + float var34 = var33.getAlignmentX(); + var33.setVisible(false); + boolean var37 = var33.isDoubleBuffered(); + java.awt.dnd.DropTarget var38 = var33.getDropTarget(); + var33.show(false); + java.awt.Rectangle var41 = var33.getVisibleRect(); + java.awt.Rectangle var42 = var27.getBounds(var41); + var20.setBounds(var42); + var12.paintImmediately(var42); + var12.setBounds(3, 499, 3, 0); + float var50 = var12.getAlignmentY(); + java.awt.Component var51 = var0.add("SpaceWar.SpacePanel[,-1,100,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=265,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", (java.awt.Component)var12); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var9); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var28 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var31 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var34 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var38); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var41); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var42); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var50 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var51); + + } + + public void test458() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test458"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.reshape((-1), 1, (-1), 10); + java.util.Set var11 = var0.getFocusTraversalKeys(3); + var0.firePropertyChange("SpaceWar.SpacePanel[,-1,1,-1x10,invalid,hidden,disabled,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", '4', ' '); + var0.setIgnoreRepaint(false); + SpaceWar.SpacePanel var18 = new SpaceWar.SpacePanel(); + java.awt.Color var19 = var18.getBackground(); + var18.repaint(); + var18.removeNotify(); + SpaceWar.SpacePanel var22 = new SpaceWar.SpacePanel(); + float var23 = var22.getAlignmentX(); + var22.setVisible(false); + boolean var26 = var22.isDoubleBuffered(); + java.awt.dnd.DropTarget var27 = var22.getDropTarget(); + var22.show(false); + boolean var30 = var22.isPaintingForPrint(); + SpaceWar.SpacePanel var31 = new SpaceWar.SpacePanel(); + float var32 = var31.getAlignmentX(); + var31.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var37 = var31.getMouseListeners(); + int var38 = var31.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var39 = var31.getInputMethodRequests(); + var22.addKeyListener((java.awt.event.KeyListener)var31); + boolean var41 = var22.isDisplayable(); + boolean var42 = var22.isOpaque(); + var22.setEnabled(false); + java.awt.Rectangle var45 = var22.getBounds(); + var0.putClientProperty((java.lang.Object)var18, (java.lang.Object)var45); + boolean var47 = var18.isVisible(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var27); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var30 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var32 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var37); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var38 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var39); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var41 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var42 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var45); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var47 == true); + + } + + public void test459() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test459"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + var0.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", 10.0d, 100.0d); + SpaceWar.SpacePanel var5 = new SpaceWar.SpacePanel(); + float var6 = var5.getAlignmentX(); + var5.setVisible(false); + boolean var9 = var5.isDoubleBuffered(); + java.awt.dnd.DropTarget var10 = var5.getDropTarget(); + boolean var11 = var5.isFocusCycleRoot(); + var5.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", 100, 0); + SpaceWar.SpacePanel var16 = new SpaceWar.SpacePanel(); + java.awt.Color var17 = var16.getBackground(); + var16.repaint(); + var16.setRequestFocusEnabled(false); + var16.reshape(100, 0, 100, 0); + javax.swing.event.AncestorListener[] var26 = var16.getAncestorListeners(); + var16.grabFocus(); + boolean var28 = var5.isFocusCycleRoot((java.awt.Container)var16); + javax.swing.ActionMap var29 = var16.getActionMap(); + var0.setActionMap(var29); + var0.setToolTipText("SpaceWar.SpacePanel[,-1,1,-1x10,invalid,hidden,disabled,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + boolean var33 = var0.isRequestFocusEnabled(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var28 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var29); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var33 == true); + + } + + public void test460() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test460"); + + + SpaceWar.Enemy var2 = new SpaceWar.Enemy(3, 99); + + } + + public void test461() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test461"); + + + SpaceWar.Player var0 = new SpaceWar.Player(); + var0.increasePower(25); + int var3 = var0.getScore(); + var0.setRigth(true); + var0.loseLife(); + int var7 = var0.getPower(); + int var8 = var0.getX(); + int var9 = var0.getX(); + var0.setLife(3); + var0.setFiring(false); + int var14 = var0.getScore(); + int var15 = var0.getX(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 24); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 400); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 400); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == 400); + + } + + public void test462() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test462"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + java.awt.im.InputMethodRequests var3 = var0.getInputMethodRequests(); + var0.setDoubleBuffered(true); + var0.setInheritsPopupMenu(false); + javax.swing.plaf.PanelUI var8 = var0.getUI(); + boolean var9 = var0.isCursorSet(); + SpaceWar.SpacePanel var10 = new SpaceWar.SpacePanel(); + float var11 = var10.getAlignmentX(); + var10.setVisible(false); + boolean var14 = var10.isDoubleBuffered(); + java.awt.dnd.DropTarget var15 = var10.getDropTarget(); + boolean var16 = var10.isFocusCycleRoot(); + SpaceWar.SpacePanel var17 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var18 = new SpaceWar.SpacePanel(); + java.awt.Color var19 = var18.getBackground(); + SpaceWar.SpacePanel var20 = new SpaceWar.SpacePanel(); + float var21 = var20.getAlignmentX(); + var20.setVisible(false); + var20.nextFocus(); + var20.updateUI(); + var20.enableInputMethods(true); + var17.add((java.awt.Component)var18, (java.lang.Object)true); + java.awt.Dimension var29 = var18.getPreferredSize(); + var10.setSize(var29); + java.awt.Dimension var31 = var0.getSize(var29); + SpaceWar.SpacePanel var32 = new SpaceWar.SpacePanel(); + java.awt.Color var33 = var32.getBackground(); + var32.repaint(); + java.awt.im.InputMethodRequests var35 = var32.getInputMethodRequests(); + var32.setDoubleBuffered(true); + var32.show(false); + var32.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", (-1), 24); + boolean var44 = var32.getAutoscrolls(); + java.awt.Graphics var45 = var32.getGraphics(); + java.awt.Dimension var46 = var32.getMaximumSize(); + var0.setMinimumSize(var46); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var29); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var31); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var33); + + // Regression assertion (captures the current behavior of the code) + assertNull(var35); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var44 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var45); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var46); + + } + + public void test463() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test463"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + var0.setRequestFocusEnabled(false); + var0.reshape(100, 0, 100, 0); + javax.swing.event.AncestorListener[] var10 = var0.getAncestorListeners(); + var0.grabFocus(); + // The following exception was thrown during execution. + // This behavior will recorded for regression testing. + try { + java.awt.Point var12 = var0.getLocationOnScreen(); + fail("Expected exception of type java.awt.IllegalComponentStateException"); + } catch (java.awt.IllegalComponentStateException e) { + // Expected exception. + } + + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var10); + + } + + public void test464() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test464"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.setInheritsPopupMenu(false); + boolean var6 = var0.isDoubleBuffered(); + boolean var7 = var0.isMinimumSizeSet(); + java.awt.Font var8 = var0.getFont(); + java.awt.event.MouseListener[] var9 = var0.getMouseListeners(); + boolean var10 = var0.getAutoscrolls(); + java.awt.Dimension var11 = var0.preferredSize(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var9); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + } + + public void test465() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test465"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + java.awt.im.InputMethodRequests var3 = var0.getInputMethodRequests(); + var0.setDoubleBuffered(true); + var0.setInheritsPopupMenu(false); + javax.swing.plaf.PanelUI var8 = var0.getUI(); + java.util.Set var10 = var0.getFocusTraversalKeys(3); + var0.requestFocus(); + var0.setLocation(0, 24); + var0.doLayout(); + boolean var16 = var0.isForegroundSet(); + // The following exception was thrown during execution. + // This behavior will recorded for regression testing. + try { + java.awt.Component var18 = var0.getComponent(100); + fail("Expected exception of type java.lang.ArrayIndexOutOfBoundsException"); + } catch (java.lang.ArrayIndexOutOfBoundsException e) { + // Expected exception. + } + + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == true); + + } + + public void test466() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test466"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var1 = new SpaceWar.SpacePanel(); + java.awt.Color var2 = var1.getBackground(); + SpaceWar.SpacePanel var3 = new SpaceWar.SpacePanel(); + float var4 = var3.getAlignmentX(); + var3.setVisible(false); + var3.nextFocus(); + var3.updateUI(); + var3.enableInputMethods(true); + var0.add((java.awt.Component)var1, (java.lang.Object)true); + java.awt.Image var14 = var1.createImage(1, (-1)); + SpaceWar.SpacePanel var15 = new SpaceWar.SpacePanel(); + float var16 = var15.getAlignmentX(); + var15.setVisible(false); + var15.nextFocus(); + var15.updateUI(); + var15.enableInputMethods(true); + SpaceWar.SpacePanel var23 = new SpaceWar.SpacePanel(); + float var24 = var23.getAlignmentX(); + boolean var25 = var23.hasFocus(); + java.awt.Insets var26 = var23.getInsets(); + java.awt.Insets var27 = var15.getInsets(var26); + java.awt.Insets var28 = var1.getInsets(var26); + java.awt.Point var29 = var1.getMousePosition(); + SpaceWar.SpacePanel var30 = new SpaceWar.SpacePanel(); + float var31 = var30.getAlignmentX(); + var30.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var36 = var30.getUI(); + java.awt.im.InputMethodRequests var37 = var30.getInputMethodRequests(); + SpaceWar.SpacePanel var38 = new SpaceWar.SpacePanel(); + float var39 = var38.getAlignmentX(); + var38.setVisible(false); + var38.nextFocus(); + var38.updateUI(); + var38.enableInputMethods(true); + var38.setSize((-1), 1); + SpaceWar.SpacePanel var49 = new SpaceWar.SpacePanel(); + var49.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var30.add((java.awt.Component)var38, (java.lang.Object)"SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + java.awt.event.KeyListener[] var55 = var30.getKeyListeners(); + java.awt.FocusTraversalPolicy var56 = var30.getFocusTraversalPolicy(); + java.awt.Component var59 = var30.locate(3, 100); + SpaceWar.SpacePanel var60 = new SpaceWar.SpacePanel(); + float var61 = var60.getAlignmentX(); + var60.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var66 = var60.getMouseListeners(); + java.awt.Dimension var67 = var60.getPreferredSize(); + java.util.Locale var68 = var60.getLocale(); + var60.setFocusable(true); + var60.setSize(3, 10); + SpaceWar.SpacePanel var74 = new SpaceWar.SpacePanel(); + float var75 = var74.getAlignmentX(); + var74.setVisible(false); + java.awt.Dimension var78 = var74.getPreferredSize(); + boolean var79 = var74.getVerifyInputWhenFocusTarget(); + java.awt.Dimension var80 = var74.size(); + var60.setSize(var80); + var30.setMinimumSize(var80); + java.awt.Dimension var83 = var1.getSize(var80); + var1.setAlignmentX(1.0f); + boolean var86 = var1.isValid(); + boolean var87 = var1.getAutoscrolls(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var2); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var24 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var27); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var28); + + // Regression assertion (captures the current behavior of the code) + assertNull(var29); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var31 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var36); + + // Regression assertion (captures the current behavior of the code) + assertNull(var37); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var39 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var55); + + // Regression assertion (captures the current behavior of the code) + assertNull(var56); + + // Regression assertion (captures the current behavior of the code) + assertNull(var59); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var61 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var66); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var67); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var68); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var75 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var78); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var79 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var80); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var83); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var86 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var87 == false); + + } + + public void test467() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test467"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + float var7 = var6.getAlignmentX(); + var6.setVisible(false); + java.awt.Dimension var10 = var6.getPreferredSize(); + var0.setMaximumSize(var10); + boolean var12 = var0.getVerifyInputWhenFocusTarget(); + boolean var13 = var0.isFontSet(); + boolean var14 = var0.getIgnoreRepaint(); + java.awt.Dimension var15 = var0.getMinimumSize(); + javax.swing.border.Border var16 = var0.getBorder(); + var0.hide(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNull(var16); + + } + + public void test468() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test468"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.setInheritsPopupMenu(false); + boolean var6 = var0.isDoubleBuffered(); + boolean var7 = var0.getAutoscrolls(); + var0.setAutoscrolls(false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == false); + + } + + public void test469() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test469"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + var0.show(false); + boolean var8 = var0.isPaintingForPrint(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var15 = var9.getMouseListeners(); + int var16 = var9.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var17 = var9.getInputMethodRequests(); + var0.addKeyListener((java.awt.event.KeyListener)var9); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + float var20 = var19.getAlignmentX(); + var19.setVisible(false); + boolean var23 = var19.isDoubleBuffered(); + var19.list(); + float var25 = var19.getAlignmentY(); + boolean var26 = var9.isFocusCycleRoot((java.awt.Container)var19); + boolean var27 = var19.isEnabled(); + java.awt.Dimension var28 = var19.getMaximumSize(); + var19.setFocusCycleRoot(false); + var19.setInheritsPopupMenu(false); + java.awt.Image var35 = var19.createImage((-1), 100); + java.util.Locale var36 = var19.getLocale(); + java.awt.Container var37 = var19.getFocusCycleRootAncestor(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var28); + + // Regression assertion (captures the current behavior of the code) + assertNull(var35); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var36); + + // Regression assertion (captures the current behavior of the code) + assertNull(var37); + + } + + public void test470() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test470"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.setInheritsPopupMenu(false); + boolean var6 = var0.isDoubleBuffered(); + java.awt.Rectangle var7 = var0.getBounds(); + var0.grabFocus(); + boolean var9 = var0.isEnabled(); + SpaceWar.SpacePanel var10 = new SpaceWar.SpacePanel(); + float var11 = var10.getAlignmentX(); + var10.setVisible(false); + var10.nextFocus(); + var10.requestFocus(); + boolean var16 = var10.getInheritsPopupMenu(); + boolean var17 = var10.isShowing(); + boolean var18 = var10.isCursorSet(); + java.awt.Dimension var19 = var10.getPreferredSize(); + var0.setMaximumSize(var19); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var19); + + } + + public void test471() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test471"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + java.awt.im.InputMethodRequests var3 = var0.getInputMethodRequests(); + var0.list(); + int var5 = var0.getHeight(); + var0.disable(); + var0.setFocusCycleRoot(true); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.setVisible(false); + SpaceWar.SpacePanel var13 = new SpaceWar.SpacePanel(); + java.awt.Color var14 = var13.getBackground(); + var9.setForeground(var14); + SpaceWar.SpacePanel var16 = new SpaceWar.SpacePanel(); + float var17 = var16.getAlignmentX(); + var16.setVisible(false); + boolean var20 = var16.isDoubleBuffered(); + java.awt.dnd.DropTarget var21 = var16.getDropTarget(); + var16.show(false); + java.awt.Rectangle var24 = var16.getVisibleRect(); + var9.repaint(var24); + java.awt.FocusTraversalPolicy var26 = var9.getFocusTraversalPolicy(); + var9.resetKeyboardActions(); + java.util.Locale var28 = var9.getLocale(); + var9.setEnabled(true); + java.awt.Rectangle var31 = var9.bounds(); + boolean var32 = var0.isFocusCycleRoot((java.awt.Container)var9); + var9.grabFocus(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var21); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var28); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var31); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var32 == false); + + } + + public void test472() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test472"); + + + SpaceWar.Player var0 = new SpaceWar.Player(); + var0.increasePower(25); + int var3 = var0.getR(); + int var4 = var0.getScore(); + var0.loseLife(); + boolean var6 = var0.isRecovering(); + var0.setFiring(false); + int var9 = var0.getScore(); + var0.setLeft(true); + var0.setScore(499); + var0.setUp(false); + var0.update(); + var0.setScore(505); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == 25); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0); + + } + + public void test473() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test473"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + float var7 = var6.getAlignmentX(); + var6.setVisible(false); + java.awt.Dimension var10 = var6.getPreferredSize(); + var0.setMaximumSize(var10); + boolean var12 = var0.getVerifyInputWhenFocusTarget(); + java.awt.Toolkit var13 = var0.getToolkit(); + java.lang.String var14 = var0.getUIClassID(); + java.awt.Dimension var15 = var0.getMinimumSize(); + var0.repaint(100L); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var14 + "' != '" + "PanelUI"+ "'", var14.equals("PanelUI")); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + } + + public void test474() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test474"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + SpaceWar.SpacePanel var5 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + java.awt.Color var7 = var6.getBackground(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + var8.nextFocus(); + var8.updateUI(); + var8.enableInputMethods(true); + var5.add((java.awt.Component)var6, (java.lang.Object)true); + java.awt.Dimension var17 = var6.getPreferredSize(); + var0.setMaximumSize(var17); + javax.swing.InputVerifier var19 = var0.getInputVerifier(); + java.awt.Toolkit var20 = var0.getToolkit(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + } + + public void test475() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test475"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + float var7 = var6.getAlignmentX(); + var6.setVisible(false); + java.awt.Dimension var10 = var6.getPreferredSize(); + var0.setMaximumSize(var10); + boolean var12 = var0.getVerifyInputWhenFocusTarget(); + boolean var13 = var0.isFontSet(); + boolean var14 = var0.getIgnoreRepaint(); + java.awt.Component var17 = var0.locate(1, 25); + boolean var18 = var0.isLightweight(); + var0.move(100, 500); + var0.grabFocus(); + int var23 = var0.getComponentCount(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == 0); + + } + + public void test476() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test476"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.reshape((-1), 1, (-1), 10); + SpaceWar.SpacePanel var10 = new SpaceWar.SpacePanel(); + java.awt.Color var11 = var10.getBackground(); + var10.repaint(); + var10.setRequestFocusEnabled(false); + var10.reshape(100, 0, 100, 0); + java.awt.Component var20 = var0.add((java.awt.Component)var10); + var0.enable(); + javax.accessibility.AccessibleContext var22 = var0.getAccessibleContext(); + java.awt.Color var23 = var0.getForeground(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var23); + + } + + public void test477() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test477"); + + + SpaceWar.PowerUp var3 = new SpaceWar.PowerUp(100, (-1.0d), 0.0d); + double var4 = var3.getR(); + double var5 = var3.getY(); + double var6 = var3.getY(); + int var7 = var3.getType(); + int var8 = var3.getType(); + double var9 = var3.getR(); + boolean var10 = var3.update(); + boolean var11 = var3.update(); + double var12 = var3.getR(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0.0d); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == 0.0d); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == 0.0d); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 100); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 100); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.0d); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == 0.0d); + + } + + public void test478() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test478"); + + + SpaceWar.PowerUp var3 = new SpaceWar.PowerUp(0, (-1.0d), 0.0d); + + } + + public void test479() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test479"); + + + SpaceWar.PowerUp var3 = new SpaceWar.PowerUp(499, 495.44236387443226d, 0.0d); + int var4 = var3.getType(); + int var5 = var3.getType(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 499); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == 499); + + } + + public void test480() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test480"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + boolean var6 = var0.isFocusCycleRoot(); + var0.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", 100, 0); + SpaceWar.SpacePanel var11 = new SpaceWar.SpacePanel(); + float var12 = var11.getAlignmentX(); + var11.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var17 = var11.getUI(); + var0.add((java.awt.Component)var11, (java.lang.Object)(short)0); + java.awt.event.InputMethodListener[] var20 = var11.getInputMethodListeners(); + java.awt.Toolkit var21 = var11.getToolkit(); + int var22 = var11.getDebugGraphicsOptions(); + boolean var23 = var11.isFocusable(); + int var24 = var11.getY(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var21); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var22 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var24 == 0); + + } + + public void test481() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test481"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var1 = new SpaceWar.SpacePanel(); + java.awt.Color var2 = var1.getBackground(); + SpaceWar.SpacePanel var3 = new SpaceWar.SpacePanel(); + float var4 = var3.getAlignmentX(); + var3.setVisible(false); + var3.nextFocus(); + var3.updateUI(); + var3.enableInputMethods(true); + var0.add((java.awt.Component)var1, (java.lang.Object)true); + var1.repaint(100L); + java.beans.PropertyChangeListener[] var14 = var1.getPropertyChangeListeners(); + var1.grabFocus(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var2); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + } + + public void test482() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test482"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + boolean var5 = javax.swing.JComponent.isLightweightComponent((java.awt.Component)var0); + boolean var6 = var0.isRequestFocusEnabled(); + java.awt.Dimension var7 = var0.getSize(); + var0.paintImmediately(100, 498, 1, 499); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var7); + + } + + public void test483() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test483"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var1 = new SpaceWar.SpacePanel(); + java.awt.Color var2 = var1.getBackground(); + SpaceWar.SpacePanel var3 = new SpaceWar.SpacePanel(); + float var4 = var3.getAlignmentX(); + var3.setVisible(false); + var3.nextFocus(); + var3.updateUI(); + var3.enableInputMethods(true); + var0.add((java.awt.Component)var1, (java.lang.Object)true); + java.awt.Image var14 = var1.createImage(1, (-1)); + java.awt.event.MouseListener[] var15 = var1.getMouseListeners(); + java.awt.Color var16 = var1.getBackground(); + boolean var17 = var1.getIgnoreRepaint(); + var1.enable(); + java.awt.Color var19 = var1.getBackground(); + boolean var22 = var1.contains(2, 399); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var2); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var22 == false); + + } + + public void test484() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test484"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + float var6 = var0.getAlignmentY(); + var0.repaint((-1L)); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.firePropertyChange("", (-1), 1); + java.awt.event.MouseMotionListener[] var15 = var9.getMouseMotionListeners(); + java.awt.event.ComponentListener[] var16 = var9.getComponentListeners(); + SpaceWar.SpacePanel var17 = new SpaceWar.SpacePanel(); + float var18 = var17.getAlignmentX(); + var17.setVisible(false); + var17.nextFocus(); + var17.repaint(1L); + SpaceWar.SpacePanel var24 = new SpaceWar.SpacePanel(); + float var25 = var24.getAlignmentX(); + var24.setVisible(false); + boolean var28 = var24.isDoubleBuffered(); + var24.list(); + SpaceWar.SpacePanel var30 = new SpaceWar.SpacePanel(); + float var31 = var30.getAlignmentX(); + var30.setVisible(false); + boolean var34 = var30.isDoubleBuffered(); + java.awt.dnd.DropTarget var35 = var30.getDropTarget(); + var30.show(false); + java.awt.Rectangle var38 = var30.getVisibleRect(); + java.awt.Rectangle var39 = var24.getBounds(var38); + var17.setBounds(var39); + var9.paintImmediately(var39); + var0.scrollRectToVisible(var39); + var0.setSize(10, 99); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var28 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var31 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var34 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var35); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var38); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var39); + + } + + public void test485() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test485"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + SpaceWar.SpacePanel var2 = new SpaceWar.SpacePanel(); + float var3 = var2.getAlignmentX(); + var2.setVisible(false); + java.awt.Dimension var6 = var2.getPreferredSize(); + boolean var7 = var2.getVerifyInputWhenFocusTarget(); + java.awt.Component var10 = var2.findComponentAt(10, 1); + var0.addKeyListener((java.awt.event.KeyListener)var2); + var2.repaint(100, (-1), (-1), 1); + java.awt.image.ColorModel var17 = var2.getColorModel(); + boolean var18 = var2.isFocusTraversalPolicyProvider(); + float var19 = var2.getAlignmentX(); + java.awt.event.FocusListener[] var20 = var2.getFocusListeners(); + SpaceWar.SpacePanel var21 = new SpaceWar.SpacePanel(); + float var22 = var21.getAlignmentX(); + var21.setVisible(false); + var21.nextFocus(); + var21.repaint(1L); + SpaceWar.SpacePanel var28 = new SpaceWar.SpacePanel(); + float var29 = var28.getAlignmentX(); + var28.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var34 = new SpaceWar.SpacePanel(); + float var35 = var34.getAlignmentX(); + var34.setVisible(false); + java.awt.Dimension var38 = var34.getPreferredSize(); + var28.setMaximumSize(var38); + var21.setPreferredSize(var38); + javax.swing.plaf.PanelUI var41 = var21.getUI(); + SpaceWar.SpacePanel var42 = new SpaceWar.SpacePanel(); + float var43 = var42.getAlignmentX(); + var42.setVisible(false); + var42.nextFocus(); + var42.reshape((-1), 1, (-1), 10); + var42.disable(); + java.awt.LayoutManager var53 = var42.getLayout(); + java.awt.Container var54 = var42.getParent(); + java.lang.String var55 = var42.getUIClassID(); + SpaceWar.Enemy var58 = new SpaceWar.Enemy(0, 10); + var21.add((java.awt.Component)var42, (java.lang.Object)10); + var42.invalidate(); + java.awt.Dimension var61 = var42.size(); + java.awt.Dimension var62 = var2.getSize(var61); + javax.swing.ActionMap var63 = var2.getActionMap(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var22 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var29 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var35 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var38); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var41); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var43 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var53); + + // Regression assertion (captures the current behavior of the code) + assertNull(var54); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var55 + "' != '" + "PanelUI"+ "'", var55.equals("PanelUI")); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var61); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var62); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var63); + + } + + public void test486() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test486"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.setFocusCycleRoot(true); + boolean var4 = var0.isValid(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == false); + + } + + public void test487() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test487"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + java.awt.Dimension var4 = var0.getPreferredSize(); + boolean var5 = var0.getVerifyInputWhenFocusTarget(); + java.awt.Component var8 = var0.findComponentAt(10, 1); + boolean var9 = var0.requestDefaultFocus(); + var0.firePropertyChange("hi!", false, true); + javax.swing.ActionMap var14 = var0.getActionMap(); + var0.setDebugGraphicsOptions(10); + boolean var17 = var0.isShowing(); + SpaceWar.SpacePanel var18 = new SpaceWar.SpacePanel(); + float var19 = var18.getAlignmentX(); + boolean var20 = var18.hasFocus(); + SpaceWar.SpacePanel var21 = new SpaceWar.SpacePanel(); + float var22 = var21.getAlignmentX(); + var21.setVisible(false); + var21.nextFocus(); + var21.reshape((-1), 1, (-1), 10); + var21.disable(); + java.awt.LayoutManager var32 = var21.getLayout(); + var21.setVisible(false); + var18.remove((java.awt.Component)var21); + var21.repaint(); + boolean var37 = var21.hasFocus(); + SpaceWar.SpacePanel var38 = new SpaceWar.SpacePanel(); + float var39 = var38.getAlignmentX(); + var38.firePropertyChange("", (-1), 1); + boolean var44 = var38.isFocusTraversalPolicyProvider(); + var0.putClientProperty((java.lang.Object)var21, (java.lang.Object)var44); + var0.setEnabled(false); + var0.transferFocusBackward(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var4); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var22 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var32); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var39 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var44 == false); + + } + + public void test488() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test488"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var1 = new SpaceWar.SpacePanel(); + java.awt.Color var2 = var1.getBackground(); + SpaceWar.SpacePanel var3 = new SpaceWar.SpacePanel(); + float var4 = var3.getAlignmentX(); + var3.setVisible(false); + var3.nextFocus(); + var3.updateUI(); + var3.enableInputMethods(true); + var0.add((java.awt.Component)var1, (java.lang.Object)true); + java.awt.Image var14 = var1.createImage(1, (-1)); + java.beans.PropertyChangeListener[] var15 = var1.getPropertyChangeListeners(); + SpaceWar.SpacePanel var16 = new SpaceWar.SpacePanel(); + java.awt.Color var17 = var16.getBackground(); + var16.repaint(); + java.awt.im.InputMethodRequests var19 = var16.getInputMethodRequests(); + int var20 = var16.countComponents(); + java.awt.event.ComponentListener[] var21 = var16.getComponentListeners(); + var16.removeNotify(); + java.awt.Component var25 = var16.getComponentAt(1, (-1)); + SpaceWar.SpacePanel var26 = new SpaceWar.SpacePanel(); + float var27 = var26.getAlignmentX(); + var26.setVisible(false); + SpaceWar.SpacePanel var30 = new SpaceWar.SpacePanel(); + java.awt.Color var31 = var30.getBackground(); + var26.setForeground(var31); + SpaceWar.SpacePanel var33 = new SpaceWar.SpacePanel(); + float var34 = var33.getAlignmentX(); + var33.setVisible(false); + boolean var37 = var33.isDoubleBuffered(); + java.awt.dnd.DropTarget var38 = var33.getDropTarget(); + var33.show(false); + java.awt.Rectangle var41 = var33.getVisibleRect(); + var26.repaint(var41); + java.awt.Component.BaselineResizeBehavior var43 = var26.getBaselineResizeBehavior(); + SpaceWar.SpacePanel var44 = new SpaceWar.SpacePanel(); + float var45 = var44.getAlignmentX(); + var44.setVisible(false); + var44.nextFocus(); + var44.repaint(1L); + SpaceWar.SpacePanel var51 = new SpaceWar.SpacePanel(); + float var52 = var51.getAlignmentX(); + var51.setVisible(false); + boolean var55 = var51.isDoubleBuffered(); + var51.list(); + SpaceWar.SpacePanel var57 = new SpaceWar.SpacePanel(); + float var58 = var57.getAlignmentX(); + var57.setVisible(false); + boolean var61 = var57.isDoubleBuffered(); + java.awt.dnd.DropTarget var62 = var57.getDropTarget(); + var57.show(false); + java.awt.Rectangle var65 = var57.getVisibleRect(); + java.awt.Rectangle var66 = var51.getBounds(var65); + var44.setBounds(var66); + var26.paintImmediately(var66); + var16.repaint(var66); + java.awt.Dimension var70 = var16.minimumSize(); + var1.setMinimumSize(var70); + java.awt.Component.BaselineResizeBehavior var72 = var1.getBaselineResizeBehavior(); + SpaceWar.SpacePanel var73 = new SpaceWar.SpacePanel(); + float var74 = var73.getAlignmentX(); + var73.setVisible(false); + SpaceWar.SpacePanel var77 = new SpaceWar.SpacePanel(); + java.awt.Color var78 = var77.getBackground(); + var73.setForeground(var78); + SpaceWar.SpacePanel var80 = new SpaceWar.SpacePanel(); + float var81 = var80.getAlignmentX(); + var80.setVisible(false); + boolean var84 = var80.isDoubleBuffered(); + java.awt.dnd.DropTarget var85 = var80.getDropTarget(); + var80.show(false); + java.awt.Rectangle var88 = var80.getVisibleRect(); + var73.repaint(var88); + java.awt.FocusTraversalPolicy var90 = var73.getFocusTraversalPolicy(); + java.awt.im.InputMethodRequests var91 = var73.getInputMethodRequests(); + javax.swing.JToolTip var92 = var73.createToolTip(); + java.awt.Dimension var93 = var73.getMinimumSize(); + var1.setMinimumSize(var93); + var1.setRequestFocusEnabled(false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var2); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var21); + + // Regression assertion (captures the current behavior of the code) + assertNull(var25); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var31); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var34 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var38); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var41); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var43); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var45 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var52 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var55 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var58 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var61 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var62); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var65); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var66); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var70); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var72); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var74 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var78); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var81 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var84 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var85); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var88); + + // Regression assertion (captures the current behavior of the code) + assertNull(var90); + + // Regression assertion (captures the current behavior of the code) + assertNull(var91); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var92); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var93); + + } + + public void test489() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test489"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + var0.show(false); + boolean var8 = var0.isPaintingForPrint(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var15 = var9.getMouseListeners(); + int var16 = var9.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var17 = var9.getInputMethodRequests(); + var0.addKeyListener((java.awt.event.KeyListener)var9); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + float var20 = var19.getAlignmentX(); + var19.setVisible(false); + boolean var23 = var19.isDoubleBuffered(); + var19.list(); + float var25 = var19.getAlignmentY(); + boolean var26 = var9.isFocusCycleRoot((java.awt.Container)var19); + javax.swing.JPopupMenu var27 = var19.getComponentPopupMenu(); + var19.move((-1), 100); + var19.validate(); + java.awt.Toolkit var32 = var19.getToolkit(); + SpaceWar.SpacePanel var33 = new SpaceWar.SpacePanel(); + float var34 = var33.getAlignmentX(); + var33.setVisible(false); + boolean var37 = var33.isDoubleBuffered(); + SpaceWar.SpacePanel var38 = new SpaceWar.SpacePanel(); + java.awt.Color var39 = var38.getBackground(); + var38.repaint(); + java.lang.Object var41 = var33.getClientProperty((java.lang.Object)var38); + var38.repaint(10, 1, 25, 0); + var19.removeKeyListener((java.awt.event.KeyListener)var38); + var38.grabFocus(); + var38.setDoubleBuffered(true); + boolean var51 = var38.isFocusable(); + java.awt.event.ContainerListener[] var52 = var38.getContainerListeners(); + java.awt.event.ComponentListener[] var53 = var38.getComponentListeners(); + javax.swing.InputMap var54 = var38.getInputMap(); + java.awt.dnd.DropTarget var55 = var38.getDropTarget(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var27); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var32); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var34 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var39); + + // Regression assertion (captures the current behavior of the code) + assertNull(var41); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var51 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var52); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var53); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var54); + + // Regression assertion (captures the current behavior of the code) + assertNull(var55); + + } + + public void test490() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test490"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + SpaceWar.SpacePanel var4 = new SpaceWar.SpacePanel(); + java.awt.Color var5 = var4.getBackground(); + var0.setForeground(var5); + SpaceWar.SpacePanel var7 = new SpaceWar.SpacePanel(); + float var8 = var7.getAlignmentX(); + var7.setVisible(false); + boolean var11 = var7.isDoubleBuffered(); + java.awt.dnd.DropTarget var12 = var7.getDropTarget(); + var7.show(false); + java.awt.Rectangle var15 = var7.getVisibleRect(); + var0.repaint(var15); + java.awt.FocusTraversalPolicy var17 = var0.getFocusTraversalPolicy(); + javax.swing.TransferHandler var18 = var0.getTransferHandler(); + javax.swing.JToolTip var19 = var0.createToolTip(); + boolean var20 = var19.isValidateRoot(); + var19.disable(); + int var22 = var19.countComponents(); + javax.swing.event.AncestorListener[] var23 = var19.getAncestorListeners(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var22 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var23); + + } + + public void test491() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test491"); + + + SpaceWar.Enemy var2 = new SpaceWar.Enemy(498, 24); + boolean var3 = var2.isDead(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == false); + + } + + public void test492() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test492"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var6 = var0.getUI(); + java.awt.im.InputMethodRequests var7 = var0.getInputMethodRequests(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + var8.nextFocus(); + var8.updateUI(); + var8.enableInputMethods(true); + var8.setSize((-1), 1); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + var19.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var0.add((java.awt.Component)var8, (java.lang.Object)"SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + java.awt.event.KeyListener[] var25 = var0.getKeyListeners(); + var0.reshape(10, 100, 3, 3); + javax.accessibility.AccessibleContext var31 = var0.getAccessibleContext(); + java.awt.Rectangle var32 = var0.getVisibleRect(); + int var33 = var0.getComponentCount(); + boolean var34 = var0.hasFocus(); + var0.firePropertyChange("", 236.64219853193276d, (-20.05877926032409d)); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var25); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var31); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var32); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var33 == 1); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var34 == false); + + } + + public void test493() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test493"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + java.awt.Dimension var4 = var0.getPreferredSize(); + boolean var5 = var0.getVerifyInputWhenFocusTarget(); + java.awt.event.MouseWheelListener[] var6 = var0.getMouseWheelListeners(); + java.awt.event.MouseWheelListener[] var7 = var0.getMouseWheelListeners(); + boolean var8 = var0.isShowing(); + java.awt.dnd.DropTarget var9 = var0.getDropTarget(); + var0.repaint(399, 0, 100, 3); + SpaceWar.SpacePanel var15 = new SpaceWar.SpacePanel(); + float var16 = var15.getAlignmentX(); + var15.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var21 = var15.getMouseListeners(); + var15.firePropertyChange("", 0.5f, 100.0f); + var15.enable(false); + var15.enable(); + SpaceWar.SpacePanel var29 = new SpaceWar.SpacePanel(); + var29.setName(""); + java.awt.Toolkit var32 = var29.getToolkit(); + var29.setEnabled(false); + var29.removeNotify(); + boolean var36 = var29.isDisplayable(); + SpaceWar.SpacePanel var37 = new SpaceWar.SpacePanel(); + java.awt.Color var38 = var37.getBackground(); + var37.repaint(); + var37.setRequestFocusEnabled(false); + var37.reshape(100, 0, 100, 0); + var37.requestFocus(); + java.awt.Rectangle var48 = var37.getVisibleRect(); + java.awt.Rectangle var49 = var37.getBounds(); + java.awt.im.InputMethodRequests var50 = var37.getInputMethodRequests(); + boolean var51 = var37.requestFocusInWindow(); + java.awt.Point var53 = var37.getMousePosition(false); + var37.setDebugGraphicsOptions(1); + java.awt.Graphics var56 = var37.getGraphics(); + var29.paintAll(var56); + var15.printComponents(var56); + var0.paintComponents(var56); + var0.show(); + var0.nextFocus(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var4); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var9); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var21); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var32); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var36 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var38); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var48); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var49); + + // Regression assertion (captures the current behavior of the code) + assertNull(var50); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var51 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var53); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var56); + + } + + public void test494() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test494"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + var0.show(false); + boolean var8 = var0.isPaintingForPrint(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var15 = var9.getMouseListeners(); + int var16 = var9.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var17 = var9.getInputMethodRequests(); + var0.addKeyListener((java.awt.event.KeyListener)var9); + var9.repaint(); + java.awt.Point var20 = var9.location(); + java.awt.Point var21 = var9.getLocation(); + java.awt.Component var22 = var9.getNextFocusableComponent(); + java.awt.FocusTraversalPolicy var23 = var9.getFocusTraversalPolicy(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var21); + + // Regression assertion (captures the current behavior of the code) + assertNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertNull(var23); + + } + + public void test495() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test495"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + java.awt.Dimension var4 = var0.getPreferredSize(); + boolean var5 = var0.getVerifyInputWhenFocusTarget(); + java.awt.Component var8 = var0.findComponentAt(10, 1); + boolean var9 = var0.requestDefaultFocus(); + boolean var10 = var0.isDoubleBuffered(); + boolean var11 = var0.isShowing(); + SpaceWar.SpacePanel var12 = new SpaceWar.SpacePanel(); + float var13 = var12.getAlignmentX(); + var12.setVisible(false); + var12.nextFocus(); + var12.repaint(1L); + var12.firePropertyChange("", (short)(-1), (short)(-1)); + var12.setBounds(400, 1, (-1), 10); + SpaceWar.SpacePanel var28 = new SpaceWar.SpacePanel(); + float var29 = var28.getAlignmentX(); + var28.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var34 = var28.getMouseListeners(); + var28.firePropertyChange("", 0.5f, 100.0f); + var28.enable(false); + var28.enable(); + SpaceWar.SpacePanel var42 = new SpaceWar.SpacePanel(); + var42.setName(""); + java.awt.Toolkit var45 = var42.getToolkit(); + var42.setEnabled(false); + var42.removeNotify(); + boolean var49 = var42.isDisplayable(); + SpaceWar.SpacePanel var50 = new SpaceWar.SpacePanel(); + java.awt.Color var51 = var50.getBackground(); + var50.repaint(); + var50.setRequestFocusEnabled(false); + var50.reshape(100, 0, 100, 0); + var50.requestFocus(); + java.awt.Rectangle var61 = var50.getVisibleRect(); + java.awt.Rectangle var62 = var50.getBounds(); + java.awt.im.InputMethodRequests var63 = var50.getInputMethodRequests(); + boolean var64 = var50.requestFocusInWindow(); + java.awt.Point var66 = var50.getMousePosition(false); + var50.setDebugGraphicsOptions(1); + java.awt.Graphics var69 = var50.getGraphics(); + var42.paintAll(var69); + var28.printComponents(var69); + var12.update(var69); + var0.print(var69); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var4); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var29 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var34); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var45); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var49 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var51); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var61); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var62); + + // Regression assertion (captures the current behavior of the code) + assertNull(var63); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var64 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var66); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var69); + + } + + public void test496() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test496"); + + + SpaceWar.Enemy var2 = new SpaceWar.Enemy(10, 3); + var2.hit(); + double var4 = var2.getX(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 278.4452028314304d); + + } + + public void test497() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test497"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var6 = var0.getMouseListeners(); + java.awt.Dimension var7 = var0.getPreferredSize(); + java.util.Locale var8 = var0.getLocale(); + var0.setFocusable(true); + var0.setSize(3, 10); + java.awt.im.InputMethodRequests var14 = var0.getInputMethodRequests(); + var0.setOpaque(false); + java.awt.Dimension var17 = var0.minimumSize(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var17); + + } + + public void test498() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test498"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + SpaceWar.SpacePanel var4 = new SpaceWar.SpacePanel(); + java.awt.Color var5 = var4.getBackground(); + var0.setForeground(var5); + SpaceWar.SpacePanel var7 = new SpaceWar.SpacePanel(); + float var8 = var7.getAlignmentX(); + var7.setVisible(false); + boolean var11 = var7.isDoubleBuffered(); + java.awt.dnd.DropTarget var12 = var7.getDropTarget(); + var7.show(false); + java.awt.Rectangle var15 = var7.getVisibleRect(); + var0.repaint(var15); + java.awt.FocusTraversalPolicy var17 = var0.getFocusTraversalPolicy(); + boolean var18 = var0.getAutoscrolls(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == false); + + } + + public void test499() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test499"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var6 = var0.getUI(); + java.awt.im.InputMethodRequests var7 = var0.getInputMethodRequests(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + var8.nextFocus(); + var8.updateUI(); + var8.enableInputMethods(true); + var8.setSize((-1), 1); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + var19.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var0.add((java.awt.Component)var8, (java.lang.Object)"SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + SpaceWar.SpacePanel var25 = new SpaceWar.SpacePanel(); + float var26 = var25.getAlignmentX(); + var25.setVisible(false); + java.awt.Dimension var29 = var25.getPreferredSize(); + java.awt.Toolkit var30 = var25.getToolkit(); + java.awt.Toolkit var31 = var25.getToolkit(); + java.awt.Component var32 = var8.add((java.awt.Component)var25); + var8.setDebugGraphicsOptions(0); + java.lang.String var35 = var8.getUIClassID(); + var8.resetKeyboardActions(); + boolean var37 = var8.isValidateRoot(); + java.awt.event.FocusListener[] var38 = var8.getFocusListeners(); + int var41 = var8.getBaseline(505, 3); + java.awt.Component var44 = var8.findComponentAt(25, 99); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var29); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var30); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var31); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var32); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var35 + "' != '" + "PanelUI"+ "'", var35.equals("PanelUI")); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var38); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var41 == (-1)); + + // Regression assertion (captures the current behavior of the code) + assertNull(var44); + + } + + public void test500() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest7.test500"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + var0.list(); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + float var7 = var6.getAlignmentX(); + var6.setVisible(false); + boolean var10 = var6.isDoubleBuffered(); + java.awt.dnd.DropTarget var11 = var6.getDropTarget(); + var6.show(false); + java.awt.Rectangle var14 = var6.getVisibleRect(); + java.awt.Rectangle var15 = var0.getBounds(var14); + javax.swing.JToolTip var16 = var0.createToolTip(); + var0.firePropertyChange("", false, false); + var0.setFocusTraversalKeysEnabled(false); + boolean var23 = var0.isValid(); + SpaceWar.SpacePanel var24 = new SpaceWar.SpacePanel(); + float var25 = var24.getAlignmentX(); + var24.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var30 = var24.getMouseListeners(); + int var31 = var24.getDebugGraphicsOptions(); + java.awt.Color var32 = var24.getBackground(); + var0.setForeground(var32); + java.awt.Color var34 = var0.getForeground(); + java.awt.dnd.DropTarget var35 = var0.getDropTarget(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var30); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var31 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var32); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var34); + + // Regression assertion (captures the current behavior of the code) + assertNull(var35); + + } + +} diff --git a/test/randoop/RandoopTest8.java b/test/randoop/RandoopTest8.java new file mode 100644 index 0000000..1a9cad5 --- /dev/null +++ b/test/randoop/RandoopTest8.java @@ -0,0 +1,36930 @@ +package randoop; + +import junit.framework.*; + +public class RandoopTest8 extends TestCase { + + public static boolean debug = false; + + public void test1() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test1"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + var0.show(false); + boolean var8 = var0.isPaintingForPrint(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var15 = var9.getMouseListeners(); + int var16 = var9.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var17 = var9.getInputMethodRequests(); + var0.addKeyListener((java.awt.event.KeyListener)var9); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + float var20 = var19.getAlignmentX(); + var19.setVisible(false); + boolean var23 = var19.isDoubleBuffered(); + var19.list(); + float var25 = var19.getAlignmentY(); + boolean var26 = var9.isFocusCycleRoot((java.awt.Container)var19); + javax.swing.JPopupMenu var27 = var19.getComponentPopupMenu(); + var19.firePropertyChange("hi!", 3, 0); + var19.setAlignmentY(100.0f); + boolean var34 = var19.getAutoscrolls(); + var19.invalidate(); + SpaceWar.SpacePanel var36 = new SpaceWar.SpacePanel(); + float var37 = var36.getAlignmentX(); + var36.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var42 = var36.getMouseListeners(); + java.awt.Dimension var43 = var36.getPreferredSize(); + java.util.Locale var44 = var36.getLocale(); + var36.setFocusable(true); + var36.setSize(3, 10); + var36.invalidate(); + javax.swing.plaf.PanelUI var51 = var36.getUI(); + var36.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", 1.0f, 0.5f); + var19.remove((java.awt.Component)var36); + java.awt.Insets var57 = var36.getInsets(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var27); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var34 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var42); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var43); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var44); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var51); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var57); + + } + + public void test2() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test2"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.updateUI(); + var0.enableInputMethods(true); + var0.resetKeyboardActions(); + java.awt.event.HierarchyListener[] var9 = var0.getHierarchyListeners(); + SpaceWar.SpacePanel var10 = new SpaceWar.SpacePanel(); + java.awt.Color var11 = var10.getBackground(); + var10.repaint(); + var10.setRequestFocusEnabled(false); + var10.reshape(100, 0, 100, 0); + java.beans.VetoableChangeListener[] var20 = var10.getVetoableChangeListeners(); + java.awt.Rectangle var21 = var10.getVisibleRect(); + var0.paintImmediately(var21); + SpaceWar.SpacePanel var23 = new SpaceWar.SpacePanel(); + float var24 = var23.getAlignmentX(); + var23.firePropertyChange("", (-1), 1); + java.awt.event.MouseMotionListener[] var29 = var23.getMouseMotionListeners(); + java.awt.event.ComponentListener[] var30 = var23.getComponentListeners(); + SpaceWar.SpacePanel var31 = new SpaceWar.SpacePanel(); + float var32 = var31.getAlignmentX(); + var31.setVisible(false); + var31.nextFocus(); + var31.repaint(1L); + SpaceWar.SpacePanel var38 = new SpaceWar.SpacePanel(); + float var39 = var38.getAlignmentX(); + var38.setVisible(false); + boolean var42 = var38.isDoubleBuffered(); + var38.list(); + SpaceWar.SpacePanel var44 = new SpaceWar.SpacePanel(); + float var45 = var44.getAlignmentX(); + var44.setVisible(false); + boolean var48 = var44.isDoubleBuffered(); + java.awt.dnd.DropTarget var49 = var44.getDropTarget(); + var44.show(false); + java.awt.Rectangle var52 = var44.getVisibleRect(); + java.awt.Rectangle var53 = var38.getBounds(var52); + var31.setBounds(var53); + var23.paintImmediately(var53); + java.awt.Point var56 = var23.getMousePosition(); + java.awt.image.BufferedImage var58 = var23.loadImg("SpaceWar.SpacePanel[,-1,1,-1x10,invalid,hidden,disabled,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + var23.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", 3, 100); + java.awt.ComponentOrientation var63 = var23.getComponentOrientation(); + var0.applyComponentOrientation(var63); + var0.removeAll(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var9); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var21); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var24 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var29); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var30); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var32 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var39 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var42 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var45 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var48 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var49); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var52); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var53); + + // Regression assertion (captures the current behavior of the code) + assertNull(var56); + + // Regression assertion (captures the current behavior of the code) + assertNull(var58); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var63); + + } + + public void test3() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test3"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.updateUI(); + var0.enableInputMethods(true); + java.awt.Point var8 = var0.location(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.setVisible(false); + var9.nextFocus(); + java.awt.Component var14 = var0.add((java.awt.Component)var9); + SpaceWar.SpacePanel var15 = new SpaceWar.SpacePanel(); + float var16 = var15.getAlignmentX(); + var15.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var21 = var15.getMouseListeners(); + java.awt.Dimension var22 = var15.getPreferredSize(); + java.util.Locale var23 = var15.getLocale(); + var15.setFocusable(true); + var15.setSize(3, 10); + SpaceWar.SpacePanel var29 = new SpaceWar.SpacePanel(); + float var30 = var29.getAlignmentX(); + var29.setVisible(false); + java.awt.Dimension var33 = var29.getPreferredSize(); + boolean var34 = var29.getVerifyInputWhenFocusTarget(); + java.awt.Dimension var35 = var29.size(); + var15.setSize(var35); + var0.resize(var35); + SpaceWar.SpacePanel var38 = new SpaceWar.SpacePanel(); + float var39 = var38.getAlignmentX(); + var38.setVisible(false); + boolean var42 = var38.isDoubleBuffered(); + var38.list(); + float var44 = var38.getAlignmentY(); + java.awt.event.ComponentListener[] var45 = var38.getComponentListeners(); + java.awt.Component var46 = var38.getNextFocusableComponent(); + boolean var47 = var38.isManagingFocus(); + javax.swing.border.Border var48 = var38.getBorder(); + java.lang.Object var49 = var38.getTreeLock(); + javax.swing.border.Border var50 = var38.getBorder(); + var38.setEnabled(false); + SpaceWar.SpacePanel var53 = new SpaceWar.SpacePanel(); + float var54 = var53.getAlignmentX(); + SpaceWar.SpacePanel var55 = new SpaceWar.SpacePanel(); + float var56 = var55.getAlignmentX(); + var55.setVisible(false); + java.awt.Dimension var59 = var55.getPreferredSize(); + boolean var60 = var55.getVerifyInputWhenFocusTarget(); + java.awt.Component var63 = var55.findComponentAt(10, 1); + var53.addKeyListener((java.awt.event.KeyListener)var55); + var55.repaint(100, (-1), (-1), 1); + java.awt.image.ColorModel var70 = var55.getColorModel(); + boolean var71 = var55.isFocusTraversalPolicyProvider(); + var55.show(false); + boolean var74 = var55.isManagingFocus(); + SpaceWar.SpacePanel var75 = new SpaceWar.SpacePanel(); + java.awt.Color var76 = var75.getBackground(); + var75.repaint(); + var75.setRequestFocusEnabled(false); + var75.reshape(100, 0, 100, 0); + var75.requestFocus(); + java.awt.Rectangle var86 = var75.getVisibleRect(); + java.awt.Rectangle var87 = var75.getBounds(); + java.awt.im.InputMethodRequests var88 = var75.getInputMethodRequests(); + boolean var89 = var75.requestFocusInWindow(); + java.awt.Point var91 = var75.getMousePosition(false); + var75.setDebugGraphicsOptions(1); + java.awt.Graphics var94 = var75.getGraphics(); + var55.paint(var94); + var38.paintComponents(var94); + var0.paint(var94); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var21); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var23); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var30 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var33); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var34 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var35); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var39 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var42 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var44 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var45); + + // Regression assertion (captures the current behavior of the code) + assertNull(var46); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var47 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var48); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var49); + + // Regression assertion (captures the current behavior of the code) + assertNull(var50); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var54 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var56 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var59); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var60 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var63); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var70); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var71 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var74 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var76); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var86); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var87); + + // Regression assertion (captures the current behavior of the code) + assertNull(var88); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var89 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var91); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var94); + + } + + public void test4() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test4"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + var0.setName(""); + java.awt.Dimension var3 = var0.minimumSize(); + boolean var4 = var0.isDoubleBuffered(); + SpaceWar.SpacePanel var5 = new SpaceWar.SpacePanel(); + float var6 = var5.getAlignmentX(); + var5.setVisible(false); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + java.awt.Color var10 = var9.getBackground(); + var5.setForeground(var10); + SpaceWar.SpacePanel var12 = new SpaceWar.SpacePanel(); + float var13 = var12.getAlignmentX(); + var12.setVisible(false); + boolean var16 = var12.isDoubleBuffered(); + java.awt.dnd.DropTarget var17 = var12.getDropTarget(); + var12.show(false); + java.awt.Rectangle var20 = var12.getVisibleRect(); + var5.repaint(var20); + java.awt.FocusTraversalPolicy var22 = var5.getFocusTraversalPolicy(); + java.awt.im.InputMethodRequests var23 = var5.getInputMethodRequests(); + var5.layout(); + boolean var25 = var5.isFocusTraversalPolicyProvider(); + java.awt.Component var26 = var0.add((java.awt.Component)var5); + var5.setOpaque(false); + float var29 = var5.getAlignmentX(); + var5.setVisible(true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertNull(var23); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var29 == 0.5f); + + } + + public void test5() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test5"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + boolean var2 = var0.hasFocus(); + java.awt.Insets var3 = var0.getInsets(); + java.awt.Rectangle var4 = var0.bounds(); + java.awt.event.MouseMotionListener[] var5 = var0.getMouseMotionListeners(); + boolean var6 = var0.isMaximumSizeSet(); + java.awt.LayoutManager var7 = var0.getLayout(); + java.awt.Rectangle var8 = var0.getBounds(); + var0.transferFocusBackward(); + SpaceWar.SpacePanel var10 = new SpaceWar.SpacePanel(); + float var11 = var10.getAlignmentX(); + var10.setVisible(false); + boolean var14 = var10.isDoubleBuffered(); + var10.list(); + float var16 = var10.getAlignmentY(); + java.awt.event.ComponentListener[] var17 = var10.getComponentListeners(); + java.awt.Component var18 = var10.getNextFocusableComponent(); + boolean var19 = var10.isManagingFocus(); + javax.swing.border.Border var20 = var10.getBorder(); + java.lang.Object var21 = var10.getTreeLock(); + javax.swing.border.Border var22 = var10.getBorder(); + var10.setEnabled(false); + SpaceWar.SpacePanel var25 = new SpaceWar.SpacePanel(); + float var26 = var25.getAlignmentX(); + SpaceWar.SpacePanel var27 = new SpaceWar.SpacePanel(); + float var28 = var27.getAlignmentX(); + var27.setVisible(false); + java.awt.Dimension var31 = var27.getPreferredSize(); + boolean var32 = var27.getVerifyInputWhenFocusTarget(); + java.awt.Component var35 = var27.findComponentAt(10, 1); + var25.addKeyListener((java.awt.event.KeyListener)var27); + var27.repaint(100, (-1), (-1), 1); + java.awt.image.ColorModel var42 = var27.getColorModel(); + boolean var43 = var27.isFocusTraversalPolicyProvider(); + var27.show(false); + boolean var46 = var27.isManagingFocus(); + SpaceWar.SpacePanel var47 = new SpaceWar.SpacePanel(); + java.awt.Color var48 = var47.getBackground(); + var47.repaint(); + var47.setRequestFocusEnabled(false); + var47.reshape(100, 0, 100, 0); + var47.requestFocus(); + java.awt.Rectangle var58 = var47.getVisibleRect(); + java.awt.Rectangle var59 = var47.getBounds(); + java.awt.im.InputMethodRequests var60 = var47.getInputMethodRequests(); + boolean var61 = var47.requestFocusInWindow(); + java.awt.Point var63 = var47.getMousePosition(false); + var47.setDebugGraphicsOptions(1); + java.awt.Graphics var66 = var47.getGraphics(); + var27.paint(var66); + var10.paintComponents(var66); + var0.update(var66); + var0.reshape(24, 25, 100, 1); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var2 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var4); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var21); + + // Regression assertion (captures the current behavior of the code) + assertNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var28 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var31); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var32 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var35); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var42); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var43 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var46 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var48); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var58); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var59); + + // Regression assertion (captures the current behavior of the code) + assertNull(var60); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var61 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var63); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var66); + + } + + public void test6() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test6"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + SpaceWar.SpacePanel var4 = new SpaceWar.SpacePanel(); + java.awt.Color var5 = var4.getBackground(); + var0.setForeground(var5); + SpaceWar.SpacePanel var7 = new SpaceWar.SpacePanel(); + float var8 = var7.getAlignmentX(); + var7.setVisible(false); + boolean var11 = var7.isDoubleBuffered(); + java.awt.dnd.DropTarget var12 = var7.getDropTarget(); + var7.show(false); + java.awt.Rectangle var15 = var7.getVisibleRect(); + var0.repaint(var15); + java.awt.FocusTraversalPolicy var17 = var0.getFocusTraversalPolicy(); + java.awt.im.InputMethodRequests var18 = var0.getInputMethodRequests(); + var0.layout(); + var0.setDebugGraphicsOptions(10); + java.awt.event.FocusListener[] var22 = var0.getFocusListeners(); + javax.swing.border.Border var23 = var0.getBorder(); + boolean var24 = var0.getIgnoreRepaint(); + var0.enable(); + java.lang.String var26 = var0.getName(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertNull(var23); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var24 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var26); + + } + + public void test7() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test7"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.reshape((-1), 1, (-1), 10); + var0.disable(); + java.awt.LayoutManager var11 = var0.getLayout(); + var0.setVisible(false); + SpaceWar.SpacePanel var14 = new SpaceWar.SpacePanel(); + float var15 = var14.getAlignmentX(); + var14.setVisible(false); + var14.nextFocus(); + var14.updateUI(); + java.util.Locale var20 = var14.getLocale(); + var0.setLocale(var20); + boolean var22 = var0.isRequestFocusEnabled(); + float var23 = var0.getAlignmentX(); + var0.setBounds(499, (-1), 500, 25); + java.awt.Insets var29 = var0.getInsets(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var22 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var29); + + } + + public void test8() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test8"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var6 = var0.getMouseListeners(); + int var7 = var0.getDebugGraphicsOptions(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + boolean var12 = var8.isDoubleBuffered(); + java.awt.dnd.DropTarget var13 = var8.getDropTarget(); + var8.show(false); + java.awt.Rectangle var16 = var8.getVisibleRect(); + var0.paintImmediately(var16); + java.awt.Rectangle var18 = var0.getBounds(); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + float var20 = var19.getAlignmentX(); + var19.setVisible(false); + boolean var23 = var19.isDoubleBuffered(); + java.awt.dnd.DropTarget var24 = var19.getDropTarget(); + var19.show(false); + boolean var27 = var19.isPaintingForPrint(); + SpaceWar.SpacePanel var28 = new SpaceWar.SpacePanel(); + float var29 = var28.getAlignmentX(); + var28.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var34 = var28.getMouseListeners(); + int var35 = var28.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var36 = var28.getInputMethodRequests(); + var19.addKeyListener((java.awt.event.KeyListener)var28); + SpaceWar.SpacePanel var38 = new SpaceWar.SpacePanel(); + float var39 = var38.getAlignmentX(); + var38.setVisible(false); + boolean var42 = var38.isDoubleBuffered(); + var38.list(); + float var44 = var38.getAlignmentY(); + boolean var45 = var28.isFocusCycleRoot((java.awt.Container)var38); + boolean var46 = var38.isEnabled(); + java.awt.Dimension var47 = var38.getMaximumSize(); + var38.setFocusCycleRoot(false); + java.awt.event.ComponentListener[] var50 = var38.getComponentListeners(); + boolean var51 = var38.isFocusCycleRoot(); + var38.show(); + SpaceWar.SpacePanel var53 = new SpaceWar.SpacePanel(); + float var54 = var53.getAlignmentX(); + var53.setVisible(false); + boolean var57 = var53.isDoubleBuffered(); + var53.list(); + SpaceWar.SpacePanel var59 = new SpaceWar.SpacePanel(); + float var60 = var59.getAlignmentX(); + var59.setVisible(false); + boolean var63 = var59.isDoubleBuffered(); + java.awt.dnd.DropTarget var64 = var59.getDropTarget(); + var59.show(false); + java.awt.Rectangle var67 = var59.getVisibleRect(); + java.awt.Rectangle var68 = var53.getBounds(var67); + javax.swing.JToolTip var69 = var53.createToolTip(); + var53.firePropertyChange("", false, false); + var53.revalidate(); + int var75 = var53.getComponentCount(); + var0.add((java.awt.Component)var38, (java.lang.Object)var75); + var0.setBounds(3, 100, 100, (-1)); + java.lang.String var82 = var0.getUIClassID(); + boolean var83 = var0.isDisplayable(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var29 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var34); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var35 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var36); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var39 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var42 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var44 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var45 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var46 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var47); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var50); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var51 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var54 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var57 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var60 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var63 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var64); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var67); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var68); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var69); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var75 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var82 + "' != '" + "PanelUI"+ "'", var82.equals("PanelUI")); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var83 == false); + + } + + public void test9() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test9"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + var0.show(false); + boolean var8 = var0.isPaintingForPrint(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var15 = var9.getMouseListeners(); + int var16 = var9.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var17 = var9.getInputMethodRequests(); + var0.addKeyListener((java.awt.event.KeyListener)var9); + var9.removeNotify(); + SpaceWar.SpacePanel var20 = new SpaceWar.SpacePanel(); + java.awt.Color var21 = var20.getBackground(); + var20.repaint(); + var20.setRequestFocusEnabled(false); + var20.reshape(100, 0, 100, 0); + var20.requestFocus(); + SpaceWar.SpacePanel var31 = new SpaceWar.SpacePanel(); + float var32 = var31.getAlignmentX(); + var31.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var37 = var31.getUI(); + java.awt.im.InputMethodRequests var38 = var31.getInputMethodRequests(); + SpaceWar.SpacePanel var39 = new SpaceWar.SpacePanel(); + float var40 = var39.getAlignmentX(); + var39.setVisible(false); + var39.nextFocus(); + var39.updateUI(); + var39.enableInputMethods(true); + var39.setSize((-1), 1); + SpaceWar.SpacePanel var50 = new SpaceWar.SpacePanel(); + var50.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var31.add((java.awt.Component)var39, (java.lang.Object)"SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + SpaceWar.SpacePanel var56 = new SpaceWar.SpacePanel(); + var56.setName(""); + java.awt.ComponentOrientation var59 = var56.getComponentOrientation(); + var31.applyComponentOrientation(var59); + var20.setComponentOrientation(var59); + var9.applyComponentOrientation(var59); + java.awt.Color var63 = var9.getForeground(); + SpaceWar.SpacePanel var65 = new SpaceWar.SpacePanel(); + java.awt.Color var66 = var65.getBackground(); + var65.repaint(); + java.awt.im.InputMethodRequests var68 = var65.getInputMethodRequests(); + java.awt.Component var69 = var9.add("", (java.awt.Component)var65); + boolean var71 = var9.requestFocus(true); + java.lang.Object var72 = var9.getTreeLock(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var21); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var32 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var37); + + // Regression assertion (captures the current behavior of the code) + assertNull(var38); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var40 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var59); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var63); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var66); + + // Regression assertion (captures the current behavior of the code) + assertNull(var68); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var69); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var71 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var72); + + } + + public void test10() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test10"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var6 = var0.getMouseListeners(); + java.awt.Dimension var7 = var0.getPreferredSize(); + java.util.Locale var8 = var0.getLocale(); + java.lang.String var9 = var0.getToolTipText(); + var0.firePropertyChange("SpaceWar.SpacePanel[,-1,1,-1x10,invalid,hidden,disabled,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", 10, 1); + boolean var14 = var0.getAutoscrolls(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertNull(var9); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == false); + + } + + public void test11() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test11"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + float var7 = var6.getAlignmentX(); + var6.setVisible(false); + SpaceWar.SpacePanel var10 = new SpaceWar.SpacePanel(); + java.awt.Color var11 = var10.getBackground(); + var6.setForeground(var11); + var0.setBackground(var11); + var0.grabFocus(); + SpaceWar.SpacePanel var15 = new SpaceWar.SpacePanel(); + float var16 = var15.getAlignmentX(); + var15.setVisible(false); + boolean var19 = var15.isDoubleBuffered(); + java.awt.dnd.DropTarget var20 = var15.getDropTarget(); + boolean var21 = var15.isFocusCycleRoot(); + SpaceWar.SpacePanel var22 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var23 = new SpaceWar.SpacePanel(); + java.awt.Color var24 = var23.getBackground(); + SpaceWar.SpacePanel var25 = new SpaceWar.SpacePanel(); + float var26 = var25.getAlignmentX(); + var25.setVisible(false); + var25.nextFocus(); + var25.updateUI(); + var25.enableInputMethods(true); + var22.add((java.awt.Component)var23, (java.lang.Object)true); + java.awt.Dimension var34 = var23.getPreferredSize(); + var15.setSize(var34); + var0.setMaximumSize(var34); + var0.enable(); + var0.repaint(0L); + var0.list(); + java.awt.im.InputMethodRequests var41 = var0.getInputMethodRequests(); + boolean var42 = var0.isFocusTraversalPolicySet(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var34); + + // Regression assertion (captures the current behavior of the code) + assertNull(var41); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var42 == false); + + } + + public void test12() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test12"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + java.awt.im.InputMethodRequests var3 = var0.getInputMethodRequests(); + var0.list(); + java.awt.Dimension var5 = var0.minimumSize(); + java.awt.Component var6 = var0.getNextFocusableComponent(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertNull(var6); + + } + + public void test13() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test13"); + + + SpaceWar.Player var0 = new SpaceWar.Player(); + boolean var1 = var0.isRecovering(); + var0.setRigth(false); + var0.setScore(0); + var0.setFiring(true); + var0.setDown(true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == false); + + } + + public void test14() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test14"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + var0.show(false); + boolean var8 = var0.isPaintingForPrint(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var15 = var9.getMouseListeners(); + int var16 = var9.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var17 = var9.getInputMethodRequests(); + var0.addKeyListener((java.awt.event.KeyListener)var9); + boolean var19 = var0.isDisplayable(); + java.awt.Insets var20 = var0.getInsets(); + float var21 = var0.getAlignmentX(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == 0.5f); + + } + + public void test15() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test15"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + SpaceWar.SpacePanel var4 = new SpaceWar.SpacePanel(); + java.awt.Color var5 = var4.getBackground(); + var0.setForeground(var5); + SpaceWar.SpacePanel var7 = new SpaceWar.SpacePanel(); + float var8 = var7.getAlignmentX(); + var7.setVisible(false); + boolean var11 = var7.isDoubleBuffered(); + java.awt.dnd.DropTarget var12 = var7.getDropTarget(); + var7.show(false); + java.awt.Rectangle var15 = var7.getVisibleRect(); + var0.repaint(var15); + java.awt.FocusTraversalPolicy var17 = var0.getFocusTraversalPolicy(); + SpaceWar.SpacePanel var18 = new SpaceWar.SpacePanel(); + float var19 = var18.getAlignmentX(); + var18.firePropertyChange("", (-1), 1); + boolean var24 = var18.isFocusOwner(); + SpaceWar.SpacePanel var26 = new SpaceWar.SpacePanel(); + float var27 = var26.getAlignmentX(); + var26.setVisible(false); + java.awt.Dimension var30 = var26.getPreferredSize(); + java.awt.Toolkit var31 = var26.getToolkit(); + SpaceWar.SpacePanel var32 = new SpaceWar.SpacePanel(); + var32.setName(""); + int var35 = var32.getX(); + SpaceWar.SpacePanel var36 = new SpaceWar.SpacePanel(); + float var37 = var36.getAlignmentX(); + var36.setVisible(false); + var36.nextFocus(); + SpaceWar.SpacePanel var41 = new SpaceWar.SpacePanel(); + float var42 = var41.getAlignmentX(); + var41.setVisible(false); + SpaceWar.SpacePanel var45 = new SpaceWar.SpacePanel(); + java.awt.Color var46 = var45.getBackground(); + var41.setForeground(var46); + var36.setBackground(var46); + var32.setBackground(var46); + var26.setForeground(var46); + var18.putClientProperty((java.lang.Object)(byte)100, (java.lang.Object)var46); + var0.setBackground(var46); + SpaceWar.SpacePanel var53 = new SpaceWar.SpacePanel(); + float var54 = var53.getAlignmentX(); + var53.setVisible(false); + boolean var57 = var53.isDoubleBuffered(); + java.awt.dnd.DropTarget var58 = var53.getDropTarget(); + var53.show(false); + boolean var61 = var53.isPaintingForPrint(); + SpaceWar.SpacePanel var62 = new SpaceWar.SpacePanel(); + float var63 = var62.getAlignmentX(); + SpaceWar.SpacePanel var64 = new SpaceWar.SpacePanel(); + float var65 = var64.getAlignmentX(); + var64.setVisible(false); + java.awt.Dimension var68 = var64.getPreferredSize(); + boolean var69 = var64.getVerifyInputWhenFocusTarget(); + java.awt.Component var72 = var64.findComponentAt(10, 1); + var62.addKeyListener((java.awt.event.KeyListener)var64); + java.awt.Dimension var74 = var64.getMinimumSize(); + var53.setMinimumSize(var74); + java.awt.Dimension var76 = var0.getSize(var74); + java.awt.Rectangle var77 = var0.getVisibleRect(); + int var78 = var0.countComponents(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var24 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var30); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var31); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var35 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var42 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var46); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var54 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var57 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var58); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var61 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var63 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var65 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var68); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var69 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var72); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var74); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var76); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var77); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var78 == 0); + + } + + public void test16() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test16"); + + + SpaceWar.PowerUp var3 = new SpaceWar.PowerUp(100, (-1.0d), 0.0d); + double var4 = var3.getR(); + double var5 = var3.getY(); + double var6 = var3.getY(); + int var7 = var3.getType(); + int var8 = var3.getType(); + double var9 = var3.getR(); + boolean var10 = var3.update(); + double var11 = var3.getR(); + double var12 = var3.getX(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0.0d); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == 0.0d); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == 0.0d); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 100); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 100); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.0d); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == 0.0d); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == (-1.0d)); + + } + + public void test17() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test17"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + java.awt.im.InputMethodRequests var3 = var0.getInputMethodRequests(); + var0.setDoubleBuffered(true); + var0.setInheritsPopupMenu(false); + javax.swing.plaf.PanelUI var8 = var0.getUI(); + java.util.Set var10 = var0.getFocusTraversalKeys(3); + var0.enable(); + SpaceWar.SpacePanel var12 = new SpaceWar.SpacePanel(); + float var13 = var12.getAlignmentX(); + var12.setVisible(false); + boolean var16 = var12.isDoubleBuffered(); + java.awt.dnd.DropTarget var17 = var12.getDropTarget(); + var12.show(false); + java.awt.Rectangle var20 = var12.getVisibleRect(); + java.awt.Toolkit var21 = var12.getToolkit(); + java.awt.event.MouseMotionListener[] var22 = var12.getMouseMotionListeners(); + SpaceWar.SpacePanel var23 = new SpaceWar.SpacePanel(); + float var24 = var23.getAlignmentX(); + var23.setVisible(false); + boolean var27 = var23.isDoubleBuffered(); + java.awt.dnd.DropTarget var28 = var23.getDropTarget(); + var23.show(false); + boolean var31 = var23.isPaintingForPrint(); + SpaceWar.SpacePanel var32 = new SpaceWar.SpacePanel(); + float var33 = var32.getAlignmentX(); + var32.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var38 = var32.getMouseListeners(); + int var39 = var32.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var40 = var32.getInputMethodRequests(); + var23.addKeyListener((java.awt.event.KeyListener)var32); + SpaceWar.SpacePanel var42 = new SpaceWar.SpacePanel(); + float var43 = var42.getAlignmentX(); + var42.setVisible(false); + boolean var46 = var42.isDoubleBuffered(); + var42.list(); + float var48 = var42.getAlignmentY(); + boolean var49 = var32.isFocusCycleRoot((java.awt.Container)var42); + javax.swing.JPopupMenu var50 = var42.getComponentPopupMenu(); + var42.move((-1), 100); + var42.validate(); + java.awt.Rectangle var55 = var42.getVisibleRect(); + var12.paintImmediately(var55); + var12.setDoubleBuffered(false); + SpaceWar.SpacePanel var59 = new SpaceWar.SpacePanel(); + java.awt.Color var60 = var59.getBackground(); + var59.repaint(); + java.awt.im.InputMethodRequests var62 = var59.getInputMethodRequests(); + int var63 = var59.countComponents(); + java.awt.event.ComponentListener[] var64 = var59.getComponentListeners(); + var59.transferFocusBackward(); + SpaceWar.SpacePanel var67 = new SpaceWar.SpacePanel(); + float var68 = var67.getAlignmentX(); + var67.setVisible(false); + boolean var71 = var67.isDoubleBuffered(); + var67.enable(false); + SpaceWar.SpacePanel var74 = new SpaceWar.SpacePanel(); + float var75 = var74.getAlignmentX(); + boolean var76 = var74.hasFocus(); + java.awt.Insets var77 = var74.getInsets(); + java.awt.Rectangle var78 = var74.bounds(); + var67.repaint(var78); + java.awt.Component var80 = var59.add("", (java.awt.Component)var67); + SpaceWar.SpacePanel var81 = new SpaceWar.SpacePanel(); + float var82 = var81.getAlignmentX(); + var81.setVisible(false); + var81.nextFocus(); + var81.reshape((-1), 1, (-1), 10); + java.util.Set var92 = var81.getFocusTraversalKeys(3); + java.awt.Point var93 = var81.getLocation(); + var80.setLocation(var93); + java.awt.Component var95 = var12.getComponentAt(var93); + boolean var96 = var0.contains(var93); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var21); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var24 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var28); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var31 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var33 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var38); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var39 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var40); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var43 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var46 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var48 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var49 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var50); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var55); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var60); + + // Regression assertion (captures the current behavior of the code) + assertNull(var62); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var63 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var64); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var68 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var71 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var75 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var76 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var77); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var78); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var80); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var82 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var92); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var93); + + // Regression assertion (captures the current behavior of the code) + assertNull(var95); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var96 == false); + + } + + public void test18() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test18"); + + + SpaceWar.Text var4 = new SpaceWar.Text(458.28613931962985d, (-8.529389630162045d), 10L, "SpaceWar.SpacePanel[,100,0,100x0,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + + } + + public void test19() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test19"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + boolean var2 = var0.hasFocus(); + boolean var3 = var0.isPreferredSizeSet(); + SpaceWar.SpacePanel var4 = new SpaceWar.SpacePanel(); + java.awt.Color var5 = var4.getBackground(); + var4.repaint(); + var4.setRequestFocusEnabled(false); + int var9 = var0.getComponentZOrder((java.awt.Component)var4); + java.awt.GraphicsConfiguration var10 = var4.getGraphicsConfiguration(); + var4.enable(); + SpaceWar.SpacePanel var12 = new SpaceWar.SpacePanel(); + float var13 = var12.getAlignmentX(); + var12.setVisible(false); + boolean var16 = var12.isDoubleBuffered(); + java.awt.dnd.DropTarget var17 = var12.getDropTarget(); + var12.show(false); + java.awt.Rectangle var20 = var12.getVisibleRect(); + java.awt.image.BufferedImage var22 = var12.loadImg("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + java.awt.ComponentOrientation var23 = var12.getComponentOrientation(); + boolean var24 = var12.isPaintingTile(); + boolean var25 = var12.isOptimizedDrawingEnabled(); + var12.resetKeyboardActions(); + java.awt.event.KeyListener[] var27 = var12.getKeyListeners(); + SpaceWar.SpacePanel var28 = new SpaceWar.SpacePanel(); + float var29 = var28.getAlignmentX(); + var28.setVisible(false); + var28.nextFocus(); + var28.reshape((-1), 1, (-1), 10); + var28.disable(); + boolean var39 = var28.isFocusable(); + int var40 = var28.getHeight(); + javax.swing.InputVerifier var41 = var28.getInputVerifier(); + java.awt.Graphics var42 = var28.getGraphics(); + java.awt.Color var43 = var28.getForeground(); + SpaceWar.SpacePanel var44 = new SpaceWar.SpacePanel(); + float var45 = var44.getAlignmentX(); + var44.setVisible(false); + boolean var48 = var44.isDoubleBuffered(); + java.awt.dnd.DropTarget var49 = var44.getDropTarget(); + var44.show(false); + java.awt.Rectangle var52 = var44.getVisibleRect(); + java.awt.Toolkit var53 = var44.getToolkit(); + java.awt.event.MouseMotionListener[] var54 = var44.getMouseMotionListeners(); + SpaceWar.SpacePanel var55 = new SpaceWar.SpacePanel(); + float var56 = var55.getAlignmentX(); + var55.setVisible(false); + boolean var59 = var55.isDoubleBuffered(); + java.awt.dnd.DropTarget var60 = var55.getDropTarget(); + var55.show(false); + boolean var63 = var55.isPaintingForPrint(); + SpaceWar.SpacePanel var64 = new SpaceWar.SpacePanel(); + float var65 = var64.getAlignmentX(); + var64.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var70 = var64.getMouseListeners(); + int var71 = var64.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var72 = var64.getInputMethodRequests(); + var55.addKeyListener((java.awt.event.KeyListener)var64); + SpaceWar.SpacePanel var74 = new SpaceWar.SpacePanel(); + float var75 = var74.getAlignmentX(); + var74.setVisible(false); + boolean var78 = var74.isDoubleBuffered(); + var74.list(); + float var80 = var74.getAlignmentY(); + boolean var81 = var64.isFocusCycleRoot((java.awt.Container)var74); + javax.swing.JPopupMenu var82 = var74.getComponentPopupMenu(); + var74.move((-1), 100); + var74.validate(); + java.awt.Rectangle var87 = var74.getVisibleRect(); + var44.paintImmediately(var87); + var28.paintImmediately(var87); + var12.computeVisibleRect(var87); + var4.repaint(var87); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var2 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == (-1)); + + // Regression assertion (captures the current behavior of the code) + assertNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var23); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var24 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var27); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var29 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var39 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var40 == 10); + + // Regression assertion (captures the current behavior of the code) + assertNull(var41); + + // Regression assertion (captures the current behavior of the code) + assertNull(var42); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var43); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var45 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var48 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var49); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var52); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var53); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var54); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var56 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var59 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var60); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var63 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var65 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var70); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var71 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var72); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var75 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var78 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var80 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var81 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var82); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var87); + + } + + public void test20() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test20"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.updateUI(); + var0.enableInputMethods(true); + java.awt.Point var8 = var0.location(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.setVisible(false); + var9.nextFocus(); + java.awt.Component var14 = var0.add((java.awt.Component)var9); + SpaceWar.SpacePanel var15 = new SpaceWar.SpacePanel(); + float var16 = var15.getAlignmentX(); + var15.setVisible(false); + var15.nextFocus(); + var15.updateUI(); + var15.enableInputMethods(true); + java.awt.Point var24 = var15.getMousePosition(false); + SpaceWar.SpacePanel var25 = new SpaceWar.SpacePanel(); + float var26 = var25.getAlignmentX(); + SpaceWar.SpacePanel var27 = new SpaceWar.SpacePanel(); + float var28 = var27.getAlignmentX(); + var27.setVisible(false); + java.awt.Dimension var31 = var27.getPreferredSize(); + boolean var32 = var27.getVerifyInputWhenFocusTarget(); + java.awt.Component var35 = var27.findComponentAt(10, 1); + var25.addKeyListener((java.awt.event.KeyListener)var27); + var27.repaint(100, (-1), (-1), 1); + SpaceWar.SpacePanel var42 = new SpaceWar.SpacePanel(); + java.awt.Color var43 = var42.getBackground(); + var42.repaint(); + java.awt.im.InputMethodRequests var45 = var42.getInputMethodRequests(); + java.awt.GraphicsConfiguration var46 = var42.getGraphicsConfiguration(); + var27.remove((java.awt.Component)var42); + java.awt.Font var48 = var42.getFont(); + var15.setFont(var48); + var9.setFont(var48); + boolean var51 = var9.isFocusable(); + SpaceWar.SpacePanel var52 = new SpaceWar.SpacePanel(); + java.awt.Color var53 = var52.getBackground(); + var52.repaint(); + java.awt.im.InputMethodRequests var55 = var52.getInputMethodRequests(); + int var56 = var52.countComponents(); + java.awt.event.ComponentListener[] var57 = var52.getComponentListeners(); + SpaceWar.SpacePanel var58 = new SpaceWar.SpacePanel(); + float var59 = var58.getAlignmentX(); + var58.removeNotify(); + SpaceWar.SpacePanel var61 = new SpaceWar.SpacePanel(); + float var62 = var61.getAlignmentX(); + var61.setVisible(false); + boolean var65 = var61.isDoubleBuffered(); + var61.list(); + float var67 = var61.getAlignmentY(); + java.awt.Insets var68 = var61.getInsets(); + java.awt.Insets var69 = var58.getInsets(var68); + java.awt.Insets var70 = var52.getInsets(var69); + java.awt.Dimension var71 = var52.preferredSize(); + var52.enableInputMethods(true); + SpaceWar.SpacePanel var74 = new SpaceWar.SpacePanel(); + var74.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + java.awt.event.ContainerListener[] var79 = var74.getContainerListeners(); + var74.enableInputMethods(true); + // The following exception was thrown during execution. + // This behavior will recorded for regression testing. + try { + var9.add((java.awt.Component)var52, (java.lang.Object)var74, 498); + fail("Expected exception of type java.lang.IllegalArgumentException"); + } catch (java.lang.IllegalArgumentException e) { + // Expected exception. + } + + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var28 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var31); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var32 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var35); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var43); + + // Regression assertion (captures the current behavior of the code) + assertNull(var45); + + // Regression assertion (captures the current behavior of the code) + assertNull(var46); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var48); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var51 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var53); + + // Regression assertion (captures the current behavior of the code) + assertNull(var55); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var56 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var57); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var59 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var62 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var65 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var67 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var68); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var69); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var70); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var71); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var79); + + } + + public void test21() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test21"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.setInheritsPopupMenu(false); + boolean var6 = var0.isDoubleBuffered(); + boolean var7 = var0.isMinimumSizeSet(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var14 = new SpaceWar.SpacePanel(); + float var15 = var14.getAlignmentX(); + var14.setVisible(false); + java.awt.Dimension var18 = var14.getPreferredSize(); + var8.setMaximumSize(var18); + boolean var20 = var8.getVerifyInputWhenFocusTarget(); + javax.accessibility.AccessibleContext var21 = var8.getAccessibleContext(); + boolean var22 = var8.isDoubleBuffered(); + java.awt.Rectangle var23 = var8.getVisibleRect(); + var0.setBounds(var23); + SpaceWar.SpacePanel var25 = new SpaceWar.SpacePanel(); + float var26 = var25.getAlignmentX(); + var25.setVisible(false); + boolean var29 = var25.isDoubleBuffered(); + var25.list(); + SpaceWar.SpacePanel var31 = new SpaceWar.SpacePanel(); + float var32 = var31.getAlignmentX(); + var31.setVisible(false); + boolean var35 = var31.isDoubleBuffered(); + java.awt.dnd.DropTarget var36 = var31.getDropTarget(); + var31.show(false); + java.awt.Rectangle var39 = var31.getVisibleRect(); + java.awt.Rectangle var40 = var25.getBounds(var39); + javax.swing.JToolTip var41 = var25.createToolTip(); + var25.firePropertyChange("", false, false); + var25.setFocusTraversalKeysEnabled(false); + boolean var48 = var25.isValid(); + SpaceWar.SpacePanel var49 = new SpaceWar.SpacePanel(); + float var50 = var49.getAlignmentX(); + var49.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var55 = var49.getMouseListeners(); + int var56 = var49.getDebugGraphicsOptions(); + java.awt.Color var57 = var49.getBackground(); + var25.setForeground(var57); + var0.addKeyListener((java.awt.event.KeyListener)var25); + SpaceWar.SpacePanel var60 = new SpaceWar.SpacePanel(); + float var61 = var60.getAlignmentX(); + var60.setVisible(false); + java.awt.Dimension var64 = var60.getPreferredSize(); + java.awt.Toolkit var65 = var60.getToolkit(); + java.awt.Toolkit var66 = var60.getToolkit(); + var60.enable(false); + java.awt.Color var69 = var60.getForeground(); + var0.remove((java.awt.Component)var60); + javax.swing.border.Border var71 = var0.getBorder(); + java.beans.PropertyChangeListener[] var72 = var0.getPropertyChangeListeners(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var21); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var22 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var23); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var29 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var32 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var35 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var36); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var39); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var40); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var41); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var48 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var50 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var55); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var56 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var57); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var61 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var64); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var65); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var66); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var69); + + // Regression assertion (captures the current behavior of the code) + assertNull(var71); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var72); + + } + + public void test22() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test22"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + SpaceWar.SpacePanel var4 = new SpaceWar.SpacePanel(); + java.awt.Color var5 = var4.getBackground(); + var0.setForeground(var5); + SpaceWar.SpacePanel var7 = new SpaceWar.SpacePanel(); + float var8 = var7.getAlignmentX(); + var7.setVisible(false); + boolean var11 = var7.isDoubleBuffered(); + java.awt.dnd.DropTarget var12 = var7.getDropTarget(); + var7.show(false); + java.awt.Rectangle var15 = var7.getVisibleRect(); + var0.repaint(var15); + java.awt.FocusTraversalPolicy var17 = var0.getFocusTraversalPolicy(); + java.awt.im.InputMethodRequests var18 = var0.getInputMethodRequests(); + javax.swing.JToolTip var19 = var0.createToolTip(); + var0.setLocation(400, 100); + SpaceWar.SpacePanel var23 = new SpaceWar.SpacePanel(); + float var24 = var23.getAlignmentX(); + var23.setVisible(false); + java.awt.Dimension var27 = var23.getPreferredSize(); + boolean var28 = var23.getVerifyInputWhenFocusTarget(); + java.awt.Component var31 = var23.findComponentAt(10, 1); + boolean var32 = var23.requestDefaultFocus(); + java.awt.Insets var33 = var23.getInsets(); + var23.setDoubleBuffered(false); + java.awt.Toolkit var36 = var23.getToolkit(); + java.awt.Dimension var37 = var23.getMinimumSize(); + var0.removeKeyListener((java.awt.event.KeyListener)var23); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var24 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var27); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var28 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var31); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var32 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var33); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var36); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var37); + + } + + public void test23() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test23"); + + + SpaceWar.Player var0 = new SpaceWar.Player(); + var0.increasePower(25); + int var3 = var0.getR(); + int var4 = var0.getScore(); + var0.loseLife(); + boolean var6 = var0.isRecovering(); + var0.loseLife(); + boolean var8 = var0.isDead(); + int var9 = var0.getX(); + var0.setFiring(false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == 25); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 400); + + } + + public void test24() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test24"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + var0.setRequestFocusEnabled(false); + var0.setIgnoreRepaint(false); + java.lang.String var7 = var0.toString(); + boolean var9 = var0.requestFocus(false); + var0.resetKeyboardActions(); + java.awt.Image var13 = var0.createImage(3, 0); + SpaceWar.SpacePanel var14 = new SpaceWar.SpacePanel(); + float var15 = var14.getAlignmentX(); + var14.setVisible(false); + var14.nextFocus(); + var14.reshape((-1), 1, (-1), 10); + var14.disable(); + boolean var25 = var14.isFocusable(); + SpaceWar.SpacePanel var26 = new SpaceWar.SpacePanel(); + float var27 = var26.getAlignmentX(); + var26.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var32 = var26.getUI(); + java.awt.im.InputMethodRequests var33 = var26.getInputMethodRequests(); + SpaceWar.SpacePanel var34 = new SpaceWar.SpacePanel(); + float var35 = var34.getAlignmentX(); + var34.setVisible(false); + var34.nextFocus(); + var34.updateUI(); + var34.enableInputMethods(true); + var34.setSize((-1), 1); + SpaceWar.SpacePanel var45 = new SpaceWar.SpacePanel(); + var45.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var26.add((java.awt.Component)var34, (java.lang.Object)"SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + java.awt.event.KeyListener[] var51 = var26.getKeyListeners(); + java.awt.FocusTraversalPolicy var52 = var26.getFocusTraversalPolicy(); + SpaceWar.SpacePanel var53 = new SpaceWar.SpacePanel(); + var53.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + java.awt.Toolkit var58 = var53.getToolkit(); + var14.add((java.awt.Component)var26, (java.lang.Object)var53); + SpaceWar.SpacePanel var60 = new SpaceWar.SpacePanel(); + float var61 = var60.getAlignmentX(); + SpaceWar.SpacePanel var62 = new SpaceWar.SpacePanel(); + float var63 = var62.getAlignmentX(); + var62.setVisible(false); + java.awt.Dimension var66 = var62.getPreferredSize(); + boolean var67 = var62.getVerifyInputWhenFocusTarget(); + java.awt.Component var70 = var62.findComponentAt(10, 1); + var60.addKeyListener((java.awt.event.KeyListener)var62); + java.awt.Dimension var72 = var62.getMinimumSize(); + var14.setSize(var72); + var0.resize(var72); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var7 + "' != '" + "SpaceWar.SpacePanel[,0,0,0var7,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"+ "'", var7.equals("SpaceWar.SpacePanel[,0,0,0var7,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]")); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var32); + + // Regression assertion (captures the current behavior of the code) + assertNull(var33); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var35 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var51); + + // Regression assertion (captures the current behavior of the code) + assertNull(var52); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var58); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var61 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var63 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var66); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var67 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var70); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var72); + + } + + public void test25() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test25"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.reshape((-1), 1, (-1), 10); + var0.disable(); + java.awt.LayoutManager var11 = var0.getLayout(); + var0.setVisible(false); + SpaceWar.SpacePanel var14 = new SpaceWar.SpacePanel(); + float var15 = var14.getAlignmentX(); + var14.setVisible(false); + var14.nextFocus(); + var14.updateUI(); + java.util.Locale var20 = var14.getLocale(); + var0.setLocale(var20); + boolean var22 = var0.isRequestFocusEnabled(); + float var23 = var0.getAlignmentX(); + var0.setBounds(499, (-1), 500, 25); + var0.move(24, 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var22 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == 0.5f); + + } + + public void test26() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test26"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + boolean var6 = var0.isFocusCycleRoot(); + var0.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", 100, 0); + SpaceWar.SpacePanel var11 = new SpaceWar.SpacePanel(); + float var12 = var11.getAlignmentX(); + var11.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var17 = var11.getUI(); + var0.add((java.awt.Component)var11, (java.lang.Object)(short)0); + java.awt.event.InputMethodListener[] var20 = var11.getInputMethodListeners(); + java.awt.Toolkit var21 = var11.getToolkit(); + var11.setSize(24, 2); + java.awt.Dimension var25 = var11.getPreferredSize(); + boolean var26 = var11.isOpaque(); + int var27 = var11.getComponentCount(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var21); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var25); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == 0); + + } + + public void test27() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test27"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + SpaceWar.SpacePanel var5 = new SpaceWar.SpacePanel(); + float var6 = var5.getAlignmentX(); + var5.setVisible(false); + var5.nextFocus(); + var5.reshape((-1), 1, (-1), 10); + var5.disable(); + boolean var16 = var5.isFocusable(); + int var17 = var5.getHeight(); + var0.setNextFocusableComponent((java.awt.Component)var5); + java.util.Set var20 = var0.getFocusTraversalKeys(0); + java.awt.FocusTraversalPolicy var21 = var0.getFocusTraversalPolicy(); + java.lang.String var22 = var0.getToolTipText(); + boolean var23 = var0.isMinimumSizeSet(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == 10); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertNull(var21); + + // Regression assertion (captures the current behavior of the code) + assertNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == false); + + } + + public void test28() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test28"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + var0.show(false); + boolean var8 = var0.isPaintingForPrint(); + javax.swing.TransferHandler var9 = var0.getTransferHandler(); + java.util.Locale var10 = var0.getLocale(); + SpaceWar.SpacePanel var11 = new SpaceWar.SpacePanel(); + float var12 = var11.getAlignmentX(); + var11.setVisible(false); + var11.setInheritsPopupMenu(false); + boolean var17 = var11.isDoubleBuffered(); + SpaceWar.SpacePanel var18 = new SpaceWar.SpacePanel(); + float var19 = var18.getAlignmentX(); + var18.setVisible(false); + var18.nextFocus(); + var18.reshape((-1), 1, (-1), 10); + var18.disable(); + java.awt.LayoutManager var29 = var18.getLayout(); + var11.setLayout(var29); + java.awt.Dimension var31 = var11.size(); + var0.setSize(var31); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var9); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var29); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var31); + + } + + public void test29() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test29"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + var0.enable(false); + boolean var7 = var0.requestDefaultFocus(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var14 = var8.getMouseListeners(); + int var15 = var8.getDebugGraphicsOptions(); + SpaceWar.SpacePanel var16 = new SpaceWar.SpacePanel(); + float var17 = var16.getAlignmentX(); + var16.setVisible(false); + boolean var20 = var16.isDoubleBuffered(); + java.awt.dnd.DropTarget var21 = var16.getDropTarget(); + var16.show(false); + java.awt.Rectangle var24 = var16.getVisibleRect(); + var8.paintImmediately(var24); + var8.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", '#', '#'); + var8.list(); + java.awt.Rectangle var31 = var8.getBounds(); + var0.scrollRectToVisible(var31); + SpaceWar.Player var33 = new SpaceWar.Player(); + boolean var34 = var33.isRecovering(); + var33.setRigth(false); + int var37 = var33.getPowerLevel(); + var33.increasePower((-1)); + java.lang.Object var40 = var0.getClientProperty((java.lang.Object)(-1)); + boolean var41 = var0.isFocusCycleRoot(); + java.awt.event.ContainerListener[] var42 = var0.getContainerListeners(); + SpaceWar.SpacePanel var43 = new SpaceWar.SpacePanel(); + float var44 = var43.getAlignmentX(); + var43.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var49 = new SpaceWar.SpacePanel(); + float var50 = var49.getAlignmentX(); + var49.setVisible(false); + java.awt.Dimension var53 = var49.getPreferredSize(); + var43.setMaximumSize(var53); + boolean var55 = var43.getVerifyInputWhenFocusTarget(); + boolean var56 = var43.isFontSet(); + boolean var57 = var43.getIgnoreRepaint(); + java.awt.Component var60 = var43.locate(1, 25); + java.awt.dnd.DropTarget var61 = var43.getDropTarget(); + boolean var62 = var43.isValid(); + var43.setName("SpaceWar.SpacePanel[,0,0,0x0,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + var43.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=10,height=10]]", true, false); + java.awt.Point var69 = var43.location(); + var0.setNextFocusableComponent((java.awt.Component)var43); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var21); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var31); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var34 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var40); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var41 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var42); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var44 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var50 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var53); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var55 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var56 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var57 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var60); + + // Regression assertion (captures the current behavior of the code) + assertNull(var61); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var62 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var69); + + } + + public void test30() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test30"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + var0.setRequestFocusEnabled(false); + var0.reshape(100, 0, 100, 0); + var0.requestFocus(); + var0.firePropertyChange("hi!", '4', ' '); + SpaceWar.Enemy var17 = new SpaceWar.Enemy(0, 100); + int var18 = var17.getR(); + var17.explode(); + var0.putClientProperty((java.lang.Object)var17, (java.lang.Object)(short)10); + var17.hit(); + int var23 = var17.getR(); + int var24 = var17.getR(); + java.awt.image.BufferedImage var26 = var17.loadImg("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=1.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + var17.explode(); + int var28 = var17.getR(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var24 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var28 == 0); + + } + + public void test31() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test31"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.setInheritsPopupMenu(false); + var0.setFocusTraversalPolicyProvider(true); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + boolean var12 = var8.isDoubleBuffered(); + var8.list(); + SpaceWar.SpacePanel var14 = new SpaceWar.SpacePanel(); + float var15 = var14.getAlignmentX(); + var14.setVisible(false); + boolean var18 = var14.isDoubleBuffered(); + java.awt.dnd.DropTarget var19 = var14.getDropTarget(); + var14.show(false); + java.awt.Rectangle var22 = var14.getVisibleRect(); + java.awt.Rectangle var23 = var8.getBounds(var22); + javax.swing.JToolTip var24 = var8.createToolTip(); + var0.removeKeyListener((java.awt.event.KeyListener)var8); + javax.swing.TransferHandler var26 = var0.getTransferHandler(); + var0.transferFocus(); + SpaceWar.SpacePanel var28 = new SpaceWar.SpacePanel(); + float var29 = var28.getAlignmentX(); + SpaceWar.SpacePanel var30 = new SpaceWar.SpacePanel(); + float var31 = var30.getAlignmentX(); + var30.setVisible(false); + java.awt.Dimension var34 = var30.getPreferredSize(); + boolean var35 = var30.getVerifyInputWhenFocusTarget(); + java.awt.Component var38 = var30.findComponentAt(10, 1); + var28.addKeyListener((java.awt.event.KeyListener)var30); + java.awt.Dimension var40 = var30.getMinimumSize(); + SpaceWar.SpacePanel var41 = new SpaceWar.SpacePanel(); + java.awt.Color var42 = var41.getBackground(); + var41.repaint(); + var41.setRequestFocusEnabled(false); + var41.reshape(100, 0, 100, 0); + var41.requestFocus(); + java.awt.Rectangle var52 = var41.getVisibleRect(); + var30.setBounds(var52); + var0.scrollRectToVisible(var52); + int var55 = var0.getY(); + var0.requestFocus(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var23); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var29 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var31 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var34); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var35 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var38); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var40); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var42); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var52); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var55 == 0); + + } + + public void test32() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test32"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + var0.enable(false); + java.awt.Container var7 = var0.getTopLevelAncestor(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + boolean var12 = var8.isDoubleBuffered(); + var8.list(); + SpaceWar.SpacePanel var14 = new SpaceWar.SpacePanel(); + float var15 = var14.getAlignmentX(); + var14.setVisible(false); + boolean var18 = var14.isDoubleBuffered(); + java.awt.dnd.DropTarget var19 = var14.getDropTarget(); + var14.show(false); + java.awt.Rectangle var22 = var14.getVisibleRect(); + java.awt.Rectangle var23 = var8.getBounds(var22); + var0.computeVisibleRect(var22); + var0.setFocusCycleRoot(false); + java.awt.event.ComponentListener[] var27 = var0.getComponentListeners(); + java.awt.ComponentOrientation var28 = var0.getComponentOrientation(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var23); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var27); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var28); + + } + + public void test33() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test33"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.updateUI(); + var0.enableInputMethods(true); + var0.setSize((-1), 1); + boolean var13 = var0.contains(1, 1); + javax.swing.TransferHandler var14 = var0.getTransferHandler(); + SpaceWar.SpacePanel var15 = new SpaceWar.SpacePanel(); + float var16 = var15.getAlignmentX(); + var15.setVisible(false); + boolean var19 = var15.isDoubleBuffered(); + var15.enable(false); + java.lang.Object var22 = var0.getClientProperty((java.lang.Object)false); + boolean var23 = javax.swing.JComponent.isLightweightComponent((java.awt.Component)var0); + java.awt.FocusTraversalPolicy var24 = var0.getFocusTraversalPolicy(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var24); + + } + + public void test34() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test34"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + var0.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + javax.swing.plaf.PanelUI var5 = var0.getUI(); + java.awt.Color var6 = var0.getBackground(); + var0.removeAll(); + int var8 = var0.getHeight(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.removeNotify(); + SpaceWar.SpacePanel var12 = new SpaceWar.SpacePanel(); + float var13 = var12.getAlignmentX(); + var12.setVisible(false); + boolean var16 = var12.isDoubleBuffered(); + var12.list(); + float var18 = var12.getAlignmentY(); + java.awt.Insets var19 = var12.getInsets(); + java.awt.Insets var20 = var9.getInsets(var19); + boolean var21 = var9.isDoubleBuffered(); + java.awt.Component var22 = var0.add((java.awt.Component)var9); + var9.invalidate(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var22); + + } + + public void test35() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test35"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + java.awt.im.InputMethodRequests var3 = var0.getInputMethodRequests(); + javax.swing.InputVerifier var4 = var0.getInputVerifier(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertNull(var4); + + } + + public void test36() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test36"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.reshape((-1), 1, (-1), 10); + var0.disable(); + java.awt.LayoutManager var11 = var0.getLayout(); + boolean var14 = var0.contains((-1), 0); + SpaceWar.SpacePanel var15 = new SpaceWar.SpacePanel(); + float var16 = var15.getAlignmentX(); + var15.setVisible(false); + var15.nextFocus(); + var15.updateUI(); + var15.enableInputMethods(true); + var15.setSize((-1), 1); + java.awt.Component var26 = var0.add((java.awt.Component)var15); + SpaceWar.SpacePanel var27 = new SpaceWar.SpacePanel(); + float var28 = var27.getAlignmentX(); + var27.setVisible(false); + var27.nextFocus(); + var27.updateUI(); + var27.enableInputMethods(true); + java.lang.String var35 = var27.toString(); + java.awt.FocusTraversalPolicy var36 = var27.getFocusTraversalPolicy(); + var15.removeKeyListener((java.awt.event.KeyListener)var27); + var15.setFocusable(false); + var15.repaint(); + java.awt.GraphicsConfiguration var41 = var15.getGraphicsConfiguration(); + var15.resetKeyboardActions(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var28 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var35 + "' != '" + "SpaceWar.SpacePanel[,0,0,0var35,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"+ "'", var35.equals("SpaceWar.SpacePanel[,0,0,0var35,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]")); + + // Regression assertion (captures the current behavior of the code) + assertNull(var36); + + // Regression assertion (captures the current behavior of the code) + assertNull(var41); + + } + + public void test37() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test37"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + java.awt.Dimension var4 = var0.getPreferredSize(); + java.awt.Toolkit var5 = var0.getToolkit(); + boolean var6 = var0.isFocusable(); + javax.swing.KeyStroke[] var7 = var0.getRegisteredKeyStrokes(); + var0.setFocusCycleRoot(false); + SpaceWar.SpacePanel var10 = new SpaceWar.SpacePanel(); + float var11 = var10.getAlignmentX(); + var10.setVisible(false); + var10.nextFocus(); + var10.reshape((-1), 1, (-1), 10); + var10.disable(); + boolean var21 = var10.isFocusable(); + int var22 = var10.getHeight(); + javax.swing.InputVerifier var23 = var10.getInputVerifier(); + java.awt.Graphics var24 = var10.getGraphics(); + java.awt.Color var25 = var10.getForeground(); + var0.setBackground(var25); + boolean var27 = var0.requestFocusInWindow(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var4); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var22 == 10); + + // Regression assertion (captures the current behavior of the code) + assertNull(var23); + + // Regression assertion (captures the current behavior of the code) + assertNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var25); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == false); + + } + + public void test38() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test38"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + java.awt.Dimension var4 = var0.getPreferredSize(); + boolean var5 = var0.getVerifyInputWhenFocusTarget(); + java.awt.Component var8 = var0.findComponentAt(10, 1); + boolean var9 = var0.isCursorSet(); + boolean var10 = var0.isFocusTraversalPolicyProvider(); + float var11 = var0.getAlignmentY(); + boolean var12 = var0.isRequestFocusEnabled(); + java.awt.Component[] var13 = var0.getComponents(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var4); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var13); + + } + + public void test39() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test39"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var6 = var0.getMouseListeners(); + java.awt.Dimension var7 = var0.getPreferredSize(); + java.util.Locale var8 = var0.getLocale(); + var0.setFocusable(true); + var0.setSize(3, 10); + java.beans.PropertyChangeListener[] var15 = var0.getPropertyChangeListeners("SpaceWar.SpacePanel[,-1,1,-1x10,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + int var16 = var0.getHeight(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 10); + + } + + public void test40() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test40"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + var0.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", 10.0d, 100.0d); + var0.setToolTipText(""); + var0.revalidate(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + boolean var12 = var8.isDoubleBuffered(); + var8.list(); + float var14 = var8.getAlignmentY(); + java.awt.event.ComponentListener[] var15 = var8.getComponentListeners(); + java.awt.Component var16 = var8.getNextFocusableComponent(); + boolean var17 = var8.isManagingFocus(); + java.awt.Insets var18 = var8.getInsets(); + java.awt.Insets var19 = var0.getInsets(var18); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var19); + + } + + public void test41() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test41"); + + + SpaceWar.Player var0 = new SpaceWar.Player(); + boolean var1 = var0.isRecovering(); + var0.loseLife(); + int var3 = var0.getR(); + var0.loseLife(); + java.awt.image.BufferedImage var6 = var0.loadImg("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + var0.setRigth(false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == 25); + + // Regression assertion (captures the current behavior of the code) + assertNull(var6); + + } + + public void test42() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test42"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + var0.show(false); + boolean var8 = var0.isPaintingForPrint(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var15 = var9.getMouseListeners(); + int var16 = var9.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var17 = var9.getInputMethodRequests(); + var0.addKeyListener((java.awt.event.KeyListener)var9); + java.awt.Container var19 = var9.getFocusCycleRootAncestor(); + SpaceWar.SpacePanel var20 = new SpaceWar.SpacePanel(); + float var21 = var20.getAlignmentX(); + var20.setVisible(false); + var20.nextFocus(); + var20.reshape((-1), 1, (-1), 10); + var20.disable(); + java.awt.LayoutManager var31 = var20.getLayout(); + java.awt.Container var32 = var20.getParent(); + java.beans.PropertyChangeListener[] var34 = var20.getPropertyChangeListeners("SpaceWar.SpacePanel[,0,0,0x0,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + var9.setNextFocusableComponent((java.awt.Component)var20); + java.awt.FocusTraversalPolicy var36 = var20.getFocusTraversalPolicy(); + java.awt.Dimension var37 = var20.getPreferredSize(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var31); + + // Regression assertion (captures the current behavior of the code) + assertNull(var32); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var34); + + // Regression assertion (captures the current behavior of the code) + assertNull(var36); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var37); + + } + + public void test43() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test43"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.updateUI(); + var0.enableInputMethods(true); + java.awt.Point var8 = var0.location(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.setVisible(false); + var9.nextFocus(); + java.awt.Component var14 = var0.add((java.awt.Component)var9); + SpaceWar.SpacePanel var15 = new SpaceWar.SpacePanel(); + float var16 = var15.getAlignmentX(); + var15.setVisible(false); + var15.nextFocus(); + var15.updateUI(); + var15.enableInputMethods(true); + java.awt.Point var24 = var15.getMousePosition(false); + SpaceWar.SpacePanel var25 = new SpaceWar.SpacePanel(); + float var26 = var25.getAlignmentX(); + SpaceWar.SpacePanel var27 = new SpaceWar.SpacePanel(); + float var28 = var27.getAlignmentX(); + var27.setVisible(false); + java.awt.Dimension var31 = var27.getPreferredSize(); + boolean var32 = var27.getVerifyInputWhenFocusTarget(); + java.awt.Component var35 = var27.findComponentAt(10, 1); + var25.addKeyListener((java.awt.event.KeyListener)var27); + var27.repaint(100, (-1), (-1), 1); + SpaceWar.SpacePanel var42 = new SpaceWar.SpacePanel(); + java.awt.Color var43 = var42.getBackground(); + var42.repaint(); + java.awt.im.InputMethodRequests var45 = var42.getInputMethodRequests(); + java.awt.GraphicsConfiguration var46 = var42.getGraphicsConfiguration(); + var27.remove((java.awt.Component)var42); + java.awt.Font var48 = var42.getFont(); + var15.setFont(var48); + var9.setFont(var48); + boolean var51 = var9.isFocusable(); + boolean var52 = var9.isValid(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var28 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var31); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var32 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var35); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var43); + + // Regression assertion (captures the current behavior of the code) + assertNull(var45); + + // Regression assertion (captures the current behavior of the code) + assertNull(var46); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var48); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var51 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var52 == false); + + } + + public void test44() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test44"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + java.awt.Dimension var4 = var0.getPreferredSize(); + boolean var5 = var0.getVerifyInputWhenFocusTarget(); + java.awt.Component var8 = var0.findComponentAt(10, 1); + boolean var9 = var0.requestDefaultFocus(); + var0.setVerifyInputWhenFocusTarget(true); + var0.setFocusTraversalKeysEnabled(false); + SpaceWar.SpacePanel var15 = new SpaceWar.SpacePanel(); + var15.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + javax.swing.plaf.PanelUI var20 = var15.getUI(); + boolean var21 = var15.isDisplayable(); + SpaceWar.SpacePanel var22 = new SpaceWar.SpacePanel(); + float var23 = var22.getAlignmentX(); + var22.removeNotify(); + SpaceWar.SpacePanel var25 = new SpaceWar.SpacePanel(); + float var26 = var25.getAlignmentX(); + var25.setVisible(false); + boolean var29 = var25.isDoubleBuffered(); + var25.list(); + float var31 = var25.getAlignmentY(); + java.awt.Insets var32 = var25.getInsets(); + java.awt.Insets var33 = var22.getInsets(var32); + java.awt.Insets var34 = var15.getInsets(var33); + java.awt.Graphics var35 = var15.getGraphics(); + java.awt.Component var36 = var0.add("SpaceWar.SpacePanel[,-1,1,-1x10,invalid,hidden,disabled,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", (java.awt.Component)var15); + java.awt.Dimension var37 = var0.size(); + var0.setDoubleBuffered(true); + boolean var40 = var0.isVisible(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var4); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var29 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var31 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var32); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var33); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var34); + + // Regression assertion (captures the current behavior of the code) + assertNull(var35); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var36); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var37); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var40 == false); + + } + + public void test45() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test45"); + + + SpaceWar.Player var0 = new SpaceWar.Player(); + var0.increasePower(25); + int var3 = var0.getScore(); + var0.setRigth(true); + var0.loseLife(); + int var7 = var0.getPower(); + var0.increasePower(3); + int var10 = var0.getR(); + var0.setLeft(true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 24); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 25); + + } + + public void test46() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test46"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + var0.setName(""); + java.awt.Dimension var3 = var0.minimumSize(); + boolean var4 = var0.isDoubleBuffered(); + java.awt.event.HierarchyListener[] var5 = var0.getHierarchyListeners(); + boolean var6 = var0.getIgnoreRepaint(); + java.lang.String var7 = var0.getUIClassID(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var7 + "' != '" + "PanelUI"+ "'", var7.equals("PanelUI")); + + } + + public void test47() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test47"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var1 = new SpaceWar.SpacePanel(); + java.awt.Color var2 = var1.getBackground(); + SpaceWar.SpacePanel var3 = new SpaceWar.SpacePanel(); + float var4 = var3.getAlignmentX(); + var3.setVisible(false); + var3.nextFocus(); + var3.updateUI(); + var3.enableInputMethods(true); + var0.add((java.awt.Component)var1, (java.lang.Object)true); + java.awt.Image var14 = var1.createImage(1, (-1)); + java.awt.event.MouseListener[] var15 = var1.getMouseListeners(); + java.awt.Color var16 = var1.getBackground(); + boolean var17 = var1.getIgnoreRepaint(); + var1.enable(); + var1.show(false); + var1.firePropertyChange("PanelUI", false, false); + java.awt.ComponentOrientation var25 = var1.getComponentOrientation(); + boolean var26 = var1.isFocusTraversalPolicyProvider(); + java.awt.Rectangle var27 = var1.getBounds(); + java.lang.Object var28 = var1.getTreeLock(); + java.awt.Component var31 = var1.findComponentAt(0, 500); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var2); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var25); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var27); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var28); + + // Regression assertion (captures the current behavior of the code) + assertNull(var31); + + } + + public void test48() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test48"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var6 = var0.getUI(); + java.awt.im.InputMethodRequests var7 = var0.getInputMethodRequests(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + var8.nextFocus(); + var8.updateUI(); + var8.enableInputMethods(true); + var8.setSize((-1), 1); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + var19.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var0.add((java.awt.Component)var8, (java.lang.Object)"SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + SpaceWar.SpacePanel var25 = new SpaceWar.SpacePanel(); + float var26 = var25.getAlignmentX(); + var25.setVisible(false); + var25.setInheritsPopupMenu(false); + boolean var31 = var25.isDoubleBuffered(); + boolean var32 = var25.isMinimumSizeSet(); + SpaceWar.SpacePanel var33 = new SpaceWar.SpacePanel(); + float var34 = var33.getAlignmentX(); + var33.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var39 = new SpaceWar.SpacePanel(); + float var40 = var39.getAlignmentX(); + var39.setVisible(false); + java.awt.Dimension var43 = var39.getPreferredSize(); + var33.setMaximumSize(var43); + boolean var45 = var33.getVerifyInputWhenFocusTarget(); + javax.accessibility.AccessibleContext var46 = var33.getAccessibleContext(); + boolean var47 = var33.isDoubleBuffered(); + java.awt.Rectangle var48 = var33.getVisibleRect(); + var25.setBounds(var48); + java.awt.Rectangle var50 = var0.getBounds(var48); + SpaceWar.SpacePanel var51 = new SpaceWar.SpacePanel(); + float var52 = var51.getAlignmentX(); + var51.setVisible(false); + boolean var55 = var51.isDoubleBuffered(); + java.awt.dnd.DropTarget var56 = var51.getDropTarget(); + var51.show(false); + boolean var59 = var51.isPaintingForPrint(); + SpaceWar.SpacePanel var60 = new SpaceWar.SpacePanel(); + float var61 = var60.getAlignmentX(); + var60.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var66 = var60.getMouseListeners(); + int var67 = var60.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var68 = var60.getInputMethodRequests(); + var51.addKeyListener((java.awt.event.KeyListener)var60); + SpaceWar.SpacePanel var70 = new SpaceWar.SpacePanel(); + float var71 = var70.getAlignmentX(); + var70.setVisible(false); + boolean var74 = var70.isDoubleBuffered(); + var70.list(); + float var76 = var70.getAlignmentY(); + boolean var77 = var60.isFocusCycleRoot((java.awt.Container)var70); + SpaceWar.SpacePanel var79 = new SpaceWar.SpacePanel(); + float var80 = var79.getAlignmentX(); + var79.setVisible(false); + var79.nextFocus(); + var79.updateUI(); + java.awt.Component var85 = var60.add("", (java.awt.Component)var79); + java.awt.ComponentOrientation var86 = var79.getComponentOrientation(); + var0.applyComponentOrientation(var86); + javax.swing.JRootPane var88 = var0.getRootPane(); + javax.swing.JToolTip var89 = var0.createToolTip(); + var0.removeAll(); + java.awt.Rectangle var91 = var0.getVisibleRect(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var31 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var32 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var34 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var40 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var43); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var45 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var46); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var47 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var48); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var50); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var52 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var55 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var56); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var59 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var61 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var66); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var67 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var68); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var71 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var74 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var76 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var77 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var80 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var85); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var86); + + // Regression assertion (captures the current behavior of the code) + assertNull(var88); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var89); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var91); + + } + + public void test49() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test49"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var6 = var0.getMouseListeners(); + java.awt.Dimension var7 = var0.getPreferredSize(); + java.util.Locale var8 = var0.getLocale(); + java.awt.Font var9 = var0.getFont(); + java.awt.Container var10 = var0.getTopLevelAncestor(); + java.awt.Component[] var11 = var0.getComponents(); + SpaceWar.SpacePanel var12 = new SpaceWar.SpacePanel(); + float var13 = var12.getAlignmentX(); + var12.setVisible(false); + var12.nextFocus(); + var12.repaint(1L); + var12.firePropertyChange("", (short)(-1), (short)(-1)); + var12.setBounds(400, 1, (-1), 10); + SpaceWar.SpacePanel var28 = new SpaceWar.SpacePanel(); + float var29 = var28.getAlignmentX(); + var28.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var34 = var28.getMouseListeners(); + var28.firePropertyChange("", 0.5f, 100.0f); + var28.enable(false); + var28.enable(); + SpaceWar.SpacePanel var42 = new SpaceWar.SpacePanel(); + var42.setName(""); + java.awt.Toolkit var45 = var42.getToolkit(); + var42.setEnabled(false); + var42.removeNotify(); + boolean var49 = var42.isDisplayable(); + SpaceWar.SpacePanel var50 = new SpaceWar.SpacePanel(); + java.awt.Color var51 = var50.getBackground(); + var50.repaint(); + var50.setRequestFocusEnabled(false); + var50.reshape(100, 0, 100, 0); + var50.requestFocus(); + java.awt.Rectangle var61 = var50.getVisibleRect(); + java.awt.Rectangle var62 = var50.getBounds(); + java.awt.im.InputMethodRequests var63 = var50.getInputMethodRequests(); + boolean var64 = var50.requestFocusInWindow(); + java.awt.Point var66 = var50.getMousePosition(false); + var50.setDebugGraphicsOptions(1); + java.awt.Graphics var69 = var50.getGraphics(); + var42.paintAll(var69); + var28.printComponents(var69); + var12.update(var69); + var0.printComponents(var69); + java.awt.Image var76 = var0.createImage(24, 498); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var9); + + // Regression assertion (captures the current behavior of the code) + assertNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var29 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var34); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var45); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var49 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var51); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var61); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var62); + + // Regression assertion (captures the current behavior of the code) + assertNull(var63); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var64 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var66); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var69); + + // Regression assertion (captures the current behavior of the code) + assertNull(var76); + + } + + public void test50() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test50"); + + + SpaceWar.Player var0 = new SpaceWar.Player(); + int var1 = var0.getR(); + var0.setRigth(false); + var0.setLife(100); + var0.setDown(false); + var0.setFiring(true); + var0.increasePower(400); + boolean var12 = var0.isRecovering(); + int var13 = var0.getY(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 25); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == 500); + + } + + public void test51() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test51"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.updateUI(); + var0.enableInputMethods(true); + java.awt.Point var8 = var0.location(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.setVisible(false); + var9.nextFocus(); + java.awt.Component var14 = var0.add((java.awt.Component)var9); + SpaceWar.SpacePanel var15 = new SpaceWar.SpacePanel(); + float var16 = var15.getAlignmentX(); + var15.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var21 = var15.getMouseListeners(); + java.awt.Dimension var22 = var15.getPreferredSize(); + java.util.Locale var23 = var15.getLocale(); + var15.setFocusable(true); + var15.setSize(3, 10); + SpaceWar.SpacePanel var29 = new SpaceWar.SpacePanel(); + float var30 = var29.getAlignmentX(); + var29.setVisible(false); + java.awt.Dimension var33 = var29.getPreferredSize(); + boolean var34 = var29.getVerifyInputWhenFocusTarget(); + java.awt.Dimension var35 = var29.size(); + var15.setSize(var35); + var0.resize(var35); + boolean var38 = var0.isPaintingForPrint(); + var0.setInheritsPopupMenu(true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var21); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var23); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var30 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var33); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var34 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var35); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var38 == false); + + } + + public void test52() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test52"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + var0.show(false); + boolean var8 = var0.isPaintingForPrint(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var15 = var9.getMouseListeners(); + int var16 = var9.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var17 = var9.getInputMethodRequests(); + var0.addKeyListener((java.awt.event.KeyListener)var9); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + float var20 = var19.getAlignmentX(); + var19.setVisible(false); + boolean var23 = var19.isDoubleBuffered(); + var19.list(); + float var25 = var19.getAlignmentY(); + boolean var26 = var9.isFocusCycleRoot((java.awt.Container)var19); + var19.firePropertyChange("", 1L, 1L); + var19.setVerifyInputWhenFocusTarget(true); + java.awt.Cursor var33 = var19.getCursor(); + var19.layout(); + java.awt.Point var35 = var19.getLocation(); + // The following exception was thrown during execution. + // This behavior will recorded for regression testing. + try { + javax.swing.InputMap var37 = var19.getInputMap(100); + fail("Expected exception of type java.lang.IllegalArgumentException"); + } catch (java.lang.IllegalArgumentException e) { + // Expected exception. + } + + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var33); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var35); + + } + + public void test53() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test53"); + + + SpaceWar.Player var0 = new SpaceWar.Player(); + boolean var1 = var0.isRecovering(); + var0.setRigth(false); + int var4 = var0.getPowerLevel(); + var0.increasePower((-1)); + int var7 = var0.getY(); + var0.setScore(1); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 500); + + } + + public void test54() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test54"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + var0.show(false); + java.awt.Rectangle var8 = var0.getVisibleRect(); + java.awt.image.BufferedImage var10 = var0.loadImg("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + java.awt.ComponentOrientation var11 = var0.getComponentOrientation(); + javax.swing.plaf.PanelUI var12 = var0.getUI(); + var0.doLayout(); + boolean var14 = var0.isOptimizedDrawingEnabled(); + java.awt.Point var16 = var0.getMousePosition(false); + java.awt.image.BufferedImage var18 = var0.loadImg("PanelUI"); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertNull(var18); + + } + + public void test55() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test55"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.repaint(1L); + SpaceWar.SpacePanel var7 = new SpaceWar.SpacePanel(); + float var8 = var7.getAlignmentX(); + var7.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var13 = new SpaceWar.SpacePanel(); + float var14 = var13.getAlignmentX(); + var13.setVisible(false); + java.awt.Dimension var17 = var13.getPreferredSize(); + var7.setMaximumSize(var17); + var0.setPreferredSize(var17); + SpaceWar.SpacePanel var21 = new SpaceWar.SpacePanel(); + float var22 = var21.getAlignmentX(); + var21.setVisible(false); + SpaceWar.SpacePanel var25 = new SpaceWar.SpacePanel(); + java.awt.Color var26 = var25.getBackground(); + var21.setForeground(var26); + javax.swing.InputMap var28 = var21.getInputMap(); + var0.setInputMap(1, var28); + var0.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", 0.0d, 1.0d); + java.awt.LayoutManager var34 = var0.getLayout(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var22 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var28); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var34); + + } + + public void test56() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test56"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + java.awt.Point var6 = var0.getMousePosition(); + var0.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", (short)100, (short)(-1)); + boolean var12 = var0.requestFocus(true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == false); + + } + + public void test57() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test57"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + var0.show(false); + boolean var8 = var0.isPaintingForPrint(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var15 = var9.getMouseListeners(); + int var16 = var9.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var17 = var9.getInputMethodRequests(); + var0.addKeyListener((java.awt.event.KeyListener)var9); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + float var20 = var19.getAlignmentX(); + var19.setVisible(false); + boolean var23 = var19.isDoubleBuffered(); + var19.list(); + float var25 = var19.getAlignmentY(); + boolean var26 = var9.isFocusCycleRoot((java.awt.Container)var19); + var19.firePropertyChange("", 1L, 1L); + var19.setVerifyInputWhenFocusTarget(true); + var19.setSize((-1), 0); + SpaceWar.SpacePanel var36 = new SpaceWar.SpacePanel(); + float var37 = var36.getAlignmentX(); + var36.setVisible(false); + var36.setInheritsPopupMenu(false); + boolean var42 = var36.isMinimumSizeSet(); + java.awt.FocusTraversalPolicy var43 = var36.getFocusTraversalPolicy(); + SpaceWar.SpacePanel var45 = new SpaceWar.SpacePanel(); + float var46 = var45.getAlignmentX(); + var45.setVisible(false); + var45.setInheritsPopupMenu(false); + var45.setFocusTraversalPolicyProvider(true); + SpaceWar.SpacePanel var53 = new SpaceWar.SpacePanel(); + float var54 = var53.getAlignmentX(); + var53.setVisible(false); + boolean var57 = var53.isDoubleBuffered(); + var53.list(); + SpaceWar.SpacePanel var59 = new SpaceWar.SpacePanel(); + float var60 = var59.getAlignmentX(); + var59.setVisible(false); + boolean var63 = var59.isDoubleBuffered(); + java.awt.dnd.DropTarget var64 = var59.getDropTarget(); + var59.show(false); + java.awt.Rectangle var67 = var59.getVisibleRect(); + java.awt.Rectangle var68 = var53.getBounds(var67); + javax.swing.JToolTip var69 = var53.createToolTip(); + var45.removeKeyListener((java.awt.event.KeyListener)var53); + var45.setFocusTraversalKeysEnabled(true); + javax.swing.KeyStroke[] var73 = var45.getRegisteredKeyStrokes(); + SpaceWar.SpacePanel var74 = new SpaceWar.SpacePanel(); + float var75 = var74.getAlignmentX(); + var74.setVisible(false); + java.awt.Dimension var78 = var74.getPreferredSize(); + java.awt.Toolkit var79 = var74.getToolkit(); + boolean var80 = var74.isFocusable(); + javax.swing.KeyStroke[] var81 = var74.getRegisteredKeyStrokes(); + java.awt.Component var84 = var74.getComponentAt(100, 100); + java.lang.Object var85 = var74.getTreeLock(); + boolean var88 = var74.inside(400, 0); + java.awt.event.MouseWheelListener[] var89 = var74.getMouseWheelListeners(); + var74.enableInputMethods(true); + boolean var92 = var45.isAncestorOf((java.awt.Component)var74); + java.awt.Component var93 = var36.add("SpaceWar.SpacePanel[,-1,1,-1x10,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", (java.awt.Component)var74); + java.awt.Component var94 = var19.add((java.awt.Component)var36); + java.awt.Point var96 = var36.getMousePosition(false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var42 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var43); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var46 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var54 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var57 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var60 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var63 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var64); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var67); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var68); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var69); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var73); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var75 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var78); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var79); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var80 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var81); + + // Regression assertion (captures the current behavior of the code) + assertNull(var84); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var85); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var88 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var89); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var92 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var93); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var94); + + // Regression assertion (captures the current behavior of the code) + assertNull(var96); + + } + + public void test58() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test58"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + float var7 = var6.getAlignmentX(); + var6.setVisible(false); + java.awt.Dimension var10 = var6.getPreferredSize(); + var0.setMaximumSize(var10); + boolean var12 = var0.getVerifyInputWhenFocusTarget(); + boolean var13 = var0.isFontSet(); + boolean var14 = var0.getIgnoreRepaint(); + java.awt.Component var17 = var0.locate(1, 25); + boolean var18 = var0.isLightweight(); + var0.move(100, 500); + var0.resetKeyboardActions(); + boolean var23 = var0.isForegroundSet(); + java.awt.Insets var24 = var0.getInsets(); + SpaceWar.SpacePanel var25 = new SpaceWar.SpacePanel(); + float var26 = var25.getAlignmentX(); + var25.firePropertyChange("", (-1), 1); + java.awt.Rectangle var31 = var25.getVisibleRect(); + java.awt.event.MouseListener[] var32 = var25.getMouseListeners(); + int var33 = var25.getDebugGraphicsOptions(); + SpaceWar.SpacePanel var34 = new SpaceWar.SpacePanel(); + float var35 = var34.getAlignmentX(); + var34.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var40 = var34.getUI(); + java.awt.im.InputMethodRequests var41 = var34.getInputMethodRequests(); + SpaceWar.SpacePanel var42 = new SpaceWar.SpacePanel(); + float var43 = var42.getAlignmentX(); + var42.setVisible(false); + var42.nextFocus(); + var42.updateUI(); + var42.enableInputMethods(true); + var42.setSize((-1), 1); + SpaceWar.SpacePanel var53 = new SpaceWar.SpacePanel(); + var53.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var34.add((java.awt.Component)var42, (java.lang.Object)"SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + SpaceWar.SpacePanel var59 = new SpaceWar.SpacePanel(); + float var60 = var59.getAlignmentX(); + var59.setVisible(false); + java.awt.Dimension var63 = var59.getPreferredSize(); + java.awt.Toolkit var64 = var59.getToolkit(); + java.awt.Toolkit var65 = var59.getToolkit(); + java.awt.Component var66 = var42.add((java.awt.Component)var59); + int var67 = var42.getY(); + int var70 = var42.getBaseline(25, 10); + java.awt.im.InputMethodRequests var71 = var42.getInputMethodRequests(); + SpaceWar.SpacePanel var72 = new SpaceWar.SpacePanel(); + float var73 = var72.getAlignmentX(); + var72.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var78 = new SpaceWar.SpacePanel(); + float var79 = var78.getAlignmentX(); + var78.setVisible(false); + java.awt.Dimension var82 = var78.getPreferredSize(); + var72.setMaximumSize(var82); + boolean var84 = var72.getVerifyInputWhenFocusTarget(); + var72.transferFocusUpCycle(); + java.awt.Point var86 = var72.location(); + java.awt.Point var87 = var42.getLocation(var86); + java.awt.Component var88 = var25.getComponentAt(var86); + java.awt.Component var89 = var0.findComponentAt(var86); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var31); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var32); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var33 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var35 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var40); + + // Regression assertion (captures the current behavior of the code) + assertNull(var41); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var43 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var60 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var63); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var64); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var65); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var66); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var67 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var70 == (-1)); + + // Regression assertion (captures the current behavior of the code) + assertNull(var71); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var73 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var79 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var82); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var84 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var86); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var87); + + // Regression assertion (captures the current behavior of the code) + assertNull(var88); + + // Regression assertion (captures the current behavior of the code) + assertNull(var89); + + } + + public void test59() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test59"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + boolean var2 = var0.hasFocus(); + SpaceWar.SpacePanel var3 = new SpaceWar.SpacePanel(); + float var4 = var3.getAlignmentX(); + var3.setVisible(false); + var3.nextFocus(); + var3.reshape((-1), 1, (-1), 10); + var3.disable(); + java.awt.LayoutManager var14 = var3.getLayout(); + var3.setVisible(false); + var0.remove((java.awt.Component)var3); + var3.repaint(); + boolean var19 = var3.hasFocus(); + java.awt.event.MouseWheelListener[] var20 = var3.getMouseWheelListeners(); + boolean var21 = var3.isFocusTraversalPolicySet(); + javax.swing.plaf.PanelUI var22 = var3.getUI(); + javax.swing.JToolTip var23 = var3.createToolTip(); + java.awt.Point var25 = var23.getMousePosition(false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var2 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var23); + + // Regression assertion (captures the current behavior of the code) + assertNull(var25); + + } + + public void test60() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test60"); + + + SpaceWar.Enemy var2 = new SpaceWar.Enemy(0, 10); + int var3 = var2.getRank(); + var2.update(); + int var5 = var2.getR(); + int var6 = var2.getRank(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == 10); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == 10); + + } + + public void test61() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test61"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + var0.list(); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + float var7 = var6.getAlignmentX(); + var6.setVisible(false); + boolean var10 = var6.isDoubleBuffered(); + java.awt.dnd.DropTarget var11 = var6.getDropTarget(); + var6.show(false); + java.awt.Rectangle var14 = var6.getVisibleRect(); + java.awt.Rectangle var15 = var0.getBounds(var14); + javax.swing.JToolTip var16 = var0.createToolTip(); + java.awt.Dimension var17 = var0.minimumSize(); + SpaceWar.SpacePanel var18 = new SpaceWar.SpacePanel(); + float var19 = var18.getAlignmentX(); + var18.setVisible(false); + var18.setInheritsPopupMenu(false); + var18.setFocusTraversalPolicyProvider(true); + java.awt.Container var26 = var18.getFocusCycleRootAncestor(); + SpaceWar.SpacePanel var27 = new SpaceWar.SpacePanel(); + float var28 = var27.getAlignmentX(); + var27.removeNotify(); + SpaceWar.SpacePanel var30 = new SpaceWar.SpacePanel(); + float var31 = var30.getAlignmentX(); + var30.setVisible(false); + boolean var34 = var30.isDoubleBuffered(); + var30.list(); + float var36 = var30.getAlignmentY(); + java.awt.Insets var37 = var30.getInsets(); + java.awt.Insets var38 = var27.getInsets(var37); + java.awt.Insets var39 = var18.getInsets(var38); + java.awt.Insets var40 = var0.getInsets(var38); + java.awt.ComponentOrientation var41 = var0.getComponentOrientation(); + java.awt.event.MouseWheelListener[] var42 = var0.getMouseWheelListeners(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var28 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var31 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var34 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var36 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var37); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var38); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var39); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var40); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var41); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var42); + + } + + public void test62() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test62"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + var0.show(false); + java.awt.Rectangle var8 = var0.getVisibleRect(); + java.awt.image.BufferedImage var10 = var0.loadImg("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + java.awt.ComponentOrientation var11 = var0.getComponentOrientation(); + boolean var12 = var0.isPaintingTile(); + boolean var13 = var0.isOptimizedDrawingEnabled(); + java.lang.String var14 = var0.getUIClassID(); + var0.enable(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var14 + "' != '" + "PanelUI"+ "'", var14.equals("PanelUI")); + + } + + public void test63() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test63"); + + + SpaceWar.Enemy var2 = new SpaceWar.Enemy(0, 100); + boolean var3 = var2.isDead(); + double var4 = var2.getY(); + int var5 = var2.getR(); + int var6 = var2.getRank(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0.0d); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == 100); + + } + + public void test64() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test64"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var6 = var0.getUI(); + java.awt.im.InputMethodRequests var7 = var0.getInputMethodRequests(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + var8.nextFocus(); + var8.updateUI(); + var8.enableInputMethods(true); + var8.setSize((-1), 1); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + var19.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var0.add((java.awt.Component)var8, (java.lang.Object)"SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + SpaceWar.SpacePanel var25 = new SpaceWar.SpacePanel(); + var25.setName(""); + java.awt.ComponentOrientation var28 = var25.getComponentOrientation(); + var0.applyComponentOrientation(var28); + java.awt.Component[] var30 = var0.getComponents(); + SpaceWar.SpacePanel var31 = new SpaceWar.SpacePanel(); + float var32 = var31.getAlignmentX(); + var31.setVisible(false); + java.awt.Dimension var35 = var31.getPreferredSize(); + boolean var36 = var31.getVerifyInputWhenFocusTarget(); + java.awt.Component var39 = var31.findComponentAt(10, 1); + boolean var40 = var31.requestDefaultFocus(); + var31.setVerifyInputWhenFocusTarget(false); + java.awt.Point var43 = var31.getLocation(); + var0.setLocation(var43); + java.awt.Component var47 = var0.locate(400, 10); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var28); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var30); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var32 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var35); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var36 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var39); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var40 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var43); + + // Regression assertion (captures the current behavior of the code) + assertNull(var47); + + } + + public void test65() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test65"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + float var7 = var6.getAlignmentX(); + var6.setVisible(false); + SpaceWar.SpacePanel var10 = new SpaceWar.SpacePanel(); + java.awt.Color var11 = var10.getBackground(); + var6.setForeground(var11); + var0.setBackground(var11); + var0.grabFocus(); + SpaceWar.SpacePanel var15 = new SpaceWar.SpacePanel(); + float var16 = var15.getAlignmentX(); + var15.setVisible(false); + boolean var19 = var15.isDoubleBuffered(); + java.awt.dnd.DropTarget var20 = var15.getDropTarget(); + boolean var21 = var15.isFocusCycleRoot(); + SpaceWar.SpacePanel var22 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var23 = new SpaceWar.SpacePanel(); + java.awt.Color var24 = var23.getBackground(); + SpaceWar.SpacePanel var25 = new SpaceWar.SpacePanel(); + float var26 = var25.getAlignmentX(); + var25.setVisible(false); + var25.nextFocus(); + var25.updateUI(); + var25.enableInputMethods(true); + var22.add((java.awt.Component)var23, (java.lang.Object)true); + java.awt.Dimension var34 = var23.getPreferredSize(); + var15.setSize(var34); + var0.setMaximumSize(var34); + SpaceWar.SpacePanel var37 = new SpaceWar.SpacePanel(); + float var38 = var37.getAlignmentX(); + var37.setVisible(false); + java.awt.Dimension var41 = var37.getPreferredSize(); + boolean var42 = var37.getVerifyInputWhenFocusTarget(); + java.awt.Component var45 = var37.findComponentAt(10, 1); + boolean var46 = var37.requestDefaultFocus(); + var37.setVerifyInputWhenFocusTarget(false); + java.awt.Point var49 = var37.getLocation(); + java.awt.Point var50 = var0.getLocation(var49); + var0.enable(false); + java.awt.Component var55 = var0.locate(500, 3); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var34); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var38 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var41); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var42 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var45); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var46 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var49); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var50); + + // Regression assertion (captures the current behavior of the code) + assertNull(var55); + + } + + public void test66() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test66"); + + + SpaceWar.Player var0 = new SpaceWar.Player(); + var0.setFiring(true); + var0.update(); + int var4 = var0.getX(); + int var5 = var0.getScore(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 400); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == 0); + + } + + public void test67() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test67"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.reshape((-1), 1, (-1), 10); + var0.disable(); + boolean var11 = var0.isFocusable(); + SpaceWar.SpacePanel var12 = new SpaceWar.SpacePanel(); + float var13 = var12.getAlignmentX(); + var12.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var18 = var12.getUI(); + java.awt.im.InputMethodRequests var19 = var12.getInputMethodRequests(); + SpaceWar.SpacePanel var20 = new SpaceWar.SpacePanel(); + float var21 = var20.getAlignmentX(); + var20.setVisible(false); + var20.nextFocus(); + var20.updateUI(); + var20.enableInputMethods(true); + var20.setSize((-1), 1); + SpaceWar.SpacePanel var31 = new SpaceWar.SpacePanel(); + var31.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var12.add((java.awt.Component)var20, (java.lang.Object)"SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + java.awt.event.KeyListener[] var37 = var12.getKeyListeners(); + java.awt.FocusTraversalPolicy var38 = var12.getFocusTraversalPolicy(); + SpaceWar.SpacePanel var39 = new SpaceWar.SpacePanel(); + var39.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + java.awt.Toolkit var44 = var39.getToolkit(); + var0.add((java.awt.Component)var12, (java.lang.Object)var39); + var0.layout(); + boolean var47 = var0.isVisible(); + var0.firePropertyChange("PanelUI", (byte)100, (byte)10); + var0.repaint(100L, 24, 99, 25, 10); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var37); + + // Regression assertion (captures the current behavior of the code) + assertNull(var38); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var44); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var47 == false); + + } + + public void test68() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test68"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + var0.setName(""); + java.awt.Dimension var3 = var0.minimumSize(); + boolean var4 = var0.isDoubleBuffered(); + SpaceWar.SpacePanel var5 = new SpaceWar.SpacePanel(); + float var6 = var5.getAlignmentX(); + var5.setVisible(false); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + java.awt.Color var10 = var9.getBackground(); + var5.setForeground(var10); + SpaceWar.SpacePanel var12 = new SpaceWar.SpacePanel(); + float var13 = var12.getAlignmentX(); + var12.setVisible(false); + boolean var16 = var12.isDoubleBuffered(); + java.awt.dnd.DropTarget var17 = var12.getDropTarget(); + var12.show(false); + java.awt.Rectangle var20 = var12.getVisibleRect(); + var5.repaint(var20); + java.awt.FocusTraversalPolicy var22 = var5.getFocusTraversalPolicy(); + java.awt.im.InputMethodRequests var23 = var5.getInputMethodRequests(); + var5.layout(); + boolean var25 = var5.isFocusTraversalPolicyProvider(); + java.awt.Component var26 = var0.add((java.awt.Component)var5); + var5.setOpaque(false); + var5.list(); + boolean var30 = javax.swing.JComponent.isLightweightComponent((java.awt.Component)var5); + boolean var31 = var5.isOptimizedDrawingEnabled(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertNull(var23); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var30 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var31 == true); + + } + + public void test69() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test69"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + var0.show(false); + boolean var8 = var0.isPaintingForPrint(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var15 = var9.getMouseListeners(); + int var16 = var9.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var17 = var9.getInputMethodRequests(); + var0.addKeyListener((java.awt.event.KeyListener)var9); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + float var20 = var19.getAlignmentX(); + var19.setVisible(false); + boolean var23 = var19.isDoubleBuffered(); + var19.list(); + float var25 = var19.getAlignmentY(); + boolean var26 = var9.isFocusCycleRoot((java.awt.Container)var19); + SpaceWar.SpacePanel var28 = new SpaceWar.SpacePanel(); + float var29 = var28.getAlignmentX(); + var28.setVisible(false); + var28.nextFocus(); + var28.updateUI(); + java.awt.Component var34 = var9.add("", (java.awt.Component)var28); + java.awt.ComponentOrientation var35 = var28.getComponentOrientation(); + boolean var36 = var28.isFocusable(); + boolean var37 = var28.isMaximumSizeSet(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var29 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var34); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var35); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var36 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == false); + + } + + public void test70() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test70"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.repaint(1L); + SpaceWar.SpacePanel var7 = new SpaceWar.SpacePanel(); + float var8 = var7.getAlignmentX(); + var7.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var13 = new SpaceWar.SpacePanel(); + float var14 = var13.getAlignmentX(); + var13.setVisible(false); + java.awt.Dimension var17 = var13.getPreferredSize(); + var7.setMaximumSize(var17); + var0.setPreferredSize(var17); + javax.swing.plaf.PanelUI var20 = var0.getUI(); + SpaceWar.SpacePanel var21 = new SpaceWar.SpacePanel(); + float var22 = var21.getAlignmentX(); + var21.setVisible(false); + var21.nextFocus(); + var21.reshape((-1), 1, (-1), 10); + var21.disable(); + java.awt.LayoutManager var32 = var21.getLayout(); + java.awt.Container var33 = var21.getParent(); + java.lang.String var34 = var21.getUIClassID(); + SpaceWar.Enemy var37 = new SpaceWar.Enemy(0, 10); + var0.add((java.awt.Component)var21, (java.lang.Object)10); + boolean var39 = var0.hasFocus(); + java.awt.event.ContainerListener[] var40 = var0.getContainerListeners(); + var0.repaint(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var22 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var32); + + // Regression assertion (captures the current behavior of the code) + assertNull(var33); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var34 + "' != '" + "PanelUI"+ "'", var34.equals("PanelUI")); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var39 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var40); + + } + + public void test71() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test71"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var6 = var0.getUI(); + java.awt.im.InputMethodRequests var7 = var0.getInputMethodRequests(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + var8.nextFocus(); + var8.updateUI(); + var8.enableInputMethods(true); + var8.setSize((-1), 1); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + var19.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var0.add((java.awt.Component)var8, (java.lang.Object)"SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + var8.doLayout(); + java.awt.event.MouseListener[] var26 = var8.getMouseListeners(); + var8.enableInputMethods(false); + var8.setEnabled(true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var26); + + } + + public void test72() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test72"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + java.awt.im.InputMethodRequests var3 = var0.getInputMethodRequests(); + var0.setDoubleBuffered(true); + var0.setInheritsPopupMenu(false); + javax.swing.plaf.PanelUI var8 = var0.getUI(); + java.util.Set var10 = var0.getFocusTraversalKeys(3); + var0.requestFocus(); + var0.setLocation(0, 24); + var0.doLayout(); + SpaceWar.SpacePanel var16 = new SpaceWar.SpacePanel(); + float var17 = var16.getAlignmentX(); + var16.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var22 = var16.getMouseListeners(); + var16.firePropertyChange("", 0.5f, 100.0f); + var16.enable(false); + int var29 = var16.getDebugGraphicsOptions(); + SpaceWar.SpacePanel var30 = new SpaceWar.SpacePanel(); + float var31 = var30.getAlignmentX(); + var30.setVisible(false); + var30.nextFocus(); + var30.repaint(1L); + SpaceWar.SpacePanel var37 = new SpaceWar.SpacePanel(); + float var38 = var37.getAlignmentX(); + var37.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var43 = new SpaceWar.SpacePanel(); + float var44 = var43.getAlignmentX(); + var43.setVisible(false); + java.awt.Dimension var47 = var43.getPreferredSize(); + var37.setMaximumSize(var47); + var30.setPreferredSize(var47); + java.awt.Container var50 = var30.getFocusCycleRootAncestor(); + java.awt.image.ColorModel var51 = var30.getColorModel(); + int var52 = var30.getComponentCount(); + java.awt.Component var53 = var16.add((java.awt.Component)var30); + var30.setBounds((-1), 25, 10, (-1)); + var30.grabFocus(); + boolean var60 = var0.isAncestorOf((java.awt.Component)var30); + SpaceWar.SpacePanel var61 = new SpaceWar.SpacePanel(); + java.awt.Color var62 = var61.getBackground(); + var61.repaint(); + var61.setRequestFocusEnabled(false); + var61.setIgnoreRepaint(false); + java.lang.String var68 = var61.toString(); + java.awt.Color var69 = var61.getBackground(); + SpaceWar.SpacePanel var70 = new SpaceWar.SpacePanel(); + float var71 = var70.getAlignmentX(); + var70.setVisible(false); + java.awt.Dimension var74 = var70.getPreferredSize(); + java.awt.Toolkit var75 = var70.getToolkit(); + java.awt.Toolkit var76 = var70.getToolkit(); + SpaceWar.Player var77 = new SpaceWar.Player(); + var77.increasePower(25); + int var80 = var77.getScore(); + var77.setRigth(true); + var77.loseLife(); + var61.putClientProperty((java.lang.Object)var70, (java.lang.Object)var77); + var30.addKeyListener((java.awt.event.KeyListener)var70); + var70.resetKeyboardActions(); + java.awt.image.BufferedImage var88 = var70.loadImg("SpaceWar.SpacePanel[,499,2,499x500,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var29 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var31 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var38 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var44 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var47); + + // Regression assertion (captures the current behavior of the code) + assertNull(var50); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var51); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var52 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var53); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var60 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var62); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var68 + "' != '" + "SpaceWar.SpacePanel[,0,0,0var68,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"+ "'", var68.equals("SpaceWar.SpacePanel[,0,0,0var68,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]")); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var69); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var71 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var74); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var75); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var76); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var80 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var88); + + } + + public void test73() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test73"); + + + SpaceWar.Bullet var3 = new SpaceWar.Bullet((-8.529389630162045d), 10, 2); + double var4 = var3.getX(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 10.0d); + + } + + public void test74() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test74"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.updateUI(); + var0.enableInputMethods(true); + java.awt.Point var9 = var0.getMousePosition(false); + var0.enableInputMethods(false); + javax.swing.event.AncestorListener[] var12 = var0.getAncestorListeners(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNull(var9); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var12); + + } + + public void test75() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test75"); + + + SpaceWar.Player var0 = new SpaceWar.Player(); + boolean var1 = var0.isRecovering(); + var0.setUp(true); + var0.loseLife(); + var0.setRigth(false); + int var7 = var0.getR(); + int var8 = var0.getX(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 25); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 400); + + } + + public void test76() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test76"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + java.awt.Dimension var4 = var0.getPreferredSize(); + java.awt.Toolkit var5 = var0.getToolkit(); + java.awt.Toolkit var6 = var0.getToolkit(); + var0.enable(false); + java.awt.Color var9 = var0.getForeground(); + java.awt.Dimension var10 = var0.getPreferredSize(); + var0.removeAll(); + javax.swing.JRootPane var12 = var0.getRootPane(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var4); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var9); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertNull(var12); + + } + + public void test77() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test77"); + + + SpaceWar.PowerUp var3 = new SpaceWar.PowerUp(100, (-1.0d), 0.0d); + double var4 = var3.getR(); + int var5 = var3.getType(); + double var6 = var3.getX(); + boolean var7 = var3.update(); + boolean var8 = var3.update(); + boolean var9 = var3.update(); + boolean var10 = var3.update(); + double var11 = var3.getX(); + double var12 = var3.getY(); + int var13 = var3.getType(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0.0d); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == 100); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == (-1.0d)); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == (-1.0d)); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == 8.0d); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == 100); + + } + + public void test78() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test78"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + var0.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + java.awt.event.ContainerListener[] var5 = var0.getContainerListeners(); + boolean var6 = var0.isPaintingTile(); + boolean var7 = var0.isPaintingForPrint(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == false); + + } + + public void test79() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test79"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.updateUI(); + var0.enableInputMethods(true); + var0.enableInputMethods(true); + java.awt.Component.BaselineResizeBehavior var10 = var0.getBaselineResizeBehavior(); + java.awt.dnd.DropTarget var11 = var0.getDropTarget(); + boolean var12 = var0.isDoubleBuffered(); + var0.transferFocusUpCycle(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == true); + + } + + public void test80() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test80"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var1 = new SpaceWar.SpacePanel(); + java.awt.Color var2 = var1.getBackground(); + SpaceWar.SpacePanel var3 = new SpaceWar.SpacePanel(); + float var4 = var3.getAlignmentX(); + var3.setVisible(false); + var3.nextFocus(); + var3.updateUI(); + var3.enableInputMethods(true); + var0.add((java.awt.Component)var1, (java.lang.Object)true); + boolean var12 = var0.isMinimumSizeSet(); + java.awt.event.HierarchyListener[] var13 = var0.getHierarchyListeners(); + SpaceWar.SpacePanel var14 = new SpaceWar.SpacePanel(); + float var15 = var14.getAlignmentX(); + var14.setVisible(false); + SpaceWar.SpacePanel var18 = new SpaceWar.SpacePanel(); + java.awt.Color var19 = var18.getBackground(); + var14.setForeground(var19); + SpaceWar.SpacePanel var21 = new SpaceWar.SpacePanel(); + float var22 = var21.getAlignmentX(); + var21.setVisible(false); + boolean var25 = var21.isDoubleBuffered(); + java.awt.dnd.DropTarget var26 = var21.getDropTarget(); + var21.show(false); + java.awt.Rectangle var29 = var21.getVisibleRect(); + var14.repaint(var29); + java.awt.FocusTraversalPolicy var31 = var14.getFocusTraversalPolicy(); + java.awt.im.InputMethodRequests var32 = var14.getInputMethodRequests(); + var14.layout(); + boolean var34 = var14.isFocusTraversalPolicyProvider(); + java.lang.Object var35 = var0.getClientProperty((java.lang.Object)var34); + var0.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", true, true); + boolean var40 = var0.requestDefaultFocus(); + SpaceWar.SpacePanel var41 = new SpaceWar.SpacePanel(); + float var42 = var41.getAlignmentX(); + var41.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var47 = var41.getMouseListeners(); + int var48 = var41.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var49 = var41.getInputMethodRequests(); + var41.removeNotify(); + var41.enable(); + java.lang.Object var52 = var41.getTreeLock(); + var41.setAlignmentY(0.0f); + java.awt.Rectangle var55 = var41.getVisibleRect(); + java.lang.Object var56 = var0.getClientProperty((java.lang.Object)var41); + java.util.Locale var57 = javax.swing.JComponent.getDefaultLocale(); + javax.swing.JComponent.setDefaultLocale(var57); + javax.swing.JComponent.setDefaultLocale(var57); + javax.swing.JComponent.setDefaultLocale(var57); + var41.setLocale(var57); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var2); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var22 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var29); + + // Regression assertion (captures the current behavior of the code) + assertNull(var31); + + // Regression assertion (captures the current behavior of the code) + assertNull(var32); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var34 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var35); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var40 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var42 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var47); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var48 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var49); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var52); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var55); + + // Regression assertion (captures the current behavior of the code) + assertNull(var56); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var57); + + } + + public void test81() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test81"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.removeNotify(); + SpaceWar.SpacePanel var3 = new SpaceWar.SpacePanel(); + float var4 = var3.getAlignmentX(); + var3.setVisible(false); + boolean var7 = var3.isDoubleBuffered(); + var3.list(); + float var9 = var3.getAlignmentY(); + java.awt.Insets var10 = var3.getInsets(); + java.awt.Insets var11 = var0.getInsets(var10); + boolean var12 = var0.isDoubleBuffered(); + java.awt.GraphicsConfiguration var13 = var0.getGraphicsConfiguration(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var13); + + } + + public void test82() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test82"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + java.awt.Dimension var4 = var0.getPreferredSize(); + boolean var5 = var0.getVerifyInputWhenFocusTarget(); + java.awt.Component var8 = var0.findComponentAt(10, 1); + boolean var9 = var0.requestDefaultFocus(); + var0.firePropertyChange("hi!", false, true); + javax.swing.ActionMap var14 = var0.getActionMap(); + java.awt.im.InputContext var15 = var0.getInputContext(); + boolean var16 = var0.hasFocus(); + boolean var17 = var0.getAutoscrolls(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var4); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == false); + + } + + public void test83() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test83"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + SpaceWar.SpacePanel var4 = new SpaceWar.SpacePanel(); + java.awt.Color var5 = var4.getBackground(); + var0.setForeground(var5); + SpaceWar.SpacePanel var7 = new SpaceWar.SpacePanel(); + float var8 = var7.getAlignmentX(); + var7.setVisible(false); + boolean var11 = var7.isDoubleBuffered(); + java.awt.dnd.DropTarget var12 = var7.getDropTarget(); + var7.show(false); + java.awt.Rectangle var15 = var7.getVisibleRect(); + var0.repaint(var15); + java.awt.FocusTraversalPolicy var17 = var0.getFocusTraversalPolicy(); + SpaceWar.SpacePanel var18 = new SpaceWar.SpacePanel(); + java.awt.Color var19 = var18.getBackground(); + boolean var22 = var18.inside(0, (-1)); + SpaceWar.SpacePanel var23 = new SpaceWar.SpacePanel(); + float var24 = var23.getAlignmentX(); + var23.setVisible(false); + SpaceWar.SpacePanel var27 = new SpaceWar.SpacePanel(); + java.awt.Color var28 = var27.getBackground(); + var23.setForeground(var28); + var18.setForeground(var28); + javax.swing.border.Border var31 = var18.getBorder(); + boolean var32 = var18.isManagingFocus(); + java.awt.Font var33 = var18.getFont(); + var0.setFont(var33); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var22 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var24 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var28); + + // Regression assertion (captures the current behavior of the code) + assertNull(var31); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var32 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var33); + + } + + public void test84() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test84"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + var0.setName(""); + java.awt.Graphics var3 = var0.getGraphics(); + java.awt.event.MouseMotionListener[] var4 = var0.getMouseMotionListeners(); + boolean var5 = var0.getIgnoreRepaint(); + var0.transferFocusBackward(); + boolean var7 = var0.hasFocus(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + java.awt.Dimension var12 = var8.getPreferredSize(); + boolean var13 = var8.getVerifyInputWhenFocusTarget(); + java.awt.Component var16 = var8.findComponentAt(10, 1); + java.awt.Component var17 = var0.add((java.awt.Component)var8); + boolean var18 = var0.requestDefaultFocus(); + + // Regression assertion (captures the current behavior of the code) + assertNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var4); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == false); + + } + + public void test85() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test85"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + java.awt.im.InputMethodRequests var3 = var0.getInputMethodRequests(); + var0.setDoubleBuffered(true); + var0.show(false); + boolean var8 = var0.isPaintingForPrint(); + var0.repaint(100L); + var0.setInheritsPopupMenu(true); + boolean var13 = var0.isFocusTraversalPolicyProvider(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == false); + + } + + public void test86() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test86"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + SpaceWar.SpacePanel var4 = new SpaceWar.SpacePanel(); + java.awt.Color var5 = var4.getBackground(); + var0.setForeground(var5); + SpaceWar.SpacePanel var7 = new SpaceWar.SpacePanel(); + float var8 = var7.getAlignmentX(); + var7.setVisible(false); + boolean var11 = var7.isDoubleBuffered(); + java.awt.dnd.DropTarget var12 = var7.getDropTarget(); + var7.show(false); + java.awt.Rectangle var15 = var7.getVisibleRect(); + var0.repaint(var15); + java.awt.FocusTraversalPolicy var17 = var0.getFocusTraversalPolicy(); + java.awt.im.InputMethodRequests var18 = var0.getInputMethodRequests(); + var0.layout(); + boolean var20 = var0.isCursorSet(); + java.awt.Dimension var21 = var0.size(); + javax.swing.border.Border var22 = var0.getBorder(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var21); + + // Regression assertion (captures the current behavior of the code) + assertNull(var22); + + } + + public void test87() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test87"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + var0.setRequestFocusEnabled(false); + var0.reshape(100, 0, 100, 0); + java.beans.VetoableChangeListener[] var10 = var0.getVetoableChangeListeners(); + java.awt.Rectangle var11 = var0.getVisibleRect(); + float var12 = var0.getAlignmentY(); + SpaceWar.SpacePanel var13 = new SpaceWar.SpacePanel(); + float var14 = var13.getAlignmentX(); + var13.setVisible(false); + var13.nextFocus(); + var13.reshape((-1), 1, (-1), 10); + java.util.Set var24 = var13.getFocusTraversalKeys(3); + SpaceWar.SpacePanel var25 = new SpaceWar.SpacePanel(); + float var26 = var25.getAlignmentX(); + var25.setVisible(false); + SpaceWar.SpacePanel var29 = new SpaceWar.SpacePanel(); + java.awt.Color var30 = var29.getBackground(); + var25.setForeground(var30); + SpaceWar.SpacePanel var32 = new SpaceWar.SpacePanel(); + float var33 = var32.getAlignmentX(); + var32.setVisible(false); + boolean var36 = var32.isDoubleBuffered(); + java.awt.dnd.DropTarget var37 = var32.getDropTarget(); + var32.show(false); + java.awt.Rectangle var40 = var32.getVisibleRect(); + var25.repaint(var40); + java.awt.FocusTraversalPolicy var42 = var25.getFocusTraversalPolicy(); + SpaceWar.SpacePanel var43 = new SpaceWar.SpacePanel(); + float var44 = var43.getAlignmentX(); + var43.firePropertyChange("", (-1), 1); + boolean var49 = var43.isFocusOwner(); + SpaceWar.SpacePanel var51 = new SpaceWar.SpacePanel(); + float var52 = var51.getAlignmentX(); + var51.setVisible(false); + java.awt.Dimension var55 = var51.getPreferredSize(); + java.awt.Toolkit var56 = var51.getToolkit(); + SpaceWar.SpacePanel var57 = new SpaceWar.SpacePanel(); + var57.setName(""); + int var60 = var57.getX(); + SpaceWar.SpacePanel var61 = new SpaceWar.SpacePanel(); + float var62 = var61.getAlignmentX(); + var61.setVisible(false); + var61.nextFocus(); + SpaceWar.SpacePanel var66 = new SpaceWar.SpacePanel(); + float var67 = var66.getAlignmentX(); + var66.setVisible(false); + SpaceWar.SpacePanel var70 = new SpaceWar.SpacePanel(); + java.awt.Color var71 = var70.getBackground(); + var66.setForeground(var71); + var61.setBackground(var71); + var57.setBackground(var71); + var51.setForeground(var71); + var43.putClientProperty((java.lang.Object)(byte)100, (java.lang.Object)var71); + var25.setBackground(var71); + SpaceWar.SpacePanel var78 = new SpaceWar.SpacePanel(); + float var79 = var78.getAlignmentX(); + var78.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var84 = new SpaceWar.SpacePanel(); + float var85 = var84.getAlignmentX(); + var84.setVisible(false); + SpaceWar.SpacePanel var88 = new SpaceWar.SpacePanel(); + java.awt.Color var89 = var88.getBackground(); + var84.setForeground(var89); + var78.setBackground(var89); + java.awt.Point var92 = var78.location(); + java.awt.Point var93 = var25.getLocation(var92); + java.awt.Component var94 = var13.findComponentAt(var92); + boolean var95 = var0.contains(var92); + java.awt.Point var96 = var0.getMousePosition(); + java.awt.Point var97 = var0.getMousePosition(); + var0.setRequestFocusEnabled(true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var30); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var33 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var36 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var37); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var40); + + // Regression assertion (captures the current behavior of the code) + assertNull(var42); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var44 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var49 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var52 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var55); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var56); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var60 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var62 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var67 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var71); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var79 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var85 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var89); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var92); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var93); + + // Regression assertion (captures the current behavior of the code) + assertNull(var94); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var95 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var96); + + // Regression assertion (captures the current behavior of the code) + assertNull(var97); + + } + + public void test88() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test88"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.setEnabled(false); + java.awt.Image var8 = var0.createImage(10, 100); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + java.awt.Color var10 = var9.getBackground(); + var0.setForeground(var10); + var0.setFocusTraversalPolicyProvider(true); + java.util.Set var15 = var0.getFocusTraversalKeys(2); + boolean var16 = var0.getFocusTraversalKeysEnabled(); + var0.removeNotify(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == true); + + } + + public void test89() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test89"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + var0.setRequestFocusEnabled(false); + var0.reshape(100, 0, 100, 0); + var0.requestFocus(); + var0.firePropertyChange("hi!", '4', ' '); + SpaceWar.Enemy var17 = new SpaceWar.Enemy(0, 100); + int var18 = var17.getR(); + var17.explode(); + var0.putClientProperty((java.lang.Object)var17, (java.lang.Object)(short)10); + boolean var23 = var0.requestFocus(false); + boolean var24 = var0.isFocusTraversalPolicyProvider(); + boolean var25 = var0.isFocusCycleRoot(); + java.lang.String var26 = var0.getUIClassID(); + SpaceWar.SpacePanel var27 = new SpaceWar.SpacePanel(); + float var28 = var27.getAlignmentX(); + var27.setVisible(false); + var27.nextFocus(); + var27.reshape((-1), 1, (-1), 10); + var27.disable(); + java.awt.LayoutManager var38 = var27.getLayout(); + java.awt.Container var39 = var27.getParent(); + boolean var40 = var27.isOptimizedDrawingEnabled(); + var27.enableInputMethods(true); + var27.setFocusTraversalKeysEnabled(false); + var0.addKeyListener((java.awt.event.KeyListener)var27); + var0.invalidate(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var24 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var26 + "' != '" + "PanelUI"+ "'", var26.equals("PanelUI")); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var28 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var38); + + // Regression assertion (captures the current behavior of the code) + assertNull(var39); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var40 == true); + + } + + public void test90() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test90"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + var0.setRequestFocusEnabled(false); + var0.setIgnoreRepaint(false); + var0.setAlignmentX(0.0f); + javax.swing.plaf.PanelUI var9 = var0.getUI(); + java.awt.Point var10 = var0.location(); + var0.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=java.awt.Dimension[width=800,height=600],minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", 10.0f, 1.0f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var9); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var10); + + } + + public void test91() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test91"); + + + SpaceWar.Player var0 = new SpaceWar.Player(); + var0.increasePower(25); + int var3 = var0.getX(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == 400); + + } + + public void test92() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test92"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.setInheritsPopupMenu(false); + var0.setFocusTraversalPolicyProvider(true); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + boolean var12 = var8.isDoubleBuffered(); + var8.list(); + SpaceWar.SpacePanel var14 = new SpaceWar.SpacePanel(); + float var15 = var14.getAlignmentX(); + var14.setVisible(false); + boolean var18 = var14.isDoubleBuffered(); + java.awt.dnd.DropTarget var19 = var14.getDropTarget(); + var14.show(false); + java.awt.Rectangle var22 = var14.getVisibleRect(); + java.awt.Rectangle var23 = var8.getBounds(var22); + javax.swing.JToolTip var24 = var8.createToolTip(); + var0.removeKeyListener((java.awt.event.KeyListener)var8); + var0.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", 0.5f, 1.0f); + var0.nextFocus(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var23); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var24); + + } + + public void test93() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test93"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var6 = var0.getUI(); + java.awt.im.InputMethodRequests var7 = var0.getInputMethodRequests(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + var8.nextFocus(); + var8.updateUI(); + var8.enableInputMethods(true); + var8.setSize((-1), 1); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + var19.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var0.add((java.awt.Component)var8, (java.lang.Object)"SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + java.awt.event.KeyListener[] var25 = var0.getKeyListeners(); + boolean var26 = var0.isValidateRoot(); + var0.setDoubleBuffered(true); + SpaceWar.SpacePanel var29 = new SpaceWar.SpacePanel(); + float var30 = var29.getAlignmentX(); + var29.setVisible(false); + boolean var33 = var29.isDoubleBuffered(); + java.awt.dnd.DropTarget var34 = var29.getDropTarget(); + var29.show(false); + boolean var37 = var29.isPaintingForPrint(); + SpaceWar.SpacePanel var38 = new SpaceWar.SpacePanel(); + float var39 = var38.getAlignmentX(); + var38.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var44 = var38.getMouseListeners(); + int var45 = var38.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var46 = var38.getInputMethodRequests(); + var29.addKeyListener((java.awt.event.KeyListener)var38); + SpaceWar.SpacePanel var48 = new SpaceWar.SpacePanel(); + float var49 = var48.getAlignmentX(); + var48.setVisible(false); + boolean var52 = var48.isDoubleBuffered(); + var48.list(); + float var54 = var48.getAlignmentY(); + boolean var55 = var38.isFocusCycleRoot((java.awt.Container)var48); + SpaceWar.SpacePanel var57 = new SpaceWar.SpacePanel(); + float var58 = var57.getAlignmentX(); + var57.setVisible(false); + var57.nextFocus(); + var57.updateUI(); + java.awt.Component var63 = var38.add("", (java.awt.Component)var57); + java.awt.ComponentOrientation var64 = var57.getComponentOrientation(); + var0.setComponentOrientation(var64); + SpaceWar.SpacePanel var66 = new SpaceWar.SpacePanel(); + float var67 = var66.getAlignmentX(); + var66.setVisible(false); + java.awt.Dimension var70 = var66.getPreferredSize(); + boolean var71 = var66.getVerifyInputWhenFocusTarget(); + java.awt.Component var74 = var66.findComponentAt(10, 1); + boolean var75 = var66.isCursorSet(); + boolean var76 = var66.isFocusTraversalPolicyProvider(); + java.awt.Rectangle var77 = var66.getBounds(); + java.awt.Dimension var78 = var66.getMaximumSize(); + var0.setMaximumSize(var78); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var25); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var30 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var33 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var34); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var39 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var44); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var45 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var46); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var49 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var52 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var54 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var55 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var58 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var63); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var64); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var67 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var70); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var71 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var74); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var75 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var76 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var77); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var78); + + } + + public void test94() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test94"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.requestFocus(); + boolean var6 = var0.getInheritsPopupMenu(); + boolean var7 = var0.isFocusOwner(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + var8.nextFocus(); + var8.updateUI(); + var8.enableInputMethods(true); + java.awt.Point var17 = var8.getMousePosition(false); + java.awt.Component.BaselineResizeBehavior var18 = var8.getBaselineResizeBehavior(); + boolean var19 = var8.isMaximumSizeSet(); + SpaceWar.SpacePanel var20 = new SpaceWar.SpacePanel(); + float var21 = var20.getAlignmentX(); + var20.setVisible(false); + boolean var24 = var20.isDoubleBuffered(); + var20.list(); + SpaceWar.SpacePanel var26 = new SpaceWar.SpacePanel(); + float var27 = var26.getAlignmentX(); + var26.setVisible(false); + boolean var30 = var26.isDoubleBuffered(); + java.awt.dnd.DropTarget var31 = var26.getDropTarget(); + var26.show(false); + java.awt.Rectangle var34 = var26.getVisibleRect(); + java.awt.Rectangle var35 = var20.getBounds(var34); + javax.swing.JToolTip var36 = var20.createToolTip(); + java.awt.Dimension var37 = var20.minimumSize(); + boolean var39 = var20.requestFocus(false); + java.awt.Dimension var40 = var20.getMaximumSize(); + var0.putClientProperty((java.lang.Object)var8, (java.lang.Object)var20); + SpaceWar.SpacePanel var42 = new SpaceWar.SpacePanel(); + float var43 = var42.getAlignmentX(); + var42.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var48 = new SpaceWar.SpacePanel(); + float var49 = var48.getAlignmentX(); + var48.setVisible(false); + SpaceWar.SpacePanel var52 = new SpaceWar.SpacePanel(); + java.awt.Color var53 = var52.getBackground(); + var48.setForeground(var53); + var42.setBackground(var53); + java.awt.Point var56 = var42.location(); + var0.setLocation(var56); + java.lang.String var58 = var0.getToolTipText(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var24 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var30 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var31); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var34); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var35); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var36); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var37); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var39 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var40); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var43 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var49 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var53); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var56); + + // Regression assertion (captures the current behavior of the code) + assertNull(var58); + + } + + public void test95() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test95"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + var0.show(false); + boolean var8 = var0.isPaintingForPrint(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var15 = var9.getMouseListeners(); + int var16 = var9.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var17 = var9.getInputMethodRequests(); + var0.addKeyListener((java.awt.event.KeyListener)var9); + var9.firePropertyChange("", (short)0, (short)0); + java.awt.event.MouseMotionListener[] var23 = var9.getMouseMotionListeners(); + java.awt.Dimension var24 = var9.getMaximumSize(); + boolean var25 = var9.getVerifyInputWhenFocusTarget(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var23); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == true); + + } + + public void test96() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test96"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + java.awt.Dimension var4 = var0.getPreferredSize(); + boolean var5 = var0.getVerifyInputWhenFocusTarget(); + java.awt.Component var8 = var0.findComponentAt(10, 1); + boolean var9 = var0.requestDefaultFocus(); + var0.setVerifyInputWhenFocusTarget(true); + boolean var12 = var0.isFocusable(); + java.awt.image.VolatileImage var15 = var0.createVolatileImage(10, 100); + java.awt.Toolkit var16 = var0.getToolkit(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var4); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + } + + public void test97() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test97"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + var0.list(); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + float var7 = var6.getAlignmentX(); + var6.setVisible(false); + boolean var10 = var6.isDoubleBuffered(); + java.awt.dnd.DropTarget var11 = var6.getDropTarget(); + var6.show(false); + java.awt.Rectangle var14 = var6.getVisibleRect(); + java.awt.Rectangle var15 = var0.getBounds(var14); + javax.swing.JToolTip var16 = var0.createToolTip(); + java.awt.Graphics var17 = var0.getGraphics(); + var0.setAutoscrolls(false); + boolean var20 = var0.requestFocusInWindow(); + SpaceWar.SpacePanel var21 = new SpaceWar.SpacePanel(); + float var22 = var21.getAlignmentX(); + var21.setVisible(false); + var21.nextFocus(); + var21.reshape((-1), 1, (-1), 10); + var21.disable(); + java.awt.LayoutManager var32 = var21.getLayout(); + java.awt.Container var33 = var21.getParent(); + boolean var34 = var21.isOptimizedDrawingEnabled(); + java.awt.Font var35 = var21.getFont(); + java.awt.FontMetrics var36 = var0.getFontMetrics(var35); + javax.swing.InputMap var37 = var0.getInputMap(); + java.awt.event.KeyListener[] var38 = var0.getKeyListeners(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var22 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var32); + + // Regression assertion (captures the current behavior of the code) + assertNull(var33); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var34 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var35); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var36); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var37); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var38); + + } + + public void test98() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test98"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.repaint(1L); + SpaceWar.SpacePanel var7 = new SpaceWar.SpacePanel(); + float var8 = var7.getAlignmentX(); + var7.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var13 = new SpaceWar.SpacePanel(); + float var14 = var13.getAlignmentX(); + var13.setVisible(false); + java.awt.Dimension var17 = var13.getPreferredSize(); + var7.setMaximumSize(var17); + var0.setPreferredSize(var17); + SpaceWar.SpacePanel var21 = new SpaceWar.SpacePanel(); + float var22 = var21.getAlignmentX(); + var21.setVisible(false); + SpaceWar.SpacePanel var25 = new SpaceWar.SpacePanel(); + java.awt.Color var26 = var25.getBackground(); + var21.setForeground(var26); + javax.swing.InputMap var28 = var21.getInputMap(); + var0.setInputMap(1, var28); + var0.repaint(499, 499, 1, 10); + var0.setSize(505, 100); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var22 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var28); + + } + + public void test99() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test99"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var6 = var0.getMouseListeners(); + int var7 = var0.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var8 = var0.getInputMethodRequests(); + var0.removeNotify(); + var0.enable(); + java.lang.Object var11 = var0.getTreeLock(); + int var12 = var0.getComponentCount(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == 0); + + } + + public void test100() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test100"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var6 = var0.getMouseListeners(); + int var7 = var0.getDebugGraphicsOptions(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + boolean var12 = var8.isDoubleBuffered(); + java.awt.dnd.DropTarget var13 = var8.getDropTarget(); + var8.show(false); + java.awt.Rectangle var16 = var8.getVisibleRect(); + var0.paintImmediately(var16); + java.awt.Rectangle var18 = var0.getBounds(); + boolean var19 = var0.isFocusCycleRoot(); + java.awt.Color var20 = var0.getBackground(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + } + + public void test101() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test101"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + var0.show(false); + java.awt.Rectangle var8 = var0.getVisibleRect(); + java.awt.image.BufferedImage var10 = var0.loadImg("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + java.awt.ComponentOrientation var11 = var0.getComponentOrientation(); + boolean var12 = var0.isPaintingTile(); + boolean var13 = var0.isOptimizedDrawingEnabled(); + javax.swing.TransferHandler var14 = var0.getTransferHandler(); + java.awt.GraphicsConfiguration var15 = var0.getGraphicsConfiguration(); + boolean var16 = var0.isLightweight(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == false); + + } + + public void test102() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test102"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + boolean var6 = var0.isFocusCycleRoot(); + var0.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", 100, 0); + SpaceWar.SpacePanel var11 = new SpaceWar.SpacePanel(); + float var12 = var11.getAlignmentX(); + var11.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var17 = var11.getUI(); + var0.add((java.awt.Component)var11, (java.lang.Object)(short)0); + java.awt.Insets var20 = var11.getInsets(); + SpaceWar.SpacePanel var21 = new SpaceWar.SpacePanel(); + float var22 = var21.getAlignmentX(); + var21.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var27 = var21.getMouseListeners(); + java.awt.Dimension var28 = var21.getPreferredSize(); + java.util.Locale var29 = var21.getLocale(); + var21.setFocusable(true); + SpaceWar.SpacePanel var32 = new SpaceWar.SpacePanel(); + java.awt.Color var33 = var32.getBackground(); + var32.repaint(); + var32.setRequestFocusEnabled(false); + var32.setIgnoreRepaint(false); + java.lang.String var39 = var32.toString(); + java.awt.Color var40 = var32.getBackground(); + var11.putClientProperty((java.lang.Object)var21, (java.lang.Object)var32); + java.lang.String var42 = var11.getName(); + SpaceWar.SpacePanel var44 = new SpaceWar.SpacePanel(); + java.awt.Color var45 = var44.getBackground(); + var44.repaint(); + java.awt.im.InputMethodRequests var47 = var44.getInputMethodRequests(); + int var48 = var44.countComponents(); + java.awt.event.ComponentListener[] var49 = var44.getComponentListeners(); + var44.removeNotify(); + javax.swing.InputMap var51 = var44.getInputMap(); + // The following exception was thrown during execution. + // This behavior will recorded for regression testing. + try { + var11.setInputMap(99, var51); + fail("Expected exception of type java.lang.IllegalArgumentException"); + } catch (java.lang.IllegalArgumentException e) { + // Expected exception. + } + + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var22 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var27); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var28); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var29); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var33); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var39 + "' != '" + "SpaceWar.SpacePanel[,0,0,0var39,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"+ "'", var39.equals("SpaceWar.SpacePanel[,0,0,0var39,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]")); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var40); + + // Regression assertion (captures the current behavior of the code) + assertNull(var42); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var45); + + // Regression assertion (captures the current behavior of the code) + assertNull(var47); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var48 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var49); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var51); + + } + + public void test103() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test103"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + var0.setRequestFocusEnabled(false); + boolean var5 = var0.isBackgroundSet(); + java.awt.Component var8 = var0.findComponentAt(10, 3); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var8); + + } + + public void test104() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test104"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var6 = var0.getMouseListeners(); + int var7 = var0.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var8 = var0.getInputMethodRequests(); + var0.removeNotify(); + var0.enable(); + SpaceWar.SpacePanel var11 = new SpaceWar.SpacePanel(); + java.awt.Color var12 = var11.getBackground(); + boolean var15 = var11.inside(0, (-1)); + var11.transferFocusUpCycle(); + java.lang.String var17 = var11.getName(); + boolean var18 = var0.isFocusCycleRoot((java.awt.Container)var11); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + java.awt.Color var20 = var19.getBackground(); + var19.repaint(); + var19.setRequestFocusEnabled(false); + var19.reshape(100, 0, 100, 0); + var19.requestFocus(); + var19.firePropertyChange("hi!", '4', ' '); + java.awt.Point var34 = var19.getLocation(); + java.awt.Component var35 = var11.getComponentAt(var34); + var11.setRequestFocusEnabled(true); + SpaceWar.SpacePanel var38 = new SpaceWar.SpacePanel(); + float var39 = var38.getAlignmentX(); + boolean var40 = var38.hasFocus(); + SpaceWar.SpacePanel var41 = new SpaceWar.SpacePanel(); + float var42 = var41.getAlignmentX(); + var41.setVisible(false); + var41.nextFocus(); + var41.reshape((-1), 1, (-1), 10); + var41.disable(); + java.awt.LayoutManager var52 = var41.getLayout(); + var41.setVisible(false); + var38.remove((java.awt.Component)var41); + boolean var56 = var41.hasFocus(); + java.lang.String var57 = var41.toString(); + var11.addKeyListener((java.awt.event.KeyListener)var41); + var41.repaint(); + SpaceWar.SpacePanel var60 = new SpaceWar.SpacePanel(); + java.awt.Color var61 = var60.getBackground(); + var60.repaint(); + java.awt.im.InputMethodRequests var63 = var60.getInputMethodRequests(); + int var64 = var60.countComponents(); + java.awt.event.ComponentListener[] var65 = var60.getComponentListeners(); + SpaceWar.SpacePanel var66 = new SpaceWar.SpacePanel(); + float var67 = var66.getAlignmentX(); + var66.removeNotify(); + SpaceWar.SpacePanel var69 = new SpaceWar.SpacePanel(); + float var70 = var69.getAlignmentX(); + var69.setVisible(false); + boolean var73 = var69.isDoubleBuffered(); + var69.list(); + float var75 = var69.getAlignmentY(); + java.awt.Insets var76 = var69.getInsets(); + java.awt.Insets var77 = var66.getInsets(var76); + java.awt.Insets var78 = var60.getInsets(var77); + java.awt.event.ComponentListener[] var79 = var60.getComponentListeners(); + java.awt.Component var80 = var41.add((java.awt.Component)var60); + var41.resetKeyboardActions(); + var41.revalidate(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var34); + + // Regression assertion (captures the current behavior of the code) + assertNull(var35); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var39 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var40 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var42 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var52); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var56 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var57 + "' != '" + "SpaceWar.SpacePanel[,-1,1,-1x10,invalid,hidden,disabled,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"+ "'", var57.equals("SpaceWar.SpacePanel[,-1,1,-1x10,invalid,hidden,disabled,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]")); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var61); + + // Regression assertion (captures the current behavior of the code) + assertNull(var63); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var64 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var65); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var67 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var70 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var73 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var75 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var76); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var77); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var78); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var79); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var80); + + } + + public void test105() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test105"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + var0.setName(""); + var0.enable(true); + var0.enable(); + java.awt.Point var6 = var0.location(); + var0.repaint(0, 3, (-1), 1); + java.awt.Dimension var12 = var0.getPreferredSize(); + SpaceWar.SpacePanel var13 = new SpaceWar.SpacePanel(); + float var14 = var13.getAlignmentX(); + var13.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var19 = var13.getUI(); + java.awt.im.InputMethodRequests var20 = var13.getInputMethodRequests(); + SpaceWar.SpacePanel var21 = new SpaceWar.SpacePanel(); + float var22 = var21.getAlignmentX(); + var21.setVisible(false); + var21.nextFocus(); + var21.updateUI(); + var21.enableInputMethods(true); + var21.setSize((-1), 1); + SpaceWar.SpacePanel var32 = new SpaceWar.SpacePanel(); + var32.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var13.add((java.awt.Component)var21, (java.lang.Object)"SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + SpaceWar.SpacePanel var38 = new SpaceWar.SpacePanel(); + var38.setName(""); + java.awt.ComponentOrientation var41 = var38.getComponentOrientation(); + var13.applyComponentOrientation(var41); + java.awt.Component[] var43 = var13.getComponents(); + SpaceWar.SpacePanel var44 = new SpaceWar.SpacePanel(); + float var45 = var44.getAlignmentX(); + var44.setVisible(false); + java.awt.Dimension var48 = var44.getPreferredSize(); + boolean var49 = var44.getVerifyInputWhenFocusTarget(); + java.awt.Component var52 = var44.findComponentAt(10, 1); + boolean var53 = var44.requestDefaultFocus(); + var44.setVerifyInputWhenFocusTarget(false); + java.awt.Point var56 = var44.getLocation(); + var13.setLocation(var56); + java.awt.Component var58 = var0.findComponentAt(var56); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var22 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var41); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var43); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var45 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var48); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var49 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var52); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var53 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var56); + + // Regression assertion (captures the current behavior of the code) + assertNull(var58); + + } + + public void test106() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test106"); + + + SpaceWar.PowerUp var3 = new SpaceWar.PowerUp(100, (-1.0d), 0.0d); + double var4 = var3.getR(); + int var5 = var3.getType(); + double var6 = var3.getX(); + boolean var7 = var3.update(); + boolean var8 = var3.update(); + boolean var9 = var3.update(); + boolean var10 = var3.update(); + double var11 = var3.getX(); + double var12 = var3.getY(); + double var13 = var3.getY(); + double var14 = var3.getY(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0.0d); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == 100); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == (-1.0d)); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == (-1.0d)); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == 8.0d); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == 8.0d); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == 8.0d); + + } + + public void test107() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test107"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.setInheritsPopupMenu(false); + var0.setFocusTraversalPolicyProvider(true); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + boolean var12 = var8.isDoubleBuffered(); + var8.list(); + SpaceWar.SpacePanel var14 = new SpaceWar.SpacePanel(); + float var15 = var14.getAlignmentX(); + var14.setVisible(false); + boolean var18 = var14.isDoubleBuffered(); + java.awt.dnd.DropTarget var19 = var14.getDropTarget(); + var14.show(false); + java.awt.Rectangle var22 = var14.getVisibleRect(); + java.awt.Rectangle var23 = var8.getBounds(var22); + javax.swing.JToolTip var24 = var8.createToolTip(); + var0.removeKeyListener((java.awt.event.KeyListener)var8); + java.awt.image.ColorModel var26 = var8.getColorModel(); + boolean var29 = var8.inside(1, 3); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var23); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var29 == false); + + } + + public void test108() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test108"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + float var7 = var6.getAlignmentX(); + var6.setVisible(false); + java.awt.Dimension var10 = var6.getPreferredSize(); + var0.setMaximumSize(var10); + boolean var12 = var0.getVerifyInputWhenFocusTarget(); + boolean var13 = var0.isFontSet(); + boolean var14 = var0.getIgnoreRepaint(); + java.awt.Component var17 = var0.locate(1, 25); + boolean var18 = var0.isLightweight(); + var0.move(100, 500); + var0.resetKeyboardActions(); + boolean var23 = var0.isForegroundSet(); + boolean var24 = var0.isVisible(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var24 == true); + + } + + public void test109() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test109"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + boolean var4 = var0.inside(0, (-1)); + var0.transferFocusUpCycle(); + java.awt.Container var6 = var0.getParent(); + javax.swing.border.Border var7 = var0.getBorder(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertNull(var7); + + } + + public void test110() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test110"); + + + SpaceWar.Player var0 = new SpaceWar.Player(); + boolean var1 = var0.isRecovering(); + var0.loseLife(); + int var3 = var0.getR(); + var0.increasePower(500); + int var6 = var0.getPower(); + var0.setLife(100); + var0.loseLife(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == 25); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == 499); + + } + + public void test111() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test111"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + var0.enable(false); + boolean var7 = var0.getFocusTraversalKeysEnabled(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + java.awt.Dimension var12 = var8.getPreferredSize(); + java.awt.Toolkit var13 = var8.getToolkit(); + boolean var14 = var8.isFocusable(); + javax.swing.KeyStroke[] var15 = var8.getRegisteredKeyStrokes(); + SpaceWar.SpacePanel var16 = new SpaceWar.SpacePanel(); + float var17 = var16.getAlignmentX(); + SpaceWar.SpacePanel var18 = new SpaceWar.SpacePanel(); + float var19 = var18.getAlignmentX(); + var18.setVisible(false); + java.awt.Dimension var22 = var18.getPreferredSize(); + boolean var23 = var18.getVerifyInputWhenFocusTarget(); + java.awt.Component var26 = var18.findComponentAt(10, 1); + var16.addKeyListener((java.awt.event.KeyListener)var18); + var18.repaint(100, (-1), (-1), 1); + boolean var33 = var8.isAncestorOf((java.awt.Component)var18); + var0.addKeyListener((java.awt.event.KeyListener)var18); + java.util.Locale var35 = var18.getLocale(); + javax.swing.JComponent.setDefaultLocale(var35); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var33 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var35); + + } + + public void test112() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test112"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var6 = var0.getUI(); + java.awt.im.InputMethodRequests var7 = var0.getInputMethodRequests(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + var8.nextFocus(); + var8.updateUI(); + var8.enableInputMethods(true); + var8.setSize((-1), 1); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + var19.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var0.add((java.awt.Component)var8, (java.lang.Object)"SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + SpaceWar.SpacePanel var25 = new SpaceWar.SpacePanel(); + float var26 = var25.getAlignmentX(); + var25.setVisible(false); + java.awt.Dimension var29 = var25.getPreferredSize(); + java.awt.Toolkit var30 = var25.getToolkit(); + java.awt.Toolkit var31 = var25.getToolkit(); + java.awt.Component var32 = var8.add((java.awt.Component)var25); + var8.setDebugGraphicsOptions(0); + java.awt.im.InputMethodRequests var35 = var8.getInputMethodRequests(); + SpaceWar.SpacePanel var36 = new SpaceWar.SpacePanel(); + java.awt.Color var37 = var36.getBackground(); + var8.setForeground(var37); + SpaceWar.SpacePanel var39 = new SpaceWar.SpacePanel(); + java.awt.Color var40 = var39.getBackground(); + var39.repaint(); + java.awt.im.InputMethodRequests var42 = var39.getInputMethodRequests(); + int var43 = var39.countComponents(); + java.awt.event.ComponentListener[] var44 = var39.getComponentListeners(); + var39.removeNotify(); + javax.swing.InputMap var46 = var39.getInputMap(); + SpaceWar.SpacePanel var47 = new SpaceWar.SpacePanel(); + float var48 = var47.getAlignmentX(); + var47.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var53 = new SpaceWar.SpacePanel(); + float var54 = var53.getAlignmentX(); + var53.setVisible(false); + SpaceWar.SpacePanel var57 = new SpaceWar.SpacePanel(); + java.awt.Color var58 = var57.getBackground(); + var53.setForeground(var58); + var47.setBackground(var58); + java.awt.Point var61 = var47.location(); + var39.setLocation(var61); + boolean var63 = var8.contains(var61); + var8.setAutoscrolls(false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var29); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var30); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var31); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var32); + + // Regression assertion (captures the current behavior of the code) + assertNull(var35); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var37); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var40); + + // Regression assertion (captures the current behavior of the code) + assertNull(var42); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var43 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var44); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var46); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var48 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var54 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var58); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var61); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var63 == false); + + } + + public void test113() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test113"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + java.awt.im.InputMethodRequests var3 = var0.getInputMethodRequests(); + int var4 = var0.countComponents(); + java.awt.event.MouseMotionListener[] var5 = var0.getMouseMotionListeners(); + java.awt.Dimension var6 = var0.size(); + boolean var7 = var0.isMinimumSizeSet(); + boolean var8 = var0.getIgnoreRepaint(); + var0.repaint(); + var0.hide(); + java.util.Locale var11 = javax.swing.JComponent.getDefaultLocale(); + javax.swing.JComponent.setDefaultLocale(var11); + javax.swing.JComponent.setDefaultLocale(var11); + javax.swing.JComponent.setDefaultLocale(var11); + javax.swing.JComponent.setDefaultLocale(var11); + var0.setLocale(var11); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + } + + public void test114() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test114"); + + + SpaceWar.Player var0 = new SpaceWar.Player(); + boolean var1 = var0.isRecovering(); + var0.setUp(true); + int var4 = var0.getY(); + var0.loseLife(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 500); + + } + + public void test115() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test115"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + SpaceWar.SpacePanel var4 = new SpaceWar.SpacePanel(); + java.awt.Color var5 = var4.getBackground(); + var0.setForeground(var5); + SpaceWar.SpacePanel var7 = new SpaceWar.SpacePanel(); + float var8 = var7.getAlignmentX(); + var7.setVisible(false); + boolean var11 = var7.isDoubleBuffered(); + java.awt.dnd.DropTarget var12 = var7.getDropTarget(); + var7.show(false); + java.awt.Rectangle var15 = var7.getVisibleRect(); + var0.repaint(var15); + java.awt.FocusTraversalPolicy var17 = var0.getFocusTraversalPolicy(); + var0.resetKeyboardActions(); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + float var20 = var19.getAlignmentX(); + var19.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var25 = var19.getMouseListeners(); + int var26 = var19.getDebugGraphicsOptions(); + SpaceWar.SpacePanel var27 = new SpaceWar.SpacePanel(); + float var28 = var27.getAlignmentX(); + var27.setVisible(false); + boolean var31 = var27.isDoubleBuffered(); + java.awt.dnd.DropTarget var32 = var27.getDropTarget(); + var27.show(false); + java.awt.Rectangle var35 = var27.getVisibleRect(); + var19.paintImmediately(var35); + var0.setBounds(var35); + boolean var38 = var0.getVerifyInputWhenFocusTarget(); + boolean var39 = var0.isOptimizedDrawingEnabled(); + boolean var40 = var0.isShowing(); + boolean var41 = var0.isForegroundSet(); + var0.repaint((-1L)); + javax.swing.event.AncestorListener[] var44 = var0.getAncestorListeners(); + // The following exception was thrown during execution. + // This behavior will recorded for regression testing. + try { + javax.swing.InputMap var46 = var0.getInputMap(3); + fail("Expected exception of type java.lang.IllegalArgumentException"); + } catch (java.lang.IllegalArgumentException e) { + // Expected exception. + } + + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var25); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var28 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var31 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var32); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var35); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var38 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var39 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var40 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var41 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var44); + + } + + public void test116() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test116"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.setInheritsPopupMenu(false); + var0.setFocusTraversalPolicyProvider(true); + boolean var10 = var0.inside(25, 3); + SpaceWar.SpacePanel var11 = new SpaceWar.SpacePanel(); + float var12 = var11.getAlignmentX(); + var11.setVisible(false); + boolean var15 = var11.isDoubleBuffered(); + java.awt.dnd.DropTarget var16 = var11.getDropTarget(); + var11.show(false); + boolean var19 = var11.isPaintingForPrint(); + SpaceWar.SpacePanel var20 = new SpaceWar.SpacePanel(); + float var21 = var20.getAlignmentX(); + SpaceWar.SpacePanel var22 = new SpaceWar.SpacePanel(); + float var23 = var22.getAlignmentX(); + var22.setVisible(false); + java.awt.Dimension var26 = var22.getPreferredSize(); + boolean var27 = var22.getVerifyInputWhenFocusTarget(); + java.awt.Component var30 = var22.findComponentAt(10, 1); + var20.addKeyListener((java.awt.event.KeyListener)var22); + java.awt.Dimension var32 = var22.getMinimumSize(); + var11.setMinimumSize(var32); + var0.setPreferredSize(var32); + int var35 = var0.getX(); + java.awt.event.KeyListener[] var36 = var0.getKeyListeners(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var30); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var32); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var35 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var36); + + } + + public void test117() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test117"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + var0.setRequestFocusEnabled(false); + var0.reshape(100, 0, 100, 0); + var0.requestFocus(); + var0.firePropertyChange("hi!", '4', ' '); + java.awt.Point var15 = var0.getLocation(); + java.awt.Dimension var16 = var0.size(); + java.awt.Image var19 = var0.createImage((-1), (-1)); + java.awt.event.ComponentListener[] var20 = var0.getComponentListeners(); + var0.setName("PanelUI"); + java.awt.peer.ComponentPeer var23 = var0.getPeer(); + java.awt.Point var24 = var0.getLocation(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertNull(var23); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var24); + + } + + public void test118() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test118"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.setEnabled(false); + java.awt.Image var8 = var0.createImage(10, 100); + java.awt.Component.BaselineResizeBehavior var9 = var0.getBaselineResizeBehavior(); + boolean var10 = var0.isMinimumSizeSet(); + java.awt.Color var11 = var0.getForeground(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var9); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + } + + public void test119() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test119"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + var0.setRequestFocusEnabled(false); + var0.setIgnoreRepaint(false); + boolean var7 = var0.requestFocusInWindow(); + var0.setVisible(true); + java.awt.Container var10 = var0.getParent(); + java.awt.Dimension var11 = var0.getMinimumSize(); + SpaceWar.SpacePanel var12 = new SpaceWar.SpacePanel(); + float var13 = var12.getAlignmentX(); + var12.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var18 = new SpaceWar.SpacePanel(); + float var19 = var18.getAlignmentX(); + var18.setVisible(false); + java.awt.Dimension var22 = var18.getPreferredSize(); + var12.setMaximumSize(var22); + boolean var24 = var12.getVerifyInputWhenFocusTarget(); + javax.accessibility.AccessibleContext var25 = var12.getAccessibleContext(); + boolean var26 = var12.isDoubleBuffered(); + boolean var27 = var12.getAutoscrolls(); + var12.repaint(10L, (-1), 25, (-1), 100); + var12.updateUI(); + boolean var35 = var12.requestDefaultFocus(); + SpaceWar.SpacePanel var36 = new SpaceWar.SpacePanel(); + float var37 = var36.getAlignmentX(); + boolean var38 = var36.hasFocus(); + boolean var39 = var36.isPreferredSizeSet(); + var36.firePropertyChange("", (short)1, (short)0); + boolean var44 = var36.isMaximumSizeSet(); + java.awt.peer.ComponentPeer var45 = var36.getPeer(); + SpaceWar.SpacePanel var46 = new SpaceWar.SpacePanel(); + float var47 = var46.getAlignmentX(); + var46.setVisible(false); + boolean var50 = var46.isDoubleBuffered(); + java.awt.dnd.DropTarget var51 = var46.getDropTarget(); + var46.show(false); + SpaceWar.SpacePanel var54 = new SpaceWar.SpacePanel(); + float var55 = var54.getAlignmentX(); + var54.setVisible(false); + SpaceWar.SpacePanel var58 = new SpaceWar.SpacePanel(); + java.awt.Color var59 = var58.getBackground(); + var54.setForeground(var59); + SpaceWar.SpacePanel var61 = new SpaceWar.SpacePanel(); + float var62 = var61.getAlignmentX(); + var61.setVisible(false); + boolean var65 = var61.isDoubleBuffered(); + java.awt.dnd.DropTarget var66 = var61.getDropTarget(); + var61.show(false); + java.awt.Rectangle var69 = var61.getVisibleRect(); + var54.repaint(var69); + java.awt.FocusTraversalPolicy var71 = var54.getFocusTraversalPolicy(); + java.awt.im.InputMethodRequests var72 = var54.getInputMethodRequests(); + var54.layout(); + SpaceWar.SpacePanel var74 = new SpaceWar.SpacePanel(); + float var75 = var74.getAlignmentX(); + var74.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var80 = new SpaceWar.SpacePanel(); + float var81 = var80.getAlignmentX(); + var80.setVisible(false); + SpaceWar.SpacePanel var84 = new SpaceWar.SpacePanel(); + java.awt.Color var85 = var84.getBackground(); + var80.setForeground(var85); + var74.setBackground(var85); + var54.setForeground(var85); + int var89 = var54.getWidth(); + javax.swing.plaf.PanelUI var90 = var54.getUI(); + var46.setUI(var90); + var36.setUI(var90); + var12.remove((java.awt.Component)var36); + java.awt.Point var94 = var12.location(); + java.awt.Point var95 = var0.getLocation(var94); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var24 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var25); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var35 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var38 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var39 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var44 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var45); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var47 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var50 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var51); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var55 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var59); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var62 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var65 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var66); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var69); + + // Regression assertion (captures the current behavior of the code) + assertNull(var71); + + // Regression assertion (captures the current behavior of the code) + assertNull(var72); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var75 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var81 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var85); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var89 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var90); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var94); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var95); + + } + + public void test120() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test120"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var1 = new SpaceWar.SpacePanel(); + java.awt.Color var2 = var1.getBackground(); + SpaceWar.SpacePanel var3 = new SpaceWar.SpacePanel(); + float var4 = var3.getAlignmentX(); + var3.setVisible(false); + var3.nextFocus(); + var3.updateUI(); + var3.enableInputMethods(true); + var0.add((java.awt.Component)var1, (java.lang.Object)true); + boolean var13 = var1.areFocusTraversalKeysSet(0); + boolean var14 = var1.isMinimumSizeSet(); + boolean var15 = var1.isLightweight(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var2); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == false); + + } + + public void test121() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test121"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var6 = var0.getMouseListeners(); + java.awt.Dimension var7 = var0.getPreferredSize(); + java.beans.PropertyChangeListener[] var8 = var0.getPropertyChangeListeners(); + java.awt.LayoutManager var9 = var0.getLayout(); + var0.enableInputMethods(false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var9); + + } + + public void test122() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test122"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + java.awt.Dimension var4 = var0.getPreferredSize(); + java.awt.Toolkit var5 = var0.getToolkit(); + boolean var6 = var0.isFocusable(); + javax.swing.KeyStroke[] var7 = var0.getRegisteredKeyStrokes(); + java.awt.Component var10 = var0.getComponentAt(100, 100); + java.lang.Object var11 = var0.getTreeLock(); + boolean var14 = var0.inside(400, 0); + java.awt.event.MouseWheelListener[] var15 = var0.getMouseWheelListeners(); + var0.enableInputMethods(true); + var0.list(); + boolean var19 = var0.requestDefaultFocus(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var4); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == false); + + } + + public void test123() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test123"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + var0.list(); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + float var7 = var6.getAlignmentX(); + var6.setVisible(false); + boolean var10 = var6.isDoubleBuffered(); + java.awt.dnd.DropTarget var11 = var6.getDropTarget(); + var6.show(false); + java.awt.Rectangle var14 = var6.getVisibleRect(); + java.awt.Rectangle var15 = var0.getBounds(var14); + javax.swing.JToolTip var16 = var0.createToolTip(); + var0.firePropertyChange("", false, false); + var0.validate(); + var0.setAlignmentY((-1.0f)); + SpaceWar.SpacePanel var24 = new SpaceWar.SpacePanel(); + float var25 = var24.getAlignmentX(); + boolean var26 = var24.hasFocus(); + SpaceWar.SpacePanel var27 = new SpaceWar.SpacePanel(); + float var28 = var27.getAlignmentX(); + var27.setVisible(false); + var27.nextFocus(); + var27.reshape((-1), 1, (-1), 10); + var27.disable(); + java.awt.LayoutManager var38 = var27.getLayout(); + var27.setVisible(false); + var24.remove((java.awt.Component)var27); + java.awt.Dimension var42 = var27.getSize(); + var0.setSize(var42); + var0.revalidate(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var28 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var38); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var42); + + } + + public void test124() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test124"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.requestFocus(); + boolean var6 = var0.isBackgroundSet(); + SpaceWar.SpacePanel var7 = new SpaceWar.SpacePanel(); + java.awt.Color var8 = var7.getBackground(); + var7.repaint(); + var7.setRequestFocusEnabled(false); + var7.reshape(100, 0, 100, 0); + SpaceWar.SpacePanel var17 = new SpaceWar.SpacePanel(); + float var18 = var17.getAlignmentX(); + var17.setVisible(false); + var17.setInheritsPopupMenu(false); + boolean var23 = var17.isDoubleBuffered(); + SpaceWar.SpacePanel var24 = new SpaceWar.SpacePanel(); + float var25 = var24.getAlignmentX(); + var24.setVisible(false); + var24.nextFocus(); + var24.reshape((-1), 1, (-1), 10); + var24.disable(); + java.awt.LayoutManager var35 = var24.getLayout(); + var17.setLayout(var35); + var0.add((java.awt.Component)var7, (java.lang.Object)var35); + var7.hide(); + java.awt.Component var41 = var7.locate(2, 24); + var7.show(false); + var7.repaint(0L); + var7.setFocusTraversalKeysEnabled(true); + boolean var48 = var7.isPaintingTile(); + var7.transferFocusDownCycle(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var35); + + // Regression assertion (captures the current behavior of the code) + assertNull(var41); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var48 == false); + + } + + public void test125() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test125"); + + + SpaceWar.Bullet var3 = new SpaceWar.Bullet(594.7973940347722d, 3, 100); + boolean var4 = var3.update(); + boolean var5 = var3.update(); + double var6 = var3.getR(); + boolean var7 = var3.update(); + double var8 = var3.getY(); + double var9 = var3.getY(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == 5.0d); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 75.48643960578549d); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 75.48643960578549d); + + } + + public void test126() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test126"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.setInheritsPopupMenu(false); + boolean var6 = var0.isMinimumSizeSet(); + java.awt.Point var8 = var0.getMousePosition(true); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.setVisible(false); + SpaceWar.SpacePanel var13 = new SpaceWar.SpacePanel(); + java.awt.Color var14 = var13.getBackground(); + var9.setForeground(var14); + SpaceWar.SpacePanel var16 = new SpaceWar.SpacePanel(); + float var17 = var16.getAlignmentX(); + var16.setVisible(false); + boolean var20 = var16.isDoubleBuffered(); + java.awt.dnd.DropTarget var21 = var16.getDropTarget(); + var16.show(false); + java.awt.Rectangle var24 = var16.getVisibleRect(); + var9.repaint(var24); + java.awt.FocusTraversalPolicy var26 = var9.getFocusTraversalPolicy(); + SpaceWar.SpacePanel var27 = new SpaceWar.SpacePanel(); + float var28 = var27.getAlignmentX(); + var27.firePropertyChange("", (-1), 1); + boolean var33 = var27.isFocusOwner(); + SpaceWar.SpacePanel var35 = new SpaceWar.SpacePanel(); + float var36 = var35.getAlignmentX(); + var35.setVisible(false); + java.awt.Dimension var39 = var35.getPreferredSize(); + java.awt.Toolkit var40 = var35.getToolkit(); + SpaceWar.SpacePanel var41 = new SpaceWar.SpacePanel(); + var41.setName(""); + int var44 = var41.getX(); + SpaceWar.SpacePanel var45 = new SpaceWar.SpacePanel(); + float var46 = var45.getAlignmentX(); + var45.setVisible(false); + var45.nextFocus(); + SpaceWar.SpacePanel var50 = new SpaceWar.SpacePanel(); + float var51 = var50.getAlignmentX(); + var50.setVisible(false); + SpaceWar.SpacePanel var54 = new SpaceWar.SpacePanel(); + java.awt.Color var55 = var54.getBackground(); + var50.setForeground(var55); + var45.setBackground(var55); + var41.setBackground(var55); + var35.setForeground(var55); + var27.putClientProperty((java.lang.Object)(byte)100, (java.lang.Object)var55); + var9.setBackground(var55); + javax.swing.JToolTip var62 = var9.createToolTip(); + var62.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, true); + SpaceWar.SpacePanel var67 = new SpaceWar.SpacePanel(); + var67.setName(""); + java.awt.Dimension var70 = var67.minimumSize(); + boolean var71 = var67.isDoubleBuffered(); + java.awt.event.HierarchyListener[] var72 = var67.getHierarchyListeners(); + java.awt.Font var73 = var67.getFont(); + java.awt.FontMetrics var74 = var62.getFontMetrics(var73); + var62.setAutoscrolls(true); + int var77 = var62.getX(); + boolean var78 = var0.isAncestorOf((java.awt.Component)var62); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var21); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var28 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var33 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var36 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var39); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var40); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var44 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var46 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var51 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var55); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var62); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var70); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var71 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var72); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var73); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var74); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var77 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var78 == false); + + } + + public void test127() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test127"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + var0.show(false); + boolean var8 = var0.isPaintingForPrint(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var15 = var9.getMouseListeners(); + int var16 = var9.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var17 = var9.getInputMethodRequests(); + var0.addKeyListener((java.awt.event.KeyListener)var9); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + float var20 = var19.getAlignmentX(); + var19.setVisible(false); + boolean var23 = var19.isDoubleBuffered(); + var19.list(); + float var25 = var19.getAlignmentY(); + boolean var26 = var9.isFocusCycleRoot((java.awt.Container)var19); + var19.firePropertyChange("", 1L, 1L); + var19.setVerifyInputWhenFocusTarget(true); + var19.resize(25, 400); + var19.setName("SpaceWar.SpacePanel[,0,0,0x0,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + var19.setFocusTraversalPolicyProvider(true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == false); + + } + + public void test128() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test128"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.updateUI(); + var0.enableInputMethods(true); + java.awt.Point var8 = var0.location(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.setVisible(false); + var9.nextFocus(); + var9.reshape((-1), 1, (-1), 10); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + java.awt.Color var20 = var19.getBackground(); + var19.repaint(); + var19.setRequestFocusEnabled(false); + var19.reshape(100, 0, 100, 0); + java.awt.Component var29 = var9.add((java.awt.Component)var19); + SpaceWar.SpacePanel var30 = new SpaceWar.SpacePanel(); + var30.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + javax.swing.plaf.PanelUI var35 = var30.getUI(); + SpaceWar.SpacePanel var36 = new SpaceWar.SpacePanel(); + float var37 = var36.getAlignmentX(); + var36.setVisible(false); + var36.nextFocus(); + var36.repaint(1L); + SpaceWar.SpacePanel var43 = new SpaceWar.SpacePanel(); + float var44 = var43.getAlignmentX(); + var43.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var49 = new SpaceWar.SpacePanel(); + float var50 = var49.getAlignmentX(); + var49.setVisible(false); + java.awt.Dimension var53 = var49.getPreferredSize(); + var43.setMaximumSize(var53); + var36.setPreferredSize(var53); + var30.setMaximumSize(var53); + java.awt.Dimension var57 = var19.getSize(var53); + var0.setMaximumSize(var53); + boolean var59 = var0.getIgnoreRepaint(); + var0.setDebugGraphicsOptions(99); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var29); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var35); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var44 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var50 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var53); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var57); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var59 == false); + + } + + public void test129() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test129"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + var0.show(false); + boolean var8 = var0.isPaintingForPrint(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var15 = var9.getMouseListeners(); + int var16 = var9.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var17 = var9.getInputMethodRequests(); + var0.addKeyListener((java.awt.event.KeyListener)var9); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + float var20 = var19.getAlignmentX(); + var19.setVisible(false); + boolean var23 = var19.isDoubleBuffered(); + var19.list(); + float var25 = var19.getAlignmentY(); + boolean var26 = var9.isFocusCycleRoot((java.awt.Container)var19); + var19.firePropertyChange("", 1L, 1L); + var19.setVerifyInputWhenFocusTarget(true); + var19.setSize((-1), 0); + SpaceWar.SpacePanel var36 = new SpaceWar.SpacePanel(); + float var37 = var36.getAlignmentX(); + var36.setVisible(false); + var36.setInheritsPopupMenu(false); + boolean var42 = var36.isMinimumSizeSet(); + java.awt.FocusTraversalPolicy var43 = var36.getFocusTraversalPolicy(); + SpaceWar.SpacePanel var45 = new SpaceWar.SpacePanel(); + float var46 = var45.getAlignmentX(); + var45.setVisible(false); + var45.setInheritsPopupMenu(false); + var45.setFocusTraversalPolicyProvider(true); + SpaceWar.SpacePanel var53 = new SpaceWar.SpacePanel(); + float var54 = var53.getAlignmentX(); + var53.setVisible(false); + boolean var57 = var53.isDoubleBuffered(); + var53.list(); + SpaceWar.SpacePanel var59 = new SpaceWar.SpacePanel(); + float var60 = var59.getAlignmentX(); + var59.setVisible(false); + boolean var63 = var59.isDoubleBuffered(); + java.awt.dnd.DropTarget var64 = var59.getDropTarget(); + var59.show(false); + java.awt.Rectangle var67 = var59.getVisibleRect(); + java.awt.Rectangle var68 = var53.getBounds(var67); + javax.swing.JToolTip var69 = var53.createToolTip(); + var45.removeKeyListener((java.awt.event.KeyListener)var53); + var45.setFocusTraversalKeysEnabled(true); + javax.swing.KeyStroke[] var73 = var45.getRegisteredKeyStrokes(); + SpaceWar.SpacePanel var74 = new SpaceWar.SpacePanel(); + float var75 = var74.getAlignmentX(); + var74.setVisible(false); + java.awt.Dimension var78 = var74.getPreferredSize(); + java.awt.Toolkit var79 = var74.getToolkit(); + boolean var80 = var74.isFocusable(); + javax.swing.KeyStroke[] var81 = var74.getRegisteredKeyStrokes(); + java.awt.Component var84 = var74.getComponentAt(100, 100); + java.lang.Object var85 = var74.getTreeLock(); + boolean var88 = var74.inside(400, 0); + java.awt.event.MouseWheelListener[] var89 = var74.getMouseWheelListeners(); + var74.enableInputMethods(true); + boolean var92 = var45.isAncestorOf((java.awt.Component)var74); + java.awt.Component var93 = var36.add("SpaceWar.SpacePanel[,-1,1,-1x10,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", (java.awt.Component)var74); + java.awt.Component var94 = var19.add((java.awt.Component)var36); + java.awt.event.MouseWheelListener[] var95 = var94.getMouseWheelListeners(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var42 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var43); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var46 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var54 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var57 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var60 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var63 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var64); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var67); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var68); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var69); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var73); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var75 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var78); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var79); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var80 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var81); + + // Regression assertion (captures the current behavior of the code) + assertNull(var84); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var85); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var88 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var89); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var92 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var93); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var94); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var95); + + } + + public void test130() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test130"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + java.lang.String var2 = var0.toString(); + var0.setAlignmentX(0.5f); + SpaceWar.SpacePanel var5 = new SpaceWar.SpacePanel(); + float var6 = var5.getAlignmentX(); + var5.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var11 = var5.getUI(); + java.awt.im.InputMethodRequests var12 = var5.getInputMethodRequests(); + SpaceWar.SpacePanel var13 = new SpaceWar.SpacePanel(); + float var14 = var13.getAlignmentX(); + var13.setVisible(false); + var13.nextFocus(); + var13.updateUI(); + var13.enableInputMethods(true); + var13.setSize((-1), 1); + SpaceWar.SpacePanel var24 = new SpaceWar.SpacePanel(); + var24.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var5.add((java.awt.Component)var13, (java.lang.Object)"SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + SpaceWar.SpacePanel var30 = new SpaceWar.SpacePanel(); + float var31 = var30.getAlignmentX(); + var30.setVisible(false); + java.awt.Dimension var34 = var30.getPreferredSize(); + java.awt.Toolkit var35 = var30.getToolkit(); + java.awt.Toolkit var36 = var30.getToolkit(); + java.awt.Component var37 = var13.add((java.awt.Component)var30); + int var38 = var13.getY(); + int var41 = var13.getBaseline(25, 10); + var0.setComponentZOrder((java.awt.Component)var13, 0); + var0.transferFocusDownCycle(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var2 + "' != '" + "SpaceWar.SpacePanel[,0,0,0var2,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"+ "'", var2.equals("SpaceWar.SpacePanel[,0,0,0var2,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]")); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var31 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var34); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var35); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var36); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var37); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var38 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var41 == (-1)); + + } + + public void test131() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test131"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + java.awt.im.InputMethodRequests var3 = var0.getInputMethodRequests(); + var0.setDoubleBuffered(true); + var0.setInheritsPopupMenu(false); + javax.swing.plaf.PanelUI var8 = var0.getUI(); + java.util.Set var10 = var0.getFocusTraversalKeys(3); + var0.requestFocus(); + var0.setLocation(0, 24); + var0.doLayout(); + SpaceWar.SpacePanel var16 = new SpaceWar.SpacePanel(); + float var17 = var16.getAlignmentX(); + var16.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var22 = var16.getMouseListeners(); + var16.firePropertyChange("", 0.5f, 100.0f); + var16.enable(false); + int var29 = var16.getDebugGraphicsOptions(); + SpaceWar.SpacePanel var30 = new SpaceWar.SpacePanel(); + float var31 = var30.getAlignmentX(); + var30.setVisible(false); + var30.nextFocus(); + var30.repaint(1L); + SpaceWar.SpacePanel var37 = new SpaceWar.SpacePanel(); + float var38 = var37.getAlignmentX(); + var37.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var43 = new SpaceWar.SpacePanel(); + float var44 = var43.getAlignmentX(); + var43.setVisible(false); + java.awt.Dimension var47 = var43.getPreferredSize(); + var37.setMaximumSize(var47); + var30.setPreferredSize(var47); + java.awt.Container var50 = var30.getFocusCycleRootAncestor(); + java.awt.image.ColorModel var51 = var30.getColorModel(); + int var52 = var30.getComponentCount(); + java.awt.Component var53 = var16.add((java.awt.Component)var30); + var30.setBounds((-1), 25, 10, (-1)); + var30.grabFocus(); + boolean var60 = var0.isAncestorOf((java.awt.Component)var30); + var30.nextFocus(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var29 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var31 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var38 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var44 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var47); + + // Regression assertion (captures the current behavior of the code) + assertNull(var50); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var51); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var52 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var53); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var60 == false); + + } + + public void test132() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test132"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + var0.enable(false); + int var7 = var0.getWidth(); + java.awt.event.HierarchyListener[] var8 = var0.getHierarchyListeners(); + boolean var10 = var0.requestFocus(true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == false); + + } + + public void test133() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test133"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + java.awt.Dimension var4 = var0.getPreferredSize(); + boolean var5 = var0.getVerifyInputWhenFocusTarget(); + java.awt.Component var8 = var0.findComponentAt(10, 1); + boolean var9 = var0.requestDefaultFocus(); + java.awt.Insets var10 = var0.getInsets(); + var0.setDoubleBuffered(false); + SpaceWar.SpacePanel var13 = new SpaceWar.SpacePanel(); + float var14 = var13.getAlignmentX(); + var13.setVisible(false); + boolean var17 = var13.isDoubleBuffered(); + java.awt.dnd.DropTarget var18 = var13.getDropTarget(); + var13.show(false); + java.awt.Rectangle var21 = var13.getVisibleRect(); + java.awt.Toolkit var22 = var13.getToolkit(); + java.awt.event.MouseMotionListener[] var23 = var13.getMouseMotionListeners(); + SpaceWar.SpacePanel var24 = new SpaceWar.SpacePanel(); + float var25 = var24.getAlignmentX(); + var24.setVisible(false); + SpaceWar.SpacePanel var28 = new SpaceWar.SpacePanel(); + java.awt.Color var29 = var28.getBackground(); + var24.setForeground(var29); + SpaceWar.SpacePanel var31 = new SpaceWar.SpacePanel(); + float var32 = var31.getAlignmentX(); + var31.setVisible(false); + boolean var35 = var31.isDoubleBuffered(); + java.awt.dnd.DropTarget var36 = var31.getDropTarget(); + var31.show(false); + java.awt.Rectangle var39 = var31.getVisibleRect(); + var24.repaint(var39); + java.awt.Component.BaselineResizeBehavior var41 = var24.getBaselineResizeBehavior(); + SpaceWar.SpacePanel var42 = new SpaceWar.SpacePanel(); + float var43 = var42.getAlignmentX(); + var42.setVisible(false); + var42.nextFocus(); + var42.repaint(1L); + SpaceWar.SpacePanel var49 = new SpaceWar.SpacePanel(); + float var50 = var49.getAlignmentX(); + var49.setVisible(false); + boolean var53 = var49.isDoubleBuffered(); + var49.list(); + SpaceWar.SpacePanel var55 = new SpaceWar.SpacePanel(); + float var56 = var55.getAlignmentX(); + var55.setVisible(false); + boolean var59 = var55.isDoubleBuffered(); + java.awt.dnd.DropTarget var60 = var55.getDropTarget(); + var55.show(false); + java.awt.Rectangle var63 = var55.getVisibleRect(); + java.awt.Rectangle var64 = var49.getBounds(var63); + var42.setBounds(var64); + var24.paintImmediately(var64); + var13.setBounds(var64); + SpaceWar.SpacePanel var68 = new SpaceWar.SpacePanel(); + float var69 = var68.getAlignmentX(); + var68.setVisible(false); + SpaceWar.SpacePanel var72 = new SpaceWar.SpacePanel(); + java.awt.Color var73 = var72.getBackground(); + var68.setForeground(var73); + SpaceWar.SpacePanel var75 = new SpaceWar.SpacePanel(); + float var76 = var75.getAlignmentX(); + var75.setVisible(false); + boolean var79 = var75.isDoubleBuffered(); + java.awt.dnd.DropTarget var80 = var75.getDropTarget(); + var75.show(false); + java.awt.Rectangle var83 = var75.getVisibleRect(); + var68.repaint(var83); + java.awt.Component.BaselineResizeBehavior var85 = var68.getBaselineResizeBehavior(); + var0.add((java.awt.Component)var13, (java.lang.Object)var85); + float var87 = var0.getAlignmentX(); + var0.validate(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var4); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var21); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var23); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var29); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var32 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var35 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var36); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var39); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var41); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var43 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var50 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var53 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var56 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var59 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var60); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var63); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var64); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var69 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var73); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var76 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var79 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var80); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var83); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var85); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var87 == 0.5f); + + } + + public void test134() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test134"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + var0.setName(""); + java.awt.Toolkit var3 = var0.getToolkit(); + var0.setEnabled(false); + var0.removeNotify(); + boolean var7 = var0.isDisplayable(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + java.awt.Color var9 = var8.getBackground(); + var8.repaint(); + var8.setRequestFocusEnabled(false); + var8.reshape(100, 0, 100, 0); + var8.requestFocus(); + java.awt.Rectangle var19 = var8.getVisibleRect(); + java.awt.Rectangle var20 = var8.getBounds(); + java.awt.im.InputMethodRequests var21 = var8.getInputMethodRequests(); + boolean var22 = var8.requestFocusInWindow(); + java.awt.Point var24 = var8.getMousePosition(false); + var8.setDebugGraphicsOptions(1); + java.awt.Graphics var27 = var8.getGraphics(); + var0.paintAll(var27); + SpaceWar.SpacePanel var29 = new SpaceWar.SpacePanel(); + float var30 = var29.getAlignmentX(); + var29.setVisible(false); + boolean var33 = var29.isDoubleBuffered(); + java.awt.dnd.DropTarget var34 = var29.getDropTarget(); + var29.show(false); + java.awt.Rectangle var37 = var29.getVisibleRect(); + boolean var38 = var29.isFocusTraversalPolicySet(); + var29.doLayout(); + boolean var40 = var29.getInheritsPopupMenu(); + boolean var41 = var0.isAncestorOf((java.awt.Component)var29); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var9); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertNull(var21); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var22 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var27); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var30 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var33 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var34); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var37); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var38 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var40 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var41 == false); + + } + + public void test135() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test135"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + boolean var2 = var0.hasFocus(); + boolean var3 = var0.isPreferredSizeSet(); + SpaceWar.SpacePanel var4 = new SpaceWar.SpacePanel(); + java.awt.Color var5 = var4.getBackground(); + var4.repaint(); + var4.setRequestFocusEnabled(false); + int var9 = var0.getComponentZOrder((java.awt.Component)var4); + int var10 = var0.getDebugGraphicsOptions(); + var0.enableInputMethods(true); + boolean var13 = javax.swing.JComponent.isLightweightComponent((java.awt.Component)var0); + java.awt.Dimension var14 = var0.preferredSize(); + java.awt.event.KeyListener[] var15 = var0.getKeyListeners(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var2 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == (-1)); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + } + + public void test136() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test136"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + var0.setName(""); + java.awt.ComponentOrientation var3 = var0.getComponentOrientation(); + int var4 = var0.getComponentCount(); + java.awt.image.ColorModel var5 = var0.getColorModel(); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + float var7 = var6.getAlignmentX(); + var6.setVisible(false); + java.awt.Dimension var10 = var6.getPreferredSize(); + boolean var11 = var6.getVerifyInputWhenFocusTarget(); + java.awt.Component var14 = var6.findComponentAt(10, 1); + boolean var15 = var6.isCursorSet(); + boolean var16 = var6.isFocusTraversalPolicyProvider(); + java.awt.ComponentOrientation var17 = var6.getComponentOrientation(); + var0.setComponentOrientation(var17); + var0.repaint(100L); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var17); + + } + + public void test137() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test137"); + + + SpaceWar.Bullet var3 = new SpaceWar.Bullet(1.0d, 10, 400); + double var4 = var3.getX(); + double var5 = var3.getR(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 10.0d); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == 5.0d); + + } + + public void test138() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test138"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + var0.list(); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + float var7 = var6.getAlignmentX(); + var6.setVisible(false); + boolean var10 = var6.isDoubleBuffered(); + java.awt.dnd.DropTarget var11 = var6.getDropTarget(); + var6.show(false); + java.awt.Rectangle var14 = var6.getVisibleRect(); + java.awt.Rectangle var15 = var0.getBounds(var14); + javax.swing.JToolTip var16 = var0.createToolTip(); + java.awt.Dimension var17 = var0.minimumSize(); + SpaceWar.SpacePanel var18 = new SpaceWar.SpacePanel(); + float var19 = var18.getAlignmentX(); + var18.setVisible(false); + var18.setInheritsPopupMenu(false); + var18.setFocusTraversalPolicyProvider(true); + java.awt.Container var26 = var18.getFocusCycleRootAncestor(); + SpaceWar.SpacePanel var27 = new SpaceWar.SpacePanel(); + float var28 = var27.getAlignmentX(); + var27.removeNotify(); + SpaceWar.SpacePanel var30 = new SpaceWar.SpacePanel(); + float var31 = var30.getAlignmentX(); + var30.setVisible(false); + boolean var34 = var30.isDoubleBuffered(); + var30.list(); + float var36 = var30.getAlignmentY(); + java.awt.Insets var37 = var30.getInsets(); + java.awt.Insets var38 = var27.getInsets(var37); + java.awt.Insets var39 = var18.getInsets(var38); + java.awt.Insets var40 = var0.getInsets(var38); + var0.setFocusCycleRoot(true); + SpaceWar.SpacePanel var43 = new SpaceWar.SpacePanel(); + java.awt.Color var44 = var43.getBackground(); + var43.repaint(); + java.awt.im.InputMethodRequests var46 = var43.getInputMethodRequests(); + int var47 = var43.countComponents(); + java.awt.Dimension var48 = var43.getSize(); + SpaceWar.SpacePanel var49 = new SpaceWar.SpacePanel(); + var49.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + javax.swing.plaf.PanelUI var54 = var49.getUI(); + java.awt.Color var55 = var49.getBackground(); + var43.setBackground(var55); + var0.setForeground(var55); + var0.enable(); + // The following exception was thrown during execution. + // This behavior will recorded for regression testing. + try { + javax.swing.InputMap var60 = var0.getInputMap(3); + fail("Expected exception of type java.lang.IllegalArgumentException"); + } catch (java.lang.IllegalArgumentException e) { + // Expected exception. + } + + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var28 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var31 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var34 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var36 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var37); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var38); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var39); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var40); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var44); + + // Regression assertion (captures the current behavior of the code) + assertNull(var46); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var47 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var48); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var54); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var55); + + } + + public void test139() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test139"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var6 = var0.getUI(); + java.awt.im.InputMethodRequests var7 = var0.getInputMethodRequests(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + var8.nextFocus(); + var8.updateUI(); + var8.enableInputMethods(true); + var8.setSize((-1), 1); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + var19.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var0.add((java.awt.Component)var8, (java.lang.Object)"SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + java.awt.ComponentOrientation var25 = var8.getComponentOrientation(); + java.beans.VetoableChangeListener[] var26 = var8.getVetoableChangeListeners(); + int var27 = var8.countComponents(); + boolean var28 = var8.isFocusOwner(); + var8.list(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var25); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var28 == false); + + } + + public void test140() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test140"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var1 = new SpaceWar.SpacePanel(); + float var2 = var1.getAlignmentX(); + var1.setVisible(false); + var1.nextFocus(); + var1.reshape((-1), 1, (-1), 10); + SpaceWar.SpacePanel var11 = new SpaceWar.SpacePanel(); + java.awt.Color var12 = var11.getBackground(); + var11.repaint(); + var11.setRequestFocusEnabled(false); + var11.reshape(100, 0, 100, 0); + java.awt.Component var21 = var1.add((java.awt.Component)var11); + SpaceWar.SpacePanel var22 = new SpaceWar.SpacePanel(); + var22.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + javax.swing.plaf.PanelUI var27 = var22.getUI(); + SpaceWar.SpacePanel var28 = new SpaceWar.SpacePanel(); + float var29 = var28.getAlignmentX(); + var28.setVisible(false); + var28.nextFocus(); + var28.repaint(1L); + SpaceWar.SpacePanel var35 = new SpaceWar.SpacePanel(); + float var36 = var35.getAlignmentX(); + var35.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var41 = new SpaceWar.SpacePanel(); + float var42 = var41.getAlignmentX(); + var41.setVisible(false); + java.awt.Dimension var45 = var41.getPreferredSize(); + var35.setMaximumSize(var45); + var28.setPreferredSize(var45); + var22.setMaximumSize(var45); + java.awt.Dimension var49 = var11.getSize(var45); + java.awt.Dimension var50 = var0.getSize(var49); + var0.setFocusTraversalPolicyProvider(false); + boolean var53 = var0.isValidateRoot(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var2 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var21); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var27); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var29 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var36 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var42 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var45); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var49); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var50); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var53 == false); + + } + + public void test141() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test141"); + + + SpaceWar.PowerUp var3 = new SpaceWar.PowerUp(24, 306.4012291647917d, 282.8681995802876d); + int var4 = var3.getType(); + double var5 = var3.getY(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 24); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == 282.8681995802876d); + + } + + public void test142() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test142"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.setInheritsPopupMenu(false); + var0.setFocusTraversalPolicyProvider(true); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + boolean var12 = var8.isDoubleBuffered(); + var8.list(); + SpaceWar.SpacePanel var14 = new SpaceWar.SpacePanel(); + float var15 = var14.getAlignmentX(); + var14.setVisible(false); + boolean var18 = var14.isDoubleBuffered(); + java.awt.dnd.DropTarget var19 = var14.getDropTarget(); + var14.show(false); + java.awt.Rectangle var22 = var14.getVisibleRect(); + java.awt.Rectangle var23 = var8.getBounds(var22); + javax.swing.JToolTip var24 = var8.createToolTip(); + var0.removeKeyListener((java.awt.event.KeyListener)var8); + javax.swing.TransferHandler var26 = var0.getTransferHandler(); + var0.transferFocus(); + SpaceWar.SpacePanel var28 = new SpaceWar.SpacePanel(); + float var29 = var28.getAlignmentX(); + SpaceWar.SpacePanel var30 = new SpaceWar.SpacePanel(); + float var31 = var30.getAlignmentX(); + var30.setVisible(false); + java.awt.Dimension var34 = var30.getPreferredSize(); + boolean var35 = var30.getVerifyInputWhenFocusTarget(); + java.awt.Component var38 = var30.findComponentAt(10, 1); + var28.addKeyListener((java.awt.event.KeyListener)var30); + java.awt.Dimension var40 = var30.getMinimumSize(); + SpaceWar.SpacePanel var41 = new SpaceWar.SpacePanel(); + java.awt.Color var42 = var41.getBackground(); + var41.repaint(); + var41.setRequestFocusEnabled(false); + var41.reshape(100, 0, 100, 0); + var41.requestFocus(); + java.awt.Rectangle var52 = var41.getVisibleRect(); + var30.setBounds(var52); + var0.scrollRectToVisible(var52); + var0.setLocation(2, 499); + java.awt.Component.BaselineResizeBehavior var58 = var0.getBaselineResizeBehavior(); + boolean var59 = var0.requestDefaultFocus(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var23); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var29 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var31 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var34); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var35 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var38); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var40); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var42); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var52); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var58); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var59 == false); + + } + + public void test143() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test143"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + float var7 = var6.getAlignmentX(); + var6.setVisible(false); + java.awt.Dimension var10 = var6.getPreferredSize(); + var0.setMaximumSize(var10); + boolean var12 = var0.getVerifyInputWhenFocusTarget(); + int var13 = var0.getX(); + var0.setFocusCycleRoot(false); + var0.repaint(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == 0); + + } + + public void test144() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test144"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + java.awt.Dimension var4 = var0.getPreferredSize(); + boolean var5 = var0.getVerifyInputWhenFocusTarget(); + java.awt.Component var8 = var0.findComponentAt(10, 1); + boolean var9 = var0.requestDefaultFocus(); + var0.firePropertyChange("hi!", false, true); + javax.swing.ActionMap var14 = var0.getActionMap(); + var0.setFocusTraversalPolicyProvider(false); + SpaceWar.SpacePanel var17 = new SpaceWar.SpacePanel(); + float var18 = var17.getAlignmentX(); + var17.setVisible(false); + boolean var21 = var17.isDoubleBuffered(); + java.awt.dnd.DropTarget var22 = var17.getDropTarget(); + var17.show(false); + boolean var25 = var17.isPaintingForPrint(); + boolean var26 = var17.getIgnoreRepaint(); + var17.repaint(100, 10, 100, 0); + SpaceWar.SpacePanel var32 = new SpaceWar.SpacePanel(); + float var33 = var32.getAlignmentX(); + var32.setVisible(false); + boolean var36 = var32.isDoubleBuffered(); + var32.list(); + SpaceWar.SpacePanel var38 = new SpaceWar.SpacePanel(); + float var39 = var38.getAlignmentX(); + var38.setVisible(false); + boolean var42 = var38.isDoubleBuffered(); + java.awt.dnd.DropTarget var43 = var38.getDropTarget(); + var38.show(false); + java.awt.Rectangle var46 = var38.getVisibleRect(); + java.awt.Rectangle var47 = var32.getBounds(var46); + javax.swing.JToolTip var48 = var32.createToolTip(); + var32.firePropertyChange("", false, false); + var32.validate(); + SpaceWar.SpacePanel var54 = new SpaceWar.SpacePanel(); + float var55 = var54.getAlignmentX(); + var54.setVisible(false); + boolean var58 = var54.isDoubleBuffered(); + java.awt.dnd.DropTarget var59 = var54.getDropTarget(); + var54.show(false); + boolean var62 = var54.isPaintingForPrint(); + SpaceWar.SpacePanel var63 = new SpaceWar.SpacePanel(); + float var64 = var63.getAlignmentX(); + var63.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var69 = var63.getMouseListeners(); + int var70 = var63.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var71 = var63.getInputMethodRequests(); + var54.addKeyListener((java.awt.event.KeyListener)var63); + var63.repaint(); + java.awt.Point var74 = var63.location(); + java.awt.Component var75 = var32.getComponentAt(var74); + var17.setLocation(var74); + java.awt.Component var77 = var0.findComponentAt(var74); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var4); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var33 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var36 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var39 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var42 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var43); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var46); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var47); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var48); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var55 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var58 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var59); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var62 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var64 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var69); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var70 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var71); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var74); + + // Regression assertion (captures the current behavior of the code) + assertNull(var75); + + // Regression assertion (captures the current behavior of the code) + assertNull(var77); + + } + + public void test145() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test145"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + int var2 = var0.countComponents(); + boolean var3 = var0.isDoubleBuffered(); + javax.swing.KeyStroke[] var4 = var0.getRegisteredKeyStrokes(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var2 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var4); + + } + + public void test146() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test146"); + + + SpaceWar.Text var4 = new SpaceWar.Text(506.2085981463309d, 401.4053889947292d, 100L, "SpaceWar.SpacePanel[,-1,1,-1x10,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + + } + + public void test147() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test147"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var1 = new SpaceWar.SpacePanel(); + java.awt.Color var2 = var1.getBackground(); + SpaceWar.SpacePanel var3 = new SpaceWar.SpacePanel(); + float var4 = var3.getAlignmentX(); + var3.setVisible(false); + var3.nextFocus(); + var3.updateUI(); + var3.enableInputMethods(true); + var0.add((java.awt.Component)var1, (java.lang.Object)true); + java.awt.Image var14 = var1.createImage(1, (-1)); + java.beans.PropertyChangeListener[] var15 = var1.getPropertyChangeListeners(); + SpaceWar.SpacePanel var16 = new SpaceWar.SpacePanel(); + java.awt.Color var17 = var16.getBackground(); + var16.repaint(); + java.awt.im.InputMethodRequests var19 = var16.getInputMethodRequests(); + int var20 = var16.countComponents(); + java.awt.event.ComponentListener[] var21 = var16.getComponentListeners(); + var16.removeNotify(); + java.awt.Component var25 = var16.getComponentAt(1, (-1)); + SpaceWar.SpacePanel var26 = new SpaceWar.SpacePanel(); + float var27 = var26.getAlignmentX(); + var26.setVisible(false); + SpaceWar.SpacePanel var30 = new SpaceWar.SpacePanel(); + java.awt.Color var31 = var30.getBackground(); + var26.setForeground(var31); + SpaceWar.SpacePanel var33 = new SpaceWar.SpacePanel(); + float var34 = var33.getAlignmentX(); + var33.setVisible(false); + boolean var37 = var33.isDoubleBuffered(); + java.awt.dnd.DropTarget var38 = var33.getDropTarget(); + var33.show(false); + java.awt.Rectangle var41 = var33.getVisibleRect(); + var26.repaint(var41); + java.awt.Component.BaselineResizeBehavior var43 = var26.getBaselineResizeBehavior(); + SpaceWar.SpacePanel var44 = new SpaceWar.SpacePanel(); + float var45 = var44.getAlignmentX(); + var44.setVisible(false); + var44.nextFocus(); + var44.repaint(1L); + SpaceWar.SpacePanel var51 = new SpaceWar.SpacePanel(); + float var52 = var51.getAlignmentX(); + var51.setVisible(false); + boolean var55 = var51.isDoubleBuffered(); + var51.list(); + SpaceWar.SpacePanel var57 = new SpaceWar.SpacePanel(); + float var58 = var57.getAlignmentX(); + var57.setVisible(false); + boolean var61 = var57.isDoubleBuffered(); + java.awt.dnd.DropTarget var62 = var57.getDropTarget(); + var57.show(false); + java.awt.Rectangle var65 = var57.getVisibleRect(); + java.awt.Rectangle var66 = var51.getBounds(var65); + var44.setBounds(var66); + var26.paintImmediately(var66); + var16.repaint(var66); + java.awt.Dimension var70 = var16.minimumSize(); + var1.setMinimumSize(var70); + boolean var72 = var1.isLightweight(); + boolean var73 = var1.isFocusTraversalPolicySet(); + int var74 = var1.getComponentCount(); + var1.paintImmediately(400, 25, 0, (-1)); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var2); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var21); + + // Regression assertion (captures the current behavior of the code) + assertNull(var25); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var31); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var34 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var38); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var41); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var43); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var45 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var52 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var55 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var58 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var61 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var62); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var65); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var66); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var70); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var72 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var73 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var74 == 0); + + } + + public void test148() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test148"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + var0.show(false); + boolean var8 = var0.isPaintingForPrint(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var15 = var9.getMouseListeners(); + int var16 = var9.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var17 = var9.getInputMethodRequests(); + var0.addKeyListener((java.awt.event.KeyListener)var9); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + float var20 = var19.getAlignmentX(); + var19.setVisible(false); + boolean var23 = var19.isDoubleBuffered(); + var19.list(); + float var25 = var19.getAlignmentY(); + boolean var26 = var9.isFocusCycleRoot((java.awt.Container)var19); + javax.swing.ActionMap var27 = var9.getActionMap(); + boolean var28 = var9.isValid(); + java.awt.dnd.DropTarget var29 = var9.getDropTarget(); + boolean var30 = var9.isOptimizedDrawingEnabled(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var27); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var28 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var29); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var30 == true); + + } + + public void test149() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test149"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.updateUI(); + var0.enableInputMethods(true); + int var8 = var0.getY(); + int var9 = var0.getY(); + SpaceWar.SpacePanel var10 = new SpaceWar.SpacePanel(); + float var11 = var10.getAlignmentX(); + var10.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var16 = var10.getUI(); + java.awt.im.InputMethodRequests var17 = var10.getInputMethodRequests(); + SpaceWar.SpacePanel var18 = new SpaceWar.SpacePanel(); + float var19 = var18.getAlignmentX(); + var18.setVisible(false); + var18.nextFocus(); + var18.updateUI(); + var18.enableInputMethods(true); + var18.setSize((-1), 1); + SpaceWar.SpacePanel var29 = new SpaceWar.SpacePanel(); + var29.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var10.add((java.awt.Component)var18, (java.lang.Object)"SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + java.awt.event.KeyListener[] var35 = var10.getKeyListeners(); + boolean var36 = var10.isValidateRoot(); + // The following exception was thrown during execution. + // This behavior will recorded for regression testing. + try { + var0.setComponentZOrder((java.awt.Component)var10, 100); + fail("Expected exception of type java.lang.IllegalArgumentException"); + } catch (java.lang.IllegalArgumentException e) { + // Expected exception. + } + + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var35); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var36 == false); + + } + + public void test150() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test150"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var1 = new SpaceWar.SpacePanel(); + java.awt.Color var2 = var1.getBackground(); + SpaceWar.SpacePanel var3 = new SpaceWar.SpacePanel(); + float var4 = var3.getAlignmentX(); + var3.setVisible(false); + var3.nextFocus(); + var3.updateUI(); + var3.enableInputMethods(true); + var0.add((java.awt.Component)var1, (java.lang.Object)true); + boolean var12 = var0.isMinimumSizeSet(); + java.awt.event.HierarchyListener[] var13 = var0.getHierarchyListeners(); + SpaceWar.SpacePanel var14 = new SpaceWar.SpacePanel(); + float var15 = var14.getAlignmentX(); + var14.setVisible(false); + SpaceWar.SpacePanel var18 = new SpaceWar.SpacePanel(); + java.awt.Color var19 = var18.getBackground(); + var14.setForeground(var19); + SpaceWar.SpacePanel var21 = new SpaceWar.SpacePanel(); + float var22 = var21.getAlignmentX(); + var21.setVisible(false); + boolean var25 = var21.isDoubleBuffered(); + java.awt.dnd.DropTarget var26 = var21.getDropTarget(); + var21.show(false); + java.awt.Rectangle var29 = var21.getVisibleRect(); + var14.repaint(var29); + java.awt.FocusTraversalPolicy var31 = var14.getFocusTraversalPolicy(); + java.awt.im.InputMethodRequests var32 = var14.getInputMethodRequests(); + var14.layout(); + boolean var34 = var14.isFocusTraversalPolicyProvider(); + java.lang.Object var35 = var0.getClientProperty((java.lang.Object)var34); + java.awt.Dimension var36 = var0.getSize(); + boolean var37 = var0.isFocusTraversable(); + SpaceWar.SpacePanel var38 = new SpaceWar.SpacePanel(); + float var39 = var38.getAlignmentX(); + var38.setVisible(false); + var38.nextFocus(); + var38.updateUI(); + var38.enableInputMethods(true); + var38.resetKeyboardActions(); + var0.removeKeyListener((java.awt.event.KeyListener)var38); + SpaceWar.SpacePanel var48 = new SpaceWar.SpacePanel(); + float var49 = var48.getAlignmentX(); + var48.setVisible(false); + boolean var52 = var48.isDoubleBuffered(); + java.awt.dnd.DropTarget var53 = var48.getDropTarget(); + var48.show(false); + boolean var56 = var48.isPaintingForPrint(); + SpaceWar.SpacePanel var57 = new SpaceWar.SpacePanel(); + float var58 = var57.getAlignmentX(); + var57.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var63 = var57.getMouseListeners(); + int var64 = var57.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var65 = var57.getInputMethodRequests(); + var48.addKeyListener((java.awt.event.KeyListener)var57); + boolean var67 = var48.isDisplayable(); + java.awt.Dimension var68 = var48.getPreferredSize(); + var0.setSize(var68); + java.awt.Graphics var70 = var0.getGraphics(); + boolean var71 = var0.requestDefaultFocus(); + java.awt.ComponentOrientation var72 = var0.getComponentOrientation(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var2); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var22 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var29); + + // Regression assertion (captures the current behavior of the code) + assertNull(var31); + + // Regression assertion (captures the current behavior of the code) + assertNull(var32); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var34 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var35); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var36); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var39 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var49 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var52 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var53); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var56 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var58 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var63); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var64 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var65); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var67 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var68); + + // Regression assertion (captures the current behavior of the code) + assertNull(var70); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var71 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var72); + + } + + public void test151() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test151"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.reshape((-1), 1, (-1), 10); + java.util.Set var11 = var0.getFocusTraversalKeys(3); + var0.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=1.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", 525.4439481651533d, 12.0d); + boolean var16 = var0.isBackgroundSet(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == true); + + } + + public void test152() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test152"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + java.awt.Dimension var4 = var0.getPreferredSize(); + boolean var5 = var0.getVerifyInputWhenFocusTarget(); + java.awt.Component var8 = var0.findComponentAt(10, 1); + boolean var9 = var0.isCursorSet(); + boolean var10 = var0.isFocusTraversalPolicyProvider(); + java.awt.peer.ComponentPeer var11 = var0.getPeer(); + SpaceWar.SpacePanel var12 = new SpaceWar.SpacePanel(); + float var13 = var12.getAlignmentX(); + SpaceWar.SpacePanel var14 = new SpaceWar.SpacePanel(); + float var15 = var14.getAlignmentX(); + var14.setVisible(false); + java.awt.Dimension var18 = var14.getPreferredSize(); + boolean var19 = var14.getVerifyInputWhenFocusTarget(); + java.awt.Component var22 = var14.findComponentAt(10, 1); + var12.addKeyListener((java.awt.event.KeyListener)var14); + SpaceWar.SpacePanel var24 = new SpaceWar.SpacePanel(); + float var25 = var24.getAlignmentX(); + SpaceWar.SpacePanel var26 = new SpaceWar.SpacePanel(); + float var27 = var26.getAlignmentX(); + var26.setVisible(false); + java.awt.Dimension var30 = var26.getPreferredSize(); + boolean var31 = var26.getVerifyInputWhenFocusTarget(); + java.awt.Component var34 = var26.findComponentAt(10, 1); + var24.addKeyListener((java.awt.event.KeyListener)var26); + var26.repaint(100, (-1), (-1), 1); + java.awt.image.ColorModel var41 = var26.getColorModel(); + SpaceWar.SpacePanel var42 = new SpaceWar.SpacePanel(); + float var43 = var42.getAlignmentX(); + var42.setVisible(false); + boolean var46 = var42.isDoubleBuffered(); + var42.list(); + SpaceWar.SpacePanel var48 = new SpaceWar.SpacePanel(); + float var49 = var48.getAlignmentX(); + var48.setVisible(false); + boolean var52 = var48.isDoubleBuffered(); + java.awt.dnd.DropTarget var53 = var48.getDropTarget(); + var48.show(false); + java.awt.Rectangle var56 = var48.getVisibleRect(); + java.awt.image.BufferedImage var58 = var48.loadImg("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + boolean var59 = var42.isAncestorOf((java.awt.Component)var48); + javax.swing.InputVerifier var60 = var48.getInputVerifier(); + var14.putClientProperty((java.lang.Object)var26, (java.lang.Object)var48); + java.lang.String var62 = var14.getUIClassID(); + java.awt.event.MouseWheelListener[] var63 = var14.getMouseWheelListeners(); + SpaceWar.SpacePanel var64 = new SpaceWar.SpacePanel(); + float var65 = var64.getAlignmentX(); + var64.setVisible(false); + java.awt.Dimension var68 = var64.getPreferredSize(); + java.awt.Toolkit var69 = var64.getToolkit(); + boolean var70 = var64.isFocusable(); + javax.swing.KeyStroke[] var71 = var64.getRegisteredKeyStrokes(); + SpaceWar.SpacePanel var72 = new SpaceWar.SpacePanel(); + float var73 = var72.getAlignmentX(); + SpaceWar.SpacePanel var74 = new SpaceWar.SpacePanel(); + float var75 = var74.getAlignmentX(); + var74.setVisible(false); + java.awt.Dimension var78 = var74.getPreferredSize(); + boolean var79 = var74.getVerifyInputWhenFocusTarget(); + java.awt.Component var82 = var74.findComponentAt(10, 1); + var72.addKeyListener((java.awt.event.KeyListener)var74); + var74.repaint(100, (-1), (-1), 1); + boolean var89 = var64.isAncestorOf((java.awt.Component)var74); + var64.nextFocus(); + var64.disable(); + java.awt.Dimension var92 = var64.size(); + var14.setSize(var92); + java.awt.Point var94 = var14.location(); + java.awt.Point var95 = var0.getLocation(var94); + boolean var96 = var0.isValid(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var4); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var30); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var31 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var34); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var41); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var43 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var46 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var49 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var52 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var53); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var56); + + // Regression assertion (captures the current behavior of the code) + assertNull(var58); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var59 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var60); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var62 + "' != '" + "PanelUI"+ "'", var62.equals("PanelUI")); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var63); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var65 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var68); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var69); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var70 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var71); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var73 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var75 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var78); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var79 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var82); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var89 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var92); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var94); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var95); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var96 == false); + + } + + public void test153() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test153"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + float var7 = var6.getAlignmentX(); + var6.setVisible(false); + java.awt.Dimension var10 = var6.getPreferredSize(); + var0.setMaximumSize(var10); + boolean var12 = var0.getVerifyInputWhenFocusTarget(); + boolean var13 = var0.isFontSet(); + boolean var14 = var0.getIgnoreRepaint(); + java.awt.Component var17 = var0.locate(1, 25); + boolean var18 = var0.isLightweight(); + var0.move(100, 500); + SpaceWar.SpacePanel var22 = new SpaceWar.SpacePanel(); + float var23 = var22.getAlignmentX(); + var22.setVisible(false); + var22.nextFocus(); + SpaceWar.SpacePanel var27 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var28 = new SpaceWar.SpacePanel(); + java.awt.Color var29 = var28.getBackground(); + SpaceWar.SpacePanel var30 = new SpaceWar.SpacePanel(); + float var31 = var30.getAlignmentX(); + var30.setVisible(false); + var30.nextFocus(); + var30.updateUI(); + var30.enableInputMethods(true); + var27.add((java.awt.Component)var28, (java.lang.Object)true); + java.awt.Dimension var39 = var28.getPreferredSize(); + var22.setMaximumSize(var39); + java.awt.Dimension var41 = var22.preferredSize(); + java.lang.String var42 = var22.getToolTipText(); + var0.removeKeyListener((java.awt.event.KeyListener)var22); + var22.layout(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var29); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var31 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var39); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var41); + + // Regression assertion (captures the current behavior of the code) + assertNull(var42); + + } + + public void test154() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test154"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + java.awt.im.InputMethodRequests var3 = var0.getInputMethodRequests(); + int var4 = var0.countComponents(); + java.awt.event.ComponentListener[] var5 = var0.getComponentListeners(); + var0.removeNotify(); + javax.swing.InputMap var7 = var0.getInputMap(); + int var8 = var0.getDebugGraphicsOptions(); + java.awt.Graphics var9 = var0.getGraphics(); + boolean var10 = var0.getVerifyInputWhenFocusTarget(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var9); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == true); + + } + + public void test155() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test155"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + SpaceWar.SpacePanel var2 = new SpaceWar.SpacePanel(); + float var3 = var2.getAlignmentX(); + var2.setVisible(false); + java.awt.Dimension var6 = var2.getPreferredSize(); + boolean var7 = var2.getVerifyInputWhenFocusTarget(); + java.awt.Component var10 = var2.findComponentAt(10, 1); + var0.addKeyListener((java.awt.event.KeyListener)var2); + java.awt.Dimension var12 = var2.getMinimumSize(); + javax.swing.JToolTip var13 = var2.createToolTip(); + var2.requestFocus(); + java.awt.Component var17 = var2.findComponentAt(499, 3); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + } + + public void test156() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test156"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.setInheritsPopupMenu(false); + boolean var6 = var0.isDoubleBuffered(); + var0.setAlignmentY(100.0f); + var0.setAlignmentX(0.0f); + java.beans.PropertyChangeListener[] var11 = var0.getPropertyChangeListeners(); + var0.setInheritsPopupMenu(false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + } + + public void test157() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test157"); + + + SpaceWar.PowerUp var3 = new SpaceWar.PowerUp(100, (-1.0d), 0.0d); + double var4 = var3.getR(); + int var5 = var3.getType(); + double var6 = var3.getX(); + boolean var7 = var3.update(); + double var8 = var3.getX(); + double var9 = var3.getX(); + boolean var10 = var3.update(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0.0d); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == 100); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == (-1.0d)); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == (-1.0d)); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == (-1.0d)); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == false); + + } + + public void test158() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test158"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + var0.setRequestFocusEnabled(false); + var0.reshape(100, 0, 100, 0); + javax.swing.event.AncestorListener[] var10 = var0.getAncestorListeners(); + int var11 = var0.getWidth(); + var0.list(); + SpaceWar.SpacePanel var13 = new SpaceWar.SpacePanel(); + float var14 = var13.getAlignmentX(); + var13.setVisible(false); + java.awt.Dimension var17 = var13.getPreferredSize(); + boolean var18 = var13.getVerifyInputWhenFocusTarget(); + java.awt.Component var21 = var13.findComponentAt(10, 1); + boolean var22 = var13.isCursorSet(); + boolean var23 = var13.isFocusTraversalPolicyProvider(); + java.awt.ComponentOrientation var24 = var13.getComponentOrientation(); + var0.applyComponentOrientation(var24); + boolean var26 = var0.isPaintingForPrint(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == 100); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var21); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var22 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == false); + + } + + public void test159() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test159"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + var0.show(false); + java.awt.Rectangle var8 = var0.getVisibleRect(); + java.awt.image.BufferedImage var10 = var0.loadImg("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + var0.setAutoscrolls(true); + javax.swing.InputVerifier var13 = var0.getInputVerifier(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertNull(var13); + + } + + public void test160() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test160"); + + + SpaceWar.Text var4 = new SpaceWar.Text(506.9915098063617d, 475.3294093279198d, (-1L), "SpaceWar.SpacePanel[,0,0,0x0,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=java.awt.Dimension[width=800,height=600],minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + boolean var5 = var4.update(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == true); + + } + + public void test161() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test161"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var1 = new SpaceWar.SpacePanel(); + java.awt.Color var2 = var1.getBackground(); + SpaceWar.SpacePanel var3 = new SpaceWar.SpacePanel(); + float var4 = var3.getAlignmentX(); + var3.setVisible(false); + var3.nextFocus(); + var3.updateUI(); + var3.enableInputMethods(true); + var0.add((java.awt.Component)var1, (java.lang.Object)true); + boolean var12 = var0.isMinimumSizeSet(); + java.awt.event.HierarchyListener[] var13 = var0.getHierarchyListeners(); + SpaceWar.SpacePanel var14 = new SpaceWar.SpacePanel(); + float var15 = var14.getAlignmentX(); + var14.setVisible(false); + SpaceWar.SpacePanel var18 = new SpaceWar.SpacePanel(); + java.awt.Color var19 = var18.getBackground(); + var14.setForeground(var19); + SpaceWar.SpacePanel var21 = new SpaceWar.SpacePanel(); + float var22 = var21.getAlignmentX(); + var21.setVisible(false); + boolean var25 = var21.isDoubleBuffered(); + java.awt.dnd.DropTarget var26 = var21.getDropTarget(); + var21.show(false); + java.awt.Rectangle var29 = var21.getVisibleRect(); + var14.repaint(var29); + java.awt.FocusTraversalPolicy var31 = var14.getFocusTraversalPolicy(); + java.awt.im.InputMethodRequests var32 = var14.getInputMethodRequests(); + var14.layout(); + boolean var34 = var14.isFocusTraversalPolicyProvider(); + java.lang.Object var35 = var0.getClientProperty((java.lang.Object)var34); + java.awt.Dimension var36 = var0.getSize(); + boolean var37 = var0.isFocusTraversable(); + SpaceWar.SpacePanel var38 = new SpaceWar.SpacePanel(); + float var39 = var38.getAlignmentX(); + var38.setVisible(false); + var38.nextFocus(); + var38.updateUI(); + var38.enableInputMethods(true); + var38.resetKeyboardActions(); + var0.removeKeyListener((java.awt.event.KeyListener)var38); + SpaceWar.SpacePanel var48 = new SpaceWar.SpacePanel(); + float var49 = var48.getAlignmentX(); + var48.setVisible(false); + boolean var52 = var48.isDoubleBuffered(); + java.awt.dnd.DropTarget var53 = var48.getDropTarget(); + var48.show(false); + boolean var56 = var48.isPaintingForPrint(); + SpaceWar.SpacePanel var57 = new SpaceWar.SpacePanel(); + float var58 = var57.getAlignmentX(); + var57.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var63 = var57.getMouseListeners(); + int var64 = var57.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var65 = var57.getInputMethodRequests(); + var48.addKeyListener((java.awt.event.KeyListener)var57); + boolean var67 = var48.isDisplayable(); + java.awt.Dimension var68 = var48.getPreferredSize(); + var0.setSize(var68); + java.awt.Graphics var70 = var0.getGraphics(); + boolean var71 = var0.requestDefaultFocus(); + java.awt.event.MouseWheelListener[] var72 = var0.getMouseWheelListeners(); + boolean var73 = var0.isCursorSet(); + var0.reshape(1, 399, 399, 10); + java.awt.Dimension var79 = var0.size(); + java.awt.Component[] var80 = var0.getComponents(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var2); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var22 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var29); + + // Regression assertion (captures the current behavior of the code) + assertNull(var31); + + // Regression assertion (captures the current behavior of the code) + assertNull(var32); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var34 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var35); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var36); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var39 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var49 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var52 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var53); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var56 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var58 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var63); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var64 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var65); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var67 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var68); + + // Regression assertion (captures the current behavior of the code) + assertNull(var70); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var71 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var72); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var73 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var79); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var80); + + } + + public void test162() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test162"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + java.awt.Dimension var4 = var0.getPreferredSize(); + java.awt.Toolkit var5 = var0.getToolkit(); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + var6.setName(""); + int var9 = var6.getX(); + SpaceWar.SpacePanel var10 = new SpaceWar.SpacePanel(); + float var11 = var10.getAlignmentX(); + var10.setVisible(false); + var10.nextFocus(); + SpaceWar.SpacePanel var15 = new SpaceWar.SpacePanel(); + float var16 = var15.getAlignmentX(); + var15.setVisible(false); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + java.awt.Color var20 = var19.getBackground(); + var15.setForeground(var20); + var10.setBackground(var20); + var6.setBackground(var20); + var0.setForeground(var20); + SpaceWar.SpacePanel var25 = new SpaceWar.SpacePanel(); + float var26 = var25.getAlignmentX(); + var25.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var31 = new SpaceWar.SpacePanel(); + float var32 = var31.getAlignmentX(); + var31.setVisible(false); + java.awt.Dimension var35 = var31.getPreferredSize(); + var25.setMaximumSize(var35); + boolean var37 = var25.getVerifyInputWhenFocusTarget(); + javax.accessibility.AccessibleContext var38 = var25.getAccessibleContext(); + boolean var39 = var25.isDoubleBuffered(); + java.awt.Rectangle var40 = var25.getVisibleRect(); + var0.scrollRectToVisible(var40); + SpaceWar.SpacePanel var42 = new SpaceWar.SpacePanel(); + float var43 = var42.getAlignmentX(); + var42.setVisible(false); + java.awt.Dimension var46 = var42.getPreferredSize(); + java.awt.Toolkit var47 = var42.getToolkit(); + SpaceWar.SpacePanel var48 = new SpaceWar.SpacePanel(); + var48.setName(""); + int var51 = var48.getX(); + SpaceWar.SpacePanel var52 = new SpaceWar.SpacePanel(); + float var53 = var52.getAlignmentX(); + var52.setVisible(false); + var52.nextFocus(); + SpaceWar.SpacePanel var57 = new SpaceWar.SpacePanel(); + float var58 = var57.getAlignmentX(); + var57.setVisible(false); + SpaceWar.SpacePanel var61 = new SpaceWar.SpacePanel(); + java.awt.Color var62 = var61.getBackground(); + var57.setForeground(var62); + var52.setBackground(var62); + var48.setBackground(var62); + var42.setForeground(var62); + SpaceWar.SpacePanel var67 = new SpaceWar.SpacePanel(); + float var68 = var67.getAlignmentX(); + var67.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var73 = new SpaceWar.SpacePanel(); + float var74 = var73.getAlignmentX(); + var73.setVisible(false); + java.awt.Dimension var77 = var73.getPreferredSize(); + var67.setMaximumSize(var77); + boolean var79 = var67.getVerifyInputWhenFocusTarget(); + javax.accessibility.AccessibleContext var80 = var67.getAccessibleContext(); + boolean var81 = var67.isDoubleBuffered(); + java.awt.Rectangle var82 = var67.getVisibleRect(); + var42.scrollRectToVisible(var82); + var0.removeKeyListener((java.awt.event.KeyListener)var42); + var42.firePropertyChange("PanelUI", (short)1, (short)1); + java.lang.String var89 = var42.getToolTipText(); + boolean var90 = var42.isMaximumSizeSet(); + boolean var91 = var42.getIgnoreRepaint(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var4); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var32 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var35); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var38); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var39 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var40); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var43 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var46); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var47); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var51 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var53 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var58 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var62); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var68 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var74 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var77); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var79 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var80); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var81 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var82); + + // Regression assertion (captures the current behavior of the code) + assertNull(var89); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var90 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var91 == false); + + } + + public void test163() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test163"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.reshape((-1), 1, (-1), 10); + var0.disable(); + var0.show(); + SpaceWar.SpacePanel var12 = new SpaceWar.SpacePanel(); + float var13 = var12.getAlignmentX(); + var12.setVisible(false); + boolean var16 = var12.isDoubleBuffered(); + var12.list(); + SpaceWar.SpacePanel var18 = new SpaceWar.SpacePanel(); + float var19 = var18.getAlignmentX(); + var18.setVisible(false); + boolean var22 = var18.isDoubleBuffered(); + java.awt.dnd.DropTarget var23 = var18.getDropTarget(); + var18.show(false); + java.awt.Rectangle var26 = var18.getVisibleRect(); + java.awt.Rectangle var27 = var12.getBounds(var26); + javax.swing.JToolTip var28 = var12.createToolTip(); + var12.firePropertyChange("", false, false); + var12.validate(); + SpaceWar.SpacePanel var34 = new SpaceWar.SpacePanel(); + float var35 = var34.getAlignmentX(); + var34.setVisible(false); + boolean var38 = var34.isDoubleBuffered(); + java.awt.dnd.DropTarget var39 = var34.getDropTarget(); + var34.show(false); + boolean var42 = var34.isPaintingForPrint(); + SpaceWar.SpacePanel var43 = new SpaceWar.SpacePanel(); + float var44 = var43.getAlignmentX(); + var43.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var49 = var43.getMouseListeners(); + int var50 = var43.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var51 = var43.getInputMethodRequests(); + var34.addKeyListener((java.awt.event.KeyListener)var43); + var43.repaint(); + java.awt.Point var54 = var43.location(); + java.awt.Component var55 = var12.getComponentAt(var54); + java.awt.Point var56 = var0.getLocation(var54); + var0.setAlignmentY(0.5f); + boolean var59 = var0.getVerifyInputWhenFocusTarget(); + boolean var60 = var0.isBackgroundSet(); + SpaceWar.SpacePanel var61 = new SpaceWar.SpacePanel(); + float var62 = var61.getAlignmentX(); + var61.setVisible(false); + boolean var65 = var61.isDoubleBuffered(); + java.awt.dnd.DropTarget var66 = var61.getDropTarget(); + var61.show(false); + java.awt.Rectangle var69 = var61.getVisibleRect(); + java.awt.image.BufferedImage var71 = var61.loadImg("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + java.awt.ComponentOrientation var72 = var61.getComponentOrientation(); + boolean var73 = var0.isAncestorOf((java.awt.Component)var61); + java.awt.event.HierarchyBoundsListener[] var74 = var0.getHierarchyBoundsListeners(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var22 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var23); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var27); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var28); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var35 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var38 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var39); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var42 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var44 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var49); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var50 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var51); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var54); + + // Regression assertion (captures the current behavior of the code) + assertNull(var55); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var56); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var59 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var60 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var62 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var65 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var66); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var69); + + // Regression assertion (captures the current behavior of the code) + assertNull(var71); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var72); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var73 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var74); + + } + + public void test164() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test164"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + java.awt.im.InputMethodRequests var3 = var0.getInputMethodRequests(); + var0.list(); + java.awt.Dimension var5 = var0.minimumSize(); + boolean var6 = var0.isOpaque(); + SpaceWar.SpacePanel var7 = new SpaceWar.SpacePanel(); + java.awt.Color var8 = var7.getBackground(); + var7.repaint(); + java.awt.im.InputMethodRequests var10 = var7.getInputMethodRequests(); + int var11 = var7.countComponents(); + java.awt.event.ComponentListener[] var12 = var7.getComponentListeners(); + var7.removeNotify(); + javax.swing.InputMap var14 = var7.getInputMap(); + int var15 = var7.getDebugGraphicsOptions(); + java.awt.Graphics var16 = var7.getGraphics(); + var7.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", (short)(-1), (short)100); + boolean var21 = var7.isEnabled(); + boolean var22 = var7.isMaximumSizeSet(); + SpaceWar.SpacePanel var23 = new SpaceWar.SpacePanel(); + float var24 = var23.getAlignmentX(); + var23.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var29 = var23.getUI(); + var7.setUI(var29); + var0.setUI(var29); + SpaceWar.SpacePanel var32 = new SpaceWar.SpacePanel(); + float var33 = var32.getAlignmentX(); + var32.setVisible(false); + boolean var36 = var32.isDoubleBuffered(); + java.awt.dnd.DropTarget var37 = var32.getDropTarget(); + var32.show(false); + boolean var40 = var32.isPaintingForPrint(); + SpaceWar.SpacePanel var41 = new SpaceWar.SpacePanel(); + float var42 = var41.getAlignmentX(); + var41.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var47 = var41.getMouseListeners(); + int var48 = var41.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var49 = var41.getInputMethodRequests(); + var32.addKeyListener((java.awt.event.KeyListener)var41); + SpaceWar.SpacePanel var51 = new SpaceWar.SpacePanel(); + float var52 = var51.getAlignmentX(); + var51.setVisible(false); + boolean var55 = var51.isDoubleBuffered(); + var51.list(); + float var57 = var51.getAlignmentY(); + boolean var58 = var41.isFocusCycleRoot((java.awt.Container)var51); + var51.firePropertyChange("", 1L, 1L); + var51.setVerifyInputWhenFocusTarget(true); + SpaceWar.SpacePanel var65 = new SpaceWar.SpacePanel(); + var65.setName(""); + java.awt.Dimension var68 = var65.minimumSize(); + boolean var69 = var65.isDoubleBuffered(); + SpaceWar.SpacePanel var70 = new SpaceWar.SpacePanel(); + float var71 = var70.getAlignmentX(); + SpaceWar.SpacePanel var72 = new SpaceWar.SpacePanel(); + float var73 = var72.getAlignmentX(); + var72.setVisible(false); + java.awt.Dimension var76 = var72.getPreferredSize(); + boolean var77 = var72.getVerifyInputWhenFocusTarget(); + java.awt.Component var80 = var72.findComponentAt(10, 1); + var70.addKeyListener((java.awt.event.KeyListener)var72); + var72.repaint(100, (-1), (-1), 1); + SpaceWar.SpacePanel var87 = new SpaceWar.SpacePanel(); + java.awt.Color var88 = var87.getBackground(); + var87.repaint(); + java.awt.im.InputMethodRequests var90 = var87.getInputMethodRequests(); + java.awt.GraphicsConfiguration var91 = var87.getGraphicsConfiguration(); + var72.remove((java.awt.Component)var87); + java.awt.Font var93 = var87.getFont(); + java.awt.FontMetrics var94 = var65.getFontMetrics(var93); + java.awt.FontMetrics var95 = var51.getFontMetrics(var93); + java.awt.Component[] var96 = var51.getComponents(); + java.util.Locale var97 = var51.getLocale(); + var0.setLocale(var97); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var22 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var24 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var29); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var33 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var36 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var37); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var40 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var42 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var47); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var48 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var49); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var52 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var55 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var57 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var58 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var68); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var69 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var71 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var73 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var76); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var77 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var80); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var88); + + // Regression assertion (captures the current behavior of the code) + assertNull(var90); + + // Regression assertion (captures the current behavior of the code) + assertNull(var91); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var93); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var94); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var95); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var96); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var97); + + } + + public void test165() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test165"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + var0.show(false); + boolean var8 = var0.isPaintingForPrint(); + boolean var9 = var0.getIgnoreRepaint(); + javax.swing.event.AncestorListener[] var10 = var0.getAncestorListeners(); + var0.setAlignmentX(0.0f); + javax.accessibility.AccessibleContext var13 = var0.getAccessibleContext(); + var0.enable(false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var13); + + } + + public void test166() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test166"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.reshape((-1), 1, (-1), 10); + var0.disable(); + java.awt.LayoutManager var11 = var0.getLayout(); + var0.invalidate(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + } + + public void test167() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test167"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + float var7 = var6.getAlignmentX(); + var6.setVisible(false); + java.awt.Dimension var10 = var6.getPreferredSize(); + var0.setMaximumSize(var10); + boolean var12 = var0.getVerifyInputWhenFocusTarget(); + boolean var13 = var0.isFontSet(); + SpaceWar.SpacePanel var14 = new SpaceWar.SpacePanel(); + float var15 = var14.getAlignmentX(); + var14.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var20 = var14.getUI(); + java.awt.im.InputMethodRequests var21 = var14.getInputMethodRequests(); + SpaceWar.SpacePanel var22 = new SpaceWar.SpacePanel(); + float var23 = var22.getAlignmentX(); + var22.setVisible(false); + var22.nextFocus(); + var22.updateUI(); + var22.enableInputMethods(true); + var22.setSize((-1), 1); + SpaceWar.SpacePanel var33 = new SpaceWar.SpacePanel(); + var33.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var14.add((java.awt.Component)var22, (java.lang.Object)"SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + java.awt.ComponentOrientation var39 = var22.getComponentOrientation(); + java.beans.VetoableChangeListener[] var40 = var22.getVetoableChangeListeners(); + int var41 = var22.getHeight(); + var22.enable(true); + boolean var44 = var22.isFocusTraversalPolicyProvider(); + SpaceWar.SpacePanel var45 = new SpaceWar.SpacePanel(); + java.awt.Color var46 = var45.getBackground(); + var45.repaint(); + var45.setRequestFocusEnabled(false); + var45.reshape(100, 0, 100, 0); + var45.requestFocus(); + var45.firePropertyChange("hi!", '4', ' '); + java.awt.Point var60 = var45.getLocation(); + var22.setLocation(var60); + boolean var62 = var22.isManagingFocus(); + int var63 = var0.getComponentZOrder((java.awt.Component)var22); + java.awt.event.ContainerListener[] var64 = var22.getContainerListeners(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertNull(var21); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var39); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var40); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var41 == 1); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var44 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var46); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var60); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var62 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var63 == (-1)); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var64); + + } + + public void test168() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test168"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + java.awt.im.InputMethodRequests var3 = var0.getInputMethodRequests(); + int var4 = var0.countComponents(); + java.awt.event.MouseMotionListener[] var5 = var0.getMouseMotionListeners(); + java.awt.Dimension var6 = var0.size(); + boolean var7 = var0.isMinimumSizeSet(); + boolean var8 = var0.requestFocusInWindow(); + boolean var9 = var0.isFocusTraversable(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == true); + + } + + public void test169() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test169"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + var0.setName(""); + java.awt.Graphics var3 = var0.getGraphics(); + var0.doLayout(); + + // Regression assertion (captures the current behavior of the code) + assertNull(var3); + + } + + public void test170() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test170"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var1 = new SpaceWar.SpacePanel(); + java.awt.Color var2 = var1.getBackground(); + SpaceWar.SpacePanel var3 = new SpaceWar.SpacePanel(); + float var4 = var3.getAlignmentX(); + var3.setVisible(false); + var3.nextFocus(); + var3.updateUI(); + var3.enableInputMethods(true); + var0.add((java.awt.Component)var1, (java.lang.Object)true); + java.awt.Image var14 = var1.createImage(1, (-1)); + java.awt.event.MouseListener[] var15 = var1.getMouseListeners(); + java.awt.Color var16 = var1.getBackground(); + boolean var17 = var1.getIgnoreRepaint(); + java.awt.Dimension var18 = var1.minimumSize(); + var1.repaint(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var2); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var18); + + } + + public void test171() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test171"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + java.awt.im.InputMethodRequests var3 = var0.getInputMethodRequests(); + int var4 = var0.countComponents(); + java.awt.event.ComponentListener[] var5 = var0.getComponentListeners(); + var0.removeNotify(); + java.awt.Component var9 = var0.getComponentAt(1, (-1)); + var0.invalidate(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertNull(var9); + + } + + public void test172() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test172"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + SpaceWar.SpacePanel var2 = new SpaceWar.SpacePanel(); + float var3 = var2.getAlignmentX(); + var2.setVisible(false); + java.awt.Dimension var6 = var2.getPreferredSize(); + boolean var7 = var2.getVerifyInputWhenFocusTarget(); + java.awt.Component var10 = var2.findComponentAt(10, 1); + var0.addKeyListener((java.awt.event.KeyListener)var2); + var2.repaint(100, (-1), (-1), 1); + SpaceWar.SpacePanel var17 = new SpaceWar.SpacePanel(); + java.awt.Color var18 = var17.getBackground(); + var17.repaint(); + java.awt.im.InputMethodRequests var20 = var17.getInputMethodRequests(); + java.awt.GraphicsConfiguration var21 = var17.getGraphicsConfiguration(); + var2.remove((java.awt.Component)var17); + var2.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", 0.0f, 1.0f); + SpaceWar.SpacePanel var27 = new SpaceWar.SpacePanel(); + float var28 = var27.getAlignmentX(); + var27.setVisible(false); + java.awt.Dimension var31 = var27.getPreferredSize(); + boolean var32 = var27.getVerifyInputWhenFocusTarget(); + SpaceWar.SpacePanel var33 = new SpaceWar.SpacePanel(); + var33.setName(""); + int var36 = var33.getX(); + SpaceWar.SpacePanel var37 = new SpaceWar.SpacePanel(); + float var38 = var37.getAlignmentX(); + var37.setVisible(false); + var37.nextFocus(); + SpaceWar.SpacePanel var42 = new SpaceWar.SpacePanel(); + float var43 = var42.getAlignmentX(); + var42.setVisible(false); + SpaceWar.SpacePanel var46 = new SpaceWar.SpacePanel(); + java.awt.Color var47 = var46.getBackground(); + var42.setForeground(var47); + var37.setBackground(var47); + var33.setBackground(var47); + var2.add((java.awt.Component)var27, (java.lang.Object)var33); + var33.transferFocus(); + java.util.Locale var53 = var33.getLocale(); + var33.firePropertyChange("SpaceWar.SpacePanel[,10,10,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertNull(var21); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var28 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var31); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var32 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var36 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var38 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var43 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var47); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var53); + + } + + public void test173() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test173"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + SpaceWar.SpacePanel var4 = new SpaceWar.SpacePanel(); + java.awt.Color var5 = var4.getBackground(); + var0.setForeground(var5); + SpaceWar.SpacePanel var7 = new SpaceWar.SpacePanel(); + float var8 = var7.getAlignmentX(); + var7.setVisible(false); + boolean var11 = var7.isDoubleBuffered(); + java.awt.dnd.DropTarget var12 = var7.getDropTarget(); + var7.show(false); + java.awt.Rectangle var15 = var7.getVisibleRect(); + var0.repaint(var15); + java.awt.FocusTraversalPolicy var17 = var0.getFocusTraversalPolicy(); + SpaceWar.SpacePanel var18 = new SpaceWar.SpacePanel(); + float var19 = var18.getAlignmentX(); + var18.firePropertyChange("", (-1), 1); + boolean var24 = var18.isFocusOwner(); + SpaceWar.SpacePanel var26 = new SpaceWar.SpacePanel(); + float var27 = var26.getAlignmentX(); + var26.setVisible(false); + java.awt.Dimension var30 = var26.getPreferredSize(); + java.awt.Toolkit var31 = var26.getToolkit(); + SpaceWar.SpacePanel var32 = new SpaceWar.SpacePanel(); + var32.setName(""); + int var35 = var32.getX(); + SpaceWar.SpacePanel var36 = new SpaceWar.SpacePanel(); + float var37 = var36.getAlignmentX(); + var36.setVisible(false); + var36.nextFocus(); + SpaceWar.SpacePanel var41 = new SpaceWar.SpacePanel(); + float var42 = var41.getAlignmentX(); + var41.setVisible(false); + SpaceWar.SpacePanel var45 = new SpaceWar.SpacePanel(); + java.awt.Color var46 = var45.getBackground(); + var41.setForeground(var46); + var36.setBackground(var46); + var32.setBackground(var46); + var26.setForeground(var46); + var18.putClientProperty((java.lang.Object)(byte)100, (java.lang.Object)var46); + var0.setBackground(var46); + SpaceWar.SpacePanel var53 = new SpaceWar.SpacePanel(); + float var54 = var53.getAlignmentX(); + var53.setVisible(false); + boolean var57 = var53.isDoubleBuffered(); + java.awt.dnd.DropTarget var58 = var53.getDropTarget(); + var53.show(false); + boolean var61 = var53.isPaintingForPrint(); + SpaceWar.SpacePanel var62 = new SpaceWar.SpacePanel(); + float var63 = var62.getAlignmentX(); + SpaceWar.SpacePanel var64 = new SpaceWar.SpacePanel(); + float var65 = var64.getAlignmentX(); + var64.setVisible(false); + java.awt.Dimension var68 = var64.getPreferredSize(); + boolean var69 = var64.getVerifyInputWhenFocusTarget(); + java.awt.Component var72 = var64.findComponentAt(10, 1); + var62.addKeyListener((java.awt.event.KeyListener)var64); + java.awt.Dimension var74 = var64.getMinimumSize(); + var53.setMinimumSize(var74); + java.awt.Dimension var76 = var0.getSize(var74); + boolean var77 = var0.isValid(); + int var78 = var0.getWidth(); + SpaceWar.SpacePanel var79 = new SpaceWar.SpacePanel(); + float var80 = var79.getAlignmentX(); + var79.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var85 = new SpaceWar.SpacePanel(); + float var86 = var85.getAlignmentX(); + var85.setVisible(false); + java.awt.Dimension var89 = var85.getPreferredSize(); + var79.setMaximumSize(var89); + boolean var91 = var79.getVerifyInputWhenFocusTarget(); + var79.transferFocusUpCycle(); + java.awt.Point var93 = var79.location(); + java.awt.Point var94 = var0.getLocation(var93); + boolean var95 = javax.swing.JComponent.isLightweightComponent((java.awt.Component)var0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var24 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var30); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var31); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var35 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var42 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var46); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var54 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var57 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var58); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var61 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var63 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var65 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var68); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var69 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var72); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var74); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var76); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var77 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var78 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var80 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var86 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var89); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var91 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var93); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var94); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var95 == false); + + } + + public void test174() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test174"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var1 = new SpaceWar.SpacePanel(); + java.awt.Color var2 = var1.getBackground(); + SpaceWar.SpacePanel var3 = new SpaceWar.SpacePanel(); + float var4 = var3.getAlignmentX(); + var3.setVisible(false); + var3.nextFocus(); + var3.updateUI(); + var3.enableInputMethods(true); + var0.add((java.awt.Component)var1, (java.lang.Object)true); + java.awt.Dimension var12 = var1.getPreferredSize(); + var1.move(100, 10); + java.awt.Graphics var16 = var1.getGraphics(); + boolean var17 = var1.getInheritsPopupMenu(); + var1.updateUI(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var2); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == false); + + } + + public void test175() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test175"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + float var7 = var6.getAlignmentX(); + var6.setVisible(false); + java.awt.Dimension var10 = var6.getPreferredSize(); + var0.setMaximumSize(var10); + boolean var12 = var0.getVerifyInputWhenFocusTarget(); + boolean var13 = var0.isFontSet(); + boolean var14 = var0.getIgnoreRepaint(); + java.awt.Component var17 = var0.locate(1, 25); + boolean var18 = var0.isLightweight(); + var0.setName("SpaceWar.SpacePanel[,0,0,0x0,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + boolean var21 = var0.requestFocusInWindow(); + var0.layout(); + int var23 = var0.getComponentCount(); + boolean var26 = var0.inside(25, 500); + var0.setInheritsPopupMenu(true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == false); + + } + + public void test176() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test176"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + var0.list(); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + float var7 = var6.getAlignmentX(); + var6.setVisible(false); + boolean var10 = var6.isDoubleBuffered(); + java.awt.dnd.DropTarget var11 = var6.getDropTarget(); + var6.show(false); + java.awt.Rectangle var14 = var6.getVisibleRect(); + java.awt.Rectangle var15 = var0.getBounds(var14); + javax.swing.JToolTip var16 = var0.createToolTip(); + var0.firePropertyChange("", false, false); + var0.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", (-1L), (-1L)); + var0.validate(); + SpaceWar.SpacePanel var26 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var27 = new SpaceWar.SpacePanel(); + java.awt.Color var28 = var27.getBackground(); + SpaceWar.SpacePanel var29 = new SpaceWar.SpacePanel(); + float var30 = var29.getAlignmentX(); + var29.setVisible(false); + var29.nextFocus(); + var29.updateUI(); + var29.enableInputMethods(true); + var26.add((java.awt.Component)var27, (java.lang.Object)true); + boolean var39 = var27.areFocusTraversalKeysSet(0); + boolean var40 = var27.isFocusable(); + SpaceWar.SpacePanel var41 = new SpaceWar.SpacePanel(); + float var42 = var41.getAlignmentX(); + var41.setVisible(false); + var41.nextFocus(); + var41.updateUI(); + var41.enableInputMethods(true); + var41.setSize((-1), 1); + boolean var54 = var41.contains(1, 1); + java.awt.Component var57 = var41.getComponentAt(100, 3); + SpaceWar.SpacePanel var58 = new SpaceWar.SpacePanel(); + float var59 = var58.getAlignmentX(); + var58.setVisible(false); + boolean var62 = var58.isDoubleBuffered(); + var58.enable(false); + boolean var65 = var58.getFocusTraversalKeysEnabled(); + SpaceWar.SpacePanel var66 = new SpaceWar.SpacePanel(); + float var67 = var66.getAlignmentX(); + var66.setVisible(false); + java.awt.Dimension var70 = var66.getPreferredSize(); + java.awt.Toolkit var71 = var66.getToolkit(); + boolean var72 = var66.isFocusable(); + javax.swing.KeyStroke[] var73 = var66.getRegisteredKeyStrokes(); + SpaceWar.SpacePanel var74 = new SpaceWar.SpacePanel(); + float var75 = var74.getAlignmentX(); + SpaceWar.SpacePanel var76 = new SpaceWar.SpacePanel(); + float var77 = var76.getAlignmentX(); + var76.setVisible(false); + java.awt.Dimension var80 = var76.getPreferredSize(); + boolean var81 = var76.getVerifyInputWhenFocusTarget(); + java.awt.Component var84 = var76.findComponentAt(10, 1); + var74.addKeyListener((java.awt.event.KeyListener)var76); + var76.repaint(100, (-1), (-1), 1); + boolean var91 = var66.isAncestorOf((java.awt.Component)var76); + var58.addKeyListener((java.awt.event.KeyListener)var76); + java.awt.ComponentOrientation var93 = var58.getComponentOrientation(); + var41.setComponentOrientation(var93); + var27.setComponentOrientation(var93); + var0.applyComponentOrientation(var93); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var28); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var30 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var39 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var40 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var42 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var54 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var57); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var59 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var62 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var65 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var67 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var70); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var71); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var72 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var73); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var75 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var77 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var80); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var81 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var84); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var91 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var93); + + } + + public void test177() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test177"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + java.awt.Dimension var4 = var0.getPreferredSize(); + boolean var5 = var0.getVerifyInputWhenFocusTarget(); + java.awt.Component var8 = var0.findComponentAt(10, 1); + boolean var9 = var0.requestDefaultFocus(); + var0.setVerifyInputWhenFocusTarget(false); + java.awt.Point var12 = var0.getLocation(); + var0.setFocusable(false); + SpaceWar.SpacePanel var15 = new SpaceWar.SpacePanel(); + java.awt.Color var16 = var15.getBackground(); + var15.repaint(); + java.awt.im.InputMethodRequests var18 = var15.getInputMethodRequests(); + int var19 = var15.countComponents(); + java.awt.event.ComponentListener[] var20 = var15.getComponentListeners(); + SpaceWar.SpacePanel var21 = new SpaceWar.SpacePanel(); + float var22 = var21.getAlignmentX(); + var21.removeNotify(); + SpaceWar.SpacePanel var24 = new SpaceWar.SpacePanel(); + float var25 = var24.getAlignmentX(); + var24.setVisible(false); + boolean var28 = var24.isDoubleBuffered(); + var24.list(); + float var30 = var24.getAlignmentY(); + java.awt.Insets var31 = var24.getInsets(); + java.awt.Insets var32 = var21.getInsets(var31); + java.awt.Insets var33 = var15.getInsets(var32); + java.awt.event.ComponentListener[] var34 = var15.getComponentListeners(); + java.lang.String var35 = var15.toString(); + var0.removeKeyListener((java.awt.event.KeyListener)var15); + java.awt.im.InputContext var37 = var15.getInputContext(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var4); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var22 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var28 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var30 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var31); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var32); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var33); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var34); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var35 + "' != '" + "SpaceWar.SpacePanel[,0,0,0var35,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"+ "'", var35.equals("SpaceWar.SpacePanel[,0,0,0var35,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]")); + + // Regression assertion (captures the current behavior of the code) + assertNull(var37); + + } + + public void test178() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test178"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + java.awt.im.InputMethodRequests var3 = var0.getInputMethodRequests(); + int var4 = var0.countComponents(); + java.awt.event.ComponentListener[] var5 = var0.getComponentListeners(); + var0.removeNotify(); + javax.swing.InputMap var7 = var0.getInputMap(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var14 = new SpaceWar.SpacePanel(); + float var15 = var14.getAlignmentX(); + var14.setVisible(false); + SpaceWar.SpacePanel var18 = new SpaceWar.SpacePanel(); + java.awt.Color var19 = var18.getBackground(); + var14.setForeground(var19); + var8.setBackground(var19); + java.awt.Point var22 = var8.location(); + var0.setLocation(var22); + SpaceWar.SpacePanel var24 = new SpaceWar.SpacePanel(); + float var25 = var24.getAlignmentX(); + var24.setVisible(false); + var24.nextFocus(); + var24.reshape((-1), 1, (-1), 10); + SpaceWar.SpacePanel var34 = new SpaceWar.SpacePanel(); + java.awt.Color var35 = var34.getBackground(); + var34.repaint(); + var34.setRequestFocusEnabled(false); + var34.reshape(100, 0, 100, 0); + java.awt.Component var44 = var24.add((java.awt.Component)var34); + var24.enable(); + SpaceWar.SpacePanel var46 = new SpaceWar.SpacePanel(); + float var47 = var46.getAlignmentX(); + boolean var48 = var46.hasFocus(); + boolean var49 = var46.isPreferredSizeSet(); + var0.putClientProperty((java.lang.Object)var24, (java.lang.Object)var46); + SpaceWar.SpacePanel var51 = new SpaceWar.SpacePanel(); + float var52 = var51.getAlignmentX(); + var51.setVisible(false); + var51.nextFocus(); + var51.repaint(1L); + SpaceWar.SpacePanel var58 = new SpaceWar.SpacePanel(); + float var59 = var58.getAlignmentX(); + var58.setVisible(false); + boolean var62 = var58.isDoubleBuffered(); + var58.list(); + SpaceWar.SpacePanel var64 = new SpaceWar.SpacePanel(); + float var65 = var64.getAlignmentX(); + var64.setVisible(false); + boolean var68 = var64.isDoubleBuffered(); + java.awt.dnd.DropTarget var69 = var64.getDropTarget(); + var64.show(false); + java.awt.Rectangle var72 = var64.getVisibleRect(); + java.awt.Rectangle var73 = var58.getBounds(var72); + var51.setBounds(var73); + var46.repaint(var73); + var46.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", (byte)0, (byte)0); + var46.resize(25, 100); + java.awt.event.ComponentListener[] var83 = var46.getComponentListeners(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var35); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var44); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var47 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var48 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var49 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var52 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var59 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var62 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var65 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var68 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var69); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var72); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var73); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var83); + + } + + public void test179() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test179"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + var0.show(false); + boolean var8 = var0.isPaintingForPrint(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var15 = var9.getMouseListeners(); + int var16 = var9.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var17 = var9.getInputMethodRequests(); + var0.addKeyListener((java.awt.event.KeyListener)var9); + var9.repaint(); + java.awt.Point var20 = var9.location(); + java.util.Locale var21 = var9.getLocale(); + javax.swing.JComponent.setDefaultLocale(var21); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var21); + + } + + public void test180() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test180"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + float var7 = var6.getAlignmentX(); + var6.setVisible(false); + SpaceWar.SpacePanel var10 = new SpaceWar.SpacePanel(); + java.awt.Color var11 = var10.getBackground(); + var6.setForeground(var11); + var0.setBackground(var11); + var0.grabFocus(); + SpaceWar.SpacePanel var15 = new SpaceWar.SpacePanel(); + float var16 = var15.getAlignmentX(); + var15.setVisible(false); + boolean var19 = var15.isDoubleBuffered(); + java.awt.dnd.DropTarget var20 = var15.getDropTarget(); + boolean var21 = var15.isFocusCycleRoot(); + SpaceWar.SpacePanel var22 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var23 = new SpaceWar.SpacePanel(); + java.awt.Color var24 = var23.getBackground(); + SpaceWar.SpacePanel var25 = new SpaceWar.SpacePanel(); + float var26 = var25.getAlignmentX(); + var25.setVisible(false); + var25.nextFocus(); + var25.updateUI(); + var25.enableInputMethods(true); + var22.add((java.awt.Component)var23, (java.lang.Object)true); + java.awt.Dimension var34 = var23.getPreferredSize(); + var15.setSize(var34); + var0.setMaximumSize(var34); + float var37 = var0.getAlignmentY(); + var0.setLocation(99, 99); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var34); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == 0.5f); + + } + + public void test181() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test181"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.updateUI(); + var0.enableInputMethods(true); + java.awt.Point var9 = var0.getMousePosition(false); + java.awt.Point var10 = var0.getMousePosition(); + java.awt.image.BufferedImage var12 = var0.loadImg(""); + javax.swing.ActionMap var13 = var0.getActionMap(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNull(var9); + + // Regression assertion (captures the current behavior of the code) + assertNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var13); + + } + + public void test182() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test182"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.removeNotify(); + SpaceWar.SpacePanel var3 = new SpaceWar.SpacePanel(); + float var4 = var3.getAlignmentX(); + var3.setVisible(false); + boolean var7 = var3.isDoubleBuffered(); + var3.list(); + float var9 = var3.getAlignmentY(); + java.awt.Insets var10 = var3.getInsets(); + java.awt.Insets var11 = var0.getInsets(var10); + SpaceWar.SpacePanel var12 = new SpaceWar.SpacePanel(); + float var13 = var12.getAlignmentX(); + var12.setVisible(false); + boolean var16 = var12.isDoubleBuffered(); + boolean var17 = javax.swing.JComponent.isLightweightComponent((java.awt.Component)var12); + java.awt.event.MouseWheelListener[] var18 = var12.getMouseWheelListeners(); + var12.transferFocusUpCycle(); + var12.setBounds((-1), 2, 400, 25); + boolean var25 = var0.isAncestorOf((java.awt.Component)var12); + java.awt.Point var26 = var0.getMousePosition(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var26); + + } + + public void test183() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test183"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + java.awt.Dimension var4 = var0.getPreferredSize(); + boolean var5 = var0.getVerifyInputWhenFocusTarget(); + java.awt.Component var8 = var0.findComponentAt(10, 1); + boolean var9 = var0.requestDefaultFocus(); + var0.firePropertyChange("hi!", false, true); + javax.swing.ActionMap var14 = var0.getActionMap(); + var0.setDebugGraphicsOptions(10); + boolean var17 = var0.isDoubleBuffered(); + var0.setSize(3, 100); + javax.swing.InputMap var21 = var0.getInputMap(); + var0.setBounds((-1), 1, 399, 3); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var4); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var21); + + } + + public void test184() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test184"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var1 = new SpaceWar.SpacePanel(); + java.awt.Color var2 = var1.getBackground(); + SpaceWar.SpacePanel var3 = new SpaceWar.SpacePanel(); + float var4 = var3.getAlignmentX(); + var3.setVisible(false); + var3.nextFocus(); + var3.updateUI(); + var3.enableInputMethods(true); + var0.add((java.awt.Component)var1, (java.lang.Object)true); + java.awt.Dimension var12 = var1.getPreferredSize(); + java.awt.Component[] var13 = var1.getComponents(); + var1.repaint(25, 25, 100, 1); + var1.removeNotify(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var2); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var13); + + } + + public void test185() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test185"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.Graphics var5 = var0.getGraphics(); + boolean var6 = var0.hasFocus(); + boolean var7 = var0.isVisible(); + var0.firePropertyChange("SpaceWar.SpacePanel[,-1,1,-1x10,invalid,hidden,disabled,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", (short)1, (short)(-1)); + boolean var12 = var0.isValidateRoot(); + java.awt.Dimension var13 = var0.getMaximumSize(); + SpaceWar.SpacePanel var14 = new SpaceWar.SpacePanel(); + float var15 = var14.getAlignmentX(); + var14.setVisible(false); + boolean var18 = var14.isDoubleBuffered(); + java.awt.dnd.DropTarget var19 = var14.getDropTarget(); + var14.show(false); + java.awt.Rectangle var22 = var14.getVisibleRect(); + java.awt.image.BufferedImage var24 = var14.loadImg("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + int var25 = var14.getComponentCount(); + SpaceWar.SpacePanel var26 = new SpaceWar.SpacePanel(); + float var27 = var26.getAlignmentX(); + var26.setVisible(false); + java.awt.Dimension var30 = var26.getPreferredSize(); + boolean var31 = var26.getVerifyInputWhenFocusTarget(); + java.awt.Component var34 = var26.findComponentAt(10, 1); + boolean var35 = var26.requestDefaultFocus(); + java.awt.Insets var36 = var26.getInsets(); + var26.setDoubleBuffered(false); + java.awt.Toolkit var39 = var26.getToolkit(); + java.awt.Dimension var40 = var26.getMinimumSize(); + var14.resize(var40); + var0.addKeyListener((java.awt.event.KeyListener)var14); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var30); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var31 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var34); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var35 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var36); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var39); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var40); + + } + + public void test186() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test186"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + boolean var6 = var0.isFocusCycleRoot(); + var0.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", 100, 0); + SpaceWar.SpacePanel var11 = new SpaceWar.SpacePanel(); + float var12 = var11.getAlignmentX(); + var11.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var17 = var11.getUI(); + var0.add((java.awt.Component)var11, (java.lang.Object)(short)0); + java.awt.Insets var20 = var11.getInsets(); + SpaceWar.SpacePanel var21 = new SpaceWar.SpacePanel(); + float var22 = var21.getAlignmentX(); + var21.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var27 = var21.getMouseListeners(); + java.awt.Dimension var28 = var21.getPreferredSize(); + java.util.Locale var29 = var21.getLocale(); + var21.setFocusable(true); + SpaceWar.SpacePanel var32 = new SpaceWar.SpacePanel(); + java.awt.Color var33 = var32.getBackground(); + var32.repaint(); + var32.setRequestFocusEnabled(false); + var32.setIgnoreRepaint(false); + java.lang.String var39 = var32.toString(); + java.awt.Color var40 = var32.getBackground(); + var11.putClientProperty((java.lang.Object)var21, (java.lang.Object)var32); + java.awt.Rectangle var42 = var11.getVisibleRect(); + java.awt.GraphicsConfiguration var43 = var11.getGraphicsConfiguration(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var22 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var27); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var28); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var29); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var33); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var39 + "' != '" + "SpaceWar.SpacePanel[,0,0,0var39,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"+ "'", var39.equals("SpaceWar.SpacePanel[,0,0,0var39,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]")); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var40); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var42); + + // Regression assertion (captures the current behavior of the code) + assertNull(var43); + + } + + public void test187() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test187"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + SpaceWar.SpacePanel var4 = new SpaceWar.SpacePanel(); + java.awt.Color var5 = var4.getBackground(); + var0.setForeground(var5); + SpaceWar.SpacePanel var7 = new SpaceWar.SpacePanel(); + float var8 = var7.getAlignmentX(); + var7.setVisible(false); + boolean var11 = var7.isDoubleBuffered(); + java.awt.dnd.DropTarget var12 = var7.getDropTarget(); + var7.show(false); + java.awt.Rectangle var15 = var7.getVisibleRect(); + var0.repaint(var15); + java.awt.FocusTraversalPolicy var17 = var0.getFocusTraversalPolicy(); + javax.swing.TransferHandler var18 = var0.getTransferHandler(); + java.awt.Component var19 = var0.getNextFocusableComponent(); + java.awt.image.VolatileImage var22 = var0.createVolatileImage(10, (-1)); + var0.setVisible(false); + boolean var25 = var0.isFocusable(); + var0.repaint(); + javax.swing.JToolTip var27 = var0.createToolTip(); + SpaceWar.SpacePanel var28 = new SpaceWar.SpacePanel(); + float var29 = var28.getAlignmentX(); + var28.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var34 = new SpaceWar.SpacePanel(); + float var35 = var34.getAlignmentX(); + var34.setVisible(false); + java.awt.Dimension var38 = var34.getPreferredSize(); + var28.setMaximumSize(var38); + boolean var40 = var28.getVerifyInputWhenFocusTarget(); + boolean var41 = var28.isFontSet(); + boolean var42 = var28.getIgnoreRepaint(); + java.awt.Dimension var43 = var28.getMinimumSize(); + var0.resize(var43); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var27); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var29 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var35 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var38); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var40 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var41 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var42 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var43); + + } + + public void test188() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test188"); + + + SpaceWar.Player var0 = new SpaceWar.Player(); + int var1 = var0.getPower(); + var0.setLeft(true); + var0.increasePower(0); + int var6 = var0.getR(); + boolean var7 = var0.isDead(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == 25); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == false); + + } + + public void test189() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test189"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + var0.enable(false); + int var7 = var0.getWidth(); + var0.disable(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0); + + } + + public void test190() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test190"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var6 = var0.getMouseListeners(); + int var7 = var0.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var8 = var0.getInputMethodRequests(); + var0.removeNotify(); + var0.enable(); + SpaceWar.SpacePanel var11 = new SpaceWar.SpacePanel(); + java.awt.Color var12 = var11.getBackground(); + boolean var15 = var11.inside(0, (-1)); + var11.transferFocusUpCycle(); + java.lang.String var17 = var11.getName(); + boolean var18 = var0.isFocusCycleRoot((java.awt.Container)var11); + var0.requestFocus(); + SpaceWar.SpacePanel var20 = new SpaceWar.SpacePanel(); + float var21 = var20.getAlignmentX(); + var20.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var26 = new SpaceWar.SpacePanel(); + float var27 = var26.getAlignmentX(); + var26.setVisible(false); + java.awt.Dimension var30 = var26.getPreferredSize(); + var20.setMaximumSize(var30); + boolean var32 = var20.getVerifyInputWhenFocusTarget(); + java.awt.Toolkit var33 = var20.getToolkit(); + java.lang.String var34 = var20.getUIClassID(); + java.awt.Dimension var35 = var20.getMinimumSize(); + SpaceWar.SpacePanel var36 = new SpaceWar.SpacePanel(); + float var37 = var36.getAlignmentX(); + var36.setVisible(false); + var36.setInheritsPopupMenu(false); + var36.setFocusTraversalPolicyProvider(true); + SpaceWar.SpacePanel var44 = new SpaceWar.SpacePanel(); + float var45 = var44.getAlignmentX(); + var44.setVisible(false); + boolean var48 = var44.isDoubleBuffered(); + var44.list(); + SpaceWar.SpacePanel var50 = new SpaceWar.SpacePanel(); + float var51 = var50.getAlignmentX(); + var50.setVisible(false); + boolean var54 = var50.isDoubleBuffered(); + java.awt.dnd.DropTarget var55 = var50.getDropTarget(); + var50.show(false); + java.awt.Rectangle var58 = var50.getVisibleRect(); + java.awt.Rectangle var59 = var44.getBounds(var58); + javax.swing.JToolTip var60 = var44.createToolTip(); + var36.removeKeyListener((java.awt.event.KeyListener)var44); + javax.swing.TransferHandler var62 = var36.getTransferHandler(); + boolean var63 = var36.requestFocusInWindow(); + var0.add((java.awt.Component)var20, (java.lang.Object)var36); + java.awt.Insets var65 = var20.getInsets(); + var20.setLocation(1, 1); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var30); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var32 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var33); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var34 + "' != '" + "PanelUI"+ "'", var34.equals("PanelUI")); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var35); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var45 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var48 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var51 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var54 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var55); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var58); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var59); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var60); + + // Regression assertion (captures the current behavior of the code) + assertNull(var62); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var63 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var65); + + } + + public void test191() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test191"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var6 = var0.getMouseListeners(); + java.awt.Dimension var7 = var0.getPreferredSize(); + java.beans.PropertyChangeListener[] var8 = var0.getPropertyChangeListeners(); + java.awt.LayoutManager var9 = var0.getLayout(); + java.awt.Cursor var10 = var0.getCursor(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var9); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var10); + + } + + public void test192() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test192"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + SpaceWar.SpacePanel var4 = new SpaceWar.SpacePanel(); + java.awt.Color var5 = var4.getBackground(); + var0.setForeground(var5); + SpaceWar.SpacePanel var7 = new SpaceWar.SpacePanel(); + float var8 = var7.getAlignmentX(); + var7.setVisible(false); + boolean var11 = var7.isDoubleBuffered(); + java.awt.dnd.DropTarget var12 = var7.getDropTarget(); + var7.show(false); + java.awt.Rectangle var15 = var7.getVisibleRect(); + var0.repaint(var15); + java.awt.FocusTraversalPolicy var17 = var0.getFocusTraversalPolicy(); + javax.swing.TransferHandler var18 = var0.getTransferHandler(); + java.awt.Dimension var19 = var0.getMinimumSize(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var19); + + } + + public void test193() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test193"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + java.awt.Dimension var4 = var0.getPreferredSize(); + java.awt.Toolkit var5 = var0.getToolkit(); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + var6.setName(""); + int var9 = var6.getX(); + SpaceWar.SpacePanel var10 = new SpaceWar.SpacePanel(); + float var11 = var10.getAlignmentX(); + var10.setVisible(false); + var10.nextFocus(); + SpaceWar.SpacePanel var15 = new SpaceWar.SpacePanel(); + float var16 = var15.getAlignmentX(); + var15.setVisible(false); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + java.awt.Color var20 = var19.getBackground(); + var15.setForeground(var20); + var10.setBackground(var20); + var6.setBackground(var20); + var0.setForeground(var20); + SpaceWar.SpacePanel var25 = new SpaceWar.SpacePanel(); + float var26 = var25.getAlignmentX(); + var25.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var31 = new SpaceWar.SpacePanel(); + float var32 = var31.getAlignmentX(); + var31.setVisible(false); + java.awt.Dimension var35 = var31.getPreferredSize(); + var25.setMaximumSize(var35); + boolean var37 = var25.getVerifyInputWhenFocusTarget(); + javax.accessibility.AccessibleContext var38 = var25.getAccessibleContext(); + boolean var39 = var25.isDoubleBuffered(); + java.awt.Rectangle var40 = var25.getVisibleRect(); + var0.scrollRectToVisible(var40); + SpaceWar.SpacePanel var42 = new SpaceWar.SpacePanel(); + float var43 = var42.getAlignmentX(); + var42.setVisible(false); + java.awt.Dimension var46 = var42.getPreferredSize(); + java.awt.Toolkit var47 = var42.getToolkit(); + SpaceWar.SpacePanel var48 = new SpaceWar.SpacePanel(); + var48.setName(""); + int var51 = var48.getX(); + SpaceWar.SpacePanel var52 = new SpaceWar.SpacePanel(); + float var53 = var52.getAlignmentX(); + var52.setVisible(false); + var52.nextFocus(); + SpaceWar.SpacePanel var57 = new SpaceWar.SpacePanel(); + float var58 = var57.getAlignmentX(); + var57.setVisible(false); + SpaceWar.SpacePanel var61 = new SpaceWar.SpacePanel(); + java.awt.Color var62 = var61.getBackground(); + var57.setForeground(var62); + var52.setBackground(var62); + var48.setBackground(var62); + var42.setForeground(var62); + SpaceWar.SpacePanel var67 = new SpaceWar.SpacePanel(); + float var68 = var67.getAlignmentX(); + var67.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var73 = new SpaceWar.SpacePanel(); + float var74 = var73.getAlignmentX(); + var73.setVisible(false); + java.awt.Dimension var77 = var73.getPreferredSize(); + var67.setMaximumSize(var77); + boolean var79 = var67.getVerifyInputWhenFocusTarget(); + javax.accessibility.AccessibleContext var80 = var67.getAccessibleContext(); + boolean var81 = var67.isDoubleBuffered(); + java.awt.Rectangle var82 = var67.getVisibleRect(); + var42.scrollRectToVisible(var82); + var0.removeKeyListener((java.awt.event.KeyListener)var42); + var42.firePropertyChange("PanelUI", (short)1, (short)1); + java.lang.String var89 = var42.getToolTipText(); + var42.setAlignmentY(100.0f); + var42.transferFocus(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var4); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var32 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var35); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var38); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var39 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var40); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var43 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var46); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var47); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var51 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var53 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var58 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var62); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var68 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var74 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var77); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var79 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var80); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var81 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var82); + + // Regression assertion (captures the current behavior of the code) + assertNull(var89); + + } + + public void test194() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test194"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + boolean var5 = javax.swing.JComponent.isLightweightComponent((java.awt.Component)var0); + var0.removeAll(); + java.awt.event.ContainerListener[] var7 = var0.getContainerListeners(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var7); + + } + + public void test195() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test195"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + boolean var6 = var0.isFocusCycleRoot(); + var0.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", 100, 0); + SpaceWar.SpacePanel var11 = new SpaceWar.SpacePanel(); + java.awt.Color var12 = var11.getBackground(); + var11.repaint(); + var11.setRequestFocusEnabled(false); + var11.reshape(100, 0, 100, 0); + javax.swing.event.AncestorListener[] var21 = var11.getAncestorListeners(); + var11.grabFocus(); + boolean var23 = var0.isFocusCycleRoot((java.awt.Container)var11); + SpaceWar.SpacePanel var24 = new SpaceWar.SpacePanel(); + float var25 = var24.getAlignmentX(); + var24.setVisible(false); + var24.nextFocus(); + SpaceWar.SpacePanel var29 = new SpaceWar.SpacePanel(); + float var30 = var29.getAlignmentX(); + var29.setVisible(false); + SpaceWar.SpacePanel var33 = new SpaceWar.SpacePanel(); + java.awt.Color var34 = var33.getBackground(); + var29.setForeground(var34); + var24.setBackground(var34); + java.awt.Component var37 = var24.getNextFocusableComponent(); + float var38 = var24.getAlignmentY(); + java.awt.event.MouseListener[] var39 = var24.getMouseListeners(); + java.awt.Point var40 = var24.location(); + var11.setLocation(var40); + boolean var42 = var11.getFocusTraversalKeysEnabled(); + java.awt.Dimension var43 = var11.preferredSize(); + SpaceWar.SpacePanel var44 = new SpaceWar.SpacePanel(); + float var45 = var44.getAlignmentX(); + var44.setVisible(false); + java.awt.Dimension var48 = var44.getPreferredSize(); + java.awt.Toolkit var49 = var44.getToolkit(); + boolean var50 = var44.isFocusable(); + javax.swing.KeyStroke[] var51 = var44.getRegisteredKeyStrokes(); + var44.setFocusCycleRoot(false); + javax.swing.JPopupMenu var54 = var44.getComponentPopupMenu(); + var11.setNextFocusableComponent((java.awt.Component)var44); + SpaceWar.SpacePanel var56 = new SpaceWar.SpacePanel(); + float var57 = var56.getAlignmentX(); + var56.setVisible(false); + java.awt.Dimension var60 = var56.getPreferredSize(); + boolean var61 = var56.getVerifyInputWhenFocusTarget(); + java.awt.Component var64 = var56.findComponentAt(10, 1); + boolean var65 = var56.requestDefaultFocus(); + java.awt.image.VolatileImage var68 = var56.createVolatileImage(0, 3); + java.awt.Rectangle var69 = var56.getVisibleRect(); + var44.computeVisibleRect(var69); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var21); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var30 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var34); + + // Regression assertion (captures the current behavior of the code) + assertNull(var37); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var38 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var39); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var40); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var42 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var43); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var45 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var48); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var49); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var50 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var51); + + // Regression assertion (captures the current behavior of the code) + assertNull(var54); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var57 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var60); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var61 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var64); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var65 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var68); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var69); + + } + + public void test196() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test196"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + java.awt.Dimension var4 = var0.getPreferredSize(); + java.awt.Toolkit var5 = var0.getToolkit(); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + var6.setName(""); + int var9 = var6.getX(); + SpaceWar.SpacePanel var10 = new SpaceWar.SpacePanel(); + float var11 = var10.getAlignmentX(); + var10.setVisible(false); + var10.nextFocus(); + SpaceWar.SpacePanel var15 = new SpaceWar.SpacePanel(); + float var16 = var15.getAlignmentX(); + var15.setVisible(false); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + java.awt.Color var20 = var19.getBackground(); + var15.setForeground(var20); + var10.setBackground(var20); + var6.setBackground(var20); + var0.setForeground(var20); + SpaceWar.SpacePanel var25 = new SpaceWar.SpacePanel(); + float var26 = var25.getAlignmentX(); + var25.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var31 = new SpaceWar.SpacePanel(); + float var32 = var31.getAlignmentX(); + var31.setVisible(false); + java.awt.Dimension var35 = var31.getPreferredSize(); + var25.setMaximumSize(var35); + boolean var37 = var25.getVerifyInputWhenFocusTarget(); + javax.accessibility.AccessibleContext var38 = var25.getAccessibleContext(); + boolean var39 = var25.isDoubleBuffered(); + java.awt.Rectangle var40 = var25.getVisibleRect(); + var0.scrollRectToVisible(var40); + var0.setEnabled(false); + var0.nextFocus(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var4); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var32 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var35); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var38); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var39 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var40); + + } + + public void test197() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test197"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + java.awt.im.InputMethodRequests var3 = var0.getInputMethodRequests(); + int var4 = var0.countComponents(); + java.awt.event.ComponentListener[] var5 = var0.getComponentListeners(); + var0.transferFocusBackward(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + boolean var12 = var8.isDoubleBuffered(); + var8.enable(false); + SpaceWar.SpacePanel var15 = new SpaceWar.SpacePanel(); + float var16 = var15.getAlignmentX(); + boolean var17 = var15.hasFocus(); + java.awt.Insets var18 = var15.getInsets(); + java.awt.Rectangle var19 = var15.bounds(); + var8.repaint(var19); + java.awt.Component var21 = var0.add("", (java.awt.Component)var8); + SpaceWar.SpacePanel var22 = new SpaceWar.SpacePanel(); + float var23 = var22.getAlignmentX(); + var22.setVisible(false); + var22.nextFocus(); + var22.updateUI(); + var22.enableInputMethods(true); + java.awt.Point var31 = var22.getMousePosition(false); + SpaceWar.SpacePanel var32 = new SpaceWar.SpacePanel(); + float var33 = var32.getAlignmentX(); + var32.setVisible(false); + boolean var36 = var32.isDoubleBuffered(); + var32.list(); + SpaceWar.SpacePanel var38 = new SpaceWar.SpacePanel(); + float var39 = var38.getAlignmentX(); + var38.setVisible(false); + boolean var42 = var38.isDoubleBuffered(); + java.awt.dnd.DropTarget var43 = var38.getDropTarget(); + var38.show(false); + java.awt.Rectangle var46 = var38.getVisibleRect(); + java.awt.Rectangle var47 = var32.getBounds(var46); + var22.scrollRectToVisible(var46); + var0.paintImmediately(var46); + var0.setAlignmentX(100.0f); + var0.transferFocus(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var21); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNull(var31); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var33 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var36 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var39 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var42 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var43); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var46); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var47); + + } + + public void test198() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test198"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.reshape((-1), 1, (-1), 10); + SpaceWar.SpacePanel var10 = new SpaceWar.SpacePanel(); + java.awt.Color var11 = var10.getBackground(); + var10.repaint(); + var10.setRequestFocusEnabled(false); + var10.reshape(100, 0, 100, 0); + java.awt.Component var20 = var0.add((java.awt.Component)var10); + boolean var21 = var10.isFocusOwner(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == false); + + } + + public void test199() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test199"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.reshape((-1), 1, (-1), 10); + var0.disable(); + boolean var11 = var0.isFocusable(); + SpaceWar.SpacePanel var12 = new SpaceWar.SpacePanel(); + float var13 = var12.getAlignmentX(); + var12.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var18 = var12.getUI(); + java.awt.im.InputMethodRequests var19 = var12.getInputMethodRequests(); + SpaceWar.SpacePanel var20 = new SpaceWar.SpacePanel(); + float var21 = var20.getAlignmentX(); + var20.setVisible(false); + var20.nextFocus(); + var20.updateUI(); + var20.enableInputMethods(true); + var20.setSize((-1), 1); + SpaceWar.SpacePanel var31 = new SpaceWar.SpacePanel(); + var31.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var12.add((java.awt.Component)var20, (java.lang.Object)"SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + java.awt.event.KeyListener[] var37 = var12.getKeyListeners(); + java.awt.FocusTraversalPolicy var38 = var12.getFocusTraversalPolicy(); + SpaceWar.SpacePanel var39 = new SpaceWar.SpacePanel(); + var39.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + java.awt.Toolkit var44 = var39.getToolkit(); + var0.add((java.awt.Component)var12, (java.lang.Object)var39); + var12.transferFocusDownCycle(); + boolean var47 = var12.isVisible(); + SpaceWar.SpacePanel var48 = new SpaceWar.SpacePanel(); + float var49 = var48.getAlignmentX(); + var48.setVisible(false); + var48.setInheritsPopupMenu(false); + var48.setFocusTraversalPolicyProvider(true); + boolean var58 = var48.inside(25, 3); + SpaceWar.SpacePanel var59 = new SpaceWar.SpacePanel(); + float var60 = var59.getAlignmentX(); + var59.setVisible(false); + boolean var63 = var59.isDoubleBuffered(); + java.awt.dnd.DropTarget var64 = var59.getDropTarget(); + var59.show(false); + boolean var67 = var59.isPaintingForPrint(); + SpaceWar.SpacePanel var68 = new SpaceWar.SpacePanel(); + float var69 = var68.getAlignmentX(); + SpaceWar.SpacePanel var70 = new SpaceWar.SpacePanel(); + float var71 = var70.getAlignmentX(); + var70.setVisible(false); + java.awt.Dimension var74 = var70.getPreferredSize(); + boolean var75 = var70.getVerifyInputWhenFocusTarget(); + java.awt.Component var78 = var70.findComponentAt(10, 1); + var68.addKeyListener((java.awt.event.KeyListener)var70); + java.awt.Dimension var80 = var70.getMinimumSize(); + var59.setMinimumSize(var80); + var48.setPreferredSize(var80); + boolean var84 = var48.requestFocus(true); + var12.setNextFocusableComponent((java.awt.Component)var48); + var48.setToolTipText("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=265,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var37); + + // Regression assertion (captures the current behavior of the code) + assertNull(var38); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var44); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var47 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var49 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var58 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var60 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var63 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var64); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var67 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var69 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var71 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var74); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var75 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var78); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var80); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var84 == false); + + } + + public void test200() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test200"); + + + SpaceWar.Bullet var3 = new SpaceWar.Bullet(400.0d, 24, 1); + + } + + public void test201() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test201"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.setInheritsPopupMenu(false); + boolean var6 = var0.isDoubleBuffered(); + var0.setAlignmentY(100.0f); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var15 = var9.getUI(); + java.awt.im.InputMethodRequests var16 = var9.getInputMethodRequests(); + SpaceWar.SpacePanel var17 = new SpaceWar.SpacePanel(); + float var18 = var17.getAlignmentX(); + var17.setVisible(false); + var17.nextFocus(); + var17.updateUI(); + var17.enableInputMethods(true); + var17.setSize((-1), 1); + SpaceWar.SpacePanel var28 = new SpaceWar.SpacePanel(); + var28.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var9.add((java.awt.Component)var17, (java.lang.Object)"SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + java.awt.event.KeyListener[] var34 = var9.getKeyListeners(); + var9.repaint(3, 1, 25, 0); + SpaceWar.SpacePanel var40 = new SpaceWar.SpacePanel(); + java.awt.Color var41 = var40.getBackground(); + boolean var44 = var40.inside(0, (-1)); + var40.transferFocusUpCycle(); + java.awt.Container var46 = var40.getParent(); + boolean var47 = var40.isMaximumSizeSet(); + SpaceWar.SpacePanel var48 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var49 = new SpaceWar.SpacePanel(); + java.awt.Color var50 = var49.getBackground(); + SpaceWar.SpacePanel var51 = new SpaceWar.SpacePanel(); + float var52 = var51.getAlignmentX(); + var51.setVisible(false); + var51.nextFocus(); + var51.updateUI(); + var51.enableInputMethods(true); + var48.add((java.awt.Component)var49, (java.lang.Object)true); + boolean var61 = var49.areFocusTraversalKeysSet(0); + SpaceWar.SpacePanel var62 = new SpaceWar.SpacePanel(); + float var63 = var62.getAlignmentX(); + var62.setVisible(false); + boolean var66 = var62.isDoubleBuffered(); + java.awt.dnd.DropTarget var67 = var62.getDropTarget(); + var62.show(false); + java.awt.Rectangle var70 = var62.getVisibleRect(); + var49.setBounds(var70); + var40.setBounds(var70); + java.awt.Rectangle var73 = var9.getBounds(var70); + var0.setBounds(var73); + java.lang.String var75 = var0.toString(); + var0.nextFocus(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var34); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var41); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var44 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var46); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var47 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var50); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var52 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var61 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var63 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var66 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var67); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var70); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var73); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var75 + "' != '" + "SpaceWar.SpacePanel[,0,0,0var75,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=1.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"+ "'", var75.equals("SpaceWar.SpacePanel[,0,0,0var75,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=1.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]")); + + } + + public void test202() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test202"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + java.awt.Dimension var4 = var0.getPreferredSize(); + boolean var5 = var0.getVerifyInputWhenFocusTarget(); + java.awt.event.MouseWheelListener[] var6 = var0.getMouseWheelListeners(); + java.awt.event.MouseWheelListener[] var7 = var0.getMouseWheelListeners(); + boolean var8 = var0.isShowing(); + java.awt.dnd.DropTarget var9 = var0.getDropTarget(); + var0.repaint(399, 0, 100, 3); + SpaceWar.SpacePanel var15 = new SpaceWar.SpacePanel(); + float var16 = var15.getAlignmentX(); + var15.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var21 = var15.getMouseListeners(); + var15.firePropertyChange("", 0.5f, 100.0f); + var15.enable(false); + var15.enable(); + SpaceWar.SpacePanel var29 = new SpaceWar.SpacePanel(); + var29.setName(""); + java.awt.Toolkit var32 = var29.getToolkit(); + var29.setEnabled(false); + var29.removeNotify(); + boolean var36 = var29.isDisplayable(); + SpaceWar.SpacePanel var37 = new SpaceWar.SpacePanel(); + java.awt.Color var38 = var37.getBackground(); + var37.repaint(); + var37.setRequestFocusEnabled(false); + var37.reshape(100, 0, 100, 0); + var37.requestFocus(); + java.awt.Rectangle var48 = var37.getVisibleRect(); + java.awt.Rectangle var49 = var37.getBounds(); + java.awt.im.InputMethodRequests var50 = var37.getInputMethodRequests(); + boolean var51 = var37.requestFocusInWindow(); + java.awt.Point var53 = var37.getMousePosition(false); + var37.setDebugGraphicsOptions(1); + java.awt.Graphics var56 = var37.getGraphics(); + var29.paintAll(var56); + var15.printComponents(var56); + var0.paintComponents(var56); + var0.show(); + var0.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var4); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var9); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var21); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var32); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var36 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var38); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var48); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var49); + + // Regression assertion (captures the current behavior of the code) + assertNull(var50); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var51 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var53); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var56); + + } + + public void test203() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test203"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + SpaceWar.SpacePanel var2 = new SpaceWar.SpacePanel(); + float var3 = var2.getAlignmentX(); + var2.setVisible(false); + java.awt.Dimension var6 = var2.getPreferredSize(); + boolean var7 = var2.getVerifyInputWhenFocusTarget(); + java.awt.Component var10 = var2.findComponentAt(10, 1); + var0.addKeyListener((java.awt.event.KeyListener)var2); + var2.repaint(100, (-1), (-1), 1); + SpaceWar.SpacePanel var17 = new SpaceWar.SpacePanel(); + java.awt.Color var18 = var17.getBackground(); + var17.repaint(); + java.awt.im.InputMethodRequests var20 = var17.getInputMethodRequests(); + java.awt.GraphicsConfiguration var21 = var17.getGraphicsConfiguration(); + var2.remove((java.awt.Component)var17); + java.awt.Font var23 = var17.getFont(); + javax.swing.TransferHandler var24 = var17.getTransferHandler(); + java.awt.Component var25 = var17.getNextFocusableComponent(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertNull(var21); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var23); + + // Regression assertion (captures the current behavior of the code) + assertNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertNull(var25); + + } + + public void test204() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test204"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + float var7 = var6.getAlignmentX(); + var6.setVisible(false); + java.awt.Dimension var10 = var6.getPreferredSize(); + var0.setMaximumSize(var10); + boolean var12 = var0.getVerifyInputWhenFocusTarget(); + java.awt.Toolkit var13 = var0.getToolkit(); + java.awt.Dimension var14 = var0.minimumSize(); + java.awt.Image var17 = var0.createImage((-1), 400); + java.awt.event.MouseMotionListener[] var18 = var0.getMouseMotionListeners(); + boolean var19 = var0.isEnabled(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == true); + + } + + public void test205() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test205"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + var0.setRequestFocusEnabled(false); + var0.setIgnoreRepaint(false); + java.lang.String var7 = var0.toString(); + java.awt.Color var8 = var0.getBackground(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.setVisible(false); + java.awt.Dimension var13 = var9.getPreferredSize(); + java.awt.Toolkit var14 = var9.getToolkit(); + java.awt.Toolkit var15 = var9.getToolkit(); + SpaceWar.Player var16 = new SpaceWar.Player(); + var16.increasePower(25); + int var19 = var16.getScore(); + var16.setRigth(true); + var16.loseLife(); + var0.putClientProperty((java.lang.Object)var9, (java.lang.Object)var16); + var16.setDown(false); + int var26 = var16.getRequiredPower(); + var16.setUp(false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var7 + "' != '" + "SpaceWar.SpacePanel[,0,0,0var7,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"+ "'", var7.equals("SpaceWar.SpacePanel[,0,0,0var7,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]")); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == 2); + + } + + public void test206() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test206"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + float var7 = var6.getAlignmentX(); + var6.setVisible(false); + java.awt.Dimension var10 = var6.getPreferredSize(); + var0.setMaximumSize(var10); + boolean var12 = var0.getVerifyInputWhenFocusTarget(); + java.awt.Toolkit var13 = var0.getToolkit(); + java.awt.Dimension var14 = var0.minimumSize(); + SpaceWar.SpacePanel var15 = new SpaceWar.SpacePanel(); + float var16 = var15.getAlignmentX(); + var15.setVisible(false); + boolean var19 = var15.isDoubleBuffered(); + var15.enable(false); + boolean var22 = var15.getFocusTraversalKeysEnabled(); + SpaceWar.SpacePanel var23 = new SpaceWar.SpacePanel(); + float var24 = var23.getAlignmentX(); + var23.setVisible(false); + java.awt.Dimension var27 = var23.getPreferredSize(); + java.awt.Toolkit var28 = var23.getToolkit(); + boolean var29 = var23.isFocusable(); + javax.swing.KeyStroke[] var30 = var23.getRegisteredKeyStrokes(); + SpaceWar.SpacePanel var31 = new SpaceWar.SpacePanel(); + float var32 = var31.getAlignmentX(); + SpaceWar.SpacePanel var33 = new SpaceWar.SpacePanel(); + float var34 = var33.getAlignmentX(); + var33.setVisible(false); + java.awt.Dimension var37 = var33.getPreferredSize(); + boolean var38 = var33.getVerifyInputWhenFocusTarget(); + java.awt.Component var41 = var33.findComponentAt(10, 1); + var31.addKeyListener((java.awt.event.KeyListener)var33); + var33.repaint(100, (-1), (-1), 1); + boolean var48 = var23.isAncestorOf((java.awt.Component)var33); + var15.addKeyListener((java.awt.event.KeyListener)var33); + var33.hide(); + java.awt.event.MouseWheelListener[] var51 = var33.getMouseWheelListeners(); + var33.setLocation((-1), 500); + var33.nextFocus(); + java.awt.Rectangle var56 = var33.bounds(); + var0.computeVisibleRect(var56); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var22 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var24 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var27); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var28); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var29 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var30); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var32 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var34 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var37); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var38 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var41); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var48 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var51); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var56); + + } + + public void test207() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test207"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.requestFocus(); + boolean var6 = var0.getInheritsPopupMenu(); + boolean var7 = var0.isShowing(); + boolean var8 = var0.isCursorSet(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.setVisible(false); + var9.nextFocus(); + var9.reshape((-1), 1, (-1), 10); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + java.awt.Color var20 = var19.getBackground(); + var19.repaint(); + var19.setRequestFocusEnabled(false); + var19.reshape(100, 0, 100, 0); + java.awt.Component var29 = var9.add((java.awt.Component)var19); + boolean var30 = var19.isEnabled(); + SpaceWar.SpacePanel var31 = new SpaceWar.SpacePanel(); + float var32 = var31.getAlignmentX(); + var31.setVisible(false); + var31.setInheritsPopupMenu(false); + var31.setFocusTraversalPolicyProvider(true); + SpaceWar.SpacePanel var39 = new SpaceWar.SpacePanel(); + float var40 = var39.getAlignmentX(); + var39.setVisible(false); + boolean var43 = var39.isDoubleBuffered(); + var39.list(); + SpaceWar.SpacePanel var45 = new SpaceWar.SpacePanel(); + float var46 = var45.getAlignmentX(); + var45.setVisible(false); + boolean var49 = var45.isDoubleBuffered(); + java.awt.dnd.DropTarget var50 = var45.getDropTarget(); + var45.show(false); + java.awt.Rectangle var53 = var45.getVisibleRect(); + java.awt.Rectangle var54 = var39.getBounds(var53); + javax.swing.JToolTip var55 = var39.createToolTip(); + var31.removeKeyListener((java.awt.event.KeyListener)var39); + javax.swing.TransferHandler var57 = var31.getTransferHandler(); + var31.transferFocus(); + SpaceWar.SpacePanel var59 = new SpaceWar.SpacePanel(); + float var60 = var59.getAlignmentX(); + SpaceWar.SpacePanel var61 = new SpaceWar.SpacePanel(); + float var62 = var61.getAlignmentX(); + var61.setVisible(false); + java.awt.Dimension var65 = var61.getPreferredSize(); + boolean var66 = var61.getVerifyInputWhenFocusTarget(); + java.awt.Component var69 = var61.findComponentAt(10, 1); + var59.addKeyListener((java.awt.event.KeyListener)var61); + java.awt.Dimension var71 = var61.getMinimumSize(); + SpaceWar.SpacePanel var72 = new SpaceWar.SpacePanel(); + java.awt.Color var73 = var72.getBackground(); + var72.repaint(); + var72.setRequestFocusEnabled(false); + var72.reshape(100, 0, 100, 0); + var72.requestFocus(); + java.awt.Rectangle var83 = var72.getVisibleRect(); + var61.setBounds(var83); + var31.scrollRectToVisible(var83); + var19.setBounds(var83); + var0.repaint(var83); + boolean var89 = var0.areFocusTraversalKeysSet(1); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var29); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var30 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var32 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var40 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var43 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var46 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var49 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var50); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var53); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var54); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var55); + + // Regression assertion (captures the current behavior of the code) + assertNull(var57); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var60 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var62 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var65); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var66 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var69); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var71); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var73); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var83); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var89 == false); + + } + + public void test208() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test208"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + boolean var4 = var0.inside(0, (-1)); + var0.transferFocusUpCycle(); + java.awt.Container var6 = var0.getParent(); + boolean var7 = var0.isMaximumSizeSet(); + java.awt.event.InputMethodListener[] var8 = var0.getInputMethodListeners(); + javax.swing.TransferHandler var9 = var0.getTransferHandler(); + java.awt.Dimension var10 = var0.size(); + SpaceWar.SpacePanel var11 = new SpaceWar.SpacePanel(); + java.awt.Color var12 = var11.getBackground(); + var11.repaint(); + var11.setRequestFocusEnabled(false); + var11.reshape(100, 0, 100, 0); + var11.requestFocus(); + var11.firePropertyChange("hi!", '4', ' '); + var0.addKeyListener((java.awt.event.KeyListener)var11); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertNull(var9); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var12); + + } + + public void test209() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test209"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + var0.list(); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + float var7 = var6.getAlignmentX(); + var6.setVisible(false); + boolean var10 = var6.isDoubleBuffered(); + java.awt.dnd.DropTarget var11 = var6.getDropTarget(); + var6.show(false); + java.awt.Rectangle var14 = var6.getVisibleRect(); + java.awt.Rectangle var15 = var0.getBounds(var14); + javax.swing.JToolTip var16 = var0.createToolTip(); + var0.firePropertyChange("", false, false); + java.lang.String var21 = var0.getUIClassID(); + SpaceWar.SpacePanel var22 = new SpaceWar.SpacePanel(); + float var23 = var22.getAlignmentX(); + var22.firePropertyChange("", (-1), 1); + boolean var28 = var22.isFocusOwner(); + SpaceWar.SpacePanel var30 = new SpaceWar.SpacePanel(); + float var31 = var30.getAlignmentX(); + var30.setVisible(false); + java.awt.Dimension var34 = var30.getPreferredSize(); + java.awt.Toolkit var35 = var30.getToolkit(); + SpaceWar.SpacePanel var36 = new SpaceWar.SpacePanel(); + var36.setName(""); + int var39 = var36.getX(); + SpaceWar.SpacePanel var40 = new SpaceWar.SpacePanel(); + float var41 = var40.getAlignmentX(); + var40.setVisible(false); + var40.nextFocus(); + SpaceWar.SpacePanel var45 = new SpaceWar.SpacePanel(); + float var46 = var45.getAlignmentX(); + var45.setVisible(false); + SpaceWar.SpacePanel var49 = new SpaceWar.SpacePanel(); + java.awt.Color var50 = var49.getBackground(); + var45.setForeground(var50); + var40.setBackground(var50); + var36.setBackground(var50); + var30.setForeground(var50); + var22.putClientProperty((java.lang.Object)(byte)100, (java.lang.Object)var50); + boolean var56 = var22.isEnabled(); + var22.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", (-1), 1); + int var61 = var0.getComponentZOrder((java.awt.Component)var22); + java.awt.Insets var62 = var22.insets(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var21 + "' != '" + "PanelUI"+ "'", var21.equals("PanelUI")); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var28 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var31 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var34); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var35); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var39 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var41 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var46 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var50); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var56 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var61 == (-1)); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var62); + + } + + public void test210() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test210"); + + + SpaceWar.Enemy var2 = new SpaceWar.Enemy(0, 10); + int var3 = var2.getRank(); + double var4 = var2.getY(); + var2.update(); + double var6 = var2.getY(); + int var7 = var2.getRank(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == 10); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0.0d); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == 0.0d); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 10); + + } + + public void test211() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test211"); + + + SpaceWar.PowerUp var3 = new SpaceWar.PowerUp(100, (-1.0d), 0.0d); + double var4 = var3.getX(); + double var5 = var3.getY(); + boolean var6 = var3.update(); + double var7 = var3.getY(); + int var8 = var3.getType(); + double var9 = var3.getX(); + double var10 = var3.getY(); + double var11 = var3.getR(); + boolean var12 = var3.update(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == (-1.0d)); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == 0.0d); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 2.0d); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 100); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == (-1.0d)); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 2.0d); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == 0.0d); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == false); + + } + + public void test212() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test212"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + SpaceWar.SpacePanel var4 = new SpaceWar.SpacePanel(); + java.awt.Color var5 = var4.getBackground(); + var0.setForeground(var5); + SpaceWar.SpacePanel var7 = new SpaceWar.SpacePanel(); + float var8 = var7.getAlignmentX(); + var7.setVisible(false); + boolean var11 = var7.isDoubleBuffered(); + java.awt.dnd.DropTarget var12 = var7.getDropTarget(); + var7.show(false); + java.awt.Rectangle var15 = var7.getVisibleRect(); + var0.repaint(var15); + java.awt.FocusTraversalPolicy var17 = var0.getFocusTraversalPolicy(); + SpaceWar.SpacePanel var18 = new SpaceWar.SpacePanel(); + float var19 = var18.getAlignmentX(); + var18.firePropertyChange("", (-1), 1); + boolean var24 = var18.isFocusOwner(); + SpaceWar.SpacePanel var26 = new SpaceWar.SpacePanel(); + float var27 = var26.getAlignmentX(); + var26.setVisible(false); + java.awt.Dimension var30 = var26.getPreferredSize(); + java.awt.Toolkit var31 = var26.getToolkit(); + SpaceWar.SpacePanel var32 = new SpaceWar.SpacePanel(); + var32.setName(""); + int var35 = var32.getX(); + SpaceWar.SpacePanel var36 = new SpaceWar.SpacePanel(); + float var37 = var36.getAlignmentX(); + var36.setVisible(false); + var36.nextFocus(); + SpaceWar.SpacePanel var41 = new SpaceWar.SpacePanel(); + float var42 = var41.getAlignmentX(); + var41.setVisible(false); + SpaceWar.SpacePanel var45 = new SpaceWar.SpacePanel(); + java.awt.Color var46 = var45.getBackground(); + var41.setForeground(var46); + var36.setBackground(var46); + var32.setBackground(var46); + var26.setForeground(var46); + var18.putClientProperty((java.lang.Object)(byte)100, (java.lang.Object)var46); + var0.setBackground(var46); + boolean var53 = javax.swing.JComponent.isLightweightComponent((java.awt.Component)var0); + // The following exception was thrown during execution. + // This behavior will recorded for regression testing. + try { + java.awt.Point var54 = var0.getLocationOnScreen(); + fail("Expected exception of type java.awt.IllegalComponentStateException"); + } catch (java.awt.IllegalComponentStateException e) { + // Expected exception. + } + + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var24 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var30); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var31); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var35 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var42 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var46); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var53 == false); + + } + + public void test213() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test213"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + var0.setRequestFocusEnabled(false); + var0.reshape(100, 0, 100, 0); + var0.requestFocus(); + var0.firePropertyChange("hi!", '4', ' '); + java.awt.Point var15 = var0.getLocation(); + java.awt.event.MouseWheelListener[] var16 = var0.getMouseWheelListeners(); + SpaceWar.SpacePanel var17 = new SpaceWar.SpacePanel(); + float var18 = var17.getAlignmentX(); + var17.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var23 = var17.getUI(); + var0.setUI(var23); + java.awt.event.FocusListener[] var25 = var0.getFocusListeners(); + boolean var26 = var0.isBackgroundSet(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var23); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var25); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == true); + + } + + public void test214() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test214"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + boolean var2 = var0.hasFocus(); + boolean var3 = var0.isPreferredSizeSet(); + SpaceWar.SpacePanel var4 = new SpaceWar.SpacePanel(); + java.awt.Color var5 = var4.getBackground(); + var4.repaint(); + var4.setRequestFocusEnabled(false); + int var9 = var0.getComponentZOrder((java.awt.Component)var4); + int var10 = var0.getDebugGraphicsOptions(); + var0.enableInputMethods(true); + var0.setFocusTraversalPolicyProvider(true); + java.awt.Container var15 = var0.getFocusCycleRootAncestor(); + javax.swing.JPopupMenu var16 = var0.getComponentPopupMenu(); + java.awt.ComponentOrientation var17 = var0.getComponentOrientation(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var2 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == (-1)); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var17); + + } + + public void test215() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test215"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.updateUI(); + var0.enableInputMethods(true); + java.awt.Point var8 = var0.location(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.setVisible(false); + var9.nextFocus(); + java.awt.Component var14 = var0.add((java.awt.Component)var9); + boolean var15 = var0.isRequestFocusEnabled(); + boolean var16 = var0.isFocusable(); + var0.move(0, 400); + SpaceWar.SpacePanel var20 = new SpaceWar.SpacePanel(); + float var21 = var20.getAlignmentX(); + var20.setVisible(false); + var20.setEnabled(false); + java.awt.Image var28 = var20.createImage(10, 100); + SpaceWar.SpacePanel var29 = new SpaceWar.SpacePanel(); + java.awt.Color var30 = var29.getBackground(); + var20.setForeground(var30); + var20.setFocusTraversalPolicyProvider(true); + var0.setNextFocusableComponent((java.awt.Component)var20); + javax.swing.TransferHandler var35 = var20.getTransferHandler(); + var20.doLayout(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNull(var28); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var30); + + // Regression assertion (captures the current behavior of the code) + assertNull(var35); + + } + + public void test216() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test216"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + boolean var2 = var0.hasFocus(); + java.awt.Insets var3 = var0.getInsets(); + boolean var4 = var0.isFocusTraversalPolicyProvider(); + java.beans.PropertyChangeListener[] var6 = var0.getPropertyChangeListeners("hi!"); + var0.firePropertyChange("SpaceWar.SpacePanel[,-1,1,-1x10,invalid,hidden,disabled,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", 'a', '4'); + java.awt.Dimension var11 = var0.minimumSize(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var2 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + } + + public void test217() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test217"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + var0.show(false); + java.awt.Rectangle var8 = var0.getVisibleRect(); + java.awt.Toolkit var9 = var0.getToolkit(); + SpaceWar.SpacePanel var10 = new SpaceWar.SpacePanel(); + float var11 = var10.getAlignmentX(); + var10.setVisible(false); + boolean var14 = var10.isDoubleBuffered(); + var10.list(); + SpaceWar.SpacePanel var16 = new SpaceWar.SpacePanel(); + float var17 = var16.getAlignmentX(); + var16.setVisible(false); + boolean var20 = var16.isDoubleBuffered(); + java.awt.dnd.DropTarget var21 = var16.getDropTarget(); + var16.show(false); + java.awt.Rectangle var24 = var16.getVisibleRect(); + java.awt.Rectangle var25 = var10.getBounds(var24); + javax.swing.JToolTip var26 = var10.createToolTip(); + var10.firePropertyChange("", false, false); + var10.validate(); + SpaceWar.SpacePanel var32 = new SpaceWar.SpacePanel(); + float var33 = var32.getAlignmentX(); + var32.setVisible(false); + var32.nextFocus(); + var32.updateUI(); + var32.enableInputMethods(true); + java.lang.String var40 = var32.toString(); + var0.putClientProperty((java.lang.Object)var10, (java.lang.Object)var32); + java.awt.Dimension var42 = var10.size(); + java.awt.Dimension var43 = var10.preferredSize(); + SpaceWar.SpacePanel var44 = new SpaceWar.SpacePanel(); + float var45 = var44.getAlignmentX(); + var44.setVisible(false); + java.awt.Dimension var48 = var44.getPreferredSize(); + java.awt.Toolkit var49 = var44.getToolkit(); + boolean var50 = var44.isFocusable(); + javax.swing.KeyStroke[] var51 = var44.getRegisteredKeyStrokes(); + var44.setFocusCycleRoot(false); + SpaceWar.SpacePanel var54 = new SpaceWar.SpacePanel(); + float var55 = var54.getAlignmentX(); + var54.setVisible(false); + var54.nextFocus(); + var54.reshape((-1), 1, (-1), 10); + var54.disable(); + boolean var65 = var54.isFocusable(); + int var66 = var54.getHeight(); + javax.swing.InputVerifier var67 = var54.getInputVerifier(); + java.awt.Graphics var68 = var54.getGraphics(); + java.awt.Color var69 = var54.getForeground(); + var44.setBackground(var69); + var10.setForeground(var69); + var10.updateUI(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var9); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var21); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var25); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var33 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var40 + "' != '" + "SpaceWar.SpacePanel[,0,0,0var40,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"+ "'", var40.equals("SpaceWar.SpacePanel[,0,0,0var40,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]")); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var42); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var43); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var45 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var48); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var49); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var50 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var51); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var55 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var65 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var66 == 10); + + // Regression assertion (captures the current behavior of the code) + assertNull(var67); + + // Regression assertion (captures the current behavior of the code) + assertNull(var68); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var69); + + } + + public void test218() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test218"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + SpaceWar.SpacePanel var2 = new SpaceWar.SpacePanel(); + float var3 = var2.getAlignmentX(); + var2.setVisible(false); + java.awt.Dimension var6 = var2.getPreferredSize(); + boolean var7 = var2.getVerifyInputWhenFocusTarget(); + java.awt.Component var10 = var2.findComponentAt(10, 1); + var0.addKeyListener((java.awt.event.KeyListener)var2); + var2.repaint(100, (-1), (-1), 1); + SpaceWar.SpacePanel var17 = new SpaceWar.SpacePanel(); + java.awt.Color var18 = var17.getBackground(); + var17.repaint(); + java.awt.im.InputMethodRequests var20 = var17.getInputMethodRequests(); + java.awt.GraphicsConfiguration var21 = var17.getGraphicsConfiguration(); + var2.remove((java.awt.Component)var17); + var2.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", 0.0f, 1.0f); + SpaceWar.SpacePanel var27 = new SpaceWar.SpacePanel(); + float var28 = var27.getAlignmentX(); + var27.setVisible(false); + java.awt.Dimension var31 = var27.getPreferredSize(); + boolean var32 = var27.getVerifyInputWhenFocusTarget(); + SpaceWar.SpacePanel var33 = new SpaceWar.SpacePanel(); + var33.setName(""); + int var36 = var33.getX(); + SpaceWar.SpacePanel var37 = new SpaceWar.SpacePanel(); + float var38 = var37.getAlignmentX(); + var37.setVisible(false); + var37.nextFocus(); + SpaceWar.SpacePanel var42 = new SpaceWar.SpacePanel(); + float var43 = var42.getAlignmentX(); + var42.setVisible(false); + SpaceWar.SpacePanel var46 = new SpaceWar.SpacePanel(); + java.awt.Color var47 = var46.getBackground(); + var42.setForeground(var47); + var37.setBackground(var47); + var33.setBackground(var47); + var2.add((java.awt.Component)var27, (java.lang.Object)var33); + var33.transferFocus(); + java.util.Locale var53 = var33.getLocale(); + java.awt.ComponentOrientation var54 = var33.getComponentOrientation(); + SpaceWar.SpacePanel var55 = new SpaceWar.SpacePanel(); + float var56 = var55.getAlignmentX(); + boolean var57 = var55.hasFocus(); + java.awt.Insets var58 = var55.getInsets(); + java.awt.Rectangle var59 = var55.bounds(); + java.awt.event.MouseMotionListener[] var60 = var55.getMouseMotionListeners(); + boolean var61 = var55.isMaximumSizeSet(); + java.awt.LayoutManager var62 = var55.getLayout(); + boolean var63 = var55.isPreferredSizeSet(); + SpaceWar.SpacePanel var64 = new SpaceWar.SpacePanel(); + float var65 = var64.getAlignmentX(); + boolean var66 = var64.hasFocus(); + boolean var67 = var64.isPreferredSizeSet(); + var64.firePropertyChange("", (short)1, (short)0); + boolean var72 = var64.isMaximumSizeSet(); + java.awt.peer.ComponentPeer var73 = var64.getPeer(); + java.awt.ComponentOrientation var74 = var64.getComponentOrientation(); + var55.applyComponentOrientation(var74); + var33.setComponentOrientation(var74); + boolean var77 = var33.isMinimumSizeSet(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertNull(var21); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var28 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var31); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var32 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var36 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var38 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var43 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var47); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var53); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var54); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var56 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var57 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var58); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var59); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var60); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var61 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var62); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var63 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var65 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var66 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var67 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var72 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var73); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var74); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var77 == false); + + } + + public void test219() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test219"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.updateUI(); + var0.enableInputMethods(true); + java.awt.Point var8 = var0.location(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.setVisible(false); + var9.nextFocus(); + java.awt.Component var14 = var0.add((java.awt.Component)var9); + boolean var15 = var0.isRequestFocusEnabled(); + var0.setFocusCycleRoot(false); + SpaceWar.SpacePanel var18 = new SpaceWar.SpacePanel(); + float var19 = var18.getAlignmentX(); + var18.setVisible(false); + var18.nextFocus(); + var18.repaint(1L); + SpaceWar.SpacePanel var25 = new SpaceWar.SpacePanel(); + float var26 = var25.getAlignmentX(); + var25.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var31 = new SpaceWar.SpacePanel(); + float var32 = var31.getAlignmentX(); + var31.setVisible(false); + java.awt.Dimension var35 = var31.getPreferredSize(); + var25.setMaximumSize(var35); + var18.setPreferredSize(var35); + javax.swing.plaf.PanelUI var38 = var18.getUI(); + SpaceWar.SpacePanel var39 = new SpaceWar.SpacePanel(); + float var40 = var39.getAlignmentX(); + var39.setVisible(false); + var39.nextFocus(); + var39.reshape((-1), 1, (-1), 10); + var39.disable(); + java.awt.LayoutManager var50 = var39.getLayout(); + java.awt.Container var51 = var39.getParent(); + java.lang.String var52 = var39.getUIClassID(); + SpaceWar.Enemy var55 = new SpaceWar.Enemy(0, 10); + var18.add((java.awt.Component)var39, (java.lang.Object)10); + javax.swing.JToolTip var57 = var18.createToolTip(); + java.awt.Component var58 = var0.add((java.awt.Component)var57); + var0.setVisible(true); + var0.firePropertyChange("SpaceWar.SpacePanel[,-1,1,-1x10,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var32 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var35); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var38); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var40 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var50); + + // Regression assertion (captures the current behavior of the code) + assertNull(var51); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var52 + "' != '" + "PanelUI"+ "'", var52.equals("PanelUI")); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var57); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var58); + + } + + public void test220() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test220"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.reshape((-1), 1, (-1), 10); + var0.disable(); + boolean var11 = var0.isFocusable(); + int var12 = var0.getHeight(); + javax.swing.InputVerifier var13 = var0.getInputVerifier(); + var0.doLayout(); + var0.transferFocus(); + boolean var16 = var0.getInheritsPopupMenu(); + java.awt.Dimension var17 = var0.getPreferredSize(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == 10); + + // Regression assertion (captures the current behavior of the code) + assertNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var17); + + } + + public void test221() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test221"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + java.awt.Dimension var4 = var0.getPreferredSize(); + java.awt.Toolkit var5 = var0.getToolkit(); + boolean var6 = var0.isFocusable(); + javax.swing.KeyStroke[] var7 = var0.getRegisteredKeyStrokes(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + SpaceWar.SpacePanel var10 = new SpaceWar.SpacePanel(); + float var11 = var10.getAlignmentX(); + var10.setVisible(false); + java.awt.Dimension var14 = var10.getPreferredSize(); + boolean var15 = var10.getVerifyInputWhenFocusTarget(); + java.awt.Component var18 = var10.findComponentAt(10, 1); + var8.addKeyListener((java.awt.event.KeyListener)var10); + var10.repaint(100, (-1), (-1), 1); + boolean var25 = var0.isAncestorOf((java.awt.Component)var10); + var10.setAutoscrolls(false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var4); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == false); + + } + + public void test222() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test222"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var6 = var0.getMouseListeners(); + int var7 = var0.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var8 = var0.getInputMethodRequests(); + var0.setToolTipText(""); + var0.enable(); + java.awt.GraphicsConfiguration var12 = var0.getGraphicsConfiguration(); + boolean var13 = var0.isForegroundSet(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == true); + + } + + public void test223() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test223"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var6 = var0.getMouseListeners(); + java.awt.Dimension var7 = var0.getPreferredSize(); + java.util.Locale var8 = var0.getLocale(); + var0.setFocusable(true); + java.lang.String var11 = var0.getToolTipText(); + var0.firePropertyChange("SpaceWar.SpacePanel[,499,2,499x500,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", (short)100, (short)100); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertNull(var11); + + } + + public void test224() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test224"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.reshape((-1), 1, (-1), 10); + var0.disable(); + boolean var11 = var0.isFocusable(); + SpaceWar.SpacePanel var12 = new SpaceWar.SpacePanel(); + float var13 = var12.getAlignmentX(); + var12.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var18 = var12.getUI(); + java.awt.im.InputMethodRequests var19 = var12.getInputMethodRequests(); + SpaceWar.SpacePanel var20 = new SpaceWar.SpacePanel(); + float var21 = var20.getAlignmentX(); + var20.setVisible(false); + var20.nextFocus(); + var20.updateUI(); + var20.enableInputMethods(true); + var20.setSize((-1), 1); + SpaceWar.SpacePanel var31 = new SpaceWar.SpacePanel(); + var31.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var12.add((java.awt.Component)var20, (java.lang.Object)"SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + java.awt.event.KeyListener[] var37 = var12.getKeyListeners(); + java.awt.FocusTraversalPolicy var38 = var12.getFocusTraversalPolicy(); + SpaceWar.SpacePanel var39 = new SpaceWar.SpacePanel(); + var39.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + java.awt.Toolkit var44 = var39.getToolkit(); + var0.add((java.awt.Component)var12, (java.lang.Object)var39); + var0.layout(); + boolean var47 = var0.isVisible(); + var0.firePropertyChange("PanelUI", (byte)100, (byte)10); + java.awt.image.VolatileImage var54 = var0.createVolatileImage(1, 2); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var37); + + // Regression assertion (captures the current behavior of the code) + assertNull(var38); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var44); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var47 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var54); + + } + + public void test225() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test225"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.updateUI(); + java.util.Locale var6 = var0.getLocale(); + var0.paintImmediately(25, 100, 3, 0); + boolean var12 = var0.isCursorSet(); + boolean var13 = var0.isCursorSet(); + boolean var14 = var0.getFocusTraversalKeysEnabled(); + var0.setVerifyInputWhenFocusTarget(false); + java.awt.event.HierarchyListener[] var17 = var0.getHierarchyListeners(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var17); + + } + + public void test226() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test226"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + boolean var2 = var0.hasFocus(); + java.awt.Insets var3 = var0.getInsets(); + boolean var4 = var0.isFocusTraversalPolicyProvider(); + java.beans.PropertyChangeListener[] var6 = var0.getPropertyChangeListeners("hi!"); + boolean var7 = var0.getIgnoreRepaint(); + boolean var8 = var0.isRequestFocusEnabled(); + boolean var9 = var0.isManagingFocus(); + boolean var10 = var0.isVisible(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var2 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == true); + + } + + public void test227() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test227"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.setInheritsPopupMenu(false); + var0.setFocusTraversalPolicyProvider(true); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + boolean var12 = var8.isDoubleBuffered(); + var8.list(); + SpaceWar.SpacePanel var14 = new SpaceWar.SpacePanel(); + float var15 = var14.getAlignmentX(); + var14.setVisible(false); + boolean var18 = var14.isDoubleBuffered(); + java.awt.dnd.DropTarget var19 = var14.getDropTarget(); + var14.show(false); + java.awt.Rectangle var22 = var14.getVisibleRect(); + java.awt.Rectangle var23 = var8.getBounds(var22); + javax.swing.JToolTip var24 = var8.createToolTip(); + var0.removeKeyListener((java.awt.event.KeyListener)var8); + var0.setFocusTraversalKeysEnabled(true); + javax.swing.KeyStroke[] var28 = var0.getRegisteredKeyStrokes(); + SpaceWar.SpacePanel var29 = new SpaceWar.SpacePanel(); + float var30 = var29.getAlignmentX(); + var29.setVisible(false); + java.awt.Dimension var33 = var29.getPreferredSize(); + java.awt.Toolkit var34 = var29.getToolkit(); + boolean var35 = var29.isFocusable(); + javax.swing.KeyStroke[] var36 = var29.getRegisteredKeyStrokes(); + java.awt.Component var39 = var29.getComponentAt(100, 100); + java.lang.Object var40 = var29.getTreeLock(); + boolean var43 = var29.inside(400, 0); + java.awt.event.MouseWheelListener[] var44 = var29.getMouseWheelListeners(); + var29.enableInputMethods(true); + boolean var47 = var0.isAncestorOf((java.awt.Component)var29); + boolean var48 = var0.isEnabled(); + SpaceWar.SpacePanel var49 = new SpaceWar.SpacePanel(); + float var50 = var49.getAlignmentX(); + var49.setVisible(false); + java.awt.Dimension var53 = var49.getPreferredSize(); + java.awt.Toolkit var54 = var49.getToolkit(); + boolean var55 = var49.isFocusable(); + javax.swing.KeyStroke[] var56 = var49.getRegisteredKeyStrokes(); + SpaceWar.SpacePanel var57 = new SpaceWar.SpacePanel(); + float var58 = var57.getAlignmentX(); + var57.setVisible(false); + var57.nextFocus(); + SpaceWar.SpacePanel var62 = new SpaceWar.SpacePanel(); + float var63 = var62.getAlignmentX(); + var62.setVisible(false); + SpaceWar.SpacePanel var66 = new SpaceWar.SpacePanel(); + java.awt.Color var67 = var66.getBackground(); + var62.setForeground(var67); + var57.setBackground(var67); + var49.setBackground(var67); + SpaceWar.SpacePanel var71 = new SpaceWar.SpacePanel(); + float var72 = var71.getAlignmentX(); + var71.setVisible(false); + boolean var75 = var71.isDoubleBuffered(); + var71.list(); + var71.setAutoscrolls(false); + var49.removeKeyListener((java.awt.event.KeyListener)var71); + boolean var80 = var0.isAncestorOf((java.awt.Component)var71); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var23); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var28); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var30 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var33); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var34); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var35 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var36); + + // Regression assertion (captures the current behavior of the code) + assertNull(var39); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var40); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var43 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var44); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var47 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var48 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var50 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var53); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var54); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var55 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var56); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var58 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var63 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var67); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var72 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var75 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var80 == false); + + } + + public void test228() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test228"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + var0.show(false); + java.awt.Rectangle var8 = var0.getVisibleRect(); + java.awt.image.BufferedImage var10 = var0.loadImg("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + java.awt.ComponentOrientation var11 = var0.getComponentOrientation(); + boolean var12 = var0.isPaintingTile(); + boolean var13 = var0.isOptimizedDrawingEnabled(); + java.lang.String var14 = var0.getUIClassID(); + javax.swing.plaf.PanelUI var15 = var0.getUI(); + boolean var16 = var0.isFontSet(); + java.awt.Container var17 = var0.getTopLevelAncestor(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var14 + "' != '" + "PanelUI"+ "'", var14.equals("PanelUI")); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + } + + public void test229() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test229"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + java.awt.Dimension var4 = var0.getPreferredSize(); + java.awt.Toolkit var5 = var0.getToolkit(); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + var6.setName(""); + int var9 = var6.getX(); + SpaceWar.SpacePanel var10 = new SpaceWar.SpacePanel(); + float var11 = var10.getAlignmentX(); + var10.setVisible(false); + var10.nextFocus(); + SpaceWar.SpacePanel var15 = new SpaceWar.SpacePanel(); + float var16 = var15.getAlignmentX(); + var15.setVisible(false); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + java.awt.Color var20 = var19.getBackground(); + var15.setForeground(var20); + var10.setBackground(var20); + var6.setBackground(var20); + var0.setForeground(var20); + SpaceWar.SpacePanel var25 = new SpaceWar.SpacePanel(); + float var26 = var25.getAlignmentX(); + var25.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var31 = new SpaceWar.SpacePanel(); + float var32 = var31.getAlignmentX(); + var31.setVisible(false); + java.awt.Dimension var35 = var31.getPreferredSize(); + var25.setMaximumSize(var35); + boolean var37 = var25.getVerifyInputWhenFocusTarget(); + javax.accessibility.AccessibleContext var38 = var25.getAccessibleContext(); + boolean var39 = var25.isDoubleBuffered(); + java.awt.Rectangle var40 = var25.getVisibleRect(); + var0.scrollRectToVisible(var40); + SpaceWar.SpacePanel var42 = new SpaceWar.SpacePanel(); + float var43 = var42.getAlignmentX(); + var42.setVisible(false); + java.awt.Dimension var46 = var42.getPreferredSize(); + java.awt.Toolkit var47 = var42.getToolkit(); + SpaceWar.SpacePanel var48 = new SpaceWar.SpacePanel(); + var48.setName(""); + int var51 = var48.getX(); + SpaceWar.SpacePanel var52 = new SpaceWar.SpacePanel(); + float var53 = var52.getAlignmentX(); + var52.setVisible(false); + var52.nextFocus(); + SpaceWar.SpacePanel var57 = new SpaceWar.SpacePanel(); + float var58 = var57.getAlignmentX(); + var57.setVisible(false); + SpaceWar.SpacePanel var61 = new SpaceWar.SpacePanel(); + java.awt.Color var62 = var61.getBackground(); + var57.setForeground(var62); + var52.setBackground(var62); + var48.setBackground(var62); + var42.setForeground(var62); + SpaceWar.SpacePanel var67 = new SpaceWar.SpacePanel(); + float var68 = var67.getAlignmentX(); + var67.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var73 = new SpaceWar.SpacePanel(); + float var74 = var73.getAlignmentX(); + var73.setVisible(false); + java.awt.Dimension var77 = var73.getPreferredSize(); + var67.setMaximumSize(var77); + boolean var79 = var67.getVerifyInputWhenFocusTarget(); + javax.accessibility.AccessibleContext var80 = var67.getAccessibleContext(); + boolean var81 = var67.isDoubleBuffered(); + java.awt.Rectangle var82 = var67.getVisibleRect(); + var42.scrollRectToVisible(var82); + var0.removeKeyListener((java.awt.event.KeyListener)var42); + javax.swing.InputVerifier var85 = var0.getInputVerifier(); + var0.firePropertyChange("SpaceWar.SpacePanel[,-1,1,-1x10,invalid,hidden,disabled,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", (-1L), (-1L)); + var0.removeAll(); + boolean var91 = var0.requestFocusInWindow(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var4); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var32 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var35); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var38); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var39 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var40); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var43 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var46); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var47); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var51 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var53 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var58 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var62); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var68 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var74 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var77); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var79 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var80); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var81 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var82); + + // Regression assertion (captures the current behavior of the code) + assertNull(var85); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var91 == false); + + } + + public void test230() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test230"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + var0.setRequestFocusEnabled(false); + var0.reshape(100, 0, 100, 0); + javax.swing.event.AncestorListener[] var10 = var0.getAncestorListeners(); + var0.setName("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=1.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + boolean var13 = var0.isForegroundSet(); + java.awt.Component var16 = var0.locate(505, 2); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var16); + + } + + public void test231() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test231"); + + + SpaceWar.Enemy var2 = new SpaceWar.Enemy(0, 10); + var2.update(); + double var4 = var2.getX(); + int var5 = var2.getRank(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 288.5417342615378d); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == 10); + + } + + public void test232() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test232"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + java.awt.Dimension var4 = var0.getPreferredSize(); + java.awt.Toolkit var5 = var0.getToolkit(); + boolean var6 = var0.isFocusable(); + javax.swing.KeyStroke[] var7 = var0.getRegisteredKeyStrokes(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + var8.nextFocus(); + SpaceWar.SpacePanel var13 = new SpaceWar.SpacePanel(); + float var14 = var13.getAlignmentX(); + var13.setVisible(false); + SpaceWar.SpacePanel var17 = new SpaceWar.SpacePanel(); + java.awt.Color var18 = var17.getBackground(); + var13.setForeground(var18); + var8.setBackground(var18); + var0.setBackground(var18); + SpaceWar.SpacePanel var22 = new SpaceWar.SpacePanel(); + float var23 = var22.getAlignmentX(); + var22.setVisible(false); + boolean var26 = var22.isDoubleBuffered(); + var22.list(); + var22.setAutoscrolls(false); + var0.removeKeyListener((java.awt.event.KeyListener)var22); + java.awt.event.MouseListener[] var31 = var22.getMouseListeners(); + javax.swing.plaf.PanelUI var32 = var22.getUI(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var4); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var31); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var32); + + } + + public void test233() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test233"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + var0.setRequestFocusEnabled(false); + var0.reshape(100, 0, 100, 0); + var0.requestFocus(); + var0.firePropertyChange("hi!", '4', ' '); + java.awt.Point var15 = var0.getLocation(); + java.awt.Dimension var16 = var0.size(); + var0.setFocusTraversalPolicyProvider(true); + boolean var19 = var0.isPreferredSizeSet(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == true); + + } + + public void test234() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test234"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + var0.show(false); + boolean var8 = var0.isPaintingForPrint(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var15 = var9.getMouseListeners(); + int var16 = var9.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var17 = var9.getInputMethodRequests(); + var0.addKeyListener((java.awt.event.KeyListener)var9); + boolean var19 = var0.isDisplayable(); + boolean var20 = var0.isOpaque(); + var0.setEnabled(false); + java.awt.Color var23 = var0.getBackground(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var23); + + } + + public void test235() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test235"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.reshape((-1), 1, (-1), 10); + var0.disable(); + boolean var11 = var0.isFocusable(); + SpaceWar.SpacePanel var12 = new SpaceWar.SpacePanel(); + float var13 = var12.getAlignmentX(); + var12.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var18 = var12.getUI(); + java.awt.im.InputMethodRequests var19 = var12.getInputMethodRequests(); + SpaceWar.SpacePanel var20 = new SpaceWar.SpacePanel(); + float var21 = var20.getAlignmentX(); + var20.setVisible(false); + var20.nextFocus(); + var20.updateUI(); + var20.enableInputMethods(true); + var20.setSize((-1), 1); + SpaceWar.SpacePanel var31 = new SpaceWar.SpacePanel(); + var31.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var12.add((java.awt.Component)var20, (java.lang.Object)"SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + java.awt.event.KeyListener[] var37 = var12.getKeyListeners(); + java.awt.FocusTraversalPolicy var38 = var12.getFocusTraversalPolicy(); + SpaceWar.SpacePanel var39 = new SpaceWar.SpacePanel(); + var39.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + java.awt.Toolkit var44 = var39.getToolkit(); + var0.add((java.awt.Component)var12, (java.lang.Object)var39); + var12.transferFocusDownCycle(); + boolean var47 = var12.isVisible(); + boolean var48 = var12.getFocusTraversalKeysEnabled(); + var12.setAlignmentX(100.0f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var37); + + // Regression assertion (captures the current behavior of the code) + assertNull(var38); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var44); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var47 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var48 == true); + + } + + public void test236() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test236"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.requestFocus(); + boolean var6 = var0.isBackgroundSet(); + SpaceWar.SpacePanel var7 = new SpaceWar.SpacePanel(); + java.awt.Color var8 = var7.getBackground(); + var7.repaint(); + var7.setRequestFocusEnabled(false); + var7.reshape(100, 0, 100, 0); + SpaceWar.SpacePanel var17 = new SpaceWar.SpacePanel(); + float var18 = var17.getAlignmentX(); + var17.setVisible(false); + var17.setInheritsPopupMenu(false); + boolean var23 = var17.isDoubleBuffered(); + SpaceWar.SpacePanel var24 = new SpaceWar.SpacePanel(); + float var25 = var24.getAlignmentX(); + var24.setVisible(false); + var24.nextFocus(); + var24.reshape((-1), 1, (-1), 10); + var24.disable(); + java.awt.LayoutManager var35 = var24.getLayout(); + var17.setLayout(var35); + var0.add((java.awt.Component)var7, (java.lang.Object)var35); + var0.setVerifyInputWhenFocusTarget(true); + java.awt.event.HierarchyListener[] var40 = var0.getHierarchyListeners(); + SpaceWar.SpacePanel var41 = new SpaceWar.SpacePanel(); + float var42 = var41.getAlignmentX(); + var41.setVisible(false); + boolean var45 = var41.isDoubleBuffered(); + var41.enable(false); + boolean var48 = var41.getFocusTraversalKeysEnabled(); + SpaceWar.SpacePanel var49 = new SpaceWar.SpacePanel(); + float var50 = var49.getAlignmentX(); + var49.setVisible(false); + java.awt.Dimension var53 = var49.getPreferredSize(); + java.awt.Toolkit var54 = var49.getToolkit(); + boolean var55 = var49.isFocusable(); + javax.swing.KeyStroke[] var56 = var49.getRegisteredKeyStrokes(); + SpaceWar.SpacePanel var57 = new SpaceWar.SpacePanel(); + float var58 = var57.getAlignmentX(); + SpaceWar.SpacePanel var59 = new SpaceWar.SpacePanel(); + float var60 = var59.getAlignmentX(); + var59.setVisible(false); + java.awt.Dimension var63 = var59.getPreferredSize(); + boolean var64 = var59.getVerifyInputWhenFocusTarget(); + java.awt.Component var67 = var59.findComponentAt(10, 1); + var57.addKeyListener((java.awt.event.KeyListener)var59); + var59.repaint(100, (-1), (-1), 1); + boolean var74 = var49.isAncestorOf((java.awt.Component)var59); + var41.addKeyListener((java.awt.event.KeyListener)var59); + var59.hide(); + java.awt.event.MouseWheelListener[] var77 = var59.getMouseWheelListeners(); + var59.setBounds(24, 400, (-1), 2); + java.awt.ComponentOrientation var83 = var59.getComponentOrientation(); + var0.setComponentOrientation(var83); + javax.swing.InputMap var86 = var0.getInputMap(2); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var35); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var40); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var42 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var45 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var48 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var50 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var53); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var54); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var55 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var56); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var58 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var60 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var63); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var64 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var67); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var74 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var77); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var83); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var86); + + } + + public void test237() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test237"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + var0.list(); + float var6 = var0.getAlignmentY(); + boolean var7 = var0.isOpaque(); + var0.resetKeyboardActions(); + var0.show(); + boolean var10 = var0.requestFocusInWindow(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == false); + + } + + public void test238() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test238"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + SpaceWar.SpacePanel var4 = new SpaceWar.SpacePanel(); + java.awt.Color var5 = var4.getBackground(); + var0.setForeground(var5); + SpaceWar.SpacePanel var7 = new SpaceWar.SpacePanel(); + float var8 = var7.getAlignmentX(); + var7.setVisible(false); + boolean var11 = var7.isDoubleBuffered(); + java.awt.dnd.DropTarget var12 = var7.getDropTarget(); + var7.show(false); + java.awt.Rectangle var15 = var7.getVisibleRect(); + var0.repaint(var15); + java.awt.FocusTraversalPolicy var17 = var0.getFocusTraversalPolicy(); + java.awt.im.InputMethodRequests var18 = var0.getInputMethodRequests(); + var0.layout(); + var0.setDebugGraphicsOptions(10); + SpaceWar.SpacePanel var22 = new SpaceWar.SpacePanel(); + float var23 = var22.getAlignmentX(); + var22.setVisible(false); + var22.nextFocus(); + var22.reshape((-1), 1, (-1), 10); + SpaceWar.SpacePanel var32 = new SpaceWar.SpacePanel(); + java.awt.Color var33 = var32.getBackground(); + var32.repaint(); + var32.setRequestFocusEnabled(false); + var32.reshape(100, 0, 100, 0); + java.awt.Component var42 = var22.add((java.awt.Component)var32); + SpaceWar.SpacePanel var43 = new SpaceWar.SpacePanel(); + var43.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + javax.swing.plaf.PanelUI var48 = var43.getUI(); + SpaceWar.SpacePanel var49 = new SpaceWar.SpacePanel(); + float var50 = var49.getAlignmentX(); + var49.setVisible(false); + var49.nextFocus(); + var49.repaint(1L); + SpaceWar.SpacePanel var56 = new SpaceWar.SpacePanel(); + float var57 = var56.getAlignmentX(); + var56.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var62 = new SpaceWar.SpacePanel(); + float var63 = var62.getAlignmentX(); + var62.setVisible(false); + java.awt.Dimension var66 = var62.getPreferredSize(); + var56.setMaximumSize(var66); + var49.setPreferredSize(var66); + var43.setMaximumSize(var66); + java.awt.Dimension var70 = var32.getSize(var66); + var0.setSize(var70); + var0.repaint(1L); + var0.setAlignmentX(100.0f); + SpaceWar.SpacePanel var76 = new SpaceWar.SpacePanel(); + float var77 = var76.getAlignmentX(); + var76.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var82 = var76.getMouseListeners(); + java.awt.Dimension var83 = var76.getPreferredSize(); + java.util.Locale var84 = var76.getLocale(); + java.awt.Font var85 = var76.getFont(); + java.awt.Color var86 = var76.getForeground(); + var0.setBackground(var86); + var0.resetKeyboardActions(); + java.awt.event.HierarchyBoundsListener[] var89 = var0.getHierarchyBoundsListeners(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var33); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var42); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var48); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var50 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var57 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var63 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var66); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var70); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var77 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var82); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var83); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var84); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var85); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var86); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var89); + + } + + public void test239() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test239"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + boolean var6 = var0.isFocusOwner(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + java.awt.Dimension var12 = var8.getPreferredSize(); + java.awt.Toolkit var13 = var8.getToolkit(); + SpaceWar.SpacePanel var14 = new SpaceWar.SpacePanel(); + var14.setName(""); + int var17 = var14.getX(); + SpaceWar.SpacePanel var18 = new SpaceWar.SpacePanel(); + float var19 = var18.getAlignmentX(); + var18.setVisible(false); + var18.nextFocus(); + SpaceWar.SpacePanel var23 = new SpaceWar.SpacePanel(); + float var24 = var23.getAlignmentX(); + var23.setVisible(false); + SpaceWar.SpacePanel var27 = new SpaceWar.SpacePanel(); + java.awt.Color var28 = var27.getBackground(); + var23.setForeground(var28); + var18.setBackground(var28); + var14.setBackground(var28); + var8.setForeground(var28); + var0.putClientProperty((java.lang.Object)(byte)100, (java.lang.Object)var28); + boolean var34 = var0.isEnabled(); + java.awt.event.MouseWheelListener[] var35 = var0.getMouseWheelListeners(); + boolean var36 = var0.getVerifyInputWhenFocusTarget(); + boolean var37 = var0.isManagingFocus(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var24 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var28); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var34 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var35); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var36 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == false); + + } + + public void test240() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test240"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + java.awt.im.InputMethodRequests var3 = var0.getInputMethodRequests(); + int var4 = var0.countComponents(); + java.awt.event.MouseMotionListener[] var5 = var0.getMouseMotionListeners(); + java.awt.Dimension var6 = var0.size(); + boolean var7 = var0.isMinimumSizeSet(); + boolean var8 = var0.requestFocusInWindow(); + boolean var9 = var0.getFocusTraversalKeysEnabled(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == true); + + } + + public void test241() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test241"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.setInheritsPopupMenu(false); + boolean var6 = var0.isMinimumSizeSet(); + java.awt.FocusTraversalPolicy var7 = var0.getFocusTraversalPolicy(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.setVisible(false); + var9.setInheritsPopupMenu(false); + var9.setFocusTraversalPolicyProvider(true); + SpaceWar.SpacePanel var17 = new SpaceWar.SpacePanel(); + float var18 = var17.getAlignmentX(); + var17.setVisible(false); + boolean var21 = var17.isDoubleBuffered(); + var17.list(); + SpaceWar.SpacePanel var23 = new SpaceWar.SpacePanel(); + float var24 = var23.getAlignmentX(); + var23.setVisible(false); + boolean var27 = var23.isDoubleBuffered(); + java.awt.dnd.DropTarget var28 = var23.getDropTarget(); + var23.show(false); + java.awt.Rectangle var31 = var23.getVisibleRect(); + java.awt.Rectangle var32 = var17.getBounds(var31); + javax.swing.JToolTip var33 = var17.createToolTip(); + var9.removeKeyListener((java.awt.event.KeyListener)var17); + var9.setFocusTraversalKeysEnabled(true); + javax.swing.KeyStroke[] var37 = var9.getRegisteredKeyStrokes(); + SpaceWar.SpacePanel var38 = new SpaceWar.SpacePanel(); + float var39 = var38.getAlignmentX(); + var38.setVisible(false); + java.awt.Dimension var42 = var38.getPreferredSize(); + java.awt.Toolkit var43 = var38.getToolkit(); + boolean var44 = var38.isFocusable(); + javax.swing.KeyStroke[] var45 = var38.getRegisteredKeyStrokes(); + java.awt.Component var48 = var38.getComponentAt(100, 100); + java.lang.Object var49 = var38.getTreeLock(); + boolean var52 = var38.inside(400, 0); + java.awt.event.MouseWheelListener[] var53 = var38.getMouseWheelListeners(); + var38.enableInputMethods(true); + boolean var56 = var9.isAncestorOf((java.awt.Component)var38); + java.awt.Component var57 = var0.add("SpaceWar.SpacePanel[,-1,1,-1x10,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", (java.awt.Component)var38); + boolean var58 = var38.isValidateRoot(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var24 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var28); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var31); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var32); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var33); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var37); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var39 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var42); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var43); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var44 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var45); + + // Regression assertion (captures the current behavior of the code) + assertNull(var48); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var49); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var52 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var53); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var56 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var57); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var58 == false); + + } + + public void test242() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test242"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + var0.show(false); + boolean var8 = var0.isPaintingForPrint(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var15 = var9.getMouseListeners(); + int var16 = var9.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var17 = var9.getInputMethodRequests(); + var0.addKeyListener((java.awt.event.KeyListener)var9); + var9.removeNotify(); + SpaceWar.SpacePanel var20 = new SpaceWar.SpacePanel(); + java.awt.Color var21 = var20.getBackground(); + var20.repaint(); + var20.setRequestFocusEnabled(false); + var20.reshape(100, 0, 100, 0); + var20.requestFocus(); + SpaceWar.SpacePanel var31 = new SpaceWar.SpacePanel(); + float var32 = var31.getAlignmentX(); + var31.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var37 = var31.getUI(); + java.awt.im.InputMethodRequests var38 = var31.getInputMethodRequests(); + SpaceWar.SpacePanel var39 = new SpaceWar.SpacePanel(); + float var40 = var39.getAlignmentX(); + var39.setVisible(false); + var39.nextFocus(); + var39.updateUI(); + var39.enableInputMethods(true); + var39.setSize((-1), 1); + SpaceWar.SpacePanel var50 = new SpaceWar.SpacePanel(); + var50.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var31.add((java.awt.Component)var39, (java.lang.Object)"SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + SpaceWar.SpacePanel var56 = new SpaceWar.SpacePanel(); + var56.setName(""); + java.awt.ComponentOrientation var59 = var56.getComponentOrientation(); + var31.applyComponentOrientation(var59); + var20.setComponentOrientation(var59); + var9.applyComponentOrientation(var59); + java.awt.Color var63 = var9.getForeground(); + SpaceWar.SpacePanel var65 = new SpaceWar.SpacePanel(); + java.awt.Color var66 = var65.getBackground(); + var65.repaint(); + java.awt.im.InputMethodRequests var68 = var65.getInputMethodRequests(); + java.awt.Component var69 = var9.add("", (java.awt.Component)var65); + java.awt.im.InputContext var70 = var69.getInputContext(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var21); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var32 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var37); + + // Regression assertion (captures the current behavior of the code) + assertNull(var38); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var40 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var59); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var63); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var66); + + // Regression assertion (captures the current behavior of the code) + assertNull(var68); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var69); + + // Regression assertion (captures the current behavior of the code) + assertNull(var70); + + } + + public void test243() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test243"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + var0.setRequestFocusEnabled(false); + var0.reshape(100, 0, 100, 0); + var0.requestFocus(); + java.awt.Rectangle var11 = var0.getVisibleRect(); + java.awt.Rectangle var12 = var0.getBounds(); + java.awt.im.InputMethodRequests var13 = var0.getInputMethodRequests(); + java.awt.Rectangle var14 = var0.getVisibleRect(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + } + + public void test244() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test244"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.updateUI(); + var0.enableInputMethods(true); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + boolean var10 = var8.hasFocus(); + java.awt.Insets var11 = var8.getInsets(); + java.awt.Insets var12 = var0.getInsets(var11); + javax.swing.JRootPane var13 = var0.getRootPane(); + int var14 = var0.getY(); + var0.setLocation(2, 2); + var0.removeNotify(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == 0); + + } + + public void test245() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test245"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.reshape((-1), 1, (-1), 10); + SpaceWar.SpacePanel var10 = new SpaceWar.SpacePanel(); + java.awt.Color var11 = var10.getBackground(); + var10.repaint(); + var10.setRequestFocusEnabled(false); + var10.reshape(100, 0, 100, 0); + java.awt.Component var20 = var0.add((java.awt.Component)var10); + SpaceWar.SpacePanel var21 = new SpaceWar.SpacePanel(); + var21.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + javax.swing.plaf.PanelUI var26 = var21.getUI(); + SpaceWar.SpacePanel var27 = new SpaceWar.SpacePanel(); + float var28 = var27.getAlignmentX(); + var27.setVisible(false); + var27.nextFocus(); + var27.repaint(1L); + SpaceWar.SpacePanel var34 = new SpaceWar.SpacePanel(); + float var35 = var34.getAlignmentX(); + var34.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var40 = new SpaceWar.SpacePanel(); + float var41 = var40.getAlignmentX(); + var40.setVisible(false); + java.awt.Dimension var44 = var40.getPreferredSize(); + var34.setMaximumSize(var44); + var27.setPreferredSize(var44); + var21.setMaximumSize(var44); + java.awt.Dimension var48 = var10.getSize(var44); + boolean var49 = var10.getIgnoreRepaint(); + java.lang.String var50 = var10.getUIClassID(); + var10.setName("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + var10.setVisible(false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var28 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var35 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var41 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var44); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var48); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var49 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var50 + "' != '" + "PanelUI"+ "'", var50.equals("PanelUI")); + + } + + public void test246() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test246"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + var0.setRequestFocusEnabled(false); + var0.setIgnoreRepaint(false); + java.lang.String var7 = var0.toString(); + java.awt.Color var8 = var0.getBackground(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.setVisible(false); + boolean var13 = var9.isDoubleBuffered(); + var9.list(); + SpaceWar.SpacePanel var15 = new SpaceWar.SpacePanel(); + float var16 = var15.getAlignmentX(); + var15.setVisible(false); + boolean var19 = var15.isDoubleBuffered(); + java.awt.dnd.DropTarget var20 = var15.getDropTarget(); + var15.show(false); + java.awt.Rectangle var23 = var15.getVisibleRect(); + java.awt.image.BufferedImage var25 = var15.loadImg("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + boolean var26 = var9.isAncestorOf((java.awt.Component)var15); + java.awt.GraphicsConfiguration var27 = var15.getGraphicsConfiguration(); + java.awt.Font var28 = var15.getFont(); + java.awt.Component var29 = var0.add((java.awt.Component)var15); + java.awt.event.MouseListener[] var30 = var29.getMouseListeners(); + java.awt.Image var33 = var29.createImage(99, 2); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var7 + "' != '" + "SpaceWar.SpacePanel[,0,0,0var7,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"+ "'", var7.equals("SpaceWar.SpacePanel[,0,0,0var7,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]")); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var23); + + // Regression assertion (captures the current behavior of the code) + assertNull(var25); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var27); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var28); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var29); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var30); + + // Regression assertion (captures the current behavior of the code) + assertNull(var33); + + } + + public void test247() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test247"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + java.awt.im.InputMethodRequests var3 = var0.getInputMethodRequests(); + var0.setDoubleBuffered(true); + var0.show(false); + var0.setAlignmentY(100.0f); + SpaceWar.SpacePanel var10 = new SpaceWar.SpacePanel(); + float var11 = var10.getAlignmentX(); + boolean var12 = var10.hasFocus(); + boolean var13 = var10.isPreferredSizeSet(); + var10.firePropertyChange("", (short)1, (short)0); + boolean var18 = var10.isMaximumSizeSet(); + var10.list(); + java.awt.Rectangle var20 = var10.getBounds(); + java.awt.Font var21 = var10.getFont(); + var0.setNextFocusableComponent((java.awt.Component)var10); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var21); + + } + + public void test248() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test248"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + var0.show(false); + boolean var8 = var0.isPaintingForPrint(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var15 = var9.getMouseListeners(); + int var16 = var9.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var17 = var9.getInputMethodRequests(); + var0.addKeyListener((java.awt.event.KeyListener)var9); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + float var20 = var19.getAlignmentX(); + var19.setVisible(false); + boolean var23 = var19.isDoubleBuffered(); + var19.list(); + float var25 = var19.getAlignmentY(); + boolean var26 = var9.isFocusCycleRoot((java.awt.Container)var19); + var19.firePropertyChange("", 1L, 1L); + var19.setAutoscrolls(false); + var19.reshape(0, 1, 100, 100); + SpaceWar.SpacePanel var38 = new SpaceWar.SpacePanel(); + float var39 = var38.getAlignmentX(); + var38.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var44 = var38.getUI(); + java.awt.im.InputMethodRequests var45 = var38.getInputMethodRequests(); + SpaceWar.SpacePanel var46 = new SpaceWar.SpacePanel(); + float var47 = var46.getAlignmentX(); + var46.setVisible(false); + var46.nextFocus(); + var46.updateUI(); + var46.enableInputMethods(true); + var46.setSize((-1), 1); + SpaceWar.SpacePanel var57 = new SpaceWar.SpacePanel(); + var57.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var38.add((java.awt.Component)var46, (java.lang.Object)"SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + java.awt.ComponentOrientation var63 = var46.getComponentOrientation(); + var19.setComponentOrientation(var63); + java.awt.FocusTraversalPolicy var65 = var19.getFocusTraversalPolicy(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var39 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var44); + + // Regression assertion (captures the current behavior of the code) + assertNull(var45); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var47 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var63); + + // Regression assertion (captures the current behavior of the code) + assertNull(var65); + + } + + public void test249() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test249"); + + + SpaceWar.Player var0 = new SpaceWar.Player(); + int var1 = var0.getR(); + var0.setUp(false); + int var4 = var0.getLives(); + var0.setScore(0); + int var7 = var0.getPowerLevel(); + int var8 = var0.getR(); + var0.setUp(false); + boolean var11 = var0.isDead(); + boolean var12 = var0.isRecovering(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 25); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 3); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 25); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == false); + + } + + public void test250() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test250"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + var0.list(); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + float var7 = var6.getAlignmentX(); + var6.setVisible(false); + boolean var10 = var6.isDoubleBuffered(); + java.awt.dnd.DropTarget var11 = var6.getDropTarget(); + var6.show(false); + java.awt.Rectangle var14 = var6.getVisibleRect(); + java.awt.Rectangle var15 = var0.getBounds(var14); + javax.swing.JToolTip var16 = var0.createToolTip(); + boolean var17 = var16.isBackgroundSet(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == true); + + } + + public void test251() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test251"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var6 = var0.getMouseListeners(); + int var7 = var0.getDebugGraphicsOptions(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + boolean var12 = var8.isDoubleBuffered(); + java.awt.dnd.DropTarget var13 = var8.getDropTarget(); + var8.show(false); + java.awt.Rectangle var16 = var8.getVisibleRect(); + var0.paintImmediately(var16); + int var18 = var0.getWidth(); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + java.awt.Color var20 = var19.getBackground(); + var19.repaint(); + var19.setRequestFocusEnabled(false); + var19.reshape(100, 0, 100, 0); + var19.requestFocus(); + var19.firePropertyChange("hi!", '4', ' '); + java.awt.Point var34 = var19.getLocation(); + java.awt.Dimension var35 = var19.size(); + java.awt.Image var38 = var19.createImage((-1), (-1)); + java.awt.event.ComponentListener[] var39 = var19.getComponentListeners(); + var19.setName("PanelUI"); + var19.requestFocus(); + java.awt.Rectangle var43 = var19.getVisibleRect(); + int var44 = var0.getComponentZOrder((java.awt.Component)var19); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var34); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var35); + + // Regression assertion (captures the current behavior of the code) + assertNull(var38); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var39); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var43); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var44 == (-1)); + + } + + public void test252() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test252"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + boolean var6 = var0.isFocusCycleRoot(); + SpaceWar.SpacePanel var7 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + java.awt.Color var9 = var8.getBackground(); + SpaceWar.SpacePanel var10 = new SpaceWar.SpacePanel(); + float var11 = var10.getAlignmentX(); + var10.setVisible(false); + var10.nextFocus(); + var10.updateUI(); + var10.enableInputMethods(true); + var7.add((java.awt.Component)var8, (java.lang.Object)true); + java.awt.Dimension var19 = var8.getPreferredSize(); + var0.setSize(var19); + var0.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", (-1), 10); + SpaceWar.SpacePanel var25 = new SpaceWar.SpacePanel(); + float var26 = var25.getAlignmentX(); + var25.setVisible(false); + var25.nextFocus(); + var25.repaint(1L); + SpaceWar.SpacePanel var32 = new SpaceWar.SpacePanel(); + float var33 = var32.getAlignmentX(); + var32.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var38 = new SpaceWar.SpacePanel(); + float var39 = var38.getAlignmentX(); + var38.setVisible(false); + java.awt.Dimension var42 = var38.getPreferredSize(); + var32.setMaximumSize(var42); + var25.setPreferredSize(var42); + var0.setSize(var42); + javax.swing.plaf.PanelUI var46 = var0.getUI(); + java.awt.Dimension var47 = var0.size(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var9); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var33 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var39 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var42); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var46); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var47); + + } + + public void test253() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test253"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var1 = new SpaceWar.SpacePanel(); + java.awt.Color var2 = var1.getBackground(); + SpaceWar.SpacePanel var3 = new SpaceWar.SpacePanel(); + float var4 = var3.getAlignmentX(); + var3.setVisible(false); + var3.nextFocus(); + var3.updateUI(); + var3.enableInputMethods(true); + var0.add((java.awt.Component)var1, (java.lang.Object)true); + java.awt.Image var14 = var1.createImage(1, (-1)); + java.awt.event.MouseListener[] var15 = var1.getMouseListeners(); + java.awt.Color var16 = var1.getBackground(); + boolean var17 = var1.getIgnoreRepaint(); + var1.enable(); + var1.show(false); + var1.firePropertyChange("PanelUI", false, false); + java.awt.ComponentOrientation var25 = var1.getComponentOrientation(); + boolean var26 = var1.isFocusTraversalPolicyProvider(); + java.awt.Rectangle var27 = var1.getBounds(); + var1.revalidate(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var2); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var25); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var27); + + } + + public void test254() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test254"); + + + SpaceWar.Text var4 = new SpaceWar.Text(282.8681995802876d, 261.2028294988706d, 1L, "SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=8,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + + } + + public void test255() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test255"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + java.awt.Dimension var4 = var0.getPreferredSize(); + java.awt.Toolkit var5 = var0.getToolkit(); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + var6.setName(""); + int var9 = var6.getX(); + SpaceWar.SpacePanel var10 = new SpaceWar.SpacePanel(); + float var11 = var10.getAlignmentX(); + var10.setVisible(false); + var10.nextFocus(); + SpaceWar.SpacePanel var15 = new SpaceWar.SpacePanel(); + float var16 = var15.getAlignmentX(); + var15.setVisible(false); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + java.awt.Color var20 = var19.getBackground(); + var15.setForeground(var20); + var10.setBackground(var20); + var6.setBackground(var20); + var0.setForeground(var20); + SpaceWar.SpacePanel var25 = new SpaceWar.SpacePanel(); + float var26 = var25.getAlignmentX(); + var25.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var31 = new SpaceWar.SpacePanel(); + float var32 = var31.getAlignmentX(); + var31.setVisible(false); + java.awt.Dimension var35 = var31.getPreferredSize(); + var25.setMaximumSize(var35); + boolean var37 = var25.getVerifyInputWhenFocusTarget(); + javax.accessibility.AccessibleContext var38 = var25.getAccessibleContext(); + boolean var39 = var25.isDoubleBuffered(); + java.awt.Rectangle var40 = var25.getVisibleRect(); + var0.scrollRectToVisible(var40); + var0.setDoubleBuffered(true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var4); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var32 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var35); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var38); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var39 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var40); + + } + + public void test256() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test256"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + java.awt.Dimension var4 = var0.getPreferredSize(); + boolean var5 = var0.getVerifyInputWhenFocusTarget(); + java.awt.Component var8 = var0.findComponentAt(10, 1); + boolean var9 = var0.requestDefaultFocus(); + var0.setVerifyInputWhenFocusTarget(true); + SpaceWar.SpacePanel var12 = new SpaceWar.SpacePanel(); + float var13 = var12.getAlignmentX(); + var12.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var18 = new SpaceWar.SpacePanel(); + float var19 = var18.getAlignmentX(); + var18.setVisible(false); + java.awt.Dimension var22 = var18.getPreferredSize(); + var12.setMaximumSize(var22); + boolean var24 = var12.getVerifyInputWhenFocusTarget(); + boolean var25 = var12.isFontSet(); + SpaceWar.SpacePanel var26 = new SpaceWar.SpacePanel(); + float var27 = var26.getAlignmentX(); + SpaceWar.SpacePanel var28 = new SpaceWar.SpacePanel(); + float var29 = var28.getAlignmentX(); + var28.setVisible(false); + java.awt.Dimension var32 = var28.getPreferredSize(); + boolean var33 = var28.getVerifyInputWhenFocusTarget(); + java.awt.Component var36 = var28.findComponentAt(10, 1); + var26.addKeyListener((java.awt.event.KeyListener)var28); + var28.repaint(100, (-1), (-1), 1); + java.awt.image.ColorModel var43 = var28.getColorModel(); + boolean var44 = var28.isPreferredSizeSet(); + java.awt.peer.ComponentPeer var45 = var28.getPeer(); + java.awt.Dimension var46 = var28.getMinimumSize(); + var12.setMaximumSize(var46); + boolean var48 = var0.isAncestorOf((java.awt.Component)var12); + java.awt.image.BufferedImage var50 = var0.loadImg("SpaceWar.SpacePanel[,10,10,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var4); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var24 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var29 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var32); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var33 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var36); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var43); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var44 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var45); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var46); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var48 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var50); + + } + + public void test257() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test257"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + SpaceWar.SpacePanel var4 = new SpaceWar.SpacePanel(); + java.awt.Color var5 = var4.getBackground(); + var0.setForeground(var5); + SpaceWar.SpacePanel var7 = new SpaceWar.SpacePanel(); + float var8 = var7.getAlignmentX(); + var7.setVisible(false); + boolean var11 = var7.isDoubleBuffered(); + java.awt.dnd.DropTarget var12 = var7.getDropTarget(); + var7.show(false); + java.awt.Rectangle var15 = var7.getVisibleRect(); + var0.repaint(var15); + java.awt.FocusTraversalPolicy var17 = var0.getFocusTraversalPolicy(); + SpaceWar.SpacePanel var18 = new SpaceWar.SpacePanel(); + float var19 = var18.getAlignmentX(); + var18.firePropertyChange("", (-1), 1); + boolean var24 = var18.isFocusOwner(); + SpaceWar.SpacePanel var26 = new SpaceWar.SpacePanel(); + float var27 = var26.getAlignmentX(); + var26.setVisible(false); + java.awt.Dimension var30 = var26.getPreferredSize(); + java.awt.Toolkit var31 = var26.getToolkit(); + SpaceWar.SpacePanel var32 = new SpaceWar.SpacePanel(); + var32.setName(""); + int var35 = var32.getX(); + SpaceWar.SpacePanel var36 = new SpaceWar.SpacePanel(); + float var37 = var36.getAlignmentX(); + var36.setVisible(false); + var36.nextFocus(); + SpaceWar.SpacePanel var41 = new SpaceWar.SpacePanel(); + float var42 = var41.getAlignmentX(); + var41.setVisible(false); + SpaceWar.SpacePanel var45 = new SpaceWar.SpacePanel(); + java.awt.Color var46 = var45.getBackground(); + var41.setForeground(var46); + var36.setBackground(var46); + var32.setBackground(var46); + var26.setForeground(var46); + var18.putClientProperty((java.lang.Object)(byte)100, (java.lang.Object)var46); + var0.setBackground(var46); + javax.swing.JToolTip var53 = var0.createToolTip(); + var53.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, true); + var53.setSize(2, 2); + boolean var61 = var53.isPaintingForPrint(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var24 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var30); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var31); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var35 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var42 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var46); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var53); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var61 == false); + + } + + public void test258() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test258"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + boolean var6 = var0.isFocusCycleRoot(); + var0.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", 100, 0); + SpaceWar.SpacePanel var11 = new SpaceWar.SpacePanel(); + float var12 = var11.getAlignmentX(); + var11.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var17 = var11.getUI(); + var0.add((java.awt.Component)var11, (java.lang.Object)(short)0); + java.awt.event.InputMethodListener[] var20 = var11.getInputMethodListeners(); + java.awt.Toolkit var21 = var11.getToolkit(); + var11.setSize(24, 2); + java.awt.Container var25 = var11.getTopLevelAncestor(); + var11.setVisible(true); + java.lang.String var28 = var11.getUIClassID(); + java.awt.event.KeyListener[] var29 = var11.getKeyListeners(); + var11.firePropertyChange("SpaceWar.SpacePanel[,499,2,499x500,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", 0.0f, 0.0f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var21); + + // Regression assertion (captures the current behavior of the code) + assertNull(var25); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var28 + "' != '" + "PanelUI"+ "'", var28.equals("PanelUI")); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var29); + + } + + public void test259() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test259"); + + + SpaceWar.Player var0 = new SpaceWar.Player(); + boolean var1 = var0.isRecovering(); + int var2 = var0.getRequiredPower(); + int var3 = var0.getY(); + int var4 = var0.getX(); + var0.setLeft(false); + var0.setLeft(false); + var0.setLeft(false); + var0.setLeft(false); + var0.setLife(10); + var0.setScore(24); + int var17 = var0.getPowerLevel(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var2 == 1); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == 500); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 400); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == 0); + + } + + public void test260() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test260"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + var0.show(false); + boolean var8 = var0.isPaintingForPrint(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var15 = var9.getMouseListeners(); + int var16 = var9.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var17 = var9.getInputMethodRequests(); + var0.addKeyListener((java.awt.event.KeyListener)var9); + var9.firePropertyChange("", (short)0, (short)0); + java.awt.event.MouseMotionListener[] var23 = var9.getMouseMotionListeners(); + var9.setInheritsPopupMenu(true); + SpaceWar.SpacePanel var26 = new SpaceWar.SpacePanel(); + float var27 = var26.getAlignmentX(); + SpaceWar.SpacePanel var28 = new SpaceWar.SpacePanel(); + float var29 = var28.getAlignmentX(); + var28.setVisible(false); + java.awt.Dimension var32 = var28.getPreferredSize(); + boolean var33 = var28.getVerifyInputWhenFocusTarget(); + java.awt.Component var36 = var28.findComponentAt(10, 1); + var26.addKeyListener((java.awt.event.KeyListener)var28); + var28.repaint(100, (-1), (-1), 1); + java.awt.image.ColorModel var43 = var28.getColorModel(); + boolean var44 = var28.isFocusTraversalPolicyProvider(); + var28.show(false); + boolean var47 = var28.isManagingFocus(); + SpaceWar.SpacePanel var48 = new SpaceWar.SpacePanel(); + java.awt.Color var49 = var48.getBackground(); + var48.repaint(); + var48.setRequestFocusEnabled(false); + var48.reshape(100, 0, 100, 0); + var48.requestFocus(); + java.awt.Rectangle var59 = var48.getVisibleRect(); + java.awt.Rectangle var60 = var48.getBounds(); + java.awt.im.InputMethodRequests var61 = var48.getInputMethodRequests(); + boolean var62 = var48.requestFocusInWindow(); + java.awt.Point var64 = var48.getMousePosition(false); + var48.setDebugGraphicsOptions(1); + java.awt.Graphics var67 = var48.getGraphics(); + var28.paint(var67); + var9.print(var67); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var23); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var29 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var32); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var33 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var36); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var43); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var44 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var47 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var49); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var59); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var60); + + // Regression assertion (captures the current behavior of the code) + assertNull(var61); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var62 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var64); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var67); + + } + + public void test261() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test261"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + java.awt.Dimension var4 = var0.getPreferredSize(); + java.awt.Toolkit var5 = var0.getToolkit(); + boolean var6 = var0.isFocusable(); + javax.swing.KeyStroke[] var7 = var0.getRegisteredKeyStrokes(); + java.awt.Component var10 = var0.getComponentAt(100, 100); + SpaceWar.SpacePanel var11 = new SpaceWar.SpacePanel(); + java.awt.Color var12 = var11.getBackground(); + var11.repaint(); + var11.setRequestFocusEnabled(false); + var11.reshape(100, 0, 100, 0); + var11.firePropertyChange("PanelUI", 10, 10); + boolean var25 = var11.isFontSet(); + var0.setNextFocusableComponent((java.awt.Component)var11); + javax.swing.event.AncestorListener[] var27 = var0.getAncestorListeners(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var4); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var27); + + } + + public void test262() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test262"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.requestFocus(); + boolean var6 = var0.getInheritsPopupMenu(); + boolean var7 = var0.isFocusOwner(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + var8.nextFocus(); + var8.updateUI(); + var8.enableInputMethods(true); + java.awt.Point var17 = var8.getMousePosition(false); + java.awt.Component.BaselineResizeBehavior var18 = var8.getBaselineResizeBehavior(); + boolean var19 = var8.isMaximumSizeSet(); + SpaceWar.SpacePanel var20 = new SpaceWar.SpacePanel(); + float var21 = var20.getAlignmentX(); + var20.setVisible(false); + boolean var24 = var20.isDoubleBuffered(); + var20.list(); + SpaceWar.SpacePanel var26 = new SpaceWar.SpacePanel(); + float var27 = var26.getAlignmentX(); + var26.setVisible(false); + boolean var30 = var26.isDoubleBuffered(); + java.awt.dnd.DropTarget var31 = var26.getDropTarget(); + var26.show(false); + java.awt.Rectangle var34 = var26.getVisibleRect(); + java.awt.Rectangle var35 = var20.getBounds(var34); + javax.swing.JToolTip var36 = var20.createToolTip(); + java.awt.Dimension var37 = var20.minimumSize(); + boolean var39 = var20.requestFocus(false); + java.awt.Dimension var40 = var20.getMaximumSize(); + var0.putClientProperty((java.lang.Object)var8, (java.lang.Object)var20); + SpaceWar.SpacePanel var42 = new SpaceWar.SpacePanel(); + float var43 = var42.getAlignmentX(); + var42.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var48 = new SpaceWar.SpacePanel(); + float var49 = var48.getAlignmentX(); + var48.setVisible(false); + SpaceWar.SpacePanel var52 = new SpaceWar.SpacePanel(); + java.awt.Color var53 = var52.getBackground(); + var48.setForeground(var53); + var42.setBackground(var53); + java.awt.Point var56 = var42.location(); + var0.setLocation(var56); + var0.setVerifyInputWhenFocusTarget(false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var24 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var30 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var31); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var34); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var35); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var36); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var37); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var39 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var40); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var43 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var49 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var53); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var56); + + } + + public void test263() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test263"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + boolean var2 = var0.hasFocus(); + boolean var3 = var0.isPreferredSizeSet(); + SpaceWar.SpacePanel var4 = new SpaceWar.SpacePanel(); + java.awt.Color var5 = var4.getBackground(); + var4.repaint(); + var4.setRequestFocusEnabled(false); + int var9 = var0.getComponentZOrder((java.awt.Component)var4); + boolean var10 = var0.requestDefaultFocus(); + var0.setSize(25, 3); + java.awt.im.InputMethodRequests var14 = var0.getInputMethodRequests(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var2 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == (-1)); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var14); + + } + + public void test264() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test264"); + + + SpaceWar.Enemy var2 = new SpaceWar.Enemy(0, 100); + var2.explode(); + double var4 = var2.getY(); + var2.explode(); + int var6 = var2.getR(); + var2.update(); + double var8 = var2.getY(); + int var9 = var2.getRank(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0.0d); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 0.0d); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 100); + + } + + public void test265() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test265"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + SpaceWar.SpacePanel var2 = new SpaceWar.SpacePanel(); + float var3 = var2.getAlignmentX(); + var2.setVisible(false); + java.awt.Dimension var6 = var2.getPreferredSize(); + boolean var7 = var2.getVerifyInputWhenFocusTarget(); + java.awt.Component var10 = var2.findComponentAt(10, 1); + var0.addKeyListener((java.awt.event.KeyListener)var2); + SpaceWar.SpacePanel var12 = new SpaceWar.SpacePanel(); + float var13 = var12.getAlignmentX(); + SpaceWar.SpacePanel var14 = new SpaceWar.SpacePanel(); + float var15 = var14.getAlignmentX(); + var14.setVisible(false); + java.awt.Dimension var18 = var14.getPreferredSize(); + boolean var19 = var14.getVerifyInputWhenFocusTarget(); + java.awt.Component var22 = var14.findComponentAt(10, 1); + var12.addKeyListener((java.awt.event.KeyListener)var14); + var14.repaint(100, (-1), (-1), 1); + java.awt.image.ColorModel var29 = var14.getColorModel(); + SpaceWar.SpacePanel var30 = new SpaceWar.SpacePanel(); + float var31 = var30.getAlignmentX(); + var30.setVisible(false); + boolean var34 = var30.isDoubleBuffered(); + var30.list(); + SpaceWar.SpacePanel var36 = new SpaceWar.SpacePanel(); + float var37 = var36.getAlignmentX(); + var36.setVisible(false); + boolean var40 = var36.isDoubleBuffered(); + java.awt.dnd.DropTarget var41 = var36.getDropTarget(); + var36.show(false); + java.awt.Rectangle var44 = var36.getVisibleRect(); + java.awt.image.BufferedImage var46 = var36.loadImg("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + boolean var47 = var30.isAncestorOf((java.awt.Component)var36); + javax.swing.InputVerifier var48 = var36.getInputVerifier(); + var2.putClientProperty((java.lang.Object)var14, (java.lang.Object)var36); + var14.show(false); + java.beans.PropertyChangeListener[] var53 = var14.getPropertyChangeListeners("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=10,height=10]]"); + SpaceWar.SpacePanel var54 = new SpaceWar.SpacePanel(); + float var55 = var54.getAlignmentX(); + var54.setVisible(false); + boolean var58 = var54.isDoubleBuffered(); + java.awt.dnd.DropTarget var59 = var54.getDropTarget(); + var54.show(false); + java.awt.event.MouseWheelListener[] var62 = var54.getMouseWheelListeners(); + SpaceWar.SpacePanel var63 = new SpaceWar.SpacePanel(); + java.awt.Color var64 = var63.getBackground(); + var63.repaint(); + var63.setRequestFocusEnabled(false); + var63.reshape(100, 0, 100, 0); + var63.requestFocus(); + var63.firePropertyChange("hi!", '4', ' '); + java.awt.Point var78 = var63.getLocation(); + java.awt.Dimension var79 = var63.size(); + boolean var80 = var63.isDoubleBuffered(); + var63.grabFocus(); + java.awt.Rectangle var82 = var63.bounds(); + java.awt.Rectangle var83 = var54.getBounds(var82); + var14.paintImmediately(var82); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var29); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var31 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var34 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var40 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var41); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var44); + + // Regression assertion (captures the current behavior of the code) + assertNull(var46); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var47 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var48); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var53); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var55 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var58 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var59); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var62); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var64); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var78); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var79); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var80 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var82); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var83); + + } + + public void test266() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test266"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + var0.list(); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + float var7 = var6.getAlignmentX(); + var6.setVisible(false); + boolean var10 = var6.isDoubleBuffered(); + java.awt.dnd.DropTarget var11 = var6.getDropTarget(); + var6.show(false); + java.awt.Rectangle var14 = var6.getVisibleRect(); + java.awt.Rectangle var15 = var0.getBounds(var14); + javax.swing.JToolTip var16 = var0.createToolTip(); + var0.firePropertyChange("", false, false); + var0.setFocusTraversalKeysEnabled(false); + java.awt.Component var23 = var0.getNextFocusableComponent(); + java.awt.Cursor var24 = var0.getCursor(); + javax.swing.JToolTip var25 = var0.createToolTip(); + var0.layout(); + SpaceWar.SpacePanel var27 = new SpaceWar.SpacePanel(); + float var28 = var27.getAlignmentX(); + var27.setVisible(false); + SpaceWar.SpacePanel var31 = new SpaceWar.SpacePanel(); + java.awt.Color var32 = var31.getBackground(); + var27.setForeground(var32); + SpaceWar.SpacePanel var34 = new SpaceWar.SpacePanel(); + float var35 = var34.getAlignmentX(); + var34.setVisible(false); + boolean var38 = var34.isDoubleBuffered(); + java.awt.dnd.DropTarget var39 = var34.getDropTarget(); + var34.show(false); + java.awt.Rectangle var42 = var34.getVisibleRect(); + var27.repaint(var42); + java.awt.Component.BaselineResizeBehavior var44 = var27.getBaselineResizeBehavior(); + boolean var46 = var27.requestFocus(false); + java.awt.Rectangle var47 = var27.getBounds(); + var0.paintImmediately(var47); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertNull(var23); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var25); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var28 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var32); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var35 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var38 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var39); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var42); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var44); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var46 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var47); + + } + + public void test267() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test267"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + SpaceWar.SpacePanel var4 = new SpaceWar.SpacePanel(); + java.awt.Color var5 = var4.getBackground(); + var0.setForeground(var5); + SpaceWar.SpacePanel var7 = new SpaceWar.SpacePanel(); + float var8 = var7.getAlignmentX(); + var7.setVisible(false); + boolean var11 = var7.isDoubleBuffered(); + java.awt.dnd.DropTarget var12 = var7.getDropTarget(); + var7.show(false); + java.awt.Rectangle var15 = var7.getVisibleRect(); + var0.repaint(var15); + java.awt.FocusTraversalPolicy var17 = var0.getFocusTraversalPolicy(); + javax.swing.TransferHandler var18 = var0.getTransferHandler(); + java.awt.Component var19 = var0.getNextFocusableComponent(); + java.lang.String var20 = var0.getUIClassID(); + java.awt.peer.ComponentPeer var21 = var0.getPeer(); + java.lang.String var22 = var0.getToolTipText(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var20 + "' != '" + "PanelUI"+ "'", var20.equals("PanelUI")); + + // Regression assertion (captures the current behavior of the code) + assertNull(var21); + + // Regression assertion (captures the current behavior of the code) + assertNull(var22); + + } + + public void test268() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test268"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + var0.show(false); + java.awt.Rectangle var8 = var0.getVisibleRect(); + java.awt.image.BufferedImage var10 = var0.loadImg("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + int var11 = var0.getComponentCount(); + SpaceWar.SpacePanel var12 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var13 = new SpaceWar.SpacePanel(); + java.awt.Color var14 = var13.getBackground(); + SpaceWar.SpacePanel var15 = new SpaceWar.SpacePanel(); + float var16 = var15.getAlignmentX(); + var15.setVisible(false); + var15.nextFocus(); + var15.updateUI(); + var15.enableInputMethods(true); + var12.add((java.awt.Component)var13, (java.lang.Object)true); + boolean var25 = var13.areFocusTraversalKeysSet(0); + SpaceWar.SpacePanel var26 = new SpaceWar.SpacePanel(); + float var27 = var26.getAlignmentX(); + var26.setVisible(false); + SpaceWar.SpacePanel var30 = new SpaceWar.SpacePanel(); + java.awt.Color var31 = var30.getBackground(); + var26.setForeground(var31); + SpaceWar.SpacePanel var33 = new SpaceWar.SpacePanel(); + float var34 = var33.getAlignmentX(); + var33.setVisible(false); + boolean var37 = var33.isDoubleBuffered(); + java.awt.dnd.DropTarget var38 = var33.getDropTarget(); + var33.show(false); + java.awt.Rectangle var41 = var33.getVisibleRect(); + var26.repaint(var41); + java.awt.FocusTraversalPolicy var43 = var26.getFocusTraversalPolicy(); + SpaceWar.SpacePanel var44 = new SpaceWar.SpacePanel(); + float var45 = var44.getAlignmentX(); + var44.firePropertyChange("", (-1), 1); + boolean var50 = var44.isFocusOwner(); + SpaceWar.SpacePanel var52 = new SpaceWar.SpacePanel(); + float var53 = var52.getAlignmentX(); + var52.setVisible(false); + java.awt.Dimension var56 = var52.getPreferredSize(); + java.awt.Toolkit var57 = var52.getToolkit(); + SpaceWar.SpacePanel var58 = new SpaceWar.SpacePanel(); + var58.setName(""); + int var61 = var58.getX(); + SpaceWar.SpacePanel var62 = new SpaceWar.SpacePanel(); + float var63 = var62.getAlignmentX(); + var62.setVisible(false); + var62.nextFocus(); + SpaceWar.SpacePanel var67 = new SpaceWar.SpacePanel(); + float var68 = var67.getAlignmentX(); + var67.setVisible(false); + SpaceWar.SpacePanel var71 = new SpaceWar.SpacePanel(); + java.awt.Color var72 = var71.getBackground(); + var67.setForeground(var72); + var62.setBackground(var72); + var58.setBackground(var72); + var52.setForeground(var72); + var44.putClientProperty((java.lang.Object)(byte)100, (java.lang.Object)var72); + var26.setBackground(var72); + SpaceWar.SpacePanel var79 = new SpaceWar.SpacePanel(); + float var80 = var79.getAlignmentX(); + var79.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var85 = new SpaceWar.SpacePanel(); + float var86 = var85.getAlignmentX(); + var85.setVisible(false); + SpaceWar.SpacePanel var89 = new SpaceWar.SpacePanel(); + java.awt.Color var90 = var89.getBackground(); + var85.setForeground(var90); + var79.setBackground(var90); + java.awt.Point var93 = var79.location(); + java.awt.Point var94 = var26.getLocation(var93); + boolean var95 = var13.contains(var94); + java.awt.Component var96 = var0.getComponentAt(var94); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var31); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var34 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var38); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var41); + + // Regression assertion (captures the current behavior of the code) + assertNull(var43); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var45 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var50 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var53 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var56); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var57); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var61 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var63 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var68 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var72); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var80 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var86 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var90); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var93); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var94); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var95 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var96); + + } + + public void test269() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test269"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.reshape((-1), 1, (-1), 10); + var0.disable(); + java.awt.LayoutManager var11 = var0.getLayout(); + boolean var14 = var0.contains((-1), 0); + SpaceWar.SpacePanel var15 = new SpaceWar.SpacePanel(); + float var16 = var15.getAlignmentX(); + var15.setVisible(false); + var15.nextFocus(); + var15.updateUI(); + var15.enableInputMethods(true); + var15.setSize((-1), 1); + java.awt.Component var26 = var0.add((java.awt.Component)var15); + SpaceWar.SpacePanel var27 = new SpaceWar.SpacePanel(); + float var28 = var27.getAlignmentX(); + var27.setVisible(false); + var27.nextFocus(); + var27.updateUI(); + var27.enableInputMethods(true); + java.lang.String var35 = var27.toString(); + java.awt.FocusTraversalPolicy var36 = var27.getFocusTraversalPolicy(); + var15.removeKeyListener((java.awt.event.KeyListener)var27); + boolean var38 = var27.isShowing(); + java.awt.GraphicsConfiguration var39 = var27.getGraphicsConfiguration(); + java.awt.Cursor var40 = var27.getCursor(); + boolean var41 = var27.isFocusTraversalPolicySet(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var28 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var35 + "' != '" + "SpaceWar.SpacePanel[,0,0,0var35,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"+ "'", var35.equals("SpaceWar.SpacePanel[,0,0,0var35,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]")); + + // Regression assertion (captures the current behavior of the code) + assertNull(var36); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var38 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var39); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var40); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var41 == false); + + } + + public void test270() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test270"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + java.awt.im.InputMethodRequests var3 = var0.getInputMethodRequests(); + int var4 = var0.countComponents(); + java.awt.event.ComponentListener[] var5 = var0.getComponentListeners(); + var0.removeNotify(); + javax.swing.InputMap var7 = var0.getInputMap(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var14 = new SpaceWar.SpacePanel(); + float var15 = var14.getAlignmentX(); + var14.setVisible(false); + SpaceWar.SpacePanel var18 = new SpaceWar.SpacePanel(); + java.awt.Color var19 = var18.getBackground(); + var14.setForeground(var19); + var8.setBackground(var19); + java.awt.Point var22 = var8.location(); + var0.setLocation(var22); + SpaceWar.SpacePanel var24 = new SpaceWar.SpacePanel(); + float var25 = var24.getAlignmentX(); + var24.setVisible(false); + var24.nextFocus(); + var24.reshape((-1), 1, (-1), 10); + SpaceWar.SpacePanel var34 = new SpaceWar.SpacePanel(); + java.awt.Color var35 = var34.getBackground(); + var34.repaint(); + var34.setRequestFocusEnabled(false); + var34.reshape(100, 0, 100, 0); + java.awt.Component var44 = var24.add((java.awt.Component)var34); + var24.enable(); + SpaceWar.SpacePanel var46 = new SpaceWar.SpacePanel(); + float var47 = var46.getAlignmentX(); + boolean var48 = var46.hasFocus(); + boolean var49 = var46.isPreferredSizeSet(); + var0.putClientProperty((java.lang.Object)var24, (java.lang.Object)var46); + SpaceWar.SpacePanel var51 = new SpaceWar.SpacePanel(); + float var52 = var51.getAlignmentX(); + var51.setVisible(false); + var51.nextFocus(); + var51.repaint(1L); + SpaceWar.SpacePanel var58 = new SpaceWar.SpacePanel(); + float var59 = var58.getAlignmentX(); + var58.setVisible(false); + boolean var62 = var58.isDoubleBuffered(); + var58.list(); + SpaceWar.SpacePanel var64 = new SpaceWar.SpacePanel(); + float var65 = var64.getAlignmentX(); + var64.setVisible(false); + boolean var68 = var64.isDoubleBuffered(); + java.awt.dnd.DropTarget var69 = var64.getDropTarget(); + var64.show(false); + java.awt.Rectangle var72 = var64.getVisibleRect(); + java.awt.Rectangle var73 = var58.getBounds(var72); + var51.setBounds(var73); + var46.repaint(var73); + var46.hide(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var35); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var44); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var47 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var48 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var49 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var52 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var59 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var62 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var65 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var68 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var69); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var72); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var73); + + } + + public void test271() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test271"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + SpaceWar.SpacePanel var5 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + java.awt.Color var7 = var6.getBackground(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + var8.nextFocus(); + var8.updateUI(); + var8.enableInputMethods(true); + var5.add((java.awt.Component)var6, (java.lang.Object)true); + java.awt.Dimension var17 = var6.getPreferredSize(); + var0.setMaximumSize(var17); + java.awt.Dimension var19 = var0.preferredSize(); + java.lang.String var20 = var0.getUIClassID(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var20 + "' != '" + "PanelUI"+ "'", var20.equals("PanelUI")); + + } + + public void test272() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test272"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + SpaceWar.SpacePanel var4 = new SpaceWar.SpacePanel(); + java.awt.Color var5 = var4.getBackground(); + var0.setForeground(var5); + SpaceWar.SpacePanel var7 = new SpaceWar.SpacePanel(); + float var8 = var7.getAlignmentX(); + var7.setVisible(false); + boolean var11 = var7.isDoubleBuffered(); + java.awt.dnd.DropTarget var12 = var7.getDropTarget(); + var7.show(false); + java.awt.Rectangle var15 = var7.getVisibleRect(); + var0.repaint(var15); + java.awt.FocusTraversalPolicy var17 = var0.getFocusTraversalPolicy(); + var0.resetKeyboardActions(); + java.util.Locale var19 = var0.getLocale(); + var0.setEnabled(true); + boolean var22 = var0.requestFocusInWindow(); + boolean var24 = var0.requestFocus(true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var22 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var24 == false); + + } + + public void test273() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test273"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + boolean var5 = javax.swing.JComponent.isLightweightComponent((java.awt.Component)var0); + java.awt.event.MouseWheelListener[] var6 = var0.getMouseWheelListeners(); + var0.transferFocusUpCycle(); + boolean var8 = var0.isOptimizedDrawingEnabled(); + int var9 = var0.getX(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0); + + } + + public void test274() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test274"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + var0.enable(false); + boolean var7 = var0.getFocusTraversalKeysEnabled(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + java.awt.Dimension var12 = var8.getPreferredSize(); + java.awt.Toolkit var13 = var8.getToolkit(); + boolean var14 = var8.isFocusable(); + javax.swing.KeyStroke[] var15 = var8.getRegisteredKeyStrokes(); + SpaceWar.SpacePanel var16 = new SpaceWar.SpacePanel(); + float var17 = var16.getAlignmentX(); + SpaceWar.SpacePanel var18 = new SpaceWar.SpacePanel(); + float var19 = var18.getAlignmentX(); + var18.setVisible(false); + java.awt.Dimension var22 = var18.getPreferredSize(); + boolean var23 = var18.getVerifyInputWhenFocusTarget(); + java.awt.Component var26 = var18.findComponentAt(10, 1); + var16.addKeyListener((java.awt.event.KeyListener)var18); + var18.repaint(100, (-1), (-1), 1); + boolean var33 = var8.isAncestorOf((java.awt.Component)var18); + var0.addKeyListener((java.awt.event.KeyListener)var18); + java.awt.Component var37 = var0.findComponentAt(1, 25); + java.awt.Rectangle var38 = var0.getVisibleRect(); + SpaceWar.SpacePanel var39 = new SpaceWar.SpacePanel(); + float var40 = var39.getAlignmentX(); + var39.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var45 = var39.getUI(); + var39.disable(); + java.awt.im.InputContext var47 = var39.getInputContext(); + java.awt.Rectangle var48 = var39.bounds(); + boolean var49 = var0.isAncestorOf((java.awt.Component)var39); + var0.hide(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var33 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var37); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var38); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var40 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var45); + + // Regression assertion (captures the current behavior of the code) + assertNull(var47); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var48); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var49 == false); + + } + + public void test275() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test275"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + var0.show(false); + boolean var8 = var0.isPaintingForPrint(); + javax.swing.TransferHandler var9 = var0.getTransferHandler(); + java.util.Locale var10 = var0.getLocale(); + javax.swing.JComponent.setDefaultLocale(var10); + javax.swing.JComponent.setDefaultLocale(var10); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var9); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var10); + + } + + public void test276() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test276"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.setInheritsPopupMenu(false); + java.awt.Component var8 = var0.findComponentAt((-1), 1); + java.awt.Insets var9 = var0.getInsets(); + javax.swing.InputMap var10 = var0.getInputMap(); + SpaceWar.SpacePanel var11 = new SpaceWar.SpacePanel(); + float var12 = var11.getAlignmentX(); + var11.setVisible(false); + java.awt.Dimension var15 = var11.getPreferredSize(); + boolean var16 = var11.getVerifyInputWhenFocusTarget(); + java.awt.event.MouseWheelListener[] var17 = var11.getMouseWheelListeners(); + java.awt.event.MouseWheelListener[] var18 = var11.getMouseWheelListeners(); + boolean var19 = var11.isShowing(); + java.awt.dnd.DropTarget var20 = var11.getDropTarget(); + var11.repaint(399, 0, 100, 3); + SpaceWar.SpacePanel var26 = new SpaceWar.SpacePanel(); + float var27 = var26.getAlignmentX(); + var26.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var32 = var26.getMouseListeners(); + var26.firePropertyChange("", 0.5f, 100.0f); + var26.enable(false); + var26.enable(); + SpaceWar.SpacePanel var40 = new SpaceWar.SpacePanel(); + var40.setName(""); + java.awt.Toolkit var43 = var40.getToolkit(); + var40.setEnabled(false); + var40.removeNotify(); + boolean var47 = var40.isDisplayable(); + SpaceWar.SpacePanel var48 = new SpaceWar.SpacePanel(); + java.awt.Color var49 = var48.getBackground(); + var48.repaint(); + var48.setRequestFocusEnabled(false); + var48.reshape(100, 0, 100, 0); + var48.requestFocus(); + java.awt.Rectangle var59 = var48.getVisibleRect(); + java.awt.Rectangle var60 = var48.getBounds(); + java.awt.im.InputMethodRequests var61 = var48.getInputMethodRequests(); + boolean var62 = var48.requestFocusInWindow(); + java.awt.Point var64 = var48.getMousePosition(false); + var48.setDebugGraphicsOptions(1); + java.awt.Graphics var67 = var48.getGraphics(); + var40.paintAll(var67); + var26.printComponents(var67); + var11.paintComponents(var67); + var0.paintAll(var67); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var9); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var32); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var43); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var47 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var49); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var59); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var60); + + // Regression assertion (captures the current behavior of the code) + assertNull(var61); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var62 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var64); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var67); + + } + + public void test277() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test277"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + var0.list(); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + float var7 = var6.getAlignmentX(); + var6.setVisible(false); + boolean var10 = var6.isDoubleBuffered(); + java.awt.dnd.DropTarget var11 = var6.getDropTarget(); + var6.show(false); + java.awt.Rectangle var14 = var6.getVisibleRect(); + java.awt.Rectangle var15 = var0.getBounds(var14); + javax.swing.JToolTip var16 = var0.createToolTip(); + var0.firePropertyChange("", false, false); + var0.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", (-1L), (-1L)); + java.awt.Container var25 = var0.getParent(); + java.awt.Component.BaselineResizeBehavior var26 = var0.getBaselineResizeBehavior(); + java.awt.LayoutManager var27 = var0.getLayout(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertNull(var25); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var27); + + } + + public void test278() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test278"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + var0.show(false); + boolean var8 = var0.isPaintingForPrint(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var15 = var9.getMouseListeners(); + int var16 = var9.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var17 = var9.getInputMethodRequests(); + var0.addKeyListener((java.awt.event.KeyListener)var9); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + float var20 = var19.getAlignmentX(); + var19.setVisible(false); + boolean var23 = var19.isDoubleBuffered(); + var19.list(); + float var25 = var19.getAlignmentY(); + boolean var26 = var9.isFocusCycleRoot((java.awt.Container)var19); + var19.firePropertyChange("", 1L, 1L); + var19.setVerifyInputWhenFocusTarget(true); + var19.resize(25, 400); + java.awt.event.ComponentListener[] var36 = var19.getComponentListeners(); + var19.setAlignmentX(10.0f); + var19.setDoubleBuffered(false); + java.awt.Graphics var41 = var19.getGraphics(); + boolean var42 = var19.getIgnoreRepaint(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var36); + + // Regression assertion (captures the current behavior of the code) + assertNull(var41); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var42 == false); + + } + + public void test279() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test279"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + boolean var5 = javax.swing.JComponent.isLightweightComponent((java.awt.Component)var0); + java.awt.event.MouseWheelListener[] var6 = var0.getMouseWheelListeners(); + var0.transferFocusUpCycle(); + var0.reshape(2, 25, 0, 24); + SpaceWar.SpacePanel var13 = new SpaceWar.SpacePanel(); + float var14 = var13.getAlignmentX(); + var13.setVisible(false); + java.awt.Dimension var17 = var13.getPreferredSize(); + java.awt.Toolkit var18 = var13.getToolkit(); + java.awt.Toolkit var19 = var13.getToolkit(); + var13.firePropertyChange("hi!", 25, 1); + boolean var24 = var13.requestDefaultFocus(); + var13.setAutoscrolls(true); + java.awt.Component var27 = var0.add((java.awt.Component)var13); + java.awt.event.MouseMotionListener[] var28 = var0.getMouseMotionListeners(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var24 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var27); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var28); + + } + + public void test280() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test280"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.reshape((-1), 1, (-1), 10); + java.util.Set var11 = var0.getFocusTraversalKeys(3); + java.awt.Point var12 = var0.getLocation(); + SpaceWar.SpacePanel var13 = new SpaceWar.SpacePanel(); + float var14 = var13.getAlignmentX(); + var13.setVisible(false); + SpaceWar.SpacePanel var17 = new SpaceWar.SpacePanel(); + java.awt.Color var18 = var17.getBackground(); + var13.setForeground(var18); + SpaceWar.SpacePanel var20 = new SpaceWar.SpacePanel(); + float var21 = var20.getAlignmentX(); + var20.setVisible(false); + boolean var24 = var20.isDoubleBuffered(); + java.awt.dnd.DropTarget var25 = var20.getDropTarget(); + var20.show(false); + java.awt.Rectangle var28 = var20.getVisibleRect(); + var13.repaint(var28); + java.awt.FocusTraversalPolicy var30 = var13.getFocusTraversalPolicy(); + java.awt.im.InputMethodRequests var31 = var13.getInputMethodRequests(); + var13.layout(); + boolean var33 = var13.isFocusTraversalPolicyProvider(); + java.awt.Insets var34 = var13.insets(); + java.awt.Rectangle var35 = var13.getVisibleRect(); + boolean var36 = var13.isMinimumSizeSet(); + SpaceWar.SpacePanel var37 = new SpaceWar.SpacePanel(); + var37.setName(""); + java.awt.Toolkit var40 = var37.getToolkit(); + var37.setEnabled(false); + var37.removeNotify(); + boolean var44 = var37.isDisplayable(); + SpaceWar.SpacePanel var45 = new SpaceWar.SpacePanel(); + java.awt.Color var46 = var45.getBackground(); + var45.repaint(); + var45.setRequestFocusEnabled(false); + var45.reshape(100, 0, 100, 0); + var45.requestFocus(); + java.awt.Rectangle var56 = var45.getVisibleRect(); + java.awt.Rectangle var57 = var45.getBounds(); + java.awt.im.InputMethodRequests var58 = var45.getInputMethodRequests(); + boolean var59 = var45.requestFocusInWindow(); + java.awt.Point var61 = var45.getMousePosition(false); + var45.setDebugGraphicsOptions(1); + java.awt.Graphics var64 = var45.getGraphics(); + var37.paintAll(var64); + var13.update(var64); + var0.paintAll(var64); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var24 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var25); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var28); + + // Regression assertion (captures the current behavior of the code) + assertNull(var30); + + // Regression assertion (captures the current behavior of the code) + assertNull(var31); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var33 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var34); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var35); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var36 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var40); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var44 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var46); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var56); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var57); + + // Regression assertion (captures the current behavior of the code) + assertNull(var58); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var59 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var61); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var64); + + } + + public void test281() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test281"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + var0.setRequestFocusEnabled(false); + var0.removeAll(); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + float var7 = var6.getAlignmentX(); + var6.setVisible(false); + boolean var10 = var6.isDoubleBuffered(); + java.awt.dnd.DropTarget var11 = var6.getDropTarget(); + var6.show(false); + boolean var14 = var6.isPaintingForPrint(); + SpaceWar.SpacePanel var15 = new SpaceWar.SpacePanel(); + float var16 = var15.getAlignmentX(); + var15.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var21 = var15.getMouseListeners(); + int var22 = var15.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var23 = var15.getInputMethodRequests(); + var6.addKeyListener((java.awt.event.KeyListener)var15); + SpaceWar.SpacePanel var25 = new SpaceWar.SpacePanel(); + float var26 = var25.getAlignmentX(); + var25.setVisible(false); + boolean var29 = var25.isDoubleBuffered(); + var25.list(); + float var31 = var25.getAlignmentY(); + boolean var32 = var15.isFocusCycleRoot((java.awt.Container)var25); + SpaceWar.SpacePanel var34 = new SpaceWar.SpacePanel(); + float var35 = var34.getAlignmentX(); + var34.setVisible(false); + var34.nextFocus(); + var34.updateUI(); + java.awt.Component var40 = var15.add("", (java.awt.Component)var34); + boolean var41 = var0.isAncestorOf((java.awt.Component)var34); + var0.removeAll(); + boolean var43 = javax.swing.JComponent.isLightweightComponent((java.awt.Component)var0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var21); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var22 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var23); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var29 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var31 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var32 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var35 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var40); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var41 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var43 == false); + + } + + public void test282() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test282"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.updateUI(); + var0.enableInputMethods(true); + var0.setSize((-1), 1); + boolean var13 = var0.contains(1, 1); + javax.swing.TransferHandler var14 = var0.getTransferHandler(); + SpaceWar.SpacePanel var15 = new SpaceWar.SpacePanel(); + float var16 = var15.getAlignmentX(); + var15.setVisible(false); + boolean var19 = var15.isDoubleBuffered(); + var15.enable(false); + java.lang.Object var22 = var0.getClientProperty((java.lang.Object)false); + SpaceWar.SpacePanel var23 = new SpaceWar.SpacePanel(); + float var24 = var23.getAlignmentX(); + var23.setVisible(false); + SpaceWar.SpacePanel var27 = new SpaceWar.SpacePanel(); + java.awt.Color var28 = var27.getBackground(); + var23.setForeground(var28); + SpaceWar.SpacePanel var30 = new SpaceWar.SpacePanel(); + float var31 = var30.getAlignmentX(); + var30.setVisible(false); + boolean var34 = var30.isDoubleBuffered(); + java.awt.dnd.DropTarget var35 = var30.getDropTarget(); + var30.show(false); + java.awt.Rectangle var38 = var30.getVisibleRect(); + var23.repaint(var38); + java.awt.Component.BaselineResizeBehavior var40 = var23.getBaselineResizeBehavior(); + SpaceWar.SpacePanel var41 = new SpaceWar.SpacePanel(); + float var42 = var41.getAlignmentX(); + var41.setVisible(false); + var41.nextFocus(); + var41.repaint(1L); + SpaceWar.SpacePanel var48 = new SpaceWar.SpacePanel(); + float var49 = var48.getAlignmentX(); + var48.setVisible(false); + boolean var52 = var48.isDoubleBuffered(); + var48.list(); + SpaceWar.SpacePanel var54 = new SpaceWar.SpacePanel(); + float var55 = var54.getAlignmentX(); + var54.setVisible(false); + boolean var58 = var54.isDoubleBuffered(); + java.awt.dnd.DropTarget var59 = var54.getDropTarget(); + var54.show(false); + java.awt.Rectangle var62 = var54.getVisibleRect(); + java.awt.Rectangle var63 = var48.getBounds(var62); + var41.setBounds(var63); + var23.paintImmediately(var63); + SpaceWar.SpacePanel var66 = new SpaceWar.SpacePanel(); + float var67 = var66.getAlignmentX(); + var66.setVisible(false); + boolean var70 = var66.isDoubleBuffered(); + java.awt.dnd.DropTarget var71 = var66.getDropTarget(); + java.awt.Point var72 = var66.getMousePosition(); + boolean var73 = var66.getAutoscrolls(); + var0.add((java.awt.Component)var23, (java.lang.Object)var66); + int var75 = var23.getWidth(); + SpaceWar.SpacePanel var76 = new SpaceWar.SpacePanel(); + float var77 = var76.getAlignmentX(); + var76.removeNotify(); + SpaceWar.SpacePanel var79 = new SpaceWar.SpacePanel(); + float var80 = var79.getAlignmentX(); + var79.setVisible(false); + boolean var83 = var79.isDoubleBuffered(); + var79.list(); + float var85 = var79.getAlignmentY(); + java.awt.Insets var86 = var79.getInsets(); + java.awt.Insets var87 = var76.getInsets(var86); + java.awt.Insets var88 = var23.getInsets(var86); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var24 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var28); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var31 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var34 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var35); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var38); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var40); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var42 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var49 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var52 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var55 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var58 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var59); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var62); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var63); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var67 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var70 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var71); + + // Regression assertion (captures the current behavior of the code) + assertNull(var72); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var73 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var75 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var77 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var80 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var83 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var85 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var86); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var87); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var88); + + } + + public void test283() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test283"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + var0.show(false); + boolean var8 = var0.isPaintingForPrint(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var15 = var9.getMouseListeners(); + int var16 = var9.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var17 = var9.getInputMethodRequests(); + var0.addKeyListener((java.awt.event.KeyListener)var9); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + float var20 = var19.getAlignmentX(); + var19.setVisible(false); + boolean var23 = var19.isDoubleBuffered(); + var19.list(); + float var25 = var19.getAlignmentY(); + boolean var26 = var9.isFocusCycleRoot((java.awt.Container)var19); + boolean var27 = var19.isEnabled(); + java.awt.Dimension var28 = var19.getMaximumSize(); + var19.setFocusCycleRoot(false); + java.awt.event.ComponentListener[] var31 = var19.getComponentListeners(); + boolean var32 = var19.isFocusCycleRoot(); + boolean var33 = var19.isEnabled(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var28); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var31); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var32 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var33 == true); + + } + + public void test284() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test284"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + javax.swing.plaf.PanelUI var3 = var0.getUI(); + SpaceWar.SpacePanel var4 = new SpaceWar.SpacePanel(); + float var5 = var4.getAlignmentX(); + var4.setVisible(false); + boolean var8 = var4.isDoubleBuffered(); + java.awt.dnd.DropTarget var9 = var4.getDropTarget(); + var4.show(false); + boolean var12 = var4.isPaintingForPrint(); + SpaceWar.SpacePanel var13 = new SpaceWar.SpacePanel(); + float var14 = var13.getAlignmentX(); + var13.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var19 = var13.getMouseListeners(); + int var20 = var13.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var21 = var13.getInputMethodRequests(); + var4.addKeyListener((java.awt.event.KeyListener)var13); + SpaceWar.SpacePanel var23 = new SpaceWar.SpacePanel(); + float var24 = var23.getAlignmentX(); + var23.setVisible(false); + boolean var27 = var23.isDoubleBuffered(); + var23.list(); + float var29 = var23.getAlignmentY(); + boolean var30 = var13.isFocusCycleRoot((java.awt.Container)var23); + SpaceWar.SpacePanel var32 = new SpaceWar.SpacePanel(); + float var33 = var32.getAlignmentX(); + var32.setVisible(false); + var32.nextFocus(); + var32.updateUI(); + java.awt.Component var38 = var13.add("", (java.awt.Component)var32); + java.awt.ComponentOrientation var39 = var32.getComponentOrientation(); + boolean var40 = var32.isFocusable(); + var0.remove((java.awt.Component)var32); + var0.hide(); + var0.setToolTipText("hi!"); + javax.swing.JRootPane var45 = var0.getRootPane(); + var0.enable(); + var0.setEnabled(false); + java.awt.image.BufferedImage var50 = var0.loadImg("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + java.awt.Insets var51 = var0.getInsets(); + boolean var52 = var0.isValid(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var9); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var21); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var24 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var29 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var30 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var33 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var38); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var39); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var40 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var45); + + // Regression assertion (captures the current behavior of the code) + assertNull(var50); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var51); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var52 == false); + + } + + public void test285() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test285"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var6 = var0.getUI(); + java.awt.im.InputMethodRequests var7 = var0.getInputMethodRequests(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + var8.nextFocus(); + var8.updateUI(); + var8.enableInputMethods(true); + var8.setSize((-1), 1); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + var19.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var0.add((java.awt.Component)var8, (java.lang.Object)"SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + java.awt.ComponentOrientation var25 = var8.getComponentOrientation(); + java.beans.VetoableChangeListener[] var26 = var8.getVetoableChangeListeners(); + int var27 = var8.getHeight(); + java.awt.event.KeyListener[] var28 = var8.getKeyListeners(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var25); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == 1); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var28); + + } + + public void test286() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test286"); + + + SpaceWar.Player var0 = new SpaceWar.Player(); + var0.increasePower(25); + int var3 = var0.getScore(); + var0.setRigth(true); + var0.update(); + var0.setDown(false); + var0.loseLife(); + var0.loseLife(); + boolean var11 = var0.isDead(); + int var12 = var0.getPowerLevel(); + boolean var13 = var0.isDead(); + int var14 = var0.getPowerLevel(); + var0.setDown(false); + int var17 = var0.getRequiredPower(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == 1); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == 1); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == 2); + + } + + public void test287() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test287"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + java.awt.Dimension var4 = var0.getPreferredSize(); + java.awt.Toolkit var5 = var0.getToolkit(); + boolean var6 = var0.isFocusable(); + javax.swing.KeyStroke[] var7 = var0.getRegisteredKeyStrokes(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + SpaceWar.SpacePanel var10 = new SpaceWar.SpacePanel(); + float var11 = var10.getAlignmentX(); + var10.setVisible(false); + java.awt.Dimension var14 = var10.getPreferredSize(); + boolean var15 = var10.getVerifyInputWhenFocusTarget(); + java.awt.Component var18 = var10.findComponentAt(10, 1); + var8.addKeyListener((java.awt.event.KeyListener)var10); + var10.repaint(100, (-1), (-1), 1); + boolean var25 = var0.isAncestorOf((java.awt.Component)var10); + var0.nextFocus(); + var0.disable(); + java.awt.Dimension var28 = var0.size(); + var0.list(); + var0.resize(100, 0); + var0.transferFocusBackward(); + int var34 = var0.getWidth(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var4); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var28); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var34 == 100); + + } + + public void test288() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test288"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + SpaceWar.SpacePanel var5 = new SpaceWar.SpacePanel(); + float var6 = var5.getAlignmentX(); + var5.setVisible(false); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + java.awt.Color var10 = var9.getBackground(); + var5.setForeground(var10); + var0.setBackground(var10); + java.awt.Component var13 = var0.getNextFocusableComponent(); + float var14 = var0.getAlignmentY(); + java.awt.event.MouseListener[] var15 = var0.getMouseListeners(); + var0.grabFocus(); + boolean var17 = var0.isRequestFocusEnabled(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == true); + + } + + public void test289() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test289"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + SpaceWar.SpacePanel var4 = new SpaceWar.SpacePanel(); + java.awt.Color var5 = var4.getBackground(); + var0.setForeground(var5); + SpaceWar.SpacePanel var7 = new SpaceWar.SpacePanel(); + float var8 = var7.getAlignmentX(); + var7.setVisible(false); + boolean var11 = var7.isDoubleBuffered(); + java.awt.dnd.DropTarget var12 = var7.getDropTarget(); + var7.show(false); + java.awt.Rectangle var15 = var7.getVisibleRect(); + var0.repaint(var15); + java.awt.FocusTraversalPolicy var17 = var0.getFocusTraversalPolicy(); + javax.swing.TransferHandler var18 = var0.getTransferHandler(); + java.awt.Component var19 = var0.getNextFocusableComponent(); + java.awt.image.VolatileImage var22 = var0.createVolatileImage(10, (-1)); + var0.setVisible(false); + boolean var25 = var0.isFocusable(); + var0.repaint(); + javax.swing.JToolTip var27 = var0.createToolTip(); + // The following exception was thrown during execution. + // This behavior will recorded for regression testing. + try { + int var30 = var27.getBaseline((-1), 25); + fail("Expected exception of type java.lang.IllegalArgumentException"); + } catch (java.lang.IllegalArgumentException e) { + // Expected exception. + } + + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var27); + + } + + public void test290() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test290"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + boolean var2 = var0.hasFocus(); + boolean var3 = var0.isPreferredSizeSet(); + var0.firePropertyChange("", (short)1, (short)0); + boolean var8 = var0.isMaximumSizeSet(); + java.awt.peer.ComponentPeer var9 = var0.getPeer(); + var0.firePropertyChange("hi!", (-1), 499); + var0.list(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var2 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var9); + + } + + public void test291() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test291"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.repaint(1L); + SpaceWar.SpacePanel var7 = new SpaceWar.SpacePanel(); + float var8 = var7.getAlignmentX(); + var7.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var13 = new SpaceWar.SpacePanel(); + float var14 = var13.getAlignmentX(); + var13.setVisible(false); + java.awt.Dimension var17 = var13.getPreferredSize(); + var7.setMaximumSize(var17); + var0.setPreferredSize(var17); + javax.swing.plaf.PanelUI var20 = var0.getUI(); + SpaceWar.SpacePanel var21 = new SpaceWar.SpacePanel(); + float var22 = var21.getAlignmentX(); + var21.setVisible(false); + var21.nextFocus(); + var21.reshape((-1), 1, (-1), 10); + var21.disable(); + java.awt.LayoutManager var32 = var21.getLayout(); + java.awt.Container var33 = var21.getParent(); + java.lang.String var34 = var21.getUIClassID(); + SpaceWar.Enemy var37 = new SpaceWar.Enemy(0, 10); + var0.add((java.awt.Component)var21, (java.lang.Object)10); + javax.swing.JToolTip var39 = var0.createToolTip(); + java.awt.Point var40 = var39.getMousePosition(); + java.lang.String var41 = var39.toString(); + int var42 = var39.getComponentCount(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var22 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var32); + + // Regression assertion (captures the current behavior of the code) + assertNull(var33); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var34 + "' != '" + "PanelUI"+ "'", var34.equals("PanelUI")); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var39); + + // Regression assertion (captures the current behavior of the code) + assertNull(var40); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var42 == 0); + + } + + public void test292() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test292"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.updateUI(); + java.util.Locale var6 = var0.getLocale(); + var0.paintImmediately(25, 100, 3, 0); + java.awt.Container var12 = var0.getTopLevelAncestor(); + float var13 = var0.getAlignmentX(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == 0.5f); + + } + + public void test293() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test293"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + var0.list(); + float var6 = var0.getAlignmentY(); + java.awt.Insets var7 = var0.getInsets(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var14 = new SpaceWar.SpacePanel(); + float var15 = var14.getAlignmentX(); + var14.setVisible(false); + java.awt.Dimension var18 = var14.getPreferredSize(); + var8.setMaximumSize(var18); + java.awt.Dimension var20 = var0.getSize(var18); + var0.setFocusTraversalKeysEnabled(false); + int var23 = var0.getX(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == 0); + + } + + public void test294() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test294"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + boolean var2 = var0.hasFocus(); + boolean var3 = var0.isPreferredSizeSet(); + var0.setIgnoreRepaint(false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var2 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == true); + + } + + public void test295() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test295"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.updateUI(); + var0.enableInputMethods(true); + var0.setSize((-1), 1); + boolean var13 = var0.contains(1, 1); + SpaceWar.SpacePanel var14 = new SpaceWar.SpacePanel(); + var14.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + javax.swing.plaf.PanelUI var19 = var14.getUI(); + java.awt.Color var20 = var14.getBackground(); + var14.removeAll(); + var14.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", (short)(-1), (short)100); + java.awt.GraphicsConfiguration var26 = var14.getGraphicsConfiguration(); + SpaceWar.SpacePanel var27 = new SpaceWar.SpacePanel(); + float var28 = var27.getAlignmentX(); + SpaceWar.SpacePanel var29 = new SpaceWar.SpacePanel(); + float var30 = var29.getAlignmentX(); + var29.setVisible(false); + java.awt.Dimension var33 = var29.getPreferredSize(); + boolean var34 = var29.getVerifyInputWhenFocusTarget(); + java.awt.Component var37 = var29.findComponentAt(10, 1); + var27.addKeyListener((java.awt.event.KeyListener)var29); + var29.repaint(100, (-1), (-1), 1); + java.awt.image.ColorModel var44 = var29.getColorModel(); + boolean var45 = var29.isFocusTraversalPolicyProvider(); + var29.show(false); + boolean var48 = var29.isManagingFocus(); + SpaceWar.SpacePanel var49 = new SpaceWar.SpacePanel(); + java.awt.Color var50 = var49.getBackground(); + var49.repaint(); + var49.setRequestFocusEnabled(false); + var49.reshape(100, 0, 100, 0); + var49.requestFocus(); + java.awt.Rectangle var60 = var49.getVisibleRect(); + java.awt.Rectangle var61 = var49.getBounds(); + java.awt.im.InputMethodRequests var62 = var49.getInputMethodRequests(); + boolean var63 = var49.requestFocusInWindow(); + java.awt.Point var65 = var49.getMousePosition(false); + var49.setDebugGraphicsOptions(1); + java.awt.Graphics var68 = var49.getGraphics(); + var29.paint(var68); + var14.paintAll(var68); + var0.update(var68); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var28 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var30 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var33); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var34 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var37); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var44); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var45 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var48 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var50); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var60); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var61); + + // Regression assertion (captures the current behavior of the code) + assertNull(var62); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var63 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var65); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var68); + + } + + public void test296() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test296"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + SpaceWar.SpacePanel var2 = new SpaceWar.SpacePanel(); + float var3 = var2.getAlignmentX(); + var2.setVisible(false); + java.awt.Dimension var6 = var2.getPreferredSize(); + boolean var7 = var2.getVerifyInputWhenFocusTarget(); + java.awt.Component var10 = var2.findComponentAt(10, 1); + var0.addKeyListener((java.awt.event.KeyListener)var2); + var2.repaint(100, (-1), (-1), 1); + java.awt.image.ColorModel var17 = var2.getColorModel(); + boolean var18 = var2.isFocusTraversalPolicyProvider(); + float var19 = var2.getAlignmentX(); + javax.swing.InputVerifier var20 = var2.getInputVerifier(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNull(var20); + + } + + public void test297() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test297"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var1 = new SpaceWar.SpacePanel(); + java.awt.Color var2 = var1.getBackground(); + SpaceWar.SpacePanel var3 = new SpaceWar.SpacePanel(); + float var4 = var3.getAlignmentX(); + var3.setVisible(false); + var3.nextFocus(); + var3.updateUI(); + var3.enableInputMethods(true); + var0.add((java.awt.Component)var1, (java.lang.Object)true); + boolean var12 = var0.isMinimumSizeSet(); + java.awt.event.HierarchyListener[] var13 = var0.getHierarchyListeners(); + var0.repaint(0L); + SpaceWar.SpacePanel var16 = new SpaceWar.SpacePanel(); + float var17 = var16.getAlignmentX(); + var16.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var22 = var16.getUI(); + java.awt.im.InputMethodRequests var23 = var16.getInputMethodRequests(); + SpaceWar.SpacePanel var24 = new SpaceWar.SpacePanel(); + float var25 = var24.getAlignmentX(); + var24.setVisible(false); + var24.nextFocus(); + var24.updateUI(); + var24.enableInputMethods(true); + var24.setSize((-1), 1); + SpaceWar.SpacePanel var35 = new SpaceWar.SpacePanel(); + var35.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var16.add((java.awt.Component)var24, (java.lang.Object)"SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + java.awt.ComponentOrientation var41 = var24.getComponentOrientation(); + java.beans.VetoableChangeListener[] var42 = var24.getVetoableChangeListeners(); + int var43 = var24.getHeight(); + javax.swing.ActionMap var44 = var24.getActionMap(); + var0.setActionMap(var44); + SpaceWar.SpacePanel var46 = new SpaceWar.SpacePanel(); + java.awt.Color var47 = var46.getBackground(); + var46.repaint(); + java.awt.im.InputMethodRequests var49 = var46.getInputMethodRequests(); + var46.list(); + SpaceWar.SpacePanel var51 = new SpaceWar.SpacePanel(); + java.awt.Color var52 = var51.getBackground(); + var51.repaint(); + var51.setRequestFocusEnabled(false); + var51.reshape(100, 0, 100, 0); + var51.requestFocus(); + java.awt.Rectangle var62 = var51.getVisibleRect(); + java.awt.Rectangle var63 = var51.getBounds(); + java.awt.im.InputMethodRequests var64 = var51.getInputMethodRequests(); + boolean var65 = var51.requestFocusInWindow(); + java.awt.Point var67 = var51.getMousePosition(false); + var51.setDebugGraphicsOptions(1); + java.awt.Graphics var70 = var51.getGraphics(); + var46.printComponents(var70); + var0.paint(var70); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var2); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertNull(var23); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var41); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var42); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var43 == 1); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var44); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var47); + + // Regression assertion (captures the current behavior of the code) + assertNull(var49); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var52); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var62); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var63); + + // Regression assertion (captures the current behavior of the code) + assertNull(var64); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var65 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var67); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var70); + + } + + public void test298() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test298"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + java.awt.im.InputMethodRequests var3 = var0.getInputMethodRequests(); + int var4 = var0.countComponents(); + java.awt.event.ComponentListener[] var5 = var0.getComponentListeners(); + var0.removeNotify(); + java.awt.Component var9 = var0.getComponentAt(1, (-1)); + java.awt.image.BufferedImage var11 = var0.loadImg("SpaceWar.SpacePanel[,0,0,0x0,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + boolean var14 = var0.contains(400, 500); + var0.nextFocus(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertNull(var9); + + // Regression assertion (captures the current behavior of the code) + assertNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == false); + + } + + public void test299() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test299"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var6 = var0.getMouseListeners(); + int var7 = var0.getDebugGraphicsOptions(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + boolean var12 = var8.isDoubleBuffered(); + java.awt.dnd.DropTarget var13 = var8.getDropTarget(); + var8.show(false); + java.awt.Rectangle var16 = var8.getVisibleRect(); + var0.paintImmediately(var16); + SpaceWar.SpacePanel var18 = new SpaceWar.SpacePanel(); + float var19 = var18.getAlignmentX(); + var18.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var24 = var18.getMouseListeners(); + int var25 = var18.getDebugGraphicsOptions(); + SpaceWar.SpacePanel var26 = new SpaceWar.SpacePanel(); + float var27 = var26.getAlignmentX(); + var26.setVisible(false); + boolean var30 = var26.isDoubleBuffered(); + java.awt.dnd.DropTarget var31 = var26.getDropTarget(); + var26.show(false); + java.awt.Rectangle var34 = var26.getVisibleRect(); + var18.paintImmediately(var34); + java.awt.Rectangle var36 = var18.getBounds(); + var0.scrollRectToVisible(var36); + SpaceWar.SpacePanel var38 = new SpaceWar.SpacePanel(); + java.awt.Color var39 = var38.getBackground(); + var38.repaint(); + var38.setRequestFocusEnabled(false); + var38.setIgnoreRepaint(false); + boolean var45 = var38.requestFocusInWindow(); + float var46 = var38.getAlignmentY(); + java.awt.LayoutManager var47 = var38.getLayout(); + var0.setLayout(var47); + float var49 = var0.getAlignmentY(); + java.awt.Dimension var50 = var0.minimumSize(); + var0.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=java.awt.Dimension[width=800,height=600],minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", (short)1, (short)1); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var30 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var31); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var34); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var36); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var39); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var45 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var46 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var47); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var49 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var50); + + } + + public void test300() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test300"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + java.awt.Color var7 = var6.getBackground(); + var6.repaint(); + var6.setRequestFocusEnabled(false); + var6.reshape(100, 0, 100, 0); + var6.requestFocus(); + SpaceWar.SpacePanel var17 = new SpaceWar.SpacePanel(); + float var18 = var17.getAlignmentX(); + var17.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var23 = var17.getUI(); + java.awt.im.InputMethodRequests var24 = var17.getInputMethodRequests(); + SpaceWar.SpacePanel var25 = new SpaceWar.SpacePanel(); + float var26 = var25.getAlignmentX(); + var25.setVisible(false); + var25.nextFocus(); + var25.updateUI(); + var25.enableInputMethods(true); + var25.setSize((-1), 1); + SpaceWar.SpacePanel var36 = new SpaceWar.SpacePanel(); + var36.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var17.add((java.awt.Component)var25, (java.lang.Object)"SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + SpaceWar.SpacePanel var42 = new SpaceWar.SpacePanel(); + var42.setName(""); + java.awt.ComponentOrientation var45 = var42.getComponentOrientation(); + var17.applyComponentOrientation(var45); + var6.setComponentOrientation(var45); + var0.applyComponentOrientation(var45); + int var49 = var0.getHeight(); + boolean var52 = var0.inside(3, 2); + java.beans.PropertyChangeListener[] var53 = var0.getPropertyChangeListeners(); + var0.setVisible(false); + SpaceWar.SpacePanel var56 = new SpaceWar.SpacePanel(); + float var57 = var56.getAlignmentX(); + var56.firePropertyChange("", (-1), 1); + java.awt.event.MouseMotionListener[] var62 = var56.getMouseMotionListeners(); + java.awt.event.ComponentListener[] var63 = var56.getComponentListeners(); + SpaceWar.SpacePanel var64 = new SpaceWar.SpacePanel(); + float var65 = var64.getAlignmentX(); + var64.setVisible(false); + var64.nextFocus(); + var64.repaint(1L); + SpaceWar.SpacePanel var71 = new SpaceWar.SpacePanel(); + float var72 = var71.getAlignmentX(); + var71.setVisible(false); + boolean var75 = var71.isDoubleBuffered(); + var71.list(); + SpaceWar.SpacePanel var77 = new SpaceWar.SpacePanel(); + float var78 = var77.getAlignmentX(); + var77.setVisible(false); + boolean var81 = var77.isDoubleBuffered(); + java.awt.dnd.DropTarget var82 = var77.getDropTarget(); + var77.show(false); + java.awt.Rectangle var85 = var77.getVisibleRect(); + java.awt.Rectangle var86 = var71.getBounds(var85); + var64.setBounds(var86); + var56.paintImmediately(var86); + var0.putClientProperty((java.lang.Object)var86, (java.lang.Object)'4'); + javax.accessibility.AccessibleContext var91 = var0.getAccessibleContext(); + int var92 = var0.getWidth(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var23); + + // Regression assertion (captures the current behavior of the code) + assertNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var45); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var49 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var52 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var53); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var57 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var62); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var63); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var65 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var72 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var75 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var78 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var81 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var82); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var85); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var86); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var91); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var92 == 0); + + } + + public void test301() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test301"); + + + SpaceWar.Player var0 = new SpaceWar.Player(); + int var1 = var0.getPower(); + var0.setLeft(true); + var0.increasePower(0); + boolean var6 = var0.isDead(); + int var7 = var0.getX(); + var0.setFiring(false); + var0.increasePower(10); + var0.setLife(399); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 400); + + } + + public void test302() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test302"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + float var7 = var6.getAlignmentX(); + var6.setVisible(false); + SpaceWar.SpacePanel var10 = new SpaceWar.SpacePanel(); + java.awt.Color var11 = var10.getBackground(); + var6.setForeground(var11); + var0.setBackground(var11); + var0.grabFocus(); + SpaceWar.SpacePanel var15 = new SpaceWar.SpacePanel(); + float var16 = var15.getAlignmentX(); + var15.setVisible(false); + boolean var19 = var15.isDoubleBuffered(); + java.awt.dnd.DropTarget var20 = var15.getDropTarget(); + boolean var21 = var15.isFocusCycleRoot(); + SpaceWar.SpacePanel var22 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var23 = new SpaceWar.SpacePanel(); + java.awt.Color var24 = var23.getBackground(); + SpaceWar.SpacePanel var25 = new SpaceWar.SpacePanel(); + float var26 = var25.getAlignmentX(); + var25.setVisible(false); + var25.nextFocus(); + var25.updateUI(); + var25.enableInputMethods(true); + var22.add((java.awt.Component)var23, (java.lang.Object)true); + java.awt.Dimension var34 = var23.getPreferredSize(); + var15.setSize(var34); + var0.setMaximumSize(var34); + var0.enable(); + var0.repaint(0L); + var0.transferFocus(); + var0.setVisible(true); + var0.show(); + var0.grabFocus(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var34); + + } + + public void test303() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test303"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + javax.swing.plaf.PanelUI var3 = var0.getUI(); + SpaceWar.SpacePanel var4 = new SpaceWar.SpacePanel(); + float var5 = var4.getAlignmentX(); + var4.setVisible(false); + boolean var8 = var4.isDoubleBuffered(); + java.awt.dnd.DropTarget var9 = var4.getDropTarget(); + var4.show(false); + boolean var12 = var4.isPaintingForPrint(); + SpaceWar.SpacePanel var13 = new SpaceWar.SpacePanel(); + float var14 = var13.getAlignmentX(); + var13.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var19 = var13.getMouseListeners(); + int var20 = var13.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var21 = var13.getInputMethodRequests(); + var4.addKeyListener((java.awt.event.KeyListener)var13); + SpaceWar.SpacePanel var23 = new SpaceWar.SpacePanel(); + float var24 = var23.getAlignmentX(); + var23.setVisible(false); + boolean var27 = var23.isDoubleBuffered(); + var23.list(); + float var29 = var23.getAlignmentY(); + boolean var30 = var13.isFocusCycleRoot((java.awt.Container)var23); + SpaceWar.SpacePanel var32 = new SpaceWar.SpacePanel(); + float var33 = var32.getAlignmentX(); + var32.setVisible(false); + var32.nextFocus(); + var32.updateUI(); + java.awt.Component var38 = var13.add("", (java.awt.Component)var32); + java.awt.ComponentOrientation var39 = var32.getComponentOrientation(); + boolean var40 = var32.isFocusable(); + var0.remove((java.awt.Component)var32); + var0.hide(); + var0.setToolTipText("hi!"); + boolean var45 = var0.isFocusable(); + // The following exception was thrown during execution. + // This behavior will recorded for regression testing. + try { + var0.remove(2); + fail("Expected exception of type java.lang.ArrayIndexOutOfBoundsException"); + } catch (java.lang.ArrayIndexOutOfBoundsException e) { + // Expected exception. + } + + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var9); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var21); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var24 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var29 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var30 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var33 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var38); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var39); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var40 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var45 == true); + + } + + public void test304() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test304"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + SpaceWar.SpacePanel var4 = new SpaceWar.SpacePanel(); + java.awt.Color var5 = var4.getBackground(); + var0.setForeground(var5); + SpaceWar.SpacePanel var7 = new SpaceWar.SpacePanel(); + float var8 = var7.getAlignmentX(); + var7.setVisible(false); + boolean var11 = var7.isDoubleBuffered(); + java.awt.dnd.DropTarget var12 = var7.getDropTarget(); + var7.show(false); + java.awt.Rectangle var15 = var7.getVisibleRect(); + var0.repaint(var15); + java.awt.FocusTraversalPolicy var17 = var0.getFocusTraversalPolicy(); + var0.resetKeyboardActions(); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + float var20 = var19.getAlignmentX(); + var19.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var25 = var19.getMouseListeners(); + int var26 = var19.getDebugGraphicsOptions(); + SpaceWar.SpacePanel var27 = new SpaceWar.SpacePanel(); + float var28 = var27.getAlignmentX(); + var27.setVisible(false); + boolean var31 = var27.isDoubleBuffered(); + java.awt.dnd.DropTarget var32 = var27.getDropTarget(); + var27.show(false); + java.awt.Rectangle var35 = var27.getVisibleRect(); + var19.paintImmediately(var35); + var0.setBounds(var35); + boolean var38 = var0.getVerifyInputWhenFocusTarget(); + boolean var39 = var0.isOptimizedDrawingEnabled(); + boolean var40 = var0.isShowing(); + var0.setIgnoreRepaint(true); + java.awt.ComponentOrientation var43 = var0.getComponentOrientation(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var25); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var28 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var31 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var32); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var35); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var38 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var39 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var40 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var43); + + } + + public void test305() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test305"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.reshape((-1), 1, (-1), 10); + SpaceWar.SpacePanel var10 = new SpaceWar.SpacePanel(); + java.awt.Color var11 = var10.getBackground(); + var10.repaint(); + var10.setRequestFocusEnabled(false); + var10.reshape(100, 0, 100, 0); + java.awt.Component var20 = var0.add((java.awt.Component)var10); + var0.removeNotify(); + var0.requestFocus(); + var0.setFocusCycleRoot(false); + var0.layout(); + java.lang.String var26 = var0.toString(); + javax.swing.JToolTip var27 = var0.createToolTip(); + java.awt.Component[] var28 = var0.getComponents(); + var0.setVerifyInputWhenFocusTarget(false); + SpaceWar.SpacePanel var31 = new SpaceWar.SpacePanel(); + float var32 = var31.getAlignmentX(); + var31.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var37 = var31.getMouseListeners(); + var31.firePropertyChange("", 0.5f, 100.0f); + var31.enable(false); + var31.enable(); + SpaceWar.SpacePanel var45 = new SpaceWar.SpacePanel(); + var45.setName(""); + java.awt.Toolkit var48 = var45.getToolkit(); + var45.setEnabled(false); + var45.removeNotify(); + boolean var52 = var45.isDisplayable(); + SpaceWar.SpacePanel var53 = new SpaceWar.SpacePanel(); + java.awt.Color var54 = var53.getBackground(); + var53.repaint(); + var53.setRequestFocusEnabled(false); + var53.reshape(100, 0, 100, 0); + var53.requestFocus(); + java.awt.Rectangle var64 = var53.getVisibleRect(); + java.awt.Rectangle var65 = var53.getBounds(); + java.awt.im.InputMethodRequests var66 = var53.getInputMethodRequests(); + boolean var67 = var53.requestFocusInWindow(); + java.awt.Point var69 = var53.getMousePosition(false); + var53.setDebugGraphicsOptions(1); + java.awt.Graphics var72 = var53.getGraphics(); + var45.paintAll(var72); + var31.printComponents(var72); + var0.update(var72); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var26 + "' != '" + "SpaceWar.SpacePanel[,-1,1,-1x10,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"+ "'", var26.equals("SpaceWar.SpacePanel[,-1,1,-1x10,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]")); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var27); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var28); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var32 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var37); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var48); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var52 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var54); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var64); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var65); + + // Regression assertion (captures the current behavior of the code) + assertNull(var66); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var67 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var69); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var72); + + } + + public void test306() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test306"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.reshape((-1), 1, (-1), 10); + var0.disable(); + java.awt.LayoutManager var11 = var0.getLayout(); + java.awt.Container var12 = var0.getParent(); + boolean var13 = var0.isOptimizedDrawingEnabled(); + var0.grabFocus(); + int var15 = var0.getHeight(); + java.util.Set var17 = var0.getFocusTraversalKeys(3); + boolean var19 = var0.requestFocus(true); + SpaceWar.SpacePanel var20 = new SpaceWar.SpacePanel(); + float var21 = var20.getAlignmentX(); + var20.setVisible(false); + boolean var24 = var20.isDoubleBuffered(); + java.awt.dnd.DropTarget var25 = var20.getDropTarget(); + java.awt.Point var26 = var20.getMousePosition(); + java.lang.String var27 = var20.getUIClassID(); + var20.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", '#', '4'); + boolean var32 = var20.requestDefaultFocus(); + java.awt.Point var34 = var20.getMousePosition(false); + java.awt.Rectangle var35 = var20.getBounds(); + var0.repaint(var35); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == 10); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var24 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var25); + + // Regression assertion (captures the current behavior of the code) + assertNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var27 + "' != '" + "PanelUI"+ "'", var27.equals("PanelUI")); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var32 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var34); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var35); + + } + + public void test307() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test307"); + + + SpaceWar.Enemy var2 = new SpaceWar.Enemy(0, 100); + var2.explode(); + boolean var4 = var2.isDead(); + double var5 = var2.getX(); + boolean var6 = var2.isDead(); + boolean var7 = var2.isDead(); + var2.explode(); + double var9 = var2.getY(); + double var10 = var2.getY(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == 231.92567970223837d); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.0d); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.0d); + + } + + public void test308() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test308"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + SpaceWar.SpacePanel var5 = new SpaceWar.SpacePanel(); + float var6 = var5.getAlignmentX(); + var5.setVisible(false); + var5.nextFocus(); + var5.reshape((-1), 1, (-1), 10); + var5.disable(); + boolean var16 = var5.isFocusable(); + int var17 = var5.getHeight(); + var0.setNextFocusableComponent((java.awt.Component)var5); + java.util.Set var20 = var0.getFocusTraversalKeys(0); + SpaceWar.SpacePanel var21 = new SpaceWar.SpacePanel(); + float var22 = var21.getAlignmentX(); + var21.setVisible(false); + SpaceWar.SpacePanel var25 = new SpaceWar.SpacePanel(); + java.awt.Color var26 = var25.getBackground(); + var21.setForeground(var26); + SpaceWar.SpacePanel var28 = new SpaceWar.SpacePanel(); + float var29 = var28.getAlignmentX(); + var28.setVisible(false); + boolean var32 = var28.isDoubleBuffered(); + java.awt.dnd.DropTarget var33 = var28.getDropTarget(); + var28.show(false); + java.awt.Rectangle var36 = var28.getVisibleRect(); + var21.repaint(var36); + java.awt.FocusTraversalPolicy var38 = var21.getFocusTraversalPolicy(); + SpaceWar.SpacePanel var39 = new SpaceWar.SpacePanel(); + float var40 = var39.getAlignmentX(); + var39.firePropertyChange("", (-1), 1); + boolean var45 = var39.isFocusOwner(); + SpaceWar.SpacePanel var47 = new SpaceWar.SpacePanel(); + float var48 = var47.getAlignmentX(); + var47.setVisible(false); + java.awt.Dimension var51 = var47.getPreferredSize(); + java.awt.Toolkit var52 = var47.getToolkit(); + SpaceWar.SpacePanel var53 = new SpaceWar.SpacePanel(); + var53.setName(""); + int var56 = var53.getX(); + SpaceWar.SpacePanel var57 = new SpaceWar.SpacePanel(); + float var58 = var57.getAlignmentX(); + var57.setVisible(false); + var57.nextFocus(); + SpaceWar.SpacePanel var62 = new SpaceWar.SpacePanel(); + float var63 = var62.getAlignmentX(); + var62.setVisible(false); + SpaceWar.SpacePanel var66 = new SpaceWar.SpacePanel(); + java.awt.Color var67 = var66.getBackground(); + var62.setForeground(var67); + var57.setBackground(var67); + var53.setBackground(var67); + var47.setForeground(var67); + var39.putClientProperty((java.lang.Object)(byte)100, (java.lang.Object)var67); + var21.setBackground(var67); + SpaceWar.SpacePanel var74 = new SpaceWar.SpacePanel(); + float var75 = var74.getAlignmentX(); + var74.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var80 = new SpaceWar.SpacePanel(); + float var81 = var80.getAlignmentX(); + var80.setVisible(false); + SpaceWar.SpacePanel var84 = new SpaceWar.SpacePanel(); + java.awt.Color var85 = var84.getBackground(); + var80.setForeground(var85); + var74.setBackground(var85); + java.awt.Point var88 = var74.location(); + java.awt.Point var89 = var21.getLocation(var88); + boolean var90 = var0.contains(var88); + java.awt.Point var91 = var0.getLocation(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == 10); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var22 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var29 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var32 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var33); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var36); + + // Regression assertion (captures the current behavior of the code) + assertNull(var38); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var40 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var45 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var48 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var51); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var52); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var56 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var58 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var63 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var67); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var75 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var81 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var85); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var88); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var89); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var90 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var91); + + } + + public void test309() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test309"); + + + SpaceWar.Player var0 = new SpaceWar.Player(); + var0.increasePower(25); + int var3 = var0.getScore(); + var0.setRigth(true); + int var6 = var0.getRequiredPower(); + var0.setLeft(false); + var0.setUp(true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == 2); + + } + + public void test310() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test310"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + SpaceWar.SpacePanel var4 = new SpaceWar.SpacePanel(); + java.awt.Color var5 = var4.getBackground(); + var0.setForeground(var5); + SpaceWar.SpacePanel var7 = new SpaceWar.SpacePanel(); + float var8 = var7.getAlignmentX(); + var7.setVisible(false); + boolean var11 = var7.isDoubleBuffered(); + java.awt.dnd.DropTarget var12 = var7.getDropTarget(); + var7.show(false); + java.awt.Rectangle var15 = var7.getVisibleRect(); + var0.repaint(var15); + java.awt.FocusTraversalPolicy var17 = var0.getFocusTraversalPolicy(); + SpaceWar.SpacePanel var18 = new SpaceWar.SpacePanel(); + float var19 = var18.getAlignmentX(); + var18.firePropertyChange("", (-1), 1); + boolean var24 = var18.isFocusOwner(); + SpaceWar.SpacePanel var26 = new SpaceWar.SpacePanel(); + float var27 = var26.getAlignmentX(); + var26.setVisible(false); + java.awt.Dimension var30 = var26.getPreferredSize(); + java.awt.Toolkit var31 = var26.getToolkit(); + SpaceWar.SpacePanel var32 = new SpaceWar.SpacePanel(); + var32.setName(""); + int var35 = var32.getX(); + SpaceWar.SpacePanel var36 = new SpaceWar.SpacePanel(); + float var37 = var36.getAlignmentX(); + var36.setVisible(false); + var36.nextFocus(); + SpaceWar.SpacePanel var41 = new SpaceWar.SpacePanel(); + float var42 = var41.getAlignmentX(); + var41.setVisible(false); + SpaceWar.SpacePanel var45 = new SpaceWar.SpacePanel(); + java.awt.Color var46 = var45.getBackground(); + var41.setForeground(var46); + var36.setBackground(var46); + var32.setBackground(var46); + var26.setForeground(var46); + var18.putClientProperty((java.lang.Object)(byte)100, (java.lang.Object)var46); + var0.setBackground(var46); + SpaceWar.SpacePanel var53 = new SpaceWar.SpacePanel(); + float var54 = var53.getAlignmentX(); + var53.setVisible(false); + boolean var57 = var53.isDoubleBuffered(); + java.awt.dnd.DropTarget var58 = var53.getDropTarget(); + var53.show(false); + boolean var61 = var53.isPaintingForPrint(); + SpaceWar.SpacePanel var62 = new SpaceWar.SpacePanel(); + float var63 = var62.getAlignmentX(); + SpaceWar.SpacePanel var64 = new SpaceWar.SpacePanel(); + float var65 = var64.getAlignmentX(); + var64.setVisible(false); + java.awt.Dimension var68 = var64.getPreferredSize(); + boolean var69 = var64.getVerifyInputWhenFocusTarget(); + java.awt.Component var72 = var64.findComponentAt(10, 1); + var62.addKeyListener((java.awt.event.KeyListener)var64); + java.awt.Dimension var74 = var64.getMinimumSize(); + var53.setMinimumSize(var74); + java.awt.Dimension var76 = var0.getSize(var74); + var0.doLayout(); + var0.removeNotify(); + javax.swing.TransferHandler var79 = var0.getTransferHandler(); + java.awt.ComponentOrientation var80 = var0.getComponentOrientation(); + java.awt.Rectangle var81 = var0.getVisibleRect(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var24 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var30); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var31); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var35 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var42 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var46); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var54 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var57 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var58); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var61 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var63 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var65 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var68); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var69 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var72); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var74); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var76); + + // Regression assertion (captures the current behavior of the code) + assertNull(var79); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var80); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var81); + + } + + public void test311() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test311"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + java.awt.Dimension var4 = var0.getPreferredSize(); + boolean var5 = var0.isFocusTraversalPolicyProvider(); + java.awt.event.HierarchyBoundsListener[] var6 = var0.getHierarchyBoundsListeners(); + boolean var7 = var0.isMaximumSizeSet(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var4); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == false); + + } + + public void test312() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test312"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + var0.setRequestFocusEnabled(false); + var0.reshape(100, 0, 100, 0); + javax.swing.event.AncestorListener[] var10 = var0.getAncestorListeners(); + var0.resize(10, 0); + java.awt.event.ComponentListener[] var14 = var0.getComponentListeners(); + boolean var15 = var0.isForegroundSet(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == true); + + } + + public void test313() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test313"); + + + SpaceWar.Enemy var2 = new SpaceWar.Enemy(0, 10); + int var3 = var2.getRank(); + int var4 = var2.getR(); + int var5 = var2.getR(); + int var6 = var2.getType(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == 10); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == 0); + + } + + public void test314() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test314"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.Graphics var5 = var0.getGraphics(); + java.awt.event.MouseMotionListener[] var6 = var0.getMouseMotionListeners(); + SpaceWar.SpacePanel var7 = new SpaceWar.SpacePanel(); + java.awt.Color var8 = var7.getBackground(); + var7.repaint(); + java.awt.im.InputMethodRequests var10 = var7.getInputMethodRequests(); + int var11 = var7.countComponents(); + java.awt.Dimension var12 = var7.getSize(); + SpaceWar.SpacePanel var13 = new SpaceWar.SpacePanel(); + var13.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + javax.swing.plaf.PanelUI var18 = var13.getUI(); + java.awt.Color var19 = var13.getBackground(); + var7.setBackground(var19); + var0.setBackground(var19); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var19); + + } + + public void test315() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test315"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.repaint(1L); + var0.firePropertyChange("", (short)(-1), (short)(-1)); + var0.setBounds(400, 1, (-1), 10); + java.awt.event.MouseMotionListener[] var16 = var0.getMouseMotionListeners(); + java.awt.Dimension var17 = var0.preferredSize(); + java.lang.String var18 = var0.getName(); + boolean var19 = var0.isCursorSet(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == false); + + } + + public void test316() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test316"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + var0.enable(false); + boolean var7 = var0.getFocusTraversalKeysEnabled(); + var0.setToolTipText("PanelUI"); + SpaceWar.SpacePanel var10 = new SpaceWar.SpacePanel(); + float var11 = var10.getAlignmentX(); + var10.setVisible(false); + boolean var14 = var10.isDoubleBuffered(); + java.awt.dnd.DropTarget var15 = var10.getDropTarget(); + var10.show(false); + boolean var18 = var10.isPaintingForPrint(); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + float var20 = var19.getAlignmentX(); + var19.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var25 = var19.getMouseListeners(); + int var26 = var19.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var27 = var19.getInputMethodRequests(); + var10.addKeyListener((java.awt.event.KeyListener)var19); + SpaceWar.SpacePanel var29 = new SpaceWar.SpacePanel(); + float var30 = var29.getAlignmentX(); + var29.setVisible(false); + boolean var33 = var29.isDoubleBuffered(); + var29.list(); + float var35 = var29.getAlignmentY(); + boolean var36 = var19.isFocusCycleRoot((java.awt.Container)var29); + var29.firePropertyChange("", 1L, 1L); + var29.setVerifyInputWhenFocusTarget(true); + SpaceWar.SpacePanel var43 = new SpaceWar.SpacePanel(); + var43.setName(""); + java.awt.Dimension var46 = var43.minimumSize(); + boolean var47 = var43.isDoubleBuffered(); + SpaceWar.SpacePanel var48 = new SpaceWar.SpacePanel(); + float var49 = var48.getAlignmentX(); + SpaceWar.SpacePanel var50 = new SpaceWar.SpacePanel(); + float var51 = var50.getAlignmentX(); + var50.setVisible(false); + java.awt.Dimension var54 = var50.getPreferredSize(); + boolean var55 = var50.getVerifyInputWhenFocusTarget(); + java.awt.Component var58 = var50.findComponentAt(10, 1); + var48.addKeyListener((java.awt.event.KeyListener)var50); + var50.repaint(100, (-1), (-1), 1); + SpaceWar.SpacePanel var65 = new SpaceWar.SpacePanel(); + java.awt.Color var66 = var65.getBackground(); + var65.repaint(); + java.awt.im.InputMethodRequests var68 = var65.getInputMethodRequests(); + java.awt.GraphicsConfiguration var69 = var65.getGraphicsConfiguration(); + var50.remove((java.awt.Component)var65); + java.awt.Font var71 = var65.getFont(); + java.awt.FontMetrics var72 = var43.getFontMetrics(var71); + java.awt.FontMetrics var73 = var29.getFontMetrics(var71); + var0.setFont(var71); + javax.swing.plaf.PanelUI var75 = var0.getUI(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var25); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var27); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var30 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var33 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var35 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var36 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var46); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var47 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var49 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var51 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var54); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var55 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var58); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var66); + + // Regression assertion (captures the current behavior of the code) + assertNull(var68); + + // Regression assertion (captures the current behavior of the code) + assertNull(var69); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var71); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var72); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var73); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var75); + + } + + public void test317() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test317"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + var0.setName(""); + java.awt.Dimension var3 = var0.minimumSize(); + boolean var4 = var0.isDoubleBuffered(); + var0.disable(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + } + + public void test318() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test318"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var6 = var0.getMouseListeners(); + java.awt.Dimension var7 = var0.getPreferredSize(); + java.util.Locale var8 = var0.getLocale(); + var0.setFocusable(true); + var0.transferFocusUpCycle(); + var0.setFocusable(false); + java.awt.Point var14 = var0.location(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + } + + public void test319() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test319"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var6 = var0.getMouseListeners(); + int var7 = var0.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var8 = var0.getInputMethodRequests(); + var0.removeNotify(); + var0.enable(); + SpaceWar.SpacePanel var11 = new SpaceWar.SpacePanel(); + java.awt.Color var12 = var11.getBackground(); + boolean var15 = var11.inside(0, (-1)); + var11.transferFocusUpCycle(); + java.lang.String var17 = var11.getName(); + boolean var18 = var0.isFocusCycleRoot((java.awt.Container)var11); + var0.requestFocus(); + SpaceWar.SpacePanel var20 = new SpaceWar.SpacePanel(); + float var21 = var20.getAlignmentX(); + var20.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var26 = new SpaceWar.SpacePanel(); + float var27 = var26.getAlignmentX(); + var26.setVisible(false); + java.awt.Dimension var30 = var26.getPreferredSize(); + var20.setMaximumSize(var30); + boolean var32 = var20.getVerifyInputWhenFocusTarget(); + java.awt.Toolkit var33 = var20.getToolkit(); + java.lang.String var34 = var20.getUIClassID(); + java.awt.Dimension var35 = var20.getMinimumSize(); + SpaceWar.SpacePanel var36 = new SpaceWar.SpacePanel(); + float var37 = var36.getAlignmentX(); + var36.setVisible(false); + var36.setInheritsPopupMenu(false); + var36.setFocusTraversalPolicyProvider(true); + SpaceWar.SpacePanel var44 = new SpaceWar.SpacePanel(); + float var45 = var44.getAlignmentX(); + var44.setVisible(false); + boolean var48 = var44.isDoubleBuffered(); + var44.list(); + SpaceWar.SpacePanel var50 = new SpaceWar.SpacePanel(); + float var51 = var50.getAlignmentX(); + var50.setVisible(false); + boolean var54 = var50.isDoubleBuffered(); + java.awt.dnd.DropTarget var55 = var50.getDropTarget(); + var50.show(false); + java.awt.Rectangle var58 = var50.getVisibleRect(); + java.awt.Rectangle var59 = var44.getBounds(var58); + javax.swing.JToolTip var60 = var44.createToolTip(); + var36.removeKeyListener((java.awt.event.KeyListener)var44); + javax.swing.TransferHandler var62 = var36.getTransferHandler(); + boolean var63 = var36.requestFocusInWindow(); + var0.add((java.awt.Component)var20, (java.lang.Object)var36); + java.awt.Graphics var65 = var36.getGraphics(); + javax.swing.KeyStroke[] var66 = var36.getRegisteredKeyStrokes(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var30); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var32 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var33); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var34 + "' != '" + "PanelUI"+ "'", var34.equals("PanelUI")); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var35); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var45 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var48 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var51 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var54 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var55); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var58); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var59); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var60); + + // Regression assertion (captures the current behavior of the code) + assertNull(var62); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var63 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var65); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var66); + + } + + public void test320() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test320"); + + + SpaceWar.Enemy var2 = new SpaceWar.Enemy(499, 499); + + } + + public void test321() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test321"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.updateUI(); + var0.enableInputMethods(true); + var0.setSize((-1), 1); + boolean var13 = var0.contains(1, 1); + javax.swing.TransferHandler var14 = var0.getTransferHandler(); + SpaceWar.SpacePanel var15 = new SpaceWar.SpacePanel(); + float var16 = var15.getAlignmentX(); + var15.setVisible(false); + boolean var19 = var15.isDoubleBuffered(); + var15.enable(false); + java.lang.Object var22 = var0.getClientProperty((java.lang.Object)false); + SpaceWar.SpacePanel var23 = new SpaceWar.SpacePanel(); + float var24 = var23.getAlignmentX(); + var23.setVisible(false); + SpaceWar.SpacePanel var27 = new SpaceWar.SpacePanel(); + java.awt.Color var28 = var27.getBackground(); + var23.setForeground(var28); + SpaceWar.SpacePanel var30 = new SpaceWar.SpacePanel(); + float var31 = var30.getAlignmentX(); + var30.setVisible(false); + boolean var34 = var30.isDoubleBuffered(); + java.awt.dnd.DropTarget var35 = var30.getDropTarget(); + var30.show(false); + java.awt.Rectangle var38 = var30.getVisibleRect(); + var23.repaint(var38); + java.awt.Component.BaselineResizeBehavior var40 = var23.getBaselineResizeBehavior(); + SpaceWar.SpacePanel var41 = new SpaceWar.SpacePanel(); + float var42 = var41.getAlignmentX(); + var41.setVisible(false); + var41.nextFocus(); + var41.repaint(1L); + SpaceWar.SpacePanel var48 = new SpaceWar.SpacePanel(); + float var49 = var48.getAlignmentX(); + var48.setVisible(false); + boolean var52 = var48.isDoubleBuffered(); + var48.list(); + SpaceWar.SpacePanel var54 = new SpaceWar.SpacePanel(); + float var55 = var54.getAlignmentX(); + var54.setVisible(false); + boolean var58 = var54.isDoubleBuffered(); + java.awt.dnd.DropTarget var59 = var54.getDropTarget(); + var54.show(false); + java.awt.Rectangle var62 = var54.getVisibleRect(); + java.awt.Rectangle var63 = var48.getBounds(var62); + var41.setBounds(var63); + var23.paintImmediately(var63); + SpaceWar.SpacePanel var66 = new SpaceWar.SpacePanel(); + float var67 = var66.getAlignmentX(); + var66.setVisible(false); + boolean var70 = var66.isDoubleBuffered(); + java.awt.dnd.DropTarget var71 = var66.getDropTarget(); + java.awt.Point var72 = var66.getMousePosition(); + boolean var73 = var66.getAutoscrolls(); + var0.add((java.awt.Component)var23, (java.lang.Object)var66); + boolean var75 = var0.isFocusOwner(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var24 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var28); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var31 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var34 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var35); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var38); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var40); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var42 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var49 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var52 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var55 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var58 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var59); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var62); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var63); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var67 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var70 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var71); + + // Regression assertion (captures the current behavior of the code) + assertNull(var72); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var73 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var75 == false); + + } + + public void test322() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test322"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + var0.show(false); + boolean var8 = var0.isPaintingForPrint(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var15 = var9.getMouseListeners(); + int var16 = var9.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var17 = var9.getInputMethodRequests(); + var0.addKeyListener((java.awt.event.KeyListener)var9); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + float var20 = var19.getAlignmentX(); + var19.setVisible(false); + boolean var23 = var19.isDoubleBuffered(); + var19.list(); + float var25 = var19.getAlignmentY(); + boolean var26 = var9.isFocusCycleRoot((java.awt.Container)var19); + SpaceWar.SpacePanel var28 = new SpaceWar.SpacePanel(); + float var29 = var28.getAlignmentX(); + var28.setVisible(false); + var28.nextFocus(); + var28.updateUI(); + java.awt.Component var34 = var9.add("", (java.awt.Component)var28); + var28.repaint(10L); + java.lang.String var37 = var28.getUIClassID(); + var28.transferFocusDownCycle(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var29 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var34); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var37 + "' != '" + "PanelUI"+ "'", var37.equals("PanelUI")); + + } + + public void test323() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test323"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.reshape((-1), 1, (-1), 10); + var0.disable(); + java.awt.LayoutManager var11 = var0.getLayout(); + var0.setVisible(false); + javax.accessibility.AccessibleContext var14 = var0.getAccessibleContext(); + var0.setInheritsPopupMenu(false); + var0.repaint(0L); + var0.setRequestFocusEnabled(false); + javax.swing.JToolTip var21 = var0.createToolTip(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var21); + + } + + public void test324() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test324"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.updateUI(); + var0.enableInputMethods(true); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + boolean var10 = var8.hasFocus(); + java.awt.Insets var11 = var8.getInsets(); + java.awt.Insets var12 = var0.getInsets(var11); + var0.enable(true); + var0.nextFocus(); + java.beans.PropertyChangeListener[] var17 = var0.getPropertyChangeListeners("PanelUI"); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var20 = new SpaceWar.SpacePanel(); + java.awt.Color var21 = var20.getBackground(); + SpaceWar.SpacePanel var22 = new SpaceWar.SpacePanel(); + float var23 = var22.getAlignmentX(); + var22.setVisible(false); + var22.nextFocus(); + var22.updateUI(); + var22.enableInputMethods(true); + var19.add((java.awt.Component)var20, (java.lang.Object)true); + java.awt.Dimension var31 = var20.getPreferredSize(); + var20.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", (-1.0f), 100.0f); + SpaceWar.SpacePanel var36 = new SpaceWar.SpacePanel(); + float var37 = var36.getAlignmentX(); + var36.setVisible(false); + boolean var40 = var36.isDoubleBuffered(); + SpaceWar.SpacePanel var41 = new SpaceWar.SpacePanel(); + java.awt.Color var42 = var41.getBackground(); + var41.repaint(); + java.lang.Object var44 = var36.getClientProperty((java.lang.Object)var41); + var20.remove((java.awt.Component)var36); + var20.enable(); + var20.setIgnoreRepaint(true); + javax.swing.InputMap var49 = var20.getInputMap(); + // The following exception was thrown during execution. + // This behavior will recorded for regression testing. + try { + var0.setInputMap(505, var49); + fail("Expected exception of type java.lang.IllegalArgumentException"); + } catch (java.lang.IllegalArgumentException e) { + // Expected exception. + } + + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var21); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var31); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var40 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var42); + + // Regression assertion (captures the current behavior of the code) + assertNull(var44); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var49); + + } + + public void test325() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test325"); + + + SpaceWar.Bullet var3 = new SpaceWar.Bullet(594.7973940347722d, 3, 100); + double var4 = var3.getY(); + double var5 = var3.getR(); + boolean var6 = var3.update(); + double var7 = var3.getY(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 100.0d); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == 5.0d); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 91.8288132019285d); + + } + + public void test326() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test326"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + var0.setName(""); + java.awt.ComponentOrientation var3 = var0.getComponentOrientation(); + int var4 = var0.getComponentCount(); + java.awt.image.ColorModel var5 = var0.getColorModel(); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + java.awt.Color var7 = var6.getBackground(); + var6.repaint(); + var6.setRequestFocusEnabled(false); + var6.reshape(100, 0, 100, 0); + javax.swing.event.AncestorListener[] var16 = var6.getAncestorListeners(); + var6.grabFocus(); + java.lang.Object var18 = var0.getClientProperty((java.lang.Object)var6); + boolean var19 = var0.isEnabled(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == true); + + } + + public void test327() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test327"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var6 = var0.getUI(); + java.awt.im.InputMethodRequests var7 = var0.getInputMethodRequests(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + var8.nextFocus(); + var8.updateUI(); + var8.enableInputMethods(true); + var8.setSize((-1), 1); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + var19.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var0.add((java.awt.Component)var8, (java.lang.Object)"SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + SpaceWar.SpacePanel var25 = new SpaceWar.SpacePanel(); + float var26 = var25.getAlignmentX(); + var25.setVisible(false); + java.awt.Dimension var29 = var25.getPreferredSize(); + java.awt.Toolkit var30 = var25.getToolkit(); + java.awt.Toolkit var31 = var25.getToolkit(); + java.awt.Component var32 = var8.add((java.awt.Component)var25); + var8.setDebugGraphicsOptions(0); + java.lang.String var35 = var8.getUIClassID(); + var8.resetKeyboardActions(); + boolean var37 = var8.isValidateRoot(); + boolean var38 = var8.isDisplayable(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var29); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var30); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var31); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var32); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var35 + "' != '" + "PanelUI"+ "'", var35.equals("PanelUI")); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var38 == false); + + } + + public void test328() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test328"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + var0.setRequestFocusEnabled(false); + var0.reshape(100, 0, 100, 0); + var0.requestFocus(); + var0.firePropertyChange("hi!", '4', ' '); + java.awt.Point var15 = var0.getLocation(); + java.awt.Dimension var16 = var0.size(); + boolean var17 = var0.isDoubleBuffered(); + boolean var18 = var0.getFocusTraversalKeysEnabled(); + java.awt.Rectangle var19 = var0.getVisibleRect(); + boolean var20 = var0.isPaintingTile(); + SpaceWar.SpacePanel var21 = new SpaceWar.SpacePanel(); + var21.setName(""); + int var24 = var21.getX(); + SpaceWar.SpacePanel var25 = new SpaceWar.SpacePanel(); + float var26 = var25.getAlignmentX(); + var25.setVisible(false); + var25.nextFocus(); + SpaceWar.SpacePanel var30 = new SpaceWar.SpacePanel(); + float var31 = var30.getAlignmentX(); + var30.setVisible(false); + SpaceWar.SpacePanel var34 = new SpaceWar.SpacePanel(); + java.awt.Color var35 = var34.getBackground(); + var30.setForeground(var35); + var25.setBackground(var35); + var21.setBackground(var35); + boolean var39 = var21.isFocusable(); + java.awt.Dimension var40 = var21.minimumSize(); + var0.setPreferredSize(var40); + SpaceWar.SpacePanel var42 = new SpaceWar.SpacePanel(); + float var43 = var42.getAlignmentX(); + var42.setVisible(false); + SpaceWar.SpacePanel var46 = new SpaceWar.SpacePanel(); + java.awt.Color var47 = var46.getBackground(); + var42.setForeground(var47); + SpaceWar.SpacePanel var49 = new SpaceWar.SpacePanel(); + float var50 = var49.getAlignmentX(); + var49.setVisible(false); + boolean var53 = var49.isDoubleBuffered(); + java.awt.dnd.DropTarget var54 = var49.getDropTarget(); + var49.show(false); + java.awt.Rectangle var57 = var49.getVisibleRect(); + var42.repaint(var57); + java.awt.FocusTraversalPolicy var59 = var42.getFocusTraversalPolicy(); + java.awt.im.InputMethodRequests var60 = var42.getInputMethodRequests(); + var42.layout(); + SpaceWar.SpacePanel var62 = new SpaceWar.SpacePanel(); + float var63 = var62.getAlignmentX(); + var62.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var68 = new SpaceWar.SpacePanel(); + float var69 = var68.getAlignmentX(); + var68.setVisible(false); + SpaceWar.SpacePanel var72 = new SpaceWar.SpacePanel(); + java.awt.Color var73 = var72.getBackground(); + var68.setForeground(var73); + var62.setBackground(var73); + var42.setForeground(var73); + int var77 = var42.getWidth(); + javax.swing.plaf.PanelUI var78 = var42.getUI(); + var0.setUI(var78); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var24 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var31 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var35); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var39 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var40); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var43 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var47); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var50 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var53 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var54); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var57); + + // Regression assertion (captures the current behavior of the code) + assertNull(var59); + + // Regression assertion (captures the current behavior of the code) + assertNull(var60); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var63 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var69 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var73); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var77 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var78); + + } + + public void test329() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test329"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + float var7 = var6.getAlignmentX(); + var6.setVisible(false); + java.awt.Dimension var10 = var6.getPreferredSize(); + var0.setMaximumSize(var10); + boolean var12 = var0.getVerifyInputWhenFocusTarget(); + boolean var13 = var0.isFontSet(); + boolean var14 = var0.getIgnoreRepaint(); + java.awt.Component var17 = var0.locate(1, 25); + boolean var18 = var0.isLightweight(); + var0.move(100, 500); + var0.resetKeyboardActions(); + java.awt.Dimension var23 = var0.preferredSize(); + java.awt.Point var24 = var0.getLocation(); + java.awt.Component[] var25 = var0.getComponents(); + java.awt.im.InputContext var26 = var0.getInputContext(); + var0.setDebugGraphicsOptions(100); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var23); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var25); + + // Regression assertion (captures the current behavior of the code) + assertNull(var26); + + } + + public void test330() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test330"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + SpaceWar.SpacePanel var2 = new SpaceWar.SpacePanel(); + float var3 = var2.getAlignmentX(); + var2.setVisible(false); + java.awt.Dimension var6 = var2.getPreferredSize(); + boolean var7 = var2.getVerifyInputWhenFocusTarget(); + java.awt.Component var10 = var2.findComponentAt(10, 1); + var0.addKeyListener((java.awt.event.KeyListener)var2); + SpaceWar.SpacePanel var12 = new SpaceWar.SpacePanel(); + float var13 = var12.getAlignmentX(); + SpaceWar.SpacePanel var14 = new SpaceWar.SpacePanel(); + float var15 = var14.getAlignmentX(); + var14.setVisible(false); + java.awt.Dimension var18 = var14.getPreferredSize(); + boolean var19 = var14.getVerifyInputWhenFocusTarget(); + java.awt.Component var22 = var14.findComponentAt(10, 1); + var12.addKeyListener((java.awt.event.KeyListener)var14); + var14.repaint(100, (-1), (-1), 1); + java.awt.image.ColorModel var29 = var14.getColorModel(); + SpaceWar.SpacePanel var30 = new SpaceWar.SpacePanel(); + float var31 = var30.getAlignmentX(); + var30.setVisible(false); + boolean var34 = var30.isDoubleBuffered(); + var30.list(); + SpaceWar.SpacePanel var36 = new SpaceWar.SpacePanel(); + float var37 = var36.getAlignmentX(); + var36.setVisible(false); + boolean var40 = var36.isDoubleBuffered(); + java.awt.dnd.DropTarget var41 = var36.getDropTarget(); + var36.show(false); + java.awt.Rectangle var44 = var36.getVisibleRect(); + java.awt.image.BufferedImage var46 = var36.loadImg("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + boolean var47 = var30.isAncestorOf((java.awt.Component)var36); + javax.swing.InputVerifier var48 = var36.getInputVerifier(); + var2.putClientProperty((java.lang.Object)var14, (java.lang.Object)var36); + javax.swing.JToolTip var50 = var2.createToolTip(); + boolean var51 = var50.isFocusTraversable(); + boolean var52 = var50.isEnabled(); + SpaceWar.SpacePanel var53 = new SpaceWar.SpacePanel(); + float var54 = var53.getAlignmentX(); + var53.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var59 = new SpaceWar.SpacePanel(); + float var60 = var59.getAlignmentX(); + var59.setVisible(false); + java.awt.Dimension var63 = var59.getPreferredSize(); + var53.setMaximumSize(var63); + boolean var65 = var53.getVerifyInputWhenFocusTarget(); + java.awt.Toolkit var66 = var53.getToolkit(); + java.awt.Dimension var67 = var53.minimumSize(); + java.awt.Insets var68 = var53.insets(); + java.awt.Insets var69 = var50.getInsets(var68); + java.awt.Color var70 = var50.getBackground(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var29); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var31 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var34 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var40 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var41); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var44); + + // Regression assertion (captures the current behavior of the code) + assertNull(var46); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var47 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var48); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var50); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var51 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var52 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var54 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var60 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var63); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var65 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var66); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var67); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var68); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var69); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var70); + + } + + public void test331() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test331"); + + + SpaceWar.Player var0 = new SpaceWar.Player(); + int var1 = var0.getPower(); + var0.setLeft(true); + var0.increasePower(0); + boolean var6 = var0.isDead(); + var0.setFiring(true); + var0.setRigth(false); + var0.setDown(true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == false); + + } + + public void test332() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test332"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + var0.list(); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + float var7 = var6.getAlignmentX(); + var6.setVisible(false); + boolean var10 = var6.isDoubleBuffered(); + java.awt.dnd.DropTarget var11 = var6.getDropTarget(); + var6.show(false); + java.awt.Rectangle var14 = var6.getVisibleRect(); + java.awt.Rectangle var15 = var0.getBounds(var14); + javax.swing.JToolTip var16 = var0.createToolTip(); + boolean var17 = var0.isFocusTraversalPolicySet(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == false); + + } + + public void test333() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test333"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + boolean var2 = var0.hasFocus(); + boolean var3 = var0.isPreferredSizeSet(); + SpaceWar.SpacePanel var4 = new SpaceWar.SpacePanel(); + java.awt.Color var5 = var4.getBackground(); + var4.repaint(); + var4.setRequestFocusEnabled(false); + int var9 = var0.getComponentZOrder((java.awt.Component)var4); + int var10 = var0.getDebugGraphicsOptions(); + var0.enableInputMethods(true); + boolean var13 = javax.swing.JComponent.isLightweightComponent((java.awt.Component)var0); + java.awt.image.VolatileImage var16 = var0.createVolatileImage(24, 3); + SpaceWar.SpacePanel var17 = new SpaceWar.SpacePanel(); + float var18 = var17.getAlignmentX(); + var17.setVisible(false); + var17.nextFocus(); + var17.reshape((-1), 1, (-1), 10); + var17.disable(); + boolean var28 = var17.isFocusable(); + int var29 = var17.getHeight(); + SpaceWar.SpacePanel var30 = new SpaceWar.SpacePanel(); + float var31 = var30.getAlignmentX(); + var30.setVisible(false); + boolean var34 = var30.isDoubleBuffered(); + java.awt.dnd.DropTarget var35 = var30.getDropTarget(); + var30.show(false); + boolean var38 = var30.isPaintingForPrint(); + SpaceWar.SpacePanel var39 = new SpaceWar.SpacePanel(); + float var40 = var39.getAlignmentX(); + SpaceWar.SpacePanel var41 = new SpaceWar.SpacePanel(); + float var42 = var41.getAlignmentX(); + var41.setVisible(false); + java.awt.Dimension var45 = var41.getPreferredSize(); + boolean var46 = var41.getVerifyInputWhenFocusTarget(); + java.awt.Component var49 = var41.findComponentAt(10, 1); + var39.addKeyListener((java.awt.event.KeyListener)var41); + java.awt.Dimension var51 = var41.getMinimumSize(); + var30.setMinimumSize(var51); + var17.resize(var51); + java.awt.Dimension var54 = var0.getSize(var51); + var0.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", 559.7948801674848d, 370.2289277239558d); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var2 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == (-1)); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var28 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var29 == 10); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var31 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var34 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var35); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var38 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var40 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var42 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var45); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var46 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var49); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var51); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var54); + + } + + public void test334() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test334"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + boolean var6 = var0.isFocusTraversalPolicyProvider(); + SpaceWar.SpacePanel var7 = new SpaceWar.SpacePanel(); + java.awt.Color var8 = var7.getBackground(); + var7.repaint(); + var7.setRequestFocusEnabled(false); + var7.reshape(100, 0, 100, 0); + var7.requestFocus(); + var7.firePropertyChange("hi!", '4', ' '); + java.awt.Point var22 = var7.getLocation(); + java.awt.Dimension var23 = var7.size(); + boolean var24 = var7.isDoubleBuffered(); + var7.reshape(0, 3, 25, 3); + java.awt.Font var30 = var7.getFont(); + var0.setFont(var30); + java.awt.Container var32 = var0.getParent(); + java.awt.Toolkit var33 = var0.getToolkit(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var23); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var24 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var30); + + // Regression assertion (captures the current behavior of the code) + assertNull(var32); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var33); + + } + + public void test335() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test335"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.setInheritsPopupMenu(false); + boolean var6 = var0.isDoubleBuffered(); + boolean var7 = var0.isMinimumSizeSet(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var14 = new SpaceWar.SpacePanel(); + float var15 = var14.getAlignmentX(); + var14.setVisible(false); + java.awt.Dimension var18 = var14.getPreferredSize(); + var8.setMaximumSize(var18); + boolean var20 = var8.getVerifyInputWhenFocusTarget(); + javax.accessibility.AccessibleContext var21 = var8.getAccessibleContext(); + boolean var22 = var8.isDoubleBuffered(); + java.awt.Rectangle var23 = var8.getVisibleRect(); + var0.setBounds(var23); + SpaceWar.SpacePanel var25 = new SpaceWar.SpacePanel(); + var25.setName(""); + var25.enable(true); + var25.enable(); + java.awt.Point var31 = var25.location(); + var25.repaint(0, 3, (-1), 1); + java.awt.Component var39 = var25.findComponentAt(0, 25); + var0.setNextFocusableComponent((java.awt.Component)var25); + boolean var41 = var0.isEnabled(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var21); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var22 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var23); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var31); + + // Regression assertion (captures the current behavior of the code) + assertNull(var39); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var41 == true); + + } + + public void test336() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test336"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + var0.show(false); + boolean var8 = var0.isPaintingForPrint(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var15 = var9.getMouseListeners(); + int var16 = var9.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var17 = var9.getInputMethodRequests(); + var0.addKeyListener((java.awt.event.KeyListener)var9); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + float var20 = var19.getAlignmentX(); + var19.setVisible(false); + boolean var23 = var19.isDoubleBuffered(); + var19.list(); + float var25 = var19.getAlignmentY(); + boolean var26 = var9.isFocusCycleRoot((java.awt.Container)var19); + var19.firePropertyChange("", 1L, 1L); + var19.setVerifyInputWhenFocusTarget(true); + java.awt.Cursor var33 = var19.getCursor(); + var19.layout(); + SpaceWar.SpacePanel var35 = new SpaceWar.SpacePanel(); + float var36 = var35.getAlignmentX(); + var35.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var41 = var35.getMouseListeners(); + int var42 = var35.getDebugGraphicsOptions(); + SpaceWar.SpacePanel var43 = new SpaceWar.SpacePanel(); + float var44 = var43.getAlignmentX(); + var43.setVisible(false); + boolean var47 = var43.isDoubleBuffered(); + java.awt.dnd.DropTarget var48 = var43.getDropTarget(); + var43.show(false); + java.awt.Rectangle var51 = var43.getVisibleRect(); + var35.paintImmediately(var51); + boolean var53 = var35.isFocusCycleRoot(); + var35.list(); + boolean var55 = var19.isFocusCycleRoot((java.awt.Container)var35); + boolean var56 = var19.requestFocusInWindow(); + java.awt.peer.ComponentPeer var57 = var19.getPeer(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var33); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var36 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var41); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var42 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var44 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var47 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var48); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var51); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var53 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var55 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var56 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var57); + + } + + public void test337() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test337"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.updateUI(); + var0.enableInputMethods(true); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + boolean var10 = var8.hasFocus(); + java.awt.Insets var11 = var8.getInsets(); + java.awt.Insets var12 = var0.getInsets(var11); + boolean var13 = var0.isManagingFocus(); + java.awt.Image var16 = var0.createImage(1, 10); + boolean var17 = var0.isOptimizedDrawingEnabled(); + SpaceWar.SpacePanel var18 = new SpaceWar.SpacePanel(); + float var19 = var18.getAlignmentX(); + var18.setVisible(false); + boolean var22 = var18.isDoubleBuffered(); + java.awt.dnd.DropTarget var23 = var18.getDropTarget(); + var18.show(false); + boolean var26 = var18.isPaintingForPrint(); + SpaceWar.SpacePanel var27 = new SpaceWar.SpacePanel(); + float var28 = var27.getAlignmentX(); + var27.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var33 = var27.getMouseListeners(); + int var34 = var27.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var35 = var27.getInputMethodRequests(); + var18.addKeyListener((java.awt.event.KeyListener)var27); + SpaceWar.SpacePanel var37 = new SpaceWar.SpacePanel(); + float var38 = var37.getAlignmentX(); + var37.setVisible(false); + boolean var41 = var37.isDoubleBuffered(); + var37.list(); + float var43 = var37.getAlignmentY(); + boolean var44 = var27.isFocusCycleRoot((java.awt.Container)var37); + boolean var45 = var37.isEnabled(); + java.awt.Dimension var46 = var37.getMaximumSize(); + var37.disable(); + java.awt.peer.ComponentPeer var48 = var37.getPeer(); + var37.list(); + SpaceWar.SpacePanel var50 = new SpaceWar.SpacePanel(); + java.awt.Color var51 = var50.getBackground(); + var50.repaint(); + var50.setRequestFocusEnabled(false); + var50.reshape(100, 0, 100, 0); + var50.requestFocus(); + java.awt.Rectangle var61 = var50.getVisibleRect(); + java.awt.Rectangle var62 = var50.getBounds(); + java.awt.im.InputMethodRequests var63 = var50.getInputMethodRequests(); + boolean var64 = var50.requestFocusInWindow(); + java.awt.Point var66 = var50.getMousePosition(false); + var50.setDebugGraphicsOptions(1); + java.awt.Graphics var69 = var50.getGraphics(); + var37.paintAll(var69); + var0.update(var69); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var22 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var23); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var28 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var33); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var34 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var35); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var38 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var41 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var43 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var44 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var45 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var46); + + // Regression assertion (captures the current behavior of the code) + assertNull(var48); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var51); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var61); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var62); + + // Regression assertion (captures the current behavior of the code) + assertNull(var63); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var64 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var66); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var69); + + } + + public void test338() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test338"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + boolean var6 = var0.isFocusCycleRoot(); + SpaceWar.SpacePanel var7 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + java.awt.Color var9 = var8.getBackground(); + SpaceWar.SpacePanel var10 = new SpaceWar.SpacePanel(); + float var11 = var10.getAlignmentX(); + var10.setVisible(false); + var10.nextFocus(); + var10.updateUI(); + var10.enableInputMethods(true); + var7.add((java.awt.Component)var8, (java.lang.Object)true); + java.awt.Dimension var19 = var8.getPreferredSize(); + var0.setSize(var19); + var0.updateUI(); + SpaceWar.SpacePanel var22 = new SpaceWar.SpacePanel(); + float var23 = var22.getAlignmentX(); + var22.setVisible(false); + java.awt.Dimension var26 = var22.getPreferredSize(); + java.awt.Toolkit var27 = var22.getToolkit(); + boolean var28 = var22.isFocusable(); + javax.swing.KeyStroke[] var29 = var22.getRegisteredKeyStrokes(); + SpaceWar.SpacePanel var30 = new SpaceWar.SpacePanel(); + float var31 = var30.getAlignmentX(); + SpaceWar.SpacePanel var32 = new SpaceWar.SpacePanel(); + float var33 = var32.getAlignmentX(); + var32.setVisible(false); + java.awt.Dimension var36 = var32.getPreferredSize(); + boolean var37 = var32.getVerifyInputWhenFocusTarget(); + java.awt.Component var40 = var32.findComponentAt(10, 1); + var30.addKeyListener((java.awt.event.KeyListener)var32); + var32.repaint(100, (-1), (-1), 1); + boolean var47 = var22.isAncestorOf((java.awt.Component)var32); + java.awt.Point var48 = var22.location(); + boolean var49 = var0.contains(var48); + var0.repaint(10L); + var0.firePropertyChange("SpaceWar.SpacePanel[,100,0,100x0,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", 24, 2); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var9); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var27); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var28 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var29); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var31 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var33 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var36); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var40); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var47 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var48); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var49 == true); + + } + + public void test339() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test339"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var1 = new SpaceWar.SpacePanel(); + java.awt.Color var2 = var1.getBackground(); + SpaceWar.SpacePanel var3 = new SpaceWar.SpacePanel(); + float var4 = var3.getAlignmentX(); + var3.setVisible(false); + var3.nextFocus(); + var3.updateUI(); + var3.enableInputMethods(true); + var0.add((java.awt.Component)var1, (java.lang.Object)true); + java.awt.Dimension var12 = var1.getPreferredSize(); + var1.move(100, 10); + boolean var16 = var1.getAutoscrolls(); + boolean var17 = var1.getInheritsPopupMenu(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var2); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == false); + + } + + public void test340() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test340"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + var0.setRequestFocusEnabled(false); + var0.reshape(100, 0, 100, 0); + var0.requestFocus(); + java.awt.Rectangle var11 = var0.getVisibleRect(); + java.awt.Rectangle var12 = var0.getBounds(); + java.awt.im.InputMethodRequests var13 = var0.getInputMethodRequests(); + boolean var14 = var0.requestFocusInWindow(); + java.awt.Toolkit var15 = var0.getToolkit(); + int var18 = var0.getBaseline(2, 499); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + float var20 = var19.getAlignmentX(); + boolean var21 = var19.hasFocus(); + java.awt.Insets var22 = var19.getInsets(); + java.awt.Rectangle var23 = var19.bounds(); + java.awt.event.MouseMotionListener[] var24 = var19.getMouseMotionListeners(); + boolean var25 = var19.isMaximumSizeSet(); + java.awt.LayoutManager var26 = var19.getLayout(); + java.awt.Rectangle var27 = var19.getBounds(); + var19.transferFocusBackward(); + SpaceWar.SpacePanel var29 = new SpaceWar.SpacePanel(); + float var30 = var29.getAlignmentX(); + var29.setVisible(false); + boolean var33 = var29.isDoubleBuffered(); + var29.list(); + float var35 = var29.getAlignmentY(); + java.awt.event.ComponentListener[] var36 = var29.getComponentListeners(); + java.awt.Component var37 = var29.getNextFocusableComponent(); + boolean var38 = var29.isManagingFocus(); + javax.swing.border.Border var39 = var29.getBorder(); + java.lang.Object var40 = var29.getTreeLock(); + javax.swing.border.Border var41 = var29.getBorder(); + var29.setEnabled(false); + SpaceWar.SpacePanel var44 = new SpaceWar.SpacePanel(); + float var45 = var44.getAlignmentX(); + SpaceWar.SpacePanel var46 = new SpaceWar.SpacePanel(); + float var47 = var46.getAlignmentX(); + var46.setVisible(false); + java.awt.Dimension var50 = var46.getPreferredSize(); + boolean var51 = var46.getVerifyInputWhenFocusTarget(); + java.awt.Component var54 = var46.findComponentAt(10, 1); + var44.addKeyListener((java.awt.event.KeyListener)var46); + var46.repaint(100, (-1), (-1), 1); + java.awt.image.ColorModel var61 = var46.getColorModel(); + boolean var62 = var46.isFocusTraversalPolicyProvider(); + var46.show(false); + boolean var65 = var46.isManagingFocus(); + SpaceWar.SpacePanel var66 = new SpaceWar.SpacePanel(); + java.awt.Color var67 = var66.getBackground(); + var66.repaint(); + var66.setRequestFocusEnabled(false); + var66.reshape(100, 0, 100, 0); + var66.requestFocus(); + java.awt.Rectangle var77 = var66.getVisibleRect(); + java.awt.Rectangle var78 = var66.getBounds(); + java.awt.im.InputMethodRequests var79 = var66.getInputMethodRequests(); + boolean var80 = var66.requestFocusInWindow(); + java.awt.Point var82 = var66.getMousePosition(false); + var66.setDebugGraphicsOptions(1); + java.awt.Graphics var85 = var66.getGraphics(); + var46.paint(var85); + var29.paintComponents(var85); + var19.update(var85); + var0.update(var85); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == (-1)); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var23); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var27); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var30 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var33 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var35 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var36); + + // Regression assertion (captures the current behavior of the code) + assertNull(var37); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var38 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var39); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var40); + + // Regression assertion (captures the current behavior of the code) + assertNull(var41); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var45 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var47 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var50); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var51 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var54); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var61); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var62 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var65 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var67); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var77); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var78); + + // Regression assertion (captures the current behavior of the code) + assertNull(var79); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var80 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var82); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var85); + + } + + public void test341() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test341"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.setInheritsPopupMenu(false); + var0.setFocusTraversalPolicyProvider(true); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + java.awt.Color var9 = var8.getBackground(); + var8.repaint(); + java.awt.im.InputMethodRequests var11 = var8.getInputMethodRequests(); + java.awt.GraphicsConfiguration var12 = var8.getGraphicsConfiguration(); + java.awt.Component var13 = var0.add((java.awt.Component)var8); + boolean var14 = var8.isDisplayable(); + boolean var17 = var8.contains(100, 500); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var9); + + // Regression assertion (captures the current behavior of the code) + assertNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == false); + + } + + public void test342() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test342"); + + + SpaceWar.Bullet var3 = new SpaceWar.Bullet(594.7973940347722d, 3, 100); + boolean var4 = var3.update(); + boolean var5 = var3.update(); + boolean var6 = var3.update(); + boolean var7 = var3.update(); + double var8 = var3.getX(); + double var9 = var3.getR(); + double var10 = var3.getR(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == (-20.05877926032409d)); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 5.0d); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 5.0d); + + } + + public void test343() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test343"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + var0.setRequestFocusEnabled(false); + var0.reshape(100, 0, 100, 0); + javax.swing.event.AncestorListener[] var10 = var0.getAncestorListeners(); + var0.resize(10, 0); + java.awt.Dimension var14 = var0.preferredSize(); + java.awt.im.InputMethodRequests var15 = var0.getInputMethodRequests(); + var0.setVerifyInputWhenFocusTarget(true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertNull(var15); + + } + + public void test344() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test344"); + + + SpaceWar.Enemy var2 = new SpaceWar.Enemy(0, 100); + var2.explode(); + java.awt.image.BufferedImage var5 = var2.loadImg("SpaceWar.SpacePanel[,-1,1,-1x10,invalid,hidden,disabled,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + double var6 = var2.getY(); + var2.hit(); + int var8 = var2.getRank(); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == 0.0d); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 100); + + } + + public void test345() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test345"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + java.awt.Dimension var4 = var0.getPreferredSize(); + java.awt.Toolkit var5 = var0.getToolkit(); + boolean var6 = var0.isFocusable(); + javax.swing.KeyStroke[] var7 = var0.getRegisteredKeyStrokes(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + var8.nextFocus(); + SpaceWar.SpacePanel var13 = new SpaceWar.SpacePanel(); + float var14 = var13.getAlignmentX(); + var13.setVisible(false); + SpaceWar.SpacePanel var17 = new SpaceWar.SpacePanel(); + java.awt.Color var18 = var17.getBackground(); + var13.setForeground(var18); + var8.setBackground(var18); + var0.setBackground(var18); + SpaceWar.SpacePanel var22 = new SpaceWar.SpacePanel(); + float var23 = var22.getAlignmentX(); + var22.setVisible(false); + boolean var26 = var22.isDoubleBuffered(); + var22.list(); + var22.setAutoscrolls(false); + var0.removeKeyListener((java.awt.event.KeyListener)var22); + java.awt.event.MouseWheelListener[] var31 = var22.getMouseWheelListeners(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var4); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var31); + + } + + public void test346() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test346"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + java.awt.Dimension var4 = var0.getPreferredSize(); + java.awt.Toolkit var5 = var0.getToolkit(); + boolean var6 = var0.isFocusable(); + javax.swing.KeyStroke[] var7 = var0.getRegisteredKeyStrokes(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + SpaceWar.SpacePanel var10 = new SpaceWar.SpacePanel(); + float var11 = var10.getAlignmentX(); + var10.setVisible(false); + java.awt.Dimension var14 = var10.getPreferredSize(); + boolean var15 = var10.getVerifyInputWhenFocusTarget(); + java.awt.Component var18 = var10.findComponentAt(10, 1); + var8.addKeyListener((java.awt.event.KeyListener)var10); + var10.repaint(100, (-1), (-1), 1); + boolean var25 = var0.isAncestorOf((java.awt.Component)var10); + var0.nextFocus(); + var0.disable(); + java.awt.Dimension var28 = var0.size(); + boolean var29 = var0.isFocusTraversalPolicySet(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var4); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var28); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var29 == false); + + } + + public void test347() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test347"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.requestFocus(); + boolean var6 = var0.isBackgroundSet(); + SpaceWar.SpacePanel var7 = new SpaceWar.SpacePanel(); + java.awt.Color var8 = var7.getBackground(); + var7.repaint(); + var7.setRequestFocusEnabled(false); + var7.reshape(100, 0, 100, 0); + SpaceWar.SpacePanel var17 = new SpaceWar.SpacePanel(); + float var18 = var17.getAlignmentX(); + var17.setVisible(false); + var17.setInheritsPopupMenu(false); + boolean var23 = var17.isDoubleBuffered(); + SpaceWar.SpacePanel var24 = new SpaceWar.SpacePanel(); + float var25 = var24.getAlignmentX(); + var24.setVisible(false); + var24.nextFocus(); + var24.reshape((-1), 1, (-1), 10); + var24.disable(); + java.awt.LayoutManager var35 = var24.getLayout(); + var17.setLayout(var35); + var0.add((java.awt.Component)var7, (java.lang.Object)var35); + var0.setVerifyInputWhenFocusTarget(true); + java.awt.event.HierarchyListener[] var40 = var0.getHierarchyListeners(); + boolean var41 = var0.getVerifyInputWhenFocusTarget(); + boolean var42 = var0.isValid(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var35); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var40); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var41 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var42 == false); + + } + + public void test348() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test348"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var1 = new SpaceWar.SpacePanel(); + java.awt.Color var2 = var1.getBackground(); + SpaceWar.SpacePanel var3 = new SpaceWar.SpacePanel(); + float var4 = var3.getAlignmentX(); + var3.setVisible(false); + var3.nextFocus(); + var3.updateUI(); + var3.enableInputMethods(true); + var0.add((java.awt.Component)var1, (java.lang.Object)true); + java.awt.Image var14 = var1.createImage(1, (-1)); + java.awt.event.MouseListener[] var15 = var1.getMouseListeners(); + var1.firePropertyChange("SpaceWar.SpacePanel[,-1,1,-1x10,invalid,hidden,disabled,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", 100.0d, 1.0d); + var1.setLocation(24, 3); + int var23 = var1.getHeight(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var2); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == 0); + + } + + public void test349() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test349"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + var0.show(false); + boolean var8 = var0.isPaintingForPrint(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var15 = var9.getMouseListeners(); + int var16 = var9.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var17 = var9.getInputMethodRequests(); + var0.addKeyListener((java.awt.event.KeyListener)var9); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + float var20 = var19.getAlignmentX(); + var19.setVisible(false); + boolean var23 = var19.isDoubleBuffered(); + var19.list(); + float var25 = var19.getAlignmentY(); + boolean var26 = var9.isFocusCycleRoot((java.awt.Container)var19); + javax.swing.JPopupMenu var27 = var19.getComponentPopupMenu(); + var19.move((-1), 100); + var19.validate(); + java.awt.Toolkit var32 = var19.getToolkit(); + SpaceWar.SpacePanel var33 = new SpaceWar.SpacePanel(); + float var34 = var33.getAlignmentX(); + var33.setVisible(false); + boolean var37 = var33.isDoubleBuffered(); + SpaceWar.SpacePanel var38 = new SpaceWar.SpacePanel(); + java.awt.Color var39 = var38.getBackground(); + var38.repaint(); + java.lang.Object var41 = var33.getClientProperty((java.lang.Object)var38); + var38.repaint(10, 1, 25, 0); + var19.removeKeyListener((java.awt.event.KeyListener)var38); + SpaceWar.SpacePanel var48 = new SpaceWar.SpacePanel(); + float var49 = var48.getAlignmentX(); + SpaceWar.SpacePanel var50 = new SpaceWar.SpacePanel(); + float var51 = var50.getAlignmentX(); + var50.setVisible(false); + java.awt.Dimension var54 = var50.getPreferredSize(); + boolean var55 = var50.getVerifyInputWhenFocusTarget(); + java.awt.Component var58 = var50.findComponentAt(10, 1); + var48.addKeyListener((java.awt.event.KeyListener)var50); + var50.repaint(100, (-1), (-1), 1); + java.awt.image.ColorModel var65 = var50.getColorModel(); + boolean var66 = var50.isPreferredSizeSet(); + java.awt.peer.ComponentPeer var67 = var50.getPeer(); + SpaceWar.SpacePanel var68 = new SpaceWar.SpacePanel(); + java.awt.Color var69 = var68.getBackground(); + var68.repaint(); + var68.setRequestFocusEnabled(false); + var68.setIgnoreRepaint(false); + java.lang.String var75 = var68.toString(); + java.awt.Color var76 = var68.getBackground(); + SpaceWar.SpacePanel var77 = new SpaceWar.SpacePanel(); + float var78 = var77.getAlignmentX(); + var77.setVisible(false); + java.awt.Dimension var81 = var77.getPreferredSize(); + java.awt.Toolkit var82 = var77.getToolkit(); + java.awt.Toolkit var83 = var77.getToolkit(); + SpaceWar.Player var84 = new SpaceWar.Player(); + var84.increasePower(25); + int var87 = var84.getScore(); + var84.setRigth(true); + var84.loseLife(); + var68.putClientProperty((java.lang.Object)var77, (java.lang.Object)var84); + var38.putClientProperty((java.lang.Object)var50, (java.lang.Object)var77); + // The following exception was thrown during execution. + // This behavior will recorded for regression testing. + try { + boolean var94 = var77.areFocusTraversalKeysSet(499); + fail("Expected exception of type java.lang.IllegalArgumentException"); + } catch (java.lang.IllegalArgumentException e) { + // Expected exception. + } + + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var27); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var32); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var34 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var39); + + // Regression assertion (captures the current behavior of the code) + assertNull(var41); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var49 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var51 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var54); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var55 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var58); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var65); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var66 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var67); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var69); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var75 + "' != '" + "SpaceWar.SpacePanel[,0,0,0var75,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"+ "'", var75.equals("SpaceWar.SpacePanel[,0,0,0var75,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]")); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var76); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var78 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var81); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var82); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var83); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var87 == 0); + + } + + public void test350() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test350"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + boolean var2 = var0.hasFocus(); + java.awt.Insets var3 = var0.insets(); + boolean var5 = var0.requestFocus(false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var2 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == false); + + } + + public void test351() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test351"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.reshape((-1), 1, (-1), 10); + SpaceWar.SpacePanel var10 = new SpaceWar.SpacePanel(); + java.awt.Color var11 = var10.getBackground(); + var10.repaint(); + var10.setRequestFocusEnabled(false); + var10.reshape(100, 0, 100, 0); + java.awt.Component var20 = var0.add((java.awt.Component)var10); + SpaceWar.SpacePanel var21 = new SpaceWar.SpacePanel(); + var21.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + javax.swing.plaf.PanelUI var26 = var21.getUI(); + SpaceWar.SpacePanel var27 = new SpaceWar.SpacePanel(); + float var28 = var27.getAlignmentX(); + var27.setVisible(false); + var27.nextFocus(); + var27.repaint(1L); + SpaceWar.SpacePanel var34 = new SpaceWar.SpacePanel(); + float var35 = var34.getAlignmentX(); + var34.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var40 = new SpaceWar.SpacePanel(); + float var41 = var40.getAlignmentX(); + var40.setVisible(false); + java.awt.Dimension var44 = var40.getPreferredSize(); + var34.setMaximumSize(var44); + var27.setPreferredSize(var44); + var21.setMaximumSize(var44); + java.awt.Dimension var48 = var10.getSize(var44); + var10.transferFocusUpCycle(); + boolean var50 = var10.hasFocus(); + java.lang.String var51 = var10.getToolTipText(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var28 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var35 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var41 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var44); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var48); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var50 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var51); + + } + + public void test352() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test352"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + java.awt.im.InputMethodRequests var3 = var0.getInputMethodRequests(); + var0.setDoubleBuffered(true); + var0.show(false); + var0.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", (-1), 24); + SpaceWar.SpacePanel var12 = new SpaceWar.SpacePanel(); + java.awt.Color var13 = var12.getBackground(); + var12.repaint(); + java.awt.im.InputMethodRequests var15 = var12.getInputMethodRequests(); + int var16 = var12.countComponents(); + java.awt.event.ComponentListener[] var17 = var12.getComponentListeners(); + var12.removeNotify(); + javax.swing.InputMap var19 = var12.getInputMap(); + SpaceWar.SpacePanel var20 = new SpaceWar.SpacePanel(); + float var21 = var20.getAlignmentX(); + var20.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var26 = new SpaceWar.SpacePanel(); + float var27 = var26.getAlignmentX(); + var26.setVisible(false); + SpaceWar.SpacePanel var30 = new SpaceWar.SpacePanel(); + java.awt.Color var31 = var30.getBackground(); + var26.setForeground(var31); + var20.setBackground(var31); + java.awt.Point var34 = var20.location(); + var12.setLocation(var34); + var0.setLocation(var34); + boolean var37 = javax.swing.JComponent.isLightweightComponent((java.awt.Component)var0); + var0.setSize(24, 400); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var31); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var34); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == false); + + } + + public void test353() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test353"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + var0.show(false); + boolean var8 = var0.isPaintingForPrint(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var15 = var9.getMouseListeners(); + int var16 = var9.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var17 = var9.getInputMethodRequests(); + var0.addKeyListener((java.awt.event.KeyListener)var9); + boolean var19 = var0.isDisplayable(); + java.awt.Insets var20 = var0.getInsets(); + int var21 = var0.getDebugGraphicsOptions(); + var0.list(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == 0); + + } + + public void test354() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test354"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + java.awt.im.InputMethodRequests var3 = var0.getInputMethodRequests(); + int var4 = var0.countComponents(); + java.awt.event.ComponentListener[] var5 = var0.getComponentListeners(); + var0.removeNotify(); + javax.swing.InputMap var7 = var0.getInputMap(); + int var8 = var0.getDebugGraphicsOptions(); + java.awt.Graphics var9 = var0.getGraphics(); + var0.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", (short)(-1), (short)100); + boolean var14 = var0.isEnabled(); + java.awt.Container var15 = var0.getParent(); + boolean var16 = var0.isValidateRoot(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var9); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == false); + + } + + public void test355() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test355"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + java.awt.im.InputMethodRequests var3 = var0.getInputMethodRequests(); + int var4 = var0.countComponents(); + java.awt.event.ComponentListener[] var5 = var0.getComponentListeners(); + var0.removeNotify(); + javax.swing.InputMap var7 = var0.getInputMap(); + java.awt.Cursor var8 = var0.getCursor(); + var0.doLayout(); + var0.transferFocusDownCycle(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var8); + + } + + public void test356() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test356"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + var0.show(false); + java.awt.Rectangle var8 = var0.getVisibleRect(); + java.awt.image.BufferedImage var10 = var0.loadImg("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + java.awt.ComponentOrientation var11 = var0.getComponentOrientation(); + boolean var12 = var0.isPaintingTile(); + java.awt.LayoutManager var13 = var0.getLayout(); + SpaceWar.SpacePanel var14 = new SpaceWar.SpacePanel(); + java.awt.Color var15 = var14.getBackground(); + var14.repaint(); + java.awt.im.InputMethodRequests var17 = var14.getInputMethodRequests(); + int var18 = var14.countComponents(); + java.awt.event.ComponentListener[] var19 = var14.getComponentListeners(); + SpaceWar.SpacePanel var20 = new SpaceWar.SpacePanel(); + float var21 = var20.getAlignmentX(); + var20.removeNotify(); + SpaceWar.SpacePanel var23 = new SpaceWar.SpacePanel(); + float var24 = var23.getAlignmentX(); + var23.setVisible(false); + boolean var27 = var23.isDoubleBuffered(); + var23.list(); + float var29 = var23.getAlignmentY(); + java.awt.Insets var30 = var23.getInsets(); + java.awt.Insets var31 = var20.getInsets(var30); + java.awt.Insets var32 = var14.getInsets(var31); + var14.removeAll(); + java.awt.Point var34 = var14.location(); + java.lang.Object var35 = var0.getClientProperty((java.lang.Object)var14); + SpaceWar.SpacePanel var36 = new SpaceWar.SpacePanel(); + float var37 = var36.getAlignmentX(); + boolean var38 = var36.hasFocus(); + java.beans.VetoableChangeListener[] var39 = var36.getVetoableChangeListeners(); + var36.firePropertyChange("PanelUI", 1.0f, 100.0f); + SpaceWar.SpacePanel var44 = new SpaceWar.SpacePanel(); + float var45 = var44.getAlignmentX(); + var44.setVisible(false); + boolean var48 = var44.isDoubleBuffered(); + java.awt.dnd.DropTarget var49 = var44.getDropTarget(); + var44.show(false); + boolean var52 = var44.isPaintingForPrint(); + SpaceWar.SpacePanel var53 = new SpaceWar.SpacePanel(); + float var54 = var53.getAlignmentX(); + var53.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var59 = var53.getMouseListeners(); + int var60 = var53.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var61 = var53.getInputMethodRequests(); + var44.addKeyListener((java.awt.event.KeyListener)var53); + SpaceWar.SpacePanel var63 = new SpaceWar.SpacePanel(); + float var64 = var63.getAlignmentX(); + var63.setVisible(false); + boolean var67 = var63.isDoubleBuffered(); + var63.list(); + float var69 = var63.getAlignmentY(); + boolean var70 = var53.isFocusCycleRoot((java.awt.Container)var63); + boolean var71 = var63.isEnabled(); + java.awt.Dimension var72 = var63.getMaximumSize(); + var63.disable(); + java.awt.peer.ComponentPeer var74 = var63.getPeer(); + var63.list(); + SpaceWar.SpacePanel var76 = new SpaceWar.SpacePanel(); + java.awt.Color var77 = var76.getBackground(); + var76.repaint(); + var76.setRequestFocusEnabled(false); + var76.reshape(100, 0, 100, 0); + var76.requestFocus(); + java.awt.Rectangle var87 = var76.getVisibleRect(); + java.awt.Rectangle var88 = var76.getBounds(); + java.awt.im.InputMethodRequests var89 = var76.getInputMethodRequests(); + boolean var90 = var76.requestFocusInWindow(); + java.awt.Point var92 = var76.getMousePosition(false); + var76.setDebugGraphicsOptions(1); + java.awt.Graphics var95 = var76.getGraphics(); + var63.paintAll(var95); + var36.update(var95); + var0.update(var95); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var24 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var29 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var30); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var31); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var32); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var34); + + // Regression assertion (captures the current behavior of the code) + assertNull(var35); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var38 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var39); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var45 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var48 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var49); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var52 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var54 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var59); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var60 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var61); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var64 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var67 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var69 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var70 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var71 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var72); + + // Regression assertion (captures the current behavior of the code) + assertNull(var74); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var77); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var87); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var88); + + // Regression assertion (captures the current behavior of the code) + assertNull(var89); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var90 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var92); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var95); + + } + + public void test357() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test357"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + boolean var2 = var0.hasFocus(); + java.awt.Insets var3 = var0.getInsets(); + java.awt.Rectangle var4 = var0.bounds(); + java.awt.event.MouseMotionListener[] var5 = var0.getMouseMotionListeners(); + boolean var6 = var0.isMaximumSizeSet(); + java.awt.LayoutManager var7 = var0.getLayout(); + java.awt.Point var9 = var0.getMousePosition(false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var2 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var4); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertNull(var9); + + } + + public void test358() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test358"); + + + SpaceWar.Player var0 = new SpaceWar.Player(); + var0.increasePower(25); + int var3 = var0.getR(); + int var4 = var0.getScore(); + var0.loseLife(); + boolean var6 = var0.isRecovering(); + var0.loseLife(); + int var8 = var0.getRequiredPower(); + var0.increasePower(10); + java.awt.image.BufferedImage var12 = var0.loadImg("SpaceWar.SpacePanel[,10,10,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == 25); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 2); + + // Regression assertion (captures the current behavior of the code) + assertNull(var12); + + } + + public void test359() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test359"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + var0.show(false); + boolean var8 = var0.isPaintingForPrint(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var15 = var9.getMouseListeners(); + int var16 = var9.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var17 = var9.getInputMethodRequests(); + var0.addKeyListener((java.awt.event.KeyListener)var9); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + float var20 = var19.getAlignmentX(); + var19.setVisible(false); + boolean var23 = var19.isDoubleBuffered(); + var19.list(); + float var25 = var19.getAlignmentY(); + boolean var26 = var9.isFocusCycleRoot((java.awt.Container)var19); + boolean var27 = var19.isEnabled(); + java.awt.Dimension var28 = var19.getMaximumSize(); + var19.setFocusCycleRoot(false); + java.awt.event.ComponentListener[] var31 = var19.getComponentListeners(); + boolean var32 = var19.isFocusCycleRoot(); + var19.firePropertyChange("PanelUI", 83.657626403857d, 10.0d); + java.awt.Cursor var37 = var19.getCursor(); + SpaceWar.SpacePanel var38 = new SpaceWar.SpacePanel(); + float var39 = var38.getAlignmentX(); + var38.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var44 = var38.getUI(); + java.awt.im.InputMethodRequests var45 = var38.getInputMethodRequests(); + SpaceWar.SpacePanel var46 = new SpaceWar.SpacePanel(); + float var47 = var46.getAlignmentX(); + var46.setVisible(false); + var46.nextFocus(); + var46.updateUI(); + var46.enableInputMethods(true); + var46.setSize((-1), 1); + SpaceWar.SpacePanel var57 = new SpaceWar.SpacePanel(); + var57.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var38.add((java.awt.Component)var46, (java.lang.Object)"SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + java.awt.ComponentOrientation var63 = var46.getComponentOrientation(); + boolean var64 = var46.isMaximumSizeSet(); + java.beans.PropertyChangeListener[] var66 = var46.getPropertyChangeListeners("SpaceWar.SpacePanel[,0,0,0x0,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + SpaceWar.SpacePanel var67 = new SpaceWar.SpacePanel(); + float var68 = var67.getAlignmentX(); + var67.setVisible(false); + SpaceWar.SpacePanel var71 = new SpaceWar.SpacePanel(); + java.awt.Color var72 = var71.getBackground(); + var67.setForeground(var72); + SpaceWar.SpacePanel var74 = new SpaceWar.SpacePanel(); + float var75 = var74.getAlignmentX(); + var74.setVisible(false); + boolean var78 = var74.isDoubleBuffered(); + java.awt.dnd.DropTarget var79 = var74.getDropTarget(); + var74.show(false); + java.awt.Rectangle var82 = var74.getVisibleRect(); + var67.repaint(var82); + SpaceWar.SpacePanel var84 = new SpaceWar.SpacePanel(); + float var85 = var84.getAlignmentX(); + var84.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var90 = var84.getMouseListeners(); + java.awt.Dimension var91 = var84.getPreferredSize(); + java.util.Locale var92 = var84.getLocale(); + var67.setLocale(var92); + java.util.Locale var94 = var67.getLocale(); + var46.setLocale(var94); + var19.setLocale(var94); + boolean var97 = javax.swing.JComponent.isLightweightComponent((java.awt.Component)var19); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var28); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var31); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var32 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var37); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var39 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var44); + + // Regression assertion (captures the current behavior of the code) + assertNull(var45); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var47 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var63); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var64 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var66); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var68 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var72); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var75 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var78 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var79); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var82); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var85 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var90); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var91); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var92); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var94); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var97 == false); + + } + + public void test360() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test360"); + + + SpaceWar.Enemy var2 = new SpaceWar.Enemy(0, 10); + int var3 = var2.getRank(); + int var4 = var2.getR(); + int var5 = var2.getRank(); + int var6 = var2.getType(); + var2.explode(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == 10); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == 10); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == 0); + + } + + public void test361() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test361"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + java.awt.im.InputMethodRequests var3 = var0.getInputMethodRequests(); + int var4 = var0.countComponents(); + java.awt.event.ComponentListener[] var5 = var0.getComponentListeners(); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + float var7 = var6.getAlignmentX(); + var6.removeNotify(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.setVisible(false); + boolean var13 = var9.isDoubleBuffered(); + var9.list(); + float var15 = var9.getAlignmentY(); + java.awt.Insets var16 = var9.getInsets(); + java.awt.Insets var17 = var6.getInsets(var16); + java.awt.Insets var18 = var0.getInsets(var17); + var0.removeAll(); + boolean var20 = var0.getIgnoreRepaint(); + int var21 = var0.getY(); + var0.resetKeyboardActions(); + javax.swing.InputMap var23 = var0.getInputMap(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var23); + + } + + public void test362() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test362"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.reshape((-1), 1, (-1), 10); + var0.disable(); + java.awt.LayoutManager var11 = var0.getLayout(); + boolean var14 = var0.contains((-1), 0); + SpaceWar.SpacePanel var15 = new SpaceWar.SpacePanel(); + float var16 = var15.getAlignmentX(); + var15.setVisible(false); + var15.nextFocus(); + var15.updateUI(); + var15.enableInputMethods(true); + var15.setSize((-1), 1); + java.awt.Component var26 = var0.add((java.awt.Component)var15); + SpaceWar.SpacePanel var27 = new SpaceWar.SpacePanel(); + float var28 = var27.getAlignmentX(); + var27.setVisible(false); + var27.nextFocus(); + var27.updateUI(); + var27.enableInputMethods(true); + java.lang.String var35 = var27.toString(); + java.awt.FocusTraversalPolicy var36 = var27.getFocusTraversalPolicy(); + var15.removeKeyListener((java.awt.event.KeyListener)var27); + boolean var38 = var27.isShowing(); + java.awt.GraphicsConfiguration var39 = var27.getGraphicsConfiguration(); + java.awt.Cursor var40 = var27.getCursor(); + SpaceWar.SpacePanel var41 = new SpaceWar.SpacePanel(); + float var42 = var41.getAlignmentX(); + var41.setVisible(false); + SpaceWar.SpacePanel var45 = new SpaceWar.SpacePanel(); + java.awt.Color var46 = var45.getBackground(); + var41.setForeground(var46); + SpaceWar.SpacePanel var48 = new SpaceWar.SpacePanel(); + float var49 = var48.getAlignmentX(); + var48.setVisible(false); + boolean var52 = var48.isDoubleBuffered(); + java.awt.dnd.DropTarget var53 = var48.getDropTarget(); + var48.show(false); + java.awt.Rectangle var56 = var48.getVisibleRect(); + var41.repaint(var56); + java.awt.FocusTraversalPolicy var58 = var41.getFocusTraversalPolicy(); + java.awt.im.InputMethodRequests var59 = var41.getInputMethodRequests(); + var41.layout(); + SpaceWar.SpacePanel var61 = new SpaceWar.SpacePanel(); + float var62 = var61.getAlignmentX(); + var61.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var67 = new SpaceWar.SpacePanel(); + float var68 = var67.getAlignmentX(); + var67.setVisible(false); + SpaceWar.SpacePanel var71 = new SpaceWar.SpacePanel(); + java.awt.Color var72 = var71.getBackground(); + var67.setForeground(var72); + var61.setBackground(var72); + var41.setForeground(var72); + int var76 = var41.getWidth(); + javax.swing.plaf.PanelUI var77 = var41.getUI(); + var27.setUI(var77); + java.beans.VetoableChangeListener[] var79 = var27.getVetoableChangeListeners(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var28 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var35 + "' != '" + "SpaceWar.SpacePanel[,0,0,0var35,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"+ "'", var35.equals("SpaceWar.SpacePanel[,0,0,0var35,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]")); + + // Regression assertion (captures the current behavior of the code) + assertNull(var36); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var38 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var39); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var40); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var42 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var46); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var49 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var52 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var53); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var56); + + // Regression assertion (captures the current behavior of the code) + assertNull(var58); + + // Regression assertion (captures the current behavior of the code) + assertNull(var59); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var62 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var68 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var72); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var76 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var77); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var79); + + } + + public void test363() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test363"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var6 = var0.getMouseListeners(); + java.awt.Dimension var7 = var0.getPreferredSize(); + java.util.Locale var8 = var0.getLocale(); + var0.setFocusable(true); + var0.setSize(3, 10); + var0.invalidate(); + boolean var15 = var0.isValid(); + boolean var16 = var0.getVerifyInputWhenFocusTarget(); + var0.removeNotify(); + int var18 = var0.countComponents(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == 0); + + } + + public void test364() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test364"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var6 = var0.getMouseListeners(); + int var7 = var0.getDebugGraphicsOptions(); + var0.removeNotify(); + javax.swing.TransferHandler var9 = var0.getTransferHandler(); + var0.setFocusTraversalPolicyProvider(false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var9); + + } + + public void test365() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test365"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + java.awt.Dimension var4 = var0.getPreferredSize(); + boolean var5 = var0.getVerifyInputWhenFocusTarget(); + java.awt.Component var8 = var0.findComponentAt(10, 1); + boolean var9 = var0.requestDefaultFocus(); + var0.firePropertyChange("hi!", false, true); + javax.swing.ActionMap var14 = var0.getActionMap(); + var0.setDebugGraphicsOptions(10); + boolean var17 = var0.isShowing(); + SpaceWar.SpacePanel var18 = new SpaceWar.SpacePanel(); + float var19 = var18.getAlignmentX(); + var18.setVisible(false); + boolean var22 = var18.isDoubleBuffered(); + java.awt.dnd.DropTarget var23 = var18.getDropTarget(); + var18.show(false); + boolean var26 = var18.isPaintingForPrint(); + SpaceWar.SpacePanel var27 = new SpaceWar.SpacePanel(); + float var28 = var27.getAlignmentX(); + var27.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var33 = var27.getMouseListeners(); + int var34 = var27.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var35 = var27.getInputMethodRequests(); + var18.addKeyListener((java.awt.event.KeyListener)var27); + SpaceWar.SpacePanel var37 = new SpaceWar.SpacePanel(); + float var38 = var37.getAlignmentX(); + var37.setVisible(false); + boolean var41 = var37.isDoubleBuffered(); + var37.list(); + float var43 = var37.getAlignmentY(); + boolean var44 = var27.isFocusCycleRoot((java.awt.Container)var37); + boolean var45 = var37.isEnabled(); + java.awt.Dimension var46 = var37.getMaximumSize(); + var37.disable(); + var37.updateUI(); + var37.setFocusable(false); + boolean var51 = var37.isDoubleBuffered(); + SpaceWar.SpacePanel var52 = new SpaceWar.SpacePanel(); + float var53 = var52.getAlignmentX(); + var52.setVisible(false); + var52.nextFocus(); + var52.updateUI(); + var52.enableInputMethods(true); + var52.enableInputMethods(true); + java.awt.Component.BaselineResizeBehavior var62 = var52.getBaselineResizeBehavior(); + SpaceWar.SpacePanel var63 = new SpaceWar.SpacePanel(); + float var64 = var63.getAlignmentX(); + var63.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var69 = var63.getUI(); + java.awt.im.InputMethodRequests var70 = var63.getInputMethodRequests(); + SpaceWar.SpacePanel var71 = new SpaceWar.SpacePanel(); + float var72 = var71.getAlignmentX(); + var71.setVisible(false); + var71.nextFocus(); + var71.updateUI(); + var71.enableInputMethods(true); + var71.setSize((-1), 1); + SpaceWar.SpacePanel var82 = new SpaceWar.SpacePanel(); + var82.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var63.add((java.awt.Component)var71, (java.lang.Object)"SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + SpaceWar.SpacePanel var88 = new SpaceWar.SpacePanel(); + var88.setName(""); + java.awt.ComponentOrientation var91 = var88.getComponentOrientation(); + var63.applyComponentOrientation(var91); + var52.setComponentOrientation(var91); + var37.setComponentOrientation(var91); + var0.setComponentOrientation(var91); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var4); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var22 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var23); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var28 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var33); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var34 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var35); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var38 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var41 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var43 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var44 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var45 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var46); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var51 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var53 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var62); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var64 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var69); + + // Regression assertion (captures the current behavior of the code) + assertNull(var70); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var72 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var91); + + } + + public void test366() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test366"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + java.awt.Dimension var4 = var0.getPreferredSize(); + java.awt.Toolkit var5 = var0.getToolkit(); + boolean var6 = var0.isFocusable(); + javax.swing.KeyStroke[] var7 = var0.getRegisteredKeyStrokes(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + SpaceWar.SpacePanel var10 = new SpaceWar.SpacePanel(); + float var11 = var10.getAlignmentX(); + var10.setVisible(false); + java.awt.Dimension var14 = var10.getPreferredSize(); + boolean var15 = var10.getVerifyInputWhenFocusTarget(); + java.awt.Component var18 = var10.findComponentAt(10, 1); + var8.addKeyListener((java.awt.event.KeyListener)var10); + var10.repaint(100, (-1), (-1), 1); + boolean var25 = var0.isAncestorOf((java.awt.Component)var10); + var0.nextFocus(); + var0.doLayout(); + SpaceWar.SpacePanel var28 = new SpaceWar.SpacePanel(); + float var29 = var28.getAlignmentX(); + var28.setVisible(false); + boolean var32 = var28.isDoubleBuffered(); + var28.list(); + float var34 = var28.getAlignmentY(); + boolean var35 = var28.isOpaque(); + var28.resetKeyboardActions(); + boolean var37 = var28.isFocusTraversalPolicyProvider(); + java.awt.im.InputContext var38 = var28.getInputContext(); + var28.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", (short)100, (short)1); + var28.layout(); + java.awt.Container var44 = var28.getFocusCycleRootAncestor(); + SpaceWar.SpacePanel var45 = new SpaceWar.SpacePanel(); + java.awt.Color var46 = var45.getBackground(); + var45.repaint(); + var45.setRequestFocusEnabled(false); + var45.reshape(100, 0, 100, 0); + var45.requestFocus(); + java.awt.Rectangle var56 = var45.getVisibleRect(); + java.awt.Rectangle var57 = var45.getBounds(); + java.awt.im.InputMethodRequests var58 = var45.getInputMethodRequests(); + SpaceWar.SpacePanel var59 = new SpaceWar.SpacePanel(); + float var60 = var59.getAlignmentX(); + var59.setVisible(false); + java.awt.Dimension var63 = var59.getPreferredSize(); + java.awt.Toolkit var64 = var59.getToolkit(); + SpaceWar.SpacePanel var65 = new SpaceWar.SpacePanel(); + var65.setName(""); + int var68 = var65.getX(); + SpaceWar.SpacePanel var69 = new SpaceWar.SpacePanel(); + float var70 = var69.getAlignmentX(); + var69.setVisible(false); + var69.nextFocus(); + SpaceWar.SpacePanel var74 = new SpaceWar.SpacePanel(); + float var75 = var74.getAlignmentX(); + var74.setVisible(false); + SpaceWar.SpacePanel var78 = new SpaceWar.SpacePanel(); + java.awt.Color var79 = var78.getBackground(); + var74.setForeground(var79); + var69.setBackground(var79); + var65.setBackground(var79); + var59.setForeground(var79); + var45.setForeground(var79); + var28.setForeground(var79); + java.awt.Component var86 = var0.add((java.awt.Component)var28); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var4); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var29 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var32 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var34 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var35 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var38); + + // Regression assertion (captures the current behavior of the code) + assertNull(var44); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var46); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var56); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var57); + + // Regression assertion (captures the current behavior of the code) + assertNull(var58); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var60 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var63); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var64); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var68 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var70 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var75 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var79); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var86); + + } + + public void test367() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test367"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + SpaceWar.SpacePanel var2 = new SpaceWar.SpacePanel(); + float var3 = var2.getAlignmentX(); + var2.setVisible(false); + java.awt.Dimension var6 = var2.getPreferredSize(); + boolean var7 = var2.getVerifyInputWhenFocusTarget(); + java.awt.Component var10 = var2.findComponentAt(10, 1); + var0.addKeyListener((java.awt.event.KeyListener)var2); + var2.repaint(100, (-1), (-1), 1); + java.awt.image.ColorModel var17 = var2.getColorModel(); + boolean var18 = var2.isFocusTraversalPolicyProvider(); + float var19 = var2.getAlignmentX(); + java.awt.image.ColorModel var20 = var2.getColorModel(); + SpaceWar.SpacePanel var21 = new SpaceWar.SpacePanel(); + float var22 = var21.getAlignmentX(); + var21.setVisible(false); + var21.nextFocus(); + var21.updateUI(); + var21.enableInputMethods(true); + SpaceWar.SpacePanel var29 = new SpaceWar.SpacePanel(); + float var30 = var29.getAlignmentX(); + boolean var31 = var29.hasFocus(); + java.awt.Insets var32 = var29.getInsets(); + java.awt.Insets var33 = var21.getInsets(var32); + var21.enable(true); + var21.nextFocus(); + var21.setBounds((-1), 3, 499, 100); + int var42 = var2.getComponentZOrder((java.awt.Component)var21); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var22 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var30 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var31 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var32); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var33); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var42 == (-1)); + + } + + public void test368() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test368"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + var0.list(); + float var6 = var0.getAlignmentY(); + boolean var7 = var0.isOpaque(); + var0.resetKeyboardActions(); + boolean var9 = var0.isFocusTraversalPolicyProvider(); + java.awt.im.InputContext var10 = var0.getInputContext(); + var0.setFocusTraversalKeysEnabled(true); + java.awt.Component var15 = var0.locate(499, 100); + boolean var16 = var0.isValidateRoot(); + var0.setFocusTraversalPolicyProvider(true); + java.awt.image.ColorModel var19 = var0.getColorModel(); + var0.show(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var19); + + } + + public void test369() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test369"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var1 = new SpaceWar.SpacePanel(); + java.awt.Color var2 = var1.getBackground(); + SpaceWar.SpacePanel var3 = new SpaceWar.SpacePanel(); + float var4 = var3.getAlignmentX(); + var3.setVisible(false); + var3.nextFocus(); + var3.updateUI(); + var3.enableInputMethods(true); + var0.add((java.awt.Component)var1, (java.lang.Object)true); + boolean var12 = var0.isMinimumSizeSet(); + java.awt.event.HierarchyListener[] var13 = var0.getHierarchyListeners(); + SpaceWar.SpacePanel var14 = new SpaceWar.SpacePanel(); + float var15 = var14.getAlignmentX(); + var14.setVisible(false); + SpaceWar.SpacePanel var18 = new SpaceWar.SpacePanel(); + java.awt.Color var19 = var18.getBackground(); + var14.setForeground(var19); + SpaceWar.SpacePanel var21 = new SpaceWar.SpacePanel(); + float var22 = var21.getAlignmentX(); + var21.setVisible(false); + boolean var25 = var21.isDoubleBuffered(); + java.awt.dnd.DropTarget var26 = var21.getDropTarget(); + var21.show(false); + java.awt.Rectangle var29 = var21.getVisibleRect(); + var14.repaint(var29); + java.awt.FocusTraversalPolicy var31 = var14.getFocusTraversalPolicy(); + java.awt.im.InputMethodRequests var32 = var14.getInputMethodRequests(); + var14.layout(); + boolean var34 = var14.isFocusTraversalPolicyProvider(); + java.lang.Object var35 = var0.getClientProperty((java.lang.Object)var34); + java.awt.Dimension var36 = var0.getSize(); + var0.removeNotify(); + java.awt.Cursor var38 = var0.getCursor(); + SpaceWar.SpacePanel var39 = new SpaceWar.SpacePanel(); + java.awt.Color var40 = var39.getBackground(); + boolean var43 = var39.inside(0, (-1)); + SpaceWar.SpacePanel var44 = new SpaceWar.SpacePanel(); + float var45 = var44.getAlignmentX(); + var44.setVisible(false); + SpaceWar.SpacePanel var48 = new SpaceWar.SpacePanel(); + java.awt.Color var49 = var48.getBackground(); + var44.setForeground(var49); + var39.setForeground(var49); + java.awt.image.VolatileImage var54 = var39.createVolatileImage(400, (-1)); + java.awt.LayoutManager var55 = var39.getLayout(); + var0.setLayout(var55); + java.awt.Dimension var57 = var0.preferredSize(); + java.awt.Insets var58 = var0.insets(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var2); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var22 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var29); + + // Regression assertion (captures the current behavior of the code) + assertNull(var31); + + // Regression assertion (captures the current behavior of the code) + assertNull(var32); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var34 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var35); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var36); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var38); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var40); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var43 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var45 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var49); + + // Regression assertion (captures the current behavior of the code) + assertNull(var54); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var55); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var57); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var58); + + } + + public void test370() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test370"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + var0.show(false); + boolean var8 = var0.isPaintingForPrint(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var15 = var9.getMouseListeners(); + int var16 = var9.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var17 = var9.getInputMethodRequests(); + var0.addKeyListener((java.awt.event.KeyListener)var9); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + float var20 = var19.getAlignmentX(); + var19.setVisible(false); + boolean var23 = var19.isDoubleBuffered(); + var19.list(); + float var25 = var19.getAlignmentY(); + boolean var26 = var9.isFocusCycleRoot((java.awt.Container)var19); + SpaceWar.SpacePanel var28 = new SpaceWar.SpacePanel(); + float var29 = var28.getAlignmentX(); + var28.setVisible(false); + var28.nextFocus(); + var28.updateUI(); + java.awt.Component var34 = var9.add("", (java.awt.Component)var28); + var9.firePropertyChange("hi!", 'a', '4'); + var9.firePropertyChange("SpaceWar.SpacePanel[,-1,1,-1x10,invalid,hidden,disabled,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", 10.0f, 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var29 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var34); + + } + + public void test371() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test371"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + var0.setRequestFocusEnabled(false); + var0.reshape(100, 0, 100, 0); + java.beans.VetoableChangeListener[] var10 = var0.getVetoableChangeListeners(); + java.awt.Rectangle var11 = var0.getVisibleRect(); + float var12 = var0.getAlignmentY(); + SpaceWar.SpacePanel var13 = new SpaceWar.SpacePanel(); + float var14 = var13.getAlignmentX(); + var13.setVisible(false); + var13.nextFocus(); + var13.reshape((-1), 1, (-1), 10); + java.util.Set var24 = var13.getFocusTraversalKeys(3); + SpaceWar.SpacePanel var25 = new SpaceWar.SpacePanel(); + float var26 = var25.getAlignmentX(); + var25.setVisible(false); + SpaceWar.SpacePanel var29 = new SpaceWar.SpacePanel(); + java.awt.Color var30 = var29.getBackground(); + var25.setForeground(var30); + SpaceWar.SpacePanel var32 = new SpaceWar.SpacePanel(); + float var33 = var32.getAlignmentX(); + var32.setVisible(false); + boolean var36 = var32.isDoubleBuffered(); + java.awt.dnd.DropTarget var37 = var32.getDropTarget(); + var32.show(false); + java.awt.Rectangle var40 = var32.getVisibleRect(); + var25.repaint(var40); + java.awt.FocusTraversalPolicy var42 = var25.getFocusTraversalPolicy(); + SpaceWar.SpacePanel var43 = new SpaceWar.SpacePanel(); + float var44 = var43.getAlignmentX(); + var43.firePropertyChange("", (-1), 1); + boolean var49 = var43.isFocusOwner(); + SpaceWar.SpacePanel var51 = new SpaceWar.SpacePanel(); + float var52 = var51.getAlignmentX(); + var51.setVisible(false); + java.awt.Dimension var55 = var51.getPreferredSize(); + java.awt.Toolkit var56 = var51.getToolkit(); + SpaceWar.SpacePanel var57 = new SpaceWar.SpacePanel(); + var57.setName(""); + int var60 = var57.getX(); + SpaceWar.SpacePanel var61 = new SpaceWar.SpacePanel(); + float var62 = var61.getAlignmentX(); + var61.setVisible(false); + var61.nextFocus(); + SpaceWar.SpacePanel var66 = new SpaceWar.SpacePanel(); + float var67 = var66.getAlignmentX(); + var66.setVisible(false); + SpaceWar.SpacePanel var70 = new SpaceWar.SpacePanel(); + java.awt.Color var71 = var70.getBackground(); + var66.setForeground(var71); + var61.setBackground(var71); + var57.setBackground(var71); + var51.setForeground(var71); + var43.putClientProperty((java.lang.Object)(byte)100, (java.lang.Object)var71); + var25.setBackground(var71); + SpaceWar.SpacePanel var78 = new SpaceWar.SpacePanel(); + float var79 = var78.getAlignmentX(); + var78.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var84 = new SpaceWar.SpacePanel(); + float var85 = var84.getAlignmentX(); + var84.setVisible(false); + SpaceWar.SpacePanel var88 = new SpaceWar.SpacePanel(); + java.awt.Color var89 = var88.getBackground(); + var84.setForeground(var89); + var78.setBackground(var89); + java.awt.Point var92 = var78.location(); + java.awt.Point var93 = var25.getLocation(var92); + java.awt.Component var94 = var13.findComponentAt(var92); + boolean var95 = var0.contains(var92); + java.awt.Point var96 = var0.getMousePosition(); + java.awt.image.ColorModel var97 = var0.getColorModel(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var30); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var33 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var36 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var37); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var40); + + // Regression assertion (captures the current behavior of the code) + assertNull(var42); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var44 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var49 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var52 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var55); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var56); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var60 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var62 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var67 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var71); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var79 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var85 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var89); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var92); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var93); + + // Regression assertion (captures the current behavior of the code) + assertNull(var94); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var95 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var96); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var97); + + } + + public void test372() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test372"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var6 = var0.getUI(); + java.awt.im.InputMethodRequests var7 = var0.getInputMethodRequests(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + var8.nextFocus(); + var8.updateUI(); + var8.enableInputMethods(true); + var8.setSize((-1), 1); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + var19.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var0.add((java.awt.Component)var8, (java.lang.Object)"SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + SpaceWar.SpacePanel var25 = new SpaceWar.SpacePanel(); + float var26 = var25.getAlignmentX(); + var25.setVisible(false); + java.awt.Dimension var29 = var25.getPreferredSize(); + java.awt.Toolkit var30 = var25.getToolkit(); + java.awt.Toolkit var31 = var25.getToolkit(); + java.awt.Component var32 = var8.add((java.awt.Component)var25); + java.awt.dnd.DropTarget var33 = var8.getDropTarget(); + java.awt.Point var34 = var8.location(); + java.awt.image.VolatileImage var37 = var8.createVolatileImage(400, 498); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var29); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var30); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var31); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var32); + + // Regression assertion (captures the current behavior of the code) + assertNull(var33); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var34); + + // Regression assertion (captures the current behavior of the code) + assertNull(var37); + + } + + public void test373() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test373"); + + + SpaceWar.Enemy var2 = new SpaceWar.Enemy(0, 100); + int var3 = var2.getR(); + var2.update(); + var2.hit(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == 0); + + } + + public void test374() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test374"); + + + SpaceWar.PowerUp var3 = new SpaceWar.PowerUp(100, (-1.0d), 0.0d); + double var4 = var3.getX(); + double var5 = var3.getY(); + double var6 = var3.getY(); + double var7 = var3.getY(); + boolean var8 = var3.update(); + double var9 = var3.getX(); + double var10 = var3.getX(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == (-1.0d)); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == 0.0d); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == 0.0d); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.0d); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == (-1.0d)); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == (-1.0d)); + + } + + public void test375() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test375"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + var0.setName(""); + java.awt.Dimension var3 = var0.minimumSize(); + boolean var4 = var0.isDoubleBuffered(); + SpaceWar.SpacePanel var5 = new SpaceWar.SpacePanel(); + float var6 = var5.getAlignmentX(); + var5.setVisible(false); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + java.awt.Color var10 = var9.getBackground(); + var5.setForeground(var10); + SpaceWar.SpacePanel var12 = new SpaceWar.SpacePanel(); + float var13 = var12.getAlignmentX(); + var12.setVisible(false); + boolean var16 = var12.isDoubleBuffered(); + java.awt.dnd.DropTarget var17 = var12.getDropTarget(); + var12.show(false); + java.awt.Rectangle var20 = var12.getVisibleRect(); + var5.repaint(var20); + java.awt.FocusTraversalPolicy var22 = var5.getFocusTraversalPolicy(); + java.awt.im.InputMethodRequests var23 = var5.getInputMethodRequests(); + var5.layout(); + boolean var25 = var5.isFocusTraversalPolicyProvider(); + java.awt.Component var26 = var0.add((java.awt.Component)var5); + java.awt.event.KeyListener[] var27 = var5.getKeyListeners(); + var5.enable(); + SpaceWar.SpacePanel var29 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var30 = new SpaceWar.SpacePanel(); + java.awt.Color var31 = var30.getBackground(); + SpaceWar.SpacePanel var32 = new SpaceWar.SpacePanel(); + float var33 = var32.getAlignmentX(); + var32.setVisible(false); + var32.nextFocus(); + var32.updateUI(); + var32.enableInputMethods(true); + var29.add((java.awt.Component)var30, (java.lang.Object)true); + boolean var42 = var30.areFocusTraversalKeysSet(0); + SpaceWar.SpacePanel var43 = new SpaceWar.SpacePanel(); + float var44 = var43.getAlignmentX(); + var43.firePropertyChange("", (-1), 1); + boolean var49 = var43.isFocusOwner(); + SpaceWar.SpacePanel var51 = new SpaceWar.SpacePanel(); + float var52 = var51.getAlignmentX(); + var51.setVisible(false); + java.awt.Dimension var55 = var51.getPreferredSize(); + java.awt.Toolkit var56 = var51.getToolkit(); + SpaceWar.SpacePanel var57 = new SpaceWar.SpacePanel(); + var57.setName(""); + int var60 = var57.getX(); + SpaceWar.SpacePanel var61 = new SpaceWar.SpacePanel(); + float var62 = var61.getAlignmentX(); + var61.setVisible(false); + var61.nextFocus(); + SpaceWar.SpacePanel var66 = new SpaceWar.SpacePanel(); + float var67 = var66.getAlignmentX(); + var66.setVisible(false); + SpaceWar.SpacePanel var70 = new SpaceWar.SpacePanel(); + java.awt.Color var71 = var70.getBackground(); + var66.setForeground(var71); + var61.setBackground(var71); + var57.setBackground(var71); + var51.setForeground(var71); + var43.putClientProperty((java.lang.Object)(byte)100, (java.lang.Object)var71); + SpaceWar.SpacePanel var77 = new SpaceWar.SpacePanel(); + var77.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + javax.swing.plaf.PanelUI var82 = var77.getUI(); + var43.setUI(var82); + var30.setUI(var82); + var30.setRequestFocusEnabled(false); + // The following exception was thrown during execution. + // This behavior will recorded for regression testing. + try { + java.awt.Component var88 = var5.add((java.awt.Component)var30, 498); + fail("Expected exception of type java.lang.IllegalArgumentException"); + } catch (java.lang.IllegalArgumentException e) { + // Expected exception. + } + + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertNull(var23); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var27); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var31); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var33 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var42 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var44 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var49 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var52 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var55); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var56); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var60 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var62 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var67 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var71); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var82); + + } + + public void test376() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test376"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + boolean var4 = var0.inside(0, (-1)); + SpaceWar.SpacePanel var5 = new SpaceWar.SpacePanel(); + float var6 = var5.getAlignmentX(); + var5.setVisible(false); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + java.awt.Color var10 = var9.getBackground(); + var5.setForeground(var10); + var0.setForeground(var10); + java.awt.image.VolatileImage var15 = var0.createVolatileImage(400, (-1)); + javax.swing.TransferHandler var16 = var0.getTransferHandler(); + var0.setBounds((-1), 500, 505, 2); + boolean var22 = var0.isShowing(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var22 == false); + + } + + public void test377() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test377"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var6 = var0.getUI(); + java.awt.im.InputMethodRequests var7 = var0.getInputMethodRequests(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + var8.nextFocus(); + var8.updateUI(); + var8.enableInputMethods(true); + var8.setSize((-1), 1); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + var19.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var0.add((java.awt.Component)var8, (java.lang.Object)"SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + SpaceWar.SpacePanel var25 = new SpaceWar.SpacePanel(); + float var26 = var25.getAlignmentX(); + var25.setVisible(false); + java.awt.Dimension var29 = var25.getPreferredSize(); + java.awt.Toolkit var30 = var25.getToolkit(); + java.awt.Toolkit var31 = var25.getToolkit(); + java.awt.Component var32 = var8.add((java.awt.Component)var25); + var32.firePropertyChange("", 0.5f, 10.0f); + SpaceWar.SpacePanel var37 = new SpaceWar.SpacePanel(); + float var38 = var37.getAlignmentX(); + var37.setVisible(false); + var37.setInheritsPopupMenu(false); + var37.move(10, 10); + var37.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + java.awt.Rectangle var50 = var37.bounds(); + var32.setBounds(var50); + var32.firePropertyChange("SpaceWar.SpacePanel[,-1,1,-1x10,invalid,hidden,disabled,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", (-1.0f), 10.0f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var29); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var30); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var31); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var32); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var38 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var50); + + } + + public void test378() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test378"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + var0.setRequestFocusEnabled(false); + var0.setIgnoreRepaint(false); + boolean var7 = var0.requestFocusInWindow(); + var0.setAlignmentY(100.0f); + int var10 = var0.getHeight(); + var0.setAlignmentX(10.0f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0); + + } + + public void test379() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test379"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + var0.list(); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + float var7 = var6.getAlignmentX(); + var6.setVisible(false); + boolean var10 = var6.isDoubleBuffered(); + java.awt.dnd.DropTarget var11 = var6.getDropTarget(); + var6.show(false); + java.awt.Rectangle var14 = var6.getVisibleRect(); + java.awt.Rectangle var15 = var0.getBounds(var14); + javax.swing.JToolTip var16 = var0.createToolTip(); + var0.firePropertyChange("", false, false); + var0.setEnabled(false); + var0.move(100, 500); + int var28 = var0.getBaseline(3, 500); + SpaceWar.SpacePanel var29 = new SpaceWar.SpacePanel(); + java.awt.Color var30 = var29.getBackground(); + boolean var33 = var29.inside(0, (-1)); + var29.transferFocusUpCycle(); + java.awt.Container var35 = var29.getParent(); + var29.resize((-1), 25); + javax.swing.ActionMap var39 = var29.getActionMap(); + int var40 = var29.getX(); + java.util.Locale var41 = javax.swing.JComponent.getDefaultLocale(); + var29.setLocale(var41); + var0.setLocale(var41); + java.awt.ComponentOrientation var44 = var0.getComponentOrientation(); + int var45 = var0.getComponentCount(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var28 == (-1)); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var30); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var33 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var35); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var39); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var40 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var41); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var44); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var45 == 0); + + } + + public void test380() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test380"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + java.awt.Dimension var4 = var0.getPreferredSize(); + java.awt.Toolkit var5 = var0.getToolkit(); + boolean var6 = var0.isFocusable(); + javax.swing.KeyStroke[] var7 = var0.getRegisteredKeyStrokes(); + java.awt.Component var10 = var0.getComponentAt(100, 100); + java.lang.Object var11 = var0.getTreeLock(); + boolean var14 = var0.inside(400, 0); + java.awt.event.MouseWheelListener[] var15 = var0.getMouseWheelListeners(); + var0.enableInputMethods(true); + SpaceWar.SpacePanel var18 = new SpaceWar.SpacePanel(); + float var19 = var18.getAlignmentX(); + var18.setVisible(false); + java.awt.Dimension var22 = var18.getPreferredSize(); + java.awt.Toolkit var23 = var18.getToolkit(); + boolean var24 = var18.isFocusable(); + javax.swing.KeyStroke[] var25 = var18.getRegisteredKeyStrokes(); + SpaceWar.SpacePanel var26 = new SpaceWar.SpacePanel(); + float var27 = var26.getAlignmentX(); + var26.setVisible(false); + var26.nextFocus(); + SpaceWar.SpacePanel var31 = new SpaceWar.SpacePanel(); + float var32 = var31.getAlignmentX(); + var31.setVisible(false); + SpaceWar.SpacePanel var35 = new SpaceWar.SpacePanel(); + java.awt.Color var36 = var35.getBackground(); + var31.setForeground(var36); + var26.setBackground(var36); + var18.setBackground(var36); + var0.addKeyListener((java.awt.event.KeyListener)var18); + var18.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", (short)1, (short)10); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var4); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var23); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var24 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var25); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var32 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var36); + + } + + public void test381() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test381"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.updateUI(); + var0.enableInputMethods(true); + var0.enableInputMethods(true); + java.awt.Component.BaselineResizeBehavior var10 = var0.getBaselineResizeBehavior(); + java.awt.dnd.DropTarget var11 = var0.getDropTarget(); + boolean var12 = var0.isDoubleBuffered(); + int var13 = var0.getHeight(); + javax.swing.JToolTip var14 = var0.createToolTip(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + } + + public void test382() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test382"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + java.awt.im.InputMethodRequests var3 = var0.getInputMethodRequests(); + var0.setDoubleBuffered(true); + var0.show(false); + var0.setAlignmentY(100.0f); + SpaceWar.SpacePanel var10 = new SpaceWar.SpacePanel(); + float var11 = var10.getAlignmentX(); + var10.setVisible(false); + SpaceWar.SpacePanel var14 = new SpaceWar.SpacePanel(); + java.awt.Color var15 = var14.getBackground(); + var10.setForeground(var15); + SpaceWar.SpacePanel var17 = new SpaceWar.SpacePanel(); + float var18 = var17.getAlignmentX(); + var17.setVisible(false); + boolean var21 = var17.isDoubleBuffered(); + java.awt.dnd.DropTarget var22 = var17.getDropTarget(); + var17.show(false); + java.awt.Rectangle var25 = var17.getVisibleRect(); + var10.repaint(var25); + java.awt.FocusTraversalPolicy var27 = var10.getFocusTraversalPolicy(); + java.awt.im.InputMethodRequests var28 = var10.getInputMethodRequests(); + var10.layout(); + boolean var30 = var10.isFocusTraversalPolicyProvider(); + java.awt.Insets var31 = var10.insets(); + java.awt.Dimension var32 = var10.getMinimumSize(); + java.awt.Dimension var33 = var0.getSize(var32); + // The following exception was thrown during execution. + // This behavior will recorded for regression testing. + try { + java.awt.Point var34 = var0.getLocationOnScreen(); + fail("Expected exception of type java.awt.IllegalComponentStateException"); + } catch (java.awt.IllegalComponentStateException e) { + // Expected exception. + } + + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var25); + + // Regression assertion (captures the current behavior of the code) + assertNull(var27); + + // Regression assertion (captures the current behavior of the code) + assertNull(var28); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var30 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var31); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var32); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var33); + + } + + public void test383() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test383"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + java.awt.im.InputMethodRequests var3 = var0.getInputMethodRequests(); + var0.setDoubleBuffered(true); + var0.show(false); + boolean var8 = var0.isPaintingForPrint(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.setVisible(false); + boolean var13 = var9.isDoubleBuffered(); + var9.list(); + float var15 = var9.getAlignmentY(); + boolean var16 = var9.isOpaque(); + SpaceWar.SpacePanel var17 = new SpaceWar.SpacePanel(); + java.awt.Color var18 = var17.getBackground(); + var17.repaint(); + java.awt.im.InputMethodRequests var20 = var17.getInputMethodRequests(); + int var21 = var17.countComponents(); + java.awt.event.ComponentListener[] var22 = var17.getComponentListeners(); + SpaceWar.SpacePanel var23 = new SpaceWar.SpacePanel(); + float var24 = var23.getAlignmentX(); + var23.removeNotify(); + SpaceWar.SpacePanel var26 = new SpaceWar.SpacePanel(); + float var27 = var26.getAlignmentX(); + var26.setVisible(false); + boolean var30 = var26.isDoubleBuffered(); + var26.list(); + float var32 = var26.getAlignmentY(); + java.awt.Insets var33 = var26.getInsets(); + java.awt.Insets var34 = var23.getInsets(var33); + java.awt.Insets var35 = var17.getInsets(var34); + java.awt.Dimension var36 = var17.preferredSize(); + var9.removeKeyListener((java.awt.event.KeyListener)var17); + java.lang.Object var38 = var0.getClientProperty((java.lang.Object)var17); + java.awt.Insets var39 = var0.getInsets(); + var0.setDoubleBuffered(true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var24 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var30 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var32 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var33); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var34); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var35); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var36); + + // Regression assertion (captures the current behavior of the code) + assertNull(var38); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var39); + + } + + public void test384() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test384"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + boolean var6 = var0.isFocusCycleRoot(); + var0.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", 100, 0); + SpaceWar.SpacePanel var11 = new SpaceWar.SpacePanel(); + java.awt.Color var12 = var11.getBackground(); + var11.repaint(); + var11.setRequestFocusEnabled(false); + var11.reshape(100, 0, 100, 0); + javax.swing.event.AncestorListener[] var21 = var11.getAncestorListeners(); + var11.grabFocus(); + boolean var23 = var0.isFocusCycleRoot((java.awt.Container)var11); + SpaceWar.SpacePanel var24 = new SpaceWar.SpacePanel(); + float var25 = var24.getAlignmentX(); + var24.setVisible(false); + var24.nextFocus(); + SpaceWar.SpacePanel var29 = new SpaceWar.SpacePanel(); + float var30 = var29.getAlignmentX(); + var29.setVisible(false); + SpaceWar.SpacePanel var33 = new SpaceWar.SpacePanel(); + java.awt.Color var34 = var33.getBackground(); + var29.setForeground(var34); + var24.setBackground(var34); + java.awt.Component var37 = var24.getNextFocusableComponent(); + float var38 = var24.getAlignmentY(); + java.awt.event.MouseListener[] var39 = var24.getMouseListeners(); + java.awt.Point var40 = var24.location(); + var11.setLocation(var40); + boolean var42 = var11.getFocusTraversalKeysEnabled(); + java.awt.Dimension var43 = var11.preferredSize(); + SpaceWar.SpacePanel var44 = new SpaceWar.SpacePanel(); + float var45 = var44.getAlignmentX(); + var44.setVisible(false); + java.awt.Dimension var48 = var44.getPreferredSize(); + java.awt.Toolkit var49 = var44.getToolkit(); + boolean var50 = var44.isFocusable(); + javax.swing.KeyStroke[] var51 = var44.getRegisteredKeyStrokes(); + var44.setFocusCycleRoot(false); + javax.swing.JPopupMenu var54 = var44.getComponentPopupMenu(); + var11.setNextFocusableComponent((java.awt.Component)var44); + // The following exception was thrown during execution. + // This behavior will recorded for regression testing. + try { + java.awt.Point var56 = var44.getLocationOnScreen(); + fail("Expected exception of type java.awt.IllegalComponentStateException"); + } catch (java.awt.IllegalComponentStateException e) { + // Expected exception. + } + + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var21); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var30 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var34); + + // Regression assertion (captures the current behavior of the code) + assertNull(var37); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var38 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var39); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var40); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var42 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var43); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var45 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var48); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var49); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var50 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var51); + + // Regression assertion (captures the current behavior of the code) + assertNull(var54); + + } + + public void test385() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test385"); + + + SpaceWar.Player var0 = new SpaceWar.Player(); + var0.increasePower(25); + int var3 = var0.getScore(); + int var4 = var0.getX(); + var0.setLife(100); + boolean var7 = var0.isRecovering(); + var0.setUp(true); + int var10 = var0.getRequiredPower(); + var0.setLeft(false); + var0.setDown(false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 400); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 2); + + } + + public void test386() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test386"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + float var7 = var6.getAlignmentX(); + var6.setVisible(false); + SpaceWar.SpacePanel var10 = new SpaceWar.SpacePanel(); + java.awt.Color var11 = var10.getBackground(); + var6.setForeground(var11); + var0.setBackground(var11); + java.awt.Point var14 = var0.location(); + boolean var15 = var0.isPreferredSizeSet(); + var0.nextFocus(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == true); + + } + + public void test387() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test387"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + boolean var2 = var0.hasFocus(); + boolean var3 = var0.isPreferredSizeSet(); + var0.firePropertyChange("", (short)1, (short)0); + boolean var8 = var0.isMaximumSizeSet(); + var0.list(); + boolean var10 = var0.isEnabled(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var2 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == true); + + } + + public void test388() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test388"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + float var7 = var6.getAlignmentX(); + var6.setVisible(false); + java.awt.Dimension var10 = var6.getPreferredSize(); + var0.setMaximumSize(var10); + boolean var12 = var0.getVerifyInputWhenFocusTarget(); + javax.accessibility.AccessibleContext var13 = var0.getAccessibleContext(); + boolean var14 = var0.isOpaque(); + java.lang.String var15 = var0.toString(); + boolean var16 = var0.getIgnoreRepaint(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var15 + "' != '" + "SpaceWar.SpacePanel[,0,0,0var15,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=java.awt.Dimension[width=800,height=600],minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"+ "'", var15.equals("SpaceWar.SpacePanel[,0,0,0var15,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=java.awt.Dimension[width=800,height=600],minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]")); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == false); + + } + + public void test389() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test389"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var6 = var0.getUI(); + java.awt.im.InputMethodRequests var7 = var0.getInputMethodRequests(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + var8.nextFocus(); + var8.updateUI(); + var8.enableInputMethods(true); + var8.setSize((-1), 1); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + var19.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var0.add((java.awt.Component)var8, (java.lang.Object)"SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + var8.firePropertyChange("SpaceWar.SpacePanel[,-1,1,-1x10,invalid,hidden,disabled,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", 2, 10); + var8.removeAll(); + var8.setVisible(false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + } + + public void test390() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test390"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + float var7 = var6.getAlignmentX(); + var6.setVisible(false); + SpaceWar.SpacePanel var10 = new SpaceWar.SpacePanel(); + java.awt.Color var11 = var10.getBackground(); + var6.setForeground(var11); + var0.setBackground(var11); + java.awt.Point var14 = var0.location(); + var0.requestFocus(); + java.lang.String var16 = var0.getToolTipText(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertNull(var16); + + } + + public void test391() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test391"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + var0.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + java.awt.event.ContainerListener[] var5 = var0.getContainerListeners(); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + float var7 = var6.getAlignmentX(); + var6.setVisible(false); + var6.setInheritsPopupMenu(false); + boolean var12 = var6.isDoubleBuffered(); + SpaceWar.SpacePanel var13 = new SpaceWar.SpacePanel(); + float var14 = var13.getAlignmentX(); + var13.setVisible(false); + var13.nextFocus(); + var13.reshape((-1), 1, (-1), 10); + var13.disable(); + java.awt.LayoutManager var24 = var13.getLayout(); + var6.setLayout(var24); + var0.setLayout(var24); + int var27 = var0.getComponentCount(); + boolean var28 = var0.isValidateRoot(); + float var29 = var0.getAlignmentX(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var28 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var29 == 0.5f); + + } + + public void test392() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test392"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + SpaceWar.SpacePanel var5 = new SpaceWar.SpacePanel(); + float var6 = var5.getAlignmentX(); + var5.setVisible(false); + var5.nextFocus(); + var5.reshape((-1), 1, (-1), 10); + var5.disable(); + boolean var16 = var5.isFocusable(); + int var17 = var5.getHeight(); + var0.setNextFocusableComponent((java.awt.Component)var5); + boolean var19 = var0.isMinimumSizeSet(); + java.awt.Dimension var20 = var0.preferredSize(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == 10); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + } + + public void test393() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test393"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var6 = var0.getMouseListeners(); + int var7 = var0.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var8 = var0.getInputMethodRequests(); + var0.removeNotify(); + var0.enable(); + SpaceWar.SpacePanel var11 = new SpaceWar.SpacePanel(); + java.awt.Color var12 = var11.getBackground(); + boolean var15 = var11.inside(0, (-1)); + var11.transferFocusUpCycle(); + java.lang.String var17 = var11.getName(); + boolean var18 = var0.isFocusCycleRoot((java.awt.Container)var11); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + java.awt.Color var20 = var19.getBackground(); + var19.repaint(); + var19.setRequestFocusEnabled(false); + var19.reshape(100, 0, 100, 0); + var19.requestFocus(); + var19.firePropertyChange("hi!", '4', ' '); + java.awt.Point var34 = var19.getLocation(); + java.awt.Component var35 = var11.getComponentAt(var34); + boolean var36 = var11.getVerifyInputWhenFocusTarget(); + boolean var37 = var11.isMinimumSizeSet(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var34); + + // Regression assertion (captures the current behavior of the code) + assertNull(var35); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var36 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == false); + + } + + public void test394() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test394"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + java.awt.im.InputMethodRequests var3 = var0.getInputMethodRequests(); + var0.setDoubleBuffered(true); + var0.show(false); + var0.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", (-1), 24); + java.awt.Point var12 = var0.location(); + java.awt.Dimension var13 = var0.getMinimumSize(); + var0.setIgnoreRepaint(false); + int var16 = var0.getX(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0); + + } + + public void test395() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test395"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + var0.setRequestFocusEnabled(false); + var0.setIgnoreRepaint(false); + java.lang.String var7 = var0.toString(); + java.awt.Color var8 = var0.getBackground(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.setVisible(false); + java.awt.Dimension var13 = var9.getPreferredSize(); + java.awt.Toolkit var14 = var9.getToolkit(); + java.awt.Toolkit var15 = var9.getToolkit(); + SpaceWar.Player var16 = new SpaceWar.Player(); + var16.increasePower(25); + int var19 = var16.getScore(); + var16.setRigth(true); + var16.loseLife(); + var0.putClientProperty((java.lang.Object)var9, (java.lang.Object)var16); + boolean var24 = var16.isRecovering(); + boolean var25 = var16.isDead(); + var16.setLife(3); + java.awt.image.BufferedImage var29 = var16.loadImg("SpaceWar.SpacePanel[,0,0,0x0,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + int var30 = var16.getY(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var7 + "' != '" + "SpaceWar.SpacePanel[,0,0,0var7,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"+ "'", var7.equals("SpaceWar.SpacePanel[,0,0,0var7,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]")); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var24 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var29); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var30 == 500); + + } + + public void test396() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test396"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.setInheritsPopupMenu(false); + var0.setFocusTraversalPolicyProvider(true); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + boolean var12 = var8.isDoubleBuffered(); + var8.list(); + SpaceWar.SpacePanel var14 = new SpaceWar.SpacePanel(); + float var15 = var14.getAlignmentX(); + var14.setVisible(false); + boolean var18 = var14.isDoubleBuffered(); + java.awt.dnd.DropTarget var19 = var14.getDropTarget(); + var14.show(false); + java.awt.Rectangle var22 = var14.getVisibleRect(); + java.awt.Rectangle var23 = var8.getBounds(var22); + javax.swing.JToolTip var24 = var8.createToolTip(); + var0.removeKeyListener((java.awt.event.KeyListener)var8); + java.awt.Cursor var26 = var8.getCursor(); + boolean var27 = var8.getFocusTraversalKeysEnabled(); + var8.setFocusable(true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var23); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == true); + + } + + public void test397() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test397"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.setInheritsPopupMenu(false); + var0.setFocusTraversalPolicyProvider(true); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + boolean var12 = var8.isDoubleBuffered(); + var8.list(); + SpaceWar.SpacePanel var14 = new SpaceWar.SpacePanel(); + float var15 = var14.getAlignmentX(); + var14.setVisible(false); + boolean var18 = var14.isDoubleBuffered(); + java.awt.dnd.DropTarget var19 = var14.getDropTarget(); + var14.show(false); + java.awt.Rectangle var22 = var14.getVisibleRect(); + java.awt.Rectangle var23 = var8.getBounds(var22); + javax.swing.JToolTip var24 = var8.createToolTip(); + var0.removeKeyListener((java.awt.event.KeyListener)var8); + javax.swing.TransferHandler var26 = var0.getTransferHandler(); + boolean var27 = var0.requestFocusInWindow(); + var0.updateUI(); + var0.paintImmediately(99, 499, 25, 100); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var23); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == false); + + } + + public void test398() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test398"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.repaint(1L); + SpaceWar.SpacePanel var7 = new SpaceWar.SpacePanel(); + float var8 = var7.getAlignmentX(); + var7.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var13 = new SpaceWar.SpacePanel(); + float var14 = var13.getAlignmentX(); + var13.setVisible(false); + java.awt.Dimension var17 = var13.getPreferredSize(); + var7.setMaximumSize(var17); + var0.setPreferredSize(var17); + javax.swing.plaf.PanelUI var20 = var0.getUI(); + SpaceWar.SpacePanel var21 = new SpaceWar.SpacePanel(); + float var22 = var21.getAlignmentX(); + var21.setVisible(false); + var21.nextFocus(); + var21.reshape((-1), 1, (-1), 10); + var21.disable(); + java.awt.LayoutManager var32 = var21.getLayout(); + java.awt.Container var33 = var21.getParent(); + java.lang.String var34 = var21.getUIClassID(); + SpaceWar.Enemy var37 = new SpaceWar.Enemy(0, 10); + var0.add((java.awt.Component)var21, (java.lang.Object)10); + javax.swing.JToolTip var39 = var0.createToolTip(); + java.awt.Point var40 = var39.getMousePosition(); + java.lang.String var41 = var39.toString(); + java.awt.FocusTraversalPolicy var42 = var39.getFocusTraversalPolicy(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var22 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var32); + + // Regression assertion (captures the current behavior of the code) + assertNull(var33); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var34 + "' != '" + "PanelUI"+ "'", var34.equals("PanelUI")); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var39); + + // Regression assertion (captures the current behavior of the code) + assertNull(var40); + + // Regression assertion (captures the current behavior of the code) + assertNull(var42); + + } + + public void test399() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test399"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + boolean var2 = var0.hasFocus(); + boolean var3 = var0.isPreferredSizeSet(); + var0.firePropertyChange("", (short)1, (short)0); + boolean var8 = var0.isMaximumSizeSet(); + var0.list(); + java.awt.Component var12 = var0.findComponentAt(25, 400); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var2 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var12); + + } + + public void test400() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test400"); + + + SpaceWar.Player var0 = new SpaceWar.Player(); + int var1 = var0.getPower(); + var0.setFiring(true); + var0.loseLife(); + int var5 = var0.getRequiredPower(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == 1); + + } + + public void test401() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test401"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.reshape((-1), 1, (-1), 10); + var0.disable(); + java.awt.LayoutManager var11 = var0.getLayout(); + boolean var14 = var0.contains((-1), 0); + SpaceWar.SpacePanel var15 = new SpaceWar.SpacePanel(); + float var16 = var15.getAlignmentX(); + var15.setVisible(false); + var15.nextFocus(); + var15.updateUI(); + var15.enableInputMethods(true); + var15.setSize((-1), 1); + java.awt.Component var26 = var0.add((java.awt.Component)var15); + var15.paintImmediately(100, 25, 2, 2); + boolean var32 = var15.getFocusTraversalKeysEnabled(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var32 == true); + + } + + public void test402() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test402"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + java.awt.Dimension var4 = var0.getPreferredSize(); + java.awt.Toolkit var5 = var0.getToolkit(); + boolean var6 = var0.isFocusable(); + javax.swing.KeyStroke[] var7 = var0.getRegisteredKeyStrokes(); + javax.swing.KeyStroke[] var8 = var0.getRegisteredKeyStrokes(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var4); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var8); + + } + + public void test403() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test403"); + + + SpaceWar.PowerUp var3 = new SpaceWar.PowerUp(100, (-1.0d), 0.0d); + double var4 = var3.getR(); + int var5 = var3.getType(); + double var6 = var3.getX(); + double var7 = var3.getY(); + boolean var8 = var3.update(); + double var9 = var3.getX(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0.0d); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == 100); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == (-1.0d)); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.0d); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == (-1.0d)); + + } + + public void test404() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test404"); + + + SpaceWar.Player var0 = new SpaceWar.Player(); + var0.increasePower(25); + int var3 = var0.getR(); + int var4 = var0.getScore(); + var0.loseLife(); + int var6 = var0.getX(); + var0.setDown(false); + int var9 = var0.getPower(); + int var10 = var0.getPowerLevel(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == 25); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == 400); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 24); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 1); + + } + + public void test405() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test405"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + boolean var2 = var0.hasFocus(); + SpaceWar.SpacePanel var3 = new SpaceWar.SpacePanel(); + float var4 = var3.getAlignmentX(); + var3.setVisible(false); + var3.nextFocus(); + var3.reshape((-1), 1, (-1), 10); + var3.disable(); + java.awt.LayoutManager var14 = var3.getLayout(); + var3.setVisible(false); + var0.remove((java.awt.Component)var3); + java.awt.Container var18 = var3.getFocusCycleRootAncestor(); + javax.swing.plaf.PanelUI var19 = var3.getUI(); + javax.swing.ActionMap var20 = var3.getActionMap(); + boolean var21 = var3.isDoubleBuffered(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var2 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == true); + + } + + public void test406() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test406"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + boolean var6 = var0.isFocusCycleRoot(); + var0.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", 100, 0); + SpaceWar.SpacePanel var11 = new SpaceWar.SpacePanel(); + float var12 = var11.getAlignmentX(); + var11.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var17 = var11.getUI(); + var0.add((java.awt.Component)var11, (java.lang.Object)(short)0); + java.awt.event.InputMethodListener[] var20 = var11.getInputMethodListeners(); + java.awt.Toolkit var21 = var11.getToolkit(); + int var22 = var11.getDebugGraphicsOptions(); + java.awt.Insets var23 = var11.getInsets(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var21); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var22 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var23); + + } + + public void test407() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test407"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + java.awt.Dimension var4 = var0.getPreferredSize(); + boolean var5 = var0.getVerifyInputWhenFocusTarget(); + java.awt.Component var8 = var0.findComponentAt(10, 1); + boolean var9 = var0.requestDefaultFocus(); + boolean var10 = var0.isPaintingTile(); + SpaceWar.SpacePanel var11 = new SpaceWar.SpacePanel(); + var11.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + javax.swing.plaf.PanelUI var16 = var11.getUI(); + java.awt.Color var17 = var11.getBackground(); + var0.addKeyListener((java.awt.event.KeyListener)var11); + java.awt.Dimension var19 = var11.getSize(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var4); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var19); + + } + + public void test408() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test408"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + boolean var5 = javax.swing.JComponent.isLightweightComponent((java.awt.Component)var0); + boolean var6 = var0.isRequestFocusEnabled(); + java.awt.Dimension var7 = var0.getSize(); + float var8 = var0.getAlignmentY(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 0.5f); + + } + + public void test409() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test409"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + float var7 = var6.getAlignmentX(); + var6.setVisible(false); + java.awt.Dimension var10 = var6.getPreferredSize(); + var0.setMaximumSize(var10); + boolean var12 = var0.getVerifyInputWhenFocusTarget(); + java.awt.Toolkit var13 = var0.getToolkit(); + java.awt.Dimension var14 = var0.minimumSize(); + java.awt.Image var17 = var0.createImage((-1), 400); + boolean var18 = var0.getVerifyInputWhenFocusTarget(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == true); + + } + + public void test410() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test410"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + var0.list(); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + float var7 = var6.getAlignmentX(); + var6.setVisible(false); + boolean var10 = var6.isDoubleBuffered(); + java.awt.dnd.DropTarget var11 = var6.getDropTarget(); + var6.show(false); + java.awt.Rectangle var14 = var6.getVisibleRect(); + java.awt.image.BufferedImage var16 = var6.loadImg("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + boolean var17 = var0.isAncestorOf((java.awt.Component)var6); + float var18 = var0.getAlignmentX(); + java.awt.image.VolatileImage var21 = var0.createVolatileImage(25, 1); + java.beans.PropertyChangeListener[] var23 = var0.getPropertyChangeListeners("PanelUI"); + boolean var24 = var0.isPaintingForPrint(); + java.awt.im.InputContext var25 = var0.getInputContext(); + java.awt.event.MouseMotionListener[] var26 = var0.getMouseMotionListeners(); + SpaceWar.SpacePanel var27 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var28 = new SpaceWar.SpacePanel(); + java.awt.Color var29 = var28.getBackground(); + SpaceWar.SpacePanel var30 = new SpaceWar.SpacePanel(); + float var31 = var30.getAlignmentX(); + var30.setVisible(false); + var30.nextFocus(); + var30.updateUI(); + var30.enableInputMethods(true); + var27.add((java.awt.Component)var28, (java.lang.Object)true); + java.awt.Dimension var39 = var28.getPreferredSize(); + boolean var40 = var28.isValidateRoot(); + java.awt.image.BufferedImage var42 = var28.loadImg(""); + SpaceWar.SpacePanel var43 = new SpaceWar.SpacePanel(); + float var44 = var43.getAlignmentX(); + var43.setVisible(false); + var43.setInheritsPopupMenu(false); + var43.setFocusTraversalPolicyProvider(true); + boolean var53 = var43.inside(25, 3); + SpaceWar.SpacePanel var54 = new SpaceWar.SpacePanel(); + float var55 = var54.getAlignmentX(); + var54.setVisible(false); + boolean var58 = var54.isDoubleBuffered(); + java.awt.dnd.DropTarget var59 = var54.getDropTarget(); + var54.show(false); + boolean var62 = var54.isPaintingForPrint(); + SpaceWar.SpacePanel var63 = new SpaceWar.SpacePanel(); + float var64 = var63.getAlignmentX(); + SpaceWar.SpacePanel var65 = new SpaceWar.SpacePanel(); + float var66 = var65.getAlignmentX(); + var65.setVisible(false); + java.awt.Dimension var69 = var65.getPreferredSize(); + boolean var70 = var65.getVerifyInputWhenFocusTarget(); + java.awt.Component var73 = var65.findComponentAt(10, 1); + var63.addKeyListener((java.awt.event.KeyListener)var65); + java.awt.Dimension var75 = var65.getMinimumSize(); + var54.setMinimumSize(var75); + var43.setPreferredSize(var75); + boolean var79 = var43.requestFocus(true); + var43.reshape((-1), 10, 24, 0); + java.awt.event.MouseWheelListener[] var85 = var43.getMouseWheelListeners(); + java.awt.FocusTraversalPolicy var86 = var43.getFocusTraversalPolicy(); + var28.setFocusTraversalPolicy(var86); + var0.setFocusTraversalPolicy(var86); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNull(var21); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var23); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var24 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var25); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var29); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var31 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var39); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var40 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var42); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var44 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var53 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var55 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var58 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var59); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var62 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var64 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var66 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var69); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var70 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var73); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var75); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var79 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var85); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var86); + + } + + public void test411() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test411"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + java.awt.Dimension var4 = var0.getPreferredSize(); + boolean var5 = var0.getVerifyInputWhenFocusTarget(); + java.awt.Component var8 = var0.findComponentAt(10, 1); + boolean var9 = var0.requestDefaultFocus(); + boolean var10 = var0.isPaintingTile(); + SpaceWar.SpacePanel var11 = new SpaceWar.SpacePanel(); + var11.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + javax.swing.plaf.PanelUI var16 = var11.getUI(); + java.awt.Color var17 = var11.getBackground(); + var0.addKeyListener((java.awt.event.KeyListener)var11); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + float var20 = var19.getAlignmentX(); + var19.setVisible(false); + var19.nextFocus(); + var19.repaint(1L); + var19.firePropertyChange("", (short)(-1), (short)(-1)); + java.awt.Component var32 = var19.getComponentAt(0, 100); + var19.nextFocus(); + boolean var34 = var0.isAncestorOf((java.awt.Component)var19); + SpaceWar.SpacePanel var35 = new SpaceWar.SpacePanel(); + float var36 = var35.getAlignmentX(); + var35.setVisible(false); + var35.nextFocus(); + var35.repaint(1L); + SpaceWar.SpacePanel var42 = new SpaceWar.SpacePanel(); + float var43 = var42.getAlignmentX(); + var42.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var48 = new SpaceWar.SpacePanel(); + float var49 = var48.getAlignmentX(); + var48.setVisible(false); + java.awt.Dimension var52 = var48.getPreferredSize(); + var42.setMaximumSize(var52); + var35.setPreferredSize(var52); + java.awt.Container var55 = var35.getFocusCycleRootAncestor(); + java.awt.image.ColorModel var56 = var35.getColorModel(); + java.awt.Component var58 = var0.add((java.awt.Component)var35, 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var4); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNull(var32); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var34 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var36 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var43 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var49 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var52); + + // Regression assertion (captures the current behavior of the code) + assertNull(var55); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var56); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var58); + + } + + public void test412() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test412"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var6 = var0.getUI(); + var0.disable(); + java.awt.FocusTraversalPolicy var8 = var0.getFocusTraversalPolicy(); + var0.transferFocus(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertNull(var8); + + } + + public void test413() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test413"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + java.awt.event.MouseMotionListener[] var6 = var0.getMouseMotionListeners(); + java.awt.event.ComponentListener[] var7 = var0.getComponentListeners(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + var8.nextFocus(); + var8.repaint(1L); + SpaceWar.SpacePanel var15 = new SpaceWar.SpacePanel(); + float var16 = var15.getAlignmentX(); + var15.setVisible(false); + boolean var19 = var15.isDoubleBuffered(); + var15.list(); + SpaceWar.SpacePanel var21 = new SpaceWar.SpacePanel(); + float var22 = var21.getAlignmentX(); + var21.setVisible(false); + boolean var25 = var21.isDoubleBuffered(); + java.awt.dnd.DropTarget var26 = var21.getDropTarget(); + var21.show(false); + java.awt.Rectangle var29 = var21.getVisibleRect(); + java.awt.Rectangle var30 = var15.getBounds(var29); + var8.setBounds(var30); + var0.paintImmediately(var30); + java.awt.Point var33 = var0.getMousePosition(); + java.awt.image.BufferedImage var35 = var0.loadImg("SpaceWar.SpacePanel[,-1,1,-1x10,invalid,hidden,disabled,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + var0.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", 3, 100); + java.awt.ComponentOrientation var40 = var0.getComponentOrientation(); + var0.requestFocus(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var22 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var29); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var30); + + // Regression assertion (captures the current behavior of the code) + assertNull(var33); + + // Regression assertion (captures the current behavior of the code) + assertNull(var35); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var40); + + } + + public void test414() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test414"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + var0.show(false); + boolean var8 = var0.isPaintingForPrint(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var15 = var9.getMouseListeners(); + int var16 = var9.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var17 = var9.getInputMethodRequests(); + var0.addKeyListener((java.awt.event.KeyListener)var9); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + float var20 = var19.getAlignmentX(); + var19.setVisible(false); + boolean var23 = var19.isDoubleBuffered(); + var19.list(); + float var25 = var19.getAlignmentY(); + boolean var26 = var9.isFocusCycleRoot((java.awt.Container)var19); + var19.firePropertyChange("", 1L, 1L); + java.awt.Component[] var31 = var19.getComponents(); + var19.repaint(25, 25, 499, 25); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var31); + + } + + public void test415() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test415"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + float var7 = var6.getAlignmentX(); + var6.setVisible(false); + java.awt.Dimension var10 = var6.getPreferredSize(); + var0.setMaximumSize(var10); + boolean var12 = var0.getVerifyInputWhenFocusTarget(); + javax.accessibility.AccessibleContext var13 = var0.getAccessibleContext(); + boolean var14 = var0.isDoubleBuffered(); + boolean var15 = var0.getAutoscrolls(); + var0.repaint(10L, (-1), 25, (-1), 100); + var0.updateUI(); + boolean var23 = var0.requestDefaultFocus(); + SpaceWar.SpacePanel var24 = new SpaceWar.SpacePanel(); + float var25 = var24.getAlignmentX(); + SpaceWar.SpacePanel var26 = new SpaceWar.SpacePanel(); + float var27 = var26.getAlignmentX(); + var26.setVisible(false); + java.awt.Dimension var30 = var26.getPreferredSize(); + boolean var31 = var26.getVerifyInputWhenFocusTarget(); + java.awt.Component var34 = var26.findComponentAt(10, 1); + var24.addKeyListener((java.awt.event.KeyListener)var26); + java.awt.Cursor var36 = var24.getCursor(); + var0.setCursor(var36); + boolean var38 = var0.isDoubleBuffered(); + SpaceWar.SpacePanel var39 = new SpaceWar.SpacePanel(); + java.awt.Color var40 = var39.getBackground(); + var39.repaint(); + var39.setRequestFocusEnabled(false); + var39.setIgnoreRepaint(false); + boolean var46 = var39.requestFocusInWindow(); + var39.setAlignmentY(100.0f); + java.awt.Component.BaselineResizeBehavior var49 = var39.getBaselineResizeBehavior(); + var39.list(); + var39.setToolTipText("PanelUI"); + var0.addKeyListener((java.awt.event.KeyListener)var39); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var30); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var31 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var34); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var36); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var38 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var40); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var46 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var49); + + } + + public void test416() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test416"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var1 = new SpaceWar.SpacePanel(); + java.awt.Color var2 = var1.getBackground(); + SpaceWar.SpacePanel var3 = new SpaceWar.SpacePanel(); + float var4 = var3.getAlignmentX(); + var3.setVisible(false); + var3.nextFocus(); + var3.updateUI(); + var3.enableInputMethods(true); + var0.add((java.awt.Component)var1, (java.lang.Object)true); + var1.repaint(100L); + var1.hide(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var2); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0.5f); + + } + + public void test417() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test417"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var6 = var0.getMouseListeners(); + java.awt.Dimension var7 = var0.getPreferredSize(); + java.util.Locale var8 = var0.getLocale(); + var0.setFocusable(true); + var0.setSize(3, 10); + var0.invalidate(); + boolean var15 = var0.isPreferredSizeSet(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == true); + + } + + public void test418() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test418"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + java.awt.im.InputMethodRequests var3 = var0.getInputMethodRequests(); + var0.setDoubleBuffered(true); + var0.setInheritsPopupMenu(false); + var0.invalidate(); + boolean var9 = javax.swing.JComponent.isLightweightComponent((java.awt.Component)var0); + java.awt.Dimension var10 = var0.getMaximumSize(); + SpaceWar.SpacePanel var11 = new SpaceWar.SpacePanel(); + java.awt.Color var12 = var11.getBackground(); + var11.repaint(); + java.awt.im.InputMethodRequests var14 = var11.getInputMethodRequests(); + var11.list(); + java.awt.Dimension var16 = var11.minimumSize(); + boolean var17 = var11.isOpaque(); + SpaceWar.SpacePanel var18 = new SpaceWar.SpacePanel(); + java.awt.Color var19 = var18.getBackground(); + var18.repaint(); + java.awt.im.InputMethodRequests var21 = var18.getInputMethodRequests(); + int var22 = var18.countComponents(); + java.awt.event.ComponentListener[] var23 = var18.getComponentListeners(); + var18.removeNotify(); + javax.swing.InputMap var25 = var18.getInputMap(); + int var26 = var18.getDebugGraphicsOptions(); + java.awt.Graphics var27 = var18.getGraphics(); + var18.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", (short)(-1), (short)100); + boolean var32 = var18.isEnabled(); + boolean var33 = var18.isMaximumSizeSet(); + SpaceWar.SpacePanel var34 = new SpaceWar.SpacePanel(); + float var35 = var34.getAlignmentX(); + var34.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var40 = var34.getUI(); + var18.setUI(var40); + var11.setUI(var40); + boolean var43 = var11.isMinimumSizeSet(); + java.awt.Rectangle var44 = var11.getVisibleRect(); + var0.setBounds(var44); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertNull(var21); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var22 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var23); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var25); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var27); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var32 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var33 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var35 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var40); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var43 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var44); + + } + + public void test419() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test419"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + SpaceWar.SpacePanel var4 = new SpaceWar.SpacePanel(); + java.awt.Color var5 = var4.getBackground(); + var0.setForeground(var5); + SpaceWar.SpacePanel var7 = new SpaceWar.SpacePanel(); + float var8 = var7.getAlignmentX(); + var7.setVisible(false); + boolean var11 = var7.isDoubleBuffered(); + java.awt.dnd.DropTarget var12 = var7.getDropTarget(); + var7.show(false); + java.awt.Rectangle var15 = var7.getVisibleRect(); + var0.repaint(var15); + java.awt.FocusTraversalPolicy var17 = var0.getFocusTraversalPolicy(); + var0.resetKeyboardActions(); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + float var20 = var19.getAlignmentX(); + var19.setVisible(false); + boolean var23 = var19.isDoubleBuffered(); + java.awt.dnd.DropTarget var24 = var19.getDropTarget(); + var19.show(false); + java.awt.Rectangle var27 = var19.getVisibleRect(); + var0.computeVisibleRect(var27); + SpaceWar.SpacePanel var29 = new SpaceWar.SpacePanel(); + float var30 = var29.getAlignmentX(); + boolean var31 = var29.hasFocus(); + SpaceWar.SpacePanel var32 = new SpaceWar.SpacePanel(); + float var33 = var32.getAlignmentX(); + var32.setVisible(false); + var32.nextFocus(); + var32.reshape((-1), 1, (-1), 10); + var32.disable(); + java.awt.LayoutManager var43 = var32.getLayout(); + var32.setVisible(false); + var29.remove((java.awt.Component)var32); + var32.repaint(); + var32.repaint(); + boolean var49 = var32.isRequestFocusEnabled(); + SpaceWar.SpacePanel var50 = new SpaceWar.SpacePanel(); + float var51 = var50.getAlignmentX(); + var50.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var56 = new SpaceWar.SpacePanel(); + float var57 = var56.getAlignmentX(); + var56.setVisible(false); + java.awt.Dimension var60 = var56.getPreferredSize(); + var50.setMaximumSize(var60); + boolean var62 = var50.getVerifyInputWhenFocusTarget(); + var50.transferFocusUpCycle(); + java.awt.Point var64 = var50.location(); + java.awt.Component var65 = var32.getComponentAt(var64); + java.awt.Point var66 = var0.getLocation(var64); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var27); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var30 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var31 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var33 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var43); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var49 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var51 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var57 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var60); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var62 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var64); + + // Regression assertion (captures the current behavior of the code) + assertNull(var65); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var66); + + } + + public void test420() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test420"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + java.awt.Dimension var4 = var0.getPreferredSize(); + boolean var5 = var0.getVerifyInputWhenFocusTarget(); + java.awt.Component var8 = var0.findComponentAt(10, 1); + boolean var9 = var0.requestDefaultFocus(); + var0.firePropertyChange("hi!", false, true); + boolean var14 = var0.isManagingFocus(); + boolean var15 = var0.isDoubleBuffered(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var4); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == true); + + } + + public void test421() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test421"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + boolean var4 = var0.inside(0, (-1)); + var0.transferFocusUpCycle(); + java.awt.Toolkit var6 = var0.getToolkit(); + java.awt.LayoutManager var7 = var0.getLayout(); + int var8 = var0.countComponents(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 0); + + } + + public void test422() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test422"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var6 = var0.getUI(); + java.awt.im.InputMethodRequests var7 = var0.getInputMethodRequests(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + var8.nextFocus(); + var8.updateUI(); + var8.enableInputMethods(true); + var8.setSize((-1), 1); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + var19.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var0.add((java.awt.Component)var8, (java.lang.Object)"SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + java.awt.ComponentOrientation var25 = var8.getComponentOrientation(); + boolean var26 = var8.isMaximumSizeSet(); + SpaceWar.SpacePanel var27 = new SpaceWar.SpacePanel(); + float var28 = var27.getAlignmentX(); + var27.setVisible(false); + boolean var31 = var27.isDoubleBuffered(); + java.awt.dnd.DropTarget var32 = var27.getDropTarget(); + var27.show(false); + boolean var35 = var27.isPaintingForPrint(); + SpaceWar.SpacePanel var36 = new SpaceWar.SpacePanel(); + float var37 = var36.getAlignmentX(); + var36.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var42 = var36.getMouseListeners(); + int var43 = var36.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var44 = var36.getInputMethodRequests(); + var27.addKeyListener((java.awt.event.KeyListener)var36); + SpaceWar.SpacePanel var46 = new SpaceWar.SpacePanel(); + float var47 = var46.getAlignmentX(); + var46.setVisible(false); + boolean var50 = var46.isDoubleBuffered(); + var46.list(); + float var52 = var46.getAlignmentY(); + boolean var53 = var36.isFocusCycleRoot((java.awt.Container)var46); + boolean var54 = var46.isEnabled(); + java.awt.Dimension var55 = var46.getMaximumSize(); + var8.setMinimumSize(var55); + SpaceWar.SpacePanel var57 = new SpaceWar.SpacePanel(); + float var58 = var57.getAlignmentX(); + boolean var59 = var57.hasFocus(); + java.awt.Insets var60 = var57.getInsets(); + java.awt.Rectangle var61 = var57.bounds(); + java.awt.event.MouseMotionListener[] var62 = var57.getMouseMotionListeners(); + boolean var63 = var57.isMaximumSizeSet(); + var8.setNextFocusableComponent((java.awt.Component)var57); + SpaceWar.SpacePanel var65 = new SpaceWar.SpacePanel(); + java.awt.Color var66 = var65.getBackground(); + var65.repaint(); + var65.setRequestFocusEnabled(false); + var65.setIgnoreRepaint(false); + boolean var72 = var65.requestFocusInWindow(); + java.awt.Rectangle var73 = var65.getBounds(); + var8.paintImmediately(var73); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var25); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var28 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var31 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var32); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var35 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var42); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var43 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var44); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var47 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var50 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var52 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var53 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var54 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var55); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var58 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var59 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var60); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var61); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var62); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var63 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var66); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var72 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var73); + + } + + public void test423() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test423"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var1 = new SpaceWar.SpacePanel(); + java.awt.Color var2 = var1.getBackground(); + SpaceWar.SpacePanel var3 = new SpaceWar.SpacePanel(); + float var4 = var3.getAlignmentX(); + var3.setVisible(false); + var3.nextFocus(); + var3.updateUI(); + var3.enableInputMethods(true); + var0.add((java.awt.Component)var1, (java.lang.Object)true); + java.awt.Image var14 = var1.createImage(1, (-1)); + java.awt.dnd.DropTarget var15 = var1.getDropTarget(); + boolean var18 = var1.contains(499, 100); + java.awt.event.HierarchyBoundsListener[] var19 = var1.getHierarchyBoundsListeners(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var2); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var19); + + } + + public void test424() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test424"); + + + SpaceWar.Player var0 = new SpaceWar.Player(); + int var1 = var0.getR(); + var0.setUp(false); + int var4 = var0.getLives(); + boolean var5 = var0.isRecovering(); + boolean var6 = var0.isDead(); + var0.setUp(false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 25); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 3); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == false); + + } + + public void test425() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test425"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.requestFocus(); + int var6 = var0.getHeight(); + var0.setEnabled(true); + javax.swing.InputVerifier var9 = var0.getInputVerifier(); + java.awt.Point var11 = var0.getMousePosition(false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var9); + + // Regression assertion (captures the current behavior of the code) + assertNull(var11); + + } + + public void test426() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test426"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.updateUI(); + var0.enableInputMethods(true); + var0.enableInputMethods(true); + java.awt.Component.BaselineResizeBehavior var10 = var0.getBaselineResizeBehavior(); + SpaceWar.SpacePanel var11 = new SpaceWar.SpacePanel(); + float var12 = var11.getAlignmentX(); + var11.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var17 = var11.getUI(); + java.awt.im.InputMethodRequests var18 = var11.getInputMethodRequests(); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + float var20 = var19.getAlignmentX(); + var19.setVisible(false); + var19.nextFocus(); + var19.updateUI(); + var19.enableInputMethods(true); + var19.setSize((-1), 1); + SpaceWar.SpacePanel var30 = new SpaceWar.SpacePanel(); + var30.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var11.add((java.awt.Component)var19, (java.lang.Object)"SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + SpaceWar.SpacePanel var36 = new SpaceWar.SpacePanel(); + var36.setName(""); + java.awt.ComponentOrientation var39 = var36.getComponentOrientation(); + var11.applyComponentOrientation(var39); + var0.setComponentOrientation(var39); + boolean var42 = var0.isFocusTraversalPolicySet(); + boolean var43 = javax.swing.JComponent.isLightweightComponent((java.awt.Component)var0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var39); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var42 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var43 == false); + + } + + public void test427() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test427"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + boolean var2 = var0.hasFocus(); + boolean var3 = var0.isPreferredSizeSet(); + var0.firePropertyChange("", (short)1, (short)0); + boolean var8 = var0.isMaximumSizeSet(); + java.awt.image.ColorModel var9 = var0.getColorModel(); + var0.enableInputMethods(true); + boolean var12 = var0.isPaintingForPrint(); + boolean var13 = var0.isValidateRoot(); + boolean var14 = var0.isOptimizedDrawingEnabled(); + java.awt.Insets var15 = var0.getInsets(); + boolean var16 = var0.isForegroundSet(); + java.lang.String var17 = var0.getUIClassID(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var2 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var9); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var17 + "' != '" + "PanelUI"+ "'", var17.equals("PanelUI")); + + } + + public void test428() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test428"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + float var7 = var6.getAlignmentX(); + var6.setVisible(false); + java.awt.Dimension var10 = var6.getPreferredSize(); + var0.setMaximumSize(var10); + boolean var12 = var0.getVerifyInputWhenFocusTarget(); + boolean var13 = var0.isFontSet(); + boolean var14 = var0.getIgnoreRepaint(); + java.awt.Component var17 = var0.locate(1, 25); + boolean var18 = var0.isLightweight(); + var0.move(100, 500); + SpaceWar.SpacePanel var22 = new SpaceWar.SpacePanel(); + float var23 = var22.getAlignmentX(); + var22.setVisible(false); + var22.nextFocus(); + SpaceWar.SpacePanel var27 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var28 = new SpaceWar.SpacePanel(); + java.awt.Color var29 = var28.getBackground(); + SpaceWar.SpacePanel var30 = new SpaceWar.SpacePanel(); + float var31 = var30.getAlignmentX(); + var30.setVisible(false); + var30.nextFocus(); + var30.updateUI(); + var30.enableInputMethods(true); + var27.add((java.awt.Component)var28, (java.lang.Object)true); + java.awt.Dimension var39 = var28.getPreferredSize(); + var22.setMaximumSize(var39); + java.awt.Dimension var41 = var22.preferredSize(); + java.lang.String var42 = var22.getToolTipText(); + var0.removeKeyListener((java.awt.event.KeyListener)var22); + var22.resetKeyboardActions(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var29); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var31 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var39); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var41); + + // Regression assertion (captures the current behavior of the code) + assertNull(var42); + + } + + public void test429() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test429"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + java.awt.Dimension var4 = var0.getPreferredSize(); + boolean var5 = var0.getVerifyInputWhenFocusTarget(); + java.awt.Component var8 = var0.findComponentAt(10, 1); + boolean var9 = var0.requestDefaultFocus(); + boolean var10 = var0.isPaintingTile(); + SpaceWar.SpacePanel var11 = new SpaceWar.SpacePanel(); + var11.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + javax.swing.plaf.PanelUI var16 = var11.getUI(); + java.awt.Color var17 = var11.getBackground(); + var0.addKeyListener((java.awt.event.KeyListener)var11); + java.awt.Component var21 = var0.getComponentAt(2, 500); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var4); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertNull(var21); + + } + + public void test430() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test430"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.updateUI(); + var0.enableInputMethods(true); + java.awt.Point var9 = var0.getMousePosition(false); + java.awt.Dimension var10 = var0.getMinimumSize(); + SpaceWar.SpacePanel var11 = new SpaceWar.SpacePanel(); + java.awt.Color var12 = var11.getBackground(); + var11.repaint(); + java.awt.im.InputMethodRequests var14 = var11.getInputMethodRequests(); + int var15 = var11.countComponents(); + java.awt.event.ComponentListener[] var16 = var11.getComponentListeners(); + var11.removeNotify(); + var0.addKeyListener((java.awt.event.KeyListener)var11); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNull(var9); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + } + + public void test431() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test431"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.reshape((-1), 1, (-1), 10); + SpaceWar.SpacePanel var10 = new SpaceWar.SpacePanel(); + java.awt.Color var11 = var10.getBackground(); + var10.repaint(); + var10.setRequestFocusEnabled(false); + var10.reshape(100, 0, 100, 0); + java.awt.Component var20 = var0.add((java.awt.Component)var10); + java.awt.im.InputContext var21 = var10.getInputContext(); + var10.requestFocus(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertNull(var21); + + } + + public void test432() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test432"); + + + SpaceWar.PowerUp var3 = new SpaceWar.PowerUp(499, 495.44236387443226d, 0.0d); + boolean var4 = var3.update(); + int var5 = var3.getType(); + int var6 = var3.getType(); + double var7 = var3.getR(); + int var8 = var3.getType(); + double var9 = var3.getY(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == 499); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == 499); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.0d); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 499); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 2.0d); + + } + + public void test433() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test433"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + java.awt.Point var6 = var0.getMousePosition(); + java.lang.String var7 = var0.getUIClassID(); + var0.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", '#', '4'); + boolean var12 = var0.requestDefaultFocus(); + java.awt.Dimension var13 = var0.getSize(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var7 + "' != '" + "PanelUI"+ "'", var7.equals("PanelUI")); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var13); + + } + + public void test434() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test434"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var1 = new SpaceWar.SpacePanel(); + java.awt.Color var2 = var1.getBackground(); + SpaceWar.SpacePanel var3 = new SpaceWar.SpacePanel(); + float var4 = var3.getAlignmentX(); + var3.setVisible(false); + var3.nextFocus(); + var3.updateUI(); + var3.enableInputMethods(true); + var0.add((java.awt.Component)var1, (java.lang.Object)true); + java.awt.Image var14 = var1.createImage(1, (-1)); + boolean var15 = var1.isValidateRoot(); + boolean var16 = var1.isFocusTraversalPolicyProvider(); + java.awt.Point var17 = var1.getMousePosition(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var2); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + } + + public void test435() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test435"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.reshape((-1), 1, (-1), 10); + SpaceWar.SpacePanel var10 = new SpaceWar.SpacePanel(); + java.awt.Color var11 = var10.getBackground(); + var10.repaint(); + var10.setRequestFocusEnabled(false); + var10.reshape(100, 0, 100, 0); + java.awt.Component var20 = var0.add((java.awt.Component)var10); + SpaceWar.SpacePanel var21 = new SpaceWar.SpacePanel(); + var21.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + javax.swing.plaf.PanelUI var26 = var21.getUI(); + SpaceWar.SpacePanel var27 = new SpaceWar.SpacePanel(); + float var28 = var27.getAlignmentX(); + var27.setVisible(false); + var27.nextFocus(); + var27.repaint(1L); + SpaceWar.SpacePanel var34 = new SpaceWar.SpacePanel(); + float var35 = var34.getAlignmentX(); + var34.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var40 = new SpaceWar.SpacePanel(); + float var41 = var40.getAlignmentX(); + var40.setVisible(false); + java.awt.Dimension var44 = var40.getPreferredSize(); + var34.setMaximumSize(var44); + var27.setPreferredSize(var44); + var21.setMaximumSize(var44); + java.awt.Dimension var48 = var10.getSize(var44); + boolean var49 = var10.isFontSet(); + boolean var50 = javax.swing.JComponent.isLightweightComponent((java.awt.Component)var10); + java.util.Locale var51 = javax.swing.JComponent.getDefaultLocale(); + javax.swing.JComponent.setDefaultLocale(var51); + javax.swing.JComponent.setDefaultLocale(var51); + javax.swing.JComponent.setDefaultLocale(var51); + var10.setLocale(var51); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var28 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var35 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var41 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var44); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var48); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var49 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var50 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var51); + + } + + public void test436() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test436"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + boolean var4 = var0.inside(0, (-1)); + SpaceWar.SpacePanel var5 = new SpaceWar.SpacePanel(); + float var6 = var5.getAlignmentX(); + var5.setVisible(false); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + java.awt.Color var10 = var9.getBackground(); + var5.setForeground(var10); + var0.setForeground(var10); + javax.swing.border.Border var13 = var0.getBorder(); + var0.transferFocusBackward(); + boolean var15 = var0.isLightweight(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == false); + + } + + public void test437() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test437"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.setInheritsPopupMenu(false); + var0.setFocusTraversalPolicyProvider(true); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + boolean var12 = var8.isDoubleBuffered(); + var8.list(); + SpaceWar.SpacePanel var14 = new SpaceWar.SpacePanel(); + float var15 = var14.getAlignmentX(); + var14.setVisible(false); + boolean var18 = var14.isDoubleBuffered(); + java.awt.dnd.DropTarget var19 = var14.getDropTarget(); + var14.show(false); + java.awt.Rectangle var22 = var14.getVisibleRect(); + java.awt.Rectangle var23 = var8.getBounds(var22); + javax.swing.JToolTip var24 = var8.createToolTip(); + var0.removeKeyListener((java.awt.event.KeyListener)var8); + javax.swing.TransferHandler var26 = var0.getTransferHandler(); + var0.transferFocus(); + boolean var28 = var0.isFocusable(); + var0.disable(); + java.awt.event.ComponentListener[] var30 = var0.getComponentListeners(); + var0.show(true); + java.awt.Dimension var33 = var0.getSize(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var23); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var28 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var30); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var33); + + } + + public void test438() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test438"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.setInheritsPopupMenu(false); + var0.move(10, 10); + javax.swing.TransferHandler var9 = var0.getTransferHandler(); + java.awt.Component var12 = var0.locate(2, 499); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNull(var9); + + // Regression assertion (captures the current behavior of the code) + assertNull(var12); + + } + + public void test439() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test439"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + java.awt.Dimension var4 = var0.getPreferredSize(); + boolean var5 = var0.getVerifyInputWhenFocusTarget(); + java.awt.Component var8 = var0.findComponentAt(10, 1); + boolean var9 = var0.requestDefaultFocus(); + var0.setVerifyInputWhenFocusTarget(true); + var0.transferFocusDownCycle(); + java.awt.Dimension var13 = var0.getSize(); + SpaceWar.SpacePanel var14 = new SpaceWar.SpacePanel(); + java.awt.Color var15 = var14.getBackground(); + var14.repaint(); + java.awt.im.InputMethodRequests var17 = var14.getInputMethodRequests(); + var14.setDoubleBuffered(true); + var14.show(false); + var14.setAlignmentY(100.0f); + java.awt.Dimension var24 = var14.minimumSize(); + var0.setMinimumSize(var24); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var4); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var24); + + } + + public void test440() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test440"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + java.awt.event.MouseMotionListener[] var6 = var0.getMouseMotionListeners(); + java.awt.event.ComponentListener[] var7 = var0.getComponentListeners(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + var8.nextFocus(); + var8.repaint(1L); + SpaceWar.SpacePanel var15 = new SpaceWar.SpacePanel(); + float var16 = var15.getAlignmentX(); + var15.setVisible(false); + boolean var19 = var15.isDoubleBuffered(); + var15.list(); + SpaceWar.SpacePanel var21 = new SpaceWar.SpacePanel(); + float var22 = var21.getAlignmentX(); + var21.setVisible(false); + boolean var25 = var21.isDoubleBuffered(); + java.awt.dnd.DropTarget var26 = var21.getDropTarget(); + var21.show(false); + java.awt.Rectangle var29 = var21.getVisibleRect(); + java.awt.Rectangle var30 = var15.getBounds(var29); + var8.setBounds(var30); + var0.paintImmediately(var30); + var0.doLayout(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var22 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var29); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var30); + + } + + public void test441() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test441"); + + + SpaceWar.Enemy var2 = new SpaceWar.Enemy(0, 10); + int var3 = var2.getRank(); + double var4 = var2.getY(); + var2.update(); + int var6 = var2.getType(); + var2.hit(); + double var8 = var2.getY(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == 10); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0.0d); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 0.0d); + + } + + public void test442() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test442"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + var0.setRequestFocusEnabled(false); + var0.reshape(100, 0, 100, 0); + var0.requestFocus(); + java.awt.Rectangle var11 = var0.getVisibleRect(); + java.awt.Rectangle var12 = var0.getBounds(); + java.awt.im.InputMethodRequests var13 = var0.getInputMethodRequests(); + boolean var14 = var0.requestFocusInWindow(); + java.awt.Rectangle var15 = var0.bounds(); + SpaceWar.SpacePanel var16 = new SpaceWar.SpacePanel(); + float var17 = var16.getAlignmentX(); + var16.setVisible(false); + var16.nextFocus(); + var16.reshape((-1), 1, (-1), 10); + var16.disable(); + boolean var27 = var16.isFocusable(); + java.awt.Dimension var28 = var16.getSize(); + var0.setSize(var28); + java.awt.Container var30 = var0.getFocusCycleRootAncestor(); + javax.swing.InputVerifier var31 = var0.getInputVerifier(); + java.beans.PropertyChangeListener[] var33 = var0.getPropertyChangeListeners("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=1.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + var0.setSize(3, 400); + boolean var37 = javax.swing.JComponent.isLightweightComponent((java.awt.Component)var0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var28); + + // Regression assertion (captures the current behavior of the code) + assertNull(var30); + + // Regression assertion (captures the current behavior of the code) + assertNull(var31); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var33); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == false); + + } + + public void test443() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test443"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var1 = new SpaceWar.SpacePanel(); + java.awt.Color var2 = var1.getBackground(); + SpaceWar.SpacePanel var3 = new SpaceWar.SpacePanel(); + float var4 = var3.getAlignmentX(); + var3.setVisible(false); + var3.nextFocus(); + var3.updateUI(); + var3.enableInputMethods(true); + var0.add((java.awt.Component)var1, (java.lang.Object)true); + var0.setFocusTraversalKeysEnabled(true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var2); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0.5f); + + } + + public void test444() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test444"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + var0.setRequestFocusEnabled(false); + var0.setIgnoreRepaint(false); + java.lang.String var7 = var0.toString(); + boolean var9 = var0.requestFocus(false); + var0.setDebugGraphicsOptions(25); + java.awt.image.ColorModel var12 = var0.getColorModel(); + int var13 = var0.countComponents(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var7 + "' != '" + "SpaceWar.SpacePanel[,0,0,0var7,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"+ "'", var7.equals("SpaceWar.SpacePanel[,0,0,0var7,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]")); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == 0); + + } + + public void test445() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test445"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var6 = var0.getMouseListeners(); + java.awt.Dimension var7 = var0.getPreferredSize(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + var8.nextFocus(); + var8.reshape((-1), 1, (-1), 10); + SpaceWar.SpacePanel var18 = new SpaceWar.SpacePanel(); + java.awt.Color var19 = var18.getBackground(); + var18.repaint(); + var18.setRequestFocusEnabled(false); + var18.reshape(100, 0, 100, 0); + java.awt.Component var28 = var8.add((java.awt.Component)var18); + SpaceWar.SpacePanel var29 = new SpaceWar.SpacePanel(); + var29.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + javax.swing.plaf.PanelUI var34 = var29.getUI(); + SpaceWar.SpacePanel var35 = new SpaceWar.SpacePanel(); + float var36 = var35.getAlignmentX(); + var35.setVisible(false); + var35.nextFocus(); + var35.repaint(1L); + SpaceWar.SpacePanel var42 = new SpaceWar.SpacePanel(); + float var43 = var42.getAlignmentX(); + var42.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var48 = new SpaceWar.SpacePanel(); + float var49 = var48.getAlignmentX(); + var48.setVisible(false); + java.awt.Dimension var52 = var48.getPreferredSize(); + var42.setMaximumSize(var52); + var35.setPreferredSize(var52); + var29.setMaximumSize(var52); + java.awt.Dimension var56 = var18.getSize(var52); + SpaceWar.SpacePanel var57 = new SpaceWar.SpacePanel(); + float var58 = var57.getAlignmentX(); + var57.setVisible(false); + boolean var61 = var57.isDoubleBuffered(); + java.awt.dnd.DropTarget var62 = var57.getDropTarget(); + var57.show(false); + boolean var65 = var57.isPaintingForPrint(); + SpaceWar.SpacePanel var66 = new SpaceWar.SpacePanel(); + float var67 = var66.getAlignmentX(); + var66.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var72 = var66.getMouseListeners(); + int var73 = var66.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var74 = var66.getInputMethodRequests(); + var57.addKeyListener((java.awt.event.KeyListener)var66); + SpaceWar.SpacePanel var76 = new SpaceWar.SpacePanel(); + float var77 = var76.getAlignmentX(); + var76.setVisible(false); + boolean var80 = var76.isDoubleBuffered(); + var76.list(); + float var82 = var76.getAlignmentY(); + boolean var83 = var66.isFocusCycleRoot((java.awt.Container)var76); + var18.setNextFocusableComponent((java.awt.Component)var76); + var76.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=1.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", 0.0f, 0.5f); + var76.show(false); + var0.addKeyListener((java.awt.event.KeyListener)var76); + java.awt.Image var94 = var76.createImage(99, 400); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var28); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var34); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var36 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var43 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var49 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var52); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var56); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var58 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var61 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var62); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var65 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var67 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var72); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var73 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var74); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var77 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var80 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var82 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var83 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var94); + + } + + public void test446() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test446"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + SpaceWar.SpacePanel var4 = new SpaceWar.SpacePanel(); + java.awt.Color var5 = var4.getBackground(); + var0.setForeground(var5); + SpaceWar.SpacePanel var7 = new SpaceWar.SpacePanel(); + float var8 = var7.getAlignmentX(); + var7.setVisible(false); + boolean var11 = var7.isDoubleBuffered(); + java.awt.dnd.DropTarget var12 = var7.getDropTarget(); + var7.show(false); + java.awt.Rectangle var15 = var7.getVisibleRect(); + var0.repaint(var15); + java.awt.FocusTraversalPolicy var17 = var0.getFocusTraversalPolicy(); + SpaceWar.SpacePanel var18 = new SpaceWar.SpacePanel(); + float var19 = var18.getAlignmentX(); + var18.firePropertyChange("", (-1), 1); + boolean var24 = var18.isFocusOwner(); + SpaceWar.SpacePanel var26 = new SpaceWar.SpacePanel(); + float var27 = var26.getAlignmentX(); + var26.setVisible(false); + java.awt.Dimension var30 = var26.getPreferredSize(); + java.awt.Toolkit var31 = var26.getToolkit(); + SpaceWar.SpacePanel var32 = new SpaceWar.SpacePanel(); + var32.setName(""); + int var35 = var32.getX(); + SpaceWar.SpacePanel var36 = new SpaceWar.SpacePanel(); + float var37 = var36.getAlignmentX(); + var36.setVisible(false); + var36.nextFocus(); + SpaceWar.SpacePanel var41 = new SpaceWar.SpacePanel(); + float var42 = var41.getAlignmentX(); + var41.setVisible(false); + SpaceWar.SpacePanel var45 = new SpaceWar.SpacePanel(); + java.awt.Color var46 = var45.getBackground(); + var41.setForeground(var46); + var36.setBackground(var46); + var32.setBackground(var46); + var26.setForeground(var46); + var18.putClientProperty((java.lang.Object)(byte)100, (java.lang.Object)var46); + var0.setBackground(var46); + javax.swing.JToolTip var53 = var0.createToolTip(); + var53.enable(true); + javax.swing.InputVerifier var56 = var53.getInputVerifier(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var24 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var30); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var31); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var35 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var42 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var46); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var53); + + // Regression assertion (captures the current behavior of the code) + assertNull(var56); + + } + + public void test447() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test447"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + float var7 = var6.getAlignmentX(); + var6.setVisible(false); + java.awt.Dimension var10 = var6.getPreferredSize(); + var0.setMaximumSize(var10); + boolean var12 = var0.getVerifyInputWhenFocusTarget(); + boolean var13 = var0.isFontSet(); + SpaceWar.SpacePanel var14 = new SpaceWar.SpacePanel(); + float var15 = var14.getAlignmentX(); + var14.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var20 = var14.getUI(); + java.awt.im.InputMethodRequests var21 = var14.getInputMethodRequests(); + SpaceWar.SpacePanel var22 = new SpaceWar.SpacePanel(); + float var23 = var22.getAlignmentX(); + var22.setVisible(false); + var22.nextFocus(); + var22.updateUI(); + var22.enableInputMethods(true); + var22.setSize((-1), 1); + SpaceWar.SpacePanel var33 = new SpaceWar.SpacePanel(); + var33.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var14.add((java.awt.Component)var22, (java.lang.Object)"SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + java.awt.ComponentOrientation var39 = var22.getComponentOrientation(); + java.beans.VetoableChangeListener[] var40 = var22.getVetoableChangeListeners(); + int var41 = var22.getHeight(); + var22.enable(true); + boolean var44 = var22.isFocusTraversalPolicyProvider(); + SpaceWar.SpacePanel var45 = new SpaceWar.SpacePanel(); + java.awt.Color var46 = var45.getBackground(); + var45.repaint(); + var45.setRequestFocusEnabled(false); + var45.reshape(100, 0, 100, 0); + var45.requestFocus(); + var45.firePropertyChange("hi!", '4', ' '); + java.awt.Point var60 = var45.getLocation(); + var22.setLocation(var60); + boolean var62 = var22.isManagingFocus(); + int var63 = var0.getComponentZOrder((java.awt.Component)var22); + SpaceWar.SpacePanel var64 = new SpaceWar.SpacePanel(); + float var65 = var64.getAlignmentX(); + SpaceWar.SpacePanel var66 = new SpaceWar.SpacePanel(); + float var67 = var66.getAlignmentX(); + var66.setVisible(false); + java.awt.Dimension var70 = var66.getPreferredSize(); + boolean var71 = var66.getVerifyInputWhenFocusTarget(); + java.awt.Component var74 = var66.findComponentAt(10, 1); + var64.addKeyListener((java.awt.event.KeyListener)var66); + java.awt.Dimension var76 = var66.getMinimumSize(); + SpaceWar.SpacePanel var77 = new SpaceWar.SpacePanel(); + java.awt.Color var78 = var77.getBackground(); + var77.repaint(); + var77.setRequestFocusEnabled(false); + var77.reshape(100, 0, 100, 0); + var77.requestFocus(); + java.awt.Rectangle var88 = var77.getVisibleRect(); + var66.setBounds(var88); + var22.computeVisibleRect(var88); + boolean var91 = var22.isEnabled(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertNull(var21); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var39); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var40); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var41 == 1); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var44 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var46); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var60); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var62 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var63 == (-1)); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var65 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var67 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var70); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var71 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var74); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var76); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var78); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var88); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var91 == true); + + } + + public void test448() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test448"); + + + SpaceWar.PowerUp var3 = new SpaceWar.PowerUp(100, (-1.0d), 0.0d); + double var4 = var3.getX(); + double var5 = var3.getY(); + boolean var6 = var3.update(); + int var7 = var3.getType(); + double var8 = var3.getX(); + double var9 = var3.getR(); + int var10 = var3.getType(); + boolean var11 = var3.update(); + boolean var12 = var3.update(); + double var13 = var3.getY(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == (-1.0d)); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == 0.0d); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 100); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == (-1.0d)); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.0d); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 100); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == 6.0d); + + } + + public void test449() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test449"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + float var7 = var6.getAlignmentX(); + var6.setVisible(false); + java.awt.Dimension var10 = var6.getPreferredSize(); + var0.setMaximumSize(var10); + boolean var12 = var0.getVerifyInputWhenFocusTarget(); + var0.transferFocusUpCycle(); + java.awt.Point var14 = var0.location(); + SpaceWar.SpacePanel var15 = new SpaceWar.SpacePanel(); + java.awt.Color var16 = var15.getBackground(); + var15.repaint(); + java.awt.im.InputMethodRequests var18 = var15.getInputMethodRequests(); + var15.setDoubleBuffered(true); + SpaceWar.SpacePanel var21 = new SpaceWar.SpacePanel(); + float var22 = var21.getAlignmentX(); + boolean var23 = var21.hasFocus(); + java.awt.Insets var24 = var21.getInsets(); + java.awt.Insets var25 = var15.getInsets(var24); + SpaceWar.SpacePanel var26 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var27 = new SpaceWar.SpacePanel(); + java.awt.Color var28 = var27.getBackground(); + SpaceWar.SpacePanel var29 = new SpaceWar.SpacePanel(); + float var30 = var29.getAlignmentX(); + var29.setVisible(false); + var29.nextFocus(); + var29.updateUI(); + var29.enableInputMethods(true); + var26.add((java.awt.Component)var27, (java.lang.Object)true); + java.awt.Image var40 = var27.createImage(1, (-1)); + SpaceWar.SpacePanel var41 = new SpaceWar.SpacePanel(); + float var42 = var41.getAlignmentX(); + var41.setVisible(false); + var41.nextFocus(); + var41.updateUI(); + var41.enableInputMethods(true); + SpaceWar.SpacePanel var49 = new SpaceWar.SpacePanel(); + float var50 = var49.getAlignmentX(); + boolean var51 = var49.hasFocus(); + java.awt.Insets var52 = var49.getInsets(); + java.awt.Insets var53 = var41.getInsets(var52); + java.awt.Insets var54 = var27.getInsets(var52); + java.awt.Insets var55 = var15.getInsets(var52); + java.awt.Component var56 = var0.add((java.awt.Component)var15); + var56.resize(0, 3); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var22 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var25); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var28); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var30 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNull(var40); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var42 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var50 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var51 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var52); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var53); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var54); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var55); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var56); + + } + + public void test450() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test450"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + var0.list(); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + float var7 = var6.getAlignmentX(); + var6.setVisible(false); + boolean var10 = var6.isDoubleBuffered(); + java.awt.dnd.DropTarget var11 = var6.getDropTarget(); + var6.show(false); + java.awt.Rectangle var14 = var6.getVisibleRect(); + java.awt.Rectangle var15 = var0.getBounds(var14); + javax.swing.JToolTip var16 = var0.createToolTip(); + var0.firePropertyChange("", false, false); + boolean var21 = var0.isFocusTraversalPolicySet(); + var0.repaint(1L); + java.awt.FocusTraversalPolicy var24 = var0.getFocusTraversalPolicy(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var24); + + } + + public void test451() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test451"); + + + SpaceWar.PowerUp var3 = new SpaceWar.PowerUp(100, (-1.0d), 0.0d); + double var4 = var3.getR(); + double var5 = var3.getY(); + double var6 = var3.getY(); + int var7 = var3.getType(); + int var8 = var3.getType(); + double var9 = var3.getR(); + boolean var10 = var3.update(); + double var11 = var3.getX(); + boolean var12 = var3.update(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0.0d); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == 0.0d); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == 0.0d); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 100); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 100); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.0d); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == (-1.0d)); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == false); + + } + + public void test452() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test452"); + + + SpaceWar.Player var0 = new SpaceWar.Player(); + var0.increasePower(25); + int var3 = var0.getR(); + int var4 = var0.getScore(); + var0.loseLife(); + boolean var6 = var0.isRecovering(); + var0.setFiring(false); + int var9 = var0.getScore(); + var0.setLeft(true); + var0.setDown(false); + var0.setScore(500); + int var16 = var0.getScore(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == 25); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 500); + + } + + public void test453() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test453"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.updateUI(); + var0.enableInputMethods(true); + java.awt.Point var8 = var0.getMousePosition(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.setVisible(false); + boolean var13 = var9.isDoubleBuffered(); + java.awt.dnd.DropTarget var14 = var9.getDropTarget(); + var9.show(false); + boolean var17 = var9.isPaintingForPrint(); + SpaceWar.SpacePanel var18 = new SpaceWar.SpacePanel(); + float var19 = var18.getAlignmentX(); + var18.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var24 = var18.getMouseListeners(); + int var25 = var18.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var26 = var18.getInputMethodRequests(); + var9.addKeyListener((java.awt.event.KeyListener)var18); + SpaceWar.SpacePanel var28 = new SpaceWar.SpacePanel(); + float var29 = var28.getAlignmentX(); + var28.setVisible(false); + boolean var32 = var28.isDoubleBuffered(); + var28.list(); + float var34 = var28.getAlignmentY(); + boolean var35 = var18.isFocusCycleRoot((java.awt.Container)var28); + var28.firePropertyChange("", 1L, 1L); + var28.setVerifyInputWhenFocusTarget(true); + var28.resize(25, 400); + SpaceWar.SpacePanel var45 = new SpaceWar.SpacePanel(); + float var46 = var45.getAlignmentX(); + var45.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var51 = var45.getMouseListeners(); + java.awt.Dimension var52 = var45.getPreferredSize(); + java.beans.PropertyChangeListener[] var53 = var45.getPropertyChangeListeners(); + java.awt.LayoutManager var54 = var45.getLayout(); + var28.setLayout(var54); + var0.removeKeyListener((java.awt.event.KeyListener)var28); + SpaceWar.SpacePanel var57 = new SpaceWar.SpacePanel(); + java.awt.Color var58 = var57.getBackground(); + var57.repaint(); + var57.setRequestFocusEnabled(false); + var57.reshape(100, 0, 100, 0); + java.beans.VetoableChangeListener[] var67 = var57.getVetoableChangeListeners(); + java.awt.Rectangle var68 = var57.getVisibleRect(); + float var69 = var57.getAlignmentY(); + java.awt.Dimension var70 = var57.minimumSize(); + javax.swing.InputVerifier var71 = var57.getInputVerifier(); + java.awt.Font var72 = var57.getFont(); + java.awt.LayoutManager var73 = var57.getLayout(); + var0.setLayout(var73); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var29 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var32 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var34 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var35 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var46 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var51); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var52); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var53); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var54); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var58); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var67); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var68); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var69 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var70); + + // Regression assertion (captures the current behavior of the code) + assertNull(var71); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var72); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var73); + + } + + public void test454() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test454"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + SpaceWar.SpacePanel var5 = new SpaceWar.SpacePanel(); + float var6 = var5.getAlignmentX(); + var5.setVisible(false); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + java.awt.Color var10 = var9.getBackground(); + var5.setForeground(var10); + var0.setBackground(var10); + javax.swing.plaf.PanelUI var13 = var0.getUI(); + java.awt.peer.ComponentPeer var14 = var0.getPeer(); + java.awt.Point var15 = var0.location(); + boolean var16 = var0.requestDefaultFocus(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == false); + + } + + public void test455() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test455"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + var0.setName(""); + java.awt.Dimension var3 = var0.minimumSize(); + boolean var4 = var0.isDoubleBuffered(); + SpaceWar.SpacePanel var5 = new SpaceWar.SpacePanel(); + float var6 = var5.getAlignmentX(); + var5.setVisible(false); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + java.awt.Color var10 = var9.getBackground(); + var5.setForeground(var10); + SpaceWar.SpacePanel var12 = new SpaceWar.SpacePanel(); + float var13 = var12.getAlignmentX(); + var12.setVisible(false); + boolean var16 = var12.isDoubleBuffered(); + java.awt.dnd.DropTarget var17 = var12.getDropTarget(); + var12.show(false); + java.awt.Rectangle var20 = var12.getVisibleRect(); + var5.repaint(var20); + java.awt.FocusTraversalPolicy var22 = var5.getFocusTraversalPolicy(); + java.awt.im.InputMethodRequests var23 = var5.getInputMethodRequests(); + var5.layout(); + boolean var25 = var5.isFocusTraversalPolicyProvider(); + java.awt.Component var26 = var0.add((java.awt.Component)var5); + var5.setOpaque(false); + float var29 = var5.getAlignmentX(); + java.awt.Component var32 = var5.locate(498, (-1)); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertNull(var23); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var29 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNull(var32); + + } + + public void test456() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test456"); + + + SpaceWar.Player var0 = new SpaceWar.Player(); + var0.increasePower(25); + int var3 = var0.getR(); + int var4 = var0.getScore(); + var0.loseLife(); + boolean var6 = var0.isRecovering(); + var0.loseLife(); + int var8 = var0.getY(); + boolean var9 = var0.isRecovering(); + var0.setRigth(true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == 25); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 500); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == true); + + } + + public void test457() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test457"); + + + SpaceWar.Player var0 = new SpaceWar.Player(); + var0.increasePower(25); + int var3 = var0.getScore(); + var0.setRigth(true); + var0.loseLife(); + var0.increasePower(3); + var0.setScore(99); + int var11 = var0.getR(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == 25); + + } + + public void test458() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test458"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + java.awt.event.MouseMotionListener[] var6 = var0.getMouseMotionListeners(); + java.awt.event.ComponentListener[] var7 = var0.getComponentListeners(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + var8.nextFocus(); + var8.repaint(1L); + SpaceWar.SpacePanel var15 = new SpaceWar.SpacePanel(); + float var16 = var15.getAlignmentX(); + var15.setVisible(false); + boolean var19 = var15.isDoubleBuffered(); + var15.list(); + SpaceWar.SpacePanel var21 = new SpaceWar.SpacePanel(); + float var22 = var21.getAlignmentX(); + var21.setVisible(false); + boolean var25 = var21.isDoubleBuffered(); + java.awt.dnd.DropTarget var26 = var21.getDropTarget(); + var21.show(false); + java.awt.Rectangle var29 = var21.getVisibleRect(); + java.awt.Rectangle var30 = var15.getBounds(var29); + var8.setBounds(var30); + var0.paintImmediately(var30); + java.awt.Point var33 = var0.getMousePosition(); + java.awt.image.BufferedImage var35 = var0.loadImg("SpaceWar.SpacePanel[,-1,1,-1x10,invalid,hidden,disabled,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + var0.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", 3, 100); + javax.swing.KeyStroke[] var40 = var0.getRegisteredKeyStrokes(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var22 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var29); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var30); + + // Regression assertion (captures the current behavior of the code) + assertNull(var33); + + // Regression assertion (captures the current behavior of the code) + assertNull(var35); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var40); + + } + + public void test459() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test459"); + + + SpaceWar.Player var0 = new SpaceWar.Player(); + int var1 = var0.getR(); + int var2 = var0.getLives(); + var0.setUp(false); + boolean var5 = var0.isDead(); + int var6 = var0.getPower(); + boolean var7 = var0.isDead(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 25); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var2 == 3); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == false); + + } + + public void test460() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test460"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var1 = new SpaceWar.SpacePanel(); + java.awt.Color var2 = var1.getBackground(); + SpaceWar.SpacePanel var3 = new SpaceWar.SpacePanel(); + float var4 = var3.getAlignmentX(); + var3.setVisible(false); + var3.nextFocus(); + var3.updateUI(); + var3.enableInputMethods(true); + var0.add((java.awt.Component)var1, (java.lang.Object)true); + java.awt.Image var14 = var1.createImage(1, (-1)); + SpaceWar.SpacePanel var15 = new SpaceWar.SpacePanel(); + float var16 = var15.getAlignmentX(); + var15.setVisible(false); + var15.nextFocus(); + var15.updateUI(); + var15.enableInputMethods(true); + SpaceWar.SpacePanel var23 = new SpaceWar.SpacePanel(); + float var24 = var23.getAlignmentX(); + boolean var25 = var23.hasFocus(); + java.awt.Insets var26 = var23.getInsets(); + java.awt.Insets var27 = var15.getInsets(var26); + java.awt.Insets var28 = var1.getInsets(var26); + java.awt.Point var29 = var1.getMousePosition(); + javax.swing.InputMap var30 = var1.getInputMap(); + java.awt.Dimension var31 = var1.getSize(); + java.awt.Color var32 = var1.getBackground(); + SpaceWar.SpacePanel var33 = new SpaceWar.SpacePanel(); + float var34 = var33.getAlignmentX(); + var33.setVisible(false); + var33.setDoubleBuffered(true); + var33.repaint(0, 500, 2, 24); + java.awt.Cursor var44 = var33.getCursor(); + var33.setOpaque(false); + java.awt.Font var47 = var33.getFont(); + java.awt.FontMetrics var48 = var1.getFontMetrics(var47); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var2); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var24 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var27); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var28); + + // Regression assertion (captures the current behavior of the code) + assertNull(var29); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var30); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var31); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var32); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var34 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var44); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var47); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var48); + + } + + public void test461() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test461"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + java.awt.im.InputMethodRequests var3 = var0.getInputMethodRequests(); + var0.setDoubleBuffered(true); + var0.show(false); + var0.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", (-1), 24); + boolean var12 = var0.requestFocusInWindow(); + boolean var13 = var0.hasFocus(); + var0.enable(true); + var0.transferFocus(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == false); + + } + + public void test462() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test462"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + var0.show(false); + boolean var8 = var0.isPaintingForPrint(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var15 = var9.getMouseListeners(); + int var16 = var9.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var17 = var9.getInputMethodRequests(); + var0.addKeyListener((java.awt.event.KeyListener)var9); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + float var20 = var19.getAlignmentX(); + var19.setVisible(false); + boolean var23 = var19.isDoubleBuffered(); + var19.list(); + float var25 = var19.getAlignmentY(); + boolean var26 = var9.isFocusCycleRoot((java.awt.Container)var19); + var19.firePropertyChange("", 1L, 1L); + var19.setVerifyInputWhenFocusTarget(true); + var19.resize(25, 400); + java.awt.event.ComponentListener[] var36 = var19.getComponentListeners(); + var19.setAlignmentX(10.0f); + var19.setDoubleBuffered(false); + javax.swing.InputMap var41 = var19.getInputMap(); + SpaceWar.SpacePanel var42 = new SpaceWar.SpacePanel(); + float var43 = var42.getAlignmentX(); + var42.setVisible(false); + boolean var46 = var42.isDoubleBuffered(); + java.awt.dnd.DropTarget var47 = var42.getDropTarget(); + var42.show(false); + boolean var50 = var42.isPaintingForPrint(); + SpaceWar.SpacePanel var51 = new SpaceWar.SpacePanel(); + float var52 = var51.getAlignmentX(); + var51.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var57 = var51.getMouseListeners(); + int var58 = var51.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var59 = var51.getInputMethodRequests(); + var42.addKeyListener((java.awt.event.KeyListener)var51); + var51.repaint(); + var51.setFocusCycleRoot(true); + SpaceWar.SpacePanel var64 = new SpaceWar.SpacePanel(); + var64.setName(""); + java.awt.Toolkit var67 = var64.getToolkit(); + var64.setEnabled(false); + var64.removeNotify(); + boolean var71 = var64.isDisplayable(); + SpaceWar.SpacePanel var72 = new SpaceWar.SpacePanel(); + java.awt.Color var73 = var72.getBackground(); + var72.repaint(); + var72.setRequestFocusEnabled(false); + var72.reshape(100, 0, 100, 0); + var72.requestFocus(); + java.awt.Rectangle var83 = var72.getVisibleRect(); + java.awt.Rectangle var84 = var72.getBounds(); + java.awt.im.InputMethodRequests var85 = var72.getInputMethodRequests(); + boolean var86 = var72.requestFocusInWindow(); + java.awt.Point var88 = var72.getMousePosition(false); + var72.setDebugGraphicsOptions(1); + java.awt.Graphics var91 = var72.getGraphics(); + var64.paintAll(var91); + var51.paintComponents(var91); + var19.paintComponents(var91); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var36); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var41); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var43 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var46 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var47); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var50 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var52 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var57); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var58 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var59); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var67); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var71 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var73); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var83); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var84); + + // Regression assertion (captures the current behavior of the code) + assertNull(var85); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var86 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var88); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var91); + + } + + public void test463() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test463"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + boolean var6 = var0.isFocusCycleRoot(); + SpaceWar.SpacePanel var7 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + java.awt.Color var9 = var8.getBackground(); + SpaceWar.SpacePanel var10 = new SpaceWar.SpacePanel(); + float var11 = var10.getAlignmentX(); + var10.setVisible(false); + var10.nextFocus(); + var10.updateUI(); + var10.enableInputMethods(true); + var7.add((java.awt.Component)var8, (java.lang.Object)true); + java.awt.Dimension var19 = var8.getPreferredSize(); + var0.setSize(var19); + java.awt.Dimension var21 = var0.preferredSize(); + boolean var24 = var0.contains(2, 1); + var0.invalidate(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var9); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var21); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var24 == true); + + } + + public void test464() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test464"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + SpaceWar.SpacePanel var2 = new SpaceWar.SpacePanel(); + java.awt.Color var3 = var2.getBackground(); + var2.setFocusCycleRoot(true); + java.awt.im.InputMethodRequests var6 = var2.getInputMethodRequests(); + var0.addKeyListener((java.awt.event.KeyListener)var2); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + SpaceWar.SpacePanel var12 = new SpaceWar.SpacePanel(); + java.awt.Color var13 = var12.getBackground(); + var8.setForeground(var13); + SpaceWar.SpacePanel var15 = new SpaceWar.SpacePanel(); + float var16 = var15.getAlignmentX(); + var15.setVisible(false); + boolean var19 = var15.isDoubleBuffered(); + java.awt.dnd.DropTarget var20 = var15.getDropTarget(); + var15.show(false); + java.awt.Rectangle var23 = var15.getVisibleRect(); + var8.repaint(var23); + java.awt.FocusTraversalPolicy var25 = var8.getFocusTraversalPolicy(); + javax.swing.TransferHandler var26 = var8.getTransferHandler(); + java.awt.Component var27 = var8.getNextFocusableComponent(); + java.awt.image.VolatileImage var30 = var8.createVolatileImage(10, (-1)); + var8.setVisible(false); + SpaceWar.SpacePanel var33 = new SpaceWar.SpacePanel(); + float var34 = var33.getAlignmentX(); + var33.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var39 = var33.getUI(); + java.awt.im.InputMethodRequests var40 = var33.getInputMethodRequests(); + SpaceWar.SpacePanel var41 = new SpaceWar.SpacePanel(); + float var42 = var41.getAlignmentX(); + var41.setVisible(false); + var41.nextFocus(); + var41.updateUI(); + var41.enableInputMethods(true); + var41.setSize((-1), 1); + SpaceWar.SpacePanel var52 = new SpaceWar.SpacePanel(); + var52.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var33.add((java.awt.Component)var41, (java.lang.Object)"SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + java.awt.event.KeyListener[] var58 = var33.getKeyListeners(); + var33.repaint(3, 1, 25, 0); + SpaceWar.SpacePanel var64 = new SpaceWar.SpacePanel(); + java.awt.Color var65 = var64.getBackground(); + boolean var68 = var64.inside(0, (-1)); + var64.transferFocusUpCycle(); + java.awt.Container var70 = var64.getParent(); + boolean var71 = var64.isMaximumSizeSet(); + SpaceWar.SpacePanel var72 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var73 = new SpaceWar.SpacePanel(); + java.awt.Color var74 = var73.getBackground(); + SpaceWar.SpacePanel var75 = new SpaceWar.SpacePanel(); + float var76 = var75.getAlignmentX(); + var75.setVisible(false); + var75.nextFocus(); + var75.updateUI(); + var75.enableInputMethods(true); + var72.add((java.awt.Component)var73, (java.lang.Object)true); + boolean var85 = var73.areFocusTraversalKeysSet(0); + SpaceWar.SpacePanel var86 = new SpaceWar.SpacePanel(); + float var87 = var86.getAlignmentX(); + var86.setVisible(false); + boolean var90 = var86.isDoubleBuffered(); + java.awt.dnd.DropTarget var91 = var86.getDropTarget(); + var86.show(false); + java.awt.Rectangle var94 = var86.getVisibleRect(); + var73.setBounds(var94); + var64.setBounds(var94); + java.awt.Rectangle var97 = var33.getBounds(var94); + var8.computeVisibleRect(var94); + var2.computeVisibleRect(var94); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var23); + + // Regression assertion (captures the current behavior of the code) + assertNull(var25); + + // Regression assertion (captures the current behavior of the code) + assertNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertNull(var27); + + // Regression assertion (captures the current behavior of the code) + assertNull(var30); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var34 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var39); + + // Regression assertion (captures the current behavior of the code) + assertNull(var40); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var42 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var58); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var65); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var68 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var70); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var71 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var74); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var76 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var85 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var87 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var90 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var91); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var94); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var97); + + } + + public void test465() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test465"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + var0.show(false); + boolean var8 = var0.isPaintingForPrint(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var15 = var9.getMouseListeners(); + int var16 = var9.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var17 = var9.getInputMethodRequests(); + var0.addKeyListener((java.awt.event.KeyListener)var9); + var9.repaint(); + java.awt.Component var22 = var9.findComponentAt(10, (-1)); + var9.transferFocusDownCycle(); + boolean var26 = var9.inside(2, 499); + var9.disable(); + java.awt.Point var28 = var9.getLocation(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var28); + + } + + public void test466() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test466"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + var0.show(false); + boolean var8 = var0.isPaintingForPrint(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var15 = var9.getMouseListeners(); + int var16 = var9.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var17 = var9.getInputMethodRequests(); + var0.addKeyListener((java.awt.event.KeyListener)var9); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + float var20 = var19.getAlignmentX(); + var19.setVisible(false); + boolean var23 = var19.isDoubleBuffered(); + var19.list(); + float var25 = var19.getAlignmentY(); + boolean var26 = var9.isFocusCycleRoot((java.awt.Container)var19); + javax.swing.JPopupMenu var27 = var19.getComponentPopupMenu(); + var19.firePropertyChange("hi!", 3, 0); + var19.setAlignmentY(100.0f); + boolean var34 = var19.getAutoscrolls(); + var19.invalidate(); + SpaceWar.SpacePanel var36 = new SpaceWar.SpacePanel(); + float var37 = var36.getAlignmentX(); + var36.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var42 = var36.getMouseListeners(); + java.awt.Dimension var43 = var36.getPreferredSize(); + java.util.Locale var44 = var36.getLocale(); + var36.setFocusable(true); + var36.setSize(3, 10); + var36.invalidate(); + javax.swing.plaf.PanelUI var51 = var36.getUI(); + var36.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", 1.0f, 0.5f); + var19.remove((java.awt.Component)var36); + var36.paintImmediately(25, 2, 1, 10); + var36.repaint((-1L)); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var27); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var34 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var42); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var43); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var44); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var51); + + } + + public void test467() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test467"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + java.awt.Dimension var4 = var0.getPreferredSize(); + boolean var5 = var0.getVerifyInputWhenFocusTarget(); + java.awt.Component var8 = var0.findComponentAt(10, 1); + boolean var9 = var0.isCursorSet(); + boolean var10 = var0.isFocusTraversalPolicyProvider(); + java.awt.Rectangle var11 = var0.getBounds(); + java.awt.Dimension var12 = var0.getMaximumSize(); + SpaceWar.SpacePanel var13 = new SpaceWar.SpacePanel(); + float var14 = var13.getAlignmentX(); + var13.setVisible(false); + var13.nextFocus(); + var13.reshape((-1), 1, (-1), 10); + var13.disable(); + java.awt.LayoutManager var24 = var13.getLayout(); + java.awt.Container var25 = var13.getParent(); + java.lang.String var26 = var13.getUIClassID(); + float var27 = var13.getAlignmentX(); + var13.enable(true); + boolean var30 = var13.isPaintingTile(); + javax.swing.plaf.PanelUI var31 = var13.getUI(); + java.awt.Component var32 = var0.add((java.awt.Component)var13); + var13.setBounds(1, 25, 3, 399); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var4); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertNull(var25); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var26 + "' != '" + "PanelUI"+ "'", var26.equals("PanelUI")); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var30 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var31); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var32); + + } + + public void test468() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test468"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + var0.setRequestFocusEnabled(false); + var0.reshape(100, 0, 100, 0); + var0.requestFocus(); + java.awt.event.ComponentListener[] var11 = var0.getComponentListeners(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + } + + public void test469() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test469"); + + + SpaceWar.PowerUp var3 = new SpaceWar.PowerUp(100, (-1.0d), 0.0d); + double var4 = var3.getR(); + double var5 = var3.getY(); + boolean var6 = var3.update(); + int var7 = var3.getType(); + double var8 = var3.getX(); + double var9 = var3.getX(); + boolean var10 = var3.update(); + double var11 = var3.getR(); + boolean var12 = var3.update(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0.0d); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == 0.0d); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 100); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == (-1.0d)); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == (-1.0d)); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == 0.0d); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == false); + + } + + public void test470() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test470"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + java.awt.im.InputMethodRequests var3 = var0.getInputMethodRequests(); + int var4 = var0.countComponents(); + java.awt.event.MouseMotionListener[] var5 = var0.getMouseMotionListeners(); + java.awt.Dimension var6 = var0.size(); + boolean var7 = var0.isMinimumSizeSet(); + boolean var8 = var0.getIgnoreRepaint(); + var0.move(24, 2); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + } + + public void test471() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test471"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.updateUI(); + var0.enableInputMethods(true); + java.awt.Point var9 = var0.getMousePosition(false); + boolean var10 = var0.isValid(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNull(var9); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == false); + + } + + public void test472() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test472"); + + + SpaceWar.Player var0 = new SpaceWar.Player(); + int var1 = var0.getPower(); + var0.setLeft(true); + boolean var4 = var0.isRecovering(); + var0.setLife(499); + var0.setFiring(true); + boolean var9 = var0.isDead(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == false); + + } + + public void test473() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test473"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + var0.setName(""); + var0.enable(true); + java.awt.event.FocusListener[] var5 = var0.getFocusListeners(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + } + + public void test474() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test474"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + java.awt.Point var6 = var0.getMousePosition(); + java.lang.String var7 = var0.getUIClassID(); + var0.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", '#', '4'); + var0.paintImmediately(100, 99, 505, 505); + var0.doLayout(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var7 + "' != '" + "PanelUI"+ "'", var7.equals("PanelUI")); + + } + + public void test475() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test475"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + var0.show(false); + boolean var8 = var0.isPaintingForPrint(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var15 = var9.getMouseListeners(); + int var16 = var9.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var17 = var9.getInputMethodRequests(); + var0.addKeyListener((java.awt.event.KeyListener)var9); + var9.repaint(); + java.awt.Point var20 = var9.location(); + var9.setDoubleBuffered(false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + } + + public void test476() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test476"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + java.awt.im.InputMethodRequests var3 = var0.getInputMethodRequests(); + var0.setDoubleBuffered(true); + var0.setInheritsPopupMenu(false); + javax.swing.InputMap var8 = var0.getInputMap(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.setVisible(false); + boolean var13 = var9.isDoubleBuffered(); + java.awt.dnd.DropTarget var14 = var9.getDropTarget(); + var9.show(false); + java.awt.Rectangle var17 = var9.getVisibleRect(); + java.awt.image.BufferedImage var19 = var9.loadImg("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + int var20 = var9.getComponentCount(); + SpaceWar.SpacePanel var21 = new SpaceWar.SpacePanel(); + float var22 = var21.getAlignmentX(); + var21.setVisible(false); + java.awt.Dimension var25 = var21.getPreferredSize(); + boolean var26 = var21.getVerifyInputWhenFocusTarget(); + java.awt.Component var29 = var21.findComponentAt(10, 1); + boolean var30 = var21.requestDefaultFocus(); + java.awt.Insets var31 = var21.getInsets(); + var21.setDoubleBuffered(false); + java.awt.Toolkit var34 = var21.getToolkit(); + java.awt.Dimension var35 = var21.getMinimumSize(); + var9.resize(var35); + SpaceWar.SpacePanel var37 = new SpaceWar.SpacePanel(); + float var38 = var37.getAlignmentX(); + var37.setVisible(false); + var37.setInheritsPopupMenu(false); + var37.setFocusTraversalPolicyProvider(true); + SpaceWar.SpacePanel var45 = new SpaceWar.SpacePanel(); + java.awt.Color var46 = var45.getBackground(); + var45.repaint(); + java.awt.im.InputMethodRequests var48 = var45.getInputMethodRequests(); + java.awt.GraphicsConfiguration var49 = var45.getGraphicsConfiguration(); + java.awt.Component var50 = var37.add((java.awt.Component)var45); + java.awt.Rectangle var51 = var37.getBounds(); + var0.putClientProperty((java.lang.Object)var35, (java.lang.Object)var37); + boolean var53 = var0.isFocusTraversalPolicyProvider(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var22 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var25); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var29); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var30 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var31); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var34); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var35); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var38 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var46); + + // Regression assertion (captures the current behavior of the code) + assertNull(var48); + + // Regression assertion (captures the current behavior of the code) + assertNull(var49); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var50); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var51); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var53 == false); + + } + + public void test477() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test477"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.setInheritsPopupMenu(false); + var0.move(10, 10); + var0.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var0.removeAll(); + java.awt.Point var14 = var0.location(); + var0.repaint(400, 2, 10, 499); + javax.swing.InputVerifier var20 = var0.getInputVerifier(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertNull(var20); + + } + + public void test478() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test478"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + java.lang.String var2 = var0.toString(); + java.awt.Dimension var3 = var0.size(); + var0.resetKeyboardActions(); + SpaceWar.SpacePanel var5 = new SpaceWar.SpacePanel(); + var5.setName(""); + java.awt.Dimension var8 = var5.minimumSize(); + boolean var9 = var5.isDoubleBuffered(); + SpaceWar.SpacePanel var10 = new SpaceWar.SpacePanel(); + float var11 = var10.getAlignmentX(); + var10.setVisible(false); + SpaceWar.SpacePanel var14 = new SpaceWar.SpacePanel(); + java.awt.Color var15 = var14.getBackground(); + var10.setForeground(var15); + SpaceWar.SpacePanel var17 = new SpaceWar.SpacePanel(); + float var18 = var17.getAlignmentX(); + var17.setVisible(false); + boolean var21 = var17.isDoubleBuffered(); + java.awt.dnd.DropTarget var22 = var17.getDropTarget(); + var17.show(false); + java.awt.Rectangle var25 = var17.getVisibleRect(); + var10.repaint(var25); + java.awt.FocusTraversalPolicy var27 = var10.getFocusTraversalPolicy(); + java.awt.im.InputMethodRequests var28 = var10.getInputMethodRequests(); + var10.layout(); + boolean var30 = var10.isFocusTraversalPolicyProvider(); + java.awt.Component var31 = var5.add((java.awt.Component)var10); + javax.swing.border.Border var32 = var10.getBorder(); + java.awt.Point var33 = var10.getLocation(); + java.awt.Rectangle var34 = var10.getBounds(); + var0.computeVisibleRect(var34); + SpaceWar.SpacePanel var36 = new SpaceWar.SpacePanel(); + float var37 = var36.getAlignmentX(); + var36.setVisible(false); + java.awt.Dimension var40 = var36.getPreferredSize(); + boolean var41 = var36.getVerifyInputWhenFocusTarget(); + java.awt.Component var44 = var36.findComponentAt(10, 1); + boolean var45 = var36.requestDefaultFocus(); + java.awt.Insets var46 = var36.getInsets(); + var36.setDoubleBuffered(false); + java.awt.Toolkit var49 = var36.getToolkit(); + java.awt.Dimension var50 = var36.getMinimumSize(); + java.lang.String var51 = var36.toString(); + var36.disable(); + java.awt.Container var53 = var36.getParent(); + javax.swing.plaf.PanelUI var54 = var36.getUI(); + var0.setUI(var54); + java.awt.event.MouseMotionListener[] var56 = var0.getMouseMotionListeners(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var2 + "' != '" + "SpaceWar.SpacePanel[,0,0,0var2,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"+ "'", var2.equals("SpaceWar.SpacePanel[,0,0,0var2,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]")); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var25); + + // Regression assertion (captures the current behavior of the code) + assertNull(var27); + + // Regression assertion (captures the current behavior of the code) + assertNull(var28); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var30 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var31); + + // Regression assertion (captures the current behavior of the code) + assertNull(var32); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var33); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var34); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var40); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var41 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var44); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var45 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var46); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var49); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var50); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var51 + "' != '" + "SpaceWar.SpacePanel[,0,0,0var51,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=8,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"+ "'", var51.equals("SpaceWar.SpacePanel[,0,0,0var51,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=8,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]")); + + // Regression assertion (captures the current behavior of the code) + assertNull(var53); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var54); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var56); + + } + + public void test479() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test479"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.setInheritsPopupMenu(false); + java.awt.im.InputContext var6 = var0.getInputContext(); + var0.repaint(499, 498, (-1), 3); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNull(var6); + + } + + public void test480() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test480"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + java.lang.String var2 = var0.toString(); + var0.setAlignmentX(0.5f); + SpaceWar.SpacePanel var5 = new SpaceWar.SpacePanel(); + float var6 = var5.getAlignmentX(); + var5.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var11 = var5.getUI(); + java.awt.im.InputMethodRequests var12 = var5.getInputMethodRequests(); + SpaceWar.SpacePanel var13 = new SpaceWar.SpacePanel(); + float var14 = var13.getAlignmentX(); + var13.setVisible(false); + var13.nextFocus(); + var13.updateUI(); + var13.enableInputMethods(true); + var13.setSize((-1), 1); + SpaceWar.SpacePanel var24 = new SpaceWar.SpacePanel(); + var24.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var5.add((java.awt.Component)var13, (java.lang.Object)"SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + SpaceWar.SpacePanel var30 = new SpaceWar.SpacePanel(); + float var31 = var30.getAlignmentX(); + var30.setVisible(false); + java.awt.Dimension var34 = var30.getPreferredSize(); + java.awt.Toolkit var35 = var30.getToolkit(); + java.awt.Toolkit var36 = var30.getToolkit(); + java.awt.Component var37 = var13.add((java.awt.Component)var30); + int var38 = var13.getY(); + int var41 = var13.getBaseline(25, 10); + var0.setComponentZOrder((java.awt.Component)var13, 0); + javax.accessibility.AccessibleContext var44 = var0.getAccessibleContext(); + var0.setAlignmentY(100.0f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var2 + "' != '" + "SpaceWar.SpacePanel[,0,0,0var2,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"+ "'", var2.equals("SpaceWar.SpacePanel[,0,0,0var2,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]")); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var31 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var34); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var35); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var36); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var37); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var38 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var41 == (-1)); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var44); + + } + + public void test481() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test481"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + java.awt.Dimension var4 = var0.getPreferredSize(); + java.awt.Toolkit var5 = var0.getToolkit(); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + var6.setName(""); + int var9 = var6.getX(); + SpaceWar.SpacePanel var10 = new SpaceWar.SpacePanel(); + float var11 = var10.getAlignmentX(); + var10.setVisible(false); + var10.nextFocus(); + SpaceWar.SpacePanel var15 = new SpaceWar.SpacePanel(); + float var16 = var15.getAlignmentX(); + var15.setVisible(false); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + java.awt.Color var20 = var19.getBackground(); + var15.setForeground(var20); + var10.setBackground(var20); + var6.setBackground(var20); + var0.setForeground(var20); + SpaceWar.SpacePanel var25 = new SpaceWar.SpacePanel(); + float var26 = var25.getAlignmentX(); + var25.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var31 = new SpaceWar.SpacePanel(); + float var32 = var31.getAlignmentX(); + var31.setVisible(false); + java.awt.Dimension var35 = var31.getPreferredSize(); + var25.setMaximumSize(var35); + boolean var37 = var25.getVerifyInputWhenFocusTarget(); + javax.accessibility.AccessibleContext var38 = var25.getAccessibleContext(); + boolean var39 = var25.isDoubleBuffered(); + java.awt.Rectangle var40 = var25.getVisibleRect(); + var0.scrollRectToVisible(var40); + SpaceWar.SpacePanel var42 = new SpaceWar.SpacePanel(); + float var43 = var42.getAlignmentX(); + var42.setVisible(false); + java.awt.Dimension var46 = var42.getPreferredSize(); + java.awt.Toolkit var47 = var42.getToolkit(); + SpaceWar.SpacePanel var48 = new SpaceWar.SpacePanel(); + var48.setName(""); + int var51 = var48.getX(); + SpaceWar.SpacePanel var52 = new SpaceWar.SpacePanel(); + float var53 = var52.getAlignmentX(); + var52.setVisible(false); + var52.nextFocus(); + SpaceWar.SpacePanel var57 = new SpaceWar.SpacePanel(); + float var58 = var57.getAlignmentX(); + var57.setVisible(false); + SpaceWar.SpacePanel var61 = new SpaceWar.SpacePanel(); + java.awt.Color var62 = var61.getBackground(); + var57.setForeground(var62); + var52.setBackground(var62); + var48.setBackground(var62); + var42.setForeground(var62); + SpaceWar.SpacePanel var67 = new SpaceWar.SpacePanel(); + float var68 = var67.getAlignmentX(); + var67.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var73 = new SpaceWar.SpacePanel(); + float var74 = var73.getAlignmentX(); + var73.setVisible(false); + java.awt.Dimension var77 = var73.getPreferredSize(); + var67.setMaximumSize(var77); + boolean var79 = var67.getVerifyInputWhenFocusTarget(); + javax.accessibility.AccessibleContext var80 = var67.getAccessibleContext(); + boolean var81 = var67.isDoubleBuffered(); + java.awt.Rectangle var82 = var67.getVisibleRect(); + var42.scrollRectToVisible(var82); + var0.removeKeyListener((java.awt.event.KeyListener)var42); + javax.swing.InputVerifier var85 = var0.getInputVerifier(); + var0.enable(); + var0.repaint(400, 10, 0, 1); + java.lang.String var92 = var0.getUIClassID(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var4); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var32 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var35); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var38); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var39 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var40); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var43 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var46); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var47); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var51 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var53 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var58 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var62); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var68 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var74 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var77); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var79 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var80); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var81 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var82); + + // Regression assertion (captures the current behavior of the code) + assertNull(var85); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var92 + "' != '" + "PanelUI"+ "'", var92.equals("PanelUI")); + + } + + public void test482() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test482"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var1 = new SpaceWar.SpacePanel(); + java.awt.Color var2 = var1.getBackground(); + SpaceWar.SpacePanel var3 = new SpaceWar.SpacePanel(); + float var4 = var3.getAlignmentX(); + var3.setVisible(false); + var3.nextFocus(); + var3.updateUI(); + var3.enableInputMethods(true); + var0.add((java.awt.Component)var1, (java.lang.Object)true); + var0.move(24, 500); + var0.setEnabled(false); + SpaceWar.SpacePanel var17 = new SpaceWar.SpacePanel(); + java.awt.Color var18 = var17.getBackground(); + boolean var21 = var17.inside(0, (-1)); + var17.transferFocusUpCycle(); + java.awt.Toolkit var23 = var17.getToolkit(); + java.awt.LayoutManager var24 = var17.getLayout(); + boolean var25 = var0.isAncestorOf((java.awt.Component)var17); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var2); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var23); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == false); + + } + + public void test483() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test483"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + var0.list(); + float var6 = var0.getAlignmentY(); + boolean var7 = var0.isOpaque(); + var0.resetKeyboardActions(); + boolean var9 = var0.isFocusTraversalPolicyProvider(); + java.awt.im.InputContext var10 = var0.getInputContext(); + var0.setFocusTraversalKeysEnabled(true); + java.awt.Component var15 = var0.locate(499, 100); + boolean var16 = var0.isValidateRoot(); + var0.setFocusTraversalPolicyProvider(true); + java.awt.image.ColorModel var19 = var0.getColorModel(); + java.awt.Component[] var20 = var0.getComponents(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + } + + public void test484() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test484"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.reshape((-1), 1, (-1), 10); + SpaceWar.SpacePanel var10 = new SpaceWar.SpacePanel(); + java.awt.Color var11 = var10.getBackground(); + var10.repaint(); + var10.setRequestFocusEnabled(false); + var10.reshape(100, 0, 100, 0); + java.awt.Component var20 = var0.add((java.awt.Component)var10); + boolean var21 = var10.isEnabled(); + boolean var22 = var10.isBackgroundSet(); + int var23 = var10.getX(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var22 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == 100); + + } + + public void test485() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test485"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + var0.list(); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + float var7 = var6.getAlignmentX(); + var6.setVisible(false); + boolean var10 = var6.isDoubleBuffered(); + java.awt.dnd.DropTarget var11 = var6.getDropTarget(); + var6.show(false); + java.awt.Rectangle var14 = var6.getVisibleRect(); + java.awt.image.BufferedImage var16 = var6.loadImg("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + boolean var17 = var0.isAncestorOf((java.awt.Component)var6); + float var18 = var0.getAlignmentX(); + java.awt.image.VolatileImage var21 = var0.createVolatileImage(25, 1); + SpaceWar.SpacePanel var22 = new SpaceWar.SpacePanel(); + float var23 = var22.getAlignmentX(); + var22.setVisible(false); + var22.setInheritsPopupMenu(false); + boolean var28 = var22.isDoubleBuffered(); + boolean var29 = var22.isMinimumSizeSet(); + SpaceWar.SpacePanel var30 = new SpaceWar.SpacePanel(); + float var31 = var30.getAlignmentX(); + var30.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var36 = new SpaceWar.SpacePanel(); + float var37 = var36.getAlignmentX(); + var36.setVisible(false); + java.awt.Dimension var40 = var36.getPreferredSize(); + var30.setMaximumSize(var40); + boolean var42 = var30.getVerifyInputWhenFocusTarget(); + javax.accessibility.AccessibleContext var43 = var30.getAccessibleContext(); + boolean var44 = var30.isDoubleBuffered(); + java.awt.Rectangle var45 = var30.getVisibleRect(); + var22.setBounds(var45); + SpaceWar.SpacePanel var47 = new SpaceWar.SpacePanel(); + float var48 = var47.getAlignmentX(); + var47.firePropertyChange("", (-1), 1); + java.awt.Rectangle var53 = var47.getVisibleRect(); + java.awt.Rectangle var54 = var22.getBounds(var53); + java.awt.Rectangle var55 = var0.getBounds(var53); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNull(var21); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var28 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var29 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var31 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var40); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var42 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var43); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var44 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var45); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var48 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var53); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var54); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var55); + + } + + public void test486() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test486"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + SpaceWar.SpacePanel var4 = new SpaceWar.SpacePanel(); + java.awt.Color var5 = var4.getBackground(); + var0.setForeground(var5); + SpaceWar.SpacePanel var7 = new SpaceWar.SpacePanel(); + float var8 = var7.getAlignmentX(); + var7.setVisible(false); + boolean var11 = var7.isDoubleBuffered(); + java.awt.dnd.DropTarget var12 = var7.getDropTarget(); + var7.show(false); + java.awt.Rectangle var15 = var7.getVisibleRect(); + var0.repaint(var15); + java.awt.FocusTraversalPolicy var17 = var0.getFocusTraversalPolicy(); + var0.resetKeyboardActions(); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + float var20 = var19.getAlignmentX(); + var19.setVisible(false); + boolean var23 = var19.isDoubleBuffered(); + java.awt.dnd.DropTarget var24 = var19.getDropTarget(); + var19.show(false); + java.awt.Rectangle var27 = var19.getVisibleRect(); + var0.computeVisibleRect(var27); + javax.swing.ActionMap var29 = var0.getActionMap(); + SpaceWar.SpacePanel var30 = new SpaceWar.SpacePanel(); + float var31 = var30.getAlignmentX(); + var30.setVisible(false); + boolean var34 = var30.isDoubleBuffered(); + var30.list(); + SpaceWar.SpacePanel var36 = new SpaceWar.SpacePanel(); + float var37 = var36.getAlignmentX(); + var36.setVisible(false); + boolean var40 = var36.isDoubleBuffered(); + java.awt.dnd.DropTarget var41 = var36.getDropTarget(); + var36.show(false); + java.awt.Rectangle var44 = var36.getVisibleRect(); + java.awt.Rectangle var45 = var30.getBounds(var44); + javax.swing.JToolTip var46 = var30.createToolTip(); + var30.firePropertyChange("", false, false); + var30.validate(); + SpaceWar.SpacePanel var52 = new SpaceWar.SpacePanel(); + float var53 = var52.getAlignmentX(); + boolean var54 = var52.hasFocus(); + java.beans.VetoableChangeListener[] var55 = var52.getVetoableChangeListeners(); + var0.add((java.awt.Component)var30, (java.lang.Object)var55); + SpaceWar.SpacePanel var57 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var58 = new SpaceWar.SpacePanel(); + java.awt.Color var59 = var58.getBackground(); + SpaceWar.SpacePanel var60 = new SpaceWar.SpacePanel(); + float var61 = var60.getAlignmentX(); + var60.setVisible(false); + var60.nextFocus(); + var60.updateUI(); + var60.enableInputMethods(true); + var57.add((java.awt.Component)var58, (java.lang.Object)true); + java.awt.Image var71 = var58.createImage(1, (-1)); + java.awt.event.MouseListener[] var72 = var58.getMouseListeners(); + java.awt.Color var73 = var58.getBackground(); + boolean var74 = var58.getIgnoreRepaint(); + var58.enable(); + int var76 = var30.getComponentZOrder((java.awt.Component)var58); + java.awt.Image var79 = var30.createImage(24, 399); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var27); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var29); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var31 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var34 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var40 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var41); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var44); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var45); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var46); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var53 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var54 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var55); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var59); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var61 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNull(var71); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var72); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var73); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var74 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var76 == (-1)); + + // Regression assertion (captures the current behavior of the code) + assertNull(var79); + + } + + public void test487() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test487"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + var0.show(false); + boolean var8 = var0.isPaintingForPrint(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var15 = var9.getMouseListeners(); + int var16 = var9.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var17 = var9.getInputMethodRequests(); + var0.addKeyListener((java.awt.event.KeyListener)var9); + var9.firePropertyChange("", (short)0, (short)0); + java.awt.event.MouseMotionListener[] var23 = var9.getMouseMotionListeners(); + var9.setInheritsPopupMenu(true); + int var26 = var9.getX(); + var9.updateUI(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var23); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == 0); + + } + + public void test488() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test488"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.setInheritsPopupMenu(false); + var0.setFocusTraversalPolicyProvider(true); + boolean var10 = var0.inside(25, 3); + SpaceWar.SpacePanel var11 = new SpaceWar.SpacePanel(); + float var12 = var11.getAlignmentX(); + var11.setVisible(false); + boolean var15 = var11.isDoubleBuffered(); + java.awt.dnd.DropTarget var16 = var11.getDropTarget(); + var11.show(false); + boolean var19 = var11.isPaintingForPrint(); + SpaceWar.SpacePanel var20 = new SpaceWar.SpacePanel(); + float var21 = var20.getAlignmentX(); + SpaceWar.SpacePanel var22 = new SpaceWar.SpacePanel(); + float var23 = var22.getAlignmentX(); + var22.setVisible(false); + java.awt.Dimension var26 = var22.getPreferredSize(); + boolean var27 = var22.getVerifyInputWhenFocusTarget(); + java.awt.Component var30 = var22.findComponentAt(10, 1); + var20.addKeyListener((java.awt.event.KeyListener)var22); + java.awt.Dimension var32 = var22.getMinimumSize(); + var11.setMinimumSize(var32); + var0.setPreferredSize(var32); + java.awt.Insets var35 = var0.insets(); + boolean var36 = var0.isFocusTraversalPolicySet(); + java.beans.PropertyChangeListener[] var37 = var0.getPropertyChangeListeners(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var30); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var32); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var35); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var36 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var37); + + } + + public void test489() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test489"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.repaint(1L); + SpaceWar.SpacePanel var7 = new SpaceWar.SpacePanel(); + float var8 = var7.getAlignmentX(); + var7.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var13 = new SpaceWar.SpacePanel(); + float var14 = var13.getAlignmentX(); + var13.setVisible(false); + java.awt.Dimension var17 = var13.getPreferredSize(); + var7.setMaximumSize(var17); + var0.setPreferredSize(var17); + javax.swing.plaf.PanelUI var20 = var0.getUI(); + SpaceWar.SpacePanel var21 = new SpaceWar.SpacePanel(); + float var22 = var21.getAlignmentX(); + var21.setVisible(false); + var21.nextFocus(); + var21.reshape((-1), 1, (-1), 10); + var21.disable(); + java.awt.LayoutManager var32 = var21.getLayout(); + java.awt.Container var33 = var21.getParent(); + java.lang.String var34 = var21.getUIClassID(); + SpaceWar.Enemy var37 = new SpaceWar.Enemy(0, 10); + var0.add((java.awt.Component)var21, (java.lang.Object)10); + var21.invalidate(); + java.awt.Insets var40 = var21.getInsets(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var22 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var32); + + // Regression assertion (captures the current behavior of the code) + assertNull(var33); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var34 + "' != '" + "PanelUI"+ "'", var34.equals("PanelUI")); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var40); + + } + + public void test490() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test490"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var1 = new SpaceWar.SpacePanel(); + java.awt.Color var2 = var1.getBackground(); + SpaceWar.SpacePanel var3 = new SpaceWar.SpacePanel(); + float var4 = var3.getAlignmentX(); + var3.setVisible(false); + var3.nextFocus(); + var3.updateUI(); + var3.enableInputMethods(true); + var0.add((java.awt.Component)var1, (java.lang.Object)true); + java.awt.Image var14 = var1.createImage(1, (-1)); + java.awt.event.MouseListener[] var15 = var1.getMouseListeners(); + java.awt.Color var16 = var1.getBackground(); + boolean var17 = var1.getIgnoreRepaint(); + javax.swing.InputMap var18 = var1.getInputMap(); + var1.addNotify(); + var1.firePropertyChange("SpaceWar.SpacePanel[,499,2,499x500,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", 0.5f, (-1.0f)); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var2); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var18); + + } + + public void test491() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test491"); + + + SpaceWar.PowerUp var3 = new SpaceWar.PowerUp(10, 10.0d, 10.0d); + int var4 = var3.getType(); + double var5 = var3.getR(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 10); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == 0.0d); + + } + + public void test492() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test492"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + boolean var2 = var0.hasFocus(); + boolean var3 = var0.isPreferredSizeSet(); + var0.firePropertyChange("", (short)1, (short)0); + boolean var8 = var0.isMaximumSizeSet(); + java.awt.peer.ComponentPeer var9 = var0.getPeer(); + java.awt.ComponentOrientation var10 = var0.getComponentOrientation(); + boolean var13 = var0.inside(99, 399); + var0.repaint(1L, 24, 499, 1, (-1)); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var2 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var9); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == false); + + } + + public void test493() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test493"); + + + SpaceWar.Player var0 = new SpaceWar.Player(); + var0.increasePower(25); + int var3 = var0.getR(); + int var4 = var0.getScore(); + var0.loseLife(); + boolean var6 = var0.isRecovering(); + var0.loseLife(); + int var8 = var0.getRequiredPower(); + var0.increasePower(10); + var0.loseLife(); + boolean var12 = var0.isRecovering(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == 25); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 2); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == true); + + } + + public void test494() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test494"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.setInheritsPopupMenu(false); + boolean var6 = var0.isDoubleBuffered(); + boolean var7 = var0.isMinimumSizeSet(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var14 = new SpaceWar.SpacePanel(); + float var15 = var14.getAlignmentX(); + var14.setVisible(false); + java.awt.Dimension var18 = var14.getPreferredSize(); + var8.setMaximumSize(var18); + boolean var20 = var8.getVerifyInputWhenFocusTarget(); + javax.accessibility.AccessibleContext var21 = var8.getAccessibleContext(); + boolean var22 = var8.isDoubleBuffered(); + java.awt.Rectangle var23 = var8.getVisibleRect(); + var0.setBounds(var23); + SpaceWar.SpacePanel var25 = new SpaceWar.SpacePanel(); + float var26 = var25.getAlignmentX(); + var25.setVisible(false); + boolean var29 = var25.isDoubleBuffered(); + var25.list(); + SpaceWar.SpacePanel var31 = new SpaceWar.SpacePanel(); + float var32 = var31.getAlignmentX(); + var31.setVisible(false); + boolean var35 = var31.isDoubleBuffered(); + java.awt.dnd.DropTarget var36 = var31.getDropTarget(); + var31.show(false); + java.awt.Rectangle var39 = var31.getVisibleRect(); + java.awt.Rectangle var40 = var25.getBounds(var39); + javax.swing.JToolTip var41 = var25.createToolTip(); + var25.firePropertyChange("", false, false); + var25.setFocusTraversalKeysEnabled(false); + boolean var48 = var25.isValid(); + SpaceWar.SpacePanel var49 = new SpaceWar.SpacePanel(); + float var50 = var49.getAlignmentX(); + var49.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var55 = var49.getMouseListeners(); + int var56 = var49.getDebugGraphicsOptions(); + java.awt.Color var57 = var49.getBackground(); + var25.setForeground(var57); + var0.addKeyListener((java.awt.event.KeyListener)var25); + java.awt.Component.BaselineResizeBehavior var60 = var0.getBaselineResizeBehavior(); + java.awt.event.MouseMotionListener[] var61 = var0.getMouseMotionListeners(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var21); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var22 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var23); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var29 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var32 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var35 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var36); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var39); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var40); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var41); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var48 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var50 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var55); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var56 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var57); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var60); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var61); + + } + + public void test495() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test495"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.updateUI(); + var0.enableInputMethods(true); + java.awt.Point var9 = var0.getMousePosition(false); + java.awt.Component.BaselineResizeBehavior var10 = var0.getBaselineResizeBehavior(); + java.awt.Dimension var11 = var0.getPreferredSize(); + var0.repaint(100, 400, 10, (-1)); + java.awt.Toolkit var17 = var0.getToolkit(); + java.lang.String var18 = var0.toString(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNull(var9); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var18 + "' != '" + "SpaceWar.SpacePanel[,0,0,0var18,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"+ "'", var18.equals("SpaceWar.SpacePanel[,0,0,0var18,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]")); + + } + + public void test496() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test496"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + SpaceWar.SpacePanel var4 = new SpaceWar.SpacePanel(); + java.awt.Color var5 = var4.getBackground(); + var0.setForeground(var5); + SpaceWar.SpacePanel var7 = new SpaceWar.SpacePanel(); + float var8 = var7.getAlignmentX(); + var7.setVisible(false); + boolean var11 = var7.isDoubleBuffered(); + java.awt.dnd.DropTarget var12 = var7.getDropTarget(); + var7.show(false); + java.awt.Rectangle var15 = var7.getVisibleRect(); + var0.repaint(var15); + java.awt.FocusTraversalPolicy var17 = var0.getFocusTraversalPolicy(); + var0.resetKeyboardActions(); + java.awt.dnd.DropTarget var19 = var0.getDropTarget(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertNull(var19); + + } + + public void test497() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test497"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + var0.setRequestFocusEnabled(false); + var0.reshape(100, 0, 100, 0); + java.beans.VetoableChangeListener[] var10 = var0.getVetoableChangeListeners(); + java.awt.Rectangle var11 = var0.getVisibleRect(); + float var12 = var0.getAlignmentY(); + java.awt.Dimension var13 = var0.minimumSize(); + boolean var14 = var0.getFocusTraversalKeysEnabled(); + java.awt.Color var15 = var0.getForeground(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + } + + public void test498() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test498"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + boolean var2 = var0.hasFocus(); + java.awt.Insets var3 = var0.getInsets(); + boolean var4 = var0.isFocusTraversalPolicyProvider(); + java.beans.PropertyChangeListener[] var6 = var0.getPropertyChangeListeners("hi!"); + java.awt.Cursor var7 = var0.getCursor(); + var0.setEnabled(false); + SpaceWar.SpacePanel var10 = new SpaceWar.SpacePanel(); + java.awt.Color var11 = var10.getBackground(); + var10.repaint(); + var10.setRequestFocusEnabled(false); + var10.reshape(100, 0, 100, 0); + var10.requestFocus(); + java.awt.Rectangle var21 = var10.getVisibleRect(); + java.awt.Rectangle var22 = var10.getBounds(); + java.awt.im.InputMethodRequests var23 = var10.getInputMethodRequests(); + boolean var24 = var10.requestFocusInWindow(); + java.awt.Point var26 = var10.getMousePosition(false); + var10.setDebugGraphicsOptions(1); + java.awt.Graphics var29 = var10.getGraphics(); + var0.printAll(var29); + SpaceWar.SpacePanel var31 = new SpaceWar.SpacePanel(); + float var32 = var31.getAlignmentX(); + var31.setVisible(false); + java.awt.Dimension var35 = var31.getPreferredSize(); + boolean var36 = var31.getVerifyInputWhenFocusTarget(); + java.awt.Component var39 = var31.findComponentAt(10, 1); + boolean var40 = var31.requestDefaultFocus(); + java.awt.Insets var41 = var31.getInsets(); + var31.setDoubleBuffered(false); + java.awt.Toolkit var44 = var31.getToolkit(); + java.awt.Dimension var45 = var31.getMinimumSize(); + java.awt.event.MouseListener[] var46 = var31.getMouseListeners(); + SpaceWar.SpacePanel var47 = new SpaceWar.SpacePanel(); + float var48 = var47.getAlignmentX(); + var47.setVisible(false); + java.awt.Dimension var51 = var47.getPreferredSize(); + java.awt.Toolkit var52 = var47.getToolkit(); + boolean var53 = var47.isFocusable(); + javax.swing.KeyStroke[] var54 = var47.getRegisteredKeyStrokes(); + java.awt.Component var57 = var47.getComponentAt(100, 100); + java.lang.Object var58 = var47.getTreeLock(); + SpaceWar.SpacePanel var59 = new SpaceWar.SpacePanel(); + float var60 = var59.getAlignmentX(); + var59.setVisible(false); + boolean var63 = var59.isDoubleBuffered(); + java.awt.dnd.DropTarget var64 = var59.getDropTarget(); + java.awt.Point var65 = var59.getMousePosition(); + java.lang.String var66 = var59.getUIClassID(); + var47.setNextFocusableComponent((java.awt.Component)var59); + int var68 = var47.getDebugGraphicsOptions(); + SpaceWar.SpacePanel var69 = new SpaceWar.SpacePanel(); + java.awt.Color var70 = var69.getBackground(); + var69.repaint(); + java.awt.im.InputMethodRequests var72 = var69.getInputMethodRequests(); + var69.list(); + SpaceWar.SpacePanel var74 = new SpaceWar.SpacePanel(); + java.awt.Color var75 = var74.getBackground(); + var74.repaint(); + var74.setRequestFocusEnabled(false); + var74.reshape(100, 0, 100, 0); + var74.requestFocus(); + java.awt.Rectangle var85 = var74.getVisibleRect(); + java.awt.Rectangle var86 = var74.getBounds(); + java.awt.im.InputMethodRequests var87 = var74.getInputMethodRequests(); + boolean var88 = var74.requestFocusInWindow(); + java.awt.Point var90 = var74.getMousePosition(false); + var74.setDebugGraphicsOptions(1); + java.awt.Graphics var93 = var74.getGraphics(); + var69.printComponents(var93); + var47.update(var93); + var31.paintComponents(var93); + var0.printAll(var93); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var2 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var21); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertNull(var23); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var24 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var29); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var32 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var35); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var36 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var39); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var40 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var41); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var44); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var45); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var46); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var48 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var51); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var52); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var53 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var54); + + // Regression assertion (captures the current behavior of the code) + assertNull(var57); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var58); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var60 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var63 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var64); + + // Regression assertion (captures the current behavior of the code) + assertNull(var65); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var66 + "' != '" + "PanelUI"+ "'", var66.equals("PanelUI")); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var68 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var70); + + // Regression assertion (captures the current behavior of the code) + assertNull(var72); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var75); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var85); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var86); + + // Regression assertion (captures the current behavior of the code) + assertNull(var87); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var88 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var90); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var93); + + } + + public void test499() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test499"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + SpaceWar.SpacePanel var2 = new SpaceWar.SpacePanel(); + float var3 = var2.getAlignmentX(); + var2.setVisible(false); + java.awt.Dimension var6 = var2.getPreferredSize(); + boolean var7 = var2.getVerifyInputWhenFocusTarget(); + java.awt.Component var10 = var2.findComponentAt(10, 1); + var0.addKeyListener((java.awt.event.KeyListener)var2); + var2.repaint(100, (-1), (-1), 1); + java.awt.image.ColorModel var17 = var2.getColorModel(); + boolean var18 = var2.isPreferredSizeSet(); + java.awt.peer.ComponentPeer var19 = var2.getPeer(); + java.awt.Dimension var20 = var2.getMinimumSize(); + var2.resetKeyboardActions(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + } + + public void test500() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest8.test500"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.setInheritsPopupMenu(false); + var0.setFocusTraversalPolicyProvider(true); + boolean var10 = var0.inside(25, 3); + var0.transferFocusBackward(); + float var12 = var0.getAlignmentY(); + javax.swing.ActionMap var13 = var0.getActionMap(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var13); + + } + +} diff --git a/test/randoop/RandoopTest9.java b/test/randoop/RandoopTest9.java new file mode 100644 index 0000000..8e738bb --- /dev/null +++ b/test/randoop/RandoopTest9.java @@ -0,0 +1,36094 @@ +package randoop; + +import junit.framework.*; + +public class RandoopTest9 extends TestCase { + + public static boolean debug = false; + + public void test1() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test1"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var6 = var0.getMouseListeners(); + int var7 = var0.getDebugGraphicsOptions(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + boolean var12 = var8.isDoubleBuffered(); + java.awt.dnd.DropTarget var13 = var8.getDropTarget(); + var8.show(false); + java.awt.Rectangle var16 = var8.getVisibleRect(); + var0.paintImmediately(var16); + SpaceWar.SpacePanel var18 = new SpaceWar.SpacePanel(); + float var19 = var18.getAlignmentX(); + var18.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var24 = var18.getMouseListeners(); + int var25 = var18.getDebugGraphicsOptions(); + SpaceWar.SpacePanel var26 = new SpaceWar.SpacePanel(); + float var27 = var26.getAlignmentX(); + var26.setVisible(false); + boolean var30 = var26.isDoubleBuffered(); + java.awt.dnd.DropTarget var31 = var26.getDropTarget(); + var26.show(false); + java.awt.Rectangle var34 = var26.getVisibleRect(); + var18.paintImmediately(var34); + java.awt.Rectangle var36 = var18.getBounds(); + var0.scrollRectToVisible(var36); + boolean var38 = var0.isFocusTraversalPolicySet(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var30 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var31); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var34); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var36); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var38 == false); + + } + + public void test2() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test2"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + boolean var6 = var0.isFocusCycleRoot(); + var0.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", 100, 0); + SpaceWar.SpacePanel var11 = new SpaceWar.SpacePanel(); + float var12 = var11.getAlignmentX(); + var11.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var17 = var11.getUI(); + var0.add((java.awt.Component)var11, (java.lang.Object)(short)0); + java.awt.Insets var20 = var11.getInsets(); + SpaceWar.SpacePanel var21 = new SpaceWar.SpacePanel(); + float var22 = var21.getAlignmentX(); + var21.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var27 = var21.getMouseListeners(); + java.awt.Dimension var28 = var21.getPreferredSize(); + java.util.Locale var29 = var21.getLocale(); + var21.setFocusable(true); + SpaceWar.SpacePanel var32 = new SpaceWar.SpacePanel(); + java.awt.Color var33 = var32.getBackground(); + var32.repaint(); + var32.setRequestFocusEnabled(false); + var32.setIgnoreRepaint(false); + java.lang.String var39 = var32.toString(); + java.awt.Color var40 = var32.getBackground(); + var11.putClientProperty((java.lang.Object)var21, (java.lang.Object)var32); + boolean var42 = var21.hasFocus(); + var21.layout(); + java.awt.event.ContainerListener[] var44 = var21.getContainerListeners(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var22 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var27); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var28); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var29); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var33); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var39 + "' != '" + "SpaceWar.SpacePanel[,0,0,0var39,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"+ "'", var39.equals("SpaceWar.SpacePanel[,0,0,0var39,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]")); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var40); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var42 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var44); + + } + + public void test3() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test3"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + var0.show(false); + boolean var8 = var0.isPaintingForPrint(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + SpaceWar.SpacePanel var11 = new SpaceWar.SpacePanel(); + float var12 = var11.getAlignmentX(); + var11.setVisible(false); + java.awt.Dimension var15 = var11.getPreferredSize(); + boolean var16 = var11.getVerifyInputWhenFocusTarget(); + java.awt.Component var19 = var11.findComponentAt(10, 1); + var9.addKeyListener((java.awt.event.KeyListener)var11); + java.awt.Dimension var21 = var11.getMinimumSize(); + var0.setMinimumSize(var21); + SpaceWar.SpacePanel var24 = new SpaceWar.SpacePanel(); + float var25 = var24.getAlignmentX(); + var24.setVisible(false); + var24.nextFocus(); + var24.repaint(1L); + SpaceWar.SpacePanel var31 = new SpaceWar.SpacePanel(); + float var32 = var31.getAlignmentX(); + var31.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var37 = new SpaceWar.SpacePanel(); + float var38 = var37.getAlignmentX(); + var37.setVisible(false); + java.awt.Dimension var41 = var37.getPreferredSize(); + var31.setMaximumSize(var41); + var24.setPreferredSize(var41); + SpaceWar.SpacePanel var45 = new SpaceWar.SpacePanel(); + float var46 = var45.getAlignmentX(); + var45.setVisible(false); + SpaceWar.SpacePanel var49 = new SpaceWar.SpacePanel(); + java.awt.Color var50 = var49.getBackground(); + var45.setForeground(var50); + javax.swing.InputMap var52 = var45.getInputMap(); + var24.setInputMap(1, var52); + var0.setInputMap(1, var52); + boolean var55 = var0.isFocusCycleRoot(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var21); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var32 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var38 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var41); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var46 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var50); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var52); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var55 == false); + + } + + public void test4() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test4"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var6 = var0.getMouseListeners(); + java.awt.Dimension var7 = var0.getPreferredSize(); + java.beans.PropertyChangeListener[] var8 = var0.getPropertyChangeListeners(); + var0.setName("SpaceWar.SpacePanel[,0,0,0x0,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=java.awt.Dimension[width=800,height=600],minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + var0.setAlignmentY(1.0f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var8); + + } + + public void test5() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test5"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.setInheritsPopupMenu(false); + var0.setFocusTraversalPolicyProvider(true); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + boolean var12 = var8.isDoubleBuffered(); + var8.list(); + SpaceWar.SpacePanel var14 = new SpaceWar.SpacePanel(); + float var15 = var14.getAlignmentX(); + var14.setVisible(false); + boolean var18 = var14.isDoubleBuffered(); + java.awt.dnd.DropTarget var19 = var14.getDropTarget(); + var14.show(false); + java.awt.Rectangle var22 = var14.getVisibleRect(); + java.awt.Rectangle var23 = var8.getBounds(var22); + javax.swing.JToolTip var24 = var8.createToolTip(); + var0.removeKeyListener((java.awt.event.KeyListener)var8); + javax.swing.TransferHandler var26 = var0.getTransferHandler(); + boolean var27 = var0.isPaintingForPrint(); + int var28 = var0.getY(); + javax.swing.InputVerifier var29 = var0.getInputVerifier(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var23); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var28 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var29); + + } + + public void test6() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test6"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + float var7 = var6.getAlignmentX(); + var6.setVisible(false); + java.awt.Dimension var10 = var6.getPreferredSize(); + var0.setMaximumSize(var10); + boolean var12 = var0.getVerifyInputWhenFocusTarget(); + boolean var13 = var0.isFontSet(); + boolean var14 = var0.getIgnoreRepaint(); + java.awt.Dimension var15 = var0.getMinimumSize(); + var0.enable(); + int var17 = var0.getComponentCount(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == 0); + + } + + public void test7() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test7"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + java.awt.im.InputMethodRequests var3 = var0.getInputMethodRequests(); + var0.setDoubleBuffered(true); + var0.setInheritsPopupMenu(false); + var0.invalidate(); + var0.setRequestFocusEnabled(true); + SpaceWar.SpacePanel var11 = new SpaceWar.SpacePanel(); + float var12 = var11.getAlignmentX(); + var11.setVisible(false); + SpaceWar.SpacePanel var15 = new SpaceWar.SpacePanel(); + java.awt.Color var16 = var15.getBackground(); + var11.setForeground(var16); + SpaceWar.SpacePanel var18 = new SpaceWar.SpacePanel(); + float var19 = var18.getAlignmentX(); + var18.setVisible(false); + boolean var22 = var18.isDoubleBuffered(); + java.awt.dnd.DropTarget var23 = var18.getDropTarget(); + var18.show(false); + java.awt.Rectangle var26 = var18.getVisibleRect(); + var11.repaint(var26); + java.awt.FocusTraversalPolicy var28 = var11.getFocusTraversalPolicy(); + java.awt.im.InputMethodRequests var29 = var11.getInputMethodRequests(); + var11.layout(); + SpaceWar.SpacePanel var31 = new SpaceWar.SpacePanel(); + float var32 = var31.getAlignmentX(); + var31.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var37 = new SpaceWar.SpacePanel(); + float var38 = var37.getAlignmentX(); + var37.setVisible(false); + SpaceWar.SpacePanel var41 = new SpaceWar.SpacePanel(); + java.awt.Color var42 = var41.getBackground(); + var37.setForeground(var42); + var31.setBackground(var42); + var11.setForeground(var42); + int var46 = var11.getWidth(); + int var47 = var0.getComponentZOrder((java.awt.Component)var11); + boolean var48 = var0.isValidateRoot(); + javax.swing.border.Border var49 = var0.getBorder(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var22 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var23); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertNull(var28); + + // Regression assertion (captures the current behavior of the code) + assertNull(var29); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var32 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var38 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var42); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var46 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var47 == (-1)); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var48 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var49); + + } + + public void test8() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test8"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.setInheritsPopupMenu(false); + var0.setFocusTraversalPolicyProvider(true); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + boolean var12 = var8.isDoubleBuffered(); + var8.list(); + SpaceWar.SpacePanel var14 = new SpaceWar.SpacePanel(); + float var15 = var14.getAlignmentX(); + var14.setVisible(false); + boolean var18 = var14.isDoubleBuffered(); + java.awt.dnd.DropTarget var19 = var14.getDropTarget(); + var14.show(false); + java.awt.Rectangle var22 = var14.getVisibleRect(); + java.awt.Rectangle var23 = var8.getBounds(var22); + javax.swing.JToolTip var24 = var8.createToolTip(); + var0.removeKeyListener((java.awt.event.KeyListener)var8); + javax.swing.TransferHandler var26 = var0.getTransferHandler(); + var0.setFocusTraversalPolicyProvider(true); + int var29 = var0.getX(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var23); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var29 == 0); + + } + + public void test9() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test9"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + var0.list(); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + float var7 = var6.getAlignmentX(); + var6.setVisible(false); + boolean var10 = var6.isDoubleBuffered(); + java.awt.dnd.DropTarget var11 = var6.getDropTarget(); + var6.show(false); + java.awt.Rectangle var14 = var6.getVisibleRect(); + java.awt.Rectangle var15 = var0.getBounds(var14); + javax.swing.JToolTip var16 = var0.createToolTip(); + var0.firePropertyChange("", false, false); + var0.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", (-1L), (-1L)); + java.awt.Container var25 = var0.getParent(); + java.awt.Component.BaselineResizeBehavior var26 = var0.getBaselineResizeBehavior(); + boolean var27 = var0.isDoubleBuffered(); + java.awt.peer.ComponentPeer var28 = var0.getPeer(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertNull(var25); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var28); + + } + + public void test10() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test10"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + boolean var5 = javax.swing.JComponent.isLightweightComponent((java.awt.Component)var0); + java.awt.event.MouseWheelListener[] var6 = var0.getMouseWheelListeners(); + var0.transferFocusUpCycle(); + var0.reshape(2, 25, 0, 24); + SpaceWar.SpacePanel var13 = new SpaceWar.SpacePanel(); + var13.setName(""); + java.awt.Graphics var16 = var13.getGraphics(); + java.awt.event.MouseMotionListener[] var17 = var13.getMouseMotionListeners(); + boolean var18 = var13.getIgnoreRepaint(); + var13.transferFocusBackward(); + var13.enable(); + java.awt.Container var21 = var13.getTopLevelAncestor(); + java.awt.Point var23 = var13.getMousePosition(true); + boolean var24 = var13.isFocusTraversable(); + SpaceWar.SpacePanel var25 = new SpaceWar.SpacePanel(); + float var26 = var25.getAlignmentX(); + var25.setVisible(false); + java.awt.Dimension var29 = var25.getPreferredSize(); + boolean var30 = var25.getVerifyInputWhenFocusTarget(); + java.awt.Component var33 = var25.findComponentAt(10, 1); + boolean var34 = var25.requestDefaultFocus(); + java.awt.image.VolatileImage var37 = var25.createVolatileImage(0, 3); + var25.resize(25, 25); + boolean var41 = var25.isDisplayable(); + var0.add((java.awt.Component)var13, (java.lang.Object)var25); + SpaceWar.SpacePanel var43 = new SpaceWar.SpacePanel(); + float var44 = var43.getAlignmentX(); + var43.setVisible(false); + boolean var47 = var43.isDoubleBuffered(); + java.awt.dnd.DropTarget var48 = var43.getDropTarget(); + var43.show(false); + boolean var51 = var43.isPaintingForPrint(); + SpaceWar.SpacePanel var52 = new SpaceWar.SpacePanel(); + float var53 = var52.getAlignmentX(); + var52.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var58 = var52.getMouseListeners(); + int var59 = var52.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var60 = var52.getInputMethodRequests(); + var43.addKeyListener((java.awt.event.KeyListener)var52); + boolean var62 = var43.isDisplayable(); + java.awt.Insets var63 = var43.getInsets(); + SpaceWar.SpacePanel var64 = new SpaceWar.SpacePanel(); + float var65 = var64.getAlignmentX(); + var64.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var70 = new SpaceWar.SpacePanel(); + float var71 = var70.getAlignmentX(); + var70.setVisible(false); + SpaceWar.SpacePanel var74 = new SpaceWar.SpacePanel(); + java.awt.Color var75 = var74.getBackground(); + var70.setForeground(var75); + var64.setBackground(var75); + java.awt.Point var78 = var64.location(); + java.awt.Point var79 = var43.getLocation(var78); + java.awt.Component var80 = var0.findComponentAt(var78); + SpaceWar.SpacePanel var81 = new SpaceWar.SpacePanel(); + java.awt.Color var82 = var81.getBackground(); + var81.repaint(); + java.awt.im.InputMethodRequests var84 = var81.getInputMethodRequests(); + var81.list(); + var81.setIgnoreRepaint(false); + java.awt.Dimension var88 = var81.getSize(); + var0.addKeyListener((java.awt.event.KeyListener)var81); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var21); + + // Regression assertion (captures the current behavior of the code) + assertNull(var23); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var24 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var29); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var30 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var33); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var34 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var37); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var41 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var44 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var47 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var48); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var51 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var53 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var58); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var59 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var60); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var62 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var63); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var65 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var71 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var75); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var78); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var79); + + // Regression assertion (captures the current behavior of the code) + assertNull(var80); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var82); + + // Regression assertion (captures the current behavior of the code) + assertNull(var84); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var88); + + } + + public void test11() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test11"); + + + SpaceWar.Enemy var2 = new SpaceWar.Enemy(0, 100); + var2.explode(); + java.awt.image.BufferedImage var5 = var2.loadImg("SpaceWar.SpacePanel[,-1,1,-1x10,invalid,hidden,disabled,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + int var6 = var2.getType(); + double var7 = var2.getX(); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 440.8263748791678d); + + } + + public void test12() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test12"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.reshape((-1), 1, (-1), 10); + SpaceWar.SpacePanel var10 = new SpaceWar.SpacePanel(); + java.awt.Color var11 = var10.getBackground(); + var10.repaint(); + var10.setRequestFocusEnabled(false); + var10.reshape(100, 0, 100, 0); + java.awt.Component var20 = var0.add((java.awt.Component)var10); + var0.removeNotify(); + var0.requestFocus(); + var0.setFocusCycleRoot(false); + var0.layout(); + var0.setSize(3, (-1)); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + } + + public void test13() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test13"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + SpaceWar.SpacePanel var2 = new SpaceWar.SpacePanel(); + float var3 = var2.getAlignmentX(); + var2.setVisible(false); + java.awt.Dimension var6 = var2.getPreferredSize(); + boolean var7 = var2.getVerifyInputWhenFocusTarget(); + java.awt.Component var10 = var2.findComponentAt(10, 1); + var0.addKeyListener((java.awt.event.KeyListener)var2); + var2.repaint(100, (-1), (-1), 1); + SpaceWar.SpacePanel var17 = new SpaceWar.SpacePanel(); + java.awt.Color var18 = var17.getBackground(); + var17.repaint(); + java.awt.im.InputMethodRequests var20 = var17.getInputMethodRequests(); + java.awt.GraphicsConfiguration var21 = var17.getGraphicsConfiguration(); + var2.remove((java.awt.Component)var17); + java.awt.Font var23 = var17.getFont(); + var17.removeNotify(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertNull(var21); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var23); + + } + + public void test14() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test14"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.repaint(1L); + var0.firePropertyChange("", (short)(-1), (short)(-1)); + java.awt.Component var13 = var0.getComponentAt(0, 100); + int var14 = var0.getComponentCount(); + SpaceWar.SpacePanel var15 = new SpaceWar.SpacePanel(); + float var16 = var15.getAlignmentX(); + var15.setVisible(false); + var15.setInheritsPopupMenu(false); + var15.setFocusTraversalPolicyProvider(true); + SpaceWar.SpacePanel var23 = new SpaceWar.SpacePanel(); + float var24 = var23.getAlignmentX(); + var23.setVisible(false); + boolean var27 = var23.isDoubleBuffered(); + var23.list(); + SpaceWar.SpacePanel var29 = new SpaceWar.SpacePanel(); + float var30 = var29.getAlignmentX(); + var29.setVisible(false); + boolean var33 = var29.isDoubleBuffered(); + java.awt.dnd.DropTarget var34 = var29.getDropTarget(); + var29.show(false); + java.awt.Rectangle var37 = var29.getVisibleRect(); + java.awt.Rectangle var38 = var23.getBounds(var37); + javax.swing.JToolTip var39 = var23.createToolTip(); + var15.removeKeyListener((java.awt.event.KeyListener)var23); + var15.setFocusTraversalKeysEnabled(true); + javax.swing.KeyStroke[] var43 = var15.getRegisteredKeyStrokes(); + var15.setOpaque(false); + var15.move(3, 24); + var0.removeKeyListener((java.awt.event.KeyListener)var15); + var15.disable(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var24 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var30 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var33 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var34); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var37); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var38); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var39); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var43); + + } + + public void test15() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test15"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.Graphics var5 = var0.getGraphics(); + boolean var6 = var0.isMinimumSizeSet(); + var0.hide(); + var0.setSize((-1), 499); + SpaceWar.SpacePanel var11 = new SpaceWar.SpacePanel(); + float var12 = var11.getAlignmentX(); + var11.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var17 = var11.getMouseListeners(); + int var18 = var11.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var19 = var11.getInputMethodRequests(); + java.lang.String var20 = var11.getToolTipText(); + boolean var21 = var11.isOpaque(); + var0.removeKeyListener((java.awt.event.KeyListener)var11); + boolean var23 = var0.isOpaque(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == true); + + } + + public void test16() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test16"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.setInheritsPopupMenu(false); + boolean var6 = var0.isDoubleBuffered(); + java.awt.event.HierarchyBoundsListener[] var7 = var0.getHierarchyBoundsListeners(); + javax.swing.TransferHandler var8 = var0.getTransferHandler(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertNull(var8); + + } + + public void test17() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test17"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.reshape((-1), 1, (-1), 10); + SpaceWar.SpacePanel var10 = new SpaceWar.SpacePanel(); + java.awt.Color var11 = var10.getBackground(); + var10.repaint(); + var10.setRequestFocusEnabled(false); + var10.reshape(100, 0, 100, 0); + java.awt.Component var20 = var0.add((java.awt.Component)var10); + boolean var21 = var10.isEnabled(); + SpaceWar.SpacePanel var22 = new SpaceWar.SpacePanel(); + float var23 = var22.getAlignmentX(); + var22.setVisible(false); + var22.setInheritsPopupMenu(false); + var22.setFocusTraversalPolicyProvider(true); + SpaceWar.SpacePanel var30 = new SpaceWar.SpacePanel(); + float var31 = var30.getAlignmentX(); + var30.setVisible(false); + boolean var34 = var30.isDoubleBuffered(); + var30.list(); + SpaceWar.SpacePanel var36 = new SpaceWar.SpacePanel(); + float var37 = var36.getAlignmentX(); + var36.setVisible(false); + boolean var40 = var36.isDoubleBuffered(); + java.awt.dnd.DropTarget var41 = var36.getDropTarget(); + var36.show(false); + java.awt.Rectangle var44 = var36.getVisibleRect(); + java.awt.Rectangle var45 = var30.getBounds(var44); + javax.swing.JToolTip var46 = var30.createToolTip(); + var22.removeKeyListener((java.awt.event.KeyListener)var30); + javax.swing.TransferHandler var48 = var22.getTransferHandler(); + var22.transferFocus(); + SpaceWar.SpacePanel var50 = new SpaceWar.SpacePanel(); + float var51 = var50.getAlignmentX(); + SpaceWar.SpacePanel var52 = new SpaceWar.SpacePanel(); + float var53 = var52.getAlignmentX(); + var52.setVisible(false); + java.awt.Dimension var56 = var52.getPreferredSize(); + boolean var57 = var52.getVerifyInputWhenFocusTarget(); + java.awt.Component var60 = var52.findComponentAt(10, 1); + var50.addKeyListener((java.awt.event.KeyListener)var52); + java.awt.Dimension var62 = var52.getMinimumSize(); + SpaceWar.SpacePanel var63 = new SpaceWar.SpacePanel(); + java.awt.Color var64 = var63.getBackground(); + var63.repaint(); + var63.setRequestFocusEnabled(false); + var63.reshape(100, 0, 100, 0); + var63.requestFocus(); + java.awt.Rectangle var74 = var63.getVisibleRect(); + var52.setBounds(var74); + var22.scrollRectToVisible(var74); + var10.setBounds(var74); + var10.show(); + boolean var79 = var10.isFocusTraversalPolicySet(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var31 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var34 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var40 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var41); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var44); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var45); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var46); + + // Regression assertion (captures the current behavior of the code) + assertNull(var48); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var51 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var53 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var56); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var57 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var60); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var62); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var64); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var74); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var79 == false); + + } + + public void test18() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test18"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + java.awt.im.InputMethodRequests var3 = var0.getInputMethodRequests(); + var0.setDoubleBuffered(true); + var0.setInheritsPopupMenu(false); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + var8.setName(""); + java.awt.Graphics var11 = var8.getGraphics(); + java.awt.event.MouseMotionListener[] var12 = var8.getMouseMotionListeners(); + boolean var13 = var8.getIgnoreRepaint(); + var8.transferFocusBackward(); + java.awt.Cursor var15 = var8.getCursor(); + var0.setCursor(var15); + java.beans.PropertyChangeListener[] var18 = var0.getPropertyChangeListeners("SpaceWar.SpacePanel[,100,0,100x0,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + java.lang.String var19 = var0.getName(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertNull(var19); + + } + + public void test19() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test19"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.updateUI(); + var0.enableInputMethods(true); + var0.setSize((-1), 1); + boolean var13 = var0.contains(1, 1); + javax.swing.TransferHandler var14 = var0.getTransferHandler(); + SpaceWar.SpacePanel var15 = new SpaceWar.SpacePanel(); + float var16 = var15.getAlignmentX(); + var15.setVisible(false); + boolean var19 = var15.isDoubleBuffered(); + var15.enable(false); + java.lang.Object var22 = var0.getClientProperty((java.lang.Object)false); + boolean var23 = javax.swing.JComponent.isLightweightComponent((java.awt.Component)var0); + var0.enableInputMethods(true); + boolean var26 = var0.isBackgroundSet(); + var0.firePropertyChange("hi!", 3, (-1)); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == true); + + } + + public void test20() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test20"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + java.awt.Dimension var4 = var0.getPreferredSize(); + boolean var5 = var0.getVerifyInputWhenFocusTarget(); + java.awt.Component var8 = var0.findComponentAt(10, 1); + boolean var9 = var0.requestDefaultFocus(); + java.awt.Insets var10 = var0.getInsets(); + var0.setDoubleBuffered(false); + java.lang.String var13 = var0.getToolTipText(); + SpaceWar.SpacePanel var14 = new SpaceWar.SpacePanel(); + float var15 = var14.getAlignmentX(); + SpaceWar.SpacePanel var16 = new SpaceWar.SpacePanel(); + float var17 = var16.getAlignmentX(); + var16.setVisible(false); + java.awt.Dimension var20 = var16.getPreferredSize(); + boolean var21 = var16.getVerifyInputWhenFocusTarget(); + java.awt.Component var24 = var16.findComponentAt(10, 1); + var14.addKeyListener((java.awt.event.KeyListener)var16); + java.awt.Dimension var26 = var16.getMinimumSize(); + SpaceWar.SpacePanel var27 = new SpaceWar.SpacePanel(); + java.awt.Color var28 = var27.getBackground(); + var27.repaint(); + var27.setRequestFocusEnabled(false); + var27.reshape(100, 0, 100, 0); + var27.requestFocus(); + java.awt.Rectangle var38 = var27.getVisibleRect(); + var16.setBounds(var38); + var0.setBounds(var38); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var4); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var28); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var38); + + } + + public void test21() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test21"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.updateUI(); + var0.enableInputMethods(true); + java.awt.Point var8 = var0.location(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.setVisible(false); + var9.nextFocus(); + java.awt.Component var14 = var0.add((java.awt.Component)var9); + SpaceWar.SpacePanel var15 = new SpaceWar.SpacePanel(); + float var16 = var15.getAlignmentX(); + var15.setVisible(false); + var15.nextFocus(); + var15.updateUI(); + var15.enableInputMethods(true); + java.awt.Point var24 = var15.getMousePosition(false); + SpaceWar.SpacePanel var25 = new SpaceWar.SpacePanel(); + float var26 = var25.getAlignmentX(); + SpaceWar.SpacePanel var27 = new SpaceWar.SpacePanel(); + float var28 = var27.getAlignmentX(); + var27.setVisible(false); + java.awt.Dimension var31 = var27.getPreferredSize(); + boolean var32 = var27.getVerifyInputWhenFocusTarget(); + java.awt.Component var35 = var27.findComponentAt(10, 1); + var25.addKeyListener((java.awt.event.KeyListener)var27); + var27.repaint(100, (-1), (-1), 1); + SpaceWar.SpacePanel var42 = new SpaceWar.SpacePanel(); + java.awt.Color var43 = var42.getBackground(); + var42.repaint(); + java.awt.im.InputMethodRequests var45 = var42.getInputMethodRequests(); + java.awt.GraphicsConfiguration var46 = var42.getGraphicsConfiguration(); + var27.remove((java.awt.Component)var42); + java.awt.Font var48 = var42.getFont(); + var15.setFont(var48); + var9.setFont(var48); + var9.revalidate(); + var9.requestFocus(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var28 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var31); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var32 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var35); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var43); + + // Regression assertion (captures the current behavior of the code) + assertNull(var45); + + // Regression assertion (captures the current behavior of the code) + assertNull(var46); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var48); + + } + + public void test22() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test22"); + + + SpaceWar.Player var0 = new SpaceWar.Player(); + boolean var1 = var0.isRecovering(); + var0.setRigth(false); + int var4 = var0.getScore(); + int var5 = var0.getLives(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == 3); + + } + + public void test23() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test23"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.setInheritsPopupMenu(false); + var0.setFocusTraversalPolicyProvider(true); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + boolean var12 = var8.isDoubleBuffered(); + var8.list(); + SpaceWar.SpacePanel var14 = new SpaceWar.SpacePanel(); + float var15 = var14.getAlignmentX(); + var14.setVisible(false); + boolean var18 = var14.isDoubleBuffered(); + java.awt.dnd.DropTarget var19 = var14.getDropTarget(); + var14.show(false); + java.awt.Rectangle var22 = var14.getVisibleRect(); + java.awt.Rectangle var23 = var8.getBounds(var22); + javax.swing.JToolTip var24 = var8.createToolTip(); + var0.removeKeyListener((java.awt.event.KeyListener)var8); + java.awt.Rectangle var26 = var0.getVisibleRect(); + SpaceWar.SpacePanel var27 = new SpaceWar.SpacePanel(); + float var28 = var27.getAlignmentX(); + var27.setVisible(false); + var27.setInheritsPopupMenu(false); + var27.setFocusTraversalPolicyProvider(true); + SpaceWar.SpacePanel var35 = new SpaceWar.SpacePanel(); + java.awt.Color var36 = var35.getBackground(); + var35.repaint(); + java.awt.im.InputMethodRequests var38 = var35.getInputMethodRequests(); + java.awt.GraphicsConfiguration var39 = var35.getGraphicsConfiguration(); + java.awt.Component var40 = var27.add((java.awt.Component)var35); + java.awt.Rectangle var41 = var27.getBounds(); + java.awt.Rectangle var42 = var0.getBounds(var41); + boolean var44 = var0.areFocusTraversalKeysSet(2); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var23); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var28 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var36); + + // Regression assertion (captures the current behavior of the code) + assertNull(var38); + + // Regression assertion (captures the current behavior of the code) + assertNull(var39); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var40); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var41); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var42); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var44 == false); + + } + + public void test24() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test24"); + + + SpaceWar.Explosion var4 = new SpaceWar.Explosion(514.6637810615505d, 475.3294093279198d, 505, 100); + + } + + public void test25() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test25"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + var0.show(false); + boolean var8 = var0.isPaintingForPrint(); + javax.swing.TransferHandler var9 = var0.getTransferHandler(); + var0.setName("SpaceWar.SpacePanel[,-1,1,-1x10,invalid,hidden,disabled,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var9); + + } + + public void test26() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test26"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.updateUI(); + var0.enableInputMethods(true); + java.awt.Point var9 = var0.getMousePosition(false); + java.awt.Point var10 = var0.getMousePosition(); + SpaceWar.SpacePanel var11 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var12 = new SpaceWar.SpacePanel(); + java.awt.Color var13 = var12.getBackground(); + SpaceWar.SpacePanel var14 = new SpaceWar.SpacePanel(); + float var15 = var14.getAlignmentX(); + var14.setVisible(false); + var14.nextFocus(); + var14.updateUI(); + var14.enableInputMethods(true); + var11.add((java.awt.Component)var12, (java.lang.Object)true); + boolean var23 = var11.isMinimumSizeSet(); + java.awt.event.HierarchyListener[] var24 = var11.getHierarchyListeners(); + SpaceWar.SpacePanel var25 = new SpaceWar.SpacePanel(); + float var26 = var25.getAlignmentX(); + var25.setVisible(false); + SpaceWar.SpacePanel var29 = new SpaceWar.SpacePanel(); + java.awt.Color var30 = var29.getBackground(); + var25.setForeground(var30); + SpaceWar.SpacePanel var32 = new SpaceWar.SpacePanel(); + float var33 = var32.getAlignmentX(); + var32.setVisible(false); + boolean var36 = var32.isDoubleBuffered(); + java.awt.dnd.DropTarget var37 = var32.getDropTarget(); + var32.show(false); + java.awt.Rectangle var40 = var32.getVisibleRect(); + var25.repaint(var40); + java.awt.FocusTraversalPolicy var42 = var25.getFocusTraversalPolicy(); + java.awt.im.InputMethodRequests var43 = var25.getInputMethodRequests(); + var25.layout(); + boolean var45 = var25.isFocusTraversalPolicyProvider(); + java.lang.Object var46 = var11.getClientProperty((java.lang.Object)var45); + java.awt.Dimension var47 = var11.getSize(); + var0.resize(var47); + var0.setRequestFocusEnabled(true); + javax.accessibility.AccessibleContext var51 = var0.getAccessibleContext(); + var0.firePropertyChange("SpaceWar.SpacePanel[,-1,1,-1x10,invalid,hidden,disabled,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", 'a', '#'); + SpaceWar.SpacePanel var56 = new SpaceWar.SpacePanel(); + float var57 = var56.getAlignmentX(); + var56.setVisible(false); + boolean var60 = var56.isDoubleBuffered(); + var56.list(); + SpaceWar.SpacePanel var62 = new SpaceWar.SpacePanel(); + float var63 = var62.getAlignmentX(); + var62.setVisible(false); + boolean var66 = var62.isDoubleBuffered(); + java.awt.dnd.DropTarget var67 = var62.getDropTarget(); + var62.show(false); + java.awt.Rectangle var70 = var62.getVisibleRect(); + java.awt.Rectangle var71 = var56.getBounds(var70); + javax.swing.JToolTip var72 = var56.createToolTip(); + var56.firePropertyChange("", false, false); + var56.validate(); + var56.setFocusCycleRoot(true); + int var80 = var56.countComponents(); + java.awt.event.KeyListener[] var81 = var56.getKeyListeners(); + java.awt.im.InputContext var82 = var56.getInputContext(); + java.awt.Point var83 = var56.location(); + var0.setLocation(var83); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNull(var9); + + // Regression assertion (captures the current behavior of the code) + assertNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var30); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var33 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var36 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var37); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var40); + + // Regression assertion (captures the current behavior of the code) + assertNull(var42); + + // Regression assertion (captures the current behavior of the code) + assertNull(var43); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var45 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var46); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var47); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var51); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var57 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var60 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var63 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var66 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var67); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var70); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var71); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var72); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var80 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var81); + + // Regression assertion (captures the current behavior of the code) + assertNull(var82); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var83); + + } + + public void test27() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test27"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + var0.enable(false); + boolean var7 = var0.requestDefaultFocus(); + var0.enable(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == false); + + } + + public void test28() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test28"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var6 = var0.getUI(); + java.awt.im.InputMethodRequests var7 = var0.getInputMethodRequests(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + var8.nextFocus(); + var8.updateUI(); + var8.enableInputMethods(true); + var8.setSize((-1), 1); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + var19.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var0.add((java.awt.Component)var8, (java.lang.Object)"SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + boolean var25 = var0.isCursorSet(); + javax.swing.KeyStroke[] var26 = var0.getRegisteredKeyStrokes(); + var0.repaint(24, 100, 0, 100); + boolean var32 = var0.requestFocusInWindow(); + boolean var33 = var0.isFocusTraversable(); + boolean var35 = var0.requestFocus(false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var32 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var33 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var35 == false); + + } + + public void test29() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test29"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + float var7 = var6.getAlignmentX(); + var6.setVisible(false); + java.awt.Dimension var10 = var6.getPreferredSize(); + var0.setMaximumSize(var10); + boolean var12 = var0.getVerifyInputWhenFocusTarget(); + boolean var13 = var0.isFontSet(); + boolean var14 = var0.getIgnoreRepaint(); + java.awt.Component var17 = var0.locate(1, 25); + boolean var18 = var0.isLightweight(); + var0.setName("SpaceWar.SpacePanel[,0,0,0x0,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + var0.setAutoscrolls(false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == false); + + } + + public void test30() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test30"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + var0.list(); + float var6 = var0.getAlignmentY(); + java.awt.event.ComponentListener[] var7 = var0.getComponentListeners(); + java.awt.Component var8 = var0.getNextFocusableComponent(); + boolean var9 = var0.isManagingFocus(); + javax.swing.border.Border var10 = var0.getBorder(); + SpaceWar.SpacePanel var11 = new SpaceWar.SpacePanel(); + float var12 = var11.getAlignmentX(); + var11.setVisible(false); + boolean var15 = var11.isDoubleBuffered(); + java.awt.dnd.DropTarget var16 = var11.getDropTarget(); + var11.show(false); + boolean var19 = var11.isPaintingForPrint(); + SpaceWar.SpacePanel var20 = new SpaceWar.SpacePanel(); + float var21 = var20.getAlignmentX(); + var20.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var26 = var20.getMouseListeners(); + int var27 = var20.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var28 = var20.getInputMethodRequests(); + var11.addKeyListener((java.awt.event.KeyListener)var20); + SpaceWar.SpacePanel var30 = new SpaceWar.SpacePanel(); + float var31 = var30.getAlignmentX(); + var30.setVisible(false); + boolean var34 = var30.isDoubleBuffered(); + var30.list(); + float var36 = var30.getAlignmentY(); + boolean var37 = var20.isFocusCycleRoot((java.awt.Container)var30); + var30.firePropertyChange("", 1L, 1L); + var30.setVerifyInputWhenFocusTarget(true); + var30.resize(25, 400); + java.awt.event.ComponentListener[] var47 = var30.getComponentListeners(); + boolean var48 = var30.isBackgroundSet(); + boolean var49 = var30.isFontSet(); + SpaceWar.SpacePanel var50 = new SpaceWar.SpacePanel(); + var50.setName(""); + var50.enable(true); + var50.enable(); + java.awt.Point var56 = var50.location(); + var50.repaint(0, 3, (-1), 1); + var50.setBounds(25, 100, 1, 0); + var0.putClientProperty((java.lang.Object)var49, (java.lang.Object)1); + java.awt.Insets var68 = var0.getInsets(); + var0.setLocation(25, (-1)); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var28); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var31 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var34 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var36 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var47); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var48 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var49 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var56); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var68); + + } + + public void test31() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test31"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + var0.show(false); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + SpaceWar.SpacePanel var12 = new SpaceWar.SpacePanel(); + java.awt.Color var13 = var12.getBackground(); + var8.setForeground(var13); + SpaceWar.SpacePanel var15 = new SpaceWar.SpacePanel(); + float var16 = var15.getAlignmentX(); + var15.setVisible(false); + boolean var19 = var15.isDoubleBuffered(); + java.awt.dnd.DropTarget var20 = var15.getDropTarget(); + var15.show(false); + java.awt.Rectangle var23 = var15.getVisibleRect(); + var8.repaint(var23); + java.awt.FocusTraversalPolicy var25 = var8.getFocusTraversalPolicy(); + java.awt.im.InputMethodRequests var26 = var8.getInputMethodRequests(); + var8.layout(); + SpaceWar.SpacePanel var28 = new SpaceWar.SpacePanel(); + float var29 = var28.getAlignmentX(); + var28.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var34 = new SpaceWar.SpacePanel(); + float var35 = var34.getAlignmentX(); + var34.setVisible(false); + SpaceWar.SpacePanel var38 = new SpaceWar.SpacePanel(); + java.awt.Color var39 = var38.getBackground(); + var34.setForeground(var39); + var28.setBackground(var39); + var8.setForeground(var39); + int var43 = var8.getWidth(); + javax.swing.plaf.PanelUI var44 = var8.getUI(); + var0.setUI(var44); + java.awt.event.InputMethodListener[] var46 = var0.getInputMethodListeners(); + boolean var47 = var0.getInheritsPopupMenu(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var23); + + // Regression assertion (captures the current behavior of the code) + assertNull(var25); + + // Regression assertion (captures the current behavior of the code) + assertNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var29 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var35 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var39); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var43 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var44); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var46); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var47 == false); + + } + + public void test32() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test32"); + + + SpaceWar.Text var4 = new SpaceWar.Text(408.3256835490439d, 396.44637138944637d, 0L, "SpaceWar.SpacePanel[,499,2,499x500,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + + } + + public void test33() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test33"); + + + SpaceWar.Player var0 = new SpaceWar.Player(); + var0.increasePower(25); + int var3 = var0.getScore(); + var0.setRigth(true); + var0.loseLife(); + var0.increasePower(3); + var0.setDown(false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == 0); + + } + + public void test34() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test34"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + var0.list(); + float var6 = var0.getAlignmentY(); + boolean var7 = var0.isOpaque(); + var0.resetKeyboardActions(); + boolean var9 = var0.isFocusTraversalPolicyProvider(); + java.awt.im.InputContext var10 = var0.getInputContext(); + var0.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", (short)100, (short)1); + var0.layout(); + SpaceWar.SpacePanel var16 = new SpaceWar.SpacePanel(); + float var17 = var16.getAlignmentX(); + var16.setVisible(false); + var16.nextFocus(); + var16.setSize(500, 500); + int var24 = var0.getComponentZOrder((java.awt.Component)var16); + SpaceWar.SpacePanel var25 = new SpaceWar.SpacePanel(); + float var26 = var25.getAlignmentX(); + var25.setVisible(false); + boolean var29 = var25.isDoubleBuffered(); + var25.list(); + float var31 = var25.getAlignmentY(); + java.awt.Insets var32 = var25.getInsets(); + SpaceWar.SpacePanel var33 = new SpaceWar.SpacePanel(); + float var34 = var33.getAlignmentX(); + var33.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var39 = new SpaceWar.SpacePanel(); + float var40 = var39.getAlignmentX(); + var39.setVisible(false); + java.awt.Dimension var43 = var39.getPreferredSize(); + var33.setMaximumSize(var43); + java.awt.Dimension var45 = var25.getSize(var43); + var25.setFocusTraversalKeysEnabled(false); + SpaceWar.SpacePanel var48 = new SpaceWar.SpacePanel(); + var48.setName(""); + java.awt.Toolkit var51 = var48.getToolkit(); + var48.setEnabled(false); + var48.removeNotify(); + boolean var55 = var48.isDisplayable(); + SpaceWar.SpacePanel var56 = new SpaceWar.SpacePanel(); + java.awt.Color var57 = var56.getBackground(); + var56.repaint(); + var56.setRequestFocusEnabled(false); + var56.reshape(100, 0, 100, 0); + var56.requestFocus(); + java.awt.Rectangle var67 = var56.getVisibleRect(); + java.awt.Rectangle var68 = var56.getBounds(); + java.awt.im.InputMethodRequests var69 = var56.getInputMethodRequests(); + boolean var70 = var56.requestFocusInWindow(); + java.awt.Point var72 = var56.getMousePosition(false); + var56.setDebugGraphicsOptions(1); + java.awt.Graphics var75 = var56.getGraphics(); + var48.paintAll(var75); + var25.printAll(var75); + var16.paintAll(var75); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var24 == (-1)); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var29 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var31 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var32); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var34 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var40 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var43); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var45); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var51); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var55 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var57); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var67); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var68); + + // Regression assertion (captures the current behavior of the code) + assertNull(var69); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var70 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var72); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var75); + + } + + public void test35() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test35"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + var0.setRequestFocusEnabled(false); + var0.setIgnoreRepaint(false); + java.lang.String var7 = var0.toString(); + java.awt.Color var8 = var0.getBackground(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.setVisible(false); + java.awt.Dimension var13 = var9.getPreferredSize(); + java.awt.Toolkit var14 = var9.getToolkit(); + java.awt.Toolkit var15 = var9.getToolkit(); + SpaceWar.Player var16 = new SpaceWar.Player(); + var16.increasePower(25); + int var19 = var16.getScore(); + var16.setRigth(true); + var16.loseLife(); + var0.putClientProperty((java.lang.Object)var9, (java.lang.Object)var16); + SpaceWar.SpacePanel var24 = new SpaceWar.SpacePanel(); + float var25 = var24.getAlignmentX(); + var24.setVisible(false); + var24.setInheritsPopupMenu(false); + var24.move(10, 10); + var24.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + java.awt.event.KeyListener[] var37 = var24.getKeyListeners(); + var9.removeKeyListener((java.awt.event.KeyListener)var24); + java.awt.Dimension var39 = var24.minimumSize(); + java.awt.LayoutManager var40 = var24.getLayout(); + var24.setDebugGraphicsOptions(505); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var7 + "' != '" + "SpaceWar.SpacePanel[,0,0,0var7,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"+ "'", var7.equals("SpaceWar.SpacePanel[,0,0,0var7,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]")); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var37); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var39); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var40); + + } + + public void test36() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test36"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + boolean var2 = var0.hasFocus(); + SpaceWar.SpacePanel var3 = new SpaceWar.SpacePanel(); + float var4 = var3.getAlignmentX(); + var3.setVisible(false); + var3.nextFocus(); + var3.reshape((-1), 1, (-1), 10); + var3.disable(); + java.awt.LayoutManager var14 = var3.getLayout(); + var3.setVisible(false); + var0.remove((java.awt.Component)var3); + java.awt.Container var18 = var3.getFocusCycleRootAncestor(); + var3.setInheritsPopupMenu(false); + java.awt.Dimension var21 = var3.getMaximumSize(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var2 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var21); + + } + + public void test37() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test37"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + java.awt.Dimension var4 = var0.getPreferredSize(); + boolean var5 = var0.getVerifyInputWhenFocusTarget(); + java.awt.Component var8 = var0.findComponentAt(10, 1); + boolean var9 = var0.requestDefaultFocus(); + var0.setVerifyInputWhenFocusTarget(true); + int var14 = var0.getBaseline(0, 399); + boolean var15 = var0.isFocusTraversalPolicySet(); + SpaceWar.SpacePanel var16 = new SpaceWar.SpacePanel(); + float var17 = var16.getAlignmentX(); + var16.setVisible(false); + boolean var20 = var16.isDoubleBuffered(); + java.awt.dnd.DropTarget var21 = var16.getDropTarget(); + var16.show(false); + boolean var24 = var16.isPaintingForPrint(); + SpaceWar.SpacePanel var25 = new SpaceWar.SpacePanel(); + float var26 = var25.getAlignmentX(); + var25.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var31 = var25.getMouseListeners(); + int var32 = var25.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var33 = var25.getInputMethodRequests(); + var16.addKeyListener((java.awt.event.KeyListener)var25); + boolean var35 = var16.isDisplayable(); + java.awt.Insets var36 = var16.getInsets(); + SpaceWar.SpacePanel var37 = new SpaceWar.SpacePanel(); + float var38 = var37.getAlignmentX(); + var37.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var43 = new SpaceWar.SpacePanel(); + float var44 = var43.getAlignmentX(); + var43.setVisible(false); + SpaceWar.SpacePanel var47 = new SpaceWar.SpacePanel(); + java.awt.Color var48 = var47.getBackground(); + var43.setForeground(var48); + var37.setBackground(var48); + java.awt.Point var51 = var37.location(); + java.awt.Point var52 = var16.getLocation(var51); + SpaceWar.SpacePanel var53 = new SpaceWar.SpacePanel(); + float var54 = var53.getAlignmentX(); + var53.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var59 = new SpaceWar.SpacePanel(); + float var60 = var59.getAlignmentX(); + var59.setVisible(false); + java.awt.Dimension var63 = var59.getPreferredSize(); + var53.setMaximumSize(var63); + boolean var65 = var53.getVerifyInputWhenFocusTarget(); + java.awt.Toolkit var66 = var53.getToolkit(); + java.awt.Dimension var67 = var53.minimumSize(); + var16.setNextFocusableComponent((java.awt.Component)var53); + SpaceWar.Bullet var72 = new SpaceWar.Bullet(1.0d, 10, 400); + double var73 = var72.getR(); + var0.add((java.awt.Component)var16, (java.lang.Object)var72); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var4); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == (-1)); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var21); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var24 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var31); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var32 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var33); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var35 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var36); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var38 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var44 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var48); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var51); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var52); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var54 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var60 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var63); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var65 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var66); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var67); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var73 == 5.0d); + + } + + public void test38() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test38"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + java.awt.Dimension var4 = var0.getPreferredSize(); + java.awt.Toolkit var5 = var0.getToolkit(); + boolean var6 = var0.isFocusable(); + boolean var7 = var0.isFocusTraversalPolicyProvider(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + SpaceWar.SpacePanel var12 = new SpaceWar.SpacePanel(); + java.awt.Color var13 = var12.getBackground(); + var8.setForeground(var13); + SpaceWar.SpacePanel var15 = new SpaceWar.SpacePanel(); + float var16 = var15.getAlignmentX(); + var15.setVisible(false); + boolean var19 = var15.isDoubleBuffered(); + java.awt.dnd.DropTarget var20 = var15.getDropTarget(); + var15.show(false); + java.awt.Rectangle var23 = var15.getVisibleRect(); + var8.repaint(var23); + java.awt.FocusTraversalPolicy var25 = var8.getFocusTraversalPolicy(); + SpaceWar.SpacePanel var26 = new SpaceWar.SpacePanel(); + float var27 = var26.getAlignmentX(); + var26.firePropertyChange("", (-1), 1); + boolean var32 = var26.isFocusOwner(); + SpaceWar.SpacePanel var34 = new SpaceWar.SpacePanel(); + float var35 = var34.getAlignmentX(); + var34.setVisible(false); + java.awt.Dimension var38 = var34.getPreferredSize(); + java.awt.Toolkit var39 = var34.getToolkit(); + SpaceWar.SpacePanel var40 = new SpaceWar.SpacePanel(); + var40.setName(""); + int var43 = var40.getX(); + SpaceWar.SpacePanel var44 = new SpaceWar.SpacePanel(); + float var45 = var44.getAlignmentX(); + var44.setVisible(false); + var44.nextFocus(); + SpaceWar.SpacePanel var49 = new SpaceWar.SpacePanel(); + float var50 = var49.getAlignmentX(); + var49.setVisible(false); + SpaceWar.SpacePanel var53 = new SpaceWar.SpacePanel(); + java.awt.Color var54 = var53.getBackground(); + var49.setForeground(var54); + var44.setBackground(var54); + var40.setBackground(var54); + var34.setForeground(var54); + var26.putClientProperty((java.lang.Object)(byte)100, (java.lang.Object)var54); + var8.setBackground(var54); + SpaceWar.SpacePanel var61 = new SpaceWar.SpacePanel(); + float var62 = var61.getAlignmentX(); + var61.setVisible(false); + boolean var65 = var61.isDoubleBuffered(); + java.awt.dnd.DropTarget var66 = var61.getDropTarget(); + var61.show(false); + boolean var69 = var61.isPaintingForPrint(); + SpaceWar.SpacePanel var70 = new SpaceWar.SpacePanel(); + float var71 = var70.getAlignmentX(); + SpaceWar.SpacePanel var72 = new SpaceWar.SpacePanel(); + float var73 = var72.getAlignmentX(); + var72.setVisible(false); + java.awt.Dimension var76 = var72.getPreferredSize(); + boolean var77 = var72.getVerifyInputWhenFocusTarget(); + java.awt.Component var80 = var72.findComponentAt(10, 1); + var70.addKeyListener((java.awt.event.KeyListener)var72); + java.awt.Dimension var82 = var72.getMinimumSize(); + var61.setMinimumSize(var82); + java.awt.Dimension var84 = var8.getSize(var82); + var8.doLayout(); + java.awt.Component var86 = var0.add((java.awt.Component)var8); + boolean var87 = var8.isPaintingForPrint(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var4); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var23); + + // Regression assertion (captures the current behavior of the code) + assertNull(var25); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var32 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var35 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var38); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var39); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var43 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var45 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var50 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var54); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var62 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var65 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var66); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var69 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var71 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var73 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var76); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var77 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var80); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var82); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var84); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var86); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var87 == false); + + } + + public void test39() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test39"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + var0.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + java.awt.Font var5 = var0.getFont(); + java.awt.Cursor var6 = var0.getCursor(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + } + + public void test40() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test40"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.requestFocus(); + boolean var6 = var0.isBackgroundSet(); + SpaceWar.SpacePanel var7 = new SpaceWar.SpacePanel(); + java.awt.Color var8 = var7.getBackground(); + var7.repaint(); + var7.setRequestFocusEnabled(false); + var7.reshape(100, 0, 100, 0); + SpaceWar.SpacePanel var17 = new SpaceWar.SpacePanel(); + float var18 = var17.getAlignmentX(); + var17.setVisible(false); + var17.setInheritsPopupMenu(false); + boolean var23 = var17.isDoubleBuffered(); + SpaceWar.SpacePanel var24 = new SpaceWar.SpacePanel(); + float var25 = var24.getAlignmentX(); + var24.setVisible(false); + var24.nextFocus(); + var24.reshape((-1), 1, (-1), 10); + var24.disable(); + java.awt.LayoutManager var35 = var24.getLayout(); + var17.setLayout(var35); + var0.add((java.awt.Component)var7, (java.lang.Object)var35); + SpaceWar.SpacePanel var38 = new SpaceWar.SpacePanel(); + float var39 = var38.getAlignmentX(); + var38.setVisible(false); + java.awt.Dimension var42 = var38.getPreferredSize(); + java.awt.Toolkit var43 = var38.getToolkit(); + boolean var44 = var38.isFocusable(); + javax.swing.KeyStroke[] var45 = var38.getRegisteredKeyStrokes(); + SpaceWar.SpacePanel var46 = new SpaceWar.SpacePanel(); + float var47 = var46.getAlignmentX(); + SpaceWar.SpacePanel var48 = new SpaceWar.SpacePanel(); + float var49 = var48.getAlignmentX(); + var48.setVisible(false); + java.awt.Dimension var52 = var48.getPreferredSize(); + boolean var53 = var48.getVerifyInputWhenFocusTarget(); + java.awt.Component var56 = var48.findComponentAt(10, 1); + var46.addKeyListener((java.awt.event.KeyListener)var48); + var48.repaint(100, (-1), (-1), 1); + boolean var63 = var38.isAncestorOf((java.awt.Component)var48); + var38.setFocusable(false); + boolean var66 = var7.isAncestorOf((java.awt.Component)var38); + java.awt.event.HierarchyListener[] var67 = var38.getHierarchyListeners(); + java.awt.Dimension var68 = var38.minimumSize(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var35); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var39 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var42); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var43); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var44 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var45); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var47 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var49 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var52); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var53 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var56); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var63 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var66 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var67); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var68); + + } + + public void test41() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test41"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + var0.list(); + float var6 = var0.getAlignmentY(); + java.awt.event.ComponentListener[] var7 = var0.getComponentListeners(); + java.awt.Component var8 = var0.getNextFocusableComponent(); + boolean var9 = var0.isManagingFocus(); + javax.swing.border.Border var10 = var0.getBorder(); + java.lang.Object var11 = var0.getTreeLock(); + var0.show(); + boolean var13 = var0.isOpaque(); + boolean var14 = var0.isFocusTraversable(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == true); + + } + + public void test42() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test42"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + var0.list(); + float var6 = var0.getAlignmentY(); + java.awt.Dimension var7 = var0.getPreferredSize(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + boolean var10 = var8.hasFocus(); + boolean var11 = var8.isPreferredSizeSet(); + var8.firePropertyChange("", (short)1, (short)0); + boolean var16 = var8.isMaximumSizeSet(); + java.awt.peer.ComponentPeer var17 = var8.getPeer(); + java.awt.ComponentOrientation var18 = var8.getComponentOrientation(); + var8.setToolTipText("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=8,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + boolean var21 = var8.requestFocusInWindow(); + boolean var22 = var0.isFocusCycleRoot((java.awt.Container)var8); + var8.setEnabled(true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var22 == false); + + } + + public void test43() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test43"); + + + SpaceWar.Player var0 = new SpaceWar.Player(); + int var1 = var0.getR(); + var0.setUp(false); + int var4 = var0.getLives(); + var0.setScore(0); + int var7 = var0.getPowerLevel(); + int var8 = var0.getR(); + var0.setUp(false); + var0.setUp(true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 25); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 3); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 25); + + } + + public void test44() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test44"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var1 = new SpaceWar.SpacePanel(); + java.awt.Color var2 = var1.getBackground(); + SpaceWar.SpacePanel var3 = new SpaceWar.SpacePanel(); + float var4 = var3.getAlignmentX(); + var3.setVisible(false); + var3.nextFocus(); + var3.updateUI(); + var3.enableInputMethods(true); + var0.add((java.awt.Component)var1, (java.lang.Object)true); + java.awt.Dimension var12 = var1.getPreferredSize(); + var1.move(100, 10); + java.awt.Graphics var16 = var1.getGraphics(); + boolean var17 = var1.getInheritsPopupMenu(); + javax.swing.event.AncestorListener[] var18 = var1.getAncestorListeners(); + var1.transferFocusUpCycle(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var2); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var18); + + } + + public void test45() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test45"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + java.awt.Dimension var4 = var0.getPreferredSize(); + boolean var5 = var0.getVerifyInputWhenFocusTarget(); + java.awt.Component var8 = var0.findComponentAt(10, 1); + boolean var9 = var0.requestDefaultFocus(); + var0.firePropertyChange("hi!", false, true); + javax.swing.ActionMap var14 = var0.getActionMap(); + var0.setDebugGraphicsOptions(10); + boolean var17 = var0.isShowing(); + SpaceWar.SpacePanel var18 = new SpaceWar.SpacePanel(); + float var19 = var18.getAlignmentX(); + boolean var20 = var18.hasFocus(); + SpaceWar.SpacePanel var21 = new SpaceWar.SpacePanel(); + float var22 = var21.getAlignmentX(); + var21.setVisible(false); + var21.nextFocus(); + var21.reshape((-1), 1, (-1), 10); + var21.disable(); + java.awt.LayoutManager var32 = var21.getLayout(); + var21.setVisible(false); + var18.remove((java.awt.Component)var21); + var21.repaint(); + boolean var37 = var21.hasFocus(); + SpaceWar.SpacePanel var38 = new SpaceWar.SpacePanel(); + float var39 = var38.getAlignmentX(); + var38.firePropertyChange("", (-1), 1); + boolean var44 = var38.isFocusTraversalPolicyProvider(); + var0.putClientProperty((java.lang.Object)var21, (java.lang.Object)var44); + java.awt.event.HierarchyBoundsListener[] var46 = var0.getHierarchyBoundsListeners(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var4); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var22 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var32); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var39 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var44 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var46); + + } + + public void test46() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test46"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + var0.list(); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + float var7 = var6.getAlignmentX(); + var6.setVisible(false); + boolean var10 = var6.isDoubleBuffered(); + java.awt.dnd.DropTarget var11 = var6.getDropTarget(); + var6.show(false); + java.awt.Rectangle var14 = var6.getVisibleRect(); + java.awt.Rectangle var15 = var0.getBounds(var14); + javax.swing.JToolTip var16 = var0.createToolTip(); + var0.firePropertyChange("", false, false); + var0.setFocusTraversalKeysEnabled(false); + boolean var23 = var0.isValid(); + var0.setFocusCycleRoot(true); + int var26 = var0.getComponentCount(); + java.awt.Point var28 = var0.getMousePosition(true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var28); + + } + + public void test47() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test47"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.setInheritsPopupMenu(false); + var0.setFocusTraversalPolicyProvider(true); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + boolean var12 = var8.isDoubleBuffered(); + var8.list(); + SpaceWar.SpacePanel var14 = new SpaceWar.SpacePanel(); + float var15 = var14.getAlignmentX(); + var14.setVisible(false); + boolean var18 = var14.isDoubleBuffered(); + java.awt.dnd.DropTarget var19 = var14.getDropTarget(); + var14.show(false); + java.awt.Rectangle var22 = var14.getVisibleRect(); + java.awt.Rectangle var23 = var8.getBounds(var22); + javax.swing.JToolTip var24 = var8.createToolTip(); + var0.removeKeyListener((java.awt.event.KeyListener)var8); + java.awt.Rectangle var26 = var0.getVisibleRect(); + int var27 = var0.getDebugGraphicsOptions(); + java.awt.event.HierarchyListener[] var28 = var0.getHierarchyListeners(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var23); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var28); + + } + + public void test48() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test48"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + java.awt.im.InputMethodRequests var3 = var0.getInputMethodRequests(); + int var4 = var0.countComponents(); + java.awt.event.ComponentListener[] var5 = var0.getComponentListeners(); + var0.removeNotify(); + javax.swing.InputMap var7 = var0.getInputMap(); + int var8 = var0.getDebugGraphicsOptions(); + java.awt.Rectangle var9 = var0.getBounds(); + SpaceWar.SpacePanel var10 = new SpaceWar.SpacePanel(); + float var11 = var10.getAlignmentX(); + var10.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var16 = var10.getUI(); + var10.disable(); + java.awt.im.InputContext var18 = var10.getInputContext(); + var10.enableInputMethods(false); + SpaceWar.SpacePanel var21 = new SpaceWar.SpacePanel(); + var21.setName(""); + var21.enable(true); + var21.enable(); + java.awt.Point var27 = var21.location(); + var21.repaint(0, 3, (-1), 1); + var21.setBounds(25, 100, 1, 0); + java.awt.Insets var38 = var21.getInsets(); + java.awt.peer.ComponentPeer var39 = var21.getPeer(); + javax.swing.KeyStroke[] var40 = var21.getRegisteredKeyStrokes(); + boolean var41 = var21.getAutoscrolls(); + SpaceWar.SpacePanel var42 = new SpaceWar.SpacePanel(); + java.awt.Color var43 = var42.getBackground(); + var42.repaint(); + var42.setRequestFocusEnabled(false); + var42.reshape(100, 0, 100, 0); + var42.requestFocus(); + java.awt.Rectangle var53 = var42.getVisibleRect(); + java.awt.Rectangle var54 = var42.getBounds(); + java.awt.im.InputMethodRequests var55 = var42.getInputMethodRequests(); + boolean var56 = var42.requestFocusInWindow(); + java.awt.Point var58 = var42.getMousePosition(false); + var42.setDebugGraphicsOptions(1); + java.awt.Graphics var61 = var42.getGraphics(); + var21.paintComponents(var61); + var10.paintComponents(var61); + var0.paintAll(var61); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var9); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var27); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var38); + + // Regression assertion (captures the current behavior of the code) + assertNull(var39); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var40); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var41 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var43); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var53); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var54); + + // Regression assertion (captures the current behavior of the code) + assertNull(var55); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var56 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var58); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var61); + + } + + public void test49() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test49"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.updateUI(); + var0.enableInputMethods(true); + java.awt.Point var9 = var0.getMousePosition(false); + java.awt.Point var10 = var0.getMousePosition(); + var0.revalidate(); + java.awt.Insets var12 = var0.getInsets(); + SpaceWar.SpacePanel var13 = new SpaceWar.SpacePanel(); + float var14 = var13.getAlignmentX(); + var13.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var19 = var13.getUI(); + java.awt.im.InputMethodRequests var20 = var13.getInputMethodRequests(); + SpaceWar.SpacePanel var21 = new SpaceWar.SpacePanel(); + float var22 = var21.getAlignmentX(); + var21.setVisible(false); + var21.nextFocus(); + var21.updateUI(); + var21.enableInputMethods(true); + var21.setSize((-1), 1); + SpaceWar.SpacePanel var32 = new SpaceWar.SpacePanel(); + var32.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var13.add((java.awt.Component)var21, (java.lang.Object)"SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + java.awt.event.KeyListener[] var38 = var13.getKeyListeners(); + var13.repaint(3, 1, 25, 0); + SpaceWar.SpacePanel var44 = new SpaceWar.SpacePanel(); + float var45 = var44.getAlignmentX(); + var44.setVisible(false); + java.awt.Dimension var48 = var44.getPreferredSize(); + boolean var49 = var44.getVerifyInputWhenFocusTarget(); + java.awt.Dimension var50 = var44.size(); + var13.resize(var50); + var0.setPreferredSize(var50); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNull(var9); + + // Regression assertion (captures the current behavior of the code) + assertNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var22 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var38); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var45 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var48); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var49 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var50); + + } + + public void test50() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test50"); + + + SpaceWar.Player var0 = new SpaceWar.Player(); + int var1 = var0.getR(); + var0.setUp(false); + int var4 = var0.getLives(); + var0.setLeft(true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 25); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 3); + + } + + public void test51() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test51"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.reshape((-1), 1, (-1), 10); + var0.disable(); + java.awt.LayoutManager var11 = var0.getLayout(); + boolean var14 = var0.contains((-1), 0); + SpaceWar.SpacePanel var15 = new SpaceWar.SpacePanel(); + float var16 = var15.getAlignmentX(); + var15.setVisible(false); + var15.nextFocus(); + var15.updateUI(); + var15.enableInputMethods(true); + var15.setSize((-1), 1); + java.awt.Component var26 = var0.add((java.awt.Component)var15); + SpaceWar.SpacePanel var27 = new SpaceWar.SpacePanel(); + float var28 = var27.getAlignmentX(); + var27.setVisible(false); + var27.nextFocus(); + var27.updateUI(); + var27.enableInputMethods(true); + java.lang.String var35 = var27.toString(); + java.awt.FocusTraversalPolicy var36 = var27.getFocusTraversalPolicy(); + var15.removeKeyListener((java.awt.event.KeyListener)var27); + java.awt.peer.ComponentPeer var38 = var27.getPeer(); + boolean var39 = var27.getAutoscrolls(); + var27.removeAll(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var28 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var35 + "' != '" + "SpaceWar.SpacePanel[,0,0,0var35,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"+ "'", var35.equals("SpaceWar.SpacePanel[,0,0,0var35,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]")); + + // Regression assertion (captures the current behavior of the code) + assertNull(var36); + + // Regression assertion (captures the current behavior of the code) + assertNull(var38); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var39 == false); + + } + + public void test52() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test52"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.reshape((-1), 1, (-1), 10); + java.util.Set var11 = var0.getFocusTraversalKeys(3); + var0.firePropertyChange("SpaceWar.SpacePanel[,-1,1,-1x10,invalid,hidden,disabled,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", '4', ' '); + javax.swing.event.AncestorListener[] var16 = var0.getAncestorListeners(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + } + + public void test53() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test53"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.setInheritsPopupMenu(false); + var0.setFocusTraversalPolicyProvider(true); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + java.awt.Color var9 = var8.getBackground(); + var8.repaint(); + java.awt.im.InputMethodRequests var11 = var8.getInputMethodRequests(); + java.awt.GraphicsConfiguration var12 = var8.getGraphicsConfiguration(); + java.awt.Component var13 = var0.add((java.awt.Component)var8); + var0.layout(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var9); + + // Regression assertion (captures the current behavior of the code) + assertNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var13); + + } + + public void test54() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test54"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + var0.enable(false); + int var7 = var0.getWidth(); + boolean var8 = var0.isMinimumSizeSet(); + java.awt.image.BufferedImage var10 = var0.loadImg("SpaceWar.SpacePanel[,100,0,100x0,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var10); + + } + + public void test55() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test55"); + + + SpaceWar.PowerUp var3 = new SpaceWar.PowerUp(10, 10.0d, 10.0d); + double var4 = var3.getY(); + boolean var5 = var3.update(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 10.0d); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == false); + + } + + public void test56() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test56"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + java.awt.im.InputMethodRequests var3 = var0.getInputMethodRequests(); + int var4 = var0.countComponents(); + java.awt.Dimension var5 = var0.getSize(); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + var6.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + javax.swing.plaf.PanelUI var11 = var6.getUI(); + java.awt.Color var12 = var6.getBackground(); + var0.setBackground(var12); + SpaceWar.SpacePanel var14 = new SpaceWar.SpacePanel(); + float var15 = var14.getAlignmentX(); + var14.setVisible(false); + var14.nextFocus(); + var14.reshape((-1), 1, (-1), 10); + var14.disable(); + java.awt.LayoutManager var25 = var14.getLayout(); + java.awt.Container var26 = var14.getParent(); + boolean var27 = var14.isOptimizedDrawingEnabled(); + var14.grabFocus(); + int var29 = var14.getHeight(); + var0.addKeyListener((java.awt.event.KeyListener)var14); + java.lang.String var31 = var14.toString(); + SpaceWar.SpacePanel var32 = new SpaceWar.SpacePanel(); + float var33 = var32.getAlignmentX(); + var32.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var38 = new SpaceWar.SpacePanel(); + float var39 = var38.getAlignmentX(); + var38.setVisible(false); + java.awt.Dimension var42 = var38.getPreferredSize(); + var32.setMaximumSize(var42); + boolean var44 = var32.getVerifyInputWhenFocusTarget(); + javax.accessibility.AccessibleContext var45 = var32.getAccessibleContext(); + boolean var46 = var32.isDoubleBuffered(); + boolean var47 = var32.getAutoscrolls(); + var32.repaint(10L, (-1), 25, (-1), 100); + var32.updateUI(); + // The following exception was thrown during execution. + // This behavior will recorded for regression testing. + try { + java.awt.Component var56 = var14.add((java.awt.Component)var32, 3); + fail("Expected exception of type java.lang.IllegalArgumentException"); + } catch (java.lang.IllegalArgumentException e) { + // Expected exception. + } + + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var25); + + // Regression assertion (captures the current behavior of the code) + assertNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var29 == 10); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var31 + "' != '" + "SpaceWar.SpacePanel[,-1,1,-1x10,invalid,hidden,disabled,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"+ "'", var31.equals("SpaceWar.SpacePanel[,-1,1,-1x10,invalid,hidden,disabled,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]")); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var33 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var39 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var42); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var44 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var45); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var46 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var47 == false); + + } + + public void test57() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test57"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + javax.swing.plaf.PanelUI var3 = var0.getUI(); + var0.transferFocusDownCycle(); + java.lang.String var5 = var0.getToolTipText(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + } + + public void test58() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test58"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var6 = var0.getMouseListeners(); + java.awt.Dimension var7 = var0.getPreferredSize(); + java.util.Locale var8 = var0.getLocale(); + var0.setFocusable(true); + var0.paintImmediately((-1), 10, 100, 25); + var0.hide(); + java.awt.Point var18 = var0.getMousePosition(true); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + java.awt.Color var20 = var19.getBackground(); + var19.repaint(); + java.awt.im.InputMethodRequests var22 = var19.getInputMethodRequests(); + var19.setDoubleBuffered(true); + var19.setInheritsPopupMenu(false); + boolean var27 = var19.isFocusTraversalPolicySet(); + var19.transferFocusUpCycle(); + java.awt.image.BufferedImage var30 = var19.loadImg("SpaceWar.SpacePanel[,0,0,0x0,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + SpaceWar.SpacePanel var31 = new SpaceWar.SpacePanel(); + float var32 = var31.getAlignmentX(); + var31.setVisible(false); + var31.setInheritsPopupMenu(false); + boolean var37 = var31.isDoubleBuffered(); + boolean var38 = var31.isMinimumSizeSet(); + java.awt.Font var39 = var31.getFont(); + java.awt.FontMetrics var40 = var19.getFontMetrics(var39); + var0.setFont(var39); + java.lang.String var42 = var0.getToolTipText(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var30); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var32 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var38 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var39); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var40); + + // Regression assertion (captures the current behavior of the code) + assertNull(var42); + + } + + public void test59() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test59"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + var0.list(); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + float var7 = var6.getAlignmentX(); + var6.setVisible(false); + boolean var10 = var6.isDoubleBuffered(); + java.awt.dnd.DropTarget var11 = var6.getDropTarget(); + var6.show(false); + java.awt.Rectangle var14 = var6.getVisibleRect(); + java.awt.Rectangle var15 = var0.getBounds(var14); + javax.swing.JToolTip var16 = var0.createToolTip(); + var0.firePropertyChange("", false, false); + var0.setFocusTraversalKeysEnabled(false); + boolean var23 = var0.isValid(); + var0.setFocusCycleRoot(true); + java.awt.event.KeyListener[] var26 = var0.getKeyListeners(); + SpaceWar.SpacePanel var28 = new SpaceWar.SpacePanel(); + java.awt.Color var29 = var28.getBackground(); + var28.repaint(); + java.awt.im.InputMethodRequests var31 = var28.getInputMethodRequests(); + var28.setDoubleBuffered(true); + var28.setInheritsPopupMenu(false); + javax.swing.plaf.PanelUI var36 = var28.getUI(); + java.util.Set var38 = var28.getFocusTraversalKeys(3); + // The following exception was thrown during execution. + // This behavior will recorded for regression testing. + try { + var0.setFocusTraversalKeys(100, var38); + fail("Expected exception of type java.lang.IllegalArgumentException"); + } catch (java.lang.IllegalArgumentException e) { + // Expected exception. + } + + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var29); + + // Regression assertion (captures the current behavior of the code) + assertNull(var31); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var36); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var38); + + } + + public void test60() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test60"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + var0.show(false); + java.awt.event.MouseWheelListener[] var8 = var0.getMouseWheelListeners(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.setVisible(false); + SpaceWar.SpacePanel var13 = new SpaceWar.SpacePanel(); + java.awt.Color var14 = var13.getBackground(); + var9.setForeground(var14); + SpaceWar.SpacePanel var16 = new SpaceWar.SpacePanel(); + float var17 = var16.getAlignmentX(); + var16.setVisible(false); + boolean var20 = var16.isDoubleBuffered(); + java.awt.dnd.DropTarget var21 = var16.getDropTarget(); + var16.show(false); + java.awt.Rectangle var24 = var16.getVisibleRect(); + var9.repaint(var24); + SpaceWar.SpacePanel var26 = new SpaceWar.SpacePanel(); + float var27 = var26.getAlignmentX(); + var26.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var32 = var26.getMouseListeners(); + java.awt.Dimension var33 = var26.getPreferredSize(); + java.util.Locale var34 = var26.getLocale(); + var9.setLocale(var34); + java.util.Locale var36 = var9.getLocale(); + var0.setLocale(var36); + float var38 = var0.getAlignmentX(); + var0.transferFocusBackward(); + SpaceWar.SpacePanel var40 = new SpaceWar.SpacePanel(); + float var41 = var40.getAlignmentX(); + var40.setVisible(false); + var40.setInheritsPopupMenu(false); + var40.move(10, 10); + var40.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var40.removeAll(); + var40.setInheritsPopupMenu(true); + boolean var58 = var40.inside(0, 500); + SpaceWar.SpacePanel var59 = new SpaceWar.SpacePanel(); + var59.setName(""); + java.awt.Toolkit var62 = var59.getToolkit(); + var59.setEnabled(false); + var59.removeNotify(); + boolean var66 = var59.isDisplayable(); + SpaceWar.SpacePanel var67 = new SpaceWar.SpacePanel(); + java.awt.Color var68 = var67.getBackground(); + var67.repaint(); + var67.setRequestFocusEnabled(false); + var67.reshape(100, 0, 100, 0); + var67.requestFocus(); + java.awt.Rectangle var78 = var67.getVisibleRect(); + java.awt.Rectangle var79 = var67.getBounds(); + java.awt.im.InputMethodRequests var80 = var67.getInputMethodRequests(); + boolean var81 = var67.requestFocusInWindow(); + java.awt.Point var83 = var67.getMousePosition(false); + var67.setDebugGraphicsOptions(1); + java.awt.Graphics var86 = var67.getGraphics(); + var59.paintAll(var86); + var40.printAll(var86); + var0.paint(var86); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var21); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var32); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var33); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var34); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var36); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var38 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var41 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var58 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var62); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var66 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var68); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var78); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var79); + + // Regression assertion (captures the current behavior of the code) + assertNull(var80); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var81 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var83); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var86); + + } + + public void test61() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test61"); + + + SpaceWar.Player var0 = new SpaceWar.Player(); + var0.increasePower(25); + int var3 = var0.getR(); + int var4 = var0.getScore(); + var0.loseLife(); + boolean var6 = var0.isRecovering(); + var0.setFiring(false); + var0.increasePower(25); + int var11 = var0.getRequiredPower(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == 25); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == 2); + + } + + public void test62() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test62"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + boolean var6 = var0.isFocusCycleRoot(); + SpaceWar.SpacePanel var7 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + java.awt.Color var9 = var8.getBackground(); + SpaceWar.SpacePanel var10 = new SpaceWar.SpacePanel(); + float var11 = var10.getAlignmentX(); + var10.setVisible(false); + var10.nextFocus(); + var10.updateUI(); + var10.enableInputMethods(true); + var7.add((java.awt.Component)var8, (java.lang.Object)true); + java.awt.Dimension var19 = var8.getPreferredSize(); + var0.setSize(var19); + var0.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", (-1), 10); + SpaceWar.SpacePanel var25 = new SpaceWar.SpacePanel(); + float var26 = var25.getAlignmentX(); + var25.setVisible(false); + var25.nextFocus(); + var25.repaint(1L); + SpaceWar.SpacePanel var32 = new SpaceWar.SpacePanel(); + float var33 = var32.getAlignmentX(); + var32.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var38 = new SpaceWar.SpacePanel(); + float var39 = var38.getAlignmentX(); + var38.setVisible(false); + java.awt.Dimension var42 = var38.getPreferredSize(); + var32.setMaximumSize(var42); + var25.setPreferredSize(var42); + var0.setSize(var42); + javax.swing.plaf.PanelUI var46 = var0.getUI(); + var0.layout(); + boolean var48 = var0.isEnabled(); + var0.firePropertyChange("SpaceWar.SpacePanel[,499,2,499x500,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", (short)10, (short)(-1)); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var9); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var33 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var39 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var42); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var46); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var48 == true); + + } + + public void test63() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test63"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + SpaceWar.SpacePanel var5 = new SpaceWar.SpacePanel(); + float var6 = var5.getAlignmentX(); + var5.setVisible(false); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + java.awt.Color var10 = var9.getBackground(); + var5.setForeground(var10); + var0.setBackground(var10); + javax.swing.plaf.PanelUI var13 = var0.getUI(); + boolean var14 = var0.isFocusTraversalPolicySet(); + java.awt.Dimension var15 = var0.getMinimumSize(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + } + + public void test64() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test64"); + + + SpaceWar.Player var0 = new SpaceWar.Player(); + boolean var1 = var0.isRecovering(); + var0.loseLife(); + int var3 = var0.getLives(); + int var4 = var0.getRequiredPower(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == 2); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 1); + + } + + public void test65() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test65"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + float var7 = var6.getAlignmentX(); + var6.setVisible(false); + SpaceWar.SpacePanel var10 = new SpaceWar.SpacePanel(); + java.awt.Color var11 = var10.getBackground(); + var6.setForeground(var11); + var0.setBackground(var11); + var0.grabFocus(); + SpaceWar.SpacePanel var15 = new SpaceWar.SpacePanel(); + float var16 = var15.getAlignmentX(); + var15.setVisible(false); + boolean var19 = var15.isDoubleBuffered(); + java.awt.dnd.DropTarget var20 = var15.getDropTarget(); + boolean var21 = var15.isFocusCycleRoot(); + SpaceWar.SpacePanel var22 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var23 = new SpaceWar.SpacePanel(); + java.awt.Color var24 = var23.getBackground(); + SpaceWar.SpacePanel var25 = new SpaceWar.SpacePanel(); + float var26 = var25.getAlignmentX(); + var25.setVisible(false); + var25.nextFocus(); + var25.updateUI(); + var25.enableInputMethods(true); + var22.add((java.awt.Component)var23, (java.lang.Object)true); + java.awt.Dimension var34 = var23.getPreferredSize(); + var15.setSize(var34); + var0.setMaximumSize(var34); + SpaceWar.SpacePanel var37 = new SpaceWar.SpacePanel(); + float var38 = var37.getAlignmentX(); + var37.setVisible(false); + java.awt.Dimension var41 = var37.getPreferredSize(); + boolean var42 = var37.getVerifyInputWhenFocusTarget(); + java.awt.Component var45 = var37.findComponentAt(10, 1); + boolean var46 = var37.requestDefaultFocus(); + var37.setVerifyInputWhenFocusTarget(false); + java.awt.Point var49 = var37.getLocation(); + java.awt.Point var50 = var0.getLocation(var49); + var0.enable(false); + boolean var53 = var0.getAutoscrolls(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var34); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var38 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var41); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var42 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var45); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var46 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var49); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var50); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var53 == false); + + } + + public void test66() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test66"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + float var7 = var6.getAlignmentX(); + var6.setVisible(false); + java.awt.Dimension var10 = var6.getPreferredSize(); + var0.setMaximumSize(var10); + boolean var12 = var0.getVerifyInputWhenFocusTarget(); + int var13 = var0.getX(); + SpaceWar.SpacePanel var14 = new SpaceWar.SpacePanel(); + float var15 = var14.getAlignmentX(); + SpaceWar.SpacePanel var16 = new SpaceWar.SpacePanel(); + float var17 = var16.getAlignmentX(); + var16.setVisible(false); + java.awt.Dimension var20 = var16.getPreferredSize(); + boolean var21 = var16.getVerifyInputWhenFocusTarget(); + java.awt.Component var24 = var16.findComponentAt(10, 1); + var14.addKeyListener((java.awt.event.KeyListener)var16); + var16.repaint(100, (-1), (-1), 1); + SpaceWar.SpacePanel var31 = new SpaceWar.SpacePanel(); + java.awt.Color var32 = var31.getBackground(); + var31.repaint(); + java.awt.im.InputMethodRequests var34 = var31.getInputMethodRequests(); + java.awt.GraphicsConfiguration var35 = var31.getGraphicsConfiguration(); + var16.remove((java.awt.Component)var31); + java.awt.Font var37 = var31.getFont(); + var0.setFont(var37); + boolean var39 = var0.isManagingFocus(); + SpaceWar.SpacePanel var40 = new SpaceWar.SpacePanel(); + float var41 = var40.getAlignmentX(); + var40.setVisible(false); + var40.nextFocus(); + var40.requestFocus(); + java.lang.Object var46 = var0.getClientProperty((java.lang.Object)var40); + java.awt.Dimension var47 = var40.getMaximumSize(); + SpaceWar.SpacePanel var49 = new SpaceWar.SpacePanel(); + float var50 = var49.getAlignmentX(); + var49.setVisible(false); + boolean var53 = var49.isDoubleBuffered(); + var49.list(); + SpaceWar.SpacePanel var55 = new SpaceWar.SpacePanel(); + float var56 = var55.getAlignmentX(); + var55.setVisible(false); + boolean var59 = var55.isDoubleBuffered(); + java.awt.dnd.DropTarget var60 = var55.getDropTarget(); + var55.show(false); + java.awt.Rectangle var63 = var55.getVisibleRect(); + java.awt.Rectangle var64 = var49.getBounds(var63); + javax.swing.JToolTip var65 = var49.createToolTip(); + java.awt.Graphics var66 = var49.getGraphics(); + var49.setAutoscrolls(false); + boolean var69 = var49.requestFocusInWindow(); + javax.swing.InputMap var70 = var49.getInputMap(); + // The following exception was thrown during execution. + // This behavior will recorded for regression testing. + try { + var40.setInputMap(24, var70); + fail("Expected exception of type java.lang.IllegalArgumentException"); + } catch (java.lang.IllegalArgumentException e) { + // Expected exception. + } + + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var32); + + // Regression assertion (captures the current behavior of the code) + assertNull(var34); + + // Regression assertion (captures the current behavior of the code) + assertNull(var35); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var37); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var39 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var41 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNull(var46); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var47); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var50 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var53 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var56 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var59 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var60); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var63); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var64); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var65); + + // Regression assertion (captures the current behavior of the code) + assertNull(var66); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var69 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var70); + + } + + public void test67() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test67"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + float var7 = var6.getAlignmentX(); + var6.setVisible(false); + SpaceWar.SpacePanel var10 = new SpaceWar.SpacePanel(); + java.awt.Color var11 = var10.getBackground(); + var6.setForeground(var11); + var0.setBackground(var11); + var0.grabFocus(); + boolean var15 = var0.getFocusTraversalKeysEnabled(); + var0.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=java.awt.Dimension[width=800,height=600],minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", (byte)0, (byte)1); + boolean var20 = var0.getVerifyInputWhenFocusTarget(); + javax.swing.border.Border var21 = var0.getBorder(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var21); + + } + + public void test68() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test68"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.reshape((-1), 1, (-1), 10); + var0.disable(); + java.awt.LayoutManager var11 = var0.getLayout(); + java.awt.Container var12 = var0.getParent(); + java.lang.String var13 = var0.getUIClassID(); + var0.setVerifyInputWhenFocusTarget(true); + boolean var16 = var0.isRequestFocusEnabled(); + var0.setVerifyInputWhenFocusTarget(false); + boolean var19 = var0.isLightweight(); + SpaceWar.SpacePanel var20 = new SpaceWar.SpacePanel(); + var20.setName(""); + java.awt.Graphics var23 = var20.getGraphics(); + java.awt.event.MouseMotionListener[] var24 = var20.getMouseMotionListeners(); + boolean var25 = var20.getIgnoreRepaint(); + var20.transferFocusBackward(); + var20.enable(); + java.awt.Container var28 = var20.getTopLevelAncestor(); + var20.invalidate(); + SpaceWar.SpacePanel var30 = new SpaceWar.SpacePanel(); + float var31 = var30.getAlignmentX(); + var30.setVisible(false); + var30.nextFocus(); + var30.updateUI(); + var30.enableInputMethods(true); + java.lang.String var38 = var30.toString(); + SpaceWar.SpacePanel var39 = new SpaceWar.SpacePanel(); + float var40 = var39.getAlignmentX(); + var39.setVisible(false); + boolean var43 = var39.isDoubleBuffered(); + java.awt.dnd.DropTarget var44 = var39.getDropTarget(); + var39.show(false); + java.awt.Rectangle var47 = var39.getVisibleRect(); + java.awt.image.BufferedImage var49 = var39.loadImg("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + java.awt.ComponentOrientation var50 = var39.getComponentOrientation(); + boolean var51 = var39.isPaintingTile(); + boolean var52 = var39.isOptimizedDrawingEnabled(); + int var53 = var30.getComponentZOrder((java.awt.Component)var39); + javax.swing.InputMap var54 = var39.getInputMap(); + SpaceWar.SpacePanel var55 = new SpaceWar.SpacePanel(); + float var56 = var55.getAlignmentX(); + boolean var57 = var55.hasFocus(); + SpaceWar.SpacePanel var58 = new SpaceWar.SpacePanel(); + float var59 = var58.getAlignmentX(); + var58.setVisible(false); + var58.nextFocus(); + var58.reshape((-1), 1, (-1), 10); + var58.disable(); + java.awt.LayoutManager var69 = var58.getLayout(); + var58.setVisible(false); + var55.remove((java.awt.Component)var58); + java.beans.VetoableChangeListener[] var73 = var55.getVetoableChangeListeners(); + var20.putClientProperty((java.lang.Object)var54, (java.lang.Object)var55); + var0.addKeyListener((java.awt.event.KeyListener)var20); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var13 + "' != '" + "PanelUI"+ "'", var13.equals("PanelUI")); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var23); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var28); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var31 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var38 + "' != '" + "SpaceWar.SpacePanel[,0,0,0var38,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"+ "'", var38.equals("SpaceWar.SpacePanel[,0,0,0var38,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]")); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var40 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var43 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var44); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var47); + + // Regression assertion (captures the current behavior of the code) + assertNull(var49); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var50); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var51 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var52 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var53 == (-1)); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var54); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var56 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var57 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var59 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var69); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var73); + + } + + public void test69() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test69"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var1 = new SpaceWar.SpacePanel(); + java.awt.Color var2 = var1.getBackground(); + SpaceWar.SpacePanel var3 = new SpaceWar.SpacePanel(); + float var4 = var3.getAlignmentX(); + var3.setVisible(false); + var3.nextFocus(); + var3.updateUI(); + var3.enableInputMethods(true); + var0.add((java.awt.Component)var1, (java.lang.Object)true); + java.awt.Image var14 = var1.createImage(1, (-1)); + java.beans.PropertyChangeListener[] var15 = var1.getPropertyChangeListeners(); + java.awt.FocusTraversalPolicy var16 = var1.getFocusTraversalPolicy(); + var1.show(false); + boolean var19 = var1.isEnabled(); + java.awt.Cursor var20 = var1.getCursor(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var2); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + } + + public void test70() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test70"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + var0.show(false); + boolean var8 = var0.isPaintingForPrint(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var15 = var9.getMouseListeners(); + int var16 = var9.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var17 = var9.getInputMethodRequests(); + var0.addKeyListener((java.awt.event.KeyListener)var9); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + float var20 = var19.getAlignmentX(); + var19.setVisible(false); + boolean var23 = var19.isDoubleBuffered(); + var19.list(); + float var25 = var19.getAlignmentY(); + boolean var26 = var9.isFocusCycleRoot((java.awt.Container)var19); + var19.firePropertyChange("", 1L, 1L); + var19.setAutoscrolls(false); + var19.setAlignmentX(100.0f); + java.awt.Cursor var35 = var19.getCursor(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var35); + + } + + public void test71() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test71"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + var0.show(false); + boolean var8 = var0.isPaintingForPrint(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var15 = var9.getMouseListeners(); + int var16 = var9.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var17 = var9.getInputMethodRequests(); + var0.addKeyListener((java.awt.event.KeyListener)var9); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + float var20 = var19.getAlignmentX(); + var19.setVisible(false); + boolean var23 = var19.isDoubleBuffered(); + var19.list(); + float var25 = var19.getAlignmentY(); + boolean var26 = var9.isFocusCycleRoot((java.awt.Container)var19); + javax.swing.JPopupMenu var27 = var19.getComponentPopupMenu(); + var19.move((-1), 100); + var19.validate(); + SpaceWar.SpacePanel var32 = new SpaceWar.SpacePanel(); + float var33 = var32.getAlignmentX(); + var32.setVisible(false); + SpaceWar.SpacePanel var36 = new SpaceWar.SpacePanel(); + java.awt.Color var37 = var36.getBackground(); + var32.setForeground(var37); + SpaceWar.SpacePanel var39 = new SpaceWar.SpacePanel(); + float var40 = var39.getAlignmentX(); + var39.setVisible(false); + boolean var43 = var39.isDoubleBuffered(); + java.awt.dnd.DropTarget var44 = var39.getDropTarget(); + var39.show(false); + java.awt.Rectangle var47 = var39.getVisibleRect(); + var32.repaint(var47); + java.awt.FocusTraversalPolicy var49 = var32.getFocusTraversalPolicy(); + SpaceWar.SpacePanel var50 = new SpaceWar.SpacePanel(); + float var51 = var50.getAlignmentX(); + var50.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var56 = var50.getUI(); + java.awt.im.InputMethodRequests var57 = var50.getInputMethodRequests(); + SpaceWar.SpacePanel var58 = new SpaceWar.SpacePanel(); + float var59 = var58.getAlignmentX(); + var58.setVisible(false); + var58.nextFocus(); + var58.updateUI(); + var58.enableInputMethods(true); + var58.setSize((-1), 1); + SpaceWar.SpacePanel var69 = new SpaceWar.SpacePanel(); + var69.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var50.add((java.awt.Component)var58, (java.lang.Object)"SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + java.awt.ComponentOrientation var75 = var58.getComponentOrientation(); + java.beans.VetoableChangeListener[] var76 = var58.getVetoableChangeListeners(); + int var77 = var58.getHeight(); + javax.swing.ActionMap var78 = var58.getActionMap(); + var32.setActionMap(var78); + var19.setActionMap(var78); + javax.swing.InputMap var81 = var19.getInputMap(); + javax.swing.plaf.PanelUI var82 = var19.getUI(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var27); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var33 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var37); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var40 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var43 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var44); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var47); + + // Regression assertion (captures the current behavior of the code) + assertNull(var49); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var51 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var56); + + // Regression assertion (captures the current behavior of the code) + assertNull(var57); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var59 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var75); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var76); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var77 == 1); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var78); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var81); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var82); + + } + + public void test72() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test72"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + float var7 = var6.getAlignmentX(); + var6.setVisible(false); + java.awt.Dimension var10 = var6.getPreferredSize(); + var0.setMaximumSize(var10); + boolean var12 = var0.getVerifyInputWhenFocusTarget(); + boolean var13 = var0.isFontSet(); + boolean var14 = var0.getIgnoreRepaint(); + java.awt.Component var17 = var0.locate(1, 25); + java.awt.dnd.DropTarget var18 = var0.getDropTarget(); + javax.swing.TransferHandler var19 = var0.getTransferHandler(); + java.awt.Point var20 = var0.getMousePosition(); + int var21 = var0.getWidth(); + boolean var22 = var0.isOpaque(); + java.awt.Component[] var23 = var0.getComponents(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var22 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var23); + + } + + public void test73() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test73"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + var0.setRequestFocusEnabled(false); + var0.setIgnoreRepaint(false); + java.lang.String var7 = var0.toString(); + java.awt.Color var8 = var0.getBackground(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.setVisible(false); + java.awt.Dimension var13 = var9.getPreferredSize(); + java.awt.Toolkit var14 = var9.getToolkit(); + java.awt.Toolkit var15 = var9.getToolkit(); + SpaceWar.Player var16 = new SpaceWar.Player(); + var16.increasePower(25); + int var19 = var16.getScore(); + var16.setRigth(true); + var16.loseLife(); + var0.putClientProperty((java.lang.Object)var9, (java.lang.Object)var16); + SpaceWar.SpacePanel var24 = new SpaceWar.SpacePanel(); + float var25 = var24.getAlignmentX(); + var24.setVisible(false); + var24.setInheritsPopupMenu(false); + var24.move(10, 10); + var24.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + java.awt.event.KeyListener[] var37 = var24.getKeyListeners(); + var9.removeKeyListener((java.awt.event.KeyListener)var24); + java.awt.Point var39 = var9.location(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var7 + "' != '" + "SpaceWar.SpacePanel[,0,0,0var7,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"+ "'", var7.equals("SpaceWar.SpacePanel[,0,0,0var7,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]")); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var37); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var39); + + } + + public void test74() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test74"); + + + SpaceWar.Player var0 = new SpaceWar.Player(); + int var1 = var0.getPower(); + int var2 = var0.getPowerLevel(); + var0.setLeft(false); + int var5 = var0.getRequiredPower(); + var0.setFiring(false); + var0.setUp(false); + var0.setScore(505); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var2 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == 1); + + } + + public void test75() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test75"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + var0.list(); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + float var7 = var6.getAlignmentX(); + var6.setVisible(false); + boolean var10 = var6.isDoubleBuffered(); + java.awt.dnd.DropTarget var11 = var6.getDropTarget(); + var6.show(false); + java.awt.Rectangle var14 = var6.getVisibleRect(); + java.awt.Rectangle var15 = var0.getBounds(var14); + javax.swing.JToolTip var16 = var0.createToolTip(); + var0.firePropertyChange("", false, false); + var0.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", (-1L), (-1L)); + var0.setVisible(false); + var0.setIgnoreRepaint(false); + var0.firePropertyChange("", 1.0f, 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + } + + public void test76() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test76"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + boolean var6 = var0.isFocusCycleRoot(); + SpaceWar.SpacePanel var7 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + java.awt.Color var9 = var8.getBackground(); + SpaceWar.SpacePanel var10 = new SpaceWar.SpacePanel(); + float var11 = var10.getAlignmentX(); + var10.setVisible(false); + var10.nextFocus(); + var10.updateUI(); + var10.enableInputMethods(true); + var7.add((java.awt.Component)var8, (java.lang.Object)true); + java.awt.Dimension var19 = var8.getPreferredSize(); + var0.setSize(var19); + var0.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", (-1), 10); + var0.setLocation(10, 100); + int var28 = var0.getX(); + boolean var29 = var0.isCursorSet(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var9); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var28 == 10); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var29 == false); + + } + + public void test77() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test77"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.updateUI(); + var0.enableInputMethods(true); + var0.setSize((-1), 1); + boolean var13 = var0.contains(1, 1); + javax.swing.TransferHandler var14 = var0.getTransferHandler(); + SpaceWar.SpacePanel var15 = new SpaceWar.SpacePanel(); + float var16 = var15.getAlignmentX(); + var15.setVisible(false); + boolean var19 = var15.isDoubleBuffered(); + var15.enable(false); + java.lang.Object var22 = var0.getClientProperty((java.lang.Object)false); + java.beans.PropertyChangeListener[] var23 = var0.getPropertyChangeListeners(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var23); + + } + + public void test78() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test78"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + var0.show(false); + boolean var8 = var0.isPaintingForPrint(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var15 = var9.getMouseListeners(); + int var16 = var9.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var17 = var9.getInputMethodRequests(); + var0.addKeyListener((java.awt.event.KeyListener)var9); + java.awt.Container var19 = var9.getFocusCycleRootAncestor(); + SpaceWar.SpacePanel var20 = new SpaceWar.SpacePanel(); + float var21 = var20.getAlignmentX(); + var20.setVisible(false); + var20.nextFocus(); + var20.reshape((-1), 1, (-1), 10); + var20.disable(); + java.awt.LayoutManager var31 = var20.getLayout(); + java.awt.Container var32 = var20.getParent(); + java.beans.PropertyChangeListener[] var34 = var20.getPropertyChangeListeners("SpaceWar.SpacePanel[,0,0,0x0,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + var9.setNextFocusableComponent((java.awt.Component)var20); + java.awt.Font var36 = var9.getFont(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var31); + + // Regression assertion (captures the current behavior of the code) + assertNull(var32); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var34); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var36); + + } + + public void test79() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test79"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + var0.setRequestFocusEnabled(false); + var0.setIgnoreRepaint(false); + boolean var7 = var0.requestFocusInWindow(); + var0.setAlignmentY(100.0f); + java.awt.Container var10 = var0.getFocusCycleRootAncestor(); + javax.swing.TransferHandler var11 = var0.getTransferHandler(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertNull(var11); + + } + + public void test80() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test80"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + SpaceWar.SpacePanel var2 = new SpaceWar.SpacePanel(); + float var3 = var2.getAlignmentX(); + var2.setVisible(false); + java.awt.Dimension var6 = var2.getPreferredSize(); + boolean var7 = var2.getVerifyInputWhenFocusTarget(); + java.awt.Component var10 = var2.findComponentAt(10, 1); + var0.addKeyListener((java.awt.event.KeyListener)var2); + int var12 = var2.getX(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == 0); + + } + + public void test81() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test81"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.reshape((-1), 1, (-1), 10); + var0.disable(); + java.awt.LayoutManager var11 = var0.getLayout(); + boolean var14 = var0.contains((-1), 0); + SpaceWar.SpacePanel var15 = new SpaceWar.SpacePanel(); + float var16 = var15.getAlignmentX(); + var15.setVisible(false); + var15.nextFocus(); + var15.updateUI(); + var15.enableInputMethods(true); + var15.setSize((-1), 1); + java.awt.Component var26 = var0.add((java.awt.Component)var15); + var15.nextFocus(); + var15.updateUI(); + int var29 = var15.getWidth(); + var15.addNotify(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var29 == (-1)); + + } + + public void test82() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test82"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + var0.setRequestFocusEnabled(false); + var0.reshape(100, 0, 100, 0); + java.beans.VetoableChangeListener[] var10 = var0.getVetoableChangeListeners(); + java.awt.Rectangle var11 = var0.getVisibleRect(); + float var12 = var0.getAlignmentY(); + SpaceWar.SpacePanel var13 = new SpaceWar.SpacePanel(); + float var14 = var13.getAlignmentX(); + var13.setVisible(false); + var13.nextFocus(); + var13.reshape((-1), 1, (-1), 10); + java.util.Set var24 = var13.getFocusTraversalKeys(3); + SpaceWar.SpacePanel var25 = new SpaceWar.SpacePanel(); + float var26 = var25.getAlignmentX(); + var25.setVisible(false); + SpaceWar.SpacePanel var29 = new SpaceWar.SpacePanel(); + java.awt.Color var30 = var29.getBackground(); + var25.setForeground(var30); + SpaceWar.SpacePanel var32 = new SpaceWar.SpacePanel(); + float var33 = var32.getAlignmentX(); + var32.setVisible(false); + boolean var36 = var32.isDoubleBuffered(); + java.awt.dnd.DropTarget var37 = var32.getDropTarget(); + var32.show(false); + java.awt.Rectangle var40 = var32.getVisibleRect(); + var25.repaint(var40); + java.awt.FocusTraversalPolicy var42 = var25.getFocusTraversalPolicy(); + SpaceWar.SpacePanel var43 = new SpaceWar.SpacePanel(); + float var44 = var43.getAlignmentX(); + var43.firePropertyChange("", (-1), 1); + boolean var49 = var43.isFocusOwner(); + SpaceWar.SpacePanel var51 = new SpaceWar.SpacePanel(); + float var52 = var51.getAlignmentX(); + var51.setVisible(false); + java.awt.Dimension var55 = var51.getPreferredSize(); + java.awt.Toolkit var56 = var51.getToolkit(); + SpaceWar.SpacePanel var57 = new SpaceWar.SpacePanel(); + var57.setName(""); + int var60 = var57.getX(); + SpaceWar.SpacePanel var61 = new SpaceWar.SpacePanel(); + float var62 = var61.getAlignmentX(); + var61.setVisible(false); + var61.nextFocus(); + SpaceWar.SpacePanel var66 = new SpaceWar.SpacePanel(); + float var67 = var66.getAlignmentX(); + var66.setVisible(false); + SpaceWar.SpacePanel var70 = new SpaceWar.SpacePanel(); + java.awt.Color var71 = var70.getBackground(); + var66.setForeground(var71); + var61.setBackground(var71); + var57.setBackground(var71); + var51.setForeground(var71); + var43.putClientProperty((java.lang.Object)(byte)100, (java.lang.Object)var71); + var25.setBackground(var71); + SpaceWar.SpacePanel var78 = new SpaceWar.SpacePanel(); + float var79 = var78.getAlignmentX(); + var78.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var84 = new SpaceWar.SpacePanel(); + float var85 = var84.getAlignmentX(); + var84.setVisible(false); + SpaceWar.SpacePanel var88 = new SpaceWar.SpacePanel(); + java.awt.Color var89 = var88.getBackground(); + var84.setForeground(var89); + var78.setBackground(var89); + java.awt.Point var92 = var78.location(); + java.awt.Point var93 = var25.getLocation(var92); + java.awt.Component var94 = var13.findComponentAt(var92); + boolean var95 = var0.contains(var92); + java.awt.Component var96 = var0.getNextFocusableComponent(); + java.awt.Dimension var97 = var0.getMinimumSize(); + boolean var98 = var0.requestDefaultFocus(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var30); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var33 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var36 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var37); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var40); + + // Regression assertion (captures the current behavior of the code) + assertNull(var42); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var44 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var49 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var52 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var55); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var56); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var60 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var62 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var67 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var71); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var79 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var85 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var89); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var92); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var93); + + // Regression assertion (captures the current behavior of the code) + assertNull(var94); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var95 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var96); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var97); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var98 == false); + + } + + public void test83() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test83"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + boolean var2 = var0.hasFocus(); + java.beans.VetoableChangeListener[] var3 = var0.getVetoableChangeListeners(); + var0.paintImmediately(10, 0, (-1), 25); + boolean var9 = var0.getInheritsPopupMenu(); + var0.resize(500, 10); + SpaceWar.SpacePanel var13 = new SpaceWar.SpacePanel(); + float var14 = var13.getAlignmentX(); + var13.setVisible(false); + var13.setInheritsPopupMenu(false); + var13.setFocusTraversalPolicyProvider(true); + SpaceWar.SpacePanel var21 = new SpaceWar.SpacePanel(); + float var22 = var21.getAlignmentX(); + var21.setVisible(false); + boolean var25 = var21.isDoubleBuffered(); + var21.list(); + SpaceWar.SpacePanel var27 = new SpaceWar.SpacePanel(); + float var28 = var27.getAlignmentX(); + var27.setVisible(false); + boolean var31 = var27.isDoubleBuffered(); + java.awt.dnd.DropTarget var32 = var27.getDropTarget(); + var27.show(false); + java.awt.Rectangle var35 = var27.getVisibleRect(); + java.awt.Rectangle var36 = var21.getBounds(var35); + javax.swing.JToolTip var37 = var21.createToolTip(); + var13.removeKeyListener((java.awt.event.KeyListener)var21); + javax.swing.TransferHandler var39 = var13.getTransferHandler(); + var13.setFocusTraversalPolicyProvider(true); + var0.setNextFocusableComponent((java.awt.Component)var13); + SpaceWar.SpacePanel var43 = new SpaceWar.SpacePanel(); + float var44 = var43.getAlignmentX(); + var43.setVisible(false); + SpaceWar.SpacePanel var47 = new SpaceWar.SpacePanel(); + java.awt.Color var48 = var47.getBackground(); + var43.setForeground(var48); + SpaceWar.SpacePanel var50 = new SpaceWar.SpacePanel(); + float var51 = var50.getAlignmentX(); + var50.setVisible(false); + boolean var54 = var50.isDoubleBuffered(); + java.awt.dnd.DropTarget var55 = var50.getDropTarget(); + var50.show(false); + java.awt.Rectangle var58 = var50.getVisibleRect(); + var43.repaint(var58); + java.awt.Component.BaselineResizeBehavior var60 = var43.getBaselineResizeBehavior(); + boolean var62 = var43.requestFocus(false); + var43.removeAll(); + var13.addKeyListener((java.awt.event.KeyListener)var43); + java.awt.Font var65 = var43.getFont(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var2 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var22 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var28 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var31 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var32); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var35); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var36); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var37); + + // Regression assertion (captures the current behavior of the code) + assertNull(var39); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var44 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var48); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var51 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var54 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var55); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var58); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var60); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var62 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var65); + + } + + public void test84() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test84"); + + + SpaceWar.Enemy var2 = new SpaceWar.Enemy(0, 100); + var2.explode(); + java.awt.image.BufferedImage var5 = var2.loadImg("SpaceWar.SpacePanel[,-1,1,-1x10,invalid,hidden,disabled,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + var2.explode(); + var2.update(); + boolean var8 = var2.isDead(); + double var9 = var2.getY(); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.0d); + + } + + public void test85() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test85"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + var0.setRequestFocusEnabled(false); + var0.reshape(100, 0, 100, 0); + java.beans.VetoableChangeListener[] var10 = var0.getVetoableChangeListeners(); + java.awt.Rectangle var11 = var0.getVisibleRect(); + float var12 = var0.getAlignmentY(); + java.awt.Dimension var13 = var0.minimumSize(); + javax.swing.InputVerifier var14 = var0.getInputVerifier(); + java.lang.String var15 = var0.toString(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var15 + "' != '" + "SpaceWar.SpacePanel[,100,0,100var15,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"+ "'", var15.equals("SpaceWar.SpacePanel[,100,0,100var15,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]")); + + } + + public void test86() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test86"); + + + SpaceWar.Player var0 = new SpaceWar.Player(); + int var1 = var0.getPower(); + var0.setFiring(true); + var0.loseLife(); + var0.setUp(true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0); + + } + + public void test87() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test87"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.setInheritsPopupMenu(false); + var0.setFocusTraversalPolicyProvider(true); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + boolean var12 = var8.isDoubleBuffered(); + var8.list(); + SpaceWar.SpacePanel var14 = new SpaceWar.SpacePanel(); + float var15 = var14.getAlignmentX(); + var14.setVisible(false); + boolean var18 = var14.isDoubleBuffered(); + java.awt.dnd.DropTarget var19 = var14.getDropTarget(); + var14.show(false); + java.awt.Rectangle var22 = var14.getVisibleRect(); + java.awt.Rectangle var23 = var8.getBounds(var22); + javax.swing.JToolTip var24 = var8.createToolTip(); + var0.removeKeyListener((java.awt.event.KeyListener)var8); + javax.swing.TransferHandler var26 = var0.getTransferHandler(); + var0.transferFocus(); + SpaceWar.SpacePanel var28 = new SpaceWar.SpacePanel(); + float var29 = var28.getAlignmentX(); + SpaceWar.SpacePanel var30 = new SpaceWar.SpacePanel(); + float var31 = var30.getAlignmentX(); + var30.setVisible(false); + java.awt.Dimension var34 = var30.getPreferredSize(); + boolean var35 = var30.getVerifyInputWhenFocusTarget(); + java.awt.Component var38 = var30.findComponentAt(10, 1); + var28.addKeyListener((java.awt.event.KeyListener)var30); + java.awt.Dimension var40 = var30.getMinimumSize(); + SpaceWar.SpacePanel var41 = new SpaceWar.SpacePanel(); + java.awt.Color var42 = var41.getBackground(); + var41.repaint(); + var41.setRequestFocusEnabled(false); + var41.reshape(100, 0, 100, 0); + var41.requestFocus(); + java.awt.Rectangle var52 = var41.getVisibleRect(); + var30.setBounds(var52); + var0.scrollRectToVisible(var52); + boolean var55 = var0.isDisplayable(); + var0.revalidate(); + java.awt.event.MouseListener[] var57 = var0.getMouseListeners(); + javax.swing.ActionMap var58 = var0.getActionMap(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var23); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var29 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var31 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var34); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var35 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var38); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var40); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var42); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var52); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var55 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var57); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var58); + + } + + public void test88() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test88"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + var0.list(); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + float var7 = var6.getAlignmentX(); + var6.setVisible(false); + boolean var10 = var6.isDoubleBuffered(); + java.awt.dnd.DropTarget var11 = var6.getDropTarget(); + var6.show(false); + java.awt.Rectangle var14 = var6.getVisibleRect(); + java.awt.image.BufferedImage var16 = var6.loadImg("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + boolean var17 = var0.isAncestorOf((java.awt.Component)var6); + float var18 = var0.getAlignmentX(); + java.awt.image.VolatileImage var21 = var0.createVolatileImage(25, 1); + java.beans.PropertyChangeListener[] var23 = var0.getPropertyChangeListeners("PanelUI"); + boolean var24 = var0.isPaintingForPrint(); + boolean var25 = var0.isPreferredSizeSet(); + SpaceWar.SpacePanel var26 = new SpaceWar.SpacePanel(); + float var27 = var26.getAlignmentX(); + var26.setVisible(false); + boolean var30 = var26.isDoubleBuffered(); + java.awt.dnd.DropTarget var31 = var26.getDropTarget(); + var26.show(false); + java.awt.Rectangle var34 = var26.getVisibleRect(); + java.awt.Toolkit var35 = var26.getToolkit(); + java.beans.PropertyChangeListener[] var36 = var26.getPropertyChangeListeners(); + SpaceWar.SpacePanel var37 = new SpaceWar.SpacePanel(); + float var38 = var37.getAlignmentX(); + var37.setVisible(false); + var37.nextFocus(); + var37.repaint(1L); + SpaceWar.SpacePanel var44 = new SpaceWar.SpacePanel(); + float var45 = var44.getAlignmentX(); + var44.setVisible(false); + var44.nextFocus(); + var44.updateUI(); + var44.enableInputMethods(true); + var44.enableInputMethods(true); + var37.addKeyListener((java.awt.event.KeyListener)var44); + java.awt.event.MouseMotionListener[] var55 = var37.getMouseMotionListeners(); + var0.putClientProperty((java.lang.Object)var26, (java.lang.Object)var55); + boolean var57 = var0.isPreferredSizeSet(); + java.awt.Component var58 = var0.getNextFocusableComponent(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNull(var21); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var23); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var24 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var30 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var31); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var34); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var35); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var36); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var38 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var45 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var55); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var57 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var58); + + } + + public void test89() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test89"); + + + SpaceWar.Player var0 = new SpaceWar.Player(); + int var1 = var0.getR(); + var0.setUp(false); + int var4 = var0.getLives(); + var0.setScore(0); + int var7 = var0.getPowerLevel(); + int var8 = var0.getR(); + int var9 = var0.getY(); + int var10 = var0.getRequiredPower(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 25); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 3); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 25); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 500); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 1); + + } + + public void test90() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test90"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + var0.setRequestFocusEnabled(false); + var0.reshape(100, 0, 100, 0); + javax.swing.event.AncestorListener[] var10 = var0.getAncestorListeners(); + var0.setOpaque(true); + java.awt.Insets var13 = var0.getInsets(); + java.awt.Color var14 = var0.getForeground(); + SpaceWar.SpacePanel var15 = new SpaceWar.SpacePanel(); + java.awt.Color var16 = var15.getBackground(); + var15.repaint(); + java.awt.im.InputMethodRequests var18 = var15.getInputMethodRequests(); + int var19 = var15.countComponents(); + java.awt.event.ComponentListener[] var20 = var15.getComponentListeners(); + SpaceWar.SpacePanel var21 = new SpaceWar.SpacePanel(); + float var22 = var21.getAlignmentX(); + var21.removeNotify(); + SpaceWar.SpacePanel var24 = new SpaceWar.SpacePanel(); + float var25 = var24.getAlignmentX(); + var24.setVisible(false); + boolean var28 = var24.isDoubleBuffered(); + var24.list(); + float var30 = var24.getAlignmentY(); + java.awt.Insets var31 = var24.getInsets(); + java.awt.Insets var32 = var21.getInsets(var31); + java.awt.Insets var33 = var15.getInsets(var32); + javax.swing.JPopupMenu var34 = var15.getComponentPopupMenu(); + var0.addKeyListener((java.awt.event.KeyListener)var15); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var22 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var28 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var30 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var31); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var32); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var33); + + // Regression assertion (captures the current behavior of the code) + assertNull(var34); + + } + + public void test91() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test91"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + java.awt.event.MouseMotionListener[] var6 = var0.getMouseMotionListeners(); + int var7 = var0.getDebugGraphicsOptions(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0); + + } + + public void test92() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test92"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + var0.setName(""); + java.awt.Graphics var3 = var0.getGraphics(); + java.awt.event.MouseMotionListener[] var4 = var0.getMouseMotionListeners(); + boolean var5 = var0.getIgnoreRepaint(); + var0.transferFocusBackward(); + var0.enable(); + java.lang.Object var8 = var0.getTreeLock(); + java.awt.Rectangle var9 = var0.getBounds(); + + // Regression assertion (captures the current behavior of the code) + assertNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var4); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var9); + + } + + public void test93() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test93"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + var0.show(false); + boolean var8 = var0.isPaintingForPrint(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var15 = var9.getMouseListeners(); + int var16 = var9.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var17 = var9.getInputMethodRequests(); + var0.addKeyListener((java.awt.event.KeyListener)var9); + java.awt.Container var19 = var9.getFocusCycleRootAncestor(); + boolean var20 = var9.hasFocus(); + SpaceWar.SpacePanel var21 = new SpaceWar.SpacePanel(); + float var22 = var21.getAlignmentX(); + var21.setVisible(false); + var21.setInheritsPopupMenu(false); + boolean var27 = var21.isDoubleBuffered(); + boolean var28 = var21.isMinimumSizeSet(); + SpaceWar.SpacePanel var29 = new SpaceWar.SpacePanel(); + float var30 = var29.getAlignmentX(); + var29.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var35 = new SpaceWar.SpacePanel(); + float var36 = var35.getAlignmentX(); + var35.setVisible(false); + java.awt.Dimension var39 = var35.getPreferredSize(); + var29.setMaximumSize(var39); + boolean var41 = var29.getVerifyInputWhenFocusTarget(); + javax.accessibility.AccessibleContext var42 = var29.getAccessibleContext(); + boolean var43 = var29.isDoubleBuffered(); + java.awt.Rectangle var44 = var29.getVisibleRect(); + var21.setBounds(var44); + java.lang.Object var46 = var9.getClientProperty((java.lang.Object)var21); + java.awt.Cursor var47 = var9.getCursor(); + SpaceWar.SpacePanel var48 = new SpaceWar.SpacePanel(); + float var49 = var48.getAlignmentX(); + var48.setVisible(false); + SpaceWar.SpacePanel var52 = new SpaceWar.SpacePanel(); + java.awt.Color var53 = var52.getBackground(); + var48.setForeground(var53); + SpaceWar.SpacePanel var55 = new SpaceWar.SpacePanel(); + float var56 = var55.getAlignmentX(); + var55.setVisible(false); + boolean var59 = var55.isDoubleBuffered(); + java.awt.dnd.DropTarget var60 = var55.getDropTarget(); + var55.show(false); + java.awt.Rectangle var63 = var55.getVisibleRect(); + var48.repaint(var63); + java.awt.Component.BaselineResizeBehavior var65 = var48.getBaselineResizeBehavior(); + boolean var67 = var48.requestFocus(false); + var48.removeAll(); + javax.swing.plaf.PanelUI var69 = var48.getUI(); + var9.setUI(var69); + java.awt.Component[] var71 = var9.getComponents(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var22 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var28 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var30 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var36 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var39); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var41 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var42); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var43 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var44); + + // Regression assertion (captures the current behavior of the code) + assertNull(var46); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var47); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var49 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var53); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var56 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var59 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var60); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var63); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var65); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var67 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var69); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var71); + + } + + public void test94() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test94"); + + + SpaceWar.Player var0 = new SpaceWar.Player(); + boolean var1 = var0.isRecovering(); + var0.setRigth(false); + int var4 = var0.getPower(); + boolean var5 = var0.isDead(); + int var6 = var0.getScore(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == 0); + + } + + public void test95() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test95"); + + + SpaceWar.Enemy var2 = new SpaceWar.Enemy(0, 10); + int var3 = var2.getRank(); + int var4 = var2.getR(); + int var5 = var2.getType(); + int var6 = var2.getRank(); + var2.update(); + int var8 = var2.getR(); + double var9 = var2.getX(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == 10); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == 10); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 528.4541321783861d); + + } + + public void test96() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test96"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var1 = new SpaceWar.SpacePanel(); + java.awt.Color var2 = var1.getBackground(); + SpaceWar.SpacePanel var3 = new SpaceWar.SpacePanel(); + float var4 = var3.getAlignmentX(); + var3.setVisible(false); + var3.nextFocus(); + var3.updateUI(); + var3.enableInputMethods(true); + var0.add((java.awt.Component)var1, (java.lang.Object)true); + java.awt.Image var14 = var1.createImage(1, (-1)); + java.awt.event.MouseListener[] var15 = var1.getMouseListeners(); + SpaceWar.SpacePanel var16 = new SpaceWar.SpacePanel(); + float var17 = var16.getAlignmentX(); + var16.setVisible(false); + var16.nextFocus(); + var16.reshape((-1), 1, (-1), 10); + var16.disable(); + java.awt.LayoutManager var27 = var16.getLayout(); + boolean var30 = var16.contains((-1), 0); + SpaceWar.SpacePanel var31 = new SpaceWar.SpacePanel(); + float var32 = var31.getAlignmentX(); + var31.setVisible(false); + var31.nextFocus(); + var31.updateUI(); + var31.enableInputMethods(true); + var31.setSize((-1), 1); + java.awt.Component var42 = var16.add((java.awt.Component)var31); + var31.paintImmediately(100, 25, 2, 2); + SpaceWar.SpacePanel var48 = new SpaceWar.SpacePanel(); + var48.setName(""); + java.awt.Toolkit var51 = var48.getToolkit(); + var48.setEnabled(false); + var48.removeNotify(); + boolean var55 = var48.isDisplayable(); + SpaceWar.SpacePanel var56 = new SpaceWar.SpacePanel(); + java.awt.Color var57 = var56.getBackground(); + var56.repaint(); + var56.setRequestFocusEnabled(false); + var56.reshape(100, 0, 100, 0); + var56.requestFocus(); + java.awt.Rectangle var67 = var56.getVisibleRect(); + java.awt.Rectangle var68 = var56.getBounds(); + java.awt.im.InputMethodRequests var69 = var56.getInputMethodRequests(); + boolean var70 = var56.requestFocusInWindow(); + java.awt.Point var72 = var56.getMousePosition(false); + var56.setDebugGraphicsOptions(1); + java.awt.Graphics var75 = var56.getGraphics(); + var48.paintAll(var75); + var31.paintComponents(var75); + var1.printAll(var75); + java.awt.Dimension var79 = var1.getMinimumSize(); + java.awt.Component var80 = var1.getNextFocusableComponent(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var2); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var27); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var30 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var32 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var42); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var51); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var55 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var57); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var67); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var68); + + // Regression assertion (captures the current behavior of the code) + assertNull(var69); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var70 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var72); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var75); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var79); + + // Regression assertion (captures the current behavior of the code) + assertNull(var80); + + } + + public void test97() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test97"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.setInheritsPopupMenu(false); + var0.move(10, 10); + var0.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var0.removeAll(); + var0.show(false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + } + + public void test98() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test98"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + boolean var6 = var0.isFocusCycleRoot(); + SpaceWar.SpacePanel var7 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + java.awt.Color var9 = var8.getBackground(); + SpaceWar.SpacePanel var10 = new SpaceWar.SpacePanel(); + float var11 = var10.getAlignmentX(); + var10.setVisible(false); + var10.nextFocus(); + var10.updateUI(); + var10.enableInputMethods(true); + var7.add((java.awt.Component)var8, (java.lang.Object)true); + java.awt.Dimension var19 = var8.getPreferredSize(); + var0.setSize(var19); + var0.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", (-1), 10); + var0.setLocation(10, 100); + int var28 = var0.getX(); + SpaceWar.SpacePanel var29 = new SpaceWar.SpacePanel(); + float var30 = var29.getAlignmentX(); + var29.setVisible(false); + var29.setInheritsPopupMenu(false); + boolean var35 = var29.isDoubleBuffered(); + SpaceWar.SpacePanel var36 = new SpaceWar.SpacePanel(); + float var37 = var36.getAlignmentX(); + var36.setVisible(false); + var36.nextFocus(); + var36.reshape((-1), 1, (-1), 10); + var36.disable(); + java.awt.LayoutManager var47 = var36.getLayout(); + var29.setLayout(var47); + var0.setLayout(var47); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var9); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var28 == 10); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var30 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var35 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var47); + + } + + public void test99() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test99"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + var0.setRequestFocusEnabled(false); + var0.reshape(100, 0, 100, 0); + java.beans.VetoableChangeListener[] var10 = var0.getVetoableChangeListeners(); + SpaceWar.SpacePanel var11 = new SpaceWar.SpacePanel(); + float var12 = var11.getAlignmentX(); + var11.setVisible(false); + boolean var15 = var11.isDoubleBuffered(); + var11.list(); + SpaceWar.SpacePanel var17 = new SpaceWar.SpacePanel(); + float var18 = var17.getAlignmentX(); + var17.setVisible(false); + boolean var21 = var17.isDoubleBuffered(); + java.awt.dnd.DropTarget var22 = var17.getDropTarget(); + var17.show(false); + java.awt.Rectangle var25 = var17.getVisibleRect(); + java.awt.Rectangle var26 = var11.getBounds(var25); + javax.swing.JToolTip var27 = var11.createToolTip(); + java.awt.Dimension var28 = var11.minimumSize(); + boolean var30 = var11.requestFocus(false); + java.awt.Dimension var31 = var11.getMaximumSize(); + var0.setPreferredSize(var31); + boolean var33 = var0.isOpaque(); + javax.swing.KeyStroke[] var34 = var0.getRegisteredKeyStrokes(); + var0.hide(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var25); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var27); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var28); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var30 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var31); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var33 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var34); + + } + + public void test100() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test100"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + var0.enable(false); + boolean var7 = var0.getFocusTraversalKeysEnabled(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + java.awt.Dimension var12 = var8.getPreferredSize(); + java.awt.Toolkit var13 = var8.getToolkit(); + boolean var14 = var8.isFocusable(); + javax.swing.KeyStroke[] var15 = var8.getRegisteredKeyStrokes(); + SpaceWar.SpacePanel var16 = new SpaceWar.SpacePanel(); + float var17 = var16.getAlignmentX(); + SpaceWar.SpacePanel var18 = new SpaceWar.SpacePanel(); + float var19 = var18.getAlignmentX(); + var18.setVisible(false); + java.awt.Dimension var22 = var18.getPreferredSize(); + boolean var23 = var18.getVerifyInputWhenFocusTarget(); + java.awt.Component var26 = var18.findComponentAt(10, 1); + var16.addKeyListener((java.awt.event.KeyListener)var18); + var18.repaint(100, (-1), (-1), 1); + boolean var33 = var8.isAncestorOf((java.awt.Component)var18); + var0.addKeyListener((java.awt.event.KeyListener)var18); + SpaceWar.SpacePanel var36 = new SpaceWar.SpacePanel(); + float var37 = var36.getAlignmentX(); + var36.setVisible(false); + boolean var40 = var36.isDoubleBuffered(); + java.awt.dnd.DropTarget var41 = var36.getDropTarget(); + var36.show(false); + boolean var44 = var36.isPaintingForPrint(); + SpaceWar.SpacePanel var45 = new SpaceWar.SpacePanel(); + float var46 = var45.getAlignmentX(); + var45.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var51 = var45.getMouseListeners(); + int var52 = var45.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var53 = var45.getInputMethodRequests(); + var36.addKeyListener((java.awt.event.KeyListener)var45); + SpaceWar.SpacePanel var55 = new SpaceWar.SpacePanel(); + float var56 = var55.getAlignmentX(); + var55.setVisible(false); + boolean var59 = var55.isDoubleBuffered(); + var55.list(); + float var61 = var55.getAlignmentY(); + boolean var62 = var45.isFocusCycleRoot((java.awt.Container)var55); + SpaceWar.SpacePanel var64 = new SpaceWar.SpacePanel(); + float var65 = var64.getAlignmentX(); + var64.setVisible(false); + var64.nextFocus(); + var64.updateUI(); + java.awt.Component var70 = var45.add("", (java.awt.Component)var64); + java.awt.Component var71 = var18.add("", (java.awt.Component)var64); + java.lang.Object var72 = var18.getTreeLock(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var33 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var40 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var41); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var44 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var46 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var51); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var52 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var53); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var56 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var59 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var61 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var62 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var65 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var70); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var71); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var72); + + } + + public void test101() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test101"); + + + SpaceWar.PowerUp var3 = new SpaceWar.PowerUp(100, (-1.0d), 0.0d); + double var4 = var3.getY(); + double var5 = var3.getX(); + double var6 = var3.getR(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0.0d); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == (-1.0d)); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == 0.0d); + + } + + public void test102() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test102"); + + + SpaceWar.Player var0 = new SpaceWar.Player(); + var0.setFiring(true); + var0.update(); + int var4 = var0.getX(); + var0.loseLife(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 400); + + } + + public void test103() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test103"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var6 = var0.getMouseListeners(); + java.awt.Dimension var7 = var0.getPreferredSize(); + int var10 = var0.getBaseline(1, 1); + var0.show(false); + javax.swing.JRootPane var13 = var0.getRootPane(); + boolean var14 = var0.isPreferredSizeSet(); + java.lang.String var15 = var0.getUIClassID(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == (-1)); + + // Regression assertion (captures the current behavior of the code) + assertNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var15 + "' != '" + "PanelUI"+ "'", var15.equals("PanelUI")); + + } + + public void test104() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test104"); + + + SpaceWar.Player var0 = new SpaceWar.Player(); + int var1 = var0.getR(); + var0.setRigth(false); + var0.setLife(100); + var0.setDown(false); + var0.setFiring(true); + var0.increasePower(400); + var0.setScore(500); + int var14 = var0.getPower(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 25); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == 399); + + } + + public void test105() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test105"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + var0.list(); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + float var7 = var6.getAlignmentX(); + var6.setVisible(false); + boolean var10 = var6.isDoubleBuffered(); + java.awt.dnd.DropTarget var11 = var6.getDropTarget(); + var6.show(false); + java.awt.Rectangle var14 = var6.getVisibleRect(); + java.awt.Rectangle var15 = var0.getBounds(var14); + javax.swing.JToolTip var16 = var0.createToolTip(); + java.awt.Graphics var17 = var0.getGraphics(); + float var18 = var0.getAlignmentY(); + java.awt.Component var21 = var0.getComponentAt(2, 2); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNull(var21); + + } + + public void test106() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test106"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + java.awt.Dimension var4 = var0.getPreferredSize(); + boolean var5 = var0.getVerifyInputWhenFocusTarget(); + java.awt.Component var8 = var0.findComponentAt(10, 1); + boolean var9 = var0.isCursorSet(); + java.awt.Dimension var10 = var0.getMinimumSize(); + var0.setFocusCycleRoot(true); + var0.show(false); + java.lang.String var15 = var0.getUIClassID(); + SpaceWar.SpacePanel var16 = new SpaceWar.SpacePanel(); + float var17 = var16.getAlignmentX(); + var16.setVisible(false); + SpaceWar.SpacePanel var20 = new SpaceWar.SpacePanel(); + java.awt.Color var21 = var20.getBackground(); + var16.setForeground(var21); + SpaceWar.SpacePanel var23 = new SpaceWar.SpacePanel(); + float var24 = var23.getAlignmentX(); + var23.setVisible(false); + boolean var27 = var23.isDoubleBuffered(); + java.awt.dnd.DropTarget var28 = var23.getDropTarget(); + var23.show(false); + java.awt.Rectangle var31 = var23.getVisibleRect(); + var16.repaint(var31); + java.awt.FocusTraversalPolicy var33 = var16.getFocusTraversalPolicy(); + SpaceWar.SpacePanel var34 = new SpaceWar.SpacePanel(); + float var35 = var34.getAlignmentX(); + var34.firePropertyChange("", (-1), 1); + boolean var40 = var34.isFocusOwner(); + SpaceWar.SpacePanel var42 = new SpaceWar.SpacePanel(); + float var43 = var42.getAlignmentX(); + var42.setVisible(false); + java.awt.Dimension var46 = var42.getPreferredSize(); + java.awt.Toolkit var47 = var42.getToolkit(); + SpaceWar.SpacePanel var48 = new SpaceWar.SpacePanel(); + var48.setName(""); + int var51 = var48.getX(); + SpaceWar.SpacePanel var52 = new SpaceWar.SpacePanel(); + float var53 = var52.getAlignmentX(); + var52.setVisible(false); + var52.nextFocus(); + SpaceWar.SpacePanel var57 = new SpaceWar.SpacePanel(); + float var58 = var57.getAlignmentX(); + var57.setVisible(false); + SpaceWar.SpacePanel var61 = new SpaceWar.SpacePanel(); + java.awt.Color var62 = var61.getBackground(); + var57.setForeground(var62); + var52.setBackground(var62); + var48.setBackground(var62); + var42.setForeground(var62); + var34.putClientProperty((java.lang.Object)(byte)100, (java.lang.Object)var62); + var16.setBackground(var62); + javax.swing.JToolTip var69 = var16.createToolTip(); + var69.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, true); + java.awt.Component var74 = var0.add((java.awt.Component)var69); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var4); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var15 + "' != '" + "PanelUI"+ "'", var15.equals("PanelUI")); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var21); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var24 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var28); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var31); + + // Regression assertion (captures the current behavior of the code) + assertNull(var33); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var35 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var40 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var43 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var46); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var47); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var51 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var53 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var58 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var62); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var69); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var74); + + } + + public void test107() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test107"); + + + SpaceWar.Player var0 = new SpaceWar.Player(); + boolean var1 = var0.isRecovering(); + int var2 = var0.getRequiredPower(); + int var3 = var0.getY(); + int var4 = var0.getX(); + int var5 = var0.getR(); + java.awt.image.BufferedImage var7 = var0.loadImg("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=1.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var2 == 1); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == 500); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 400); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == 25); + + // Regression assertion (captures the current behavior of the code) + assertNull(var7); + + } + + public void test108() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test108"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + SpaceWar.SpacePanel var4 = new SpaceWar.SpacePanel(); + java.awt.Color var5 = var4.getBackground(); + var0.setForeground(var5); + SpaceWar.SpacePanel var7 = new SpaceWar.SpacePanel(); + float var8 = var7.getAlignmentX(); + var7.setVisible(false); + boolean var11 = var7.isDoubleBuffered(); + java.awt.dnd.DropTarget var12 = var7.getDropTarget(); + var7.show(false); + java.awt.Rectangle var15 = var7.getVisibleRect(); + var0.repaint(var15); + java.awt.FocusTraversalPolicy var17 = var0.getFocusTraversalPolicy(); + int var18 = var0.getHeight(); + boolean var19 = var0.getAutoscrolls(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == false); + + } + + public void test109() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test109"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + SpaceWar.SpacePanel var2 = new SpaceWar.SpacePanel(); + float var3 = var2.getAlignmentX(); + var2.setVisible(false); + java.awt.Dimension var6 = var2.getPreferredSize(); + boolean var7 = var2.getVerifyInputWhenFocusTarget(); + java.awt.Component var10 = var2.findComponentAt(10, 1); + var0.addKeyListener((java.awt.event.KeyListener)var2); + SpaceWar.SpacePanel var12 = new SpaceWar.SpacePanel(); + float var13 = var12.getAlignmentX(); + SpaceWar.SpacePanel var14 = new SpaceWar.SpacePanel(); + float var15 = var14.getAlignmentX(); + var14.setVisible(false); + java.awt.Dimension var18 = var14.getPreferredSize(); + boolean var19 = var14.getVerifyInputWhenFocusTarget(); + java.awt.Component var22 = var14.findComponentAt(10, 1); + var12.addKeyListener((java.awt.event.KeyListener)var14); + var14.repaint(100, (-1), (-1), 1); + java.awt.image.ColorModel var29 = var14.getColorModel(); + SpaceWar.SpacePanel var30 = new SpaceWar.SpacePanel(); + float var31 = var30.getAlignmentX(); + var30.setVisible(false); + boolean var34 = var30.isDoubleBuffered(); + var30.list(); + SpaceWar.SpacePanel var36 = new SpaceWar.SpacePanel(); + float var37 = var36.getAlignmentX(); + var36.setVisible(false); + boolean var40 = var36.isDoubleBuffered(); + java.awt.dnd.DropTarget var41 = var36.getDropTarget(); + var36.show(false); + java.awt.Rectangle var44 = var36.getVisibleRect(); + java.awt.image.BufferedImage var46 = var36.loadImg("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + boolean var47 = var30.isAncestorOf((java.awt.Component)var36); + javax.swing.InputVerifier var48 = var36.getInputVerifier(); + var2.putClientProperty((java.lang.Object)var14, (java.lang.Object)var36); + int var50 = var36.getComponentCount(); + boolean var51 = var36.requestDefaultFocus(); + boolean var52 = var36.isVisible(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var29); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var31 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var34 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var40 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var41); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var44); + + // Regression assertion (captures the current behavior of the code) + assertNull(var46); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var47 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var48); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var50 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var51 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var52 == false); + + } + + public void test110() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test110"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var1 = new SpaceWar.SpacePanel(); + java.awt.Color var2 = var1.getBackground(); + SpaceWar.SpacePanel var3 = new SpaceWar.SpacePanel(); + float var4 = var3.getAlignmentX(); + var3.setVisible(false); + var3.nextFocus(); + var3.updateUI(); + var3.enableInputMethods(true); + var0.add((java.awt.Component)var1, (java.lang.Object)true); + java.awt.Image var14 = var1.createImage(1, (-1)); + java.awt.event.MouseListener[] var15 = var1.getMouseListeners(); + java.awt.Color var16 = var1.getBackground(); + boolean var17 = var1.getIgnoreRepaint(); + var1.enable(); + var1.show(false); + var1.firePropertyChange("PanelUI", false, false); + java.awt.ComponentOrientation var25 = var1.getComponentOrientation(); + boolean var26 = var1.isFocusTraversalPolicyProvider(); + var1.setIgnoreRepaint(true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var2); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var25); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == false); + + } + + public void test111() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test111"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.reshape((-1), 1, (-1), 10); + var0.disable(); + java.awt.Component var13 = var0.findComponentAt(0, (-1)); + SpaceWar.SpacePanel var14 = new SpaceWar.SpacePanel(); + var14.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + javax.swing.plaf.PanelUI var19 = var14.getUI(); + SpaceWar.SpacePanel var20 = new SpaceWar.SpacePanel(); + float var21 = var20.getAlignmentX(); + var20.setVisible(false); + var20.nextFocus(); + var20.repaint(1L); + SpaceWar.SpacePanel var27 = new SpaceWar.SpacePanel(); + float var28 = var27.getAlignmentX(); + var27.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var33 = new SpaceWar.SpacePanel(); + float var34 = var33.getAlignmentX(); + var33.setVisible(false); + java.awt.Dimension var37 = var33.getPreferredSize(); + var27.setMaximumSize(var37); + var20.setPreferredSize(var37); + var14.setMaximumSize(var37); + var0.setSize(var37); + SpaceWar.SpacePanel var42 = new SpaceWar.SpacePanel(); + float var43 = var42.getAlignmentX(); + boolean var44 = var42.hasFocus(); + boolean var45 = var42.isPreferredSizeSet(); + SpaceWar.SpacePanel var46 = new SpaceWar.SpacePanel(); + java.awt.Color var47 = var46.getBackground(); + var46.repaint(); + var46.setRequestFocusEnabled(false); + int var51 = var42.getComponentZOrder((java.awt.Component)var46); + boolean var52 = var42.requestDefaultFocus(); + javax.swing.border.Border var53 = var42.getBorder(); + int var54 = var0.getComponentZOrder((java.awt.Component)var42); + javax.accessibility.AccessibleContext var55 = var42.getAccessibleContext(); + int var56 = var42.getY(); + boolean var58 = var42.requestFocus(true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var28 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var34 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var37); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var43 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var44 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var45 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var47); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var51 == (-1)); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var52 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var53); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var54 == (-1)); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var55); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var56 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var58 == false); + + } + + public void test112() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test112"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + SpaceWar.SpacePanel var5 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + java.awt.Color var7 = var6.getBackground(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + var8.nextFocus(); + var8.updateUI(); + var8.enableInputMethods(true); + var5.add((java.awt.Component)var6, (java.lang.Object)true); + java.awt.Dimension var17 = var6.getPreferredSize(); + var0.setMaximumSize(var17); + java.awt.Dimension var19 = var0.preferredSize(); + boolean var20 = var0.getVerifyInputWhenFocusTarget(); + var0.validate(); + boolean var22 = var0.isVisible(); + var0.removeAll(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var22 == false); + + } + + public void test113() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test113"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + var0.setRequestFocusEnabled(false); + var0.reshape(100, 0, 100, 0); + var0.requestFocus(); + var0.firePropertyChange("hi!", '4', ' '); + java.awt.Point var15 = var0.getLocation(); + java.awt.Dimension var16 = var0.size(); + java.awt.Image var19 = var0.createImage((-1), (-1)); + java.awt.event.ComponentListener[] var20 = var0.getComponentListeners(); + SpaceWar.SpacePanel var21 = new SpaceWar.SpacePanel(); + var21.setName(""); + java.awt.ComponentOrientation var24 = var21.getComponentOrientation(); + var21.firePropertyChange("PanelUI", 1.0f, 0.5f); + int var29 = var0.getComponentZOrder((java.awt.Component)var21); + SpaceWar.SpacePanel var30 = new SpaceWar.SpacePanel(); + float var31 = var30.getAlignmentX(); + var30.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var36 = var30.getUI(); + java.awt.im.InputMethodRequests var37 = var30.getInputMethodRequests(); + SpaceWar.SpacePanel var38 = new SpaceWar.SpacePanel(); + float var39 = var38.getAlignmentX(); + var38.setVisible(false); + var38.nextFocus(); + var38.updateUI(); + var38.enableInputMethods(true); + var38.setSize((-1), 1); + SpaceWar.SpacePanel var49 = new SpaceWar.SpacePanel(); + var49.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var30.add((java.awt.Component)var38, (java.lang.Object)"SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + SpaceWar.SpacePanel var55 = new SpaceWar.SpacePanel(); + float var56 = var55.getAlignmentX(); + var55.setVisible(false); + var55.setInheritsPopupMenu(false); + boolean var61 = var55.isDoubleBuffered(); + boolean var62 = var55.isMinimumSizeSet(); + SpaceWar.SpacePanel var63 = new SpaceWar.SpacePanel(); + float var64 = var63.getAlignmentX(); + var63.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var69 = new SpaceWar.SpacePanel(); + float var70 = var69.getAlignmentX(); + var69.setVisible(false); + java.awt.Dimension var73 = var69.getPreferredSize(); + var63.setMaximumSize(var73); + boolean var75 = var63.getVerifyInputWhenFocusTarget(); + javax.accessibility.AccessibleContext var76 = var63.getAccessibleContext(); + boolean var77 = var63.isDoubleBuffered(); + java.awt.Rectangle var78 = var63.getVisibleRect(); + var55.setBounds(var78); + java.awt.Rectangle var80 = var30.getBounds(var78); + var0.computeVisibleRect(var78); + java.awt.image.ColorModel var82 = var0.getColorModel(); + var0.setAutoscrolls(false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var29 == (-1)); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var31 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var36); + + // Regression assertion (captures the current behavior of the code) + assertNull(var37); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var39 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var56 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var61 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var62 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var64 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var70 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var73); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var75 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var76); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var77 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var78); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var80); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var82); + + } + + public void test114() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test114"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + var0.setRequestFocusEnabled(false); + var0.reshape(100, 0, 100, 0); + var0.requestFocus(); + java.awt.Rectangle var11 = var0.getVisibleRect(); + java.awt.Rectangle var12 = var0.getBounds(); + java.awt.im.InputMethodRequests var13 = var0.getInputMethodRequests(); + boolean var14 = var0.requestFocusInWindow(); + java.awt.Rectangle var15 = var0.bounds(); + SpaceWar.SpacePanel var16 = new SpaceWar.SpacePanel(); + float var17 = var16.getAlignmentX(); + var16.setVisible(false); + var16.nextFocus(); + var16.reshape((-1), 1, (-1), 10); + var16.disable(); + boolean var27 = var16.isFocusable(); + java.awt.Dimension var28 = var16.getSize(); + var0.setSize(var28); + java.awt.Container var30 = var0.getFocusCycleRootAncestor(); + boolean var31 = var0.getAutoscrolls(); + java.awt.event.InputMethodListener[] var32 = var0.getInputMethodListeners(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var28); + + // Regression assertion (captures the current behavior of the code) + assertNull(var30); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var31 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var32); + + } + + public void test115() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test115"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + var0.setRequestFocusEnabled(false); + var0.reshape(100, 0, 100, 0); + var0.requestFocus(); + var0.firePropertyChange("hi!", '4', ' '); + SpaceWar.Enemy var17 = new SpaceWar.Enemy(0, 100); + int var18 = var17.getR(); + var17.explode(); + var0.putClientProperty((java.lang.Object)var17, (java.lang.Object)(short)10); + var17.hit(); + int var23 = var17.getR(); + int var24 = var17.getType(); + int var25 = var17.getType(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var24 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == 0); + + } + + public void test116() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test116"); + + + SpaceWar.Bullet var3 = new SpaceWar.Bullet(514.6637810615505d, 25, 100); + double var4 = var3.getX(); + boolean var5 = var3.update(); + double var6 = var3.getR(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 25.0d); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == 5.0d); + + } + + public void test117() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test117"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + var0.show(false); + java.awt.Rectangle var8 = var0.getVisibleRect(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var15 = var9.getMouseListeners(); + int var16 = var9.getDebugGraphicsOptions(); + SpaceWar.SpacePanel var17 = new SpaceWar.SpacePanel(); + float var18 = var17.getAlignmentX(); + var17.setVisible(false); + boolean var21 = var17.isDoubleBuffered(); + java.awt.dnd.DropTarget var22 = var17.getDropTarget(); + var17.show(false); + java.awt.Rectangle var25 = var17.getVisibleRect(); + var9.paintImmediately(var25); + java.awt.Rectangle var27 = var9.getBounds(); + var0.scrollRectToVisible(var27); + boolean var29 = var0.getIgnoreRepaint(); + java.lang.String var30 = var0.toString(); + var0.paintImmediately(498, 1, 0, 499); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var25); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var27); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var29 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var30 + "' != '" + "SpaceWar.SpacePanel[,0,0,0var30,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"+ "'", var30.equals("SpaceWar.SpacePanel[,0,0,0var30,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]")); + + } + + public void test118() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test118"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.setInheritsPopupMenu(false); + var0.setFocusTraversalPolicyProvider(true); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + boolean var12 = var8.isDoubleBuffered(); + var8.list(); + SpaceWar.SpacePanel var14 = new SpaceWar.SpacePanel(); + float var15 = var14.getAlignmentX(); + var14.setVisible(false); + boolean var18 = var14.isDoubleBuffered(); + java.awt.dnd.DropTarget var19 = var14.getDropTarget(); + var14.show(false); + java.awt.Rectangle var22 = var14.getVisibleRect(); + java.awt.Rectangle var23 = var8.getBounds(var22); + javax.swing.JToolTip var24 = var8.createToolTip(); + var0.removeKeyListener((java.awt.event.KeyListener)var8); + javax.swing.TransferHandler var26 = var0.getTransferHandler(); + java.awt.Rectangle var27 = var0.bounds(); + var0.setBounds(25, 99, 500, 99); + java.awt.image.VolatileImage var35 = var0.createVolatileImage(3, 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var23); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var27); + + // Regression assertion (captures the current behavior of the code) + assertNull(var35); + + } + + public void test119() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test119"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var6 = var0.getMouseListeners(); + java.awt.Dimension var7 = var0.getPreferredSize(); + int var10 = var0.getBaseline(1, 1); + var0.show(false); + javax.swing.JRootPane var13 = var0.getRootPane(); + boolean var14 = var0.isPreferredSizeSet(); + SpaceWar.SpacePanel var15 = new SpaceWar.SpacePanel(); + float var16 = var15.getAlignmentX(); + var15.setVisible(false); + java.awt.Dimension var19 = var15.getPreferredSize(); + boolean var20 = var15.getVerifyInputWhenFocusTarget(); + java.awt.Component var23 = var15.findComponentAt(10, 1); + boolean var24 = var15.requestDefaultFocus(); + java.awt.Insets var25 = var15.getInsets(); + var15.setDoubleBuffered(false); + java.awt.Point var29 = var15.getMousePosition(true); + boolean var30 = var15.getFocusTraversalKeysEnabled(); + java.awt.Dimension var31 = var15.getSize(); + var0.setMaximumSize(var31); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == (-1)); + + // Regression assertion (captures the current behavior of the code) + assertNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var23); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var24 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var25); + + // Regression assertion (captures the current behavior of the code) + assertNull(var29); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var30 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var31); + + } + + public void test120() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test120"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var6 = var0.getMouseListeners(); + java.awt.Dimension var7 = var0.getPreferredSize(); + java.util.Locale var8 = var0.getLocale(); + var0.setFocusable(true); + java.lang.String var11 = var0.getToolTipText(); + var0.doLayout(); + boolean var13 = var0.isDisplayable(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == false); + + } + + public void test121() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test121"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + var0.setName(""); + int var3 = var0.getX(); + java.lang.String var4 = var0.getToolTipText(); + java.awt.Point var5 = var0.getLocation(); + javax.swing.JPopupMenu var6 = var0.getComponentPopupMenu(); + boolean var7 = var0.isMinimumSizeSet(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var4); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == false); + + } + + public void test122() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test122"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + javax.swing.plaf.PanelUI var3 = var0.getUI(); + SpaceWar.SpacePanel var4 = new SpaceWar.SpacePanel(); + float var5 = var4.getAlignmentX(); + var4.setVisible(false); + boolean var8 = var4.isDoubleBuffered(); + java.awt.dnd.DropTarget var9 = var4.getDropTarget(); + var4.show(false); + boolean var12 = var4.isPaintingForPrint(); + SpaceWar.SpacePanel var13 = new SpaceWar.SpacePanel(); + float var14 = var13.getAlignmentX(); + var13.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var19 = var13.getMouseListeners(); + int var20 = var13.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var21 = var13.getInputMethodRequests(); + var4.addKeyListener((java.awt.event.KeyListener)var13); + SpaceWar.SpacePanel var23 = new SpaceWar.SpacePanel(); + float var24 = var23.getAlignmentX(); + var23.setVisible(false); + boolean var27 = var23.isDoubleBuffered(); + var23.list(); + float var29 = var23.getAlignmentY(); + boolean var30 = var13.isFocusCycleRoot((java.awt.Container)var23); + SpaceWar.SpacePanel var32 = new SpaceWar.SpacePanel(); + float var33 = var32.getAlignmentX(); + var32.setVisible(false); + var32.nextFocus(); + var32.updateUI(); + java.awt.Component var38 = var13.add("", (java.awt.Component)var32); + java.awt.ComponentOrientation var39 = var32.getComponentOrientation(); + boolean var40 = var32.isFocusable(); + var0.remove((java.awt.Component)var32); + var0.hide(); + var0.revalidate(); + boolean var44 = var0.isBackgroundSet(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var9); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var21); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var24 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var29 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var30 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var33 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var38); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var39); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var40 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var44 == true); + + } + + public void test123() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test123"); + + + SpaceWar.PowerUp var3 = new SpaceWar.PowerUp(100, (-1.0d), 0.0d); + double var4 = var3.getR(); + int var5 = var3.getType(); + boolean var6 = var3.update(); + double var7 = var3.getR(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0.0d); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == 100); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.0d); + + } + + public void test124() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test124"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + var0.list(); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + float var7 = var6.getAlignmentX(); + var6.setVisible(false); + boolean var10 = var6.isDoubleBuffered(); + java.awt.dnd.DropTarget var11 = var6.getDropTarget(); + var6.show(false); + java.awt.Rectangle var14 = var6.getVisibleRect(); + java.awt.Rectangle var15 = var0.getBounds(var14); + javax.swing.JToolTip var16 = var0.createToolTip(); + var0.firePropertyChange("", false, false); + var0.setFocusTraversalKeysEnabled(false); + java.awt.Component var23 = var0.getNextFocusableComponent(); + java.awt.Cursor var24 = var0.getCursor(); + javax.swing.JToolTip var25 = var0.createToolTip(); + var0.layout(); + boolean var27 = var0.isFocusOwner(); + int var28 = var0.getX(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertNull(var23); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var25); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var28 == 0); + + } + + public void test125() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test125"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + java.lang.String var2 = var0.toString(); + java.awt.Dimension var3 = var0.size(); + javax.swing.KeyStroke[] var4 = var0.getRegisteredKeyStrokes(); + boolean var5 = var0.isFocusable(); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + float var7 = var6.getAlignmentX(); + boolean var8 = var6.hasFocus(); + java.beans.VetoableChangeListener[] var9 = var6.getVetoableChangeListeners(); + var6.firePropertyChange("PanelUI", 1.0f, 100.0f); + SpaceWar.SpacePanel var14 = new SpaceWar.SpacePanel(); + float var15 = var14.getAlignmentX(); + var14.setVisible(false); + boolean var18 = var14.isDoubleBuffered(); + java.awt.dnd.DropTarget var19 = var14.getDropTarget(); + var14.show(false); + boolean var22 = var14.isPaintingForPrint(); + SpaceWar.SpacePanel var23 = new SpaceWar.SpacePanel(); + float var24 = var23.getAlignmentX(); + var23.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var29 = var23.getMouseListeners(); + int var30 = var23.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var31 = var23.getInputMethodRequests(); + var14.addKeyListener((java.awt.event.KeyListener)var23); + SpaceWar.SpacePanel var33 = new SpaceWar.SpacePanel(); + float var34 = var33.getAlignmentX(); + var33.setVisible(false); + boolean var37 = var33.isDoubleBuffered(); + var33.list(); + float var39 = var33.getAlignmentY(); + boolean var40 = var23.isFocusCycleRoot((java.awt.Container)var33); + boolean var41 = var33.isEnabled(); + java.awt.Dimension var42 = var33.getMaximumSize(); + var33.disable(); + java.awt.peer.ComponentPeer var44 = var33.getPeer(); + var33.list(); + SpaceWar.SpacePanel var46 = new SpaceWar.SpacePanel(); + java.awt.Color var47 = var46.getBackground(); + var46.repaint(); + var46.setRequestFocusEnabled(false); + var46.reshape(100, 0, 100, 0); + var46.requestFocus(); + java.awt.Rectangle var57 = var46.getVisibleRect(); + java.awt.Rectangle var58 = var46.getBounds(); + java.awt.im.InputMethodRequests var59 = var46.getInputMethodRequests(); + boolean var60 = var46.requestFocusInWindow(); + java.awt.Point var62 = var46.getMousePosition(false); + var46.setDebugGraphicsOptions(1); + java.awt.Graphics var65 = var46.getGraphics(); + var33.paintAll(var65); + var6.update(var65); + var0.print(var65); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var2 + "' != '" + "SpaceWar.SpacePanel[,0,0,0var2,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"+ "'", var2.equals("SpaceWar.SpacePanel[,0,0,0var2,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]")); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var4); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var9); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var22 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var24 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var29); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var30 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var31); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var34 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var39 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var40 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var41 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var42); + + // Regression assertion (captures the current behavior of the code) + assertNull(var44); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var47); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var57); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var58); + + // Regression assertion (captures the current behavior of the code) + assertNull(var59); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var60 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var62); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var65); + + } + + public void test126() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test126"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + var0.setRequestFocusEnabled(false); + var0.reshape(100, 0, 100, 0); + var0.requestFocus(); + var0.firePropertyChange("hi!", '4', ' '); + java.awt.Point var15 = var0.getLocation(); + java.awt.Dimension var16 = var0.size(); + java.awt.Image var19 = var0.createImage((-1), (-1)); + java.awt.event.ComponentListener[] var20 = var0.getComponentListeners(); + SpaceWar.SpacePanel var21 = new SpaceWar.SpacePanel(); + var21.setName(""); + java.awt.ComponentOrientation var24 = var21.getComponentOrientation(); + var21.firePropertyChange("PanelUI", 1.0f, 0.5f); + int var29 = var0.getComponentZOrder((java.awt.Component)var21); + boolean var31 = var0.areFocusTraversalKeysSet(0); + boolean var32 = var0.isPreferredSizeSet(); + java.awt.Dimension var33 = var0.getSize(); + var0.transferFocus(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var29 == (-1)); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var31 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var32 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var33); + + } + + public void test127() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test127"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var6 = var0.getMouseListeners(); + int var7 = var0.getDebugGraphicsOptions(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + boolean var12 = var8.isDoubleBuffered(); + java.awt.dnd.DropTarget var13 = var8.getDropTarget(); + var8.show(false); + java.awt.Rectangle var16 = var8.getVisibleRect(); + var0.paintImmediately(var16); + var0.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", '#', '#'); + java.awt.Insets var22 = var0.insets(); + java.awt.Dimension var23 = var0.minimumSize(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var23); + + } + + public void test128() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test128"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + boolean var6 = var0.isFocusTraversalPolicyProvider(); + SpaceWar.SpacePanel var7 = new SpaceWar.SpacePanel(); + java.awt.Color var8 = var7.getBackground(); + var7.repaint(); + var7.setRequestFocusEnabled(false); + var7.reshape(100, 0, 100, 0); + var7.requestFocus(); + var7.firePropertyChange("hi!", '4', ' '); + java.awt.Point var22 = var7.getLocation(); + java.awt.Dimension var23 = var7.size(); + boolean var24 = var7.isDoubleBuffered(); + var7.reshape(0, 3, 25, 3); + java.awt.Font var30 = var7.getFont(); + var0.setFont(var30); + SpaceWar.SpacePanel var32 = new SpaceWar.SpacePanel(); + float var33 = var32.getAlignmentX(); + var32.setVisible(false); + boolean var36 = var32.isDoubleBuffered(); + java.awt.dnd.DropTarget var37 = var32.getDropTarget(); + var32.show(false); + java.awt.Rectangle var40 = var32.getVisibleRect(); + java.awt.image.BufferedImage var42 = var32.loadImg("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + java.awt.ComponentOrientation var43 = var32.getComponentOrientation(); + boolean var44 = var32.isPaintingTile(); + java.awt.LayoutManager var45 = var32.getLayout(); + boolean var46 = var0.isAncestorOf((java.awt.Component)var32); + SpaceWar.SpacePanel var47 = new SpaceWar.SpacePanel(); + float var48 = var47.getAlignmentX(); + var47.firePropertyChange("", (-1), 1); + java.awt.event.MouseMotionListener[] var53 = var47.getMouseMotionListeners(); + java.awt.event.ComponentListener[] var54 = var47.getComponentListeners(); + SpaceWar.SpacePanel var55 = new SpaceWar.SpacePanel(); + float var56 = var55.getAlignmentX(); + var55.setVisible(false); + var55.nextFocus(); + var55.repaint(1L); + SpaceWar.SpacePanel var62 = new SpaceWar.SpacePanel(); + float var63 = var62.getAlignmentX(); + var62.setVisible(false); + boolean var66 = var62.isDoubleBuffered(); + var62.list(); + SpaceWar.SpacePanel var68 = new SpaceWar.SpacePanel(); + float var69 = var68.getAlignmentX(); + var68.setVisible(false); + boolean var72 = var68.isDoubleBuffered(); + java.awt.dnd.DropTarget var73 = var68.getDropTarget(); + var68.show(false); + java.awt.Rectangle var76 = var68.getVisibleRect(); + java.awt.Rectangle var77 = var62.getBounds(var76); + var55.setBounds(var77); + var47.paintImmediately(var77); + java.awt.Point var80 = var47.getMousePosition(); + java.awt.image.BufferedImage var82 = var47.loadImg("SpaceWar.SpacePanel[,-1,1,-1x10,invalid,hidden,disabled,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + var47.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", 3, 100); + java.awt.ComponentOrientation var87 = var47.getComponentOrientation(); + var0.applyComponentOrientation(var87); + var0.firePropertyChange("PanelUI", (short)(-1), (short)10); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var23); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var24 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var30); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var33 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var36 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var37); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var40); + + // Regression assertion (captures the current behavior of the code) + assertNull(var42); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var43); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var44 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var45); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var46 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var48 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var53); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var54); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var56 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var63 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var66 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var69 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var72 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var73); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var76); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var77); + + // Regression assertion (captures the current behavior of the code) + assertNull(var80); + + // Regression assertion (captures the current behavior of the code) + assertNull(var82); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var87); + + } + + public void test129() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test129"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.repaint(1L); + SpaceWar.SpacePanel var7 = new SpaceWar.SpacePanel(); + float var8 = var7.getAlignmentX(); + var7.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var13 = new SpaceWar.SpacePanel(); + float var14 = var13.getAlignmentX(); + var13.setVisible(false); + java.awt.Dimension var17 = var13.getPreferredSize(); + var7.setMaximumSize(var17); + var0.setPreferredSize(var17); + javax.swing.plaf.PanelUI var20 = var0.getUI(); + var0.setAutoscrolls(false); + boolean var24 = var0.requestFocus(true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var24 == false); + + } + + public void test130() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test130"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var1 = new SpaceWar.SpacePanel(); + java.awt.Color var2 = var1.getBackground(); + SpaceWar.SpacePanel var3 = new SpaceWar.SpacePanel(); + float var4 = var3.getAlignmentX(); + var3.setVisible(false); + var3.nextFocus(); + var3.updateUI(); + var3.enableInputMethods(true); + var0.add((java.awt.Component)var1, (java.lang.Object)true); + java.awt.Image var14 = var1.createImage(1, (-1)); + java.awt.event.MouseListener[] var15 = var1.getMouseListeners(); + java.awt.event.HierarchyListener[] var16 = var1.getHierarchyListeners(); + boolean var17 = var1.isPaintingForPrint(); + javax.swing.plaf.PanelUI var18 = var1.getUI(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var2); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var18); + + } + + public void test131() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test131"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.setInheritsPopupMenu(false); + boolean var6 = var0.isDoubleBuffered(); + java.awt.Rectangle var7 = var0.getBounds(); + var0.grabFocus(); + java.awt.Rectangle var9 = var0.bounds(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var9); + + } + + public void test132() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test132"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + var0.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + javax.swing.plaf.PanelUI var5 = var0.getUI(); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + float var7 = var6.getAlignmentX(); + var6.setVisible(false); + var6.nextFocus(); + var6.repaint(1L); + SpaceWar.SpacePanel var13 = new SpaceWar.SpacePanel(); + float var14 = var13.getAlignmentX(); + var13.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + float var20 = var19.getAlignmentX(); + var19.setVisible(false); + java.awt.Dimension var23 = var19.getPreferredSize(); + var13.setMaximumSize(var23); + var6.setPreferredSize(var23); + var0.setMaximumSize(var23); + var0.updateUI(); + SpaceWar.SpacePanel var28 = new SpaceWar.SpacePanel(); + float var29 = var28.getAlignmentX(); + var28.setVisible(false); + boolean var32 = var28.isDoubleBuffered(); + java.awt.dnd.DropTarget var33 = var28.getDropTarget(); + var28.show(false); + boolean var36 = var28.isPaintingForPrint(); + var28.enable(false); + var28.nextFocus(); + SpaceWar.SpacePanel var40 = new SpaceWar.SpacePanel(); + var40.setName(""); + java.awt.Toolkit var43 = var40.getToolkit(); + var40.setEnabled(false); + var40.removeNotify(); + boolean var47 = var40.isDisplayable(); + SpaceWar.SpacePanel var48 = new SpaceWar.SpacePanel(); + java.awt.Color var49 = var48.getBackground(); + var48.repaint(); + var48.setRequestFocusEnabled(false); + var48.reshape(100, 0, 100, 0); + var48.requestFocus(); + java.awt.Rectangle var59 = var48.getVisibleRect(); + java.awt.Rectangle var60 = var48.getBounds(); + java.awt.im.InputMethodRequests var61 = var48.getInputMethodRequests(); + boolean var62 = var48.requestFocusInWindow(); + java.awt.Point var64 = var48.getMousePosition(false); + var48.setDebugGraphicsOptions(1); + java.awt.Graphics var67 = var48.getGraphics(); + var40.paintAll(var67); + var28.print(var67); + var0.printComponents(var67); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var23); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var29 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var32 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var33); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var36 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var43); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var47 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var49); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var59); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var60); + + // Regression assertion (captures the current behavior of the code) + assertNull(var61); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var62 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var64); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var67); + + } + + public void test133() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test133"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + boolean var2 = var0.hasFocus(); + SpaceWar.SpacePanel var3 = new SpaceWar.SpacePanel(); + float var4 = var3.getAlignmentX(); + var3.setVisible(false); + var3.nextFocus(); + var3.reshape((-1), 1, (-1), 10); + var3.disable(); + java.awt.LayoutManager var14 = var3.getLayout(); + var3.setVisible(false); + var0.remove((java.awt.Component)var3); + boolean var18 = var3.hasFocus(); + var3.requestFocus(); + boolean var20 = var3.isFontSet(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var2 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == true); + + } + + public void test134() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test134"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + boolean var6 = var0.isFocusCycleRoot(); + var0.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", 100, 0); + SpaceWar.SpacePanel var11 = new SpaceWar.SpacePanel(); + float var12 = var11.getAlignmentX(); + var11.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var17 = var11.getUI(); + var0.add((java.awt.Component)var11, (java.lang.Object)(short)0); + java.awt.Insets var20 = var11.getInsets(); + SpaceWar.SpacePanel var21 = new SpaceWar.SpacePanel(); + float var22 = var21.getAlignmentX(); + var21.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var27 = var21.getMouseListeners(); + java.awt.Dimension var28 = var21.getPreferredSize(); + java.util.Locale var29 = var21.getLocale(); + var21.setFocusable(true); + SpaceWar.SpacePanel var32 = new SpaceWar.SpacePanel(); + java.awt.Color var33 = var32.getBackground(); + var32.repaint(); + var32.setRequestFocusEnabled(false); + var32.setIgnoreRepaint(false); + java.lang.String var39 = var32.toString(); + java.awt.Color var40 = var32.getBackground(); + var11.putClientProperty((java.lang.Object)var21, (java.lang.Object)var32); + boolean var42 = var21.hasFocus(); + java.awt.image.VolatileImage var45 = var21.createVolatileImage(10, 3); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var22 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var27); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var28); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var29); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var33); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var39 + "' != '" + "SpaceWar.SpacePanel[,0,0,0var39,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"+ "'", var39.equals("SpaceWar.SpacePanel[,0,0,0var39,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]")); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var40); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var42 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var45); + + } + + public void test135() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test135"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.setInheritsPopupMenu(false); + boolean var6 = var0.isDoubleBuffered(); + boolean var7 = var0.isMinimumSizeSet(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var14 = new SpaceWar.SpacePanel(); + float var15 = var14.getAlignmentX(); + var14.setVisible(false); + java.awt.Dimension var18 = var14.getPreferredSize(); + var8.setMaximumSize(var18); + boolean var20 = var8.getVerifyInputWhenFocusTarget(); + javax.accessibility.AccessibleContext var21 = var8.getAccessibleContext(); + boolean var22 = var8.isDoubleBuffered(); + java.awt.Rectangle var23 = var8.getVisibleRect(); + var0.setBounds(var23); + SpaceWar.SpacePanel var25 = new SpaceWar.SpacePanel(); + var25.setName(""); + var25.enable(true); + var25.enable(); + java.awt.Point var31 = var25.location(); + var25.repaint(0, 3, (-1), 1); + java.awt.Component var39 = var25.findComponentAt(0, 25); + var0.setNextFocusableComponent((java.awt.Component)var25); + var0.grabFocus(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var21); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var22 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var23); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var31); + + // Regression assertion (captures the current behavior of the code) + assertNull(var39); + + } + + public void test136() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test136"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var6 = var0.getMouseListeners(); + int var7 = var0.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var8 = var0.getInputMethodRequests(); + java.lang.String var9 = var0.getToolTipText(); + boolean var10 = var0.isOpaque(); + boolean var11 = var0.getFocusTraversalKeysEnabled(); + java.awt.Cursor var12 = var0.getCursor(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertNull(var9); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var12); + + } + + public void test137() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test137"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + var0.list(); + float var6 = var0.getAlignmentY(); + boolean var7 = var0.isOpaque(); + var0.resetKeyboardActions(); + boolean var9 = var0.isFocusTraversalPolicyProvider(); + java.awt.im.InputContext var10 = var0.getInputContext(); + var0.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", (short)100, (short)1); + var0.nextFocus(); + var0.transferFocusUpCycle(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var10); + + } + + public void test138() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test138"); + + + SpaceWar.Bullet var3 = new SpaceWar.Bullet(284.06998599257884d, 99, 0); + + } + + public void test139() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test139"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.updateUI(); + var0.enableInputMethods(true); + var0.setSize((-1), 1); + boolean var13 = var0.contains(1, 1); + javax.swing.TransferHandler var14 = var0.getTransferHandler(); + SpaceWar.SpacePanel var15 = new SpaceWar.SpacePanel(); + float var16 = var15.getAlignmentX(); + var15.setVisible(false); + boolean var19 = var15.isDoubleBuffered(); + var15.enable(false); + java.lang.Object var22 = var0.getClientProperty((java.lang.Object)false); + SpaceWar.SpacePanel var23 = new SpaceWar.SpacePanel(); + float var24 = var23.getAlignmentX(); + var23.setVisible(false); + SpaceWar.SpacePanel var27 = new SpaceWar.SpacePanel(); + java.awt.Color var28 = var27.getBackground(); + var23.setForeground(var28); + SpaceWar.SpacePanel var30 = new SpaceWar.SpacePanel(); + float var31 = var30.getAlignmentX(); + var30.setVisible(false); + boolean var34 = var30.isDoubleBuffered(); + java.awt.dnd.DropTarget var35 = var30.getDropTarget(); + var30.show(false); + java.awt.Rectangle var38 = var30.getVisibleRect(); + var23.repaint(var38); + java.awt.Component.BaselineResizeBehavior var40 = var23.getBaselineResizeBehavior(); + SpaceWar.SpacePanel var41 = new SpaceWar.SpacePanel(); + float var42 = var41.getAlignmentX(); + var41.setVisible(false); + var41.nextFocus(); + var41.repaint(1L); + SpaceWar.SpacePanel var48 = new SpaceWar.SpacePanel(); + float var49 = var48.getAlignmentX(); + var48.setVisible(false); + boolean var52 = var48.isDoubleBuffered(); + var48.list(); + SpaceWar.SpacePanel var54 = new SpaceWar.SpacePanel(); + float var55 = var54.getAlignmentX(); + var54.setVisible(false); + boolean var58 = var54.isDoubleBuffered(); + java.awt.dnd.DropTarget var59 = var54.getDropTarget(); + var54.show(false); + java.awt.Rectangle var62 = var54.getVisibleRect(); + java.awt.Rectangle var63 = var48.getBounds(var62); + var41.setBounds(var63); + var23.paintImmediately(var63); + SpaceWar.SpacePanel var66 = new SpaceWar.SpacePanel(); + float var67 = var66.getAlignmentX(); + var66.setVisible(false); + boolean var70 = var66.isDoubleBuffered(); + java.awt.dnd.DropTarget var71 = var66.getDropTarget(); + java.awt.Point var72 = var66.getMousePosition(); + boolean var73 = var66.getAutoscrolls(); + var0.add((java.awt.Component)var23, (java.lang.Object)var66); + var66.setInheritsPopupMenu(false); + var66.setFocusCycleRoot(true); + boolean var79 = var66.isValid(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var24 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var28); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var31 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var34 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var35); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var38); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var40); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var42 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var49 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var52 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var55 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var58 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var59); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var62); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var63); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var67 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var70 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var71); + + // Regression assertion (captures the current behavior of the code) + assertNull(var72); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var73 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var79 == false); + + } + + public void test140() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test140"); + + + SpaceWar.Text var4 = new SpaceWar.Text(0.0d, 588.66222662657d, 1L, "SpaceWar.SpacePanel[,100,0,100x0,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + + } + + public void test141() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test141"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.setInheritsPopupMenu(false); + boolean var6 = var0.isDoubleBuffered(); + var0.setAlignmentY(100.0f); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var15 = var9.getUI(); + java.awt.im.InputMethodRequests var16 = var9.getInputMethodRequests(); + SpaceWar.SpacePanel var17 = new SpaceWar.SpacePanel(); + float var18 = var17.getAlignmentX(); + var17.setVisible(false); + var17.nextFocus(); + var17.updateUI(); + var17.enableInputMethods(true); + var17.setSize((-1), 1); + SpaceWar.SpacePanel var28 = new SpaceWar.SpacePanel(); + var28.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var9.add((java.awt.Component)var17, (java.lang.Object)"SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + java.awt.event.KeyListener[] var34 = var9.getKeyListeners(); + var9.repaint(3, 1, 25, 0); + SpaceWar.SpacePanel var40 = new SpaceWar.SpacePanel(); + java.awt.Color var41 = var40.getBackground(); + boolean var44 = var40.inside(0, (-1)); + var40.transferFocusUpCycle(); + java.awt.Container var46 = var40.getParent(); + boolean var47 = var40.isMaximumSizeSet(); + SpaceWar.SpacePanel var48 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var49 = new SpaceWar.SpacePanel(); + java.awt.Color var50 = var49.getBackground(); + SpaceWar.SpacePanel var51 = new SpaceWar.SpacePanel(); + float var52 = var51.getAlignmentX(); + var51.setVisible(false); + var51.nextFocus(); + var51.updateUI(); + var51.enableInputMethods(true); + var48.add((java.awt.Component)var49, (java.lang.Object)true); + boolean var61 = var49.areFocusTraversalKeysSet(0); + SpaceWar.SpacePanel var62 = new SpaceWar.SpacePanel(); + float var63 = var62.getAlignmentX(); + var62.setVisible(false); + boolean var66 = var62.isDoubleBuffered(); + java.awt.dnd.DropTarget var67 = var62.getDropTarget(); + var62.show(false); + java.awt.Rectangle var70 = var62.getVisibleRect(); + var49.setBounds(var70); + var40.setBounds(var70); + java.awt.Rectangle var73 = var9.getBounds(var70); + var0.setBounds(var73); + boolean var76 = var0.requestFocus(false); + java.awt.Cursor var77 = var0.getCursor(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var34); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var41); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var44 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var46); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var47 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var50); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var52 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var61 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var63 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var66 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var67); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var70); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var73); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var76 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var77); + + } + + public void test142() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test142"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + var0.setName(""); + java.awt.ComponentOrientation var3 = var0.getComponentOrientation(); + int var4 = var0.getComponentCount(); + var0.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", (byte)1, (byte)0); + var0.setDebugGraphicsOptions(1); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0); + + } + + public void test143() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test143"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + float var7 = var6.getAlignmentX(); + var6.setVisible(false); + SpaceWar.SpacePanel var10 = new SpaceWar.SpacePanel(); + java.awt.Color var11 = var10.getBackground(); + var6.setForeground(var11); + var0.setBackground(var11); + var0.grabFocus(); + SpaceWar.SpacePanel var15 = new SpaceWar.SpacePanel(); + float var16 = var15.getAlignmentX(); + var15.setVisible(false); + boolean var19 = var15.isDoubleBuffered(); + java.awt.dnd.DropTarget var20 = var15.getDropTarget(); + boolean var21 = var15.isFocusCycleRoot(); + SpaceWar.SpacePanel var22 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var23 = new SpaceWar.SpacePanel(); + java.awt.Color var24 = var23.getBackground(); + SpaceWar.SpacePanel var25 = new SpaceWar.SpacePanel(); + float var26 = var25.getAlignmentX(); + var25.setVisible(false); + var25.nextFocus(); + var25.updateUI(); + var25.enableInputMethods(true); + var22.add((java.awt.Component)var23, (java.lang.Object)true); + java.awt.Dimension var34 = var23.getPreferredSize(); + var15.setSize(var34); + var0.setMaximumSize(var34); + var0.enable(); + var0.repaint(0L); + var0.list(); + boolean var41 = var0.isFocusable(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var34); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var41 == true); + + } + + public void test144() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test144"); + + + SpaceWar.Explosion var4 = new SpaceWar.Explosion(514.6637810615505d, (-8.529389630162045d), 3, 500); + boolean var5 = var4.update(); + boolean var6 = var4.update(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == false); + + } + + public void test145() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test145"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + java.awt.Dimension var4 = var0.getPreferredSize(); + java.awt.Toolkit var5 = var0.getToolkit(); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + var6.setName(""); + int var9 = var6.getX(); + SpaceWar.SpacePanel var10 = new SpaceWar.SpacePanel(); + float var11 = var10.getAlignmentX(); + var10.setVisible(false); + var10.nextFocus(); + SpaceWar.SpacePanel var15 = new SpaceWar.SpacePanel(); + float var16 = var15.getAlignmentX(); + var15.setVisible(false); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + java.awt.Color var20 = var19.getBackground(); + var15.setForeground(var20); + var10.setBackground(var20); + var6.setBackground(var20); + var0.setForeground(var20); + SpaceWar.SpacePanel var25 = new SpaceWar.SpacePanel(); + float var26 = var25.getAlignmentX(); + var25.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var31 = new SpaceWar.SpacePanel(); + float var32 = var31.getAlignmentX(); + var31.setVisible(false); + java.awt.Dimension var35 = var31.getPreferredSize(); + var25.setMaximumSize(var35); + boolean var37 = var25.getVerifyInputWhenFocusTarget(); + javax.accessibility.AccessibleContext var38 = var25.getAccessibleContext(); + boolean var39 = var25.isDoubleBuffered(); + java.awt.Rectangle var40 = var25.getVisibleRect(); + var0.scrollRectToVisible(var40); + SpaceWar.SpacePanel var42 = new SpaceWar.SpacePanel(); + float var43 = var42.getAlignmentX(); + var42.setVisible(false); + java.awt.Dimension var46 = var42.getPreferredSize(); + java.awt.Toolkit var47 = var42.getToolkit(); + SpaceWar.SpacePanel var48 = new SpaceWar.SpacePanel(); + var48.setName(""); + int var51 = var48.getX(); + SpaceWar.SpacePanel var52 = new SpaceWar.SpacePanel(); + float var53 = var52.getAlignmentX(); + var52.setVisible(false); + var52.nextFocus(); + SpaceWar.SpacePanel var57 = new SpaceWar.SpacePanel(); + float var58 = var57.getAlignmentX(); + var57.setVisible(false); + SpaceWar.SpacePanel var61 = new SpaceWar.SpacePanel(); + java.awt.Color var62 = var61.getBackground(); + var57.setForeground(var62); + var52.setBackground(var62); + var48.setBackground(var62); + var42.setForeground(var62); + SpaceWar.SpacePanel var67 = new SpaceWar.SpacePanel(); + float var68 = var67.getAlignmentX(); + var67.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var73 = new SpaceWar.SpacePanel(); + float var74 = var73.getAlignmentX(); + var73.setVisible(false); + java.awt.Dimension var77 = var73.getPreferredSize(); + var67.setMaximumSize(var77); + boolean var79 = var67.getVerifyInputWhenFocusTarget(); + javax.accessibility.AccessibleContext var80 = var67.getAccessibleContext(); + boolean var81 = var67.isDoubleBuffered(); + java.awt.Rectangle var82 = var67.getVisibleRect(); + var42.scrollRectToVisible(var82); + var0.removeKeyListener((java.awt.event.KeyListener)var42); + var42.firePropertyChange("PanelUI", (short)1, (short)1); + int var89 = var42.getHeight(); + var42.layout(); + var42.resize(499, 24); + java.awt.Dimension var94 = var42.getMaximumSize(); + java.awt.Dimension var95 = var42.size(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var4); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var32 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var35); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var38); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var39 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var40); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var43 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var46); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var47); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var51 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var53 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var58 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var62); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var68 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var74 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var77); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var79 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var80); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var81 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var82); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var89 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var94); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var95); + + } + + public void test146() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test146"); + + + SpaceWar.Bullet var3 = new SpaceWar.Bullet(594.7973940347722d, 3, 100); + boolean var4 = var3.update(); + boolean var5 = var3.update(); + boolean var6 = var3.update(); + double var7 = var3.getR(); + double var8 = var3.getY(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 5.0d); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 75.48643960578549d); + + } + + public void test147() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test147"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + SpaceWar.SpacePanel var4 = new SpaceWar.SpacePanel(); + java.awt.Color var5 = var4.getBackground(); + var0.setForeground(var5); + SpaceWar.SpacePanel var7 = new SpaceWar.SpacePanel(); + float var8 = var7.getAlignmentX(); + var7.setVisible(false); + boolean var11 = var7.isDoubleBuffered(); + java.awt.dnd.DropTarget var12 = var7.getDropTarget(); + var7.show(false); + java.awt.Rectangle var15 = var7.getVisibleRect(); + var0.repaint(var15); + java.awt.FocusTraversalPolicy var17 = var0.getFocusTraversalPolicy(); + var0.resetKeyboardActions(); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + float var20 = var19.getAlignmentX(); + var19.setVisible(false); + boolean var23 = var19.isDoubleBuffered(); + java.awt.dnd.DropTarget var24 = var19.getDropTarget(); + var19.show(false); + java.awt.Rectangle var27 = var19.getVisibleRect(); + var0.computeVisibleRect(var27); + java.awt.Dimension var29 = var0.getMinimumSize(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var27); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var29); + + } + + public void test148() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test148"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.updateUI(); + var0.enableInputMethods(true); + java.awt.Point var9 = var0.getMousePosition(false); + java.awt.Point var10 = var0.getMousePosition(); + SpaceWar.SpacePanel var11 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var12 = new SpaceWar.SpacePanel(); + java.awt.Color var13 = var12.getBackground(); + SpaceWar.SpacePanel var14 = new SpaceWar.SpacePanel(); + float var15 = var14.getAlignmentX(); + var14.setVisible(false); + var14.nextFocus(); + var14.updateUI(); + var14.enableInputMethods(true); + var11.add((java.awt.Component)var12, (java.lang.Object)true); + boolean var23 = var11.isMinimumSizeSet(); + java.awt.event.HierarchyListener[] var24 = var11.getHierarchyListeners(); + SpaceWar.SpacePanel var25 = new SpaceWar.SpacePanel(); + float var26 = var25.getAlignmentX(); + var25.setVisible(false); + SpaceWar.SpacePanel var29 = new SpaceWar.SpacePanel(); + java.awt.Color var30 = var29.getBackground(); + var25.setForeground(var30); + SpaceWar.SpacePanel var32 = new SpaceWar.SpacePanel(); + float var33 = var32.getAlignmentX(); + var32.setVisible(false); + boolean var36 = var32.isDoubleBuffered(); + java.awt.dnd.DropTarget var37 = var32.getDropTarget(); + var32.show(false); + java.awt.Rectangle var40 = var32.getVisibleRect(); + var25.repaint(var40); + java.awt.FocusTraversalPolicy var42 = var25.getFocusTraversalPolicy(); + java.awt.im.InputMethodRequests var43 = var25.getInputMethodRequests(); + var25.layout(); + boolean var45 = var25.isFocusTraversalPolicyProvider(); + java.lang.Object var46 = var11.getClientProperty((java.lang.Object)var45); + java.awt.Dimension var47 = var11.getSize(); + var0.resize(var47); + var0.setRequestFocusEnabled(true); + javax.accessibility.AccessibleContext var51 = var0.getAccessibleContext(); + var0.firePropertyChange("SpaceWar.SpacePanel[,-1,1,-1x10,invalid,hidden,disabled,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", 'a', '#'); + var0.setSize(99, 400); + java.awt.event.KeyListener[] var59 = var0.getKeyListeners(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNull(var9); + + // Regression assertion (captures the current behavior of the code) + assertNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var30); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var33 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var36 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var37); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var40); + + // Regression assertion (captures the current behavior of the code) + assertNull(var42); + + // Regression assertion (captures the current behavior of the code) + assertNull(var43); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var45 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var46); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var47); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var51); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var59); + + } + + public void test149() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test149"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var6 = var0.getMouseListeners(); + java.awt.Dimension var7 = var0.getPreferredSize(); + java.util.Locale var8 = var0.getLocale(); + java.awt.Font var9 = var0.getFont(); + boolean var10 = var0.isForegroundSet(); + java.awt.event.HierarchyBoundsListener[] var11 = var0.getHierarchyBoundsListeners(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var9); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + } + + public void test150() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test150"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + var0.setRequestFocusEnabled(false); + var0.reshape(100, 0, 100, 0); + var0.requestFocus(); + var0.firePropertyChange("hi!", '4', ' '); + java.awt.Point var15 = var0.getLocation(); + java.awt.Dimension var16 = var0.size(); + java.awt.Image var19 = var0.createImage((-1), (-1)); + SpaceWar.SpacePanel var20 = new SpaceWar.SpacePanel(); + float var21 = var20.getAlignmentX(); + var20.setVisible(false); + boolean var24 = var20.isDoubleBuffered(); + java.awt.dnd.DropTarget var25 = var20.getDropTarget(); + var20.show(false); + boolean var28 = var20.isPaintingForPrint(); + SpaceWar.SpacePanel var29 = new SpaceWar.SpacePanel(); + float var30 = var29.getAlignmentX(); + var29.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var35 = var29.getMouseListeners(); + int var36 = var29.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var37 = var29.getInputMethodRequests(); + var20.addKeyListener((java.awt.event.KeyListener)var29); + var29.repaint(); + java.awt.Point var40 = var29.location(); + java.awt.Component var41 = var0.findComponentAt(var40); + java.awt.Dimension var42 = var0.getMaximumSize(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var24 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var25); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var28 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var30 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var35); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var36 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var37); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var40); + + // Regression assertion (captures the current behavior of the code) + assertNull(var41); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var42); + + } + + public void test151() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test151"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.setInheritsPopupMenu(false); + boolean var6 = var0.isDoubleBuffered(); + boolean var7 = var0.isMinimumSizeSet(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var14 = new SpaceWar.SpacePanel(); + float var15 = var14.getAlignmentX(); + var14.setVisible(false); + java.awt.Dimension var18 = var14.getPreferredSize(); + var8.setMaximumSize(var18); + boolean var20 = var8.getVerifyInputWhenFocusTarget(); + javax.accessibility.AccessibleContext var21 = var8.getAccessibleContext(); + boolean var22 = var8.isDoubleBuffered(); + java.awt.Rectangle var23 = var8.getVisibleRect(); + var0.setBounds(var23); + var0.enable(false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var21); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var22 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var23); + + } + + public void test152() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test152"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + var0.setRequestFocusEnabled(false); + var0.setIgnoreRepaint(false); + java.lang.String var7 = var0.toString(); + var0.repaint(1L, 400, 25, (-1), 25); + java.awt.event.MouseListener[] var14 = var0.getMouseListeners(); + var0.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", 3.0d, 495.44236387443226d); + java.beans.PropertyChangeListener[] var19 = var0.getPropertyChangeListeners(); + SpaceWar.SpacePanel var20 = new SpaceWar.SpacePanel(); + float var21 = var20.getAlignmentX(); + var20.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var26 = var20.getUI(); + java.awt.im.InputMethodRequests var27 = var20.getInputMethodRequests(); + SpaceWar.SpacePanel var28 = new SpaceWar.SpacePanel(); + float var29 = var28.getAlignmentX(); + var28.setVisible(false); + var28.nextFocus(); + var28.updateUI(); + var28.enableInputMethods(true); + var28.setSize((-1), 1); + SpaceWar.SpacePanel var39 = new SpaceWar.SpacePanel(); + var39.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var20.add((java.awt.Component)var28, (java.lang.Object)"SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + SpaceWar.SpacePanel var45 = new SpaceWar.SpacePanel(); + float var46 = var45.getAlignmentX(); + var45.setVisible(false); + java.awt.Dimension var49 = var45.getPreferredSize(); + java.awt.Toolkit var50 = var45.getToolkit(); + java.awt.Toolkit var51 = var45.getToolkit(); + java.awt.Component var52 = var28.add((java.awt.Component)var45); + var28.setDebugGraphicsOptions(0); + java.awt.im.InputMethodRequests var55 = var28.getInputMethodRequests(); + SpaceWar.SpacePanel var56 = new SpaceWar.SpacePanel(); + java.awt.Color var57 = var56.getBackground(); + var28.setForeground(var57); + var0.setForeground(var57); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var7 + "' != '" + "SpaceWar.SpacePanel[,0,0,0var7,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"+ "'", var7.equals("SpaceWar.SpacePanel[,0,0,0var7,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]")); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertNull(var27); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var29 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var46 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var49); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var50); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var51); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var52); + + // Regression assertion (captures the current behavior of the code) + assertNull(var55); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var57); + + } + + public void test153() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test153"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + boolean var5 = javax.swing.JComponent.isLightweightComponent((java.awt.Component)var0); + int var6 = var0.countComponents(); + var0.resize((-1), 3); + boolean var10 = var0.requestDefaultFocus(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == false); + + } + + public void test154() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test154"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var6 = var0.getUI(); + java.awt.im.InputMethodRequests var7 = var0.getInputMethodRequests(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + var8.nextFocus(); + var8.updateUI(); + var8.enableInputMethods(true); + var8.setSize((-1), 1); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + var19.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var0.add((java.awt.Component)var8, (java.lang.Object)"SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + boolean var25 = var0.isCursorSet(); + javax.swing.TransferHandler var26 = var0.getTransferHandler(); + var0.doLayout(); + javax.swing.JPopupMenu var28 = var0.getComponentPopupMenu(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertNull(var28); + + } + + public void test155() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test155"); + + + SpaceWar.Player var0 = new SpaceWar.Player(); + var0.increasePower(25); + int var3 = var0.getScore(); + var0.setRigth(true); + var0.loseLife(); + int var7 = var0.getPower(); + int var8 = var0.getX(); + int var9 = var0.getPower(); + int var10 = var0.getX(); + int var11 = var0.getR(); + int var12 = var0.getX(); + boolean var13 = var0.isDead(); + var0.setUp(true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 24); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 400); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 24); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 400); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == 25); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == 400); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == false); + + } + + public void test156() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test156"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + var0.setRequestFocusEnabled(false); + var0.reshape(100, 0, 100, 0); + var0.requestFocus(); + java.awt.Rectangle var11 = var0.getVisibleRect(); + java.awt.Rectangle var12 = var0.getBounds(); + java.awt.im.InputMethodRequests var13 = var0.getInputMethodRequests(); + boolean var14 = var0.requestFocusInWindow(); + java.awt.Rectangle var15 = var0.bounds(); + SpaceWar.SpacePanel var16 = new SpaceWar.SpacePanel(); + float var17 = var16.getAlignmentX(); + var16.setVisible(false); + var16.nextFocus(); + var16.reshape((-1), 1, (-1), 10); + var16.disable(); + boolean var27 = var16.isFocusable(); + java.awt.Dimension var28 = var16.getSize(); + var0.setSize(var28); + java.awt.Container var30 = var0.getFocusCycleRootAncestor(); + boolean var31 = var0.getAutoscrolls(); + int var32 = var0.getX(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var28); + + // Regression assertion (captures the current behavior of the code) + assertNull(var30); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var31 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var32 == 100); + + } + + public void test157() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test157"); + + + SpaceWar.Player var0 = new SpaceWar.Player(); + var0.increasePower(25); + int var3 = var0.getR(); + var0.setRigth(true); + boolean var6 = var0.isDead(); + var0.setLeft(false); + int var9 = var0.getPowerLevel(); + int var10 = var0.getR(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == 25); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 1); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 25); + + } + + public void test158() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test158"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.Graphics var5 = var0.getGraphics(); + boolean var6 = var0.isMinimumSizeSet(); + var0.hide(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + var8.setEnabled(false); + var8.invalidate(); + SpaceWar.SpacePanel var16 = new SpaceWar.SpacePanel(); + float var17 = var16.getAlignmentX(); + var16.setVisible(false); + var16.nextFocus(); + var16.updateUI(); + var16.enableInputMethods(true); + SpaceWar.SpacePanel var24 = new SpaceWar.SpacePanel(); + float var25 = var24.getAlignmentX(); + boolean var26 = var24.hasFocus(); + java.awt.Insets var27 = var24.getInsets(); + java.awt.Insets var28 = var16.getInsets(var27); + boolean var29 = var16.isManagingFocus(); + java.awt.Image var32 = var16.createImage(1, 10); + SpaceWar.SpacePanel var33 = new SpaceWar.SpacePanel(); + float var34 = var33.getAlignmentX(); + var33.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var39 = new SpaceWar.SpacePanel(); + float var40 = var39.getAlignmentX(); + var39.setVisible(false); + java.awt.Dimension var43 = var39.getPreferredSize(); + var33.setMaximumSize(var43); + boolean var45 = var33.getVerifyInputWhenFocusTarget(); + int var46 = var33.getX(); + SpaceWar.SpacePanel var47 = new SpaceWar.SpacePanel(); + float var48 = var47.getAlignmentX(); + var47.setVisible(false); + var47.setEnabled(false); + var16.add((java.awt.Component)var33, (java.lang.Object)false); + boolean var54 = var16.isForegroundSet(); + java.awt.Component var55 = var8.add("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", (java.awt.Component)var16); + var16.revalidate(); + SpaceWar.SpacePanel var57 = new SpaceWar.SpacePanel(); + var57.setName(""); + java.awt.Toolkit var60 = var57.getToolkit(); + var57.setEnabled(false); + var57.removeNotify(); + boolean var64 = var57.isDisplayable(); + SpaceWar.SpacePanel var65 = new SpaceWar.SpacePanel(); + java.awt.Color var66 = var65.getBackground(); + var65.repaint(); + var65.setRequestFocusEnabled(false); + var65.reshape(100, 0, 100, 0); + var65.requestFocus(); + java.awt.Rectangle var76 = var65.getVisibleRect(); + java.awt.Rectangle var77 = var65.getBounds(); + java.awt.im.InputMethodRequests var78 = var65.getInputMethodRequests(); + boolean var79 = var65.requestFocusInWindow(); + java.awt.Point var81 = var65.getMousePosition(false); + var65.setDebugGraphicsOptions(1); + java.awt.Graphics var84 = var65.getGraphics(); + var57.paintAll(var84); + var16.print(var84); + var0.printComponents(var84); + java.awt.LayoutManager var88 = var0.getLayout(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var27); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var28); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var29 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var32); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var34 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var40 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var43); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var45 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var46 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var48 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var54 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var55); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var60); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var64 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var66); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var76); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var77); + + // Regression assertion (captures the current behavior of the code) + assertNull(var78); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var79 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var81); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var84); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var88); + + } + + public void test159() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test159"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.reshape((-1), 1, (-1), 10); + SpaceWar.SpacePanel var10 = new SpaceWar.SpacePanel(); + java.awt.Color var11 = var10.getBackground(); + var10.repaint(); + var10.setRequestFocusEnabled(false); + var10.reshape(100, 0, 100, 0); + java.awt.Component var20 = var0.add((java.awt.Component)var10); + var0.removeNotify(); + var0.requestFocus(); + var0.setFocusCycleRoot(false); + var0.layout(); + java.lang.String var26 = var0.toString(); + javax.swing.JToolTip var27 = var0.createToolTip(); + java.awt.Component[] var28 = var0.getComponents(); + var0.setVerifyInputWhenFocusTarget(false); + var0.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", 'a', ' '); + java.lang.String var35 = var0.getName(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var26 + "' != '" + "SpaceWar.SpacePanel[,-1,1,-1x10,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"+ "'", var26.equals("SpaceWar.SpacePanel[,-1,1,-1x10,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]")); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var27); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var28); + + // Regression assertion (captures the current behavior of the code) + assertNull(var35); + + } + + public void test160() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test160"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.reshape((-1), 1, (-1), 10); + var0.disable(); + boolean var11 = var0.isFocusable(); + int var12 = var0.getHeight(); + javax.swing.InputVerifier var13 = var0.getInputVerifier(); + java.awt.Graphics var14 = var0.getGraphics(); + SpaceWar.SpacePanel var15 = new SpaceWar.SpacePanel(); + float var16 = var15.getAlignmentX(); + var15.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var21 = var15.getMouseListeners(); + java.awt.Dimension var22 = var15.getPreferredSize(); + java.util.Locale var23 = var15.getLocale(); + java.awt.Font var24 = var15.getFont(); + java.awt.Color var25 = var15.getForeground(); + var0.setForeground(var25); + // The following exception was thrown during execution. + // This behavior will recorded for regression testing. + try { + java.awt.Point var27 = var0.getLocationOnScreen(); + fail("Expected exception of type java.awt.IllegalComponentStateException"); + } catch (java.awt.IllegalComponentStateException e) { + // Expected exception. + } + + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == 10); + + // Regression assertion (captures the current behavior of the code) + assertNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var21); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var23); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var25); + + } + + public void test161() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test161"); + + + SpaceWar.Player var0 = new SpaceWar.Player(); + int var1 = var0.getPower(); + var0.setLeft(true); + var0.increasePower(0); + int var6 = var0.getRequiredPower(); + int var7 = var0.getR(); + var0.setRigth(true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == 1); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 25); + + } + + public void test162() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test162"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.reshape((-1), 1, (-1), 10); + var0.disable(); + boolean var11 = var0.isFocusable(); + SpaceWar.SpacePanel var12 = new SpaceWar.SpacePanel(); + float var13 = var12.getAlignmentX(); + var12.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var18 = var12.getUI(); + java.awt.im.InputMethodRequests var19 = var12.getInputMethodRequests(); + SpaceWar.SpacePanel var20 = new SpaceWar.SpacePanel(); + float var21 = var20.getAlignmentX(); + var20.setVisible(false); + var20.nextFocus(); + var20.updateUI(); + var20.enableInputMethods(true); + var20.setSize((-1), 1); + SpaceWar.SpacePanel var31 = new SpaceWar.SpacePanel(); + var31.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var12.add((java.awt.Component)var20, (java.lang.Object)"SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + java.awt.event.KeyListener[] var37 = var12.getKeyListeners(); + java.awt.FocusTraversalPolicy var38 = var12.getFocusTraversalPolicy(); + SpaceWar.SpacePanel var39 = new SpaceWar.SpacePanel(); + var39.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + java.awt.Toolkit var44 = var39.getToolkit(); + var0.add((java.awt.Component)var12, (java.lang.Object)var39); + java.beans.VetoableChangeListener[] var46 = var39.getVetoableChangeListeners(); + var39.setSize(10, 25); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var37); + + // Regression assertion (captures the current behavior of the code) + assertNull(var38); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var44); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var46); + + } + + public void test163() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test163"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var1 = new SpaceWar.SpacePanel(); + java.awt.Color var2 = var1.getBackground(); + SpaceWar.SpacePanel var3 = new SpaceWar.SpacePanel(); + float var4 = var3.getAlignmentX(); + var3.setVisible(false); + var3.nextFocus(); + var3.updateUI(); + var3.enableInputMethods(true); + var0.add((java.awt.Component)var1, (java.lang.Object)true); + java.awt.Image var14 = var1.createImage(1, (-1)); + java.awt.event.MouseListener[] var15 = var1.getMouseListeners(); + var1.firePropertyChange("PanelUI", 499, 2); + var1.addNotify(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var2); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + } + + public void test164() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test164"); + + + SpaceWar.Enemy var2 = new SpaceWar.Enemy(500, 3); + double var3 = var2.getX(); + double var4 = var2.getX(); + int var5 = var2.getType(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == 534.487056784109d); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 534.487056784109d); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == 500); + + } + + public void test165() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test165"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + SpaceWar.SpacePanel var5 = new SpaceWar.SpacePanel(); + java.awt.Color var6 = var5.getBackground(); + var5.repaint(); + java.lang.Object var8 = var0.getClientProperty((java.lang.Object)var5); + var5.repaint(1L); + SpaceWar.SpacePanel var11 = new SpaceWar.SpacePanel(); + float var12 = var11.getAlignmentX(); + var11.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var17 = new SpaceWar.SpacePanel(); + float var18 = var17.getAlignmentX(); + var17.setVisible(false); + SpaceWar.SpacePanel var21 = new SpaceWar.SpacePanel(); + java.awt.Color var22 = var21.getBackground(); + var17.setForeground(var22); + var11.setBackground(var22); + var11.grabFocus(); + SpaceWar.SpacePanel var26 = new SpaceWar.SpacePanel(); + float var27 = var26.getAlignmentX(); + var26.setVisible(false); + boolean var30 = var26.isDoubleBuffered(); + java.awt.dnd.DropTarget var31 = var26.getDropTarget(); + boolean var32 = var26.isFocusCycleRoot(); + SpaceWar.SpacePanel var33 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var34 = new SpaceWar.SpacePanel(); + java.awt.Color var35 = var34.getBackground(); + SpaceWar.SpacePanel var36 = new SpaceWar.SpacePanel(); + float var37 = var36.getAlignmentX(); + var36.setVisible(false); + var36.nextFocus(); + var36.updateUI(); + var36.enableInputMethods(true); + var33.add((java.awt.Component)var34, (java.lang.Object)true); + java.awt.Dimension var45 = var34.getPreferredSize(); + var26.setSize(var45); + var11.setMaximumSize(var45); + float var48 = var11.getAlignmentY(); + java.lang.String var49 = var11.getToolTipText(); + var5.addKeyListener((java.awt.event.KeyListener)var11); + int var51 = var5.getWidth(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var30 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var31); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var32 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var35); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var45); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var48 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNull(var49); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var51 == 0); + + } + + public void test166() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test166"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var6 = var0.getUI(); + java.awt.im.InputMethodRequests var7 = var0.getInputMethodRequests(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + var8.nextFocus(); + var8.updateUI(); + var8.enableInputMethods(true); + var8.setSize((-1), 1); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + var19.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var0.add((java.awt.Component)var8, (java.lang.Object)"SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + boolean var25 = var0.isCursorSet(); + var0.transferFocusDownCycle(); + java.awt.Dimension var27 = var0.getPreferredSize(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var27); + + } + + public void test167() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test167"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var6 = var0.getMouseListeners(); + int var7 = var0.getDebugGraphicsOptions(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + boolean var12 = var8.isDoubleBuffered(); + java.awt.dnd.DropTarget var13 = var8.getDropTarget(); + var8.show(false); + java.awt.Rectangle var16 = var8.getVisibleRect(); + var0.paintImmediately(var16); + java.awt.Rectangle var18 = var0.getBounds(); + java.beans.PropertyChangeListener[] var20 = var0.getPropertyChangeListeners("SpaceWar.SpacePanel[,0,0,0x0,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + java.awt.Insets var21 = var0.getInsets(); + boolean var22 = var0.getIgnoreRepaint(); + boolean var23 = var0.isManagingFocus(); + java.awt.Point var24 = var0.getMousePosition(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var21); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var22 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var24); + + } + + public void test168() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test168"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + var0.setName(""); + java.awt.Dimension var3 = var0.minimumSize(); + boolean var4 = var0.isDoubleBuffered(); + SpaceWar.SpacePanel var5 = new SpaceWar.SpacePanel(); + float var6 = var5.getAlignmentX(); + var5.setVisible(false); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + java.awt.Color var10 = var9.getBackground(); + var5.setForeground(var10); + SpaceWar.SpacePanel var12 = new SpaceWar.SpacePanel(); + float var13 = var12.getAlignmentX(); + var12.setVisible(false); + boolean var16 = var12.isDoubleBuffered(); + java.awt.dnd.DropTarget var17 = var12.getDropTarget(); + var12.show(false); + java.awt.Rectangle var20 = var12.getVisibleRect(); + var5.repaint(var20); + java.awt.FocusTraversalPolicy var22 = var5.getFocusTraversalPolicy(); + java.awt.im.InputMethodRequests var23 = var5.getInputMethodRequests(); + var5.layout(); + boolean var25 = var5.isFocusTraversalPolicyProvider(); + java.awt.Component var26 = var0.add((java.awt.Component)var5); + java.awt.event.MouseMotionListener[] var27 = var0.getMouseMotionListeners(); + var0.removeNotify(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertNull(var23); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var27); + + } + + public void test169() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test169"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.repaint(1L); + SpaceWar.SpacePanel var7 = new SpaceWar.SpacePanel(); + float var8 = var7.getAlignmentX(); + var7.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var13 = new SpaceWar.SpacePanel(); + float var14 = var13.getAlignmentX(); + var13.setVisible(false); + java.awt.Dimension var17 = var13.getPreferredSize(); + var7.setMaximumSize(var17); + var0.setPreferredSize(var17); + var0.hide(); + boolean var21 = var0.getIgnoreRepaint(); + SpaceWar.SpacePanel var22 = new SpaceWar.SpacePanel(); + float var23 = var22.getAlignmentX(); + var22.setVisible(false); + boolean var26 = var22.isDoubleBuffered(); + java.awt.dnd.DropTarget var27 = var22.getDropTarget(); + boolean var28 = var22.isFocusCycleRoot(); + var22.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", 100, 0); + SpaceWar.SpacePanel var33 = new SpaceWar.SpacePanel(); + float var34 = var33.getAlignmentX(); + var33.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var39 = var33.getUI(); + var22.setNextFocusableComponent((java.awt.Component)var33); + var22.repaint(1L, 1, 3, 0, 3); + SpaceWar.SpacePanel var47 = new SpaceWar.SpacePanel(); + float var48 = var47.getAlignmentX(); + var47.setVisible(false); + var47.nextFocus(); + var47.repaint(1L); + SpaceWar.SpacePanel var54 = new SpaceWar.SpacePanel(); + float var55 = var54.getAlignmentX(); + var54.setVisible(false); + boolean var58 = var54.isDoubleBuffered(); + var54.list(); + SpaceWar.SpacePanel var60 = new SpaceWar.SpacePanel(); + float var61 = var60.getAlignmentX(); + var60.setVisible(false); + boolean var64 = var60.isDoubleBuffered(); + java.awt.dnd.DropTarget var65 = var60.getDropTarget(); + var60.show(false); + java.awt.Rectangle var68 = var60.getVisibleRect(); + java.awt.Rectangle var69 = var54.getBounds(var68); + var47.setBounds(var69); + var22.computeVisibleRect(var69); + var0.repaint(var69); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var27); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var28 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var34 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var39); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var48 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var55 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var58 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var61 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var64 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var65); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var68); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var69); + + } + + public void test170() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test170"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var6 = var0.getUI(); + java.awt.im.InputMethodRequests var7 = var0.getInputMethodRequests(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + var8.nextFocus(); + var8.updateUI(); + var8.enableInputMethods(true); + var8.setSize((-1), 1); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + var19.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var0.add((java.awt.Component)var8, (java.lang.Object)"SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + SpaceWar.SpacePanel var25 = new SpaceWar.SpacePanel(); + float var26 = var25.getAlignmentX(); + var25.setVisible(false); + java.awt.Dimension var29 = var25.getPreferredSize(); + java.awt.Toolkit var30 = var25.getToolkit(); + java.awt.Toolkit var31 = var25.getToolkit(); + java.awt.Component var32 = var8.add((java.awt.Component)var25); + var8.setDebugGraphicsOptions(0); + var8.setVerifyInputWhenFocusTarget(false); + var8.nextFocus(); + var8.repaint(100, 0, 10, 3); + java.awt.ComponentOrientation var43 = var8.getComponentOrientation(); + java.awt.dnd.DropTarget var44 = var8.getDropTarget(); + java.lang.String var45 = var8.getName(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var29); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var30); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var31); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var32); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var43); + + // Regression assertion (captures the current behavior of the code) + assertNull(var44); + + // Regression assertion (captures the current behavior of the code) + assertNull(var45); + + } + + public void test171() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test171"); + + + SpaceWar.Player var0 = new SpaceWar.Player(); + var0.increasePower(25); + int var3 = var0.getScore(); + var0.setRigth(true); + var0.update(); + var0.setDown(false); + int var9 = var0.getPower(); + var0.setLeft(true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 24); + + } + + public void test172() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test172"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.updateUI(); + java.util.Locale var6 = var0.getLocale(); + var0.paintImmediately(25, 100, 3, 0); + boolean var12 = var0.isCursorSet(); + boolean var13 = var0.isCursorSet(); + boolean var14 = var0.getFocusTraversalKeysEnabled(); + var0.setVerifyInputWhenFocusTarget(false); + boolean var17 = var0.isFocusTraversalPolicySet(); + SpaceWar.SpacePanel var18 = new SpaceWar.SpacePanel(); + float var19 = var18.getAlignmentX(); + var18.setVisible(false); + boolean var22 = var18.isDoubleBuffered(); + var18.list(); + SpaceWar.SpacePanel var24 = new SpaceWar.SpacePanel(); + float var25 = var24.getAlignmentX(); + var24.setVisible(false); + boolean var28 = var24.isDoubleBuffered(); + java.awt.dnd.DropTarget var29 = var24.getDropTarget(); + var24.show(false); + java.awt.Rectangle var32 = var24.getVisibleRect(); + java.awt.image.BufferedImage var34 = var24.loadImg("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + boolean var35 = var18.isAncestorOf((java.awt.Component)var24); + SpaceWar.SpacePanel var36 = new SpaceWar.SpacePanel(); + java.awt.Color var37 = var36.getBackground(); + var36.repaint(); + var36.setRequestFocusEnabled(false); + var36.setIgnoreRepaint(false); + java.lang.String var43 = var36.toString(); + java.awt.Color var44 = var36.getBackground(); + SpaceWar.SpacePanel var45 = new SpaceWar.SpacePanel(); + float var46 = var45.getAlignmentX(); + var45.setVisible(false); + java.awt.Dimension var49 = var45.getPreferredSize(); + java.awt.Toolkit var50 = var45.getToolkit(); + java.awt.Toolkit var51 = var45.getToolkit(); + SpaceWar.Player var52 = new SpaceWar.Player(); + var52.increasePower(25); + int var55 = var52.getScore(); + var52.setRigth(true); + var52.loseLife(); + var36.putClientProperty((java.lang.Object)var45, (java.lang.Object)var52); + java.awt.Rectangle var60 = var45.bounds(); + java.awt.Rectangle var61 = var24.getBounds(var60); + var0.scrollRectToVisible(var61); + java.awt.Dimension var63 = var0.getSize(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var22 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var28 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var29); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var32); + + // Regression assertion (captures the current behavior of the code) + assertNull(var34); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var35 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var37); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var43 + "' != '" + "SpaceWar.SpacePanel[,0,0,0var43,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"+ "'", var43.equals("SpaceWar.SpacePanel[,0,0,0var43,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]")); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var44); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var46 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var49); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var50); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var51); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var55 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var60); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var61); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var63); + + } + + public void test173() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test173"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.reshape((-1), 1, (-1), 10); + var0.disable(); + java.awt.LayoutManager var11 = var0.getLayout(); + java.awt.Container var12 = var0.getParent(); + java.lang.String var13 = var0.getUIClassID(); + float var14 = var0.getAlignmentX(); + var0.enable(true); + boolean var17 = var0.isPaintingTile(); + javax.swing.plaf.PanelUI var18 = var0.getUI(); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + float var20 = var19.getAlignmentX(); + var19.setVisible(false); + java.awt.Dimension var23 = var19.getPreferredSize(); + java.awt.Toolkit var24 = var19.getToolkit(); + boolean var25 = var19.isFocusable(); + javax.swing.KeyStroke[] var26 = var19.getRegisteredKeyStrokes(); + SpaceWar.SpacePanel var27 = new SpaceWar.SpacePanel(); + float var28 = var27.getAlignmentX(); + SpaceWar.SpacePanel var29 = new SpaceWar.SpacePanel(); + float var30 = var29.getAlignmentX(); + var29.setVisible(false); + java.awt.Dimension var33 = var29.getPreferredSize(); + boolean var34 = var29.getVerifyInputWhenFocusTarget(); + java.awt.Component var37 = var29.findComponentAt(10, 1); + var27.addKeyListener((java.awt.event.KeyListener)var29); + var29.repaint(100, (-1), (-1), 1); + boolean var44 = var19.isAncestorOf((java.awt.Component)var29); + var19.nextFocus(); + var19.disable(); + java.awt.Dimension var47 = var19.size(); + var19.list(); + var19.hide(); + SpaceWar.SpacePanel var50 = new SpaceWar.SpacePanel(); + float var51 = var50.getAlignmentX(); + var50.setVisible(false); + var50.nextFocus(); + var50.reshape((-1), 1, (-1), 10); + var50.disable(); + java.awt.LayoutManager var61 = var50.getLayout(); + boolean var64 = var50.contains((-1), 0); + SpaceWar.SpacePanel var65 = new SpaceWar.SpacePanel(); + float var66 = var65.getAlignmentX(); + var65.setVisible(false); + var65.nextFocus(); + var65.updateUI(); + var65.enableInputMethods(true); + var65.setSize((-1), 1); + java.awt.Component var76 = var50.add((java.awt.Component)var65); + var65.nextFocus(); + boolean var78 = var65.hasFocus(); + javax.accessibility.AccessibleContext var79 = var65.getAccessibleContext(); + var0.putClientProperty((java.lang.Object)var19, (java.lang.Object)var65); + var0.setAutoscrolls(true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var13 + "' != '" + "PanelUI"+ "'", var13.equals("PanelUI")); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var23); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var28 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var30 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var33); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var34 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var37); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var44 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var47); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var51 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var61); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var64 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var66 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var76); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var78 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var79); + + } + + public void test174() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test174"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.reshape((-1), 1, (-1), 10); + var0.disable(); + java.awt.LayoutManager var11 = var0.getLayout(); + boolean var14 = var0.contains((-1), 0); + SpaceWar.SpacePanel var15 = new SpaceWar.SpacePanel(); + float var16 = var15.getAlignmentX(); + var15.setVisible(false); + var15.nextFocus(); + var15.updateUI(); + var15.enableInputMethods(true); + var15.setSize((-1), 1); + java.awt.Component var26 = var0.add((java.awt.Component)var15); + boolean var28 = var0.requestFocus(true); + SpaceWar.SpacePanel var29 = new SpaceWar.SpacePanel(); + java.awt.Color var30 = var29.getBackground(); + var29.repaint(); + var29.setRequestFocusEnabled(false); + var29.reshape(100, 0, 100, 0); + var29.requestFocus(); + var29.firePropertyChange("hi!", '4', ' '); + java.awt.Point var44 = var29.getLocation(); + java.awt.event.MouseWheelListener[] var45 = var29.getMouseWheelListeners(); + java.awt.Component var46 = var29.getNextFocusableComponent(); + boolean var47 = var29.requestDefaultFocus(); + SpaceWar.SpacePanel var48 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var49 = new SpaceWar.SpacePanel(); + java.awt.Color var50 = var49.getBackground(); + SpaceWar.SpacePanel var51 = new SpaceWar.SpacePanel(); + float var52 = var51.getAlignmentX(); + var51.setVisible(false); + var51.nextFocus(); + var51.updateUI(); + var51.enableInputMethods(true); + var48.add((java.awt.Component)var49, (java.lang.Object)true); + java.awt.Dimension var60 = var49.getPreferredSize(); + java.awt.Component[] var61 = var49.getComponents(); + var49.repaint(25, 25, 100, 1); + javax.swing.KeyStroke[] var67 = var49.getRegisteredKeyStrokes(); + var49.validate(); + boolean var69 = var29.isAncestorOf((java.awt.Component)var49); + java.awt.Point var70 = var49.location(); + boolean var71 = var0.contains(var70); + java.awt.Graphics var72 = var0.getGraphics(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var28 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var30); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var44); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var45); + + // Regression assertion (captures the current behavior of the code) + assertNull(var46); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var47 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var50); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var52 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var60); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var61); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var67); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var69 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var70); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var71 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var72); + + } + + public void test175() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test175"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + boolean var2 = var0.hasFocus(); + boolean var3 = var0.isPreferredSizeSet(); + SpaceWar.SpacePanel var4 = new SpaceWar.SpacePanel(); + java.awt.Color var5 = var4.getBackground(); + var4.repaint(); + var4.setRequestFocusEnabled(false); + int var9 = var0.getComponentZOrder((java.awt.Component)var4); + float var10 = var0.getAlignmentY(); + boolean var11 = var0.isFocusable(); + var0.enable(); + java.awt.Dimension var13 = var0.getMinimumSize(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var2 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == (-1)); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var13); + + } + + public void test176() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test176"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var6 = var0.getUI(); + java.awt.im.InputMethodRequests var7 = var0.getInputMethodRequests(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + var8.nextFocus(); + var8.updateUI(); + var8.enableInputMethods(true); + var8.setSize((-1), 1); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + var19.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var0.add((java.awt.Component)var8, (java.lang.Object)"SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + SpaceWar.SpacePanel var25 = new SpaceWar.SpacePanel(); + float var26 = var25.getAlignmentX(); + var25.setVisible(false); + java.awt.Dimension var29 = var25.getPreferredSize(); + java.awt.Toolkit var30 = var25.getToolkit(); + java.awt.Toolkit var31 = var25.getToolkit(); + java.awt.Component var32 = var8.add((java.awt.Component)var25); + var8.setDebugGraphicsOptions(0); + var8.setVerifyInputWhenFocusTarget(false); + var8.nextFocus(); + var8.repaint(100, 0, 10, 3); + java.awt.Dimension var43 = var8.getSize(); + boolean var44 = var8.isManagingFocus(); + var8.enable(); + java.awt.im.InputContext var46 = var8.getInputContext(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var29); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var30); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var31); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var32); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var43); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var44 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var46); + + } + + public void test177() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test177"); + + + SpaceWar.Enemy var2 = new SpaceWar.Enemy(0, 0); + var2.update(); + + } + + public void test178() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test178"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var6 = var0.getUI(); + java.awt.im.InputMethodRequests var7 = var0.getInputMethodRequests(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + var8.nextFocus(); + var8.updateUI(); + var8.enableInputMethods(true); + var8.setSize((-1), 1); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + var19.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var0.add((java.awt.Component)var8, (java.lang.Object)"SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + java.awt.event.KeyListener[] var25 = var0.getKeyListeners(); + boolean var26 = var0.isValidateRoot(); + var0.setDoubleBuffered(true); + SpaceWar.SpacePanel var29 = new SpaceWar.SpacePanel(); + float var30 = var29.getAlignmentX(); + var29.setVisible(false); + boolean var33 = var29.isDoubleBuffered(); + java.awt.dnd.DropTarget var34 = var29.getDropTarget(); + var29.show(false); + boolean var37 = var29.isPaintingForPrint(); + SpaceWar.SpacePanel var38 = new SpaceWar.SpacePanel(); + float var39 = var38.getAlignmentX(); + var38.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var44 = var38.getMouseListeners(); + int var45 = var38.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var46 = var38.getInputMethodRequests(); + var29.addKeyListener((java.awt.event.KeyListener)var38); + SpaceWar.SpacePanel var48 = new SpaceWar.SpacePanel(); + float var49 = var48.getAlignmentX(); + var48.setVisible(false); + boolean var52 = var48.isDoubleBuffered(); + var48.list(); + float var54 = var48.getAlignmentY(); + boolean var55 = var38.isFocusCycleRoot((java.awt.Container)var48); + SpaceWar.SpacePanel var57 = new SpaceWar.SpacePanel(); + float var58 = var57.getAlignmentX(); + var57.setVisible(false); + var57.nextFocus(); + var57.updateUI(); + java.awt.Component var63 = var38.add("", (java.awt.Component)var57); + java.awt.ComponentOrientation var64 = var57.getComponentOrientation(); + var0.setComponentOrientation(var64); + java.awt.event.MouseListener[] var66 = var0.getMouseListeners(); + int var69 = var0.getBaseline(498, 10); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var25); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var30 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var33 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var34); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var39 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var44); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var45 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var46); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var49 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var52 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var54 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var55 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var58 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var63); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var64); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var66); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var69 == (-1)); + + } + + public void test179() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test179"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var6 = var0.getMouseListeners(); + int var7 = var0.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var8 = var0.getInputMethodRequests(); + var0.removeNotify(); + var0.enable(); + java.lang.Object var11 = var0.getTreeLock(); + var0.setAlignmentY(0.0f); + var0.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=1.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", '#', ' '); + java.awt.Component.BaselineResizeBehavior var18 = var0.getBaselineResizeBehavior(); + boolean var19 = var0.isFocusTraversalPolicySet(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == false); + + } + + public void test180() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test180"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + java.awt.Dimension var4 = var0.getPreferredSize(); + java.awt.Toolkit var5 = var0.getToolkit(); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + var6.setName(""); + int var9 = var6.getX(); + SpaceWar.SpacePanel var10 = new SpaceWar.SpacePanel(); + float var11 = var10.getAlignmentX(); + var10.setVisible(false); + var10.nextFocus(); + SpaceWar.SpacePanel var15 = new SpaceWar.SpacePanel(); + float var16 = var15.getAlignmentX(); + var15.setVisible(false); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + java.awt.Color var20 = var19.getBackground(); + var15.setForeground(var20); + var10.setBackground(var20); + var6.setBackground(var20); + var0.setForeground(var20); + SpaceWar.SpacePanel var25 = new SpaceWar.SpacePanel(); + float var26 = var25.getAlignmentX(); + var25.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var31 = new SpaceWar.SpacePanel(); + float var32 = var31.getAlignmentX(); + var31.setVisible(false); + java.awt.Dimension var35 = var31.getPreferredSize(); + var25.setMaximumSize(var35); + boolean var37 = var25.getVerifyInputWhenFocusTarget(); + javax.accessibility.AccessibleContext var38 = var25.getAccessibleContext(); + boolean var39 = var25.isDoubleBuffered(); + java.awt.Rectangle var40 = var25.getVisibleRect(); + var0.scrollRectToVisible(var40); + SpaceWar.SpacePanel var42 = new SpaceWar.SpacePanel(); + float var43 = var42.getAlignmentX(); + var42.setVisible(false); + java.awt.Dimension var46 = var42.getPreferredSize(); + java.awt.Toolkit var47 = var42.getToolkit(); + SpaceWar.SpacePanel var48 = new SpaceWar.SpacePanel(); + var48.setName(""); + int var51 = var48.getX(); + SpaceWar.SpacePanel var52 = new SpaceWar.SpacePanel(); + float var53 = var52.getAlignmentX(); + var52.setVisible(false); + var52.nextFocus(); + SpaceWar.SpacePanel var57 = new SpaceWar.SpacePanel(); + float var58 = var57.getAlignmentX(); + var57.setVisible(false); + SpaceWar.SpacePanel var61 = new SpaceWar.SpacePanel(); + java.awt.Color var62 = var61.getBackground(); + var57.setForeground(var62); + var52.setBackground(var62); + var48.setBackground(var62); + var42.setForeground(var62); + SpaceWar.SpacePanel var67 = new SpaceWar.SpacePanel(); + float var68 = var67.getAlignmentX(); + var67.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var73 = new SpaceWar.SpacePanel(); + float var74 = var73.getAlignmentX(); + var73.setVisible(false); + java.awt.Dimension var77 = var73.getPreferredSize(); + var67.setMaximumSize(var77); + boolean var79 = var67.getVerifyInputWhenFocusTarget(); + javax.accessibility.AccessibleContext var80 = var67.getAccessibleContext(); + boolean var81 = var67.isDoubleBuffered(); + java.awt.Rectangle var82 = var67.getVisibleRect(); + var42.scrollRectToVisible(var82); + var0.removeKeyListener((java.awt.event.KeyListener)var42); + var42.firePropertyChange("PanelUI", (short)1, (short)1); + int var89 = var42.getHeight(); + var42.layout(); + java.awt.Component var93 = var42.getComponentAt(2, 399); + var42.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=1.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", true, true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var4); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var32 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var35); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var38); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var39 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var40); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var43 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var46); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var47); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var51 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var53 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var58 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var62); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var68 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var74 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var77); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var79 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var80); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var81 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var82); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var89 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var93); + + } + + public void test181() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test181"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var6 = var0.getUI(); + java.awt.im.InputMethodRequests var7 = var0.getInputMethodRequests(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + var8.nextFocus(); + var8.updateUI(); + var8.enableInputMethods(true); + var8.setSize((-1), 1); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + var19.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var0.add((java.awt.Component)var8, (java.lang.Object)"SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + SpaceWar.SpacePanel var25 = new SpaceWar.SpacePanel(); + float var26 = var25.getAlignmentX(); + var25.setVisible(false); + var25.setInheritsPopupMenu(false); + boolean var31 = var25.isDoubleBuffered(); + boolean var32 = var25.isMinimumSizeSet(); + SpaceWar.SpacePanel var33 = new SpaceWar.SpacePanel(); + float var34 = var33.getAlignmentX(); + var33.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var39 = new SpaceWar.SpacePanel(); + float var40 = var39.getAlignmentX(); + var39.setVisible(false); + java.awt.Dimension var43 = var39.getPreferredSize(); + var33.setMaximumSize(var43); + boolean var45 = var33.getVerifyInputWhenFocusTarget(); + javax.accessibility.AccessibleContext var46 = var33.getAccessibleContext(); + boolean var47 = var33.isDoubleBuffered(); + java.awt.Rectangle var48 = var33.getVisibleRect(); + var25.setBounds(var48); + java.awt.Rectangle var50 = var0.getBounds(var48); + SpaceWar.SpacePanel var51 = new SpaceWar.SpacePanel(); + float var52 = var51.getAlignmentX(); + var51.setVisible(false); + boolean var55 = var51.isDoubleBuffered(); + java.awt.dnd.DropTarget var56 = var51.getDropTarget(); + var51.show(false); + boolean var59 = var51.isPaintingForPrint(); + SpaceWar.SpacePanel var60 = new SpaceWar.SpacePanel(); + float var61 = var60.getAlignmentX(); + var60.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var66 = var60.getMouseListeners(); + int var67 = var60.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var68 = var60.getInputMethodRequests(); + var51.addKeyListener((java.awt.event.KeyListener)var60); + SpaceWar.SpacePanel var70 = new SpaceWar.SpacePanel(); + float var71 = var70.getAlignmentX(); + var70.setVisible(false); + boolean var74 = var70.isDoubleBuffered(); + var70.list(); + float var76 = var70.getAlignmentY(); + boolean var77 = var60.isFocusCycleRoot((java.awt.Container)var70); + SpaceWar.SpacePanel var79 = new SpaceWar.SpacePanel(); + float var80 = var79.getAlignmentX(); + var79.setVisible(false); + var79.nextFocus(); + var79.updateUI(); + java.awt.Component var85 = var60.add("", (java.awt.Component)var79); + java.awt.ComponentOrientation var86 = var79.getComponentOrientation(); + var0.applyComponentOrientation(var86); + var0.requestFocus(); + boolean var89 = var0.getAutoscrolls(); + java.awt.ComponentOrientation var90 = var0.getComponentOrientation(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var31 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var32 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var34 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var40 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var43); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var45 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var46); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var47 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var48); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var50); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var52 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var55 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var56); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var59 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var61 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var66); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var67 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var68); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var71 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var74 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var76 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var77 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var80 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var85); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var86); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var89 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var90); + + } + + public void test182() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test182"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var1 = new SpaceWar.SpacePanel(); + java.awt.Color var2 = var1.getBackground(); + SpaceWar.SpacePanel var3 = new SpaceWar.SpacePanel(); + float var4 = var3.getAlignmentX(); + var3.setVisible(false); + var3.nextFocus(); + var3.updateUI(); + var3.enableInputMethods(true); + var0.add((java.awt.Component)var1, (java.lang.Object)true); + java.awt.Image var14 = var1.createImage(1, (-1)); + java.awt.event.MouseListener[] var15 = var1.getMouseListeners(); + java.awt.Color var16 = var1.getBackground(); + boolean var17 = var1.getIgnoreRepaint(); + javax.swing.InputMap var18 = var1.getInputMap(); + var1.addNotify(); + SpaceWar.SpacePanel var20 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var21 = new SpaceWar.SpacePanel(); + java.awt.Color var22 = var21.getBackground(); + SpaceWar.SpacePanel var23 = new SpaceWar.SpacePanel(); + float var24 = var23.getAlignmentX(); + var23.setVisible(false); + var23.nextFocus(); + var23.updateUI(); + var23.enableInputMethods(true); + var20.add((java.awt.Component)var21, (java.lang.Object)true); + java.awt.Dimension var32 = var21.getPreferredSize(); + java.awt.Component[] var33 = var21.getComponents(); + var21.repaint(25, 25, 100, 1); + var21.nextFocus(); + SpaceWar.SpacePanel var40 = new SpaceWar.SpacePanel(); + float var41 = var40.getAlignmentX(); + var40.setVisible(false); + var40.nextFocus(); + var40.reshape((-1), 1, (-1), 10); + var40.disable(); + java.awt.LayoutManager var51 = var40.getLayout(); + var40.setVisible(false); + SpaceWar.SpacePanel var54 = new SpaceWar.SpacePanel(); + float var55 = var54.getAlignmentX(); + var54.setVisible(false); + var54.setInheritsPopupMenu(false); + boolean var60 = var54.isDoubleBuffered(); + boolean var61 = var54.isMinimumSizeSet(); + SpaceWar.SpacePanel var62 = new SpaceWar.SpacePanel(); + float var63 = var62.getAlignmentX(); + var62.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var68 = new SpaceWar.SpacePanel(); + float var69 = var68.getAlignmentX(); + var68.setVisible(false); + java.awt.Dimension var72 = var68.getPreferredSize(); + var62.setMaximumSize(var72); + boolean var74 = var62.getVerifyInputWhenFocusTarget(); + javax.accessibility.AccessibleContext var75 = var62.getAccessibleContext(); + boolean var76 = var62.isDoubleBuffered(); + java.awt.Rectangle var77 = var62.getVisibleRect(); + var54.setBounds(var77); + var40.computeVisibleRect(var77); + var21.repaint(var77); + var1.setBounds(var77); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var2); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var24 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var32); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var33); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var41 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var51); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var55 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var60 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var61 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var63 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var69 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var72); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var74 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var75); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var76 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var77); + + } + + public void test183() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test183"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var6 = var0.getMouseListeners(); + java.awt.Dimension var7 = var0.getPreferredSize(); + int var10 = var0.getBaseline(1, 1); + var0.show(false); + var0.doLayout(); + var0.hide(); + javax.swing.JRootPane var15 = var0.getRootPane(); + boolean var16 = var0.isPaintingForPrint(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == (-1)); + + // Regression assertion (captures the current behavior of the code) + assertNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == false); + + } + + public void test184() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test184"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.setInheritsPopupMenu(false); + var0.setFocusTraversalPolicyProvider(true); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + boolean var12 = var8.isDoubleBuffered(); + var8.list(); + SpaceWar.SpacePanel var14 = new SpaceWar.SpacePanel(); + float var15 = var14.getAlignmentX(); + var14.setVisible(false); + boolean var18 = var14.isDoubleBuffered(); + java.awt.dnd.DropTarget var19 = var14.getDropTarget(); + var14.show(false); + java.awt.Rectangle var22 = var14.getVisibleRect(); + java.awt.Rectangle var23 = var8.getBounds(var22); + javax.swing.JToolTip var24 = var8.createToolTip(); + var0.removeKeyListener((java.awt.event.KeyListener)var8); + var0.setFocusTraversalKeysEnabled(true); + var0.firePropertyChange("SpaceWar.SpacePanel[,-1,1,-1x10,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", (short)1, (short)100); + var0.validate(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var23); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var24); + + } + + public void test185() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test185"); + + + SpaceWar.Bullet var3 = new SpaceWar.Bullet(514.6637810615505d, 25, 100); + double var4 = var3.getY(); + double var5 = var3.getR(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 100.0d); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == 5.0d); + + } + + public void test186() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test186"); + + + SpaceWar.Bullet var3 = new SpaceWar.Bullet(5.0d, 0, 1); + double var4 = var3.getX(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0.0d); + + } + + public void test187() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test187"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.reshape((-1), 1, (-1), 10); + var0.disable(); + java.awt.LayoutManager var11 = var0.getLayout(); + var0.setVisible(false); + SpaceWar.SpacePanel var14 = new SpaceWar.SpacePanel(); + float var15 = var14.getAlignmentX(); + var14.setVisible(false); + var14.nextFocus(); + var14.updateUI(); + java.util.Locale var20 = var14.getLocale(); + var0.setLocale(var20); + boolean var22 = var0.isRequestFocusEnabled(); + SpaceWar.SpacePanel var23 = new SpaceWar.SpacePanel(); + float var24 = var23.getAlignmentX(); + var23.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var29 = var23.getMouseListeners(); + int var30 = var23.getDebugGraphicsOptions(); + SpaceWar.SpacePanel var31 = new SpaceWar.SpacePanel(); + float var32 = var31.getAlignmentX(); + var31.setVisible(false); + boolean var35 = var31.isDoubleBuffered(); + java.awt.dnd.DropTarget var36 = var31.getDropTarget(); + var31.show(false); + java.awt.Rectangle var39 = var31.getVisibleRect(); + var23.paintImmediately(var39); + int var41 = var23.getWidth(); + var0.removeKeyListener((java.awt.event.KeyListener)var23); + java.awt.event.KeyListener[] var43 = var0.getKeyListeners(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var22 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var24 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var29); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var30 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var32 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var35 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var36); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var39); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var41 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var43); + + } + + public void test188() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test188"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var1 = new SpaceWar.SpacePanel(); + java.awt.Color var2 = var1.getBackground(); + SpaceWar.SpacePanel var3 = new SpaceWar.SpacePanel(); + float var4 = var3.getAlignmentX(); + var3.setVisible(false); + var3.nextFocus(); + var3.updateUI(); + var3.enableInputMethods(true); + var0.add((java.awt.Component)var1, (java.lang.Object)true); + java.awt.Image var14 = var1.createImage(1, (-1)); + java.beans.PropertyChangeListener[] var15 = var1.getPropertyChangeListeners(); + java.awt.FocusTraversalPolicy var16 = var1.getFocusTraversalPolicy(); + var1.show(false); + java.lang.String var19 = var1.getName(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var2); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertNull(var19); + + } + + public void test189() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test189"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + var0.setName(""); + java.awt.Dimension var3 = var0.minimumSize(); + boolean var4 = var0.isDoubleBuffered(); + SpaceWar.SpacePanel var5 = new SpaceWar.SpacePanel(); + float var6 = var5.getAlignmentX(); + var5.setVisible(false); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + java.awt.Color var10 = var9.getBackground(); + var5.setForeground(var10); + SpaceWar.SpacePanel var12 = new SpaceWar.SpacePanel(); + float var13 = var12.getAlignmentX(); + var12.setVisible(false); + boolean var16 = var12.isDoubleBuffered(); + java.awt.dnd.DropTarget var17 = var12.getDropTarget(); + var12.show(false); + java.awt.Rectangle var20 = var12.getVisibleRect(); + var5.repaint(var20); + java.awt.FocusTraversalPolicy var22 = var5.getFocusTraversalPolicy(); + java.awt.im.InputMethodRequests var23 = var5.getInputMethodRequests(); + var5.layout(); + boolean var25 = var5.isFocusTraversalPolicyProvider(); + java.awt.Component var26 = var0.add((java.awt.Component)var5); + var0.removeAll(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertNull(var23); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var26); + + } + + public void test190() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test190"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.repaint(1L); + SpaceWar.SpacePanel var7 = new SpaceWar.SpacePanel(); + float var8 = var7.getAlignmentX(); + var7.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var13 = new SpaceWar.SpacePanel(); + float var14 = var13.getAlignmentX(); + var13.setVisible(false); + java.awt.Dimension var17 = var13.getPreferredSize(); + var7.setMaximumSize(var17); + var0.setPreferredSize(var17); + javax.swing.plaf.PanelUI var20 = var0.getUI(); + java.awt.Dimension var21 = var0.getMinimumSize(); + boolean var22 = var0.getInheritsPopupMenu(); + java.awt.event.FocusListener[] var23 = var0.getFocusListeners(); + var0.validate(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var21); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var22 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var23); + + } + + public void test191() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test191"); + + + SpaceWar.Bullet var3 = new SpaceWar.Bullet(594.7973940347722d, 3, 100); + double var4 = var3.getY(); + boolean var5 = var3.update(); + double var6 = var3.getR(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 100.0d); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == 5.0d); + + } + + public void test192() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test192"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + java.awt.im.InputMethodRequests var3 = var0.getInputMethodRequests(); + int var4 = var0.countComponents(); + java.awt.event.ComponentListener[] var5 = var0.getComponentListeners(); + var0.removeNotify(); + javax.swing.InputMap var7 = var0.getInputMap(); + int var8 = var0.getDebugGraphicsOptions(); + boolean var9 = var0.isFocusable(); + SpaceWar.SpacePanel var10 = new SpaceWar.SpacePanel(); + float var11 = var10.getAlignmentX(); + var10.setVisible(false); + boolean var14 = var10.isDoubleBuffered(); + java.awt.dnd.DropTarget var15 = var10.getDropTarget(); + var10.show(false); + boolean var18 = var10.isPaintingForPrint(); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + float var20 = var19.getAlignmentX(); + var19.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var25 = var19.getMouseListeners(); + int var26 = var19.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var27 = var19.getInputMethodRequests(); + var10.addKeyListener((java.awt.event.KeyListener)var19); + SpaceWar.SpacePanel var29 = new SpaceWar.SpacePanel(); + float var30 = var29.getAlignmentX(); + var29.setVisible(false); + boolean var33 = var29.isDoubleBuffered(); + var29.list(); + float var35 = var29.getAlignmentY(); + boolean var36 = var19.isFocusCycleRoot((java.awt.Container)var29); + SpaceWar.SpacePanel var38 = new SpaceWar.SpacePanel(); + float var39 = var38.getAlignmentX(); + var38.setVisible(false); + var38.nextFocus(); + var38.updateUI(); + java.awt.Component var44 = var19.add("", (java.awt.Component)var38); + var19.firePropertyChange("hi!", 'a', '4'); + boolean var49 = var19.getAutoscrolls(); + SpaceWar.SpacePanel var50 = new SpaceWar.SpacePanel(); + float var51 = var50.getAlignmentX(); + var50.setVisible(false); + boolean var54 = var50.isDoubleBuffered(); + java.awt.dnd.DropTarget var55 = var50.getDropTarget(); + var50.show(false); + boolean var58 = var50.isPaintingForPrint(); + SpaceWar.SpacePanel var59 = new SpaceWar.SpacePanel(); + float var60 = var59.getAlignmentX(); + var59.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var65 = var59.getMouseListeners(); + int var66 = var59.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var67 = var59.getInputMethodRequests(); + var50.addKeyListener((java.awt.event.KeyListener)var59); + SpaceWar.SpacePanel var69 = new SpaceWar.SpacePanel(); + float var70 = var69.getAlignmentX(); + var69.setVisible(false); + boolean var73 = var69.isDoubleBuffered(); + var69.list(); + float var75 = var69.getAlignmentY(); + boolean var76 = var59.isFocusCycleRoot((java.awt.Container)var69); + var69.firePropertyChange("", 1L, 1L); + var69.setVerifyInputWhenFocusTarget(true); + java.awt.Cursor var83 = var69.getCursor(); + var19.setCursor(var83); + var0.setCursor(var83); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var25); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var27); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var30 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var33 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var35 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var36 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var39 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var44); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var49 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var51 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var54 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var55); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var58 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var60 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var65); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var66 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var67); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var70 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var73 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var75 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var76 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var83); + + } + + public void test193() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test193"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + var0.enable(false); + boolean var7 = var0.getFocusTraversalKeysEnabled(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + java.awt.Dimension var12 = var8.getPreferredSize(); + java.awt.Toolkit var13 = var8.getToolkit(); + boolean var14 = var8.isFocusable(); + javax.swing.KeyStroke[] var15 = var8.getRegisteredKeyStrokes(); + SpaceWar.SpacePanel var16 = new SpaceWar.SpacePanel(); + float var17 = var16.getAlignmentX(); + SpaceWar.SpacePanel var18 = new SpaceWar.SpacePanel(); + float var19 = var18.getAlignmentX(); + var18.setVisible(false); + java.awt.Dimension var22 = var18.getPreferredSize(); + boolean var23 = var18.getVerifyInputWhenFocusTarget(); + java.awt.Component var26 = var18.findComponentAt(10, 1); + var16.addKeyListener((java.awt.event.KeyListener)var18); + var18.repaint(100, (-1), (-1), 1); + boolean var33 = var8.isAncestorOf((java.awt.Component)var18); + var0.addKeyListener((java.awt.event.KeyListener)var18); + boolean var35 = var18.isPaintingTile(); + java.awt.image.ColorModel var36 = var18.getColorModel(); + var18.setFocusCycleRoot(true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var33 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var35 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var36); + + } + + public void test194() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test194"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var6 = var0.getMouseListeners(); + int var7 = var0.getDebugGraphicsOptions(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + boolean var12 = var8.isDoubleBuffered(); + java.awt.dnd.DropTarget var13 = var8.getDropTarget(); + var8.show(false); + java.awt.Rectangle var16 = var8.getVisibleRect(); + var0.paintImmediately(var16); + boolean var18 = var0.isFocusCycleRoot(); + java.awt.image.VolatileImage var21 = var0.createVolatileImage(500, 0); + int var22 = var0.countComponents(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var21); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var22 == 0); + + } + + public void test195() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test195"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + var0.show(false); + java.awt.Rectangle var8 = var0.getVisibleRect(); + javax.swing.KeyStroke[] var9 = var0.getRegisteredKeyStrokes(); + boolean var10 = var0.isMinimumSizeSet(); + java.lang.String var11 = var0.getUIClassID(); + var0.hide(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var9); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var11 + "' != '" + "PanelUI"+ "'", var11.equals("PanelUI")); + + } + + public void test196() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test196"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + boolean var2 = var0.hasFocus(); + java.awt.Insets var3 = var0.getInsets(); + java.awt.Rectangle var4 = var0.bounds(); + java.awt.event.MouseMotionListener[] var5 = var0.getMouseMotionListeners(); + boolean var6 = var0.isMaximumSizeSet(); + java.awt.LayoutManager var7 = var0.getLayout(); + java.awt.Rectangle var8 = var0.getBounds(); + boolean var9 = var0.isFocusTraversalPolicySet(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var2 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var4); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == false); + + } + + public void test197() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test197"); + + + SpaceWar.Bullet var3 = new SpaceWar.Bullet(594.7973940347722d, 3, 100); + double var4 = var3.getR(); + boolean var5 = var3.update(); + boolean var6 = var3.update(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 5.0d); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == true); + + } + + public void test198() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test198"); + + + SpaceWar.Player var0 = new SpaceWar.Player(); + boolean var1 = var0.isRecovering(); + var0.setUp(true); + java.awt.image.BufferedImage var5 = var0.loadImg("SpaceWar.SpacePanel[,0,0,0x0,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + int var6 = var0.getPower(); + int var7 = var0.getRequiredPower(); + var0.increasePower(3); + boolean var10 = var0.isRecovering(); + var0.setLife(1); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 1); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == false); + + } + + public void test199() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test199"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + SpaceWar.SpacePanel var2 = new SpaceWar.SpacePanel(); + float var3 = var2.getAlignmentX(); + var2.setVisible(false); + java.awt.Dimension var6 = var2.getPreferredSize(); + boolean var7 = var2.getVerifyInputWhenFocusTarget(); + java.awt.Component var10 = var2.findComponentAt(10, 1); + var0.addKeyListener((java.awt.event.KeyListener)var2); + java.awt.Dimension var12 = var2.getMinimumSize(); + java.lang.String var13 = var2.getToolTipText(); + SpaceWar.SpacePanel var14 = new SpaceWar.SpacePanel(); + var14.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", 10.0d, 100.0d); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + float var20 = var19.getAlignmentX(); + var19.setVisible(false); + boolean var23 = var19.isDoubleBuffered(); + java.awt.dnd.DropTarget var24 = var19.getDropTarget(); + boolean var25 = var19.isFocusCycleRoot(); + var19.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", 100, 0); + SpaceWar.SpacePanel var30 = new SpaceWar.SpacePanel(); + java.awt.Color var31 = var30.getBackground(); + var30.repaint(); + var30.setRequestFocusEnabled(false); + var30.reshape(100, 0, 100, 0); + javax.swing.event.AncestorListener[] var40 = var30.getAncestorListeners(); + var30.grabFocus(); + boolean var42 = var19.isFocusCycleRoot((java.awt.Container)var30); + javax.swing.ActionMap var43 = var30.getActionMap(); + var14.setActionMap(var43); + var2.setActionMap(var43); + SpaceWar.SpacePanel var46 = new SpaceWar.SpacePanel(); + float var47 = var46.getAlignmentX(); + var46.setVisible(false); + boolean var50 = var46.isDoubleBuffered(); + var46.list(); + SpaceWar.SpacePanel var52 = new SpaceWar.SpacePanel(); + float var53 = var52.getAlignmentX(); + var52.setVisible(false); + boolean var56 = var52.isDoubleBuffered(); + java.awt.dnd.DropTarget var57 = var52.getDropTarget(); + var52.show(false); + java.awt.Rectangle var60 = var52.getVisibleRect(); + java.awt.Rectangle var61 = var46.getBounds(var60); + javax.swing.JToolTip var62 = var46.createToolTip(); + boolean var63 = var62.getInheritsPopupMenu(); + var62.layout(); + var62.invalidate(); + java.awt.Cursor var66 = var62.getCursor(); + var2.setCursor(var66); + java.awt.Graphics var68 = var2.getGraphics(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var31); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var40); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var42 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var43); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var47 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var50 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var53 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var56 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var57); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var60); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var61); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var62); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var63 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var66); + + // Regression assertion (captures the current behavior of the code) + assertNull(var68); + + } + + public void test200() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test200"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + var0.enable(false); + boolean var7 = var0.getFocusTraversalKeysEnabled(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + java.awt.Dimension var12 = var8.getPreferredSize(); + java.awt.Toolkit var13 = var8.getToolkit(); + boolean var14 = var8.isFocusable(); + javax.swing.KeyStroke[] var15 = var8.getRegisteredKeyStrokes(); + SpaceWar.SpacePanel var16 = new SpaceWar.SpacePanel(); + float var17 = var16.getAlignmentX(); + SpaceWar.SpacePanel var18 = new SpaceWar.SpacePanel(); + float var19 = var18.getAlignmentX(); + var18.setVisible(false); + java.awt.Dimension var22 = var18.getPreferredSize(); + boolean var23 = var18.getVerifyInputWhenFocusTarget(); + java.awt.Component var26 = var18.findComponentAt(10, 1); + var16.addKeyListener((java.awt.event.KeyListener)var18); + var18.repaint(100, (-1), (-1), 1); + boolean var33 = var8.isAncestorOf((java.awt.Component)var18); + var0.addKeyListener((java.awt.event.KeyListener)var18); + java.awt.Component var37 = var0.findComponentAt(1, 25); + java.awt.Container var38 = var0.getTopLevelAncestor(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var33 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var37); + + // Regression assertion (captures the current behavior of the code) + assertNull(var38); + + } + + public void test201() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test201"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + SpaceWar.SpacePanel var2 = new SpaceWar.SpacePanel(); + float var3 = var2.getAlignmentX(); + var2.setVisible(false); + java.awt.Dimension var6 = var2.getPreferredSize(); + boolean var7 = var2.getVerifyInputWhenFocusTarget(); + java.awt.Component var10 = var2.findComponentAt(10, 1); + var0.addKeyListener((java.awt.event.KeyListener)var2); + SpaceWar.SpacePanel var12 = new SpaceWar.SpacePanel(); + float var13 = var12.getAlignmentX(); + SpaceWar.SpacePanel var14 = new SpaceWar.SpacePanel(); + float var15 = var14.getAlignmentX(); + var14.setVisible(false); + java.awt.Dimension var18 = var14.getPreferredSize(); + boolean var19 = var14.getVerifyInputWhenFocusTarget(); + java.awt.Component var22 = var14.findComponentAt(10, 1); + var12.addKeyListener((java.awt.event.KeyListener)var14); + var14.repaint(100, (-1), (-1), 1); + java.awt.image.ColorModel var29 = var14.getColorModel(); + SpaceWar.SpacePanel var30 = new SpaceWar.SpacePanel(); + float var31 = var30.getAlignmentX(); + var30.setVisible(false); + boolean var34 = var30.isDoubleBuffered(); + var30.list(); + SpaceWar.SpacePanel var36 = new SpaceWar.SpacePanel(); + float var37 = var36.getAlignmentX(); + var36.setVisible(false); + boolean var40 = var36.isDoubleBuffered(); + java.awt.dnd.DropTarget var41 = var36.getDropTarget(); + var36.show(false); + java.awt.Rectangle var44 = var36.getVisibleRect(); + java.awt.image.BufferedImage var46 = var36.loadImg("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + boolean var47 = var30.isAncestorOf((java.awt.Component)var36); + javax.swing.InputVerifier var48 = var36.getInputVerifier(); + var2.putClientProperty((java.lang.Object)var14, (java.lang.Object)var36); + java.lang.String var50 = var2.getUIClassID(); + SpaceWar.SpacePanel var51 = new SpaceWar.SpacePanel(); + float var52 = var51.getAlignmentX(); + var51.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var57 = var51.getMouseListeners(); + int var58 = var51.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var59 = var51.getInputMethodRequests(); + var51.removeNotify(); + var51.enable(); + SpaceWar.SpacePanel var62 = new SpaceWar.SpacePanel(); + java.awt.Color var63 = var62.getBackground(); + boolean var66 = var62.inside(0, (-1)); + var62.transferFocusUpCycle(); + java.lang.String var68 = var62.getName(); + boolean var69 = var51.isFocusCycleRoot((java.awt.Container)var62); + java.awt.Dimension var70 = var51.getMinimumSize(); + boolean var73 = var51.inside(500, 3); + boolean var74 = var2.isFocusCycleRoot((java.awt.Container)var51); + java.awt.image.ColorModel var75 = var2.getColorModel(); + java.awt.Point var76 = var2.getLocation(); + var2.firePropertyChange("SpaceWar.SpacePanel[,-1,1,-1x10,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", (byte)1, (byte)(-1)); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var29); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var31 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var34 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var40 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var41); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var44); + + // Regression assertion (captures the current behavior of the code) + assertNull(var46); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var47 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var48); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var50 + "' != '" + "PanelUI"+ "'", var50.equals("PanelUI")); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var52 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var57); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var58 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var59); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var63); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var66 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var68); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var69 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var70); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var73 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var74 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var75); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var76); + + } + + public void test202() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test202"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + var0.list(); + float var6 = var0.getAlignmentY(); + boolean var7 = var0.isOpaque(); + var0.resetKeyboardActions(); + boolean var9 = var0.isFocusTraversalPolicyProvider(); + boolean var10 = var0.getFocusTraversalKeysEnabled(); + SpaceWar.SpacePanel var11 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var12 = new SpaceWar.SpacePanel(); + java.awt.Color var13 = var12.getBackground(); + SpaceWar.SpacePanel var14 = new SpaceWar.SpacePanel(); + float var15 = var14.getAlignmentX(); + var14.setVisible(false); + var14.nextFocus(); + var14.updateUI(); + var14.enableInputMethods(true); + var11.add((java.awt.Component)var12, (java.lang.Object)true); + java.awt.Image var25 = var12.createImage(1, (-1)); + boolean var26 = var12.isValidateRoot(); + var12.resize(1, 3); + SpaceWar.SpacePanel var30 = new SpaceWar.SpacePanel(); + java.awt.Color var31 = var30.getBackground(); + var30.repaint(); + java.awt.im.InputMethodRequests var33 = var30.getInputMethodRequests(); + var30.setDoubleBuffered(true); + var30.show(false); + var30.setAlignmentY(100.0f); + SpaceWar.SpacePanel var40 = new SpaceWar.SpacePanel(); + float var41 = var40.getAlignmentX(); + var40.setVisible(false); + SpaceWar.SpacePanel var44 = new SpaceWar.SpacePanel(); + java.awt.Color var45 = var44.getBackground(); + var40.setForeground(var45); + SpaceWar.SpacePanel var47 = new SpaceWar.SpacePanel(); + float var48 = var47.getAlignmentX(); + var47.setVisible(false); + boolean var51 = var47.isDoubleBuffered(); + java.awt.dnd.DropTarget var52 = var47.getDropTarget(); + var47.show(false); + java.awt.Rectangle var55 = var47.getVisibleRect(); + var40.repaint(var55); + java.awt.FocusTraversalPolicy var57 = var40.getFocusTraversalPolicy(); + java.awt.im.InputMethodRequests var58 = var40.getInputMethodRequests(); + var40.layout(); + boolean var60 = var40.isFocusTraversalPolicyProvider(); + java.awt.Insets var61 = var40.insets(); + java.awt.Dimension var62 = var40.getMinimumSize(); + java.awt.Dimension var63 = var30.getSize(var62); + var12.resize(var62); + java.awt.Dimension var65 = var0.getSize(var62); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNull(var25); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var31); + + // Regression assertion (captures the current behavior of the code) + assertNull(var33); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var41 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var45); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var48 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var51 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var52); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var55); + + // Regression assertion (captures the current behavior of the code) + assertNull(var57); + + // Regression assertion (captures the current behavior of the code) + assertNull(var58); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var60 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var61); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var62); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var63); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var65); + + } + + public void test203() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test203"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + boolean var6 = var0.isFocusCycleRoot(); + var0.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", 100, 0); + SpaceWar.SpacePanel var11 = new SpaceWar.SpacePanel(); + float var12 = var11.getAlignmentX(); + var11.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var17 = var11.getUI(); + var0.add((java.awt.Component)var11, (java.lang.Object)(short)0); + java.awt.event.InputMethodListener[] var20 = var11.getInputMethodListeners(); + boolean var21 = var11.isValid(); + java.util.Locale var22 = var11.getLocale(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var22); + + } + + public void test204() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test204"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + java.awt.im.InputMethodRequests var3 = var0.getInputMethodRequests(); + var0.setDoubleBuffered(true); + var0.show(false); + boolean var8 = var0.isPaintingForPrint(); + var0.repaint(100L); + SpaceWar.SpacePanel var11 = new SpaceWar.SpacePanel(); + float var12 = var11.getAlignmentX(); + var11.setVisible(false); + var11.nextFocus(); + var11.reshape((-1), 1, (-1), 10); + var11.disable(); + java.awt.LayoutManager var22 = var11.getLayout(); + var11.setVisible(false); + javax.accessibility.AccessibleContext var25 = var11.getAccessibleContext(); + java.awt.Point var26 = var11.getLocation(); + var0.setLocation(var26); + java.awt.Component.BaselineResizeBehavior var28 = var0.getBaselineResizeBehavior(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var25); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var28); + + } + + public void test205() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test205"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var6 = var0.getUI(); + java.awt.im.InputMethodRequests var7 = var0.getInputMethodRequests(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + var8.nextFocus(); + var8.updateUI(); + var8.enableInputMethods(true); + var8.setSize((-1), 1); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + var19.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var0.add((java.awt.Component)var8, (java.lang.Object)"SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + java.awt.ComponentOrientation var25 = var8.getComponentOrientation(); + java.beans.VetoableChangeListener[] var26 = var8.getVetoableChangeListeners(); + int var27 = var8.getHeight(); + int var28 = var8.getWidth(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var25); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == 1); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var28 == (-1)); + + } + + public void test206() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test206"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var6 = var0.getUI(); + java.awt.im.InputMethodRequests var7 = var0.getInputMethodRequests(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + var8.nextFocus(); + var8.updateUI(); + var8.enableInputMethods(true); + var8.setSize((-1), 1); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + var19.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var0.add((java.awt.Component)var8, (java.lang.Object)"SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + java.awt.event.KeyListener[] var25 = var0.getKeyListeners(); + SpaceWar.SpacePanel var26 = new SpaceWar.SpacePanel(); + float var27 = var26.getAlignmentX(); + var26.setVisible(false); + boolean var30 = var26.isDoubleBuffered(); + var26.list(); + SpaceWar.SpacePanel var32 = new SpaceWar.SpacePanel(); + float var33 = var32.getAlignmentX(); + var32.setVisible(false); + boolean var36 = var32.isDoubleBuffered(); + java.awt.dnd.DropTarget var37 = var32.getDropTarget(); + var32.show(false); + java.awt.Rectangle var40 = var32.getVisibleRect(); + java.awt.image.BufferedImage var42 = var32.loadImg("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + boolean var43 = var26.isAncestorOf((java.awt.Component)var32); + java.awt.GraphicsConfiguration var44 = var32.getGraphicsConfiguration(); + java.awt.Font var45 = var32.getFont(); + var0.setFont(var45); + java.awt.Color var47 = var0.getForeground(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var25); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var30 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var33 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var36 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var37); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var40); + + // Regression assertion (captures the current behavior of the code) + assertNull(var42); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var43 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var44); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var45); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var47); + + } + + public void test207() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test207"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + java.awt.im.InputMethodRequests var3 = var0.getInputMethodRequests(); + var0.setDoubleBuffered(true); + var0.setInheritsPopupMenu(false); + javax.swing.plaf.PanelUI var8 = var0.getUI(); + java.util.Set var10 = var0.getFocusTraversalKeys(3); + var0.requestFocus(); + var0.setLocation(0, 24); + var0.doLayout(); + SpaceWar.SpacePanel var16 = new SpaceWar.SpacePanel(); + float var17 = var16.getAlignmentX(); + var16.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var22 = var16.getMouseListeners(); + var16.firePropertyChange("", 0.5f, 100.0f); + var16.enable(false); + int var29 = var16.getDebugGraphicsOptions(); + SpaceWar.SpacePanel var30 = new SpaceWar.SpacePanel(); + float var31 = var30.getAlignmentX(); + var30.setVisible(false); + var30.nextFocus(); + var30.repaint(1L); + SpaceWar.SpacePanel var37 = new SpaceWar.SpacePanel(); + float var38 = var37.getAlignmentX(); + var37.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var43 = new SpaceWar.SpacePanel(); + float var44 = var43.getAlignmentX(); + var43.setVisible(false); + java.awt.Dimension var47 = var43.getPreferredSize(); + var37.setMaximumSize(var47); + var30.setPreferredSize(var47); + java.awt.Container var50 = var30.getFocusCycleRootAncestor(); + java.awt.image.ColorModel var51 = var30.getColorModel(); + int var52 = var30.getComponentCount(); + java.awt.Component var53 = var16.add((java.awt.Component)var30); + var30.setBounds((-1), 25, 10, (-1)); + var30.grabFocus(); + boolean var60 = var0.isAncestorOf((java.awt.Component)var30); + SpaceWar.SpacePanel var61 = new SpaceWar.SpacePanel(); + java.awt.Color var62 = var61.getBackground(); + var61.repaint(); + var61.setRequestFocusEnabled(false); + var61.setIgnoreRepaint(false); + java.lang.String var68 = var61.toString(); + java.awt.Color var69 = var61.getBackground(); + SpaceWar.SpacePanel var70 = new SpaceWar.SpacePanel(); + float var71 = var70.getAlignmentX(); + var70.setVisible(false); + java.awt.Dimension var74 = var70.getPreferredSize(); + java.awt.Toolkit var75 = var70.getToolkit(); + java.awt.Toolkit var76 = var70.getToolkit(); + SpaceWar.Player var77 = new SpaceWar.Player(); + var77.increasePower(25); + int var80 = var77.getScore(); + var77.setRigth(true); + var77.loseLife(); + var61.putClientProperty((java.lang.Object)var70, (java.lang.Object)var77); + var30.addKeyListener((java.awt.event.KeyListener)var70); + var70.resetKeyboardActions(); + java.awt.FocusTraversalPolicy var87 = var70.getFocusTraversalPolicy(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var29 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var31 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var38 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var44 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var47); + + // Regression assertion (captures the current behavior of the code) + assertNull(var50); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var51); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var52 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var53); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var60 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var62); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var68 + "' != '" + "SpaceWar.SpacePanel[,0,0,0var68,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"+ "'", var68.equals("SpaceWar.SpacePanel[,0,0,0var68,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]")); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var69); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var71 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var74); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var75); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var76); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var80 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var87); + + } + + public void test208() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test208"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + SpaceWar.SpacePanel var2 = new SpaceWar.SpacePanel(); + float var3 = var2.getAlignmentX(); + var2.setVisible(false); + java.awt.Dimension var6 = var2.getPreferredSize(); + boolean var7 = var2.getVerifyInputWhenFocusTarget(); + java.awt.Component var10 = var2.findComponentAt(10, 1); + var0.addKeyListener((java.awt.event.KeyListener)var2); + SpaceWar.SpacePanel var12 = new SpaceWar.SpacePanel(); + float var13 = var12.getAlignmentX(); + SpaceWar.SpacePanel var14 = new SpaceWar.SpacePanel(); + float var15 = var14.getAlignmentX(); + var14.setVisible(false); + java.awt.Dimension var18 = var14.getPreferredSize(); + boolean var19 = var14.getVerifyInputWhenFocusTarget(); + java.awt.Component var22 = var14.findComponentAt(10, 1); + var12.addKeyListener((java.awt.event.KeyListener)var14); + var14.repaint(100, (-1), (-1), 1); + java.awt.image.ColorModel var29 = var14.getColorModel(); + SpaceWar.SpacePanel var30 = new SpaceWar.SpacePanel(); + float var31 = var30.getAlignmentX(); + var30.setVisible(false); + boolean var34 = var30.isDoubleBuffered(); + var30.list(); + SpaceWar.SpacePanel var36 = new SpaceWar.SpacePanel(); + float var37 = var36.getAlignmentX(); + var36.setVisible(false); + boolean var40 = var36.isDoubleBuffered(); + java.awt.dnd.DropTarget var41 = var36.getDropTarget(); + var36.show(false); + java.awt.Rectangle var44 = var36.getVisibleRect(); + java.awt.image.BufferedImage var46 = var36.loadImg("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + boolean var47 = var30.isAncestorOf((java.awt.Component)var36); + javax.swing.InputVerifier var48 = var36.getInputVerifier(); + var2.putClientProperty((java.lang.Object)var14, (java.lang.Object)var36); + boolean var50 = var14.isFocusTraversable(); + var14.revalidate(); + SpaceWar.SpacePanel var52 = new SpaceWar.SpacePanel(); + float var53 = var52.getAlignmentX(); + var52.setVisible(false); + var52.setInheritsPopupMenu(false); + boolean var58 = var52.isDoubleBuffered(); + SpaceWar.SpacePanel var59 = new SpaceWar.SpacePanel(); + float var60 = var59.getAlignmentX(); + var59.setVisible(false); + var59.nextFocus(); + var59.reshape((-1), 1, (-1), 10); + var59.disable(); + java.awt.LayoutManager var70 = var59.getLayout(); + var52.setLayout(var70); + java.awt.event.MouseMotionListener[] var72 = var52.getMouseMotionListeners(); + javax.swing.event.AncestorListener[] var73 = var52.getAncestorListeners(); + boolean var74 = var14.isFocusCycleRoot((java.awt.Container)var52); + boolean var75 = var14.isLightweight(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var29); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var31 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var34 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var40 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var41); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var44); + + // Regression assertion (captures the current behavior of the code) + assertNull(var46); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var47 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var48); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var50 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var53 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var58 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var60 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var70); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var72); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var73); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var74 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var75 == false); + + } + + public void test209() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test209"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + boolean var2 = var0.hasFocus(); + SpaceWar.SpacePanel var3 = new SpaceWar.SpacePanel(); + float var4 = var3.getAlignmentX(); + var3.setVisible(false); + var3.nextFocus(); + var3.reshape((-1), 1, (-1), 10); + var3.disable(); + java.awt.LayoutManager var14 = var3.getLayout(); + var3.setVisible(false); + var0.remove((java.awt.Component)var3); + var3.repaint(); + var3.repaint(); + SpaceWar.SpacePanel var20 = new SpaceWar.SpacePanel(); + float var21 = var20.getAlignmentX(); + var20.setVisible(false); + var20.nextFocus(); + var20.repaint(1L); + SpaceWar.SpacePanel var27 = new SpaceWar.SpacePanel(); + float var28 = var27.getAlignmentX(); + var27.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var33 = new SpaceWar.SpacePanel(); + float var34 = var33.getAlignmentX(); + var33.setVisible(false); + java.awt.Dimension var37 = var33.getPreferredSize(); + var27.setMaximumSize(var37); + var20.setPreferredSize(var37); + javax.swing.plaf.PanelUI var40 = var20.getUI(); + SpaceWar.SpacePanel var41 = new SpaceWar.SpacePanel(); + float var42 = var41.getAlignmentX(); + var41.setVisible(false); + var41.nextFocus(); + var41.reshape((-1), 1, (-1), 10); + var41.disable(); + java.awt.LayoutManager var52 = var41.getLayout(); + java.awt.Container var53 = var41.getParent(); + java.lang.String var54 = var41.getUIClassID(); + SpaceWar.Enemy var57 = new SpaceWar.Enemy(0, 10); + var20.add((java.awt.Component)var41, (java.lang.Object)10); + java.awt.event.MouseListener[] var59 = var20.getMouseListeners(); + java.awt.Component var61 = var3.add((java.awt.Component)var20, (-1)); + var61.repaint((-1L)); + java.awt.Container var64 = var61.getParent(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var2 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var28 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var34 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var37); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var40); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var42 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var52); + + // Regression assertion (captures the current behavior of the code) + assertNull(var53); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var54 + "' != '" + "PanelUI"+ "'", var54.equals("PanelUI")); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var59); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var61); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var64); + + } + + public void test210() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test210"); + + + SpaceWar.Enemy var2 = new SpaceWar.Enemy(500, 3); + var2.explode(); + var2.hit(); + double var5 = var2.getY(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == 0.0d); + + } + + public void test211() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test211"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + boolean var2 = var0.hasFocus(); + SpaceWar.SpacePanel var3 = new SpaceWar.SpacePanel(); + float var4 = var3.getAlignmentX(); + var3.setVisible(false); + var3.nextFocus(); + var3.reshape((-1), 1, (-1), 10); + var3.disable(); + java.awt.LayoutManager var14 = var3.getLayout(); + var3.setVisible(false); + var0.remove((java.awt.Component)var3); + var3.repaint(); + boolean var19 = var3.hasFocus(); + javax.swing.plaf.PanelUI var20 = var3.getUI(); + int var21 = var3.getComponentCount(); + SpaceWar.SpacePanel var22 = new SpaceWar.SpacePanel(); + float var23 = var22.getAlignmentX(); + var22.setVisible(false); + boolean var26 = var22.isDoubleBuffered(); + var22.list(); + SpaceWar.SpacePanel var28 = new SpaceWar.SpacePanel(); + float var29 = var28.getAlignmentX(); + var28.setVisible(false); + boolean var32 = var28.isDoubleBuffered(); + java.awt.dnd.DropTarget var33 = var28.getDropTarget(); + var28.show(false); + java.awt.Rectangle var36 = var28.getVisibleRect(); + java.awt.image.BufferedImage var38 = var28.loadImg("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + boolean var39 = var22.isAncestorOf((java.awt.Component)var28); + SpaceWar.SpacePanel var40 = new SpaceWar.SpacePanel(); + java.awt.Color var41 = var40.getBackground(); + var40.repaint(); + var40.setRequestFocusEnabled(false); + var40.setIgnoreRepaint(false); + java.lang.String var47 = var40.toString(); + java.awt.Color var48 = var40.getBackground(); + SpaceWar.SpacePanel var49 = new SpaceWar.SpacePanel(); + float var50 = var49.getAlignmentX(); + var49.setVisible(false); + java.awt.Dimension var53 = var49.getPreferredSize(); + java.awt.Toolkit var54 = var49.getToolkit(); + java.awt.Toolkit var55 = var49.getToolkit(); + SpaceWar.Player var56 = new SpaceWar.Player(); + var56.increasePower(25); + int var59 = var56.getScore(); + var56.setRigth(true); + var56.loseLife(); + var40.putClientProperty((java.lang.Object)var49, (java.lang.Object)var56); + java.awt.Rectangle var64 = var49.bounds(); + java.awt.Rectangle var65 = var28.getBounds(var64); + var3.setBounds(var64); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var2 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var29 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var32 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var33); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var36); + + // Regression assertion (captures the current behavior of the code) + assertNull(var38); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var39 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var41); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var47 + "' != '" + "SpaceWar.SpacePanel[,0,0,0var47,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"+ "'", var47.equals("SpaceWar.SpacePanel[,0,0,0var47,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]")); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var48); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var50 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var53); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var54); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var55); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var59 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var64); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var65); + + } + + public void test212() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test212"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + java.awt.im.InputMethodRequests var3 = var0.getInputMethodRequests(); + int var4 = var0.countComponents(); + java.awt.event.ComponentListener[] var5 = var0.getComponentListeners(); + var0.removeNotify(); + java.awt.Component var9 = var0.getComponentAt(1, (-1)); + java.awt.image.BufferedImage var11 = var0.loadImg("SpaceWar.SpacePanel[,0,0,0x0,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + javax.swing.border.Border var12 = var0.getBorder(); + var0.setDoubleBuffered(false); + java.awt.Font var15 = var0.getFont(); + java.awt.Insets var16 = var0.getInsets(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertNull(var9); + + // Regression assertion (captures the current behavior of the code) + assertNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + } + + public void test213() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test213"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var1 = new SpaceWar.SpacePanel(); + java.awt.Color var2 = var1.getBackground(); + SpaceWar.SpacePanel var3 = new SpaceWar.SpacePanel(); + float var4 = var3.getAlignmentX(); + var3.setVisible(false); + var3.nextFocus(); + var3.updateUI(); + var3.enableInputMethods(true); + var0.add((java.awt.Component)var1, (java.lang.Object)true); + boolean var12 = var0.isMinimumSizeSet(); + java.awt.event.HierarchyListener[] var13 = var0.getHierarchyListeners(); + SpaceWar.SpacePanel var14 = new SpaceWar.SpacePanel(); + float var15 = var14.getAlignmentX(); + var14.setVisible(false); + SpaceWar.SpacePanel var18 = new SpaceWar.SpacePanel(); + java.awt.Color var19 = var18.getBackground(); + var14.setForeground(var19); + SpaceWar.SpacePanel var21 = new SpaceWar.SpacePanel(); + float var22 = var21.getAlignmentX(); + var21.setVisible(false); + boolean var25 = var21.isDoubleBuffered(); + java.awt.dnd.DropTarget var26 = var21.getDropTarget(); + var21.show(false); + java.awt.Rectangle var29 = var21.getVisibleRect(); + var14.repaint(var29); + java.awt.FocusTraversalPolicy var31 = var14.getFocusTraversalPolicy(); + java.awt.im.InputMethodRequests var32 = var14.getInputMethodRequests(); + var14.layout(); + boolean var34 = var14.isFocusTraversalPolicyProvider(); + java.lang.Object var35 = var0.getClientProperty((java.lang.Object)var34); + boolean var36 = var0.isFocusTraversable(); + java.awt.event.MouseListener[] var37 = var0.getMouseListeners(); + var0.enable(false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var2); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var22 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var29); + + // Regression assertion (captures the current behavior of the code) + assertNull(var31); + + // Regression assertion (captures the current behavior of the code) + assertNull(var32); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var34 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var35); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var36 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var37); + + } + + public void test214() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test214"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + SpaceWar.SpacePanel var5 = new SpaceWar.SpacePanel(); + float var6 = var5.getAlignmentX(); + var5.setVisible(false); + var5.nextFocus(); + var5.reshape((-1), 1, (-1), 10); + var5.disable(); + boolean var16 = var5.isFocusable(); + int var17 = var5.getHeight(); + var0.setNextFocusableComponent((java.awt.Component)var5); + java.util.Set var20 = var0.getFocusTraversalKeys(0); + SpaceWar.SpacePanel var21 = new SpaceWar.SpacePanel(); + float var22 = var21.getAlignmentX(); + var21.setVisible(false); + SpaceWar.SpacePanel var25 = new SpaceWar.SpacePanel(); + java.awt.Color var26 = var25.getBackground(); + var21.setForeground(var26); + SpaceWar.SpacePanel var28 = new SpaceWar.SpacePanel(); + float var29 = var28.getAlignmentX(); + var28.setVisible(false); + boolean var32 = var28.isDoubleBuffered(); + java.awt.dnd.DropTarget var33 = var28.getDropTarget(); + var28.show(false); + java.awt.Rectangle var36 = var28.getVisibleRect(); + var21.repaint(var36); + java.awt.FocusTraversalPolicy var38 = var21.getFocusTraversalPolicy(); + SpaceWar.SpacePanel var39 = new SpaceWar.SpacePanel(); + float var40 = var39.getAlignmentX(); + var39.firePropertyChange("", (-1), 1); + boolean var45 = var39.isFocusOwner(); + SpaceWar.SpacePanel var47 = new SpaceWar.SpacePanel(); + float var48 = var47.getAlignmentX(); + var47.setVisible(false); + java.awt.Dimension var51 = var47.getPreferredSize(); + java.awt.Toolkit var52 = var47.getToolkit(); + SpaceWar.SpacePanel var53 = new SpaceWar.SpacePanel(); + var53.setName(""); + int var56 = var53.getX(); + SpaceWar.SpacePanel var57 = new SpaceWar.SpacePanel(); + float var58 = var57.getAlignmentX(); + var57.setVisible(false); + var57.nextFocus(); + SpaceWar.SpacePanel var62 = new SpaceWar.SpacePanel(); + float var63 = var62.getAlignmentX(); + var62.setVisible(false); + SpaceWar.SpacePanel var66 = new SpaceWar.SpacePanel(); + java.awt.Color var67 = var66.getBackground(); + var62.setForeground(var67); + var57.setBackground(var67); + var53.setBackground(var67); + var47.setForeground(var67); + var39.putClientProperty((java.lang.Object)(byte)100, (java.lang.Object)var67); + var21.setBackground(var67); + SpaceWar.SpacePanel var74 = new SpaceWar.SpacePanel(); + float var75 = var74.getAlignmentX(); + var74.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var80 = new SpaceWar.SpacePanel(); + float var81 = var80.getAlignmentX(); + var80.setVisible(false); + SpaceWar.SpacePanel var84 = new SpaceWar.SpacePanel(); + java.awt.Color var85 = var84.getBackground(); + var80.setForeground(var85); + var74.setBackground(var85); + java.awt.Point var88 = var74.location(); + java.awt.Point var89 = var21.getLocation(var88); + boolean var90 = var0.contains(var88); + java.beans.VetoableChangeListener[] var91 = var0.getVetoableChangeListeners(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == 10); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var22 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var29 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var32 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var33); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var36); + + // Regression assertion (captures the current behavior of the code) + assertNull(var38); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var40 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var45 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var48 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var51); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var52); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var56 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var58 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var63 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var67); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var75 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var81 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var85); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var88); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var89); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var90 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var91); + + } + + public void test215() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test215"); + + + SpaceWar.Player var0 = new SpaceWar.Player(); + int var1 = var0.getPower(); + var0.setLeft(true); + boolean var4 = var0.isRecovering(); + var0.setLife(499); + var0.setFiring(true); + int var9 = var0.getLives(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 499); + + } + + public void test216() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test216"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + var0.show(false); + boolean var8 = var0.isPaintingForPrint(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var15 = var9.getMouseListeners(); + int var16 = var9.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var17 = var9.getInputMethodRequests(); + var0.addKeyListener((java.awt.event.KeyListener)var9); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + float var20 = var19.getAlignmentX(); + var19.setVisible(false); + boolean var23 = var19.isDoubleBuffered(); + var19.list(); + float var25 = var19.getAlignmentY(); + boolean var26 = var9.isFocusCycleRoot((java.awt.Container)var19); + boolean var27 = var19.isEnabled(); + java.awt.Dimension var28 = var19.getMaximumSize(); + var19.setFocusCycleRoot(false); + var19.setInheritsPopupMenu(false); + var19.transferFocusBackward(); + var19.setFocusTraversalKeysEnabled(true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var28); + + } + + public void test217() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test217"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var6 = var0.getMouseListeners(); + int var7 = var0.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var8 = var0.getInputMethodRequests(); + var0.removeNotify(); + var0.enable(); + SpaceWar.SpacePanel var11 = new SpaceWar.SpacePanel(); + java.awt.Color var12 = var11.getBackground(); + boolean var15 = var11.inside(0, (-1)); + var11.transferFocusUpCycle(); + java.lang.String var17 = var11.getName(); + boolean var18 = var0.isFocusCycleRoot((java.awt.Container)var11); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + java.awt.Color var20 = var19.getBackground(); + var19.repaint(); + var19.setRequestFocusEnabled(false); + var19.reshape(100, 0, 100, 0); + var19.requestFocus(); + var19.firePropertyChange("hi!", '4', ' '); + java.awt.Point var34 = var19.getLocation(); + java.awt.Component var35 = var11.getComponentAt(var34); + java.beans.VetoableChangeListener[] var36 = var11.getVetoableChangeListeners(); + var11.removeAll(); + java.awt.event.HierarchyListener[] var38 = var11.getHierarchyListeners(); + var11.repaint(500, 499, 10, 25); + boolean var44 = var11.isPaintingTile(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var34); + + // Regression assertion (captures the current behavior of the code) + assertNull(var35); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var36); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var38); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var44 == false); + + } + + public void test218() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test218"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.removeNotify(); + java.awt.Component.BaselineResizeBehavior var3 = var0.getBaselineResizeBehavior(); + boolean var4 = var0.isDoubleBuffered(); + SpaceWar.SpacePanel var5 = new SpaceWar.SpacePanel(); + float var6 = var5.getAlignmentX(); + var5.setVisible(false); + boolean var9 = var5.isDoubleBuffered(); + java.awt.dnd.DropTarget var10 = var5.getDropTarget(); + var5.show(false); + boolean var13 = var5.isPaintingForPrint(); + SpaceWar.SpacePanel var14 = new SpaceWar.SpacePanel(); + float var15 = var14.getAlignmentX(); + var14.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var20 = var14.getMouseListeners(); + int var21 = var14.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var22 = var14.getInputMethodRequests(); + var5.addKeyListener((java.awt.event.KeyListener)var14); + SpaceWar.SpacePanel var24 = new SpaceWar.SpacePanel(); + float var25 = var24.getAlignmentX(); + var24.setVisible(false); + boolean var28 = var24.isDoubleBuffered(); + var24.list(); + float var30 = var24.getAlignmentY(); + boolean var31 = var14.isFocusCycleRoot((java.awt.Container)var24); + boolean var32 = var24.isEnabled(); + java.awt.Dimension var33 = var24.getMaximumSize(); + var24.disable(); + var24.updateUI(); + var24.setFocusable(false); + boolean var38 = var24.isDoubleBuffered(); + var24.repaint(0L); + javax.swing.ActionMap var41 = var24.getActionMap(); + var0.setActionMap(var41); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var28 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var30 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var31 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var32 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var33); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var38 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var41); + + } + + public void test219() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test219"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.updateUI(); + var0.enableInputMethods(true); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var14 = var8.getUI(); + java.awt.im.InputMethodRequests var15 = var8.getInputMethodRequests(); + SpaceWar.SpacePanel var16 = new SpaceWar.SpacePanel(); + float var17 = var16.getAlignmentX(); + var16.setVisible(false); + var16.nextFocus(); + var16.updateUI(); + var16.enableInputMethods(true); + var16.setSize((-1), 1); + SpaceWar.SpacePanel var27 = new SpaceWar.SpacePanel(); + var27.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var8.add((java.awt.Component)var16, (java.lang.Object)"SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + SpaceWar.SpacePanel var33 = new SpaceWar.SpacePanel(); + float var34 = var33.getAlignmentX(); + var33.setVisible(false); + java.awt.Dimension var37 = var33.getPreferredSize(); + java.awt.Toolkit var38 = var33.getToolkit(); + java.awt.Toolkit var39 = var33.getToolkit(); + java.awt.Component var40 = var16.add((java.awt.Component)var33); + int var41 = var16.getY(); + int var44 = var16.getBaseline(25, 10); + java.awt.im.InputMethodRequests var45 = var16.getInputMethodRequests(); + SpaceWar.SpacePanel var46 = new SpaceWar.SpacePanel(); + float var47 = var46.getAlignmentX(); + var46.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var52 = new SpaceWar.SpacePanel(); + float var53 = var52.getAlignmentX(); + var52.setVisible(false); + java.awt.Dimension var56 = var52.getPreferredSize(); + var46.setMaximumSize(var56); + boolean var58 = var46.getVerifyInputWhenFocusTarget(); + var46.transferFocusUpCycle(); + java.awt.Point var60 = var46.location(); + java.awt.Point var61 = var16.getLocation(var60); + boolean var62 = var0.contains(var61); + boolean var63 = var0.getAutoscrolls(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var34 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var37); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var38); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var39); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var40); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var41 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var44 == (-1)); + + // Regression assertion (captures the current behavior of the code) + assertNull(var45); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var47 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var53 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var56); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var58 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var60); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var61); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var62 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var63 == false); + + } + + public void test220() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test220"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + var0.enable(false); + boolean var7 = var0.getFocusTraversalKeysEnabled(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + java.awt.Dimension var12 = var8.getPreferredSize(); + java.awt.Toolkit var13 = var8.getToolkit(); + boolean var14 = var8.isFocusable(); + javax.swing.KeyStroke[] var15 = var8.getRegisteredKeyStrokes(); + SpaceWar.SpacePanel var16 = new SpaceWar.SpacePanel(); + float var17 = var16.getAlignmentX(); + SpaceWar.SpacePanel var18 = new SpaceWar.SpacePanel(); + float var19 = var18.getAlignmentX(); + var18.setVisible(false); + java.awt.Dimension var22 = var18.getPreferredSize(); + boolean var23 = var18.getVerifyInputWhenFocusTarget(); + java.awt.Component var26 = var18.findComponentAt(10, 1); + var16.addKeyListener((java.awt.event.KeyListener)var18); + var18.repaint(100, (-1), (-1), 1); + boolean var33 = var8.isAncestorOf((java.awt.Component)var18); + var0.addKeyListener((java.awt.event.KeyListener)var18); + SpaceWar.SpacePanel var36 = new SpaceWar.SpacePanel(); + float var37 = var36.getAlignmentX(); + var36.setVisible(false); + boolean var40 = var36.isDoubleBuffered(); + java.awt.dnd.DropTarget var41 = var36.getDropTarget(); + var36.show(false); + boolean var44 = var36.isPaintingForPrint(); + SpaceWar.SpacePanel var45 = new SpaceWar.SpacePanel(); + float var46 = var45.getAlignmentX(); + var45.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var51 = var45.getMouseListeners(); + int var52 = var45.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var53 = var45.getInputMethodRequests(); + var36.addKeyListener((java.awt.event.KeyListener)var45); + SpaceWar.SpacePanel var55 = new SpaceWar.SpacePanel(); + float var56 = var55.getAlignmentX(); + var55.setVisible(false); + boolean var59 = var55.isDoubleBuffered(); + var55.list(); + float var61 = var55.getAlignmentY(); + boolean var62 = var45.isFocusCycleRoot((java.awt.Container)var55); + SpaceWar.SpacePanel var64 = new SpaceWar.SpacePanel(); + float var65 = var64.getAlignmentX(); + var64.setVisible(false); + var64.nextFocus(); + var64.updateUI(); + java.awt.Component var70 = var45.add("", (java.awt.Component)var64); + java.awt.Component var71 = var18.add("", (java.awt.Component)var64); + boolean var74 = var18.inside(100, 0); + boolean var75 = var18.isFocusTraversalPolicySet(); + SpaceWar.SpacePanel var76 = new SpaceWar.SpacePanel(); + float var77 = var76.getAlignmentX(); + var76.setVisible(false); + SpaceWar.SpacePanel var80 = new SpaceWar.SpacePanel(); + java.awt.Color var81 = var80.getBackground(); + var76.setForeground(var81); + SpaceWar.SpacePanel var83 = new SpaceWar.SpacePanel(); + float var84 = var83.getAlignmentX(); + var83.setVisible(false); + boolean var87 = var83.isDoubleBuffered(); + java.awt.dnd.DropTarget var88 = var83.getDropTarget(); + var83.show(false); + java.awt.Rectangle var91 = var83.getVisibleRect(); + var76.repaint(var91); + java.awt.FocusTraversalPolicy var93 = var76.getFocusTraversalPolicy(); + java.awt.im.InputMethodRequests var94 = var76.getInputMethodRequests(); + var76.layout(); + var76.setDebugGraphicsOptions(10); + javax.swing.ActionMap var98 = var76.getActionMap(); + var18.setActionMap(var98); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var33 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var40 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var41); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var44 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var46 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var51); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var52 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var53); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var56 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var59 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var61 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var62 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var65 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var70); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var71); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var74 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var75 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var77 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var81); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var84 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var87 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var88); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var91); + + // Regression assertion (captures the current behavior of the code) + assertNull(var93); + + // Regression assertion (captures the current behavior of the code) + assertNull(var94); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var98); + + } + + public void test221() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test221"); + + + SpaceWar.Enemy var2 = new SpaceWar.Enemy(0, 10); + int var3 = var2.getRank(); + int var4 = var2.getR(); + int var5 = var2.getType(); + int var6 = var2.getType(); + var2.hit(); + int var8 = var2.getType(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == 10); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 0); + + } + + public void test222() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test222"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.repaint(1L); + SpaceWar.SpacePanel var7 = new SpaceWar.SpacePanel(); + float var8 = var7.getAlignmentX(); + var7.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var13 = new SpaceWar.SpacePanel(); + float var14 = var13.getAlignmentX(); + var13.setVisible(false); + java.awt.Dimension var17 = var13.getPreferredSize(); + var7.setMaximumSize(var17); + var0.setPreferredSize(var17); + SpaceWar.SpacePanel var20 = new SpaceWar.SpacePanel(); + float var21 = var20.getAlignmentX(); + var20.setVisible(false); + boolean var24 = var20.isDoubleBuffered(); + java.awt.dnd.DropTarget var25 = var20.getDropTarget(); + boolean var26 = var20.isFocusCycleRoot(); + var20.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", 100, 0); + SpaceWar.SpacePanel var31 = new SpaceWar.SpacePanel(); + float var32 = var31.getAlignmentX(); + var31.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var37 = var31.getUI(); + var20.setNextFocusableComponent((java.awt.Component)var31); + SpaceWar.SpacePanel var39 = new SpaceWar.SpacePanel(); + float var40 = var39.getAlignmentX(); + var39.setVisible(false); + var39.setInheritsPopupMenu(false); + var39.setFocusTraversalPolicyProvider(true); + SpaceWar.SpacePanel var47 = new SpaceWar.SpacePanel(); + java.awt.Color var48 = var47.getBackground(); + var47.repaint(); + java.awt.im.InputMethodRequests var50 = var47.getInputMethodRequests(); + java.awt.GraphicsConfiguration var51 = var47.getGraphicsConfiguration(); + java.awt.Component var52 = var39.add((java.awt.Component)var47); + java.awt.Rectangle var53 = var39.getBounds(); + var31.paintImmediately(var53); + var0.computeVisibleRect(var53); + var0.setSize(24, 505); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var24 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var25); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var32 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var37); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var40 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var48); + + // Regression assertion (captures the current behavior of the code) + assertNull(var50); + + // Regression assertion (captures the current behavior of the code) + assertNull(var51); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var52); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var53); + + } + + public void test223() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test223"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + SpaceWar.SpacePanel var4 = new SpaceWar.SpacePanel(); + java.awt.Color var5 = var4.getBackground(); + var0.setForeground(var5); + SpaceWar.SpacePanel var7 = new SpaceWar.SpacePanel(); + float var8 = var7.getAlignmentX(); + var7.setVisible(false); + boolean var11 = var7.isDoubleBuffered(); + java.awt.dnd.DropTarget var12 = var7.getDropTarget(); + var7.show(false); + java.awt.Rectangle var15 = var7.getVisibleRect(); + var0.repaint(var15); + java.awt.FocusTraversalPolicy var17 = var0.getFocusTraversalPolicy(); + SpaceWar.SpacePanel var18 = new SpaceWar.SpacePanel(); + float var19 = var18.getAlignmentX(); + var18.firePropertyChange("", (-1), 1); + boolean var24 = var18.isFocusOwner(); + SpaceWar.SpacePanel var26 = new SpaceWar.SpacePanel(); + float var27 = var26.getAlignmentX(); + var26.setVisible(false); + java.awt.Dimension var30 = var26.getPreferredSize(); + java.awt.Toolkit var31 = var26.getToolkit(); + SpaceWar.SpacePanel var32 = new SpaceWar.SpacePanel(); + var32.setName(""); + int var35 = var32.getX(); + SpaceWar.SpacePanel var36 = new SpaceWar.SpacePanel(); + float var37 = var36.getAlignmentX(); + var36.setVisible(false); + var36.nextFocus(); + SpaceWar.SpacePanel var41 = new SpaceWar.SpacePanel(); + float var42 = var41.getAlignmentX(); + var41.setVisible(false); + SpaceWar.SpacePanel var45 = new SpaceWar.SpacePanel(); + java.awt.Color var46 = var45.getBackground(); + var41.setForeground(var46); + var36.setBackground(var46); + var32.setBackground(var46); + var26.setForeground(var46); + var18.putClientProperty((java.lang.Object)(byte)100, (java.lang.Object)var46); + var0.setBackground(var46); + javax.swing.JToolTip var53 = var0.createToolTip(); + var0.repaint(25, 25, 24, 10); + var0.transferFocusBackward(); + java.awt.Component var62 = var0.getComponentAt(100, 24); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var24 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var30); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var31); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var35 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var42 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var46); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var53); + + // Regression assertion (captures the current behavior of the code) + assertNull(var62); + + } + + public void test224() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test224"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + var0.setName(""); + int var3 = var0.getX(); + SpaceWar.SpacePanel var4 = new SpaceWar.SpacePanel(); + float var5 = var4.getAlignmentX(); + var4.setVisible(false); + var4.nextFocus(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.setVisible(false); + SpaceWar.SpacePanel var13 = new SpaceWar.SpacePanel(); + java.awt.Color var14 = var13.getBackground(); + var9.setForeground(var14); + var4.setBackground(var14); + var0.setBackground(var14); + boolean var18 = var0.isFocusTraversable(); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + var19.setName(""); + int var22 = var19.getX(); + SpaceWar.SpacePanel var23 = new SpaceWar.SpacePanel(); + float var24 = var23.getAlignmentX(); + var23.setVisible(false); + var23.nextFocus(); + SpaceWar.SpacePanel var28 = new SpaceWar.SpacePanel(); + float var29 = var28.getAlignmentX(); + var28.setVisible(false); + SpaceWar.SpacePanel var32 = new SpaceWar.SpacePanel(); + java.awt.Color var33 = var32.getBackground(); + var28.setForeground(var33); + var23.setBackground(var33); + var19.setBackground(var33); + var0.setBackground(var33); + SpaceWar.SpacePanel var38 = new SpaceWar.SpacePanel(); + float var39 = var38.getAlignmentX(); + var38.setVisible(false); + var38.nextFocus(); + var38.updateUI(); + var38.enableInputMethods(true); + java.awt.Point var47 = var38.getMousePosition(false); + SpaceWar.SpacePanel var48 = new SpaceWar.SpacePanel(); + float var49 = var48.getAlignmentX(); + var48.setVisible(false); + boolean var52 = var48.isDoubleBuffered(); + var48.list(); + SpaceWar.SpacePanel var54 = new SpaceWar.SpacePanel(); + float var55 = var54.getAlignmentX(); + var54.setVisible(false); + boolean var58 = var54.isDoubleBuffered(); + java.awt.dnd.DropTarget var59 = var54.getDropTarget(); + var54.show(false); + java.awt.Rectangle var62 = var54.getVisibleRect(); + java.awt.Rectangle var63 = var48.getBounds(var62); + var38.scrollRectToVisible(var62); + var0.paintImmediately(var62); + var0.firePropertyChange("hi!", 1L, 100L); + var0.firePropertyChange("SpaceWar.SpacePanel[,-1,1,-1x10,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", (short)100, (short)10); + java.awt.Color var74 = var0.getForeground(); + int var75 = var0.getWidth(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var22 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var24 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var29 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var33); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var39 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNull(var47); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var49 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var52 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var55 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var58 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var59); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var62); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var63); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var74); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var75 == 0); + + } + + public void test225() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test225"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.reshape((-1), 1, (-1), 10); + var0.disable(); + java.awt.LayoutManager var11 = var0.getLayout(); + java.awt.Container var12 = var0.getParent(); + java.lang.String var13 = var0.getUIClassID(); + float var14 = var0.getAlignmentX(); + var0.enable(true); + boolean var17 = var0.isPaintingTile(); + boolean var18 = var0.isValidateRoot(); + boolean var19 = var0.isFocusTraversalPolicySet(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var13 + "' != '" + "PanelUI"+ "'", var13.equals("PanelUI")); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == false); + + } + + public void test226() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test226"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + float var6 = var0.getAlignmentY(); + var0.repaint((-1L)); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.firePropertyChange("", (-1), 1); + java.awt.event.MouseMotionListener[] var15 = var9.getMouseMotionListeners(); + java.awt.event.ComponentListener[] var16 = var9.getComponentListeners(); + SpaceWar.SpacePanel var17 = new SpaceWar.SpacePanel(); + float var18 = var17.getAlignmentX(); + var17.setVisible(false); + var17.nextFocus(); + var17.repaint(1L); + SpaceWar.SpacePanel var24 = new SpaceWar.SpacePanel(); + float var25 = var24.getAlignmentX(); + var24.setVisible(false); + boolean var28 = var24.isDoubleBuffered(); + var24.list(); + SpaceWar.SpacePanel var30 = new SpaceWar.SpacePanel(); + float var31 = var30.getAlignmentX(); + var30.setVisible(false); + boolean var34 = var30.isDoubleBuffered(); + java.awt.dnd.DropTarget var35 = var30.getDropTarget(); + var30.show(false); + java.awt.Rectangle var38 = var30.getVisibleRect(); + java.awt.Rectangle var39 = var24.getBounds(var38); + var17.setBounds(var39); + var9.paintImmediately(var39); + var0.scrollRectToVisible(var39); + var0.setDoubleBuffered(false); + SpaceWar.SpacePanel var45 = new SpaceWar.SpacePanel(); + float var46 = var45.getAlignmentX(); + var45.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var51 = var45.getUI(); + java.awt.im.InputMethodRequests var52 = var45.getInputMethodRequests(); + SpaceWar.SpacePanel var53 = new SpaceWar.SpacePanel(); + float var54 = var53.getAlignmentX(); + var53.setVisible(false); + var53.nextFocus(); + var53.updateUI(); + var53.enableInputMethods(true); + var53.setSize((-1), 1); + SpaceWar.SpacePanel var64 = new SpaceWar.SpacePanel(); + var64.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var45.add((java.awt.Component)var53, (java.lang.Object)"SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + int var70 = var0.getComponentZOrder((java.awt.Component)var53); + java.awt.Dimension var71 = var53.getMaximumSize(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var28 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var31 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var34 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var35); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var38); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var39); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var46 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var51); + + // Regression assertion (captures the current behavior of the code) + assertNull(var52); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var54 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var70 == (-1)); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var71); + + } + + public void test227() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test227"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + java.awt.Point var6 = var0.getMousePosition(); + boolean var7 = var0.getAutoscrolls(); + var0.setBounds(500, 100, 1, 1); + var0.enableInputMethods(true); + SpaceWar.SpacePanel var15 = new SpaceWar.SpacePanel(); + float var16 = var15.getAlignmentX(); + var15.setVisible(false); + java.awt.Dimension var19 = var15.getPreferredSize(); + java.awt.Toolkit var20 = var15.getToolkit(); + boolean var21 = var15.isFocusable(); + javax.swing.KeyStroke[] var22 = var15.getRegisteredKeyStrokes(); + var15.setFocusCycleRoot(false); + SpaceWar.SpacePanel var25 = new SpaceWar.SpacePanel(); + float var26 = var25.getAlignmentX(); + var25.setVisible(false); + var25.nextFocus(); + var25.reshape((-1), 1, (-1), 10); + var25.disable(); + boolean var36 = var25.isFocusable(); + int var37 = var25.getHeight(); + javax.swing.InputVerifier var38 = var25.getInputVerifier(); + java.awt.Graphics var39 = var25.getGraphics(); + java.awt.Color var40 = var25.getForeground(); + var15.setBackground(var40); + var0.setForeground(var40); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var36 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == 10); + + // Regression assertion (captures the current behavior of the code) + assertNull(var38); + + // Regression assertion (captures the current behavior of the code) + assertNull(var39); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var40); + + } + + public void test228() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test228"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.updateUI(); + var0.enableInputMethods(true); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + boolean var10 = var8.hasFocus(); + java.awt.Insets var11 = var8.getInsets(); + java.awt.Insets var12 = var0.getInsets(var11); + boolean var13 = var0.isManagingFocus(); + java.awt.Image var16 = var0.createImage(1, 10); + SpaceWar.SpacePanel var17 = new SpaceWar.SpacePanel(); + float var18 = var17.getAlignmentX(); + var17.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var23 = new SpaceWar.SpacePanel(); + float var24 = var23.getAlignmentX(); + var23.setVisible(false); + java.awt.Dimension var27 = var23.getPreferredSize(); + var17.setMaximumSize(var27); + boolean var29 = var17.getVerifyInputWhenFocusTarget(); + int var30 = var17.getX(); + SpaceWar.SpacePanel var31 = new SpaceWar.SpacePanel(); + float var32 = var31.getAlignmentX(); + var31.setVisible(false); + var31.setEnabled(false); + var0.add((java.awt.Component)var17, (java.lang.Object)false); + boolean var38 = var0.isValidateRoot(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var24 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var27); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var29 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var30 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var32 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var38 == false); + + } + + public void test229() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test229"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + boolean var2 = var0.hasFocus(); + java.awt.Insets var3 = var0.getInsets(); + java.awt.Rectangle var4 = var0.bounds(); + java.awt.event.MouseMotionListener[] var5 = var0.getMouseMotionListeners(); + boolean var6 = var0.isMaximumSizeSet(); + java.awt.LayoutManager var7 = var0.getLayout(); + boolean var8 = var0.isPreferredSizeSet(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.setVisible(false); + var9.nextFocus(); + var9.updateUI(); + var9.enableInputMethods(true); + java.awt.Point var17 = var9.getMousePosition(); + SpaceWar.SpacePanel var18 = new SpaceWar.SpacePanel(); + float var19 = var18.getAlignmentX(); + var18.setVisible(false); + boolean var22 = var18.isDoubleBuffered(); + java.awt.dnd.DropTarget var23 = var18.getDropTarget(); + var18.show(false); + boolean var26 = var18.isPaintingForPrint(); + SpaceWar.SpacePanel var27 = new SpaceWar.SpacePanel(); + float var28 = var27.getAlignmentX(); + var27.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var33 = var27.getMouseListeners(); + int var34 = var27.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var35 = var27.getInputMethodRequests(); + var18.addKeyListener((java.awt.event.KeyListener)var27); + SpaceWar.SpacePanel var37 = new SpaceWar.SpacePanel(); + float var38 = var37.getAlignmentX(); + var37.setVisible(false); + boolean var41 = var37.isDoubleBuffered(); + var37.list(); + float var43 = var37.getAlignmentY(); + boolean var44 = var27.isFocusCycleRoot((java.awt.Container)var37); + var37.firePropertyChange("", 1L, 1L); + var37.setVerifyInputWhenFocusTarget(true); + var37.resize(25, 400); + SpaceWar.SpacePanel var54 = new SpaceWar.SpacePanel(); + float var55 = var54.getAlignmentX(); + var54.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var60 = var54.getMouseListeners(); + java.awt.Dimension var61 = var54.getPreferredSize(); + java.beans.PropertyChangeListener[] var62 = var54.getPropertyChangeListeners(); + java.awt.LayoutManager var63 = var54.getLayout(); + var37.setLayout(var63); + var9.removeKeyListener((java.awt.event.KeyListener)var37); + boolean var66 = var0.isAncestorOf((java.awt.Component)var9); + var0.reshape(2, 400, 99, 10); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var2 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var4); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var22 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var23); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var28 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var33); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var34 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var35); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var38 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var41 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var43 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var44 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var55 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var60); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var61); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var62); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var63); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var66 == false); + + } + + public void test230() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test230"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.setInheritsPopupMenu(false); + var0.setFocusTraversalPolicyProvider(true); + boolean var10 = var0.inside(25, 3); + SpaceWar.SpacePanel var11 = new SpaceWar.SpacePanel(); + float var12 = var11.getAlignmentX(); + var11.setVisible(false); + boolean var15 = var11.isDoubleBuffered(); + java.awt.dnd.DropTarget var16 = var11.getDropTarget(); + var11.show(false); + boolean var19 = var11.isPaintingForPrint(); + SpaceWar.SpacePanel var20 = new SpaceWar.SpacePanel(); + float var21 = var20.getAlignmentX(); + SpaceWar.SpacePanel var22 = new SpaceWar.SpacePanel(); + float var23 = var22.getAlignmentX(); + var22.setVisible(false); + java.awt.Dimension var26 = var22.getPreferredSize(); + boolean var27 = var22.getVerifyInputWhenFocusTarget(); + java.awt.Component var30 = var22.findComponentAt(10, 1); + var20.addKeyListener((java.awt.event.KeyListener)var22); + java.awt.Dimension var32 = var22.getMinimumSize(); + var11.setMinimumSize(var32); + var0.setPreferredSize(var32); + java.awt.Insets var35 = var0.insets(); + boolean var36 = var0.isFocusTraversalPolicySet(); + boolean var37 = var0.isOpaque(); + java.awt.Component var40 = var0.getComponentAt(10, 498); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var30); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var32); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var35); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var36 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var40); + + } + + public void test231() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test231"); + + + SpaceWar.Player var0 = new SpaceWar.Player(); + int var1 = var0.getPower(); + var0.setLeft(true); + var0.increasePower(0); + int var6 = var0.getRequiredPower(); + int var7 = var0.getR(); + var0.increasePower(25); + int var10 = var0.getLives(); + int var11 = var0.getPowerLevel(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == 1); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 25); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 3); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == 1); + + } + + public void test232() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test232"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.setInheritsPopupMenu(false); + var0.setFocusTraversalPolicyProvider(true); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + boolean var12 = var8.isDoubleBuffered(); + var8.list(); + SpaceWar.SpacePanel var14 = new SpaceWar.SpacePanel(); + float var15 = var14.getAlignmentX(); + var14.setVisible(false); + boolean var18 = var14.isDoubleBuffered(); + java.awt.dnd.DropTarget var19 = var14.getDropTarget(); + var14.show(false); + java.awt.Rectangle var22 = var14.getVisibleRect(); + java.awt.Rectangle var23 = var8.getBounds(var22); + javax.swing.JToolTip var24 = var8.createToolTip(); + var0.removeKeyListener((java.awt.event.KeyListener)var8); + javax.swing.TransferHandler var26 = var0.getTransferHandler(); + boolean var27 = var0.isPaintingForPrint(); + int var28 = var0.getComponentCount(); + boolean var29 = var0.isFontSet(); + var0.hide(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var23); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var28 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var29 == true); + + } + + public void test233() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test233"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + var0.setRequestFocusEnabled(false); + var0.reshape(100, 0, 100, 0); + var0.requestFocus(); + var0.firePropertyChange("hi!", '4', ' '); + java.awt.Point var15 = var0.getLocation(); + java.awt.Dimension var16 = var0.size(); + java.awt.Image var19 = var0.createImage((-1), (-1)); + java.awt.event.ComponentListener[] var20 = var0.getComponentListeners(); + SpaceWar.SpacePanel var21 = new SpaceWar.SpacePanel(); + var21.setName(""); + java.awt.ComponentOrientation var24 = var21.getComponentOrientation(); + var21.firePropertyChange("PanelUI", 1.0f, 0.5f); + int var29 = var0.getComponentZOrder((java.awt.Component)var21); + SpaceWar.SpacePanel var30 = new SpaceWar.SpacePanel(); + float var31 = var30.getAlignmentX(); + var30.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var36 = var30.getUI(); + java.awt.im.InputMethodRequests var37 = var30.getInputMethodRequests(); + SpaceWar.SpacePanel var38 = new SpaceWar.SpacePanel(); + float var39 = var38.getAlignmentX(); + var38.setVisible(false); + var38.nextFocus(); + var38.updateUI(); + var38.enableInputMethods(true); + var38.setSize((-1), 1); + SpaceWar.SpacePanel var49 = new SpaceWar.SpacePanel(); + var49.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var30.add((java.awt.Component)var38, (java.lang.Object)"SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + SpaceWar.SpacePanel var55 = new SpaceWar.SpacePanel(); + float var56 = var55.getAlignmentX(); + var55.setVisible(false); + var55.setInheritsPopupMenu(false); + boolean var61 = var55.isDoubleBuffered(); + boolean var62 = var55.isMinimumSizeSet(); + SpaceWar.SpacePanel var63 = new SpaceWar.SpacePanel(); + float var64 = var63.getAlignmentX(); + var63.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var69 = new SpaceWar.SpacePanel(); + float var70 = var69.getAlignmentX(); + var69.setVisible(false); + java.awt.Dimension var73 = var69.getPreferredSize(); + var63.setMaximumSize(var73); + boolean var75 = var63.getVerifyInputWhenFocusTarget(); + javax.accessibility.AccessibleContext var76 = var63.getAccessibleContext(); + boolean var77 = var63.isDoubleBuffered(); + java.awt.Rectangle var78 = var63.getVisibleRect(); + var55.setBounds(var78); + java.awt.Rectangle var80 = var30.getBounds(var78); + var0.computeVisibleRect(var78); + java.awt.FocusTraversalPolicy var82 = var0.getFocusTraversalPolicy(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var29 == (-1)); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var31 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var36); + + // Regression assertion (captures the current behavior of the code) + assertNull(var37); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var39 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var56 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var61 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var62 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var64 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var70 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var73); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var75 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var76); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var77 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var78); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var80); + + // Regression assertion (captures the current behavior of the code) + assertNull(var82); + + } + + public void test234() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test234"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + var0.list(); + float var6 = var0.getAlignmentY(); + java.awt.event.ComponentListener[] var7 = var0.getComponentListeners(); + java.awt.Component var8 = var0.getNextFocusableComponent(); + boolean var9 = var0.isForegroundSet(); + java.awt.event.KeyListener[] var10 = var0.getKeyListeners(); + java.util.Locale var11 = var0.getLocale(); + javax.swing.JComponent.setDefaultLocale(var11); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + } + + public void test235() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test235"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + var0.show(false); + boolean var8 = javax.swing.JComponent.isLightweightComponent((java.awt.Component)var0); + var0.revalidate(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + } + + public void test236() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test236"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var6 = var0.getMouseListeners(); + java.awt.Dimension var7 = var0.getPreferredSize(); + java.util.Locale var8 = var0.getLocale(); + var0.setFocusable(true); + var0.setSize(3, 10); + var0.invalidate(); + boolean var15 = var0.isValid(); + SpaceWar.SpacePanel var16 = new SpaceWar.SpacePanel(); + float var17 = var16.getAlignmentX(); + var16.setVisible(false); + var16.nextFocus(); + var16.reshape((-1), 1, (-1), 10); + var16.disable(); + java.awt.Component var29 = var16.findComponentAt(0, (-1)); + SpaceWar.SpacePanel var30 = new SpaceWar.SpacePanel(); + var30.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + javax.swing.plaf.PanelUI var35 = var30.getUI(); + SpaceWar.SpacePanel var36 = new SpaceWar.SpacePanel(); + float var37 = var36.getAlignmentX(); + var36.setVisible(false); + var36.nextFocus(); + var36.repaint(1L); + SpaceWar.SpacePanel var43 = new SpaceWar.SpacePanel(); + float var44 = var43.getAlignmentX(); + var43.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var49 = new SpaceWar.SpacePanel(); + float var50 = var49.getAlignmentX(); + var49.setVisible(false); + java.awt.Dimension var53 = var49.getPreferredSize(); + var43.setMaximumSize(var53); + var36.setPreferredSize(var53); + var30.setMaximumSize(var53); + var16.setSize(var53); + java.awt.Container var58 = var16.getParent(); + java.awt.Dimension var59 = var16.getPreferredSize(); + var0.resize(var59); + SpaceWar.SpacePanel var61 = new SpaceWar.SpacePanel(); + float var62 = var61.getAlignmentX(); + var61.setVisible(false); + var61.nextFocus(); + var61.repaint(1L); + SpaceWar.SpacePanel var68 = new SpaceWar.SpacePanel(); + float var69 = var68.getAlignmentX(); + var68.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var74 = new SpaceWar.SpacePanel(); + float var75 = var74.getAlignmentX(); + var74.setVisible(false); + java.awt.Dimension var78 = var74.getPreferredSize(); + var68.setMaximumSize(var78); + var61.setPreferredSize(var78); + javax.swing.plaf.PanelUI var81 = var61.getUI(); + var0.addKeyListener((java.awt.event.KeyListener)var61); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNull(var29); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var35); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var44 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var50 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var53); + + // Regression assertion (captures the current behavior of the code) + assertNull(var58); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var59); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var62 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var69 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var75 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var78); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var81); + + } + + public void test237() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test237"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + java.awt.im.InputMethodRequests var3 = var0.getInputMethodRequests(); + int var4 = var0.countComponents(); + java.awt.Dimension var5 = var0.getSize(); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + float var7 = var6.getAlignmentX(); + var6.setVisible(false); + var6.nextFocus(); + var6.reshape((-1), 1, (-1), 10); + SpaceWar.SpacePanel var16 = new SpaceWar.SpacePanel(); + java.awt.Color var17 = var16.getBackground(); + var16.repaint(); + var16.setRequestFocusEnabled(false); + var16.reshape(100, 0, 100, 0); + java.awt.Component var26 = var6.add((java.awt.Component)var16); + boolean var27 = var16.isEnabled(); + SpaceWar.SpacePanel var28 = new SpaceWar.SpacePanel(); + float var29 = var28.getAlignmentX(); + var28.setVisible(false); + var28.setInheritsPopupMenu(false); + var28.setFocusTraversalPolicyProvider(true); + SpaceWar.SpacePanel var36 = new SpaceWar.SpacePanel(); + float var37 = var36.getAlignmentX(); + var36.setVisible(false); + boolean var40 = var36.isDoubleBuffered(); + var36.list(); + SpaceWar.SpacePanel var42 = new SpaceWar.SpacePanel(); + float var43 = var42.getAlignmentX(); + var42.setVisible(false); + boolean var46 = var42.isDoubleBuffered(); + java.awt.dnd.DropTarget var47 = var42.getDropTarget(); + var42.show(false); + java.awt.Rectangle var50 = var42.getVisibleRect(); + java.awt.Rectangle var51 = var36.getBounds(var50); + javax.swing.JToolTip var52 = var36.createToolTip(); + var28.removeKeyListener((java.awt.event.KeyListener)var36); + javax.swing.TransferHandler var54 = var28.getTransferHandler(); + var28.transferFocus(); + SpaceWar.SpacePanel var56 = new SpaceWar.SpacePanel(); + float var57 = var56.getAlignmentX(); + SpaceWar.SpacePanel var58 = new SpaceWar.SpacePanel(); + float var59 = var58.getAlignmentX(); + var58.setVisible(false); + java.awt.Dimension var62 = var58.getPreferredSize(); + boolean var63 = var58.getVerifyInputWhenFocusTarget(); + java.awt.Component var66 = var58.findComponentAt(10, 1); + var56.addKeyListener((java.awt.event.KeyListener)var58); + java.awt.Dimension var68 = var58.getMinimumSize(); + SpaceWar.SpacePanel var69 = new SpaceWar.SpacePanel(); + java.awt.Color var70 = var69.getBackground(); + var69.repaint(); + var69.setRequestFocusEnabled(false); + var69.reshape(100, 0, 100, 0); + var69.requestFocus(); + java.awt.Rectangle var80 = var69.getVisibleRect(); + var58.setBounds(var80); + var28.scrollRectToVisible(var80); + var16.setBounds(var80); + var0.setBounds(var80); + var0.show(); + boolean var86 = var0.isPaintingTile(); + boolean var87 = var0.isFocusCycleRoot(); + var0.updateUI(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var29 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var40 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var43 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var46 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var47); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var50); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var51); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var52); + + // Regression assertion (captures the current behavior of the code) + assertNull(var54); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var57 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var59 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var62); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var63 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var66); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var68); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var70); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var80); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var86 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var87 == false); + + } + + public void test238() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test238"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + SpaceWar.SpacePanel var2 = new SpaceWar.SpacePanel(); + float var3 = var2.getAlignmentX(); + var2.setVisible(false); + java.awt.Dimension var6 = var2.getPreferredSize(); + boolean var7 = var2.getVerifyInputWhenFocusTarget(); + java.awt.Component var10 = var2.findComponentAt(10, 1); + var0.addKeyListener((java.awt.event.KeyListener)var2); + var0.firePropertyChange("", false, true); + boolean var16 = var0.requestFocusInWindow(); + boolean var17 = var0.requestFocusInWindow(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == false); + + } + + public void test239() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test239"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.reshape((-1), 1, (-1), 10); + SpaceWar.SpacePanel var10 = new SpaceWar.SpacePanel(); + java.awt.Color var11 = var10.getBackground(); + var10.repaint(); + var10.setRequestFocusEnabled(false); + var10.reshape(100, 0, 100, 0); + java.awt.Component var20 = var0.add((java.awt.Component)var10); + boolean var21 = var10.isEnabled(); + javax.swing.ActionMap var22 = var10.getActionMap(); + javax.swing.border.Border var23 = var10.getBorder(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertNull(var23); + + } + + public void test240() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test240"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + SpaceWar.SpacePanel var4 = new SpaceWar.SpacePanel(); + java.awt.Color var5 = var4.getBackground(); + var0.setForeground(var5); + SpaceWar.SpacePanel var7 = new SpaceWar.SpacePanel(); + float var8 = var7.getAlignmentX(); + var7.setVisible(false); + boolean var11 = var7.isDoubleBuffered(); + java.awt.dnd.DropTarget var12 = var7.getDropTarget(); + var7.show(false); + java.awt.Rectangle var15 = var7.getVisibleRect(); + var0.repaint(var15); + java.awt.FocusTraversalPolicy var17 = var0.getFocusTraversalPolicy(); + javax.swing.TransferHandler var18 = var0.getTransferHandler(); + java.awt.Component var19 = var0.getNextFocusableComponent(); + SpaceWar.SpacePanel var20 = new SpaceWar.SpacePanel(); + java.awt.Color var21 = var20.getBackground(); + boolean var24 = var20.inside(0, (-1)); + SpaceWar.SpacePanel var25 = new SpaceWar.SpacePanel(); + float var26 = var25.getAlignmentX(); + var25.setVisible(false); + SpaceWar.SpacePanel var29 = new SpaceWar.SpacePanel(); + java.awt.Color var30 = var29.getBackground(); + var25.setForeground(var30); + var20.setForeground(var30); + var0.setForeground(var30); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var21); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var24 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var30); + + } + + public void test241() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test241"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.requestFocus(); + boolean var6 = var0.getInheritsPopupMenu(); + java.util.Locale var7 = var0.getLocale(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + java.awt.Color var9 = var8.getBackground(); + var8.repaint(); + java.awt.im.InputMethodRequests var11 = var8.getInputMethodRequests(); + var8.setDoubleBuffered(true); + var8.setInheritsPopupMenu(false); + javax.swing.InputMap var16 = var8.getInputMap(); + var8.doLayout(); + java.awt.LayoutManager var18 = var8.getLayout(); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + float var20 = var19.getAlignmentX(); + var19.setVisible(false); + var19.nextFocus(); + var19.reshape((-1), 1, (-1), 10); + var19.disable(); + java.awt.LayoutManager var30 = var19.getLayout(); + java.awt.Container var31 = var19.getParent(); + boolean var32 = var19.isPaintingForPrint(); + SpaceWar.SpacePanel var33 = new SpaceWar.SpacePanel(); + float var34 = var33.getAlignmentX(); + var33.setVisible(false); + var33.nextFocus(); + var33.reshape((-1), 1, (-1), 10); + SpaceWar.SpacePanel var43 = new SpaceWar.SpacePanel(); + java.awt.Color var44 = var43.getBackground(); + var43.repaint(); + var43.setRequestFocusEnabled(false); + var43.reshape(100, 0, 100, 0); + java.awt.Component var53 = var33.add((java.awt.Component)var43); + SpaceWar.SpacePanel var54 = new SpaceWar.SpacePanel(); + var54.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + javax.swing.plaf.PanelUI var59 = var54.getUI(); + SpaceWar.SpacePanel var60 = new SpaceWar.SpacePanel(); + float var61 = var60.getAlignmentX(); + var60.setVisible(false); + var60.nextFocus(); + var60.repaint(1L); + SpaceWar.SpacePanel var67 = new SpaceWar.SpacePanel(); + float var68 = var67.getAlignmentX(); + var67.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var73 = new SpaceWar.SpacePanel(); + float var74 = var73.getAlignmentX(); + var73.setVisible(false); + java.awt.Dimension var77 = var73.getPreferredSize(); + var67.setMaximumSize(var77); + var60.setPreferredSize(var77); + var54.setMaximumSize(var77); + java.awt.Dimension var81 = var43.getSize(var77); + var19.setSize(var81); + java.awt.Dimension var83 = var8.getSize(var81); + java.awt.Dimension var84 = var0.getSize(var81); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var9); + + // Regression assertion (captures the current behavior of the code) + assertNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var30); + + // Regression assertion (captures the current behavior of the code) + assertNull(var31); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var32 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var34 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var44); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var53); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var59); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var61 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var68 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var74 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var77); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var81); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var83); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var84); + + } + + public void test242() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test242"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + java.awt.Dimension var4 = var0.getPreferredSize(); + boolean var5 = var0.getVerifyInputWhenFocusTarget(); + java.awt.event.MouseWheelListener[] var6 = var0.getMouseWheelListeners(); + java.awt.event.MouseWheelListener[] var7 = var0.getMouseWheelListeners(); + boolean var8 = var0.isVisible(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var4); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + } + + public void test243() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test243"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.setInheritsPopupMenu(false); + boolean var6 = var0.isDoubleBuffered(); + var0.setAlignmentY(100.0f); + var0.setAlignmentX(0.0f); + java.beans.PropertyChangeListener[] var11 = var0.getPropertyChangeListeners(); + SpaceWar.SpacePanel var12 = new SpaceWar.SpacePanel(); + float var13 = var12.getAlignmentX(); + boolean var14 = var12.hasFocus(); + SpaceWar.SpacePanel var15 = new SpaceWar.SpacePanel(); + float var16 = var15.getAlignmentX(); + var15.setVisible(false); + var15.nextFocus(); + var15.reshape((-1), 1, (-1), 10); + var15.disable(); + java.awt.LayoutManager var26 = var15.getLayout(); + var15.setVisible(false); + var12.remove((java.awt.Component)var15); + var15.repaint(); + boolean var31 = var15.hasFocus(); + java.awt.Point var33 = var15.getMousePosition(false); + java.awt.Component var34 = var0.add((java.awt.Component)var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var31 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var33); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var34); + + } + + public void test244() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test244"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + java.awt.im.InputMethodRequests var3 = var0.getInputMethodRequests(); + int var4 = var0.countComponents(); + java.awt.event.ComponentListener[] var5 = var0.getComponentListeners(); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + float var7 = var6.getAlignmentX(); + var6.removeNotify(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.setVisible(false); + boolean var13 = var9.isDoubleBuffered(); + var9.list(); + float var15 = var9.getAlignmentY(); + java.awt.Insets var16 = var9.getInsets(); + java.awt.Insets var17 = var6.getInsets(var16); + java.awt.Insets var18 = var0.getInsets(var17); + javax.swing.JPopupMenu var19 = var0.getComponentPopupMenu(); + boolean var20 = var0.isFontSet(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == true); + + } + + public void test245() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test245"); + + + SpaceWar.Player var0 = new SpaceWar.Player(); + boolean var1 = var0.isRecovering(); + var0.loseLife(); + int var3 = var0.getR(); + var0.loseLife(); + var0.setDown(true); + int var7 = var0.getRequiredPower(); + var0.setUp(true); + java.awt.image.BufferedImage var11 = var0.loadImg("SpaceWar.SpacePanel[,0,0,0x0,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=java.awt.Dimension[width=800,height=600],minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + int var12 = var0.getScore(); + int var13 = var0.getR(); + var0.update(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == 25); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 1); + + // Regression assertion (captures the current behavior of the code) + assertNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == 25); + + } + + public void test246() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test246"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.setInheritsPopupMenu(false); + var0.setFocusTraversalPolicyProvider(true); + java.awt.Container var8 = var0.getFocusCycleRootAncestor(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.removeNotify(); + SpaceWar.SpacePanel var12 = new SpaceWar.SpacePanel(); + float var13 = var12.getAlignmentX(); + var12.setVisible(false); + boolean var16 = var12.isDoubleBuffered(); + var12.list(); + float var18 = var12.getAlignmentY(); + java.awt.Insets var19 = var12.getInsets(); + java.awt.Insets var20 = var9.getInsets(var19); + java.awt.Insets var21 = var0.getInsets(var20); + boolean var22 = var0.isFocusTraversalPolicyProvider(); + SpaceWar.SpacePanel var23 = new SpaceWar.SpacePanel(); + float var24 = var23.getAlignmentX(); + var23.setVisible(false); + var23.nextFocus(); + var23.updateUI(); + java.util.Locale var29 = var23.getLocale(); + SpaceWar.SpacePanel var30 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var31 = new SpaceWar.SpacePanel(); + java.awt.Color var32 = var31.getBackground(); + SpaceWar.SpacePanel var33 = new SpaceWar.SpacePanel(); + float var34 = var33.getAlignmentX(); + var33.setVisible(false); + var33.nextFocus(); + var33.updateUI(); + var33.enableInputMethods(true); + var30.add((java.awt.Component)var31, (java.lang.Object)true); + boolean var42 = var30.isMinimumSizeSet(); + java.awt.event.HierarchyListener[] var43 = var30.getHierarchyListeners(); + int var44 = var30.getComponentCount(); + SpaceWar.SpacePanel var45 = new SpaceWar.SpacePanel(); + java.awt.Color var46 = var45.getBackground(); + var45.repaint(); + var45.setRequestFocusEnabled(false); + var45.removeAll(); + var30.setNextFocusableComponent((java.awt.Component)var45); + java.awt.event.KeyListener[] var52 = var45.getKeyListeners(); + javax.swing.event.AncestorListener[] var53 = var45.getAncestorListeners(); + var0.add((java.awt.Component)var23, (java.lang.Object)var45); + java.awt.Rectangle var55 = var23.bounds(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var21); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var22 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var24 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var29); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var32); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var34 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var42 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var43); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var44 == 1); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var46); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var52); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var53); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var55); + + } + + public void test247() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test247"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.reshape((-1), 1, (-1), 10); + SpaceWar.SpacePanel var10 = new SpaceWar.SpacePanel(); + java.awt.Color var11 = var10.getBackground(); + var10.repaint(); + var10.setRequestFocusEnabled(false); + var10.reshape(100, 0, 100, 0); + java.awt.Component var20 = var0.add((java.awt.Component)var10); + java.awt.im.InputContext var21 = var10.getInputContext(); + var10.enableInputMethods(true); + var10.setLocation(100, 1); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertNull(var21); + + } + + public void test248() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test248"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + java.awt.Dimension var4 = var0.getPreferredSize(); + java.awt.Toolkit var5 = var0.getToolkit(); + java.awt.Toolkit var6 = var0.getToolkit(); + var0.enable(false); + java.awt.Color var9 = var0.getForeground(); + java.awt.Dimension var10 = var0.getPreferredSize(); + java.awt.image.VolatileImage var13 = var0.createVolatileImage(100, 24); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var4); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var9); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertNull(var13); + + } + + public void test249() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test249"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + var0.list(); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + float var7 = var6.getAlignmentX(); + var6.setVisible(false); + boolean var10 = var6.isDoubleBuffered(); + java.awt.dnd.DropTarget var11 = var6.getDropTarget(); + var6.show(false); + java.awt.Rectangle var14 = var6.getVisibleRect(); + java.awt.Rectangle var15 = var0.getBounds(var14); + javax.swing.JToolTip var16 = var0.createToolTip(); + java.awt.Dimension var17 = var0.minimumSize(); + var0.setAutoscrolls(true); + boolean var21 = var0.requestFocus(true); + java.awt.Color var22 = var0.getBackground(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var22); + + } + + public void test250() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test250"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + var0.show(false); + boolean var8 = var0.isPaintingForPrint(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var15 = var9.getMouseListeners(); + int var16 = var9.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var17 = var9.getInputMethodRequests(); + var0.addKeyListener((java.awt.event.KeyListener)var9); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + float var20 = var19.getAlignmentX(); + var19.setVisible(false); + boolean var23 = var19.isDoubleBuffered(); + var19.list(); + float var25 = var19.getAlignmentY(); + boolean var26 = var9.isFocusCycleRoot((java.awt.Container)var19); + boolean var27 = var19.isEnabled(); + java.awt.Dimension var28 = var19.getMaximumSize(); + var19.disable(); + java.awt.peer.ComponentPeer var30 = var19.getPeer(); + javax.swing.border.Border var31 = var19.getBorder(); + var19.firePropertyChange("SpaceWar.SpacePanel[,100,0,100x0,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", (-1L), 0L); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var28); + + // Regression assertion (captures the current behavior of the code) + assertNull(var30); + + // Regression assertion (captures the current behavior of the code) + assertNull(var31); + + } + + public void test251() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test251"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.repaint(1L); + SpaceWar.SpacePanel var7 = new SpaceWar.SpacePanel(); + float var8 = var7.getAlignmentX(); + var7.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var13 = new SpaceWar.SpacePanel(); + float var14 = var13.getAlignmentX(); + var13.setVisible(false); + java.awt.Dimension var17 = var13.getPreferredSize(); + var7.setMaximumSize(var17); + var0.setPreferredSize(var17); + SpaceWar.SpacePanel var21 = new SpaceWar.SpacePanel(); + float var22 = var21.getAlignmentX(); + var21.setVisible(false); + SpaceWar.SpacePanel var25 = new SpaceWar.SpacePanel(); + java.awt.Color var26 = var25.getBackground(); + var21.setForeground(var26); + javax.swing.InputMap var28 = var21.getInputMap(); + var0.setInputMap(1, var28); + var0.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", 0.0d, 1.0d); + java.awt.image.BufferedImage var35 = var0.loadImg("hi!"); + var0.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=java.awt.Dimension[width=800,height=600],minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", 284.06998599257884d, 596.7541610319765d); + java.awt.event.MouseWheelListener[] var40 = var0.getMouseWheelListeners(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var22 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var28); + + // Regression assertion (captures the current behavior of the code) + assertNull(var35); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var40); + + } + + public void test252() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test252"); + + + SpaceWar.Player var0 = new SpaceWar.Player(); + boolean var1 = var0.isRecovering(); + var0.setUp(true); + var0.loseLife(); + var0.setRigth(false); + int var7 = var0.getR(); + var0.setUp(true); + var0.setLife((-1)); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 25); + + } + + public void test253() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test253"); + + + SpaceWar.Text var4 = new SpaceWar.Text(303.60543962277467d, 388.0925419430599d, 1L, "SpaceWar.SpacePanel[,-1,100,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=265,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + + } + + public void test254() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test254"); + + + SpaceWar.Bullet var3 = new SpaceWar.Bullet(83.657626403857d, 1, 24); + double var4 = var3.getY(); + boolean var5 = var3.update(); + boolean var6 = var3.update(); + double var7 = var3.getX(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 24.0d); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 3.2093874710972052d); + + } + + public void test255() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test255"); + + + SpaceWar.Player var0 = new SpaceWar.Player(); + boolean var1 = var0.isRecovering(); + var0.loseLife(); + int var3 = var0.getR(); + var0.loseLife(); + int var5 = var0.getX(); + var0.setLife(2); + var0.setFiring(true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == 25); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == 400); + + } + + public void test256() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test256"); + + + SpaceWar.Player var0 = new SpaceWar.Player(); + int var1 = var0.getR(); + int var2 = var0.getLives(); + var0.setUp(false); + boolean var5 = var0.isDead(); + int var6 = var0.getPower(); + var0.loseLife(); + int var8 = var0.getPowerLevel(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 25); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var2 == 3); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 0); + + } + + public void test257() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test257"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + var0.setRequestFocusEnabled(false); + var0.setIgnoreRepaint(false); + java.lang.String var7 = var0.toString(); + java.awt.Color var8 = var0.getBackground(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.setVisible(false); + java.awt.Dimension var13 = var9.getPreferredSize(); + java.awt.Toolkit var14 = var9.getToolkit(); + java.awt.Toolkit var15 = var9.getToolkit(); + SpaceWar.Player var16 = new SpaceWar.Player(); + var16.increasePower(25); + int var19 = var16.getScore(); + var16.setRigth(true); + var16.loseLife(); + var0.putClientProperty((java.lang.Object)var9, (java.lang.Object)var16); + SpaceWar.SpacePanel var24 = new SpaceWar.SpacePanel(); + float var25 = var24.getAlignmentX(); + var24.setVisible(false); + var24.setInheritsPopupMenu(false); + var24.move(10, 10); + var24.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + java.awt.event.KeyListener[] var37 = var24.getKeyListeners(); + var9.removeKeyListener((java.awt.event.KeyListener)var24); + boolean var39 = var9.isCursorSet(); + SpaceWar.SpacePanel var40 = new SpaceWar.SpacePanel(); + float var41 = var40.getAlignmentX(); + boolean var42 = var40.hasFocus(); + SpaceWar.SpacePanel var43 = new SpaceWar.SpacePanel(); + float var44 = var43.getAlignmentX(); + var43.setVisible(false); + var43.nextFocus(); + var43.reshape((-1), 1, (-1), 10); + var43.disable(); + java.awt.LayoutManager var54 = var43.getLayout(); + var43.setVisible(false); + var40.remove((java.awt.Component)var43); + var43.repaint(); + boolean var59 = var43.hasFocus(); + java.awt.event.MouseWheelListener[] var60 = var43.getMouseWheelListeners(); + SpaceWar.SpacePanel var61 = new SpaceWar.SpacePanel(); + float var62 = var61.getAlignmentX(); + var61.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var67 = new SpaceWar.SpacePanel(); + float var68 = var67.getAlignmentX(); + var67.setVisible(false); + java.awt.Dimension var71 = var67.getPreferredSize(); + var61.setMaximumSize(var71); + boolean var73 = var61.getVerifyInputWhenFocusTarget(); + java.awt.Toolkit var74 = var61.getToolkit(); + java.awt.Dimension var75 = var61.minimumSize(); + var43.setPreferredSize(var75); + java.awt.Dimension var77 = var9.getSize(var75); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var7 + "' != '" + "SpaceWar.SpacePanel[,0,0,0var7,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"+ "'", var7.equals("SpaceWar.SpacePanel[,0,0,0var7,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]")); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var37); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var39 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var41 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var42 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var44 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var54); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var59 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var60); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var62 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var68 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var71); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var73 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var74); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var75); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var77); + + } + + public void test258() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test258"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var6 = var0.getMouseListeners(); + java.awt.Dimension var7 = var0.getPreferredSize(); + java.util.Locale var8 = var0.getLocale(); + var0.setFocusable(true); + var0.setSize(3, 10); + var0.invalidate(); + javax.swing.plaf.PanelUI var15 = var0.getUI(); + var0.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", 1.0f, 0.5f); + var0.setSize(24, 3); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + } + + public void test259() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test259"); + + + SpaceWar.Player var0 = new SpaceWar.Player(); + var0.increasePower(25); + int var3 = var0.getR(); + int var4 = var0.getScore(); + int var5 = var0.getR(); + boolean var6 = var0.isRecovering(); + int var7 = var0.getR(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == 25); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == 25); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 25); + + } + + public void test260() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test260"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + boolean var2 = var0.hasFocus(); + boolean var3 = var0.isPreferredSizeSet(); + var0.firePropertyChange("", (short)1, (short)0); + boolean var8 = var0.isMaximumSizeSet(); + java.awt.image.ColorModel var9 = var0.getColorModel(); + SpaceWar.SpacePanel var10 = new SpaceWar.SpacePanel(); + float var11 = var10.getAlignmentX(); + var10.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var16 = var10.getMouseListeners(); + int var17 = var10.getDebugGraphicsOptions(); + SpaceWar.SpacePanel var18 = new SpaceWar.SpacePanel(); + float var19 = var18.getAlignmentX(); + var18.setVisible(false); + boolean var22 = var18.isDoubleBuffered(); + java.awt.dnd.DropTarget var23 = var18.getDropTarget(); + var18.show(false); + java.awt.Rectangle var26 = var18.getVisibleRect(); + var10.paintImmediately(var26); + boolean var28 = var10.isFocusCycleRoot(); + java.awt.image.VolatileImage var31 = var10.createVolatileImage(500, 0); + var10.enable(); + var10.firePropertyChange("PanelUI", (byte)10, (byte)(-1)); + SpaceWar.SpacePanel var37 = new SpaceWar.SpacePanel(); + float var38 = var37.getAlignmentX(); + var37.setVisible(false); + boolean var41 = var37.isDoubleBuffered(); + java.awt.dnd.DropTarget var42 = var37.getDropTarget(); + var37.show(false); + boolean var45 = var37.isPaintingForPrint(); + SpaceWar.SpacePanel var46 = new SpaceWar.SpacePanel(); + float var47 = var46.getAlignmentX(); + var46.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var52 = var46.getMouseListeners(); + int var53 = var46.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var54 = var46.getInputMethodRequests(); + var37.addKeyListener((java.awt.event.KeyListener)var46); + SpaceWar.SpacePanel var56 = new SpaceWar.SpacePanel(); + float var57 = var56.getAlignmentX(); + var56.setVisible(false); + var56.nextFocus(); + var56.reshape((-1), 1, (-1), 10); + var56.disable(); + java.awt.LayoutManager var67 = var56.getLayout(); + java.awt.Container var68 = var56.getParent(); + boolean var69 = var56.isOptimizedDrawingEnabled(); + var56.grabFocus(); + int var71 = var56.getHeight(); + java.util.Set var73 = var56.getFocusTraversalKeys(3); + SpaceWar.SpacePanel var74 = new SpaceWar.SpacePanel(); + float var75 = var74.getAlignmentX(); + var74.setVisible(false); + boolean var78 = var74.isDoubleBuffered(); + java.awt.dnd.DropTarget var79 = var74.getDropTarget(); + java.awt.Point var80 = var74.getMousePosition(); + java.lang.String var81 = var74.getUIClassID(); + var74.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", '#', '4'); + boolean var86 = var74.requestDefaultFocus(); + java.awt.Point var88 = var74.getMousePosition(false); + java.awt.Rectangle var89 = var74.getBounds(); + var56.repaint(var89); + var46.setBounds(var89); + var10.paintImmediately(var89); + var0.computeVisibleRect(var89); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var2 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var9); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var22 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var23); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var28 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var31); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var38 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var41 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var42); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var45 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var47 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var52); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var53 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var54); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var57 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var67); + + // Regression assertion (captures the current behavior of the code) + assertNull(var68); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var69 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var71 == 10); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var73); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var75 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var78 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var79); + + // Regression assertion (captures the current behavior of the code) + assertNull(var80); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var81 + "' != '" + "PanelUI"+ "'", var81.equals("PanelUI")); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var86 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var88); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var89); + + } + + public void test261() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test261"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + java.awt.Dimension var4 = var0.getPreferredSize(); + java.awt.Toolkit var5 = var0.getToolkit(); + boolean var6 = var0.isFocusable(); + javax.swing.KeyStroke[] var7 = var0.getRegisteredKeyStrokes(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + SpaceWar.SpacePanel var10 = new SpaceWar.SpacePanel(); + float var11 = var10.getAlignmentX(); + var10.setVisible(false); + java.awt.Dimension var14 = var10.getPreferredSize(); + boolean var15 = var10.getVerifyInputWhenFocusTarget(); + java.awt.Component var18 = var10.findComponentAt(10, 1); + var8.addKeyListener((java.awt.event.KeyListener)var10); + var10.repaint(100, (-1), (-1), 1); + boolean var25 = var0.isAncestorOf((java.awt.Component)var10); + var0.setFocusable(false); + java.awt.ComponentOrientation var28 = var0.getComponentOrientation(); + java.awt.Component[] var29 = var0.getComponents(); + java.awt.event.FocusListener[] var30 = var0.getFocusListeners(); + java.lang.String var31 = var0.getToolTipText(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var4); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var28); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var29); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var30); + + // Regression assertion (captures the current behavior of the code) + assertNull(var31); + + } + + public void test262() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test262"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + java.awt.Dimension var4 = var0.getPreferredSize(); + java.awt.Toolkit var5 = var0.getToolkit(); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + var6.setName(""); + int var9 = var6.getX(); + SpaceWar.SpacePanel var10 = new SpaceWar.SpacePanel(); + float var11 = var10.getAlignmentX(); + var10.setVisible(false); + var10.nextFocus(); + SpaceWar.SpacePanel var15 = new SpaceWar.SpacePanel(); + float var16 = var15.getAlignmentX(); + var15.setVisible(false); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + java.awt.Color var20 = var19.getBackground(); + var15.setForeground(var20); + var10.setBackground(var20); + var6.setBackground(var20); + var0.setForeground(var20); + var0.enableInputMethods(true); + boolean var27 = var0.isDoubleBuffered(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var4); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == true); + + } + + public void test263() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test263"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + var0.enable(false); + boolean var7 = var0.requestDefaultFocus(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var14 = var8.getMouseListeners(); + int var15 = var8.getDebugGraphicsOptions(); + SpaceWar.SpacePanel var16 = new SpaceWar.SpacePanel(); + float var17 = var16.getAlignmentX(); + var16.setVisible(false); + boolean var20 = var16.isDoubleBuffered(); + java.awt.dnd.DropTarget var21 = var16.getDropTarget(); + var16.show(false); + java.awt.Rectangle var24 = var16.getVisibleRect(); + var8.paintImmediately(var24); + var8.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", '#', '#'); + var8.list(); + java.awt.Rectangle var31 = var8.getBounds(); + var0.scrollRectToVisible(var31); + SpaceWar.Player var33 = new SpaceWar.Player(); + boolean var34 = var33.isRecovering(); + var33.setRigth(false); + int var37 = var33.getPowerLevel(); + var33.increasePower((-1)); + java.lang.Object var40 = var0.getClientProperty((java.lang.Object)(-1)); + var0.setFocusable(true); + SpaceWar.SpacePanel var43 = new SpaceWar.SpacePanel(); + float var44 = var43.getAlignmentX(); + var43.setVisible(false); + boolean var47 = var43.isDoubleBuffered(); + java.awt.dnd.DropTarget var48 = var43.getDropTarget(); + var43.show(false); + java.awt.Rectangle var51 = var43.getVisibleRect(); + java.awt.image.BufferedImage var53 = var43.loadImg("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + java.awt.ComponentOrientation var54 = var43.getComponentOrientation(); + javax.swing.plaf.PanelUI var55 = var43.getUI(); + var43.doLayout(); + boolean var57 = var43.isOptimizedDrawingEnabled(); + java.awt.Dimension var58 = var43.minimumSize(); + java.awt.Dimension var59 = var0.getSize(var58); + int var60 = var0.getX(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var21); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var31); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var34 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var40); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var44 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var47 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var48); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var51); + + // Regression assertion (captures the current behavior of the code) + assertNull(var53); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var54); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var55); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var57 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var58); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var59); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var60 == 0); + + } + + public void test264() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test264"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + java.awt.im.InputMethodRequests var3 = var0.getInputMethodRequests(); + int var4 = var0.countComponents(); + java.awt.event.ComponentListener[] var5 = var0.getComponentListeners(); + var0.removeNotify(); + javax.swing.InputMap var7 = var0.getInputMap(); + int var8 = var0.getDebugGraphicsOptions(); + boolean var9 = var0.isFocusable(); + java.lang.String var10 = var0.getUIClassID(); + boolean var11 = var0.isPaintingTile(); + SpaceWar.SpacePanel var12 = new SpaceWar.SpacePanel(); + java.awt.Color var13 = var12.getBackground(); + var12.repaint(); + java.awt.im.InputMethodRequests var15 = var12.getInputMethodRequests(); + var12.setDoubleBuffered(true); + var12.show(false); + boolean var20 = var12.isPaintingForPrint(); + var12.repaint(100L); + SpaceWar.SpacePanel var23 = new SpaceWar.SpacePanel(); + float var24 = var23.getAlignmentX(); + var23.setVisible(false); + var23.nextFocus(); + var23.reshape((-1), 1, (-1), 10); + var23.disable(); + java.awt.LayoutManager var34 = var23.getLayout(); + var23.setVisible(false); + javax.accessibility.AccessibleContext var37 = var23.getAccessibleContext(); + java.awt.Point var38 = var23.getLocation(); + var12.setLocation(var38); + java.awt.Component var40 = var0.getComponentAt(var38); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var10 + "' != '" + "PanelUI"+ "'", var10.equals("PanelUI")); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var24 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var34); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var37); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var38); + + // Regression assertion (captures the current behavior of the code) + assertNull(var40); + + } + + public void test265() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test265"); + + + SpaceWar.Player var0 = new SpaceWar.Player(); + var0.increasePower(25); + int var3 = var0.getScore(); + var0.setRigth(true); + var0.update(); + var0.setDown(false); + java.awt.image.BufferedImage var10 = var0.loadImg("SpaceWar.SpacePanel[,-1,1,-1x10,invalid,hidden,disabled,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + boolean var11 = var0.isRecovering(); + var0.setUp(true); + int var14 = var0.getR(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == 25); + + } + + public void test266() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test266"); + + + SpaceWar.Player var0 = new SpaceWar.Player(); + var0.increasePower(25); + int var3 = var0.getR(); + int var4 = var0.getScore(); + var0.loseLife(); + boolean var6 = var0.isRecovering(); + var0.loseLife(); + int var8 = var0.getY(); + boolean var9 = var0.isRecovering(); + int var10 = var0.getX(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == 25); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 500); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 400); + + } + + public void test267() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test267"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.reshape((-1), 1, (-1), 10); + SpaceWar.SpacePanel var10 = new SpaceWar.SpacePanel(); + java.awt.Color var11 = var10.getBackground(); + var10.repaint(); + var10.setRequestFocusEnabled(false); + var10.reshape(100, 0, 100, 0); + java.awt.Component var20 = var0.add((java.awt.Component)var10); + boolean var21 = var0.isMinimumSizeSet(); + javax.swing.InputMap var22 = var0.getInputMap(); + java.awt.LayoutManager var23 = var0.getLayout(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var23); + + } + + public void test268() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test268"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + var0.setRequestFocusEnabled(false); + var0.removeAll(); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + float var7 = var6.getAlignmentX(); + var6.setVisible(false); + boolean var10 = var6.isDoubleBuffered(); + java.awt.dnd.DropTarget var11 = var6.getDropTarget(); + var6.show(false); + boolean var14 = var6.isPaintingForPrint(); + SpaceWar.SpacePanel var15 = new SpaceWar.SpacePanel(); + float var16 = var15.getAlignmentX(); + var15.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var21 = var15.getMouseListeners(); + int var22 = var15.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var23 = var15.getInputMethodRequests(); + var6.addKeyListener((java.awt.event.KeyListener)var15); + SpaceWar.SpacePanel var25 = new SpaceWar.SpacePanel(); + float var26 = var25.getAlignmentX(); + var25.setVisible(false); + boolean var29 = var25.isDoubleBuffered(); + var25.list(); + float var31 = var25.getAlignmentY(); + boolean var32 = var15.isFocusCycleRoot((java.awt.Container)var25); + SpaceWar.SpacePanel var34 = new SpaceWar.SpacePanel(); + float var35 = var34.getAlignmentX(); + var34.setVisible(false); + var34.nextFocus(); + var34.updateUI(); + java.awt.Component var40 = var15.add("", (java.awt.Component)var34); + boolean var41 = var0.isAncestorOf((java.awt.Component)var34); + boolean var43 = var34.requestFocus(true); + var34.reshape(2, 400, 2, 10); + java.awt.Component var51 = var34.locate(0, 100); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var21); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var22 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var23); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var29 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var31 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var32 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var35 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var40); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var41 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var43 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var51); + + } + + public void test269() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test269"); + + + SpaceWar.PowerUp var3 = new SpaceWar.PowerUp(99, 341.4774144340512d, 590.8075763025306d); + + } + + public void test270() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test270"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + boolean var6 = var0.isFocusCycleRoot(); + var0.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", 100, 0); + SpaceWar.SpacePanel var11 = new SpaceWar.SpacePanel(); + float var12 = var11.getAlignmentX(); + var11.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var17 = var11.getUI(); + var0.setNextFocusableComponent((java.awt.Component)var11); + java.awt.Component var21 = var0.locate(500, 3); + var0.setVisible(true); + var0.transferFocus(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertNull(var21); + + } + + public void test271() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test271"); + + + SpaceWar.Player var0 = new SpaceWar.Player(); + int var1 = var0.getR(); + var0.setUp(false); + var0.update(); + java.awt.image.BufferedImage var6 = var0.loadImg("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + boolean var7 = var0.isDead(); + var0.update(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 25); + + // Regression assertion (captures the current behavior of the code) + assertNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == false); + + } + + public void test272() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test272"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + var0.setName(""); + var0.enable(true); + var0.enable(); + java.awt.Point var6 = var0.location(); + var0.repaint(0, 3, (-1), 1); + var0.setBounds(25, 100, 1, 0); + var0.validate(); + var0.setEnabled(true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + } + + public void test273() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test273"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var1 = new SpaceWar.SpacePanel(); + java.awt.Color var2 = var1.getBackground(); + SpaceWar.SpacePanel var3 = new SpaceWar.SpacePanel(); + float var4 = var3.getAlignmentX(); + var3.setVisible(false); + var3.nextFocus(); + var3.updateUI(); + var3.enableInputMethods(true); + var0.add((java.awt.Component)var1, (java.lang.Object)true); + java.awt.Dimension var12 = var1.getPreferredSize(); + java.awt.event.FocusListener[] var13 = var1.getFocusListeners(); + java.awt.Dimension var14 = var1.preferredSize(); + java.awt.im.InputContext var15 = var1.getInputContext(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var2); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertNull(var15); + + } + + public void test274() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test274"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + boolean var6 = var0.isFocusCycleRoot(); + java.util.Locale var7 = var0.getLocale(); + boolean var8 = var0.isEnabled(); + java.awt.im.InputContext var9 = var0.getInputContext(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var9); + + } + + public void test275() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test275"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + var0.show(false); + boolean var8 = var0.isPaintingForPrint(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var15 = var9.getMouseListeners(); + int var16 = var9.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var17 = var9.getInputMethodRequests(); + var0.addKeyListener((java.awt.event.KeyListener)var9); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + float var20 = var19.getAlignmentX(); + var19.setVisible(false); + boolean var23 = var19.isDoubleBuffered(); + var19.list(); + float var25 = var19.getAlignmentY(); + boolean var26 = var9.isFocusCycleRoot((java.awt.Container)var19); + boolean var27 = var19.isEnabled(); + java.awt.Dimension var28 = var19.getMaximumSize(); + var19.disable(); + var19.updateUI(); + // The following exception was thrown during execution. + // This behavior will recorded for regression testing. + try { + java.util.Set var32 = var19.getFocusTraversalKeys((-1)); + fail("Expected exception of type java.lang.IllegalArgumentException"); + } catch (java.lang.IllegalArgumentException e) { + // Expected exception. + } + + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var28); + + } + + public void test276() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test276"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var6 = var0.getUI(); + java.awt.im.InputMethodRequests var7 = var0.getInputMethodRequests(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + var8.nextFocus(); + var8.updateUI(); + var8.enableInputMethods(true); + var8.setSize((-1), 1); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + var19.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var0.add((java.awt.Component)var8, (java.lang.Object)"SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + java.awt.ComponentOrientation var25 = var8.getComponentOrientation(); + boolean var26 = var8.isMaximumSizeSet(); + java.beans.PropertyChangeListener[] var28 = var8.getPropertyChangeListeners("SpaceWar.SpacePanel[,0,0,0x0,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + SpaceWar.SpacePanel var29 = new SpaceWar.SpacePanel(); + float var30 = var29.getAlignmentX(); + boolean var31 = var29.hasFocus(); + boolean var32 = var29.isPreferredSizeSet(); + var29.firePropertyChange("", (short)1, (short)0); + SpaceWar.SpacePanel var37 = new SpaceWar.SpacePanel(); + float var38 = var37.getAlignmentX(); + var37.firePropertyChange("", (-1), 1); + boolean var43 = var37.isFocusOwner(); + SpaceWar.SpacePanel var45 = new SpaceWar.SpacePanel(); + float var46 = var45.getAlignmentX(); + var45.setVisible(false); + java.awt.Dimension var49 = var45.getPreferredSize(); + java.awt.Toolkit var50 = var45.getToolkit(); + SpaceWar.SpacePanel var51 = new SpaceWar.SpacePanel(); + var51.setName(""); + int var54 = var51.getX(); + SpaceWar.SpacePanel var55 = new SpaceWar.SpacePanel(); + float var56 = var55.getAlignmentX(); + var55.setVisible(false); + var55.nextFocus(); + SpaceWar.SpacePanel var60 = new SpaceWar.SpacePanel(); + float var61 = var60.getAlignmentX(); + var60.setVisible(false); + SpaceWar.SpacePanel var64 = new SpaceWar.SpacePanel(); + java.awt.Color var65 = var64.getBackground(); + var60.setForeground(var65); + var55.setBackground(var65); + var51.setBackground(var65); + var45.setForeground(var65); + var37.putClientProperty((java.lang.Object)(byte)100, (java.lang.Object)var65); + boolean var71 = var37.isEnabled(); + java.awt.event.ComponentListener[] var72 = var37.getComponentListeners(); + java.awt.Dimension var73 = var37.getPreferredSize(); + var29.setSize(var73); + java.awt.Dimension var75 = var8.getSize(var73); + var8.resize(25, 0); + SpaceWar.SpacePanel var79 = new SpaceWar.SpacePanel(); + float var80 = var79.getAlignmentX(); + var79.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var85 = new SpaceWar.SpacePanel(); + float var86 = var85.getAlignmentX(); + var85.setVisible(false); + java.awt.Dimension var89 = var85.getPreferredSize(); + var79.setMaximumSize(var89); + boolean var91 = var79.getVerifyInputWhenFocusTarget(); + int var92 = var79.getX(); + java.awt.Rectangle var93 = var79.bounds(); + var8.computeVisibleRect(var93); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var25); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var28); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var30 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var31 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var32 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var38 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var43 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var46 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var49); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var50); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var54 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var56 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var61 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var65); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var71 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var72); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var73); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var75); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var80 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var86 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var89); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var91 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var92 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var93); + + } + + public void test277() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test277"); + + + SpaceWar.Player var0 = new SpaceWar.Player(); + boolean var1 = var0.isRecovering(); + var0.loseLife(); + int var3 = var0.getR(); + var0.loseLife(); + int var5 = var0.getX(); + var0.setLife(2); + var0.setLife(0); + var0.setScore(400); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == 25); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == 400); + + } + + public void test278() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test278"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var6 = var0.getUI(); + java.awt.im.InputMethodRequests var7 = var0.getInputMethodRequests(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + var8.nextFocus(); + var8.updateUI(); + var8.enableInputMethods(true); + var8.setSize((-1), 1); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + var19.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var0.add((java.awt.Component)var8, (java.lang.Object)"SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + SpaceWar.SpacePanel var25 = new SpaceWar.SpacePanel(); + float var26 = var25.getAlignmentX(); + var25.setVisible(false); + var25.setInheritsPopupMenu(false); + boolean var31 = var25.isDoubleBuffered(); + boolean var32 = var25.isMinimumSizeSet(); + SpaceWar.SpacePanel var33 = new SpaceWar.SpacePanel(); + float var34 = var33.getAlignmentX(); + var33.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var39 = new SpaceWar.SpacePanel(); + float var40 = var39.getAlignmentX(); + var39.setVisible(false); + java.awt.Dimension var43 = var39.getPreferredSize(); + var33.setMaximumSize(var43); + boolean var45 = var33.getVerifyInputWhenFocusTarget(); + javax.accessibility.AccessibleContext var46 = var33.getAccessibleContext(); + boolean var47 = var33.isDoubleBuffered(); + java.awt.Rectangle var48 = var33.getVisibleRect(); + var25.setBounds(var48); + java.awt.Rectangle var50 = var0.getBounds(var48); + var0.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=10,height=10]]", (byte)(-1), (byte)0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var31 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var32 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var34 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var40 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var43); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var45 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var46); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var47 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var48); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var50); + + } + + public void test279() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test279"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var6 = var0.getMouseListeners(); + java.awt.Dimension var7 = var0.getPreferredSize(); + java.util.Locale var8 = var0.getLocale(); + var0.setFocusable(true); + var0.setSize(3, 10); + SpaceWar.SpacePanel var14 = new SpaceWar.SpacePanel(); + float var15 = var14.getAlignmentX(); + var14.setVisible(false); + java.awt.Dimension var18 = var14.getPreferredSize(); + boolean var19 = var14.getVerifyInputWhenFocusTarget(); + java.awt.Dimension var20 = var14.size(); + var0.setSize(var20); + java.beans.VetoableChangeListener[] var22 = var0.getVetoableChangeListeners(); + javax.swing.JToolTip var23 = var0.createToolTip(); + var23.enable(); + java.awt.Insets var25 = var23.insets(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var23); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var25); + + } + + public void test280() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test280"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var1 = new SpaceWar.SpacePanel(); + java.awt.Color var2 = var1.getBackground(); + SpaceWar.SpacePanel var3 = new SpaceWar.SpacePanel(); + float var4 = var3.getAlignmentX(); + var3.setVisible(false); + var3.nextFocus(); + var3.updateUI(); + var3.enableInputMethods(true); + var0.add((java.awt.Component)var1, (java.lang.Object)true); + boolean var13 = var1.areFocusTraversalKeysSet(0); + SpaceWar.SpacePanel var14 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var15 = new SpaceWar.SpacePanel(); + java.awt.Color var16 = var15.getBackground(); + SpaceWar.SpacePanel var17 = new SpaceWar.SpacePanel(); + float var18 = var17.getAlignmentX(); + var17.setVisible(false); + var17.nextFocus(); + var17.updateUI(); + var17.enableInputMethods(true); + var14.add((java.awt.Component)var15, (java.lang.Object)true); + boolean var26 = var14.isMinimumSizeSet(); + java.awt.event.HierarchyListener[] var27 = var14.getHierarchyListeners(); + SpaceWar.SpacePanel var28 = new SpaceWar.SpacePanel(); + float var29 = var28.getAlignmentX(); + var28.setVisible(false); + SpaceWar.SpacePanel var32 = new SpaceWar.SpacePanel(); + java.awt.Color var33 = var32.getBackground(); + var28.setForeground(var33); + SpaceWar.SpacePanel var35 = new SpaceWar.SpacePanel(); + float var36 = var35.getAlignmentX(); + var35.setVisible(false); + boolean var39 = var35.isDoubleBuffered(); + java.awt.dnd.DropTarget var40 = var35.getDropTarget(); + var35.show(false); + java.awt.Rectangle var43 = var35.getVisibleRect(); + var28.repaint(var43); + java.awt.FocusTraversalPolicy var45 = var28.getFocusTraversalPolicy(); + java.awt.im.InputMethodRequests var46 = var28.getInputMethodRequests(); + var28.layout(); + boolean var48 = var28.isFocusTraversalPolicyProvider(); + java.lang.Object var49 = var14.getClientProperty((java.lang.Object)var48); + boolean var50 = var14.isFocusTraversable(); + var1.remove((java.awt.Component)var14); + SpaceWar.SpacePanel var52 = new SpaceWar.SpacePanel(); + java.awt.Color var53 = var52.getBackground(); + var52.repaint(); + var52.setRequestFocusEnabled(false); + var52.reshape(100, 0, 100, 0); + var52.requestFocus(); + java.awt.Rectangle var63 = var52.getVisibleRect(); + var14.repaint(var63); + SpaceWar.SpacePanel var65 = new SpaceWar.SpacePanel(); + float var66 = var65.getAlignmentX(); + var65.setVisible(false); + SpaceWar.SpacePanel var69 = new SpaceWar.SpacePanel(); + java.awt.Color var70 = var69.getBackground(); + var65.setForeground(var70); + SpaceWar.SpacePanel var72 = new SpaceWar.SpacePanel(); + float var73 = var72.getAlignmentX(); + var72.setVisible(false); + boolean var76 = var72.isDoubleBuffered(); + java.awt.dnd.DropTarget var77 = var72.getDropTarget(); + var72.show(false); + java.awt.Rectangle var80 = var72.getVisibleRect(); + var65.repaint(var80); + java.awt.Component.BaselineResizeBehavior var82 = var65.getBaselineResizeBehavior(); + var65.firePropertyChange("SpaceWar.SpacePanel[,-1,1,-1x10,invalid,hidden,disabled,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", 1L, 1L); + boolean var87 = var65.isFocusTraversable(); + boolean var88 = var14.isAncestorOf((java.awt.Component)var65); + boolean var91 = var14.contains(10, 1); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var2); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var27); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var29 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var33); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var36 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var39 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var40); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var43); + + // Regression assertion (captures the current behavior of the code) + assertNull(var45); + + // Regression assertion (captures the current behavior of the code) + assertNull(var46); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var48 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var49); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var50 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var53); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var63); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var66 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var70); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var73 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var76 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var77); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var80); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var82); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var87 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var88 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var91 == false); + + } + + public void test281() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test281"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.setInheritsPopupMenu(false); + var0.setFocusTraversalPolicyProvider(true); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + boolean var12 = var8.isDoubleBuffered(); + var8.list(); + SpaceWar.SpacePanel var14 = new SpaceWar.SpacePanel(); + float var15 = var14.getAlignmentX(); + var14.setVisible(false); + boolean var18 = var14.isDoubleBuffered(); + java.awt.dnd.DropTarget var19 = var14.getDropTarget(); + var14.show(false); + java.awt.Rectangle var22 = var14.getVisibleRect(); + java.awt.Rectangle var23 = var8.getBounds(var22); + javax.swing.JToolTip var24 = var8.createToolTip(); + var0.removeKeyListener((java.awt.event.KeyListener)var8); + var0.setFocusTraversalKeysEnabled(true); + javax.swing.KeyStroke[] var28 = var0.getRegisteredKeyStrokes(); + SpaceWar.SpacePanel var29 = new SpaceWar.SpacePanel(); + float var30 = var29.getAlignmentX(); + var29.setVisible(false); + java.awt.Dimension var33 = var29.getPreferredSize(); + java.awt.Toolkit var34 = var29.getToolkit(); + boolean var35 = var29.isFocusable(); + javax.swing.KeyStroke[] var36 = var29.getRegisteredKeyStrokes(); + java.awt.Component var39 = var29.getComponentAt(100, 100); + java.lang.Object var40 = var29.getTreeLock(); + boolean var43 = var29.inside(400, 0); + java.awt.event.MouseWheelListener[] var44 = var29.getMouseWheelListeners(); + var29.enableInputMethods(true); + boolean var47 = var0.isAncestorOf((java.awt.Component)var29); + java.awt.event.MouseMotionListener[] var48 = var0.getMouseMotionListeners(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var23); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var28); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var30 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var33); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var34); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var35 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var36); + + // Regression assertion (captures the current behavior of the code) + assertNull(var39); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var40); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var43 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var44); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var47 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var48); + + } + + public void test282() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test282"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var1 = new SpaceWar.SpacePanel(); + java.awt.Color var2 = var1.getBackground(); + SpaceWar.SpacePanel var3 = new SpaceWar.SpacePanel(); + float var4 = var3.getAlignmentX(); + var3.setVisible(false); + var3.nextFocus(); + var3.updateUI(); + var3.enableInputMethods(true); + var0.add((java.awt.Component)var1, (java.lang.Object)true); + java.awt.Image var14 = var1.createImage(1, (-1)); + java.awt.event.MouseListener[] var15 = var1.getMouseListeners(); + var1.firePropertyChange("SpaceWar.SpacePanel[,-1,1,-1x10,invalid,hidden,disabled,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", 100.0d, 1.0d); + var1.setLocation(24, 3); + SpaceWar.SpacePanel var23 = new SpaceWar.SpacePanel(); + float var24 = var23.getAlignmentX(); + var23.setVisible(false); + boolean var27 = var23.isDoubleBuffered(); + java.awt.dnd.DropTarget var28 = var23.getDropTarget(); + var23.show(false); + boolean var31 = var23.isPaintingForPrint(); + SpaceWar.SpacePanel var32 = new SpaceWar.SpacePanel(); + float var33 = var32.getAlignmentX(); + var32.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var38 = var32.getMouseListeners(); + int var39 = var32.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var40 = var32.getInputMethodRequests(); + var23.addKeyListener((java.awt.event.KeyListener)var32); + SpaceWar.SpacePanel var42 = new SpaceWar.SpacePanel(); + float var43 = var42.getAlignmentX(); + var42.setVisible(false); + boolean var46 = var42.isDoubleBuffered(); + var42.list(); + float var48 = var42.getAlignmentY(); + boolean var49 = var32.isFocusCycleRoot((java.awt.Container)var42); + SpaceWar.SpacePanel var51 = new SpaceWar.SpacePanel(); + float var52 = var51.getAlignmentX(); + var51.setVisible(false); + var51.nextFocus(); + var51.updateUI(); + java.awt.Component var57 = var32.add("", (java.awt.Component)var51); + SpaceWar.SpacePanel var59 = new SpaceWar.SpacePanel(); + java.awt.Color var60 = var59.getBackground(); + var59.repaint(); + var59.setRequestFocusEnabled(false); + var59.reshape(100, 0, 100, 0); + var59.requestFocus(); + var59.firePropertyChange("hi!", '4', ' '); + java.awt.Point var74 = var59.getLocation(); + java.awt.Dimension var75 = var59.size(); + java.awt.Component var76 = var32.add("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", (java.awt.Component)var59); + java.awt.Point var77 = var76.getMousePosition(); + boolean var78 = var76.isValid(); + java.awt.Component var80 = var1.add(var76, 0); + boolean var81 = var80.isFocusTraversable(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var2); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var24 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var28); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var31 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var33 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var38); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var39 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var40); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var43 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var46 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var48 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var49 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var52 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var57); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var60); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var74); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var75); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var76); + + // Regression assertion (captures the current behavior of the code) + assertNull(var77); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var78 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var80); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var81 == true); + + } + + public void test283() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test283"); + + + SpaceWar.PowerUp var3 = new SpaceWar.PowerUp(25, 278.4452028314304d, 218.4131012750485d); + + } + + public void test284() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test284"); + + + SpaceWar.Player var0 = new SpaceWar.Player(); + boolean var1 = var0.isRecovering(); + var0.loseLife(); + boolean var3 = var0.isDead(); + var0.setDown(true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == false); + + } + + public void test285() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test285"); + + + SpaceWar.Player var0 = new SpaceWar.Player(); + int var1 = var0.getPower(); + var0.setLeft(true); + var0.increasePower(0); + int var6 = var0.getR(); + int var7 = var0.getLives(); + int var8 = var0.getPowerLevel(); + var0.setDown(false); + boolean var11 = var0.isRecovering(); + int var12 = var0.getRequiredPower(); + boolean var13 = var0.isDead(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == 25); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 3); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == 1); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == false); + + } + + public void test286() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test286"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + var0.setRequestFocusEnabled(false); + var0.reshape(100, 0, 100, 0); + var0.firePropertyChange("PanelUI", 10, 10); + boolean var14 = var0.requestFocusInWindow(); + var0.grabFocus(); + var0.enable(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == false); + + } + + public void test287() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test287"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + var0.list(); + float var6 = var0.getAlignmentY(); + java.awt.Insets var7 = var0.getInsets(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var14 = var8.getMouseListeners(); + var8.firePropertyChange("", 0.5f, 100.0f); + var8.enable(false); + SpaceWar.SpacePanel var21 = new SpaceWar.SpacePanel(); + float var22 = var21.getAlignmentX(); + SpaceWar.SpacePanel var23 = new SpaceWar.SpacePanel(); + float var24 = var23.getAlignmentX(); + var23.setVisible(false); + java.awt.Dimension var27 = var23.getPreferredSize(); + boolean var28 = var23.getVerifyInputWhenFocusTarget(); + java.awt.Component var31 = var23.findComponentAt(10, 1); + var21.addKeyListener((java.awt.event.KeyListener)var23); + java.awt.Cursor var33 = var21.getCursor(); + java.awt.Dimension var34 = var21.getMinimumSize(); + var8.setSize(var34); + java.awt.Dimension var36 = var0.getSize(var34); + var0.setToolTipText("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=10,height=10]]"); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var22 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var24 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var27); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var28 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var31); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var33); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var34); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var36); + + } + + public void test288() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test288"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + var0.show(false); + boolean var8 = var0.isPaintingForPrint(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var15 = var9.getMouseListeners(); + int var16 = var9.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var17 = var9.getInputMethodRequests(); + var0.addKeyListener((java.awt.event.KeyListener)var9); + boolean var19 = var9.isShowing(); + boolean var20 = var9.isOpaque(); + var9.grabFocus(); + var9.repaint(1L); + java.awt.image.BufferedImage var25 = var9.loadImg("PanelUI"); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var25); + + } + + public void test289() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test289"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + var0.setName(""); + java.awt.Dimension var3 = var0.minimumSize(); + boolean var4 = var0.isDoubleBuffered(); + SpaceWar.SpacePanel var5 = new SpaceWar.SpacePanel(); + float var6 = var5.getAlignmentX(); + var5.setVisible(false); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + java.awt.Color var10 = var9.getBackground(); + var5.setForeground(var10); + SpaceWar.SpacePanel var12 = new SpaceWar.SpacePanel(); + float var13 = var12.getAlignmentX(); + var12.setVisible(false); + boolean var16 = var12.isDoubleBuffered(); + java.awt.dnd.DropTarget var17 = var12.getDropTarget(); + var12.show(false); + java.awt.Rectangle var20 = var12.getVisibleRect(); + var5.repaint(var20); + java.awt.FocusTraversalPolicy var22 = var5.getFocusTraversalPolicy(); + java.awt.im.InputMethodRequests var23 = var5.getInputMethodRequests(); + var5.layout(); + boolean var25 = var5.isFocusTraversalPolicyProvider(); + java.awt.Component var26 = var0.add((java.awt.Component)var5); + int var29 = var5.getBaseline(400, 25); + var5.repaint(500, 0, 99, 505); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertNull(var23); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var29 == (-1)); + + } + + public void test290() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test290"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + var0.setRequestFocusEnabled(false); + var0.removeAll(); + var0.paintImmediately(500, 500, 100, 2); + boolean var11 = var0.isMaximumSizeSet(); + java.awt.LayoutManager var12 = var0.getLayout(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var12); + + } + + public void test291() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test291"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + var0.enable(false); + boolean var7 = var0.getFocusTraversalKeysEnabled(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + java.awt.Dimension var12 = var8.getPreferredSize(); + java.awt.Toolkit var13 = var8.getToolkit(); + boolean var14 = var8.isFocusable(); + javax.swing.KeyStroke[] var15 = var8.getRegisteredKeyStrokes(); + SpaceWar.SpacePanel var16 = new SpaceWar.SpacePanel(); + float var17 = var16.getAlignmentX(); + SpaceWar.SpacePanel var18 = new SpaceWar.SpacePanel(); + float var19 = var18.getAlignmentX(); + var18.setVisible(false); + java.awt.Dimension var22 = var18.getPreferredSize(); + boolean var23 = var18.getVerifyInputWhenFocusTarget(); + java.awt.Component var26 = var18.findComponentAt(10, 1); + var16.addKeyListener((java.awt.event.KeyListener)var18); + var18.repaint(100, (-1), (-1), 1); + boolean var33 = var8.isAncestorOf((java.awt.Component)var18); + var0.addKeyListener((java.awt.event.KeyListener)var18); + java.lang.Object var35 = var18.getTreeLock(); + var18.enable(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var33 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var35); + + } + + public void test292() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test292"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + var0.show(false); + boolean var8 = var0.isPaintingForPrint(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var15 = var9.getMouseListeners(); + int var16 = var9.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var17 = var9.getInputMethodRequests(); + var0.addKeyListener((java.awt.event.KeyListener)var9); + boolean var19 = var0.isDisplayable(); + var0.resize(400, 2); + SpaceWar.SpacePanel var23 = new SpaceWar.SpacePanel(); + float var24 = var23.getAlignmentX(); + var23.setVisible(false); + var23.nextFocus(); + var23.updateUI(); + var23.enableInputMethods(true); + SpaceWar.SpacePanel var31 = new SpaceWar.SpacePanel(); + float var32 = var31.getAlignmentX(); + boolean var33 = var31.hasFocus(); + java.awt.Insets var34 = var31.getInsets(); + java.awt.Insets var35 = var23.getInsets(var34); + SpaceWar.SpacePanel var36 = new SpaceWar.SpacePanel(); + var36.setName(""); + java.awt.Graphics var39 = var36.getGraphics(); + java.awt.event.MouseMotionListener[] var40 = var36.getMouseMotionListeners(); + boolean var41 = var36.getIgnoreRepaint(); + var36.transferFocusBackward(); + var0.putClientProperty((java.lang.Object)var34, (java.lang.Object)var36); + int var44 = var0.getComponentCount(); + boolean var45 = var0.isOptimizedDrawingEnabled(); + boolean var46 = javax.swing.JComponent.isLightweightComponent((java.awt.Component)var0); + java.lang.String var47 = var0.getName(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var24 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var32 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var33 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var34); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var35); + + // Regression assertion (captures the current behavior of the code) + assertNull(var39); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var40); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var41 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var44 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var45 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var46 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var47); + + } + + public void test293() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test293"); + + + SpaceWar.Enemy var2 = new SpaceWar.Enemy(0, 10); + int var3 = var2.getRank(); + int var4 = var2.getR(); + int var5 = var2.getR(); + boolean var6 = var2.isDead(); + var2.explode(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == 10); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == false); + + } + + public void test294() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test294"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + java.awt.Dimension var4 = var0.getPreferredSize(); + java.awt.Toolkit var5 = var0.getToolkit(); + boolean var6 = var0.isFocusable(); + javax.swing.KeyStroke[] var7 = var0.getRegisteredKeyStrokes(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + SpaceWar.SpacePanel var10 = new SpaceWar.SpacePanel(); + float var11 = var10.getAlignmentX(); + var10.setVisible(false); + java.awt.Dimension var14 = var10.getPreferredSize(); + boolean var15 = var10.getVerifyInputWhenFocusTarget(); + java.awt.Component var18 = var10.findComponentAt(10, 1); + var8.addKeyListener((java.awt.event.KeyListener)var10); + var10.repaint(100, (-1), (-1), 1); + boolean var25 = var0.isAncestorOf((java.awt.Component)var10); + var0.nextFocus(); + var0.disable(); + java.awt.Dimension var28 = var0.size(); + var0.list(); + var0.resize(100, 0); + var0.transferFocusBackward(); + java.beans.VetoableChangeListener[] var34 = var0.getVetoableChangeListeners(); + java.awt.Point var36 = var0.getMousePosition(false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var4); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var28); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var34); + + // Regression assertion (captures the current behavior of the code) + assertNull(var36); + + } + + public void test295() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test295"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.setInheritsPopupMenu(false); + boolean var6 = var0.isMinimumSizeSet(); + java.awt.Point var8 = var0.getMousePosition(true); + var0.setVerifyInputWhenFocusTarget(false); + var0.updateUI(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var8); + + } + + public void test296() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test296"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + boolean var6 = var0.isFocusCycleRoot(); + var0.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", 100, 0); + SpaceWar.SpacePanel var11 = new SpaceWar.SpacePanel(); + float var12 = var11.getAlignmentX(); + var11.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var17 = var11.getUI(); + var0.add((java.awt.Component)var11, (java.lang.Object)(short)0); + java.awt.Insets var20 = var11.getInsets(); + SpaceWar.SpacePanel var21 = new SpaceWar.SpacePanel(); + float var22 = var21.getAlignmentX(); + var21.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var27 = var21.getMouseListeners(); + java.awt.Dimension var28 = var21.getPreferredSize(); + java.util.Locale var29 = var21.getLocale(); + var21.setFocusable(true); + SpaceWar.SpacePanel var32 = new SpaceWar.SpacePanel(); + java.awt.Color var33 = var32.getBackground(); + var32.repaint(); + var32.setRequestFocusEnabled(false); + var32.setIgnoreRepaint(false); + java.lang.String var39 = var32.toString(); + java.awt.Color var40 = var32.getBackground(); + var11.putClientProperty((java.lang.Object)var21, (java.lang.Object)var32); + var11.revalidate(); + java.awt.event.ContainerListener[] var43 = var11.getContainerListeners(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var22 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var27); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var28); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var29); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var33); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var39 + "' != '" + "SpaceWar.SpacePanel[,0,0,0var39,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"+ "'", var39.equals("SpaceWar.SpacePanel[,0,0,0var39,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]")); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var40); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var43); + + } + + public void test297() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test297"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + var0.show(false); + boolean var8 = var0.isPaintingForPrint(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var15 = var9.getMouseListeners(); + int var16 = var9.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var17 = var9.getInputMethodRequests(); + var0.addKeyListener((java.awt.event.KeyListener)var9); + boolean var19 = var9.isShowing(); + boolean var20 = var9.isOpaque(); + var9.grabFocus(); + java.awt.event.HierarchyBoundsListener[] var22 = var9.getHierarchyBoundsListeners(); + java.beans.PropertyChangeListener[] var24 = var9.getPropertyChangeListeners("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=8,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + boolean var25 = var9.isValid(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == false); + + } + + public void test298() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test298"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + var0.show(false); + boolean var8 = var0.isPaintingForPrint(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var15 = var9.getMouseListeners(); + int var16 = var9.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var17 = var9.getInputMethodRequests(); + var0.addKeyListener((java.awt.event.KeyListener)var9); + var9.repaint(); + java.awt.Point var20 = var9.location(); + java.awt.FocusTraversalPolicy var21 = var9.getFocusTraversalPolicy(); + var9.hide(); + SpaceWar.SpacePanel var23 = new SpaceWar.SpacePanel(); + java.awt.Color var24 = var23.getBackground(); + var23.repaint(); + java.awt.im.InputMethodRequests var26 = var23.getInputMethodRequests(); + var23.setDoubleBuffered(true); + var23.setInheritsPopupMenu(false); + javax.swing.plaf.PanelUI var31 = var23.getUI(); + java.util.Set var33 = var23.getFocusTraversalKeys(3); + var23.requestFocus(); + var23.setAlignmentX(0.0f); + var23.reshape(0, 25, 10, 2); + var23.hide(); + SpaceWar.SpacePanel var43 = new SpaceWar.SpacePanel(); + float var44 = var43.getAlignmentX(); + var43.setVisible(false); + var43.setInheritsPopupMenu(false); + var43.setFocusTraversalPolicyProvider(true); + boolean var53 = var43.inside(25, 3); + SpaceWar.SpacePanel var54 = new SpaceWar.SpacePanel(); + float var55 = var54.getAlignmentX(); + var54.setVisible(false); + boolean var58 = var54.isDoubleBuffered(); + java.awt.dnd.DropTarget var59 = var54.getDropTarget(); + var54.show(false); + boolean var62 = var54.isPaintingForPrint(); + SpaceWar.SpacePanel var63 = new SpaceWar.SpacePanel(); + float var64 = var63.getAlignmentX(); + SpaceWar.SpacePanel var65 = new SpaceWar.SpacePanel(); + float var66 = var65.getAlignmentX(); + var65.setVisible(false); + java.awt.Dimension var69 = var65.getPreferredSize(); + boolean var70 = var65.getVerifyInputWhenFocusTarget(); + java.awt.Component var73 = var65.findComponentAt(10, 1); + var63.addKeyListener((java.awt.event.KeyListener)var65); + java.awt.Dimension var75 = var65.getMinimumSize(); + var54.setMinimumSize(var75); + var43.setPreferredSize(var75); + boolean var79 = var43.requestFocus(true); + var43.reshape((-1), 10, 24, 0); + java.awt.event.MouseWheelListener[] var85 = var43.getMouseWheelListeners(); + java.awt.FocusTraversalPolicy var86 = var43.getFocusTraversalPolicy(); + var23.setFocusTraversalPolicy(var86); + var9.setFocusTraversalPolicy(var86); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertNull(var21); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var31); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var33); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var44 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var53 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var55 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var58 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var59); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var62 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var64 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var66 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var69); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var70 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var73); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var75); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var79 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var85); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var86); + + } + + public void test299() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test299"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var1 = new SpaceWar.SpacePanel(); + java.awt.Color var2 = var1.getBackground(); + SpaceWar.SpacePanel var3 = new SpaceWar.SpacePanel(); + float var4 = var3.getAlignmentX(); + var3.setVisible(false); + var3.nextFocus(); + var3.updateUI(); + var3.enableInputMethods(true); + var0.add((java.awt.Component)var1, (java.lang.Object)true); + java.awt.Image var14 = var1.createImage(1, (-1)); + java.awt.event.MouseListener[] var15 = var1.getMouseListeners(); + var1.firePropertyChange("SpaceWar.SpacePanel[,-1,1,-1x10,invalid,hidden,disabled,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", 100.0d, 1.0d); + boolean var20 = var1.isPaintingTile(); + var1.setFocusTraversalKeysEnabled(true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var2); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == false); + + } + + public void test300() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test300"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + SpaceWar.SpacePanel var4 = new SpaceWar.SpacePanel(); + java.awt.Color var5 = var4.getBackground(); + var0.setForeground(var5); + SpaceWar.SpacePanel var7 = new SpaceWar.SpacePanel(); + float var8 = var7.getAlignmentX(); + var7.setVisible(false); + boolean var11 = var7.isDoubleBuffered(); + java.awt.dnd.DropTarget var12 = var7.getDropTarget(); + var7.show(false); + java.awt.Rectangle var15 = var7.getVisibleRect(); + var0.repaint(var15); + java.awt.FocusTraversalPolicy var17 = var0.getFocusTraversalPolicy(); + java.awt.im.InputMethodRequests var18 = var0.getInputMethodRequests(); + var0.layout(); + java.awt.Point var20 = var0.getMousePosition(); + java.awt.Graphics var21 = var0.getGraphics(); + SpaceWar.SpacePanel var22 = new SpaceWar.SpacePanel(); + float var23 = var22.getAlignmentX(); + var22.setVisible(false); + var22.setInheritsPopupMenu(false); + var22.setFocusTraversalPolicyProvider(true); + SpaceWar.SpacePanel var30 = new SpaceWar.SpacePanel(); + float var31 = var30.getAlignmentX(); + var30.setVisible(false); + boolean var34 = var30.isDoubleBuffered(); + var30.list(); + SpaceWar.SpacePanel var36 = new SpaceWar.SpacePanel(); + float var37 = var36.getAlignmentX(); + var36.setVisible(false); + boolean var40 = var36.isDoubleBuffered(); + java.awt.dnd.DropTarget var41 = var36.getDropTarget(); + var36.show(false); + java.awt.Rectangle var44 = var36.getVisibleRect(); + java.awt.Rectangle var45 = var30.getBounds(var44); + javax.swing.JToolTip var46 = var30.createToolTip(); + var22.removeKeyListener((java.awt.event.KeyListener)var30); + var0.setComponentZOrder((java.awt.Component)var22, 0); + var0.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", 1.0f, 0.5f); + var0.hide(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertNull(var21); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var31 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var34 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var40 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var41); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var44); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var45); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var46); + + } + + public void test301() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test301"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + boolean var2 = var0.hasFocus(); + boolean var3 = var0.isPreferredSizeSet(); + SpaceWar.SpacePanel var4 = new SpaceWar.SpacePanel(); + java.awt.Color var5 = var4.getBackground(); + var4.repaint(); + var4.setRequestFocusEnabled(false); + int var9 = var0.getComponentZOrder((java.awt.Component)var4); + int var10 = var0.getDebugGraphicsOptions(); + var0.enableInputMethods(true); + var0.setFocusTraversalPolicyProvider(true); + java.awt.Container var15 = var0.getFocusCycleRootAncestor(); + java.awt.Component.BaselineResizeBehavior var16 = var0.getBaselineResizeBehavior(); + java.lang.String var17 = var0.getUIClassID(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var2 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == (-1)); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var17 + "' != '" + "PanelUI"+ "'", var17.equals("PanelUI")); + + } + + public void test302() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test302"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + java.awt.im.InputMethodRequests var3 = var0.getInputMethodRequests(); + int var4 = var0.countComponents(); + java.awt.event.ComponentListener[] var5 = var0.getComponentListeners(); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + float var7 = var6.getAlignmentX(); + var6.removeNotify(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.setVisible(false); + boolean var13 = var9.isDoubleBuffered(); + var9.list(); + float var15 = var9.getAlignmentY(); + java.awt.Insets var16 = var9.getInsets(); + java.awt.Insets var17 = var6.getInsets(var16); + java.awt.Insets var18 = var0.getInsets(var17); + javax.swing.JPopupMenu var19 = var0.getComponentPopupMenu(); + java.awt.image.BufferedImage var21 = var0.loadImg("PanelUI"); + var0.setVerifyInputWhenFocusTarget(false); + SpaceWar.SpacePanel var24 = new SpaceWar.SpacePanel(); + java.awt.Color var25 = var24.getBackground(); + boolean var28 = var24.inside(0, (-1)); + SpaceWar.SpacePanel var30 = new SpaceWar.SpacePanel(); + float var31 = var30.getAlignmentX(); + var30.setVisible(false); + var30.nextFocus(); + var30.reshape((-1), 1, (-1), 10); + var30.disable(); + boolean var41 = var30.isFocusable(); + SpaceWar.SpacePanel var42 = new SpaceWar.SpacePanel(); + float var43 = var42.getAlignmentX(); + var42.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var48 = var42.getUI(); + java.awt.im.InputMethodRequests var49 = var42.getInputMethodRequests(); + SpaceWar.SpacePanel var50 = new SpaceWar.SpacePanel(); + float var51 = var50.getAlignmentX(); + var50.setVisible(false); + var50.nextFocus(); + var50.updateUI(); + var50.enableInputMethods(true); + var50.setSize((-1), 1); + SpaceWar.SpacePanel var61 = new SpaceWar.SpacePanel(); + var61.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var42.add((java.awt.Component)var50, (java.lang.Object)"SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + java.awt.event.KeyListener[] var67 = var42.getKeyListeners(); + java.awt.FocusTraversalPolicy var68 = var42.getFocusTraversalPolicy(); + SpaceWar.SpacePanel var69 = new SpaceWar.SpacePanel(); + var69.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + java.awt.Toolkit var74 = var69.getToolkit(); + var30.add((java.awt.Component)var42, (java.lang.Object)var69); + var30.layout(); + java.awt.Component var77 = var24.add("", (java.awt.Component)var30); + java.lang.Object var78 = var0.getClientProperty((java.lang.Object)var77); + java.util.Locale var79 = var77.getLocale(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertNull(var21); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var25); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var28 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var31 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var41 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var43 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var48); + + // Regression assertion (captures the current behavior of the code) + assertNull(var49); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var51 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var67); + + // Regression assertion (captures the current behavior of the code) + assertNull(var68); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var74); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var77); + + // Regression assertion (captures the current behavior of the code) + assertNull(var78); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var79); + + } + + public void test303() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test303"); + + + SpaceWar.Player var0 = new SpaceWar.Player(); + int var1 = var0.getPower(); + var0.setLeft(true); + var0.increasePower(0); + int var6 = var0.getRequiredPower(); + int var7 = var0.getPower(); + var0.setLife(500); + int var10 = var0.getPowerLevel(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == 1); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0); + + } + + public void test304() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test304"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + var0.show(false); + boolean var8 = var0.isPaintingForPrint(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var15 = var9.getMouseListeners(); + int var16 = var9.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var17 = var9.getInputMethodRequests(); + var0.addKeyListener((java.awt.event.KeyListener)var9); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + float var20 = var19.getAlignmentX(); + var19.setVisible(false); + boolean var23 = var19.isDoubleBuffered(); + var19.list(); + float var25 = var19.getAlignmentY(); + boolean var26 = var9.isFocusCycleRoot((java.awt.Container)var19); + boolean var27 = var19.isEnabled(); + java.awt.Dimension var28 = var19.getMaximumSize(); + var19.setFocusCycleRoot(false); + boolean var31 = var19.isPaintingTile(); + java.awt.Rectangle var32 = var19.getBounds(); + var19.repaint(); + SpaceWar.SpacePanel var34 = new SpaceWar.SpacePanel(); + float var35 = var34.getAlignmentX(); + var34.setVisible(false); + boolean var38 = var34.isDoubleBuffered(); + var34.list(); + SpaceWar.SpacePanel var40 = new SpaceWar.SpacePanel(); + float var41 = var40.getAlignmentX(); + var40.setVisible(false); + boolean var44 = var40.isDoubleBuffered(); + java.awt.dnd.DropTarget var45 = var40.getDropTarget(); + var40.show(false); + java.awt.Rectangle var48 = var40.getVisibleRect(); + java.awt.Rectangle var49 = var34.getBounds(var48); + javax.swing.JToolTip var50 = var34.createToolTip(); + var34.firePropertyChange("", false, false); + var34.setFocusTraversalKeysEnabled(false); + var34.setAlignmentY(100.0f); + boolean var59 = var19.isAncestorOf((java.awt.Component)var34); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var28); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var31 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var32); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var35 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var38 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var41 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var44 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var45); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var48); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var49); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var50); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var59 == false); + + } + + public void test305() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test305"); + + + SpaceWar.Explosion var4 = new SpaceWar.Explosion(1.0d, 19.998476951563912d, 0, (-1)); + boolean var5 = var4.update(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == true); + + } + + public void test306() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test306"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.reshape((-1), 1, (-1), 10); + SpaceWar.SpacePanel var10 = new SpaceWar.SpacePanel(); + java.awt.Color var11 = var10.getBackground(); + var10.repaint(); + var10.setRequestFocusEnabled(false); + var10.reshape(100, 0, 100, 0); + java.awt.Component var20 = var0.add((java.awt.Component)var10); + SpaceWar.SpacePanel var21 = new SpaceWar.SpacePanel(); + var21.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + javax.swing.plaf.PanelUI var26 = var21.getUI(); + SpaceWar.SpacePanel var27 = new SpaceWar.SpacePanel(); + float var28 = var27.getAlignmentX(); + var27.setVisible(false); + var27.nextFocus(); + var27.repaint(1L); + SpaceWar.SpacePanel var34 = new SpaceWar.SpacePanel(); + float var35 = var34.getAlignmentX(); + var34.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var40 = new SpaceWar.SpacePanel(); + float var41 = var40.getAlignmentX(); + var40.setVisible(false); + java.awt.Dimension var44 = var40.getPreferredSize(); + var34.setMaximumSize(var44); + var27.setPreferredSize(var44); + var21.setMaximumSize(var44); + java.awt.Dimension var48 = var10.getSize(var44); + boolean var49 = var10.isFontSet(); + boolean var50 = javax.swing.JComponent.isLightweightComponent((java.awt.Component)var10); + boolean var51 = var10.isFocusTraversalPolicyProvider(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var28 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var35 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var41 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var44); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var48); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var49 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var50 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var51 == false); + + } + + public void test307() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test307"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + SpaceWar.SpacePanel var4 = new SpaceWar.SpacePanel(); + java.awt.Color var5 = var4.getBackground(); + var0.setForeground(var5); + SpaceWar.SpacePanel var7 = new SpaceWar.SpacePanel(); + float var8 = var7.getAlignmentX(); + var7.setVisible(false); + boolean var11 = var7.isDoubleBuffered(); + java.awt.dnd.DropTarget var12 = var7.getDropTarget(); + var7.show(false); + java.awt.Rectangle var15 = var7.getVisibleRect(); + var0.repaint(var15); + java.awt.FocusTraversalPolicy var17 = var0.getFocusTraversalPolicy(); + java.awt.im.InputMethodRequests var18 = var0.getInputMethodRequests(); + javax.swing.JToolTip var19 = var0.createToolTip(); + javax.swing.JRootPane var20 = var19.getRootPane(); + boolean var21 = var19.isMinimumSizeSet(); + SpaceWar.SpacePanel var22 = new SpaceWar.SpacePanel(); + float var23 = var22.getAlignmentX(); + var22.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var28 = new SpaceWar.SpacePanel(); + float var29 = var28.getAlignmentX(); + var28.setVisible(false); + java.awt.Dimension var32 = var28.getPreferredSize(); + var22.setMaximumSize(var32); + boolean var34 = var22.getVerifyInputWhenFocusTarget(); + int var35 = var22.getX(); + SpaceWar.SpacePanel var36 = new SpaceWar.SpacePanel(); + float var37 = var36.getAlignmentX(); + SpaceWar.SpacePanel var38 = new SpaceWar.SpacePanel(); + float var39 = var38.getAlignmentX(); + var38.setVisible(false); + java.awt.Dimension var42 = var38.getPreferredSize(); + boolean var43 = var38.getVerifyInputWhenFocusTarget(); + java.awt.Component var46 = var38.findComponentAt(10, 1); + var36.addKeyListener((java.awt.event.KeyListener)var38); + var38.repaint(100, (-1), (-1), 1); + SpaceWar.SpacePanel var53 = new SpaceWar.SpacePanel(); + java.awt.Color var54 = var53.getBackground(); + var53.repaint(); + java.awt.im.InputMethodRequests var56 = var53.getInputMethodRequests(); + java.awt.GraphicsConfiguration var57 = var53.getGraphicsConfiguration(); + var38.remove((java.awt.Component)var53); + java.awt.Font var59 = var53.getFont(); + var22.setFont(var59); + boolean var61 = var22.isManagingFocus(); + SpaceWar.SpacePanel var62 = new SpaceWar.SpacePanel(); + java.awt.Color var63 = var62.getBackground(); + var62.repaint(); + var62.setRequestFocusEnabled(false); + var62.reshape(100, 0, 100, 0); + java.beans.VetoableChangeListener[] var72 = var62.getVetoableChangeListeners(); + java.awt.Rectangle var73 = var62.getVisibleRect(); + java.awt.Rectangle var74 = var22.getBounds(var73); + var19.setBounds(var74); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var29 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var32); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var34 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var35 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var39 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var42); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var43 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var46); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var54); + + // Regression assertion (captures the current behavior of the code) + assertNull(var56); + + // Regression assertion (captures the current behavior of the code) + assertNull(var57); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var59); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var61 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var63); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var72); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var73); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var74); + + } + + public void test308() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test308"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + var0.list(); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + float var7 = var6.getAlignmentX(); + var6.setVisible(false); + boolean var10 = var6.isDoubleBuffered(); + java.awt.dnd.DropTarget var11 = var6.getDropTarget(); + var6.show(false); + java.awt.Rectangle var14 = var6.getVisibleRect(); + java.awt.Rectangle var15 = var0.getBounds(var14); + javax.swing.JToolTip var16 = var0.createToolTip(); + boolean var17 = var16.getInheritsPopupMenu(); + var16.layout(); + var16.invalidate(); + java.beans.VetoableChangeListener[] var20 = var16.getVetoableChangeListeners(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + } + + public void test309() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test309"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + var0.show(false); + boolean var8 = var0.isPaintingForPrint(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var15 = var9.getMouseListeners(); + int var16 = var9.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var17 = var9.getInputMethodRequests(); + var0.addKeyListener((java.awt.event.KeyListener)var9); + boolean var19 = var0.isDisplayable(); + java.awt.Insets var20 = var0.getInsets(); + SpaceWar.SpacePanel var21 = new SpaceWar.SpacePanel(); + float var22 = var21.getAlignmentX(); + var21.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var27 = new SpaceWar.SpacePanel(); + float var28 = var27.getAlignmentX(); + var27.setVisible(false); + SpaceWar.SpacePanel var31 = new SpaceWar.SpacePanel(); + java.awt.Color var32 = var31.getBackground(); + var27.setForeground(var32); + var21.setBackground(var32); + java.awt.Point var35 = var21.location(); + java.awt.Point var36 = var0.getLocation(var35); + SpaceWar.SpacePanel var37 = new SpaceWar.SpacePanel(); + float var38 = var37.getAlignmentX(); + var37.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var43 = new SpaceWar.SpacePanel(); + float var44 = var43.getAlignmentX(); + var43.setVisible(false); + java.awt.Dimension var47 = var43.getPreferredSize(); + var37.setMaximumSize(var47); + boolean var49 = var37.getVerifyInputWhenFocusTarget(); + java.awt.Toolkit var50 = var37.getToolkit(); + java.awt.Dimension var51 = var37.minimumSize(); + var0.setNextFocusableComponent((java.awt.Component)var37); + var37.transferFocusDownCycle(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var22 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var28 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var32); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var35); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var36); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var38 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var44 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var47); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var49 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var50); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var51); + + } + + public void test310() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test310"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + SpaceWar.SpacePanel var4 = new SpaceWar.SpacePanel(); + java.awt.Color var5 = var4.getBackground(); + var0.setForeground(var5); + SpaceWar.SpacePanel var7 = new SpaceWar.SpacePanel(); + float var8 = var7.getAlignmentX(); + var7.setVisible(false); + boolean var11 = var7.isDoubleBuffered(); + java.awt.dnd.DropTarget var12 = var7.getDropTarget(); + var7.show(false); + java.awt.Rectangle var15 = var7.getVisibleRect(); + var0.repaint(var15); + java.awt.FocusTraversalPolicy var17 = var0.getFocusTraversalPolicy(); + SpaceWar.SpacePanel var18 = new SpaceWar.SpacePanel(); + float var19 = var18.getAlignmentX(); + var18.firePropertyChange("", (-1), 1); + boolean var24 = var18.isFocusOwner(); + SpaceWar.SpacePanel var26 = new SpaceWar.SpacePanel(); + float var27 = var26.getAlignmentX(); + var26.setVisible(false); + java.awt.Dimension var30 = var26.getPreferredSize(); + java.awt.Toolkit var31 = var26.getToolkit(); + SpaceWar.SpacePanel var32 = new SpaceWar.SpacePanel(); + var32.setName(""); + int var35 = var32.getX(); + SpaceWar.SpacePanel var36 = new SpaceWar.SpacePanel(); + float var37 = var36.getAlignmentX(); + var36.setVisible(false); + var36.nextFocus(); + SpaceWar.SpacePanel var41 = new SpaceWar.SpacePanel(); + float var42 = var41.getAlignmentX(); + var41.setVisible(false); + SpaceWar.SpacePanel var45 = new SpaceWar.SpacePanel(); + java.awt.Color var46 = var45.getBackground(); + var41.setForeground(var46); + var36.setBackground(var46); + var32.setBackground(var46); + var26.setForeground(var46); + var18.putClientProperty((java.lang.Object)(byte)100, (java.lang.Object)var46); + var0.setBackground(var46); + javax.swing.JToolTip var53 = var0.createToolTip(); + var0.repaint(25, 25, 24, 10); + java.lang.Object var59 = var0.getTreeLock(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var24 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var30); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var31); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var35 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var42 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var46); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var53); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var59); + + } + + public void test311() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test311"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + java.awt.Color var7 = var6.getBackground(); + var6.repaint(); + var6.setRequestFocusEnabled(false); + var6.reshape(100, 0, 100, 0); + var6.requestFocus(); + SpaceWar.SpacePanel var17 = new SpaceWar.SpacePanel(); + float var18 = var17.getAlignmentX(); + var17.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var23 = var17.getUI(); + java.awt.im.InputMethodRequests var24 = var17.getInputMethodRequests(); + SpaceWar.SpacePanel var25 = new SpaceWar.SpacePanel(); + float var26 = var25.getAlignmentX(); + var25.setVisible(false); + var25.nextFocus(); + var25.updateUI(); + var25.enableInputMethods(true); + var25.setSize((-1), 1); + SpaceWar.SpacePanel var36 = new SpaceWar.SpacePanel(); + var36.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var17.add((java.awt.Component)var25, (java.lang.Object)"SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + SpaceWar.SpacePanel var42 = new SpaceWar.SpacePanel(); + var42.setName(""); + java.awt.ComponentOrientation var45 = var42.getComponentOrientation(); + var17.applyComponentOrientation(var45); + var6.setComponentOrientation(var45); + var0.applyComponentOrientation(var45); + SpaceWar.SpacePanel var49 = new SpaceWar.SpacePanel(); + float var50 = var49.getAlignmentX(); + var49.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var55 = var49.getUI(); + SpaceWar.SpacePanel var56 = new SpaceWar.SpacePanel(); + float var57 = var56.getAlignmentX(); + var56.setVisible(false); + SpaceWar.SpacePanel var60 = new SpaceWar.SpacePanel(); + java.awt.Color var61 = var60.getBackground(); + var56.setForeground(var61); + SpaceWar.SpacePanel var63 = new SpaceWar.SpacePanel(); + float var64 = var63.getAlignmentX(); + var63.setVisible(false); + boolean var67 = var63.isDoubleBuffered(); + java.awt.dnd.DropTarget var68 = var63.getDropTarget(); + var63.show(false); + java.awt.Rectangle var71 = var63.getVisibleRect(); + var56.repaint(var71); + java.awt.FocusTraversalPolicy var73 = var56.getFocusTraversalPolicy(); + var56.resetKeyboardActions(); + SpaceWar.SpacePanel var75 = new SpaceWar.SpacePanel(); + float var76 = var75.getAlignmentX(); + var75.setVisible(false); + boolean var79 = var75.isDoubleBuffered(); + java.awt.dnd.DropTarget var80 = var75.getDropTarget(); + var75.show(false); + java.awt.Rectangle var83 = var75.getVisibleRect(); + var56.computeVisibleRect(var83); + javax.swing.ActionMap var85 = var56.getActionMap(); + var49.setActionMap(var85); + var0.setActionMap(var85); + boolean var88 = var0.isValidateRoot(); + java.awt.event.MouseMotionListener[] var89 = var0.getMouseMotionListeners(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var23); + + // Regression assertion (captures the current behavior of the code) + assertNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var45); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var50 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var55); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var57 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var61); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var64 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var67 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var68); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var71); + + // Regression assertion (captures the current behavior of the code) + assertNull(var73); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var76 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var79 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var80); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var83); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var85); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var88 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var89); + + } + + public void test312() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test312"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var6 = var0.getUI(); + java.awt.im.InputMethodRequests var7 = var0.getInputMethodRequests(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + var8.nextFocus(); + var8.updateUI(); + var8.enableInputMethods(true); + var8.setSize((-1), 1); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + var19.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var0.add((java.awt.Component)var8, (java.lang.Object)"SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + var8.setAutoscrolls(true); + java.awt.Image var29 = var8.createImage(400, 400); + var8.enableInputMethods(true); + javax.swing.plaf.PanelUI var32 = var8.getUI(); + SpaceWar.SpacePanel var33 = new SpaceWar.SpacePanel(); + java.awt.Color var34 = var33.getBackground(); + boolean var37 = var33.inside(0, (-1)); + var33.transferFocusUpCycle(); + javax.swing.JToolTip var39 = var33.createToolTip(); + SpaceWar.SpacePanel var40 = new SpaceWar.SpacePanel(); + float var41 = var40.getAlignmentX(); + var40.setVisible(false); + boolean var44 = var40.isDoubleBuffered(); + java.awt.dnd.DropTarget var45 = var40.getDropTarget(); + var40.show(false); + boolean var48 = var40.isPaintingForPrint(); + SpaceWar.SpacePanel var49 = new SpaceWar.SpacePanel(); + float var50 = var49.getAlignmentX(); + var49.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var55 = var49.getMouseListeners(); + int var56 = var49.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var57 = var49.getInputMethodRequests(); + var40.addKeyListener((java.awt.event.KeyListener)var49); + SpaceWar.SpacePanel var59 = new SpaceWar.SpacePanel(); + float var60 = var59.getAlignmentX(); + var59.setVisible(false); + boolean var63 = var59.isDoubleBuffered(); + var59.list(); + float var65 = var59.getAlignmentY(); + boolean var66 = var49.isFocusCycleRoot((java.awt.Container)var59); + javax.swing.JPopupMenu var67 = var59.getComponentPopupMenu(); + var59.firePropertyChange("hi!", 3, 0); + boolean var72 = var59.isValidateRoot(); + java.awt.Rectangle var73 = var59.getVisibleRect(); + java.awt.Rectangle var74 = var33.getBounds(var73); + var8.paintImmediately(var74); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNull(var29); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var32); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var34); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var39); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var41 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var44 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var45); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var48 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var50 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var55); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var56 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var57); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var60 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var63 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var65 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var66 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var67); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var72 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var73); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var74); + + } + + public void test313() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test313"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + SpaceWar.SpacePanel var5 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + java.awt.Color var7 = var6.getBackground(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + var8.nextFocus(); + var8.updateUI(); + var8.enableInputMethods(true); + var5.add((java.awt.Component)var6, (java.lang.Object)true); + java.awt.Dimension var17 = var6.getPreferredSize(); + var0.setMaximumSize(var17); + java.awt.Dimension var19 = var0.preferredSize(); + boolean var20 = var0.getVerifyInputWhenFocusTarget(); + java.awt.Rectangle var21 = var0.bounds(); + var0.repaint(24, 99, (-1), (-1)); + javax.swing.TransferHandler var27 = var0.getTransferHandler(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var21); + + // Regression assertion (captures the current behavior of the code) + assertNull(var27); + + } + + public void test314() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test314"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + var0.setName(""); + int var3 = var0.getX(); + java.lang.String var4 = var0.getToolTipText(); + java.awt.Point var5 = var0.getLocation(); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + java.awt.Color var7 = var6.getBackground(); + var6.repaint(); + var6.setRequestFocusEnabled(false); + var6.reshape(100, 0, 100, 0); + javax.swing.event.AncestorListener[] var16 = var6.getAncestorListeners(); + var6.setOpaque(true); + var6.show(); + SpaceWar.SpacePanel var20 = new SpaceWar.SpacePanel(); + float var21 = var20.getAlignmentX(); + var20.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var26 = var20.getMouseListeners(); + java.awt.Dimension var27 = var20.getPreferredSize(); + java.util.Locale var28 = var20.getLocale(); + java.awt.Font var29 = var20.getFont(); + java.awt.Container var30 = var20.getTopLevelAncestor(); + var0.add((java.awt.Component)var6, (java.lang.Object)var20); + var6.enable(true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var4); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var27); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var28); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var29); + + // Regression assertion (captures the current behavior of the code) + assertNull(var30); + + } + + public void test315() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test315"); + + + SpaceWar.Player var0 = new SpaceWar.Player(); + int var1 = var0.getPower(); + var0.setLeft(true); + var0.increasePower(0); + int var6 = var0.getR(); + int var7 = var0.getLives(); + int var8 = var0.getPowerLevel(); + var0.setDown(false); + var0.setLeft(false); + var0.update(); + int var14 = var0.getX(); + int var15 = var0.getPower(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == 25); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 3); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == 400); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == 0); + + } + + public void test316() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test316"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var6 = var0.getUI(); + java.awt.im.InputMethodRequests var7 = var0.getInputMethodRequests(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + var8.nextFocus(); + var8.updateUI(); + var8.enableInputMethods(true); + var8.setSize((-1), 1); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + var19.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var0.add((java.awt.Component)var8, (java.lang.Object)"SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + java.awt.ComponentOrientation var25 = var8.getComponentOrientation(); + java.beans.VetoableChangeListener[] var26 = var8.getVetoableChangeListeners(); + java.awt.dnd.DropTarget var27 = var8.getDropTarget(); + var8.repaint(3, 499, 400, 1); + java.awt.Toolkit var33 = var8.getToolkit(); + var8.setFocusCycleRoot(true); + var8.resize(498, 100); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var25); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertNull(var27); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var33); + + } + + public void test317() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test317"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + boolean var2 = var0.hasFocus(); + boolean var3 = var0.isPreferredSizeSet(); + SpaceWar.SpacePanel var4 = new SpaceWar.SpacePanel(); + java.awt.Color var5 = var4.getBackground(); + var4.repaint(); + var4.setRequestFocusEnabled(false); + int var9 = var0.getComponentZOrder((java.awt.Component)var4); + java.awt.GraphicsConfiguration var10 = var4.getGraphicsConfiguration(); + java.awt.Container var11 = var4.getTopLevelAncestor(); + boolean var12 = var4.isOpaque(); + var4.repaint(10L); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var2 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == (-1)); + + // Regression assertion (captures the current behavior of the code) + assertNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == true); + + } + + public void test318() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test318"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + var0.show(false); + java.awt.Rectangle var8 = var0.getVisibleRect(); + java.awt.Toolkit var9 = var0.getToolkit(); + java.awt.event.MouseMotionListener[] var10 = var0.getMouseMotionListeners(); + boolean var11 = var0.isManagingFocus(); + SpaceWar.SpacePanel var12 = new SpaceWar.SpacePanel(); + float var13 = var12.getAlignmentX(); + var12.setVisible(false); + var12.nextFocus(); + var12.updateUI(); + var12.enableInputMethods(true); + SpaceWar.SpacePanel var20 = new SpaceWar.SpacePanel(); + float var21 = var20.getAlignmentX(); + boolean var22 = var20.hasFocus(); + java.awt.Insets var23 = var20.getInsets(); + java.awt.Insets var24 = var12.getInsets(var23); + var12.enable(true); + var12.nextFocus(); + SpaceWar.SpacePanel var28 = new SpaceWar.SpacePanel(); + float var29 = var28.getAlignmentX(); + var28.setVisible(false); + SpaceWar.SpacePanel var32 = new SpaceWar.SpacePanel(); + java.awt.Color var33 = var32.getBackground(); + var28.setForeground(var33); + SpaceWar.SpacePanel var35 = new SpaceWar.SpacePanel(); + float var36 = var35.getAlignmentX(); + var35.setVisible(false); + boolean var39 = var35.isDoubleBuffered(); + java.awt.dnd.DropTarget var40 = var35.getDropTarget(); + var35.show(false); + java.awt.Rectangle var43 = var35.getVisibleRect(); + var28.repaint(var43); + java.awt.FocusTraversalPolicy var45 = var28.getFocusTraversalPolicy(); + SpaceWar.SpacePanel var46 = new SpaceWar.SpacePanel(); + float var47 = var46.getAlignmentX(); + var46.firePropertyChange("", (-1), 1); + boolean var52 = var46.isFocusOwner(); + SpaceWar.SpacePanel var54 = new SpaceWar.SpacePanel(); + float var55 = var54.getAlignmentX(); + var54.setVisible(false); + java.awt.Dimension var58 = var54.getPreferredSize(); + java.awt.Toolkit var59 = var54.getToolkit(); + SpaceWar.SpacePanel var60 = new SpaceWar.SpacePanel(); + var60.setName(""); + int var63 = var60.getX(); + SpaceWar.SpacePanel var64 = new SpaceWar.SpacePanel(); + float var65 = var64.getAlignmentX(); + var64.setVisible(false); + var64.nextFocus(); + SpaceWar.SpacePanel var69 = new SpaceWar.SpacePanel(); + float var70 = var69.getAlignmentX(); + var69.setVisible(false); + SpaceWar.SpacePanel var73 = new SpaceWar.SpacePanel(); + java.awt.Color var74 = var73.getBackground(); + var69.setForeground(var74); + var64.setBackground(var74); + var60.setBackground(var74); + var54.setForeground(var74); + var46.putClientProperty((java.lang.Object)(byte)100, (java.lang.Object)var74); + var28.setBackground(var74); + SpaceWar.SpacePanel var81 = new SpaceWar.SpacePanel(); + float var82 = var81.getAlignmentX(); + var81.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var87 = new SpaceWar.SpacePanel(); + float var88 = var87.getAlignmentX(); + var87.setVisible(false); + SpaceWar.SpacePanel var91 = new SpaceWar.SpacePanel(); + java.awt.Color var92 = var91.getBackground(); + var87.setForeground(var92); + var81.setBackground(var92); + java.awt.Point var95 = var81.location(); + java.awt.Point var96 = var28.getLocation(var95); + java.awt.Component var97 = var12.getComponentAt(var96); + java.awt.Point var98 = var0.getLocation(var96); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var9); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var22 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var23); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var29 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var33); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var36 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var39 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var40); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var43); + + // Regression assertion (captures the current behavior of the code) + assertNull(var45); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var47 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var52 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var55 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var58); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var59); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var63 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var65 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var70 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var74); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var82 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var88 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var92); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var95); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var96); + + // Regression assertion (captures the current behavior of the code) + assertNull(var97); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var98); + + } + + public void test319() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test319"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + var0.setName(""); + int var3 = var0.getX(); + java.lang.String var4 = var0.getToolTipText(); + java.awt.Point var5 = var0.getLocation(); + javax.swing.JPopupMenu var6 = var0.getComponentPopupMenu(); + boolean var7 = var0.requestFocusInWindow(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var4); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == false); + + } + + public void test320() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test320"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + var0.show(false); + java.awt.Rectangle var8 = var0.getVisibleRect(); + java.awt.Toolkit var9 = var0.getToolkit(); + SpaceWar.SpacePanel var10 = new SpaceWar.SpacePanel(); + float var11 = var10.getAlignmentX(); + var10.setVisible(false); + boolean var14 = var10.isDoubleBuffered(); + var10.list(); + SpaceWar.SpacePanel var16 = new SpaceWar.SpacePanel(); + float var17 = var16.getAlignmentX(); + var16.setVisible(false); + boolean var20 = var16.isDoubleBuffered(); + java.awt.dnd.DropTarget var21 = var16.getDropTarget(); + var16.show(false); + java.awt.Rectangle var24 = var16.getVisibleRect(); + java.awt.Rectangle var25 = var10.getBounds(var24); + javax.swing.JToolTip var26 = var10.createToolTip(); + var10.firePropertyChange("", false, false); + var10.validate(); + SpaceWar.SpacePanel var32 = new SpaceWar.SpacePanel(); + float var33 = var32.getAlignmentX(); + var32.setVisible(false); + var32.nextFocus(); + var32.updateUI(); + var32.enableInputMethods(true); + java.lang.String var40 = var32.toString(); + var0.putClientProperty((java.lang.Object)var10, (java.lang.Object)var32); + boolean var42 = var32.isValid(); + java.awt.event.HierarchyBoundsListener[] var43 = var32.getHierarchyBoundsListeners(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var9); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var21); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var25); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var33 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var40 + "' != '" + "SpaceWar.SpacePanel[,0,0,0var40,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"+ "'", var40.equals("SpaceWar.SpacePanel[,0,0,0var40,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]")); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var42 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var43); + + } + + public void test321() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test321"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + java.awt.im.InputMethodRequests var3 = var0.getInputMethodRequests(); + var0.setDoubleBuffered(true); + var0.setInheritsPopupMenu(false); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + var8.setName(""); + java.awt.Graphics var11 = var8.getGraphics(); + java.awt.event.MouseMotionListener[] var12 = var8.getMouseMotionListeners(); + boolean var13 = var8.getIgnoreRepaint(); + var8.transferFocusBackward(); + java.awt.Cursor var15 = var8.getCursor(); + var0.setCursor(var15); + SpaceWar.SpacePanel var17 = new SpaceWar.SpacePanel(); + float var18 = var17.getAlignmentX(); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + float var20 = var19.getAlignmentX(); + var19.setVisible(false); + java.awt.Dimension var23 = var19.getPreferredSize(); + boolean var24 = var19.getVerifyInputWhenFocusTarget(); + java.awt.Component var27 = var19.findComponentAt(10, 1); + var17.addKeyListener((java.awt.event.KeyListener)var19); + var19.repaint(100, (-1), (-1), 1); + SpaceWar.SpacePanel var34 = new SpaceWar.SpacePanel(); + java.awt.Color var35 = var34.getBackground(); + var34.repaint(); + java.awt.im.InputMethodRequests var37 = var34.getInputMethodRequests(); + java.awt.GraphicsConfiguration var38 = var34.getGraphicsConfiguration(); + var19.remove((java.awt.Component)var34); + var19.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", 0.0f, 1.0f); + SpaceWar.SpacePanel var44 = new SpaceWar.SpacePanel(); + float var45 = var44.getAlignmentX(); + var44.setVisible(false); + java.awt.Dimension var48 = var44.getPreferredSize(); + boolean var49 = var44.getVerifyInputWhenFocusTarget(); + SpaceWar.SpacePanel var50 = new SpaceWar.SpacePanel(); + var50.setName(""); + int var53 = var50.getX(); + SpaceWar.SpacePanel var54 = new SpaceWar.SpacePanel(); + float var55 = var54.getAlignmentX(); + var54.setVisible(false); + var54.nextFocus(); + SpaceWar.SpacePanel var59 = new SpaceWar.SpacePanel(); + float var60 = var59.getAlignmentX(); + var59.setVisible(false); + SpaceWar.SpacePanel var63 = new SpaceWar.SpacePanel(); + java.awt.Color var64 = var63.getBackground(); + var59.setForeground(var64); + var54.setBackground(var64); + var50.setBackground(var64); + var19.add((java.awt.Component)var44, (java.lang.Object)var50); + var0.setNextFocusableComponent((java.awt.Component)var50); + var0.enable(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var23); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var24 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var27); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var35); + + // Regression assertion (captures the current behavior of the code) + assertNull(var37); + + // Regression assertion (captures the current behavior of the code) + assertNull(var38); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var45 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var48); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var49 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var53 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var55 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var60 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var64); + + } + + public void test322() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test322"); + + + SpaceWar.Player var0 = new SpaceWar.Player(); + int var1 = var0.getPower(); + int var2 = var0.getPower(); + boolean var3 = var0.isRecovering(); + int var4 = var0.getPowerLevel(); + int var5 = var0.getR(); + var0.setUp(true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var2 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == 25); + + } + + public void test323() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test323"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.updateUI(); + var0.enableInputMethods(true); + java.awt.Point var9 = var0.getMousePosition(false); + java.awt.Point var10 = var0.getMousePosition(); + SpaceWar.SpacePanel var11 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var12 = new SpaceWar.SpacePanel(); + java.awt.Color var13 = var12.getBackground(); + SpaceWar.SpacePanel var14 = new SpaceWar.SpacePanel(); + float var15 = var14.getAlignmentX(); + var14.setVisible(false); + var14.nextFocus(); + var14.updateUI(); + var14.enableInputMethods(true); + var11.add((java.awt.Component)var12, (java.lang.Object)true); + boolean var23 = var11.isMinimumSizeSet(); + java.awt.event.HierarchyListener[] var24 = var11.getHierarchyListeners(); + SpaceWar.SpacePanel var25 = new SpaceWar.SpacePanel(); + float var26 = var25.getAlignmentX(); + var25.setVisible(false); + SpaceWar.SpacePanel var29 = new SpaceWar.SpacePanel(); + java.awt.Color var30 = var29.getBackground(); + var25.setForeground(var30); + SpaceWar.SpacePanel var32 = new SpaceWar.SpacePanel(); + float var33 = var32.getAlignmentX(); + var32.setVisible(false); + boolean var36 = var32.isDoubleBuffered(); + java.awt.dnd.DropTarget var37 = var32.getDropTarget(); + var32.show(false); + java.awt.Rectangle var40 = var32.getVisibleRect(); + var25.repaint(var40); + java.awt.FocusTraversalPolicy var42 = var25.getFocusTraversalPolicy(); + java.awt.im.InputMethodRequests var43 = var25.getInputMethodRequests(); + var25.layout(); + boolean var45 = var25.isFocusTraversalPolicyProvider(); + java.lang.Object var46 = var11.getClientProperty((java.lang.Object)var45); + java.awt.Dimension var47 = var11.getSize(); + var0.resize(var47); + var0.setRequestFocusEnabled(true); + java.awt.Insets var51 = var0.getInsets(); + java.awt.Dimension var52 = var0.minimumSize(); + var0.invalidate(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNull(var9); + + // Regression assertion (captures the current behavior of the code) + assertNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var30); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var33 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var36 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var37); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var40); + + // Regression assertion (captures the current behavior of the code) + assertNull(var42); + + // Regression assertion (captures the current behavior of the code) + assertNull(var43); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var45 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var46); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var47); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var51); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var52); + + } + + public void test324() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test324"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + var0.setName(""); + var0.enable(true); + var0.enable(); + java.awt.Point var6 = var0.location(); + var0.repaint(0, 3, (-1), 1); + java.awt.Dimension var12 = var0.getPreferredSize(); + java.awt.Toolkit var13 = var0.getToolkit(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var13); + + } + + public void test325() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test325"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + var0.enable(false); + java.awt.Container var7 = var0.getTopLevelAncestor(); + java.awt.Dimension var8 = var0.minimumSize(); + java.awt.Point var9 = var0.getMousePosition(); + var0.resize(10, 1); + SpaceWar.SpacePanel var13 = new SpaceWar.SpacePanel(); + float var14 = var13.getAlignmentX(); + var13.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + float var20 = var19.getAlignmentX(); + var19.setVisible(false); + java.awt.Dimension var23 = var19.getPreferredSize(); + var13.setMaximumSize(var23); + boolean var25 = var13.getVerifyInputWhenFocusTarget(); + java.awt.Container var26 = var13.getTopLevelAncestor(); + java.awt.Cursor var27 = var13.getCursor(); + var13.layout(); + SpaceWar.SpacePanel var29 = new SpaceWar.SpacePanel(); + float var30 = var29.getAlignmentX(); + var29.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var35 = var29.getMouseListeners(); + var29.firePropertyChange("", 0.5f, 100.0f); + var29.enable(false); + int var42 = var29.getDebugGraphicsOptions(); + java.awt.ComponentOrientation var43 = var29.getComponentOrientation(); + var13.applyComponentOrientation(var43); + java.awt.event.MouseWheelListener[] var45 = var13.getMouseWheelListeners(); + SpaceWar.SpacePanel var46 = new SpaceWar.SpacePanel(); + float var47 = var46.getAlignmentX(); + var46.setVisible(false); + boolean var50 = var46.isDoubleBuffered(); + java.awt.dnd.DropTarget var51 = var46.getDropTarget(); + var46.show(false); + boolean var54 = var46.isPaintingForPrint(); + SpaceWar.SpacePanel var55 = new SpaceWar.SpacePanel(); + float var56 = var55.getAlignmentX(); + var55.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var61 = var55.getMouseListeners(); + int var62 = var55.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var63 = var55.getInputMethodRequests(); + var46.addKeyListener((java.awt.event.KeyListener)var55); + boolean var65 = var46.isDisplayable(); + var46.resize(400, 2); + SpaceWar.SpacePanel var69 = new SpaceWar.SpacePanel(); + float var70 = var69.getAlignmentX(); + var69.setVisible(false); + var69.nextFocus(); + var69.updateUI(); + var69.enableInputMethods(true); + SpaceWar.SpacePanel var77 = new SpaceWar.SpacePanel(); + float var78 = var77.getAlignmentX(); + boolean var79 = var77.hasFocus(); + java.awt.Insets var80 = var77.getInsets(); + java.awt.Insets var81 = var69.getInsets(var80); + SpaceWar.SpacePanel var82 = new SpaceWar.SpacePanel(); + var82.setName(""); + java.awt.Graphics var85 = var82.getGraphics(); + java.awt.event.MouseMotionListener[] var86 = var82.getMouseMotionListeners(); + boolean var87 = var82.getIgnoreRepaint(); + var82.transferFocusBackward(); + var46.putClientProperty((java.lang.Object)var80, (java.lang.Object)var82); + var0.putClientProperty((java.lang.Object)var13, (java.lang.Object)var80); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertNull(var9); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var23); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var27); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var30 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var35); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var42 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var43); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var45); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var47 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var50 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var51); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var54 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var56 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var61); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var62 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var63); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var65 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var70 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var78 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var79 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var80); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var81); + + // Regression assertion (captures the current behavior of the code) + assertNull(var85); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var86); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var87 == false); + + } + + public void test326() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test326"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var6 = var0.getMouseListeners(); + java.awt.Dimension var7 = var0.getPreferredSize(); + java.util.Locale var8 = var0.getLocale(); + var0.setFocusable(true); + java.lang.String var11 = var0.getToolTipText(); + boolean var12 = var0.isLightweight(); + javax.swing.event.AncestorListener[] var13 = var0.getAncestorListeners(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var13); + + } + + public void test327() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test327"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + java.awt.Dimension var4 = var0.getPreferredSize(); + boolean var5 = var0.getVerifyInputWhenFocusTarget(); + java.awt.Component var8 = var0.findComponentAt(10, 1); + boolean var9 = var0.requestDefaultFocus(); + java.awt.Insets var10 = var0.getInsets(); + var0.setDoubleBuffered(false); + java.awt.Toolkit var13 = var0.getToolkit(); + java.awt.Dimension var14 = var0.getMinimumSize(); + java.lang.String var15 = var0.toString(); + var0.disable(); + java.awt.Container var17 = var0.getParent(); + javax.swing.plaf.PanelUI var18 = var0.getUI(); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + float var20 = var19.getAlignmentX(); + SpaceWar.SpacePanel var21 = new SpaceWar.SpacePanel(); + float var22 = var21.getAlignmentX(); + var21.setVisible(false); + java.awt.Dimension var25 = var21.getPreferredSize(); + boolean var26 = var21.getVerifyInputWhenFocusTarget(); + java.awt.Component var29 = var21.findComponentAt(10, 1); + var19.addKeyListener((java.awt.event.KeyListener)var21); + var21.repaint(100, (-1), (-1), 1); + java.awt.image.ColorModel var36 = var21.getColorModel(); + java.awt.event.MouseWheelListener[] var37 = var21.getMouseWheelListeners(); + var21.setRequestFocusEnabled(false); + var0.removeKeyListener((java.awt.event.KeyListener)var21); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var4); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var15 + "' != '" + "SpaceWar.SpacePanel[,0,0,0var15,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=8,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"+ "'", var15.equals("SpaceWar.SpacePanel[,0,0,0var15,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=8,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]")); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var22 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var25); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var29); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var36); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var37); + + } + + public void test328() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test328"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + SpaceWar.SpacePanel var4 = new SpaceWar.SpacePanel(); + java.awt.Color var5 = var4.getBackground(); + var0.setForeground(var5); + SpaceWar.SpacePanel var7 = new SpaceWar.SpacePanel(); + float var8 = var7.getAlignmentX(); + var7.setVisible(false); + boolean var11 = var7.isDoubleBuffered(); + java.awt.dnd.DropTarget var12 = var7.getDropTarget(); + var7.show(false); + java.awt.Rectangle var15 = var7.getVisibleRect(); + var0.repaint(var15); + java.awt.FocusTraversalPolicy var17 = var0.getFocusTraversalPolicy(); + java.awt.im.InputMethodRequests var18 = var0.getInputMethodRequests(); + var0.layout(); + boolean var20 = var0.isCursorSet(); + java.awt.Dimension var21 = var0.size(); + java.awt.image.BufferedImage var23 = var0.loadImg("hi!"); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var21); + + // Regression assertion (captures the current behavior of the code) + assertNull(var23); + + } + + public void test329() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test329"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + boolean var2 = var0.hasFocus(); + boolean var3 = var0.isPreferredSizeSet(); + var0.firePropertyChange("", (short)1, (short)0); + boolean var8 = var0.isMaximumSizeSet(); + java.awt.peer.ComponentPeer var9 = var0.getPeer(); + java.awt.ComponentOrientation var10 = var0.getComponentOrientation(); + boolean var11 = var0.getAutoscrolls(); + java.awt.Dimension var12 = var0.getPreferredSize(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var2 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var9); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var12); + + } + + public void test330() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test330"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.setFocusCycleRoot(true); + var0.requestFocus(); + boolean var6 = var0.requestFocus(true); + var0.doLayout(); + var0.setLocation(10, 400); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == false); + + } + + public void test331() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test331"); + + + SpaceWar.Enemy var2 = new SpaceWar.Enemy(0, 100); + int var3 = var2.getR(); + double var4 = var2.getY(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0.0d); + + } + + public void test332() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test332"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + var0.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + javax.swing.plaf.PanelUI var5 = var0.getUI(); + java.awt.Color var6 = var0.getBackground(); + var0.removeAll(); + int var8 = var0.getHeight(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.removeNotify(); + SpaceWar.SpacePanel var12 = new SpaceWar.SpacePanel(); + float var13 = var12.getAlignmentX(); + var12.setVisible(false); + boolean var16 = var12.isDoubleBuffered(); + var12.list(); + float var18 = var12.getAlignmentY(); + java.awt.Insets var19 = var12.getInsets(); + java.awt.Insets var20 = var9.getInsets(var19); + boolean var21 = var9.isDoubleBuffered(); + java.awt.Component var22 = var0.add((java.awt.Component)var9); + var0.setBounds(24, 1, 100, 500); + var0.repaint(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var22); + + } + + public void test333() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test333"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + java.awt.Dimension var4 = var0.getPreferredSize(); + java.awt.Toolkit var5 = var0.getToolkit(); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + var6.setName(""); + int var9 = var6.getX(); + SpaceWar.SpacePanel var10 = new SpaceWar.SpacePanel(); + float var11 = var10.getAlignmentX(); + var10.setVisible(false); + var10.nextFocus(); + SpaceWar.SpacePanel var15 = new SpaceWar.SpacePanel(); + float var16 = var15.getAlignmentX(); + var15.setVisible(false); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + java.awt.Color var20 = var19.getBackground(); + var15.setForeground(var20); + var10.setBackground(var20); + var6.setBackground(var20); + var0.setForeground(var20); + SpaceWar.SpacePanel var25 = new SpaceWar.SpacePanel(); + float var26 = var25.getAlignmentX(); + var25.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var31 = new SpaceWar.SpacePanel(); + float var32 = var31.getAlignmentX(); + var31.setVisible(false); + java.awt.Dimension var35 = var31.getPreferredSize(); + var25.setMaximumSize(var35); + boolean var37 = var25.getVerifyInputWhenFocusTarget(); + javax.accessibility.AccessibleContext var38 = var25.getAccessibleContext(); + boolean var39 = var25.isDoubleBuffered(); + java.awt.Rectangle var40 = var25.getVisibleRect(); + var0.scrollRectToVisible(var40); + SpaceWar.SpacePanel var42 = new SpaceWar.SpacePanel(); + float var43 = var42.getAlignmentX(); + var42.setVisible(false); + java.awt.Dimension var46 = var42.getPreferredSize(); + java.awt.Toolkit var47 = var42.getToolkit(); + SpaceWar.SpacePanel var48 = new SpaceWar.SpacePanel(); + var48.setName(""); + int var51 = var48.getX(); + SpaceWar.SpacePanel var52 = new SpaceWar.SpacePanel(); + float var53 = var52.getAlignmentX(); + var52.setVisible(false); + var52.nextFocus(); + SpaceWar.SpacePanel var57 = new SpaceWar.SpacePanel(); + float var58 = var57.getAlignmentX(); + var57.setVisible(false); + SpaceWar.SpacePanel var61 = new SpaceWar.SpacePanel(); + java.awt.Color var62 = var61.getBackground(); + var57.setForeground(var62); + var52.setBackground(var62); + var48.setBackground(var62); + var42.setForeground(var62); + SpaceWar.SpacePanel var67 = new SpaceWar.SpacePanel(); + float var68 = var67.getAlignmentX(); + var67.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var73 = new SpaceWar.SpacePanel(); + float var74 = var73.getAlignmentX(); + var73.setVisible(false); + java.awt.Dimension var77 = var73.getPreferredSize(); + var67.setMaximumSize(var77); + boolean var79 = var67.getVerifyInputWhenFocusTarget(); + javax.accessibility.AccessibleContext var80 = var67.getAccessibleContext(); + boolean var81 = var67.isDoubleBuffered(); + java.awt.Rectangle var82 = var67.getVisibleRect(); + var42.scrollRectToVisible(var82); + var0.removeKeyListener((java.awt.event.KeyListener)var42); + var42.firePropertyChange("PanelUI", (short)1, (short)1); + java.lang.String var89 = var42.getToolTipText(); + int var90 = var42.getDebugGraphicsOptions(); + var42.transferFocusUpCycle(); + java.awt.event.InputMethodListener[] var92 = var42.getInputMethodListeners(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var4); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var32 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var35); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var38); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var39 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var40); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var43 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var46); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var47); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var51 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var53 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var58 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var62); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var68 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var74 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var77); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var79 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var80); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var81 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var82); + + // Regression assertion (captures the current behavior of the code) + assertNull(var89); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var90 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var92); + + } + + public void test334() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test334"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + float var7 = var6.getAlignmentX(); + var6.setVisible(false); + java.awt.Dimension var10 = var6.getPreferredSize(); + var0.setMaximumSize(var10); + boolean var12 = var0.getVerifyInputWhenFocusTarget(); + java.awt.Container var13 = var0.getTopLevelAncestor(); + java.awt.Cursor var14 = var0.getCursor(); + var0.layout(); + var0.setIgnoreRepaint(false); + var0.doLayout(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + } + + public void test335() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test335"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var6 = var0.getUI(); + java.awt.im.InputMethodRequests var7 = var0.getInputMethodRequests(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + var8.nextFocus(); + var8.updateUI(); + var8.enableInputMethods(true); + var8.setSize((-1), 1); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + var19.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var0.add((java.awt.Component)var8, (java.lang.Object)"SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + java.awt.ComponentOrientation var25 = var8.getComponentOrientation(); + boolean var26 = var8.isMaximumSizeSet(); + SpaceWar.SpacePanel var27 = new SpaceWar.SpacePanel(); + float var28 = var27.getAlignmentX(); + var27.setVisible(false); + boolean var31 = var27.isDoubleBuffered(); + java.awt.dnd.DropTarget var32 = var27.getDropTarget(); + var27.show(false); + boolean var35 = var27.isPaintingForPrint(); + SpaceWar.SpacePanel var36 = new SpaceWar.SpacePanel(); + float var37 = var36.getAlignmentX(); + var36.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var42 = var36.getMouseListeners(); + int var43 = var36.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var44 = var36.getInputMethodRequests(); + var27.addKeyListener((java.awt.event.KeyListener)var36); + SpaceWar.SpacePanel var46 = new SpaceWar.SpacePanel(); + float var47 = var46.getAlignmentX(); + var46.setVisible(false); + boolean var50 = var46.isDoubleBuffered(); + var46.list(); + float var52 = var46.getAlignmentY(); + boolean var53 = var36.isFocusCycleRoot((java.awt.Container)var46); + boolean var54 = var46.isEnabled(); + java.awt.Dimension var55 = var46.getMaximumSize(); + var8.setMinimumSize(var55); + var8.disable(); + int var58 = var8.getComponentCount(); + var8.setAutoscrolls(true); + java.awt.image.VolatileImage var63 = var8.createVolatileImage(100, 2); + var8.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", (short)1, (short)10); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var25); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var28 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var31 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var32); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var35 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var42); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var43 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var44); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var47 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var50 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var52 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var53 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var54 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var55); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var58 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var63); + + } + + public void test336() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test336"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + var0.show(false); + boolean var8 = var0.isPaintingForPrint(); + boolean var9 = var0.getIgnoreRepaint(); + var0.repaint(100, 10, 100, 0); + SpaceWar.SpacePanel var15 = new SpaceWar.SpacePanel(); + float var16 = var15.getAlignmentX(); + var15.setVisible(false); + boolean var19 = var15.isDoubleBuffered(); + var15.list(); + SpaceWar.SpacePanel var21 = new SpaceWar.SpacePanel(); + float var22 = var21.getAlignmentX(); + var21.setVisible(false); + boolean var25 = var21.isDoubleBuffered(); + java.awt.dnd.DropTarget var26 = var21.getDropTarget(); + var21.show(false); + java.awt.Rectangle var29 = var21.getVisibleRect(); + java.awt.Rectangle var30 = var15.getBounds(var29); + javax.swing.JToolTip var31 = var15.createToolTip(); + var15.firePropertyChange("", false, false); + var15.validate(); + SpaceWar.SpacePanel var37 = new SpaceWar.SpacePanel(); + float var38 = var37.getAlignmentX(); + var37.setVisible(false); + boolean var41 = var37.isDoubleBuffered(); + java.awt.dnd.DropTarget var42 = var37.getDropTarget(); + var37.show(false); + boolean var45 = var37.isPaintingForPrint(); + SpaceWar.SpacePanel var46 = new SpaceWar.SpacePanel(); + float var47 = var46.getAlignmentX(); + var46.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var52 = var46.getMouseListeners(); + int var53 = var46.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var54 = var46.getInputMethodRequests(); + var37.addKeyListener((java.awt.event.KeyListener)var46); + var46.repaint(); + java.awt.Point var57 = var46.location(); + java.awt.Component var58 = var15.getComponentAt(var57); + var0.setLocation(var57); + java.awt.peer.ComponentPeer var60 = var0.getPeer(); + var0.transferFocus(); + java.awt.Toolkit var62 = var0.getToolkit(); + boolean var63 = var0.isOpaque(); + boolean var64 = var0.isRequestFocusEnabled(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var22 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var29); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var30); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var31); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var38 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var41 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var42); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var45 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var47 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var52); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var53 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var54); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var57); + + // Regression assertion (captures the current behavior of the code) + assertNull(var58); + + // Regression assertion (captures the current behavior of the code) + assertNull(var60); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var62); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var63 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var64 == true); + + } + + public void test337() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test337"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + java.awt.event.MouseMotionListener[] var6 = var0.getMouseMotionListeners(); + java.awt.event.ComponentListener[] var7 = var0.getComponentListeners(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + var8.nextFocus(); + var8.repaint(1L); + SpaceWar.SpacePanel var15 = new SpaceWar.SpacePanel(); + float var16 = var15.getAlignmentX(); + var15.setVisible(false); + boolean var19 = var15.isDoubleBuffered(); + var15.list(); + SpaceWar.SpacePanel var21 = new SpaceWar.SpacePanel(); + float var22 = var21.getAlignmentX(); + var21.setVisible(false); + boolean var25 = var21.isDoubleBuffered(); + java.awt.dnd.DropTarget var26 = var21.getDropTarget(); + var21.show(false); + java.awt.Rectangle var29 = var21.getVisibleRect(); + java.awt.Rectangle var30 = var15.getBounds(var29); + var8.setBounds(var30); + var0.paintImmediately(var30); + java.awt.Point var33 = var0.getMousePosition(); + java.awt.image.BufferedImage var35 = var0.loadImg("SpaceWar.SpacePanel[,-1,1,-1x10,invalid,hidden,disabled,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + var0.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", 3, 100); + java.awt.ComponentOrientation var40 = var0.getComponentOrientation(); + var0.setAlignmentY(10.0f); + java.awt.Insets var43 = var0.insets(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var22 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var29); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var30); + + // Regression assertion (captures the current behavior of the code) + assertNull(var33); + + // Regression assertion (captures the current behavior of the code) + assertNull(var35); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var40); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var43); + + } + + public void test338() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test338"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + boolean var6 = var0.isFocusCycleRoot(); + SpaceWar.SpacePanel var7 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + java.awt.Color var9 = var8.getBackground(); + SpaceWar.SpacePanel var10 = new SpaceWar.SpacePanel(); + float var11 = var10.getAlignmentX(); + var10.setVisible(false); + var10.nextFocus(); + var10.updateUI(); + var10.enableInputMethods(true); + var7.add((java.awt.Component)var8, (java.lang.Object)true); + java.awt.Dimension var19 = var8.getPreferredSize(); + var0.setSize(var19); + java.awt.Dimension var21 = var0.preferredSize(); + boolean var22 = var0.isFontSet(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var9); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var21); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var22 == true); + + } + + public void test339() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test339"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var1 = new SpaceWar.SpacePanel(); + java.awt.Color var2 = var1.getBackground(); + SpaceWar.SpacePanel var3 = new SpaceWar.SpacePanel(); + float var4 = var3.getAlignmentX(); + var3.setVisible(false); + var3.nextFocus(); + var3.updateUI(); + var3.enableInputMethods(true); + var0.add((java.awt.Component)var1, (java.lang.Object)true); + boolean var12 = var0.isMinimumSizeSet(); + java.awt.event.HierarchyListener[] var13 = var0.getHierarchyListeners(); + SpaceWar.SpacePanel var14 = new SpaceWar.SpacePanel(); + float var15 = var14.getAlignmentX(); + var14.setVisible(false); + SpaceWar.SpacePanel var18 = new SpaceWar.SpacePanel(); + java.awt.Color var19 = var18.getBackground(); + var14.setForeground(var19); + SpaceWar.SpacePanel var21 = new SpaceWar.SpacePanel(); + float var22 = var21.getAlignmentX(); + var21.setVisible(false); + boolean var25 = var21.isDoubleBuffered(); + java.awt.dnd.DropTarget var26 = var21.getDropTarget(); + var21.show(false); + java.awt.Rectangle var29 = var21.getVisibleRect(); + var14.repaint(var29); + java.awt.FocusTraversalPolicy var31 = var14.getFocusTraversalPolicy(); + java.awt.im.InputMethodRequests var32 = var14.getInputMethodRequests(); + var14.layout(); + boolean var34 = var14.isFocusTraversalPolicyProvider(); + java.lang.Object var35 = var0.getClientProperty((java.lang.Object)var34); + java.awt.Dimension var36 = var0.getSize(); + boolean var37 = var0.isFocusTraversable(); + SpaceWar.SpacePanel var38 = new SpaceWar.SpacePanel(); + float var39 = var38.getAlignmentX(); + var38.setVisible(false); + var38.nextFocus(); + var38.updateUI(); + var38.enableInputMethods(true); + var38.resetKeyboardActions(); + var0.removeKeyListener((java.awt.event.KeyListener)var38); + SpaceWar.SpacePanel var48 = new SpaceWar.SpacePanel(); + float var49 = var48.getAlignmentX(); + var48.setVisible(false); + boolean var52 = var48.isDoubleBuffered(); + java.awt.dnd.DropTarget var53 = var48.getDropTarget(); + var48.show(false); + boolean var56 = var48.isPaintingForPrint(); + SpaceWar.SpacePanel var57 = new SpaceWar.SpacePanel(); + float var58 = var57.getAlignmentX(); + var57.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var63 = var57.getMouseListeners(); + int var64 = var57.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var65 = var57.getInputMethodRequests(); + var48.addKeyListener((java.awt.event.KeyListener)var57); + boolean var67 = var48.isDisplayable(); + java.awt.Dimension var68 = var48.getPreferredSize(); + var0.setSize(var68); + java.awt.Graphics var70 = var0.getGraphics(); + boolean var71 = var0.requestDefaultFocus(); + var0.setBounds(24, 2, 10, (-1)); + int var79 = var0.getBaseline(0, 10); + boolean var80 = var0.isMaximumSizeSet(); + javax.accessibility.AccessibleContext var81 = var0.getAccessibleContext(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var2); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var22 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var29); + + // Regression assertion (captures the current behavior of the code) + assertNull(var31); + + // Regression assertion (captures the current behavior of the code) + assertNull(var32); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var34 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var35); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var36); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var39 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var49 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var52 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var53); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var56 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var58 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var63); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var64 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var65); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var67 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var68); + + // Regression assertion (captures the current behavior of the code) + assertNull(var70); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var71 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var79 == (-1)); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var80 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var81); + + } + + public void test340() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test340"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + var0.setName(""); + java.awt.Graphics var3 = var0.getGraphics(); + SpaceWar.SpacePanel var4 = new SpaceWar.SpacePanel(); + float var5 = var4.getAlignmentX(); + var4.setVisible(false); + var4.nextFocus(); + var4.repaint(1L); + SpaceWar.SpacePanel var11 = new SpaceWar.SpacePanel(); + float var12 = var11.getAlignmentX(); + var11.setVisible(false); + boolean var15 = var11.isDoubleBuffered(); + var11.list(); + SpaceWar.SpacePanel var17 = new SpaceWar.SpacePanel(); + float var18 = var17.getAlignmentX(); + var17.setVisible(false); + boolean var21 = var17.isDoubleBuffered(); + java.awt.dnd.DropTarget var22 = var17.getDropTarget(); + var17.show(false); + java.awt.Rectangle var25 = var17.getVisibleRect(); + java.awt.Rectangle var26 = var11.getBounds(var25); + var4.setBounds(var26); + var0.paintImmediately(var26); + + // Regression assertion (captures the current behavior of the code) + assertNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var25); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var26); + + } + + public void test341() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test341"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var6 = var0.getMouseListeners(); + var0.firePropertyChange("", 0.5f, 100.0f); + var0.enable(false); + int var13 = var0.getDebugGraphicsOptions(); + boolean var14 = var0.isFocusCycleRoot(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == false); + + } + + public void test342() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test342"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + java.awt.im.InputMethodRequests var3 = var0.getInputMethodRequests(); + var0.setDoubleBuffered(true); + var0.setInheritsPopupMenu(false); + boolean var8 = var0.isFocusTraversalPolicySet(); + var0.transferFocusUpCycle(); + SpaceWar.SpacePanel var10 = new SpaceWar.SpacePanel(); + float var11 = var10.getAlignmentX(); + var10.setVisible(false); + boolean var14 = var10.isDoubleBuffered(); + java.awt.dnd.DropTarget var15 = var10.getDropTarget(); + var10.show(false); + java.awt.Rectangle var18 = var10.getVisibleRect(); + java.awt.image.BufferedImage var20 = var10.loadImg("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + java.awt.ComponentOrientation var21 = var10.getComponentOrientation(); + java.awt.Component var22 = var0.add((java.awt.Component)var10); + var0.enable(); + SpaceWar.SpacePanel var24 = new SpaceWar.SpacePanel(); + float var25 = var24.getAlignmentX(); + var24.setVisible(false); + var24.nextFocus(); + var24.updateUI(); + var24.enableInputMethods(true); + java.awt.Point var33 = var24.getMousePosition(false); + java.awt.Component.BaselineResizeBehavior var34 = var24.getBaselineResizeBehavior(); + java.awt.Dimension var35 = var24.getPreferredSize(); + var24.show(); + java.lang.Object var37 = var0.getClientProperty((java.lang.Object)var24); + javax.swing.InputMap var38 = var0.getInputMap(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var21); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNull(var33); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var34); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var35); + + // Regression assertion (captures the current behavior of the code) + assertNull(var37); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var38); + + } + + public void test343() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test343"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + java.awt.im.InputMethodRequests var3 = var0.getInputMethodRequests(); + java.awt.GraphicsConfiguration var4 = var0.getGraphicsConfiguration(); + boolean var6 = var0.requestFocus(false); + javax.swing.JPopupMenu var7 = var0.getComponentPopupMenu(); + boolean var8 = var0.isLightweight(); + javax.swing.TransferHandler var9 = var0.getTransferHandler(); + javax.swing.event.AncestorListener[] var10 = var0.getAncestorListeners(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertNull(var4); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var9); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var10); + + } + + public void test344() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test344"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + SpaceWar.SpacePanel var5 = new SpaceWar.SpacePanel(); + java.awt.Color var6 = var5.getBackground(); + var5.repaint(); + java.lang.Object var8 = var0.getClientProperty((java.lang.Object)var5); + var5.repaint(10, 1, 25, 0); + boolean var14 = var5.isPreferredSizeSet(); + int var15 = var5.getHeight(); + boolean var16 = var5.isOptimizedDrawingEnabled(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == true); + + } + + public void test345() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test345"); + + + SpaceWar.Player var0 = new SpaceWar.Player(); + int var1 = var0.getPower(); + int var2 = var0.getPowerLevel(); + var0.setLeft(false); + var0.setScore(400); + int var7 = var0.getPowerLevel(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var2 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0); + + } + + public void test346() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test346"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var6 = var0.getMouseListeners(); + int var7 = var0.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var8 = var0.getInputMethodRequests(); + var0.removeNotify(); + var0.enable(); + SpaceWar.SpacePanel var11 = new SpaceWar.SpacePanel(); + java.awt.Color var12 = var11.getBackground(); + boolean var15 = var11.inside(0, (-1)); + var11.transferFocusUpCycle(); + java.lang.String var17 = var11.getName(); + boolean var18 = var0.isFocusCycleRoot((java.awt.Container)var11); + var0.requestFocus(); + SpaceWar.SpacePanel var20 = new SpaceWar.SpacePanel(); + float var21 = var20.getAlignmentX(); + var20.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var26 = new SpaceWar.SpacePanel(); + float var27 = var26.getAlignmentX(); + var26.setVisible(false); + java.awt.Dimension var30 = var26.getPreferredSize(); + var20.setMaximumSize(var30); + boolean var32 = var20.getVerifyInputWhenFocusTarget(); + java.awt.Toolkit var33 = var20.getToolkit(); + java.lang.String var34 = var20.getUIClassID(); + java.awt.Dimension var35 = var20.getMinimumSize(); + SpaceWar.SpacePanel var36 = new SpaceWar.SpacePanel(); + float var37 = var36.getAlignmentX(); + var36.setVisible(false); + var36.setInheritsPopupMenu(false); + var36.setFocusTraversalPolicyProvider(true); + SpaceWar.SpacePanel var44 = new SpaceWar.SpacePanel(); + float var45 = var44.getAlignmentX(); + var44.setVisible(false); + boolean var48 = var44.isDoubleBuffered(); + var44.list(); + SpaceWar.SpacePanel var50 = new SpaceWar.SpacePanel(); + float var51 = var50.getAlignmentX(); + var50.setVisible(false); + boolean var54 = var50.isDoubleBuffered(); + java.awt.dnd.DropTarget var55 = var50.getDropTarget(); + var50.show(false); + java.awt.Rectangle var58 = var50.getVisibleRect(); + java.awt.Rectangle var59 = var44.getBounds(var58); + javax.swing.JToolTip var60 = var44.createToolTip(); + var36.removeKeyListener((java.awt.event.KeyListener)var44); + javax.swing.TransferHandler var62 = var36.getTransferHandler(); + boolean var63 = var36.requestFocusInWindow(); + var0.add((java.awt.Component)var20, (java.lang.Object)var36); + java.awt.Insets var65 = var20.getInsets(); + SpaceWar.SpacePanel var66 = new SpaceWar.SpacePanel(); + float var67 = var66.getAlignmentX(); + var66.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var72 = var66.getMouseListeners(); + java.awt.Dimension var73 = var66.getPreferredSize(); + java.util.Locale var74 = var66.getLocale(); + var66.setFocusable(true); + var66.paintImmediately((-1), 10, 100, 25); + boolean var82 = var66.isOpaque(); + var20.setNextFocusableComponent((java.awt.Component)var66); + boolean var84 = var20.isOptimizedDrawingEnabled(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var30); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var32 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var33); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var34 + "' != '" + "PanelUI"+ "'", var34.equals("PanelUI")); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var35); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var45 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var48 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var51 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var54 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var55); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var58); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var59); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var60); + + // Regression assertion (captures the current behavior of the code) + assertNull(var62); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var63 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var65); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var67 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var72); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var73); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var74); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var82 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var84 == true); + + } + + public void test347() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test347"); + + + SpaceWar.Player var0 = new SpaceWar.Player(); + var0.increasePower(25); + int var3 = var0.getScore(); + var0.setRigth(true); + var0.update(); + var0.setDown(false); + var0.loseLife(); + var0.loseLife(); + int var11 = var0.getPower(); + var0.setLife(0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == 24); + + } + + public void test348() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test348"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + SpaceWar.SpacePanel var2 = new SpaceWar.SpacePanel(); + float var3 = var2.getAlignmentX(); + var2.setVisible(false); + java.awt.Dimension var6 = var2.getPreferredSize(); + boolean var7 = var2.getVerifyInputWhenFocusTarget(); + java.awt.Component var10 = var2.findComponentAt(10, 1); + var0.addKeyListener((java.awt.event.KeyListener)var2); + java.awt.Dimension var12 = var2.getMinimumSize(); + SpaceWar.SpacePanel var13 = new SpaceWar.SpacePanel(); + java.awt.Color var14 = var13.getBackground(); + var13.repaint(); + var13.setRequestFocusEnabled(false); + var13.reshape(100, 0, 100, 0); + var13.requestFocus(); + java.awt.Rectangle var24 = var13.getVisibleRect(); + var2.setBounds(var24); + var2.move(24, 10); + var2.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", (short)1, (short)0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var24); + + } + + public void test349() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test349"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + java.awt.event.MouseMotionListener[] var6 = var0.getMouseMotionListeners(); + java.awt.event.ComponentListener[] var7 = var0.getComponentListeners(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + var8.nextFocus(); + var8.repaint(1L); + SpaceWar.SpacePanel var15 = new SpaceWar.SpacePanel(); + float var16 = var15.getAlignmentX(); + var15.setVisible(false); + boolean var19 = var15.isDoubleBuffered(); + var15.list(); + SpaceWar.SpacePanel var21 = new SpaceWar.SpacePanel(); + float var22 = var21.getAlignmentX(); + var21.setVisible(false); + boolean var25 = var21.isDoubleBuffered(); + java.awt.dnd.DropTarget var26 = var21.getDropTarget(); + var21.show(false); + java.awt.Rectangle var29 = var21.getVisibleRect(); + java.awt.Rectangle var30 = var15.getBounds(var29); + var8.setBounds(var30); + var0.paintImmediately(var30); + java.awt.Point var33 = var0.getMousePosition(); + var0.setRequestFocusEnabled(false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var22 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var29); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var30); + + // Regression assertion (captures the current behavior of the code) + assertNull(var33); + + } + + public void test350() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test350"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + SpaceWar.SpacePanel var4 = new SpaceWar.SpacePanel(); + java.awt.Color var5 = var4.getBackground(); + var0.setForeground(var5); + SpaceWar.SpacePanel var7 = new SpaceWar.SpacePanel(); + float var8 = var7.getAlignmentX(); + var7.setVisible(false); + boolean var11 = var7.isDoubleBuffered(); + java.awt.dnd.DropTarget var12 = var7.getDropTarget(); + var7.show(false); + java.awt.Rectangle var15 = var7.getVisibleRect(); + var0.repaint(var15); + java.awt.FocusTraversalPolicy var17 = var0.getFocusTraversalPolicy(); + java.awt.im.InputMethodRequests var18 = var0.getInputMethodRequests(); + var0.layout(); + java.awt.Point var20 = var0.getMousePosition(); + java.awt.Graphics var21 = var0.getGraphics(); + SpaceWar.SpacePanel var22 = new SpaceWar.SpacePanel(); + float var23 = var22.getAlignmentX(); + var22.setVisible(false); + var22.setInheritsPopupMenu(false); + var22.setFocusTraversalPolicyProvider(true); + SpaceWar.SpacePanel var30 = new SpaceWar.SpacePanel(); + float var31 = var30.getAlignmentX(); + var30.setVisible(false); + boolean var34 = var30.isDoubleBuffered(); + var30.list(); + SpaceWar.SpacePanel var36 = new SpaceWar.SpacePanel(); + float var37 = var36.getAlignmentX(); + var36.setVisible(false); + boolean var40 = var36.isDoubleBuffered(); + java.awt.dnd.DropTarget var41 = var36.getDropTarget(); + var36.show(false); + java.awt.Rectangle var44 = var36.getVisibleRect(); + java.awt.Rectangle var45 = var30.getBounds(var44); + javax.swing.JToolTip var46 = var30.createToolTip(); + var22.removeKeyListener((java.awt.event.KeyListener)var30); + var0.setComponentZOrder((java.awt.Component)var22, 0); + var0.repaint(); + javax.swing.ActionMap var51 = var0.getActionMap(); + var0.firePropertyChange("SpaceWar.SpacePanel[,-1,1,-1x10,invalid,hidden,disabled,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", (short)0, (short)0); + boolean var56 = var0.hasFocus(); + var0.setLocation(1, 25); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertNull(var21); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var31 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var34 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var40 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var41); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var44); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var45); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var46); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var51); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var56 == false); + + } + + public void test351() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test351"); + + + SpaceWar.Enemy var2 = new SpaceWar.Enemy(500, 3); + var2.explode(); + var2.hit(); + java.awt.image.BufferedImage var6 = var2.loadImg("SpaceWar.SpacePanel[,0,0,0x0,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=java.awt.Dimension[width=800,height=600],minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + + // Regression assertion (captures the current behavior of the code) + assertNull(var6); + + } + + public void test352() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test352"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.updateUI(); + var0.enableInputMethods(true); + var0.setSize((-1), 1); + boolean var13 = var0.contains(1, 1); + java.awt.Component var16 = var0.getComponentAt(100, 3); + SpaceWar.SpacePanel var17 = new SpaceWar.SpacePanel(); + float var18 = var17.getAlignmentX(); + var17.setVisible(false); + boolean var21 = var17.isDoubleBuffered(); + var17.enable(false); + boolean var24 = var17.getFocusTraversalKeysEnabled(); + SpaceWar.SpacePanel var25 = new SpaceWar.SpacePanel(); + float var26 = var25.getAlignmentX(); + var25.setVisible(false); + java.awt.Dimension var29 = var25.getPreferredSize(); + java.awt.Toolkit var30 = var25.getToolkit(); + boolean var31 = var25.isFocusable(); + javax.swing.KeyStroke[] var32 = var25.getRegisteredKeyStrokes(); + SpaceWar.SpacePanel var33 = new SpaceWar.SpacePanel(); + float var34 = var33.getAlignmentX(); + SpaceWar.SpacePanel var35 = new SpaceWar.SpacePanel(); + float var36 = var35.getAlignmentX(); + var35.setVisible(false); + java.awt.Dimension var39 = var35.getPreferredSize(); + boolean var40 = var35.getVerifyInputWhenFocusTarget(); + java.awt.Component var43 = var35.findComponentAt(10, 1); + var33.addKeyListener((java.awt.event.KeyListener)var35); + var35.repaint(100, (-1), (-1), 1); + boolean var50 = var25.isAncestorOf((java.awt.Component)var35); + var17.addKeyListener((java.awt.event.KeyListener)var35); + java.awt.ComponentOrientation var52 = var17.getComponentOrientation(); + var0.setComponentOrientation(var52); + boolean var55 = var0.requestFocus(true); + java.util.Locale var56 = var0.getLocale(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var24 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var29); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var30); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var31 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var32); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var34 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var36 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var39); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var40 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var43); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var50 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var52); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var55 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var56); + + } + + public void test353() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test353"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + float var7 = var6.getAlignmentX(); + var6.setVisible(false); + java.awt.Dimension var10 = var6.getPreferredSize(); + var0.setMaximumSize(var10); + boolean var12 = var0.getVerifyInputWhenFocusTarget(); + boolean var13 = var0.isFontSet(); + boolean var14 = var0.getIgnoreRepaint(); + boolean var15 = var0.isPaintingForPrint(); + int var16 = var0.getDebugGraphicsOptions(); + SpaceWar.SpacePanel var17 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var18 = new SpaceWar.SpacePanel(); + java.awt.Color var19 = var18.getBackground(); + SpaceWar.SpacePanel var20 = new SpaceWar.SpacePanel(); + float var21 = var20.getAlignmentX(); + var20.setVisible(false); + var20.nextFocus(); + var20.updateUI(); + var20.enableInputMethods(true); + var17.add((java.awt.Component)var18, (java.lang.Object)true); + java.awt.Dimension var29 = var18.getPreferredSize(); + var18.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", (-1.0f), 100.0f); + var18.removeNotify(); + java.awt.Dimension var35 = var18.size(); + java.awt.LayoutManager var36 = var18.getLayout(); + var0.setLayout(var36); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var29); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var35); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var36); + + } + + public void test354() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test354"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + float var7 = var6.getAlignmentX(); + var6.setVisible(false); + java.awt.Dimension var10 = var6.getPreferredSize(); + var0.setMaximumSize(var10); + boolean var12 = var0.getVerifyInputWhenFocusTarget(); + int var13 = var0.getX(); + SpaceWar.SpacePanel var14 = new SpaceWar.SpacePanel(); + float var15 = var14.getAlignmentX(); + SpaceWar.SpacePanel var16 = new SpaceWar.SpacePanel(); + float var17 = var16.getAlignmentX(); + var16.setVisible(false); + java.awt.Dimension var20 = var16.getPreferredSize(); + boolean var21 = var16.getVerifyInputWhenFocusTarget(); + java.awt.Component var24 = var16.findComponentAt(10, 1); + var14.addKeyListener((java.awt.event.KeyListener)var16); + var16.repaint(100, (-1), (-1), 1); + SpaceWar.SpacePanel var31 = new SpaceWar.SpacePanel(); + java.awt.Color var32 = var31.getBackground(); + var31.repaint(); + java.awt.im.InputMethodRequests var34 = var31.getInputMethodRequests(); + java.awt.GraphicsConfiguration var35 = var31.getGraphicsConfiguration(); + var16.remove((java.awt.Component)var31); + java.awt.Font var37 = var31.getFont(); + var0.setFont(var37); + SpaceWar.SpacePanel var39 = new SpaceWar.SpacePanel(); + float var40 = var39.getAlignmentX(); + var39.setVisible(false); + var39.nextFocus(); + var39.reshape((-1), 1, (-1), 10); + var39.disable(); + java.awt.LayoutManager var50 = var39.getLayout(); + var0.setLayout(var50); + SpaceWar.SpacePanel var52 = new SpaceWar.SpacePanel(); + float var53 = var52.getAlignmentX(); + var52.setVisible(false); + var52.nextFocus(); + SpaceWar.SpacePanel var57 = new SpaceWar.SpacePanel(); + float var58 = var57.getAlignmentX(); + var57.setVisible(false); + SpaceWar.SpacePanel var61 = new SpaceWar.SpacePanel(); + java.awt.Color var62 = var61.getBackground(); + var57.setForeground(var62); + var52.setBackground(var62); + java.awt.Component var65 = var52.getNextFocusableComponent(); + float var66 = var52.getAlignmentY(); + java.awt.event.MouseListener[] var67 = var52.getMouseListeners(); + java.awt.Point var68 = var52.location(); + boolean var69 = var0.contains(var68); + boolean var70 = var0.isDisplayable(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var32); + + // Regression assertion (captures the current behavior of the code) + assertNull(var34); + + // Regression assertion (captures the current behavior of the code) + assertNull(var35); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var37); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var40 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var50); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var53 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var58 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var62); + + // Regression assertion (captures the current behavior of the code) + assertNull(var65); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var66 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var67); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var68); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var69 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var70 == false); + + } + + public void test355() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test355"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var6 = var0.getMouseListeners(); + var0.repaint(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + boolean var12 = var8.isDoubleBuffered(); + var8.list(); + SpaceWar.SpacePanel var14 = new SpaceWar.SpacePanel(); + float var15 = var14.getAlignmentX(); + var14.setVisible(false); + boolean var18 = var14.isDoubleBuffered(); + java.awt.dnd.DropTarget var19 = var14.getDropTarget(); + var14.show(false); + java.awt.Rectangle var22 = var14.getVisibleRect(); + java.awt.Rectangle var23 = var8.getBounds(var22); + javax.swing.JToolTip var24 = var8.createToolTip(); + java.awt.Graphics var25 = var8.getGraphics(); + var8.setAutoscrolls(false); + boolean var28 = var8.requestFocusInWindow(); + SpaceWar.SpacePanel var29 = new SpaceWar.SpacePanel(); + float var30 = var29.getAlignmentX(); + var29.setVisible(false); + var29.nextFocus(); + var29.reshape((-1), 1, (-1), 10); + var29.disable(); + java.awt.LayoutManager var40 = var29.getLayout(); + java.awt.Container var41 = var29.getParent(); + boolean var42 = var29.isOptimizedDrawingEnabled(); + java.awt.Font var43 = var29.getFont(); + java.awt.FontMetrics var44 = var8.getFontMetrics(var43); + var0.setFont(var43); + boolean var46 = var0.isCursorSet(); + java.awt.Dimension var47 = var0.minimumSize(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var23); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertNull(var25); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var28 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var30 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var40); + + // Regression assertion (captures the current behavior of the code) + assertNull(var41); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var42 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var43); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var44); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var46 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var47); + + } + + public void test356() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test356"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var1 = new SpaceWar.SpacePanel(); + java.awt.Color var2 = var1.getBackground(); + SpaceWar.SpacePanel var3 = new SpaceWar.SpacePanel(); + float var4 = var3.getAlignmentX(); + var3.setVisible(false); + var3.nextFocus(); + var3.updateUI(); + var3.enableInputMethods(true); + var0.add((java.awt.Component)var1, (java.lang.Object)true); + boolean var13 = var1.areFocusTraversalKeysSet(0); + var1.setFocusable(false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var2); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == false); + + } + + public void test357() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test357"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + java.awt.Dimension var4 = var0.getPreferredSize(); + boolean var5 = var0.getVerifyInputWhenFocusTarget(); + java.awt.Component var8 = var0.findComponentAt(10, 1); + boolean var9 = var0.requestDefaultFocus(); + var0.setVerifyInputWhenFocusTarget(false); + boolean var12 = var0.isPaintingForPrint(); + boolean var13 = var0.getIgnoreRepaint(); + java.awt.FocusTraversalPolicy var14 = var0.getFocusTraversalPolicy(); + var0.setRequestFocusEnabled(true); + java.awt.Rectangle var17 = var0.getBounds(); + var0.transferFocusDownCycle(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var4); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var17); + + } + + public void test358() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test358"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + SpaceWar.SpacePanel var4 = new SpaceWar.SpacePanel(); + java.awt.Color var5 = var4.getBackground(); + var0.setForeground(var5); + SpaceWar.SpacePanel var7 = new SpaceWar.SpacePanel(); + float var8 = var7.getAlignmentX(); + var7.setVisible(false); + boolean var11 = var7.isDoubleBuffered(); + java.awt.dnd.DropTarget var12 = var7.getDropTarget(); + var7.show(false); + java.awt.Rectangle var15 = var7.getVisibleRect(); + var0.repaint(var15); + java.awt.FocusTraversalPolicy var17 = var0.getFocusTraversalPolicy(); + java.awt.im.InputMethodRequests var18 = var0.getInputMethodRequests(); + var0.layout(); + boolean var20 = var0.isFocusTraversalPolicyProvider(); + java.awt.Insets var21 = var0.insets(); + java.awt.Dimension var22 = var0.getMinimumSize(); + SpaceWar.SpacePanel var23 = new SpaceWar.SpacePanel(); + float var24 = var23.getAlignmentX(); + var23.setVisible(false); + boolean var27 = var23.isDoubleBuffered(); + java.awt.dnd.DropTarget var28 = var23.getDropTarget(); + var23.show(false); + java.awt.event.MouseWheelListener[] var31 = var23.getMouseWheelListeners(); + SpaceWar.SpacePanel var32 = new SpaceWar.SpacePanel(); + float var33 = var32.getAlignmentX(); + var32.setVisible(false); + SpaceWar.SpacePanel var36 = new SpaceWar.SpacePanel(); + java.awt.Color var37 = var36.getBackground(); + var32.setForeground(var37); + SpaceWar.SpacePanel var39 = new SpaceWar.SpacePanel(); + float var40 = var39.getAlignmentX(); + var39.setVisible(false); + boolean var43 = var39.isDoubleBuffered(); + java.awt.dnd.DropTarget var44 = var39.getDropTarget(); + var39.show(false); + java.awt.Rectangle var47 = var39.getVisibleRect(); + var32.repaint(var47); + SpaceWar.SpacePanel var49 = new SpaceWar.SpacePanel(); + float var50 = var49.getAlignmentX(); + var49.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var55 = var49.getMouseListeners(); + java.awt.Dimension var56 = var49.getPreferredSize(); + java.util.Locale var57 = var49.getLocale(); + var32.setLocale(var57); + java.util.Locale var59 = var32.getLocale(); + var23.setLocale(var59); + var0.setLocale(var59); + SpaceWar.SpacePanel var62 = new SpaceWar.SpacePanel(); + java.awt.Color var63 = var62.getBackground(); + var62.repaint(); + var62.setRequestFocusEnabled(false); + var62.reshape(100, 0, 100, 0); + java.beans.VetoableChangeListener[] var72 = var62.getVetoableChangeListeners(); + java.awt.Rectangle var73 = var62.getVisibleRect(); + float var74 = var62.getAlignmentY(); + SpaceWar.SpacePanel var75 = new SpaceWar.SpacePanel(); + java.awt.Color var76 = var75.getBackground(); + var75.repaint(); + java.awt.im.InputMethodRequests var78 = var75.getInputMethodRequests(); + int var79 = var75.countComponents(); + java.awt.Dimension var80 = var75.getSize(); + var62.setPreferredSize(var80); + java.awt.Dimension var82 = var0.getSize(var80); + // The following exception was thrown during execution. + // This behavior will recorded for regression testing. + try { + javax.swing.InputMap var84 = var0.getInputMap(25); + fail("Expected exception of type java.lang.IllegalArgumentException"); + } catch (java.lang.IllegalArgumentException e) { + // Expected exception. + } + + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var21); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var24 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var28); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var31); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var33 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var37); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var40 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var43 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var44); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var47); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var50 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var55); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var56); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var57); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var59); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var63); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var72); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var73); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var74 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var76); + + // Regression assertion (captures the current behavior of the code) + assertNull(var78); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var79 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var80); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var82); + + } + + public void test359() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test359"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.reshape((-1), 1, (-1), 10); + var0.disable(); + var0.show(); + SpaceWar.SpacePanel var12 = new SpaceWar.SpacePanel(); + float var13 = var12.getAlignmentX(); + var12.setVisible(false); + boolean var16 = var12.isDoubleBuffered(); + var12.list(); + SpaceWar.SpacePanel var18 = new SpaceWar.SpacePanel(); + float var19 = var18.getAlignmentX(); + var18.setVisible(false); + boolean var22 = var18.isDoubleBuffered(); + java.awt.dnd.DropTarget var23 = var18.getDropTarget(); + var18.show(false); + java.awt.Rectangle var26 = var18.getVisibleRect(); + java.awt.Rectangle var27 = var12.getBounds(var26); + javax.swing.JToolTip var28 = var12.createToolTip(); + var12.firePropertyChange("", false, false); + var12.validate(); + SpaceWar.SpacePanel var34 = new SpaceWar.SpacePanel(); + float var35 = var34.getAlignmentX(); + var34.setVisible(false); + boolean var38 = var34.isDoubleBuffered(); + java.awt.dnd.DropTarget var39 = var34.getDropTarget(); + var34.show(false); + boolean var42 = var34.isPaintingForPrint(); + SpaceWar.SpacePanel var43 = new SpaceWar.SpacePanel(); + float var44 = var43.getAlignmentX(); + var43.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var49 = var43.getMouseListeners(); + int var50 = var43.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var51 = var43.getInputMethodRequests(); + var34.addKeyListener((java.awt.event.KeyListener)var43); + var43.repaint(); + java.awt.Point var54 = var43.location(); + java.awt.Component var55 = var12.getComponentAt(var54); + java.awt.Point var56 = var0.getLocation(var54); + var0.setAlignmentY(0.5f); + boolean var59 = var0.getVerifyInputWhenFocusTarget(); + boolean var60 = var0.isBackgroundSet(); + java.awt.Point var61 = var0.location(); + java.awt.Dimension var62 = var0.size(); + java.beans.VetoableChangeListener[] var63 = var0.getVetoableChangeListeners(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var22 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var23); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var27); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var28); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var35 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var38 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var39); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var42 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var44 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var49); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var50 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var51); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var54); + + // Regression assertion (captures the current behavior of the code) + assertNull(var55); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var56); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var59 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var60 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var61); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var62); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var63); + + } + + public void test360() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test360"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + boolean var2 = var0.hasFocus(); + SpaceWar.SpacePanel var3 = new SpaceWar.SpacePanel(); + float var4 = var3.getAlignmentX(); + var3.setVisible(false); + var3.nextFocus(); + var3.reshape((-1), 1, (-1), 10); + var3.disable(); + java.awt.LayoutManager var14 = var3.getLayout(); + var3.setVisible(false); + var0.remove((java.awt.Component)var3); + boolean var18 = var3.hasFocus(); + java.lang.String var19 = var3.toString(); + java.awt.Component var22 = var3.findComponentAt(3, 24); + java.awt.event.InputMethodListener[] var23 = var3.getInputMethodListeners(); + java.awt.Rectangle var24 = var3.bounds(); + javax.swing.JToolTip var25 = var3.createToolTip(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var2 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var19 + "' != '" + "SpaceWar.SpacePanel[,-1,1,-1x10,invalid,hidden,disabled,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"+ "'", var19.equals("SpaceWar.SpacePanel[,-1,1,-1x10,invalid,hidden,disabled,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]")); + + // Regression assertion (captures the current behavior of the code) + assertNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var23); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var25); + + } + + public void test361() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test361"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + boolean var5 = javax.swing.JComponent.isLightweightComponent((java.awt.Component)var0); + boolean var6 = var0.isRequestFocusEnabled(); + java.awt.Dimension var7 = var0.getSize(); + java.awt.Component var10 = var0.getComponentAt(2, 1); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertNull(var10); + + } + + public void test362() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test362"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + var0.list(); + float var6 = var0.getAlignmentY(); + java.awt.event.ComponentListener[] var7 = var0.getComponentListeners(); + boolean var10 = var0.inside((-1), 498); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == false); + + } + + public void test363() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test363"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + var0.list(); + float var6 = var0.getAlignmentY(); + java.awt.event.ComponentListener[] var7 = var0.getComponentListeners(); + java.awt.Component var8 = var0.getNextFocusableComponent(); + boolean var9 = var0.isManagingFocus(); + javax.swing.border.Border var10 = var0.getBorder(); + java.lang.Object var11 = var0.getTreeLock(); + javax.swing.border.Border var12 = var0.getBorder(); + var0.setEnabled(false); + java.awt.Graphics var15 = var0.getGraphics(); + SpaceWar.SpacePanel var16 = new SpaceWar.SpacePanel(); + float var17 = var16.getAlignmentX(); + var16.setVisible(false); + boolean var20 = var16.isDoubleBuffered(); + java.awt.dnd.DropTarget var21 = var16.getDropTarget(); + var16.show(false); + boolean var24 = var16.isPaintingForPrint(); + SpaceWar.SpacePanel var25 = new SpaceWar.SpacePanel(); + float var26 = var25.getAlignmentX(); + var25.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var31 = var25.getMouseListeners(); + int var32 = var25.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var33 = var25.getInputMethodRequests(); + var16.addKeyListener((java.awt.event.KeyListener)var25); + boolean var35 = var16.isDisplayable(); + java.awt.Insets var36 = var16.getInsets(); + SpaceWar.SpacePanel var37 = new SpaceWar.SpacePanel(); + float var38 = var37.getAlignmentX(); + var37.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var43 = new SpaceWar.SpacePanel(); + float var44 = var43.getAlignmentX(); + var43.setVisible(false); + SpaceWar.SpacePanel var47 = new SpaceWar.SpacePanel(); + java.awt.Color var48 = var47.getBackground(); + var43.setForeground(var48); + var37.setBackground(var48); + java.awt.Point var51 = var37.location(); + java.awt.Point var52 = var16.getLocation(var51); + java.awt.Component var53 = var0.findComponentAt(var51); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var21); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var24 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var31); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var32 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var33); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var35 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var36); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var38 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var44 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var48); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var51); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var52); + + // Regression assertion (captures the current behavior of the code) + assertNull(var53); + + } + + public void test364() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test364"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var6 = var0.getUI(); + java.awt.im.InputMethodRequests var7 = var0.getInputMethodRequests(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + var8.nextFocus(); + var8.updateUI(); + var8.enableInputMethods(true); + var8.setSize((-1), 1); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + var19.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var0.add((java.awt.Component)var8, (java.lang.Object)"SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + var8.doLayout(); + java.awt.event.MouseListener[] var26 = var8.getMouseListeners(); + SpaceWar.SpacePanel var27 = new SpaceWar.SpacePanel(); + java.awt.Color var28 = var27.getBackground(); + var27.repaint(); + var27.setRequestFocusEnabled(false); + var27.reshape(100, 0, 100, 0); + var27.requestFocus(); + java.awt.Rectangle var38 = var27.getVisibleRect(); + java.awt.Rectangle var39 = var27.getBounds(); + java.awt.im.InputMethodRequests var40 = var27.getInputMethodRequests(); + boolean var41 = var27.requestFocusInWindow(); + java.awt.Point var43 = var27.getMousePosition(false); + var27.setDebugGraphicsOptions(1); + java.awt.Graphics var46 = var27.getGraphics(); + var8.printComponents(var46); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var28); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var38); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var39); + + // Regression assertion (captures the current behavior of the code) + assertNull(var40); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var41 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var43); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var46); + + } + + public void test365() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test365"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + java.awt.Dimension var4 = var0.getPreferredSize(); + java.awt.Toolkit var5 = var0.getToolkit(); + boolean var6 = var0.isFocusable(); + javax.swing.KeyStroke[] var7 = var0.getRegisteredKeyStrokes(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + SpaceWar.SpacePanel var10 = new SpaceWar.SpacePanel(); + float var11 = var10.getAlignmentX(); + var10.setVisible(false); + java.awt.Dimension var14 = var10.getPreferredSize(); + boolean var15 = var10.getVerifyInputWhenFocusTarget(); + java.awt.Component var18 = var10.findComponentAt(10, 1); + var8.addKeyListener((java.awt.event.KeyListener)var10); + var10.repaint(100, (-1), (-1), 1); + boolean var25 = var0.isAncestorOf((java.awt.Component)var10); + java.awt.Point var26 = var0.location(); + boolean var27 = var0.isDoubleBuffered(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var4); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == true); + + } + + public void test366() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test366"); + + + SpaceWar.PowerUp var3 = new SpaceWar.PowerUp(25, 382.22188660250424d, 396.44637138944637d); + + } + + public void test367() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test367"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + var0.show(false); + boolean var8 = var0.isPaintingForPrint(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var15 = var9.getMouseListeners(); + int var16 = var9.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var17 = var9.getInputMethodRequests(); + var0.addKeyListener((java.awt.event.KeyListener)var9); + boolean var19 = var0.isDisplayable(); + var0.doLayout(); + SpaceWar.SpacePanel var21 = new SpaceWar.SpacePanel(); + float var22 = var21.getAlignmentX(); + var21.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var27 = new SpaceWar.SpacePanel(); + float var28 = var27.getAlignmentX(); + var27.setVisible(false); + java.awt.Dimension var31 = var27.getPreferredSize(); + var21.setMaximumSize(var31); + boolean var33 = var21.getVerifyInputWhenFocusTarget(); + java.awt.Toolkit var34 = var21.getToolkit(); + java.awt.Dimension var35 = var21.minimumSize(); + java.awt.Image var38 = var21.createImage((-1), 400); + java.awt.event.MouseMotionListener[] var39 = var21.getMouseMotionListeners(); + java.awt.Component var40 = var0.add((java.awt.Component)var21); + boolean var41 = var21.isPaintingForPrint(); + var21.setToolTipText("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=8,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var22 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var28 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var31); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var33 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var34); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var35); + + // Regression assertion (captures the current behavior of the code) + assertNull(var38); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var39); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var40); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var41 == false); + + } + + public void test368() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test368"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.reshape((-1), 1, (-1), 10); + var0.disable(); + java.awt.LayoutManager var11 = var0.getLayout(); + java.awt.Container var12 = var0.getParent(); + java.lang.String var13 = var0.getUIClassID(); + float var14 = var0.getAlignmentX(); + var0.enable(true); + boolean var17 = var0.isPaintingTile(); + javax.swing.plaf.PanelUI var18 = var0.getUI(); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + float var20 = var19.getAlignmentX(); + var19.setVisible(false); + java.awt.Dimension var23 = var19.getPreferredSize(); + java.awt.Toolkit var24 = var19.getToolkit(); + boolean var25 = var19.isFocusable(); + javax.swing.KeyStroke[] var26 = var19.getRegisteredKeyStrokes(); + SpaceWar.SpacePanel var27 = new SpaceWar.SpacePanel(); + float var28 = var27.getAlignmentX(); + SpaceWar.SpacePanel var29 = new SpaceWar.SpacePanel(); + float var30 = var29.getAlignmentX(); + var29.setVisible(false); + java.awt.Dimension var33 = var29.getPreferredSize(); + boolean var34 = var29.getVerifyInputWhenFocusTarget(); + java.awt.Component var37 = var29.findComponentAt(10, 1); + var27.addKeyListener((java.awt.event.KeyListener)var29); + var29.repaint(100, (-1), (-1), 1); + boolean var44 = var19.isAncestorOf((java.awt.Component)var29); + var19.nextFocus(); + var19.disable(); + java.awt.Dimension var47 = var19.size(); + var19.list(); + var19.hide(); + SpaceWar.SpacePanel var50 = new SpaceWar.SpacePanel(); + float var51 = var50.getAlignmentX(); + var50.setVisible(false); + var50.nextFocus(); + var50.reshape((-1), 1, (-1), 10); + var50.disable(); + java.awt.LayoutManager var61 = var50.getLayout(); + boolean var64 = var50.contains((-1), 0); + SpaceWar.SpacePanel var65 = new SpaceWar.SpacePanel(); + float var66 = var65.getAlignmentX(); + var65.setVisible(false); + var65.nextFocus(); + var65.updateUI(); + var65.enableInputMethods(true); + var65.setSize((-1), 1); + java.awt.Component var76 = var50.add((java.awt.Component)var65); + var65.nextFocus(); + boolean var78 = var65.hasFocus(); + javax.accessibility.AccessibleContext var79 = var65.getAccessibleContext(); + var0.putClientProperty((java.lang.Object)var19, (java.lang.Object)var65); + var19.list(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var13 + "' != '" + "PanelUI"+ "'", var13.equals("PanelUI")); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var23); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var28 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var30 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var33); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var34 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var37); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var44 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var47); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var51 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var61); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var64 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var66 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var76); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var78 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var79); + + } + + public void test369() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test369"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + var0.enable(false); + java.awt.Container var7 = var0.getTopLevelAncestor(); + javax.swing.InputMap var9 = var0.getInputMap(1); + SpaceWar.SpacePanel var10 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var11 = new SpaceWar.SpacePanel(); + java.awt.Color var12 = var11.getBackground(); + SpaceWar.SpacePanel var13 = new SpaceWar.SpacePanel(); + float var14 = var13.getAlignmentX(); + var13.setVisible(false); + var13.nextFocus(); + var13.updateUI(); + var13.enableInputMethods(true); + var10.add((java.awt.Component)var11, (java.lang.Object)true); + java.awt.Image var24 = var11.createImage(1, (-1)); + java.awt.event.MouseListener[] var25 = var11.getMouseListeners(); + java.awt.Color var26 = var11.getBackground(); + var11.grabFocus(); + boolean var28 = var0.isAncestorOf((java.awt.Component)var11); + java.awt.event.HierarchyListener[] var29 = var0.getHierarchyListeners(); + var0.setIgnoreRepaint(true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var9); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var25); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var28 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var29); + + } + + public void test370() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test370"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + java.awt.im.InputMethodRequests var3 = var0.getInputMethodRequests(); + var0.setDoubleBuffered(true); + var0.show(false); + var0.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", (-1), 24); + java.awt.Point var12 = var0.location(); + java.awt.Dimension var13 = var0.getMinimumSize(); + java.awt.Rectangle var14 = var0.bounds(); + var0.firePropertyChange("SpaceWar.SpacePanel[,499,2,499x500,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", 12.0d, 215.19350638961689d); + var0.setVerifyInputWhenFocusTarget(false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + } + + public void test371() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test371"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + var0.list(); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + float var7 = var6.getAlignmentX(); + var6.setVisible(false); + boolean var10 = var6.isDoubleBuffered(); + java.awt.dnd.DropTarget var11 = var6.getDropTarget(); + var6.show(false); + java.awt.Rectangle var14 = var6.getVisibleRect(); + java.awt.image.BufferedImage var16 = var6.loadImg("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + boolean var17 = var0.isAncestorOf((java.awt.Component)var6); + float var18 = var0.getAlignmentX(); + java.awt.image.VolatileImage var21 = var0.createVolatileImage(25, 1); + SpaceWar.SpacePanel var22 = new SpaceWar.SpacePanel(); + var22.setName(""); + java.awt.ComponentOrientation var25 = var22.getComponentOrientation(); + var0.remove((java.awt.Component)var22); + java.awt.Dimension var27 = var22.minimumSize(); + java.lang.String var28 = var22.getToolTipText(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNull(var21); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var25); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var27); + + // Regression assertion (captures the current behavior of the code) + assertNull(var28); + + } + + public void test372() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test372"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var6 = var0.getUI(); + java.awt.im.InputMethodRequests var7 = var0.getInputMethodRequests(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + var8.nextFocus(); + var8.updateUI(); + var8.enableInputMethods(true); + var8.setSize((-1), 1); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + var19.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var0.add((java.awt.Component)var8, (java.lang.Object)"SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + SpaceWar.SpacePanel var25 = new SpaceWar.SpacePanel(); + float var26 = var25.getAlignmentX(); + var25.setVisible(false); + java.awt.Dimension var29 = var25.getPreferredSize(); + java.awt.Toolkit var30 = var25.getToolkit(); + java.awt.Toolkit var31 = var25.getToolkit(); + java.awt.Component var32 = var8.add((java.awt.Component)var25); + var8.setDebugGraphicsOptions(0); + java.awt.im.InputMethodRequests var35 = var8.getInputMethodRequests(); + SpaceWar.SpacePanel var36 = new SpaceWar.SpacePanel(); + java.awt.Color var37 = var36.getBackground(); + var8.setForeground(var37); + java.awt.Point var39 = var8.getLocation(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var29); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var30); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var31); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var32); + + // Regression assertion (captures the current behavior of the code) + assertNull(var35); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var37); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var39); + + } + + public void test373() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test373"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + java.awt.Dimension var4 = var0.getPreferredSize(); + boolean var5 = var0.getVerifyInputWhenFocusTarget(); + java.awt.Component var8 = var0.findComponentAt(10, 1); + boolean var9 = var0.requestDefaultFocus(); + var0.firePropertyChange("hi!", false, true); + javax.swing.ActionMap var14 = var0.getActionMap(); + var0.setDebugGraphicsOptions(10); + java.awt.LayoutManager var17 = var0.getLayout(); + var0.firePropertyChange("SpaceWar.SpacePanel[,100,0,100x0,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", 0.0f, 0.0f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var4); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var17); + + } + + public void test374() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test374"); + + + SpaceWar.Player var0 = new SpaceWar.Player(); + int var1 = var0.getR(); + var0.setRigth(false); + var0.setLife(100); + var0.setDown(false); + var0.setFiring(true); + var0.increasePower(400); + var0.loseLife(); + var0.setDown(true); + int var15 = var0.getRequiredPower(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 25); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == 2); + + } + + public void test375() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test375"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + SpaceWar.SpacePanel var2 = new SpaceWar.SpacePanel(); + float var3 = var2.getAlignmentX(); + var2.setVisible(false); + java.awt.Dimension var6 = var2.getPreferredSize(); + boolean var7 = var2.getVerifyInputWhenFocusTarget(); + java.awt.Component var10 = var2.findComponentAt(10, 1); + var0.addKeyListener((java.awt.event.KeyListener)var2); + var2.repaint(100, (-1), (-1), 1); + SpaceWar.SpacePanel var17 = new SpaceWar.SpacePanel(); + java.awt.Color var18 = var17.getBackground(); + var17.repaint(); + java.awt.im.InputMethodRequests var20 = var17.getInputMethodRequests(); + java.awt.GraphicsConfiguration var21 = var17.getGraphicsConfiguration(); + var2.remove((java.awt.Component)var17); + java.awt.image.BufferedImage var24 = var2.loadImg("hi!"); + java.awt.Component var27 = var2.locate(2, 24); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertNull(var21); + + // Regression assertion (captures the current behavior of the code) + assertNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertNull(var27); + + } + + public void test376() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test376"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.repaint(1L); + SpaceWar.SpacePanel var7 = new SpaceWar.SpacePanel(); + float var8 = var7.getAlignmentX(); + var7.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var13 = new SpaceWar.SpacePanel(); + float var14 = var13.getAlignmentX(); + var13.setVisible(false); + java.awt.Dimension var17 = var13.getPreferredSize(); + var7.setMaximumSize(var17); + var0.setPreferredSize(var17); + javax.swing.plaf.PanelUI var20 = var0.getUI(); + java.awt.Dimension var21 = var0.getMinimumSize(); + boolean var22 = var0.getInheritsPopupMenu(); + java.awt.event.ContainerListener[] var23 = var0.getContainerListeners(); + javax.swing.KeyStroke[] var24 = var0.getRegisteredKeyStrokes(); + javax.swing.JRootPane var25 = var0.getRootPane(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var21); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var22 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var23); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertNull(var25); + + } + + public void test377() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test377"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.reshape((-1), 1, (-1), 10); + SpaceWar.SpacePanel var10 = new SpaceWar.SpacePanel(); + java.awt.Color var11 = var10.getBackground(); + var10.repaint(); + var10.setRequestFocusEnabled(false); + var10.reshape(100, 0, 100, 0); + java.awt.Component var20 = var0.add((java.awt.Component)var10); + boolean var21 = var10.isCursorSet(); + var10.paintImmediately(3, 10, (-1), (-1)); + int var27 = var10.getX(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == 100); + + } + + public void test378() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test378"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + java.awt.Dimension var4 = var0.getPreferredSize(); + java.awt.Toolkit var5 = var0.getToolkit(); + boolean var6 = var0.isFocusable(); + javax.swing.KeyStroke[] var7 = var0.getRegisteredKeyStrokes(); + java.awt.Component var10 = var0.getComponentAt(100, 100); + java.lang.Object var11 = var0.getTreeLock(); + boolean var14 = var0.contains(2, (-1)); + java.awt.Point var16 = var0.getMousePosition(false); + var0.transferFocusUpCycle(); + boolean var18 = var0.isFontSet(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var4); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == true); + + } + + public void test379() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test379"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + var0.setName(""); + java.awt.ComponentOrientation var3 = var0.getComponentOrientation(); + int var4 = var0.getComponentCount(); + var0.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", (byte)1, (byte)0); + var0.setDoubleBuffered(true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0); + + } + + public void test380() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test380"); + + + SpaceWar.Player var0 = new SpaceWar.Player(); + int var1 = var0.getR(); + var0.setUp(false); + int var4 = var0.getLives(); + var0.setScore(0); + var0.setLeft(false); + var0.setDown(true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 25); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 3); + + } + + public void test381() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test381"); + + + SpaceWar.Player var0 = new SpaceWar.Player(); + boolean var1 = var0.isRecovering(); + int var2 = var0.getRequiredPower(); + var0.setDown(false); + var0.setRigth(false); + var0.loseLife(); + var0.loseLife(); + int var9 = var0.getPowerLevel(); + var0.setFiring(true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var2 == 1); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0); + + } + + public void test382() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test382"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.reshape((-1), 1, (-1), 10); + var0.disable(); + var0.show(); + SpaceWar.SpacePanel var12 = new SpaceWar.SpacePanel(); + float var13 = var12.getAlignmentX(); + var12.setVisible(false); + SpaceWar.SpacePanel var16 = new SpaceWar.SpacePanel(); + java.awt.Color var17 = var16.getBackground(); + var12.setForeground(var17); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + float var20 = var19.getAlignmentX(); + var19.setVisible(false); + boolean var23 = var19.isDoubleBuffered(); + java.awt.dnd.DropTarget var24 = var19.getDropTarget(); + var19.show(false); + java.awt.Rectangle var27 = var19.getVisibleRect(); + var12.repaint(var27); + java.awt.FocusTraversalPolicy var29 = var12.getFocusTraversalPolicy(); + java.awt.im.InputMethodRequests var30 = var12.getInputMethodRequests(); + var12.layout(); + java.awt.Point var32 = var12.getMousePosition(); + java.awt.Graphics var33 = var12.getGraphics(); + boolean var34 = var12.requestFocusInWindow(); + java.awt.image.ColorModel var35 = var12.getColorModel(); + var0.addKeyListener((java.awt.event.KeyListener)var12); + java.awt.event.InputMethodListener[] var37 = var0.getInputMethodListeners(); + SpaceWar.SpacePanel var38 = new SpaceWar.SpacePanel(); + float var39 = var38.getAlignmentX(); + var38.setVisible(false); + java.awt.Dimension var42 = var38.getPreferredSize(); + boolean var43 = var38.getVerifyInputWhenFocusTarget(); + java.awt.Component var46 = var38.findComponentAt(10, 1); + boolean var47 = var38.requestDefaultFocus(); + var38.setVerifyInputWhenFocusTarget(false); + boolean var50 = var38.isPaintingForPrint(); + boolean var51 = var38.getIgnoreRepaint(); + java.awt.FocusTraversalPolicy var52 = var38.getFocusTraversalPolicy(); + var38.setRequestFocusEnabled(true); + java.awt.Rectangle var55 = var38.getBounds(); + var0.repaint(var55); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var27); + + // Regression assertion (captures the current behavior of the code) + assertNull(var29); + + // Regression assertion (captures the current behavior of the code) + assertNull(var30); + + // Regression assertion (captures the current behavior of the code) + assertNull(var32); + + // Regression assertion (captures the current behavior of the code) + assertNull(var33); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var34 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var35); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var37); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var39 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var42); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var43 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var46); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var47 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var50 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var51 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var52); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var55); + + } + + public void test383() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test383"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var6 = var0.getUI(); + java.awt.im.InputMethodRequests var7 = var0.getInputMethodRequests(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + var8.nextFocus(); + var8.updateUI(); + var8.enableInputMethods(true); + var8.setSize((-1), 1); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + var19.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var0.add((java.awt.Component)var8, (java.lang.Object)"SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + var8.firePropertyChange("SpaceWar.SpacePanel[,-1,1,-1x10,invalid,hidden,disabled,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", 2, 10); + var8.removeAll(); + SpaceWar.SpacePanel var30 = new SpaceWar.SpacePanel(); + float var31 = var30.getAlignmentX(); + SpaceWar.SpacePanel var32 = new SpaceWar.SpacePanel(); + float var33 = var32.getAlignmentX(); + var32.setVisible(false); + java.awt.Dimension var36 = var32.getPreferredSize(); + boolean var37 = var32.getVerifyInputWhenFocusTarget(); + java.awt.Component var40 = var32.findComponentAt(10, 1); + var30.addKeyListener((java.awt.event.KeyListener)var32); + SpaceWar.SpacePanel var42 = new SpaceWar.SpacePanel(); + float var43 = var42.getAlignmentX(); + SpaceWar.SpacePanel var44 = new SpaceWar.SpacePanel(); + float var45 = var44.getAlignmentX(); + var44.setVisible(false); + java.awt.Dimension var48 = var44.getPreferredSize(); + boolean var49 = var44.getVerifyInputWhenFocusTarget(); + java.awt.Component var52 = var44.findComponentAt(10, 1); + var42.addKeyListener((java.awt.event.KeyListener)var44); + var44.repaint(100, (-1), (-1), 1); + java.awt.image.ColorModel var59 = var44.getColorModel(); + SpaceWar.SpacePanel var60 = new SpaceWar.SpacePanel(); + float var61 = var60.getAlignmentX(); + var60.setVisible(false); + boolean var64 = var60.isDoubleBuffered(); + var60.list(); + SpaceWar.SpacePanel var66 = new SpaceWar.SpacePanel(); + float var67 = var66.getAlignmentX(); + var66.setVisible(false); + boolean var70 = var66.isDoubleBuffered(); + java.awt.dnd.DropTarget var71 = var66.getDropTarget(); + var66.show(false); + java.awt.Rectangle var74 = var66.getVisibleRect(); + java.awt.image.BufferedImage var76 = var66.loadImg("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + boolean var77 = var60.isAncestorOf((java.awt.Component)var66); + javax.swing.InputVerifier var78 = var66.getInputVerifier(); + var32.putClientProperty((java.lang.Object)var44, (java.lang.Object)var66); + javax.swing.JToolTip var80 = var32.createToolTip(); + boolean var81 = var80.isFocusTraversable(); + java.awt.Dimension var82 = var80.getMinimumSize(); + var8.resize(var82); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var31 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var33 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var36); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var40); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var43 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var45 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var48); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var49 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var52); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var59); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var61 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var64 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var67 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var70 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var71); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var74); + + // Regression assertion (captures the current behavior of the code) + assertNull(var76); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var77 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var78); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var80); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var81 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var82); + + } + + public void test384() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test384"); + + + SpaceWar.Enemy var2 = new SpaceWar.Enemy(100, 399); + var2.update(); + var2.explode(); + boolean var5 = var2.isDead(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == false); + + } + + public void test385() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test385"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + SpaceWar.SpacePanel var2 = new SpaceWar.SpacePanel(); + float var3 = var2.getAlignmentX(); + var2.setVisible(false); + java.awt.Dimension var6 = var2.getPreferredSize(); + boolean var7 = var2.getVerifyInputWhenFocusTarget(); + java.awt.Component var10 = var2.findComponentAt(10, 1); + var0.addKeyListener((java.awt.event.KeyListener)var2); + java.awt.Dimension var12 = var2.getMinimumSize(); + SpaceWar.SpacePanel var13 = new SpaceWar.SpacePanel(); + java.awt.Color var14 = var13.getBackground(); + var13.repaint(); + var13.setRequestFocusEnabled(false); + var13.reshape(100, 0, 100, 0); + var13.requestFocus(); + java.awt.Rectangle var24 = var13.getVisibleRect(); + var2.setBounds(var24); + var2.move(24, 10); + boolean var29 = var2.hasFocus(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var29 == false); + + } + + public void test386() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test386"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + boolean var2 = var0.hasFocus(); + java.awt.Insets var3 = var0.getInsets(); + java.awt.Rectangle var4 = var0.bounds(); + java.awt.event.MouseMotionListener[] var5 = var0.getMouseMotionListeners(); + boolean var6 = var0.isValidateRoot(); + java.awt.Dimension var7 = var0.getPreferredSize(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var2 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var4); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var7); + + } + + public void test387() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test387"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + java.awt.Rectangle var6 = var0.getVisibleRect(); + java.awt.event.MouseListener[] var7 = var0.getMouseListeners(); + int var8 = var0.getDebugGraphicsOptions(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + boolean var11 = var9.hasFocus(); + java.awt.Insets var12 = var9.getInsets(); + java.awt.Rectangle var13 = var9.bounds(); + java.awt.event.MouseMotionListener[] var14 = var9.getMouseMotionListeners(); + boolean var15 = var9.isMaximumSizeSet(); + java.awt.LayoutManager var16 = var9.getLayout(); + java.awt.Rectangle var17 = var9.getBounds(); + var9.transferFocus(); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + java.awt.Color var20 = var19.getBackground(); + var19.repaint(); + var19.setRequestFocusEnabled(false); + var19.setIgnoreRepaint(false); + java.lang.String var26 = var19.toString(); + java.awt.Color var27 = var19.getBackground(); + SpaceWar.SpacePanel var28 = new SpaceWar.SpacePanel(); + float var29 = var28.getAlignmentX(); + var28.setVisible(false); + java.awt.Dimension var32 = var28.getPreferredSize(); + java.awt.Toolkit var33 = var28.getToolkit(); + java.awt.Toolkit var34 = var28.getToolkit(); + SpaceWar.Player var35 = new SpaceWar.Player(); + var35.increasePower(25); + int var38 = var35.getScore(); + var35.setRigth(true); + var35.loseLife(); + var19.putClientProperty((java.lang.Object)var28, (java.lang.Object)var35); + SpaceWar.SpacePanel var43 = new SpaceWar.SpacePanel(); + float var44 = var43.getAlignmentX(); + var43.setVisible(false); + var43.setInheritsPopupMenu(false); + var43.move(10, 10); + var43.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + java.awt.event.KeyListener[] var56 = var43.getKeyListeners(); + var28.removeKeyListener((java.awt.event.KeyListener)var43); + java.awt.Dimension var58 = var43.minimumSize(); + java.awt.LayoutManager var59 = var43.getLayout(); + var9.setLayout(var59); + var0.setLayout(var59); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var26 + "' != '" + "SpaceWar.SpacePanel[,0,0,0var26,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"+ "'", var26.equals("SpaceWar.SpacePanel[,0,0,0var26,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]")); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var27); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var29 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var32); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var33); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var34); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var38 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var44 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var56); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var58); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var59); + + } + + public void test388() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test388"); + + + SpaceWar.Player var0 = new SpaceWar.Player(); + int var1 = var0.getPower(); + int var2 = var0.getY(); + var0.setLife(3); + int var5 = var0.getY(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var2 == 500); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == 500); + + } + + public void test389() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test389"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + var0.list(); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + float var7 = var6.getAlignmentX(); + var6.setVisible(false); + boolean var10 = var6.isDoubleBuffered(); + java.awt.dnd.DropTarget var11 = var6.getDropTarget(); + var6.show(false); + java.awt.Rectangle var14 = var6.getVisibleRect(); + java.awt.Rectangle var15 = var0.getBounds(var14); + javax.swing.JToolTip var16 = var0.createToolTip(); + var0.firePropertyChange("", false, false); + var0.validate(); + var0.setFocusCycleRoot(true); + int var24 = var0.countComponents(); + java.awt.event.KeyListener[] var25 = var0.getKeyListeners(); + java.awt.im.InputContext var26 = var0.getInputContext(); + SpaceWar.SpacePanel var27 = new SpaceWar.SpacePanel(); + float var28 = var27.getAlignmentX(); + var27.setVisible(false); + boolean var31 = var27.isDoubleBuffered(); + java.awt.dnd.DropTarget var32 = var27.getDropTarget(); + var27.show(false); + boolean var35 = var27.isPaintingForPrint(); + boolean var36 = var27.getIgnoreRepaint(); + var27.repaint(100, 10, 100, 0); + SpaceWar.SpacePanel var42 = new SpaceWar.SpacePanel(); + float var43 = var42.getAlignmentX(); + var42.setVisible(false); + boolean var46 = var42.isDoubleBuffered(); + var42.list(); + SpaceWar.SpacePanel var48 = new SpaceWar.SpacePanel(); + float var49 = var48.getAlignmentX(); + var48.setVisible(false); + boolean var52 = var48.isDoubleBuffered(); + java.awt.dnd.DropTarget var53 = var48.getDropTarget(); + var48.show(false); + java.awt.Rectangle var56 = var48.getVisibleRect(); + java.awt.Rectangle var57 = var42.getBounds(var56); + javax.swing.JToolTip var58 = var42.createToolTip(); + var42.firePropertyChange("", false, false); + var42.validate(); + SpaceWar.SpacePanel var64 = new SpaceWar.SpacePanel(); + float var65 = var64.getAlignmentX(); + var64.setVisible(false); + boolean var68 = var64.isDoubleBuffered(); + java.awt.dnd.DropTarget var69 = var64.getDropTarget(); + var64.show(false); + boolean var72 = var64.isPaintingForPrint(); + SpaceWar.SpacePanel var73 = new SpaceWar.SpacePanel(); + float var74 = var73.getAlignmentX(); + var73.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var79 = var73.getMouseListeners(); + int var80 = var73.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var81 = var73.getInputMethodRequests(); + var64.addKeyListener((java.awt.event.KeyListener)var73); + var73.repaint(); + java.awt.Point var84 = var73.location(); + java.awt.Component var85 = var42.getComponentAt(var84); + var27.setLocation(var84); + java.awt.peer.ComponentPeer var87 = var27.getPeer(); + java.awt.Component var88 = var0.add((java.awt.Component)var27); + boolean var89 = var88.isLightweight(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var24 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var25); + + // Regression assertion (captures the current behavior of the code) + assertNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var28 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var31 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var32); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var35 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var36 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var43 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var46 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var49 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var52 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var53); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var56); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var57); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var58); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var65 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var68 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var69); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var72 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var74 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var79); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var80 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var81); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var84); + + // Regression assertion (captures the current behavior of the code) + assertNull(var85); + + // Regression assertion (captures the current behavior of the code) + assertNull(var87); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var88); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var89 == false); + + } + + public void test390() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test390"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + var0.setName(""); + int var3 = var0.getX(); + SpaceWar.SpacePanel var4 = new SpaceWar.SpacePanel(); + float var5 = var4.getAlignmentX(); + var4.setVisible(false); + var4.nextFocus(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.setVisible(false); + SpaceWar.SpacePanel var13 = new SpaceWar.SpacePanel(); + java.awt.Color var14 = var13.getBackground(); + var9.setForeground(var14); + var4.setBackground(var14); + var0.setBackground(var14); + boolean var18 = var0.isFocusTraversable(); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + var19.setName(""); + int var22 = var19.getX(); + SpaceWar.SpacePanel var23 = new SpaceWar.SpacePanel(); + float var24 = var23.getAlignmentX(); + var23.setVisible(false); + var23.nextFocus(); + SpaceWar.SpacePanel var28 = new SpaceWar.SpacePanel(); + float var29 = var28.getAlignmentX(); + var28.setVisible(false); + SpaceWar.SpacePanel var32 = new SpaceWar.SpacePanel(); + java.awt.Color var33 = var32.getBackground(); + var28.setForeground(var33); + var23.setBackground(var33); + var19.setBackground(var33); + var0.setBackground(var33); + SpaceWar.SpacePanel var38 = new SpaceWar.SpacePanel(); + float var39 = var38.getAlignmentX(); + var38.setVisible(false); + var38.nextFocus(); + var38.updateUI(); + var38.enableInputMethods(true); + java.awt.Point var47 = var38.getMousePosition(false); + SpaceWar.SpacePanel var48 = new SpaceWar.SpacePanel(); + float var49 = var48.getAlignmentX(); + var48.setVisible(false); + boolean var52 = var48.isDoubleBuffered(); + var48.list(); + SpaceWar.SpacePanel var54 = new SpaceWar.SpacePanel(); + float var55 = var54.getAlignmentX(); + var54.setVisible(false); + boolean var58 = var54.isDoubleBuffered(); + java.awt.dnd.DropTarget var59 = var54.getDropTarget(); + var54.show(false); + java.awt.Rectangle var62 = var54.getVisibleRect(); + java.awt.Rectangle var63 = var48.getBounds(var62); + var38.scrollRectToVisible(var62); + var0.paintImmediately(var62); + var0.firePropertyChange("hi!", 1L, 100L); + var0.revalidate(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var22 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var24 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var29 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var33); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var39 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNull(var47); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var49 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var52 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var55 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var58 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var59); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var62); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var63); + + } + + public void test391() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test391"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.repaint(1L); + SpaceWar.SpacePanel var7 = new SpaceWar.SpacePanel(); + float var8 = var7.getAlignmentX(); + var7.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var13 = new SpaceWar.SpacePanel(); + float var14 = var13.getAlignmentX(); + var13.setVisible(false); + java.awt.Dimension var17 = var13.getPreferredSize(); + var7.setMaximumSize(var17); + var0.setPreferredSize(var17); + javax.swing.plaf.PanelUI var20 = var0.getUI(); + SpaceWar.SpacePanel var21 = new SpaceWar.SpacePanel(); + float var22 = var21.getAlignmentX(); + var21.setVisible(false); + var21.nextFocus(); + var21.reshape((-1), 1, (-1), 10); + var21.disable(); + java.awt.LayoutManager var32 = var21.getLayout(); + java.awt.Container var33 = var21.getParent(); + java.lang.String var34 = var21.getUIClassID(); + SpaceWar.Enemy var37 = new SpaceWar.Enemy(0, 10); + var0.add((java.awt.Component)var21, (java.lang.Object)10); + boolean var39 = var21.getInheritsPopupMenu(); + var21.setLocation(24, 100); + java.awt.event.FocusListener[] var43 = var21.getFocusListeners(); + SpaceWar.SpacePanel var44 = new SpaceWar.SpacePanel(); + float var45 = var44.getAlignmentX(); + var44.setVisible(false); + SpaceWar.SpacePanel var48 = new SpaceWar.SpacePanel(); + java.awt.Color var49 = var48.getBackground(); + var44.setForeground(var49); + SpaceWar.SpacePanel var51 = new SpaceWar.SpacePanel(); + float var52 = var51.getAlignmentX(); + var51.setVisible(false); + boolean var55 = var51.isDoubleBuffered(); + java.awt.dnd.DropTarget var56 = var51.getDropTarget(); + var51.show(false); + java.awt.Rectangle var59 = var51.getVisibleRect(); + var44.repaint(var59); + java.awt.Component.BaselineResizeBehavior var61 = var44.getBaselineResizeBehavior(); + boolean var63 = var44.requestFocus(false); + SpaceWar.SpacePanel var64 = new SpaceWar.SpacePanel(); + float var65 = var64.getAlignmentX(); + boolean var66 = var64.hasFocus(); + boolean var67 = var64.isPreferredSizeSet(); + var64.firePropertyChange("", (short)1, (short)0); + boolean var72 = var64.isMaximumSizeSet(); + java.awt.peer.ComponentPeer var73 = var64.getPeer(); + java.awt.ComponentOrientation var74 = var64.getComponentOrientation(); + var44.applyComponentOrientation(var74); + var21.setComponentOrientation(var74); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var22 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var32); + + // Regression assertion (captures the current behavior of the code) + assertNull(var33); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var34 + "' != '" + "PanelUI"+ "'", var34.equals("PanelUI")); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var39 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var43); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var45 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var49); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var52 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var55 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var56); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var59); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var61); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var63 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var65 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var66 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var67 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var72 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var73); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var74); + + } + + public void test392() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test392"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + var0.show(false); + boolean var8 = var0.isPaintingForPrint(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var15 = var9.getMouseListeners(); + int var16 = var9.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var17 = var9.getInputMethodRequests(); + var0.addKeyListener((java.awt.event.KeyListener)var9); + boolean var19 = var0.isDisplayable(); + boolean var20 = var0.isOpaque(); + var0.setIgnoreRepaint(true); + var0.repaint(0L); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == true); + + } + + public void test393() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test393"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + var0.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + javax.swing.plaf.PanelUI var5 = var0.getUI(); + java.awt.Color var6 = var0.getBackground(); + var0.setVisible(false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + } + + public void test394() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test394"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + SpaceWar.SpacePanel var2 = new SpaceWar.SpacePanel(); + float var3 = var2.getAlignmentX(); + var2.setVisible(false); + java.awt.Dimension var6 = var2.getPreferredSize(); + boolean var7 = var2.getVerifyInputWhenFocusTarget(); + java.awt.Component var10 = var2.findComponentAt(10, 1); + var0.addKeyListener((java.awt.event.KeyListener)var2); + var2.repaint(100, (-1), (-1), 1); + SpaceWar.SpacePanel var17 = new SpaceWar.SpacePanel(); + java.awt.Color var18 = var17.getBackground(); + var17.repaint(); + var17.setRequestFocusEnabled(false); + var17.reshape(100, 0, 100, 0); + var17.requestFocus(); + java.awt.Rectangle var28 = var17.getVisibleRect(); + java.awt.Rectangle var29 = var17.getBounds(); + java.awt.im.InputMethodRequests var30 = var17.getInputMethodRequests(); + boolean var31 = var17.requestFocusInWindow(); + java.lang.Object var32 = var2.getClientProperty((java.lang.Object)var17); + javax.swing.TransferHandler var33 = var17.getTransferHandler(); + boolean var34 = var17.isFocusOwner(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var28); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var29); + + // Regression assertion (captures the current behavior of the code) + assertNull(var30); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var31 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var32); + + // Regression assertion (captures the current behavior of the code) + assertNull(var33); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var34 == false); + + } + + public void test395() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test395"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.setInheritsPopupMenu(false); + var0.setFocusTraversalPolicyProvider(true); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + boolean var12 = var8.isDoubleBuffered(); + var8.list(); + SpaceWar.SpacePanel var14 = new SpaceWar.SpacePanel(); + float var15 = var14.getAlignmentX(); + var14.setVisible(false); + boolean var18 = var14.isDoubleBuffered(); + java.awt.dnd.DropTarget var19 = var14.getDropTarget(); + var14.show(false); + java.awt.Rectangle var22 = var14.getVisibleRect(); + java.awt.Rectangle var23 = var8.getBounds(var22); + javax.swing.JToolTip var24 = var8.createToolTip(); + var0.removeKeyListener((java.awt.event.KeyListener)var8); + javax.swing.TransferHandler var26 = var0.getTransferHandler(); + SpaceWar.SpacePanel var27 = new SpaceWar.SpacePanel(); + float var28 = var27.getAlignmentX(); + var27.setVisible(false); + var27.nextFocus(); + var27.repaint(1L); + SpaceWar.SpacePanel var34 = new SpaceWar.SpacePanel(); + float var35 = var34.getAlignmentX(); + var34.setVisible(false); + boolean var38 = var34.isDoubleBuffered(); + var34.list(); + SpaceWar.SpacePanel var40 = new SpaceWar.SpacePanel(); + float var41 = var40.getAlignmentX(); + var40.setVisible(false); + boolean var44 = var40.isDoubleBuffered(); + java.awt.dnd.DropTarget var45 = var40.getDropTarget(); + var40.show(false); + java.awt.Rectangle var48 = var40.getVisibleRect(); + java.awt.Rectangle var49 = var34.getBounds(var48); + var27.setBounds(var49); + var0.setBounds(var49); + java.awt.Point var52 = var0.location(); + javax.swing.KeyStroke[] var53 = var0.getRegisteredKeyStrokes(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var23); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var28 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var35 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var38 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var41 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var44 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var45); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var48); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var49); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var52); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var53); + + } + + public void test396() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test396"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + SpaceWar.SpacePanel var4 = new SpaceWar.SpacePanel(); + java.awt.Color var5 = var4.getBackground(); + var0.setForeground(var5); + javax.swing.InputMap var7 = var0.getInputMap(); + java.awt.Dimension var8 = var0.preferredSize(); + java.lang.String var9 = var0.getName(); + java.awt.Component[] var10 = var0.getComponents(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertNull(var9); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var10); + + } + + public void test397() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test397"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + boolean var2 = var0.hasFocus(); + boolean var3 = var0.isPreferredSizeSet(); + var0.firePropertyChange("", (short)1, (short)0); + boolean var8 = var0.isMaximumSizeSet(); + java.awt.peer.ComponentPeer var9 = var0.getPeer(); + boolean var10 = var0.requestDefaultFocus(); + java.awt.LayoutManager var11 = var0.getLayout(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var2 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var9); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + } + + public void test398() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test398"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + SpaceWar.SpacePanel var2 = new SpaceWar.SpacePanel(); + float var3 = var2.getAlignmentX(); + var2.setVisible(false); + java.awt.Dimension var6 = var2.getPreferredSize(); + boolean var7 = var2.getVerifyInputWhenFocusTarget(); + java.awt.Component var10 = var2.findComponentAt(10, 1); + var0.addKeyListener((java.awt.event.KeyListener)var2); + var2.repaint(100, (-1), (-1), 1); + SpaceWar.SpacePanel var17 = new SpaceWar.SpacePanel(); + java.awt.Color var18 = var17.getBackground(); + var17.repaint(); + java.awt.im.InputMethodRequests var20 = var17.getInputMethodRequests(); + java.awt.GraphicsConfiguration var21 = var17.getGraphicsConfiguration(); + var2.remove((java.awt.Component)var17); + java.awt.Font var23 = var17.getFont(); + boolean var25 = var17.requestFocus(false); + SpaceWar.SpacePanel var26 = new SpaceWar.SpacePanel(); + float var27 = var26.getAlignmentX(); + var26.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var32 = var26.getUI(); + java.awt.im.InputMethodRequests var33 = var26.getInputMethodRequests(); + SpaceWar.SpacePanel var34 = new SpaceWar.SpacePanel(); + float var35 = var34.getAlignmentX(); + var34.setVisible(false); + var34.nextFocus(); + var34.updateUI(); + var34.enableInputMethods(true); + var34.setSize((-1), 1); + SpaceWar.SpacePanel var45 = new SpaceWar.SpacePanel(); + var45.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var26.add((java.awt.Component)var34, (java.lang.Object)"SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + java.awt.ComponentOrientation var51 = var34.getComponentOrientation(); + java.beans.VetoableChangeListener[] var52 = var34.getVetoableChangeListeners(); + java.awt.Rectangle var53 = var34.bounds(); + var17.setNextFocusableComponent((java.awt.Component)var34); + var17.setSize(3, 10); + var17.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", 10L, 1L); + java.awt.Dimension var62 = var17.minimumSize(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertNull(var21); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var23); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var32); + + // Regression assertion (captures the current behavior of the code) + assertNull(var33); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var35 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var51); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var52); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var53); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var62); + + } + + public void test399() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test399"); + + + SpaceWar.Player var0 = new SpaceWar.Player(); + boolean var1 = var0.isRecovering(); + var0.setRigth(false); + int var4 = var0.getPowerLevel(); + var0.setRigth(false); + var0.increasePower((-1)); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0); + + } + + public void test400() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test400"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.setInheritsPopupMenu(false); + var0.setFocusTraversalPolicyProvider(true); + boolean var10 = var0.inside(25, 3); + var0.transferFocusBackward(); + float var12 = var0.getAlignmentY(); + java.awt.Rectangle var13 = var0.getBounds(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var13); + + } + + public void test401() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test401"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.updateUI(); + java.util.Locale var6 = var0.getLocale(); + var0.paintImmediately(25, 100, 3, 0); + SpaceWar.SpacePanel var12 = new SpaceWar.SpacePanel(); + float var13 = var12.getAlignmentX(); + var12.setVisible(false); + var12.setInheritsPopupMenu(false); + var12.setFocusTraversalPolicyProvider(true); + boolean var22 = var12.inside(25, 3); + SpaceWar.SpacePanel var23 = new SpaceWar.SpacePanel(); + float var24 = var23.getAlignmentX(); + var23.setVisible(false); + boolean var27 = var23.isDoubleBuffered(); + java.awt.dnd.DropTarget var28 = var23.getDropTarget(); + var23.show(false); + boolean var31 = var23.isPaintingForPrint(); + SpaceWar.SpacePanel var32 = new SpaceWar.SpacePanel(); + float var33 = var32.getAlignmentX(); + SpaceWar.SpacePanel var34 = new SpaceWar.SpacePanel(); + float var35 = var34.getAlignmentX(); + var34.setVisible(false); + java.awt.Dimension var38 = var34.getPreferredSize(); + boolean var39 = var34.getVerifyInputWhenFocusTarget(); + java.awt.Component var42 = var34.findComponentAt(10, 1); + var32.addKeyListener((java.awt.event.KeyListener)var34); + java.awt.Dimension var44 = var34.getMinimumSize(); + var23.setMinimumSize(var44); + var12.setPreferredSize(var44); + var0.setMinimumSize(var44); + SpaceWar.SpacePanel var48 = new SpaceWar.SpacePanel(); + float var49 = var48.getAlignmentX(); + var48.setVisible(false); + var48.nextFocus(); + var48.reshape((-1), 1, (-1), 10); + var48.disable(); + java.awt.Component var61 = var48.findComponentAt(0, (-1)); + SpaceWar.SpacePanel var62 = new SpaceWar.SpacePanel(); + var62.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + javax.swing.plaf.PanelUI var67 = var62.getUI(); + SpaceWar.SpacePanel var68 = new SpaceWar.SpacePanel(); + float var69 = var68.getAlignmentX(); + var68.setVisible(false); + var68.nextFocus(); + var68.repaint(1L); + SpaceWar.SpacePanel var75 = new SpaceWar.SpacePanel(); + float var76 = var75.getAlignmentX(); + var75.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var81 = new SpaceWar.SpacePanel(); + float var82 = var81.getAlignmentX(); + var81.setVisible(false); + java.awt.Dimension var85 = var81.getPreferredSize(); + var75.setMaximumSize(var85); + var68.setPreferredSize(var85); + var62.setMaximumSize(var85); + var48.setSize(var85); + java.awt.Container var90 = var48.getParent(); + java.awt.Dimension var91 = var48.getPreferredSize(); + java.awt.Dimension var92 = var0.getSize(var91); + java.awt.Dimension var93 = var0.getMinimumSize(); + var0.grabFocus(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var22 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var24 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var28); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var31 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var33 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var35 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var38); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var39 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var42); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var44); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var49 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNull(var61); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var67); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var69 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var76 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var82 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var85); + + // Regression assertion (captures the current behavior of the code) + assertNull(var90); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var91); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var92); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var93); + + } + + public void test402() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test402"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var1 = new SpaceWar.SpacePanel(); + java.awt.Color var2 = var1.getBackground(); + SpaceWar.SpacePanel var3 = new SpaceWar.SpacePanel(); + float var4 = var3.getAlignmentX(); + var3.setVisible(false); + var3.nextFocus(); + var3.updateUI(); + var3.enableInputMethods(true); + var0.add((java.awt.Component)var1, (java.lang.Object)true); + java.awt.Image var14 = var1.createImage(1, (-1)); + java.awt.event.MouseListener[] var15 = var1.getMouseListeners(); + java.awt.Color var16 = var1.getBackground(); + var1.grabFocus(); + javax.swing.JToolTip var18 = var1.createToolTip(); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + float var20 = var19.getAlignmentX(); + var19.setVisible(false); + boolean var23 = var19.isDoubleBuffered(); + java.awt.dnd.DropTarget var24 = var19.getDropTarget(); + var19.show(false); + boolean var27 = var19.isPaintingForPrint(); + SpaceWar.SpacePanel var28 = new SpaceWar.SpacePanel(); + float var29 = var28.getAlignmentX(); + var28.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var34 = var28.getMouseListeners(); + int var35 = var28.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var36 = var28.getInputMethodRequests(); + var19.addKeyListener((java.awt.event.KeyListener)var28); + SpaceWar.SpacePanel var38 = new SpaceWar.SpacePanel(); + float var39 = var38.getAlignmentX(); + var38.setVisible(false); + boolean var42 = var38.isDoubleBuffered(); + var38.list(); + float var44 = var38.getAlignmentY(); + boolean var45 = var28.isFocusCycleRoot((java.awt.Container)var38); + var38.firePropertyChange("", 1L, 1L); + java.awt.Component[] var50 = var38.getComponents(); + SpaceWar.Player var51 = new SpaceWar.Player(); + int var52 = var51.getPower(); + var51.setLeft(true); + var51.increasePower(0); + int var57 = var51.getRequiredPower(); + var1.putClientProperty((java.lang.Object)var50, (java.lang.Object)var57); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var2); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var29 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var34); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var35 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var36); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var39 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var42 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var44 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var45 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var50); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var52 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var57 == 1); + + } + + public void test403() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test403"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + boolean var4 = var0.inside(0, (-1)); + var0.transferFocusUpCycle(); + java.awt.Container var6 = var0.getParent(); + boolean var7 = var0.isMaximumSizeSet(); + var0.firePropertyChange("hi!", 594.7973940347722d, 5.0d); + java.awt.Image var14 = var0.createImage(3, 1); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var14); + + } + + public void test404() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test404"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.requestFocus(); + boolean var6 = var0.getInheritsPopupMenu(); + boolean var7 = var0.isFocusOwner(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + boolean var10 = var8.hasFocus(); + SpaceWar.SpacePanel var11 = new SpaceWar.SpacePanel(); + float var12 = var11.getAlignmentX(); + var11.setVisible(false); + var11.nextFocus(); + var11.reshape((-1), 1, (-1), 10); + var11.disable(); + java.awt.LayoutManager var22 = var11.getLayout(); + var11.setVisible(false); + var8.remove((java.awt.Component)var11); + java.awt.Container var26 = var11.getFocusCycleRootAncestor(); + boolean var27 = var11.isDoubleBuffered(); + boolean var28 = var11.isValidateRoot(); + SpaceWar.SpacePanel var29 = new SpaceWar.SpacePanel(); + float var30 = var29.getAlignmentX(); + var29.firePropertyChange("", (-1), 1); + java.awt.Rectangle var35 = var29.getVisibleRect(); + var11.computeVisibleRect(var35); + java.awt.Rectangle var37 = var11.getVisibleRect(); + var0.scrollRectToVisible(var37); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var28 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var30 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var35); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var37); + + } + + public void test405() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test405"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + SpaceWar.SpacePanel var4 = new SpaceWar.SpacePanel(); + java.awt.Color var5 = var4.getBackground(); + var0.setForeground(var5); + SpaceWar.SpacePanel var7 = new SpaceWar.SpacePanel(); + float var8 = var7.getAlignmentX(); + var7.setVisible(false); + boolean var11 = var7.isDoubleBuffered(); + java.awt.dnd.DropTarget var12 = var7.getDropTarget(); + var7.show(false); + java.awt.Rectangle var15 = var7.getVisibleRect(); + var0.repaint(var15); + java.awt.FocusTraversalPolicy var17 = var0.getFocusTraversalPolicy(); + SpaceWar.SpacePanel var18 = new SpaceWar.SpacePanel(); + float var19 = var18.getAlignmentX(); + var18.firePropertyChange("", (-1), 1); + boolean var24 = var18.isFocusOwner(); + SpaceWar.SpacePanel var26 = new SpaceWar.SpacePanel(); + float var27 = var26.getAlignmentX(); + var26.setVisible(false); + java.awt.Dimension var30 = var26.getPreferredSize(); + java.awt.Toolkit var31 = var26.getToolkit(); + SpaceWar.SpacePanel var32 = new SpaceWar.SpacePanel(); + var32.setName(""); + int var35 = var32.getX(); + SpaceWar.SpacePanel var36 = new SpaceWar.SpacePanel(); + float var37 = var36.getAlignmentX(); + var36.setVisible(false); + var36.nextFocus(); + SpaceWar.SpacePanel var41 = new SpaceWar.SpacePanel(); + float var42 = var41.getAlignmentX(); + var41.setVisible(false); + SpaceWar.SpacePanel var45 = new SpaceWar.SpacePanel(); + java.awt.Color var46 = var45.getBackground(); + var41.setForeground(var46); + var36.setBackground(var46); + var32.setBackground(var46); + var26.setForeground(var46); + var18.putClientProperty((java.lang.Object)(byte)100, (java.lang.Object)var46); + var0.setBackground(var46); + javax.swing.JToolTip var53 = var0.createToolTip(); + var53.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, true); + var53.setBounds(100, 3, 400, 24); + javax.swing.TransferHandler var63 = var53.getTransferHandler(); + boolean var64 = var53.hasFocus(); + boolean var65 = var53.getVerifyInputWhenFocusTarget(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var24 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var30); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var31); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var35 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var42 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var46); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var53); + + // Regression assertion (captures the current behavior of the code) + assertNull(var63); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var64 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var65 == true); + + } + + public void test406() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test406"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.repaint(1L); + SpaceWar.SpacePanel var7 = new SpaceWar.SpacePanel(); + float var8 = var7.getAlignmentX(); + var7.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var13 = new SpaceWar.SpacePanel(); + float var14 = var13.getAlignmentX(); + var13.setVisible(false); + java.awt.Dimension var17 = var13.getPreferredSize(); + var7.setMaximumSize(var17); + var0.setPreferredSize(var17); + var0.enable(); + java.awt.peer.ComponentPeer var21 = var0.getPeer(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertNull(var21); + + } + + public void test407() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test407"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.updateUI(); + var0.enableInputMethods(true); + java.awt.Point var8 = var0.location(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.setVisible(false); + var9.nextFocus(); + java.awt.Component var14 = var0.add((java.awt.Component)var9); + java.awt.Container var15 = var0.getParent(); + SpaceWar.SpacePanel var16 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var17 = new SpaceWar.SpacePanel(); + java.awt.Color var18 = var17.getBackground(); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + float var20 = var19.getAlignmentX(); + var19.setVisible(false); + var19.nextFocus(); + var19.updateUI(); + var19.enableInputMethods(true); + var16.add((java.awt.Component)var17, (java.lang.Object)true); + boolean var28 = var16.isMinimumSizeSet(); + java.awt.event.HierarchyListener[] var29 = var16.getHierarchyListeners(); + SpaceWar.SpacePanel var30 = new SpaceWar.SpacePanel(); + float var31 = var30.getAlignmentX(); + var30.setVisible(false); + SpaceWar.SpacePanel var34 = new SpaceWar.SpacePanel(); + java.awt.Color var35 = var34.getBackground(); + var30.setForeground(var35); + SpaceWar.SpacePanel var37 = new SpaceWar.SpacePanel(); + float var38 = var37.getAlignmentX(); + var37.setVisible(false); + boolean var41 = var37.isDoubleBuffered(); + java.awt.dnd.DropTarget var42 = var37.getDropTarget(); + var37.show(false); + java.awt.Rectangle var45 = var37.getVisibleRect(); + var30.repaint(var45); + java.awt.FocusTraversalPolicy var47 = var30.getFocusTraversalPolicy(); + java.awt.im.InputMethodRequests var48 = var30.getInputMethodRequests(); + var30.layout(); + boolean var50 = var30.isFocusTraversalPolicyProvider(); + java.lang.Object var51 = var16.getClientProperty((java.lang.Object)var50); + java.awt.Dimension var52 = var16.getSize(); + var16.removeNotify(); + java.awt.Cursor var54 = var16.getCursor(); + SpaceWar.SpacePanel var55 = new SpaceWar.SpacePanel(); + java.awt.Color var56 = var55.getBackground(); + boolean var59 = var55.inside(0, (-1)); + SpaceWar.SpacePanel var60 = new SpaceWar.SpacePanel(); + float var61 = var60.getAlignmentX(); + var60.setVisible(false); + SpaceWar.SpacePanel var64 = new SpaceWar.SpacePanel(); + java.awt.Color var65 = var64.getBackground(); + var60.setForeground(var65); + var55.setForeground(var65); + java.awt.image.VolatileImage var70 = var55.createVolatileImage(400, (-1)); + java.awt.LayoutManager var71 = var55.getLayout(); + var16.setLayout(var71); + var0.setNextFocusableComponent((java.awt.Component)var16); + java.awt.Dimension var74 = var16.preferredSize(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var28 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var29); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var31 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var35); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var38 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var41 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var42); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var45); + + // Regression assertion (captures the current behavior of the code) + assertNull(var47); + + // Regression assertion (captures the current behavior of the code) + assertNull(var48); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var50 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var51); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var52); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var54); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var56); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var59 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var61 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var65); + + // Regression assertion (captures the current behavior of the code) + assertNull(var70); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var71); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var74); + + } + + public void test408() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test408"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + java.awt.im.InputMethodRequests var3 = var0.getInputMethodRequests(); + var0.setDoubleBuffered(true); + var0.show(false); + var0.setAlignmentY(100.0f); + SpaceWar.SpacePanel var10 = new SpaceWar.SpacePanel(); + float var11 = var10.getAlignmentX(); + var10.setVisible(false); + SpaceWar.SpacePanel var14 = new SpaceWar.SpacePanel(); + java.awt.Color var15 = var14.getBackground(); + var10.setForeground(var15); + SpaceWar.SpacePanel var17 = new SpaceWar.SpacePanel(); + float var18 = var17.getAlignmentX(); + var17.setVisible(false); + boolean var21 = var17.isDoubleBuffered(); + java.awt.dnd.DropTarget var22 = var17.getDropTarget(); + var17.show(false); + java.awt.Rectangle var25 = var17.getVisibleRect(); + var10.repaint(var25); + java.awt.FocusTraversalPolicy var27 = var10.getFocusTraversalPolicy(); + java.awt.im.InputMethodRequests var28 = var10.getInputMethodRequests(); + var10.layout(); + boolean var30 = var10.isFocusTraversalPolicyProvider(); + java.awt.Insets var31 = var10.insets(); + java.awt.Dimension var32 = var10.getMinimumSize(); + java.awt.Dimension var33 = var0.getSize(var32); + var0.setDoubleBuffered(false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var25); + + // Regression assertion (captures the current behavior of the code) + assertNull(var27); + + // Regression assertion (captures the current behavior of the code) + assertNull(var28); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var30 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var31); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var32); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var33); + + } + + public void test409() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test409"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.setInheritsPopupMenu(false); + boolean var6 = var0.isDoubleBuffered(); + boolean var7 = var0.isMinimumSizeSet(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var14 = new SpaceWar.SpacePanel(); + float var15 = var14.getAlignmentX(); + var14.setVisible(false); + java.awt.Dimension var18 = var14.getPreferredSize(); + var8.setMaximumSize(var18); + boolean var20 = var8.getVerifyInputWhenFocusTarget(); + javax.accessibility.AccessibleContext var21 = var8.getAccessibleContext(); + boolean var22 = var8.isDoubleBuffered(); + java.awt.Rectangle var23 = var8.getVisibleRect(); + var0.setBounds(var23); + SpaceWar.SpacePanel var25 = new SpaceWar.SpacePanel(); + var25.setName(""); + var25.enable(true); + var25.enable(); + java.awt.Point var31 = var25.location(); + var25.repaint(0, 3, (-1), 1); + java.awt.Component var39 = var25.findComponentAt(0, 25); + var0.setNextFocusableComponent((java.awt.Component)var25); + boolean var41 = var0.isPaintingForPrint(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var21); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var22 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var23); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var31); + + // Regression assertion (captures the current behavior of the code) + assertNull(var39); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var41 == false); + + } + + public void test410() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test410"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var6 = var0.getUI(); + java.awt.im.InputMethodRequests var7 = var0.getInputMethodRequests(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + var8.nextFocus(); + var8.updateUI(); + var8.enableInputMethods(true); + var8.setSize((-1), 1); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + var19.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var0.add((java.awt.Component)var8, (java.lang.Object)"SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + SpaceWar.SpacePanel var25 = new SpaceWar.SpacePanel(); + float var26 = var25.getAlignmentX(); + var25.setVisible(false); + java.awt.Dimension var29 = var25.getPreferredSize(); + java.awt.Toolkit var30 = var25.getToolkit(); + java.awt.Toolkit var31 = var25.getToolkit(); + java.awt.Component var32 = var8.add((java.awt.Component)var25); + var8.setDebugGraphicsOptions(0); + boolean var35 = var8.getVerifyInputWhenFocusTarget(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var29); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var30); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var31); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var32); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var35 == true); + + } + + public void test411() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test411"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.updateUI(); + var0.enableInputMethods(true); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + boolean var10 = var8.hasFocus(); + java.awt.Insets var11 = var8.getInsets(); + java.awt.Insets var12 = var0.getInsets(var11); + javax.swing.JRootPane var13 = var0.getRootPane(); + int var14 = var0.getY(); + javax.swing.JToolTip var15 = var0.createToolTip(); + var15.removeAll(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + } + + public void test412() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test412"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + java.awt.im.InputMethodRequests var3 = var0.getInputMethodRequests(); + int var4 = var0.countComponents(); + java.awt.event.ComponentListener[] var5 = var0.getComponentListeners(); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + float var7 = var6.getAlignmentX(); + var6.removeNotify(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.setVisible(false); + boolean var13 = var9.isDoubleBuffered(); + var9.list(); + float var15 = var9.getAlignmentY(); + java.awt.Insets var16 = var9.getInsets(); + java.awt.Insets var17 = var6.getInsets(var16); + java.awt.Insets var18 = var0.getInsets(var17); + java.awt.event.ComponentListener[] var19 = var0.getComponentListeners(); + java.lang.String var20 = var0.toString(); + var0.firePropertyChange("SpaceWar.SpacePanel[,-1,100,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=265,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", (byte)0, (byte)100); + var0.setVerifyInputWhenFocusTarget(true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var20 + "' != '" + "SpaceWar.SpacePanel[,0,0,0var20,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"+ "'", var20.equals("SpaceWar.SpacePanel[,0,0,0var20,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]")); + + } + + public void test413() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test413"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + var0.list(); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + float var7 = var6.getAlignmentX(); + var6.setVisible(false); + boolean var10 = var6.isDoubleBuffered(); + java.awt.dnd.DropTarget var11 = var6.getDropTarget(); + var6.show(false); + java.awt.Rectangle var14 = var6.getVisibleRect(); + java.awt.Rectangle var15 = var0.getBounds(var14); + javax.swing.JToolTip var16 = var0.createToolTip(); + var0.firePropertyChange("", false, false); + var0.setFocusTraversalKeysEnabled(false); + boolean var23 = var0.isValid(); + SpaceWar.SpacePanel var24 = new SpaceWar.SpacePanel(); + float var25 = var24.getAlignmentX(); + var24.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var30 = var24.getMouseListeners(); + int var31 = var24.getDebugGraphicsOptions(); + java.awt.Color var32 = var24.getBackground(); + var0.setForeground(var32); + java.awt.Color var34 = var0.getForeground(); + boolean var35 = var0.isRequestFocusEnabled(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var30); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var31 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var32); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var34); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var35 == true); + + } + + public void test414() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test414"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var1 = new SpaceWar.SpacePanel(); + java.awt.Color var2 = var1.getBackground(); + SpaceWar.SpacePanel var3 = new SpaceWar.SpacePanel(); + float var4 = var3.getAlignmentX(); + var3.setVisible(false); + var3.nextFocus(); + var3.updateUI(); + var3.enableInputMethods(true); + var0.add((java.awt.Component)var1, (java.lang.Object)true); + boolean var12 = var0.isMinimumSizeSet(); + java.awt.event.HierarchyListener[] var13 = var0.getHierarchyListeners(); + SpaceWar.SpacePanel var14 = new SpaceWar.SpacePanel(); + float var15 = var14.getAlignmentX(); + var14.setVisible(false); + SpaceWar.SpacePanel var18 = new SpaceWar.SpacePanel(); + java.awt.Color var19 = var18.getBackground(); + var14.setForeground(var19); + SpaceWar.SpacePanel var21 = new SpaceWar.SpacePanel(); + float var22 = var21.getAlignmentX(); + var21.setVisible(false); + boolean var25 = var21.isDoubleBuffered(); + java.awt.dnd.DropTarget var26 = var21.getDropTarget(); + var21.show(false); + java.awt.Rectangle var29 = var21.getVisibleRect(); + var14.repaint(var29); + java.awt.FocusTraversalPolicy var31 = var14.getFocusTraversalPolicy(); + java.awt.im.InputMethodRequests var32 = var14.getInputMethodRequests(); + var14.layout(); + boolean var34 = var14.isFocusTraversalPolicyProvider(); + java.lang.Object var35 = var0.getClientProperty((java.lang.Object)var34); + boolean var36 = var0.isFocusTraversable(); + var0.firePropertyChange("SpaceWar.SpacePanel[,-1,1,-1x10,invalid,hidden,disabled,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", 100.0f, 0.5f); + java.awt.Graphics var41 = var0.getGraphics(); + var0.repaint(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var2); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var22 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var29); + + // Regression assertion (captures the current behavior of the code) + assertNull(var31); + + // Regression assertion (captures the current behavior of the code) + assertNull(var32); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var34 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var35); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var36 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var41); + + } + + public void test415() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test415"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var1 = new SpaceWar.SpacePanel(); + java.awt.Color var2 = var1.getBackground(); + SpaceWar.SpacePanel var3 = new SpaceWar.SpacePanel(); + float var4 = var3.getAlignmentX(); + var3.setVisible(false); + var3.nextFocus(); + var3.updateUI(); + var3.enableInputMethods(true); + var0.add((java.awt.Component)var1, (java.lang.Object)true); + boolean var12 = var0.isMinimumSizeSet(); + java.awt.event.HierarchyListener[] var13 = var0.getHierarchyListeners(); + int var14 = var0.getComponentCount(); + SpaceWar.SpacePanel var15 = new SpaceWar.SpacePanel(); + java.awt.Color var16 = var15.getBackground(); + var15.repaint(); + var15.setRequestFocusEnabled(false); + var15.removeAll(); + var0.setNextFocusableComponent((java.awt.Component)var15); + java.awt.event.KeyListener[] var22 = var15.getKeyListeners(); + SpaceWar.SpacePanel var23 = new SpaceWar.SpacePanel(); + float var24 = var23.getAlignmentX(); + var23.setVisible(false); + var23.setInheritsPopupMenu(false); + var23.setFocusTraversalPolicyProvider(true); + SpaceWar.SpacePanel var31 = new SpaceWar.SpacePanel(); + java.awt.Color var32 = var31.getBackground(); + var31.repaint(); + java.awt.im.InputMethodRequests var34 = var31.getInputMethodRequests(); + java.awt.GraphicsConfiguration var35 = var31.getGraphicsConfiguration(); + java.awt.Component var36 = var23.add((java.awt.Component)var31); + java.awt.Rectangle var37 = var23.getBounds(); + var15.scrollRectToVisible(var37); + var15.removeNotify(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var2); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == 1); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var24 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var32); + + // Regression assertion (captures the current behavior of the code) + assertNull(var34); + + // Regression assertion (captures the current behavior of the code) + assertNull(var35); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var36); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var37); + + } + + public void test416() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test416"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + var0.show(false); + boolean var8 = var0.isPaintingForPrint(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var15 = var9.getMouseListeners(); + int var16 = var9.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var17 = var9.getInputMethodRequests(); + var0.addKeyListener((java.awt.event.KeyListener)var9); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + float var20 = var19.getAlignmentX(); + var19.setVisible(false); + boolean var23 = var19.isDoubleBuffered(); + var19.list(); + float var25 = var19.getAlignmentY(); + boolean var26 = var9.isFocusCycleRoot((java.awt.Container)var19); + var19.firePropertyChange("", 1L, 1L); + var19.setVerifyInputWhenFocusTarget(true); + SpaceWar.SpacePanel var33 = new SpaceWar.SpacePanel(); + var33.setName(""); + java.awt.Dimension var36 = var33.minimumSize(); + boolean var37 = var33.isDoubleBuffered(); + SpaceWar.SpacePanel var38 = new SpaceWar.SpacePanel(); + float var39 = var38.getAlignmentX(); + SpaceWar.SpacePanel var40 = new SpaceWar.SpacePanel(); + float var41 = var40.getAlignmentX(); + var40.setVisible(false); + java.awt.Dimension var44 = var40.getPreferredSize(); + boolean var45 = var40.getVerifyInputWhenFocusTarget(); + java.awt.Component var48 = var40.findComponentAt(10, 1); + var38.addKeyListener((java.awt.event.KeyListener)var40); + var40.repaint(100, (-1), (-1), 1); + SpaceWar.SpacePanel var55 = new SpaceWar.SpacePanel(); + java.awt.Color var56 = var55.getBackground(); + var55.repaint(); + java.awt.im.InputMethodRequests var58 = var55.getInputMethodRequests(); + java.awt.GraphicsConfiguration var59 = var55.getGraphicsConfiguration(); + var40.remove((java.awt.Component)var55); + java.awt.Font var61 = var55.getFont(); + java.awt.FontMetrics var62 = var33.getFontMetrics(var61); + java.awt.FontMetrics var63 = var19.getFontMetrics(var61); + java.awt.Component[] var64 = var19.getComponents(); + boolean var65 = var19.isEnabled(); + float var66 = var19.getAlignmentX(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var36); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var39 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var41 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var44); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var45 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var48); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var56); + + // Regression assertion (captures the current behavior of the code) + assertNull(var58); + + // Regression assertion (captures the current behavior of the code) + assertNull(var59); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var61); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var62); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var63); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var64); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var65 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var66 == 0.5f); + + } + + public void test417() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test417"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + var0.enable(false); + boolean var7 = var0.getFocusTraversalKeysEnabled(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + java.awt.Dimension var12 = var8.getPreferredSize(); + java.awt.Toolkit var13 = var8.getToolkit(); + boolean var14 = var8.isFocusable(); + javax.swing.KeyStroke[] var15 = var8.getRegisteredKeyStrokes(); + SpaceWar.SpacePanel var16 = new SpaceWar.SpacePanel(); + float var17 = var16.getAlignmentX(); + SpaceWar.SpacePanel var18 = new SpaceWar.SpacePanel(); + float var19 = var18.getAlignmentX(); + var18.setVisible(false); + java.awt.Dimension var22 = var18.getPreferredSize(); + boolean var23 = var18.getVerifyInputWhenFocusTarget(); + java.awt.Component var26 = var18.findComponentAt(10, 1); + var16.addKeyListener((java.awt.event.KeyListener)var18); + var18.repaint(100, (-1), (-1), 1); + boolean var33 = var8.isAncestorOf((java.awt.Component)var18); + var0.addKeyListener((java.awt.event.KeyListener)var18); + var18.hide(); + java.awt.event.MouseWheelListener[] var36 = var18.getMouseWheelListeners(); + var18.setLocation((-1), 500); + var18.nextFocus(); + java.awt.Rectangle var41 = var18.bounds(); + var18.repaint(400, 3, (-1), 0); + var18.updateUI(); + var18.transferFocusUpCycle(); + java.awt.Rectangle var49 = var18.getVisibleRect(); + boolean var50 = var18.isValid(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var33 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var36); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var41); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var49); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var50 == false); + + } + + public void test418() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test418"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + float var7 = var6.getAlignmentX(); + var6.setVisible(false); + SpaceWar.SpacePanel var10 = new SpaceWar.SpacePanel(); + java.awt.Color var11 = var10.getBackground(); + var6.setForeground(var11); + var0.setBackground(var11); + var0.grabFocus(); + SpaceWar.SpacePanel var15 = new SpaceWar.SpacePanel(); + float var16 = var15.getAlignmentX(); + var15.setVisible(false); + boolean var19 = var15.isDoubleBuffered(); + java.awt.dnd.DropTarget var20 = var15.getDropTarget(); + boolean var21 = var15.isFocusCycleRoot(); + SpaceWar.SpacePanel var22 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var23 = new SpaceWar.SpacePanel(); + java.awt.Color var24 = var23.getBackground(); + SpaceWar.SpacePanel var25 = new SpaceWar.SpacePanel(); + float var26 = var25.getAlignmentX(); + var25.setVisible(false); + var25.nextFocus(); + var25.updateUI(); + var25.enableInputMethods(true); + var22.add((java.awt.Component)var23, (java.lang.Object)true); + java.awt.Dimension var34 = var23.getPreferredSize(); + var15.setSize(var34); + var0.setMaximumSize(var34); + var0.enable(); + SpaceWar.SpacePanel var38 = new SpaceWar.SpacePanel(); + float var39 = var38.getAlignmentX(); + var38.setVisible(false); + var38.nextFocus(); + var38.reshape((-1), 1, (-1), 10); + var38.disable(); + java.awt.LayoutManager var49 = var38.getLayout(); + boolean var52 = var38.contains((-1), 0); + SpaceWar.SpacePanel var53 = new SpaceWar.SpacePanel(); + float var54 = var53.getAlignmentX(); + var53.setVisible(false); + var53.nextFocus(); + var53.updateUI(); + var53.enableInputMethods(true); + var53.setSize((-1), 1); + java.awt.Component var64 = var38.add((java.awt.Component)var53); + SpaceWar.SpacePanel var65 = new SpaceWar.SpacePanel(); + float var66 = var65.getAlignmentX(); + var65.setVisible(false); + var65.nextFocus(); + var65.updateUI(); + var65.enableInputMethods(true); + java.lang.String var73 = var65.toString(); + java.awt.FocusTraversalPolicy var74 = var65.getFocusTraversalPolicy(); + var53.removeKeyListener((java.awt.event.KeyListener)var65); + var0.addKeyListener((java.awt.event.KeyListener)var65); + java.awt.Dimension var77 = var0.getPreferredSize(); + boolean var78 = var0.isShowing(); + javax.swing.InputMap var79 = var0.getInputMap(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var34); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var39 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var49); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var52 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var54 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var64); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var66 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var73 + "' != '" + "SpaceWar.SpacePanel[,0,0,0var73,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"+ "'", var73.equals("SpaceWar.SpacePanel[,0,0,0var73,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]")); + + // Regression assertion (captures the current behavior of the code) + assertNull(var74); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var77); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var78 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var79); + + } + + public void test419() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test419"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + float var7 = var6.getAlignmentX(); + var6.setVisible(false); + SpaceWar.SpacePanel var10 = new SpaceWar.SpacePanel(); + java.awt.Color var11 = var10.getBackground(); + var6.setForeground(var11); + var0.setBackground(var11); + java.awt.Point var14 = var0.location(); + java.awt.Image var17 = var0.createImage((-1), 10); + var0.setInheritsPopupMenu(true); + int var20 = var0.getWidth(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == 0); + + } + + public void test420() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test420"); + + + SpaceWar.Enemy var2 = new SpaceWar.Enemy(0, 10); + int var3 = var2.getRank(); + int var4 = var2.getR(); + int var5 = var2.getType(); + int var6 = var2.getRank(); + var2.hit(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == 10); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == 10); + + } + + public void test421() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test421"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.reshape((-1), 1, (-1), 10); + var0.disable(); + java.awt.LayoutManager var11 = var0.getLayout(); + java.awt.Container var12 = var0.getParent(); + java.lang.String var13 = var0.getToolTipText(); + java.awt.Dimension var14 = var0.preferredSize(); + java.awt.LayoutManager var15 = var0.getLayout(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + } + + public void test422() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test422"); + + + SpaceWar.Player var0 = new SpaceWar.Player(); + int var1 = var0.getPower(); + var0.setLeft(true); + var0.increasePower(0); + int var6 = var0.getR(); + var0.setUp(false); + int var9 = var0.getRequiredPower(); + var0.loseLife(); + int var11 = var0.getPowerLevel(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == 25); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 1); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == 0); + + } + + public void test423() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test423"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + var0.setRequestFocusEnabled(false); + var0.setIgnoreRepaint(false); + java.lang.String var7 = var0.toString(); + var0.repaint(1L, 400, 25, (-1), 25); + var0.show(); + var0.transferFocusUpCycle(); + javax.swing.JPopupMenu var16 = var0.getComponentPopupMenu(); + java.awt.Rectangle var17 = var0.bounds(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var7 + "' != '" + "SpaceWar.SpacePanel[,0,0,0var7,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"+ "'", var7.equals("SpaceWar.SpacePanel[,0,0,0var7,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]")); + + // Regression assertion (captures the current behavior of the code) + assertNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var17); + + } + + public void test424() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test424"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + var0.setRequestFocusEnabled(false); + var0.reshape(100, 0, 100, 0); + var0.requestFocus(); + var0.firePropertyChange("hi!", '4', ' '); + java.awt.Point var15 = var0.getLocation(); + java.awt.Dimension var16 = var0.size(); + java.awt.Image var19 = var0.createImage((-1), (-1)); + java.awt.event.ComponentListener[] var20 = var0.getComponentListeners(); + java.awt.peer.ComponentPeer var21 = var0.getPeer(); + java.awt.Component var24 = var0.getComponentAt(2, 399); + SpaceWar.SpacePanel var25 = new SpaceWar.SpacePanel(); + java.awt.Color var26 = var25.getBackground(); + boolean var29 = var25.inside(0, (-1)); + var25.transferFocusUpCycle(); + java.awt.Container var31 = var25.getParent(); + boolean var32 = var25.isMaximumSizeSet(); + SpaceWar.SpacePanel var33 = new SpaceWar.SpacePanel(); + var33.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + javax.swing.plaf.PanelUI var38 = var33.getUI(); + java.awt.Color var39 = var33.getBackground(); + var33.removeAll(); + var33.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", (short)(-1), (short)100); + java.awt.GraphicsConfiguration var45 = var33.getGraphicsConfiguration(); + SpaceWar.SpacePanel var46 = new SpaceWar.SpacePanel(); + float var47 = var46.getAlignmentX(); + SpaceWar.SpacePanel var48 = new SpaceWar.SpacePanel(); + float var49 = var48.getAlignmentX(); + var48.setVisible(false); + java.awt.Dimension var52 = var48.getPreferredSize(); + boolean var53 = var48.getVerifyInputWhenFocusTarget(); + java.awt.Component var56 = var48.findComponentAt(10, 1); + var46.addKeyListener((java.awt.event.KeyListener)var48); + var48.repaint(100, (-1), (-1), 1); + java.awt.image.ColorModel var63 = var48.getColorModel(); + boolean var64 = var48.isFocusTraversalPolicyProvider(); + var48.show(false); + boolean var67 = var48.isManagingFocus(); + SpaceWar.SpacePanel var68 = new SpaceWar.SpacePanel(); + java.awt.Color var69 = var68.getBackground(); + var68.repaint(); + var68.setRequestFocusEnabled(false); + var68.reshape(100, 0, 100, 0); + var68.requestFocus(); + java.awt.Rectangle var79 = var68.getVisibleRect(); + java.awt.Rectangle var80 = var68.getBounds(); + java.awt.im.InputMethodRequests var81 = var68.getInputMethodRequests(); + boolean var82 = var68.requestFocusInWindow(); + java.awt.Point var84 = var68.getMousePosition(false); + var68.setDebugGraphicsOptions(1); + java.awt.Graphics var87 = var68.getGraphics(); + var48.paint(var87); + var33.paintAll(var87); + var25.printComponents(var87); + var0.paintAll(var87); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertNull(var21); + + // Regression assertion (captures the current behavior of the code) + assertNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var29 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var31); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var32 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var38); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var39); + + // Regression assertion (captures the current behavior of the code) + assertNull(var45); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var47 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var49 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var52); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var53 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var56); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var63); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var64 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var67 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var69); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var79); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var80); + + // Regression assertion (captures the current behavior of the code) + assertNull(var81); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var82 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var84); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var87); + + } + + public void test425() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test425"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + java.awt.Dimension var4 = var0.getPreferredSize(); + boolean var5 = var0.getVerifyInputWhenFocusTarget(); + java.awt.Component var8 = var0.findComponentAt(10, 1); + boolean var9 = var0.requestDefaultFocus(); + var0.setVerifyInputWhenFocusTarget(true); + var0.setFocusTraversalKeysEnabled(false); + javax.swing.event.AncestorListener[] var14 = var0.getAncestorListeners(); + SpaceWar.SpacePanel var15 = new SpaceWar.SpacePanel(); + float var16 = var15.getAlignmentX(); + var15.setVisible(false); + boolean var19 = var15.isDoubleBuffered(); + var15.list(); + SpaceWar.SpacePanel var21 = new SpaceWar.SpacePanel(); + float var22 = var21.getAlignmentX(); + var21.setVisible(false); + boolean var25 = var21.isDoubleBuffered(); + java.awt.dnd.DropTarget var26 = var21.getDropTarget(); + var21.show(false); + java.awt.Rectangle var29 = var21.getVisibleRect(); + java.awt.Rectangle var30 = var15.getBounds(var29); + javax.swing.JToolTip var31 = var15.createToolTip(); + java.awt.Dimension var32 = var15.minimumSize(); + boolean var34 = var15.requestFocus(false); + java.awt.Dimension var35 = var15.getMaximumSize(); + var0.setPreferredSize(var35); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var4); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var22 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var29); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var30); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var31); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var32); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var34 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var35); + + } + + public void test426() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test426"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + var0.show(false); + boolean var8 = var0.isPaintingForPrint(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var15 = var9.getMouseListeners(); + int var16 = var9.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var17 = var9.getInputMethodRequests(); + var0.addKeyListener((java.awt.event.KeyListener)var9); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + float var20 = var19.getAlignmentX(); + var19.setVisible(false); + boolean var23 = var19.isDoubleBuffered(); + var19.list(); + float var25 = var19.getAlignmentY(); + boolean var26 = var9.isFocusCycleRoot((java.awt.Container)var19); + var19.firePropertyChange("", 1L, 1L); + var19.setVerifyInputWhenFocusTarget(true); + var19.resize(25, 400); + java.awt.event.ComponentListener[] var36 = var19.getComponentListeners(); + var19.setAlignmentX(10.0f); + var19.setDoubleBuffered(false); + boolean var43 = var19.inside(0, 3); + var19.show(true); + var19.setOpaque(true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var36); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var43 == true); + + } + + public void test427() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test427"); + + + SpaceWar.Explosion var4 = new SpaceWar.Explosion(67.31525280771399d, 261.2028294988706d, 25, 99); + + } + + public void test428() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test428"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + java.awt.Dimension var4 = var0.getPreferredSize(); + boolean var5 = var0.getVerifyInputWhenFocusTarget(); + java.awt.Component var8 = var0.findComponentAt(10, 1); + boolean var9 = var0.requestDefaultFocus(); + boolean var10 = var0.isPaintingTile(); + SpaceWar.SpacePanel var11 = new SpaceWar.SpacePanel(); + var11.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + javax.swing.plaf.PanelUI var16 = var11.getUI(); + java.awt.Color var17 = var11.getBackground(); + var0.addKeyListener((java.awt.event.KeyListener)var11); + int var19 = var0.getDebugGraphicsOptions(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var4); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == 0); + + } + + public void test429() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test429"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.removeNotify(); + SpaceWar.SpacePanel var3 = new SpaceWar.SpacePanel(); + float var4 = var3.getAlignmentX(); + var3.setVisible(false); + boolean var7 = var3.isDoubleBuffered(); + var3.list(); + float var9 = var3.getAlignmentY(); + java.awt.Insets var10 = var3.getInsets(); + java.awt.Insets var11 = var0.getInsets(var10); + boolean var12 = var0.isDoubleBuffered(); + java.beans.PropertyChangeListener[] var14 = var0.getPropertyChangeListeners("SpaceWar.SpacePanel[,0,0,0x0,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + } + + public void test430() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test430"); + + + SpaceWar.Enemy var2 = new SpaceWar.Enemy(0, 100); + boolean var3 = var2.isDead(); + var2.update(); + double var5 = var2.getX(); + java.awt.image.BufferedImage var7 = var2.loadImg("PanelUI"); + double var8 = var2.getY(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == 585.574920724042d); + + // Regression assertion (captures the current behavior of the code) + assertNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 0.0d); + + } + + public void test431() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test431"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var6 = var0.getUI(); + java.awt.im.InputMethodRequests var7 = var0.getInputMethodRequests(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + var8.nextFocus(); + var8.updateUI(); + var8.enableInputMethods(true); + var8.setSize((-1), 1); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + var19.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var0.add((java.awt.Component)var8, (java.lang.Object)"SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + SpaceWar.SpacePanel var25 = new SpaceWar.SpacePanel(); + float var26 = var25.getAlignmentX(); + var25.setVisible(false); + java.awt.Dimension var29 = var25.getPreferredSize(); + java.awt.Toolkit var30 = var25.getToolkit(); + java.awt.Toolkit var31 = var25.getToolkit(); + java.awt.Component var32 = var8.add((java.awt.Component)var25); + var8.setDebugGraphicsOptions(0); + var8.setVerifyInputWhenFocusTarget(false); + SpaceWar.SpacePanel var37 = new SpaceWar.SpacePanel(); + float var38 = var37.getAlignmentX(); + var37.setVisible(false); + boolean var41 = var37.isDoubleBuffered(); + var37.list(); + float var43 = var37.getAlignmentY(); + java.awt.Insets var44 = var37.getInsets(); + SpaceWar.SpacePanel var45 = new SpaceWar.SpacePanel(); + float var46 = var45.getAlignmentX(); + var45.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var51 = new SpaceWar.SpacePanel(); + float var52 = var51.getAlignmentX(); + var51.setVisible(false); + java.awt.Dimension var55 = var51.getPreferredSize(); + var45.setMaximumSize(var55); + java.awt.Dimension var57 = var37.getSize(var55); + var8.setPreferredSize(var57); + java.awt.event.MouseWheelListener[] var59 = var8.getMouseWheelListeners(); + java.awt.im.InputMethodRequests var60 = var8.getInputMethodRequests(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var29); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var30); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var31); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var32); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var38 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var41 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var43 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var44); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var46 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var52 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var55); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var57); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var59); + + // Regression assertion (captures the current behavior of the code) + assertNull(var60); + + } + + public void test432() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test432"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + java.awt.Dimension var4 = var0.getPreferredSize(); + java.awt.Toolkit var5 = var0.getToolkit(); + boolean var6 = var0.isFocusable(); + javax.swing.KeyStroke[] var7 = var0.getRegisteredKeyStrokes(); + var0.setFocusCycleRoot(false); + SpaceWar.SpacePanel var10 = new SpaceWar.SpacePanel(); + java.awt.Color var11 = var10.getBackground(); + var10.repaint(); + javax.swing.plaf.PanelUI var13 = var10.getUI(); + SpaceWar.SpacePanel var14 = new SpaceWar.SpacePanel(); + float var15 = var14.getAlignmentX(); + var14.setVisible(false); + boolean var18 = var14.isDoubleBuffered(); + java.awt.dnd.DropTarget var19 = var14.getDropTarget(); + var14.show(false); + boolean var22 = var14.isPaintingForPrint(); + SpaceWar.SpacePanel var23 = new SpaceWar.SpacePanel(); + float var24 = var23.getAlignmentX(); + var23.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var29 = var23.getMouseListeners(); + int var30 = var23.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var31 = var23.getInputMethodRequests(); + var14.addKeyListener((java.awt.event.KeyListener)var23); + SpaceWar.SpacePanel var33 = new SpaceWar.SpacePanel(); + float var34 = var33.getAlignmentX(); + var33.setVisible(false); + boolean var37 = var33.isDoubleBuffered(); + var33.list(); + float var39 = var33.getAlignmentY(); + boolean var40 = var23.isFocusCycleRoot((java.awt.Container)var33); + SpaceWar.SpacePanel var42 = new SpaceWar.SpacePanel(); + float var43 = var42.getAlignmentX(); + var42.setVisible(false); + var42.nextFocus(); + var42.updateUI(); + java.awt.Component var48 = var23.add("", (java.awt.Component)var42); + java.awt.ComponentOrientation var49 = var42.getComponentOrientation(); + boolean var50 = var42.isFocusable(); + var10.remove((java.awt.Component)var42); + SpaceWar.SpacePanel var52 = new SpaceWar.SpacePanel(); + float var53 = var52.getAlignmentX(); + var52.setVisible(false); + var52.setInheritsPopupMenu(false); + boolean var58 = var52.isDoubleBuffered(); + SpaceWar.SpacePanel var59 = new SpaceWar.SpacePanel(); + float var60 = var59.getAlignmentX(); + var59.setVisible(false); + var59.nextFocus(); + var59.reshape((-1), 1, (-1), 10); + var59.disable(); + java.awt.LayoutManager var70 = var59.getLayout(); + var52.setLayout(var70); + var0.add((java.awt.Component)var10, (java.lang.Object)var70); + int var73 = var0.getX(); + java.awt.LayoutManager var74 = var0.getLayout(); + javax.swing.JToolTip var75 = var0.createToolTip(); + var0.setOpaque(false); + var0.resetKeyboardActions(); + int var81 = var0.getBaseline(0, 2); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var4); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var22 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var24 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var29); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var30 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var31); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var34 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var39 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var40 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var43 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var48); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var49); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var50 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var53 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var58 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var60 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var70); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var73 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var74); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var75); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var81 == (-1)); + + } + + public void test433() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test433"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + var0.show(false); + boolean var8 = var0.isPaintingForPrint(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var15 = var9.getMouseListeners(); + int var16 = var9.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var17 = var9.getInputMethodRequests(); + var0.addKeyListener((java.awt.event.KeyListener)var9); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + float var20 = var19.getAlignmentX(); + var19.setVisible(false); + boolean var23 = var19.isDoubleBuffered(); + var19.list(); + float var25 = var19.getAlignmentY(); + boolean var26 = var9.isFocusCycleRoot((java.awt.Container)var19); + javax.swing.JPopupMenu var27 = var19.getComponentPopupMenu(); + var19.move((-1), 100); + var19.validate(); + java.awt.Toolkit var32 = var19.getToolkit(); + SpaceWar.SpacePanel var33 = new SpaceWar.SpacePanel(); + float var34 = var33.getAlignmentX(); + var33.setVisible(false); + boolean var37 = var33.isDoubleBuffered(); + SpaceWar.SpacePanel var38 = new SpaceWar.SpacePanel(); + java.awt.Color var39 = var38.getBackground(); + var38.repaint(); + java.lang.Object var41 = var33.getClientProperty((java.lang.Object)var38); + var38.repaint(10, 1, 25, 0); + var19.removeKeyListener((java.awt.event.KeyListener)var38); + boolean var48 = var38.isDoubleBuffered(); + var38.move(399, 399); + var38.setAlignmentX(10.0f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var27); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var32); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var34 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var39); + + // Regression assertion (captures the current behavior of the code) + assertNull(var41); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var48 == true); + + } + + public void test434() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test434"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + var0.setRequestFocusEnabled(false); + var0.reshape(100, 0, 100, 0); + var0.requestFocus(); + var0.firePropertyChange("hi!", '4', ' '); + var0.setFocusable(false); + var0.nextFocus(); + boolean var18 = var0.isPreferredSizeSet(); + var0.repaint(10, 100, 2, 400); + java.awt.Image var26 = var0.createImage(99, 0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var26); + + } + + public void test435() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test435"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + SpaceWar.SpacePanel var5 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + java.awt.Color var7 = var6.getBackground(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + var8.nextFocus(); + var8.updateUI(); + var8.enableInputMethods(true); + var5.add((java.awt.Component)var6, (java.lang.Object)true); + java.awt.Dimension var17 = var6.getPreferredSize(); + var0.setMaximumSize(var17); + boolean var19 = var0.isOpaque(); + var0.nextFocus(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == true); + + } + + public void test436() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test436"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + var0.show(false); + boolean var8 = var0.isPaintingForPrint(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + SpaceWar.SpacePanel var11 = new SpaceWar.SpacePanel(); + float var12 = var11.getAlignmentX(); + var11.setVisible(false); + java.awt.Dimension var15 = var11.getPreferredSize(); + boolean var16 = var11.getVerifyInputWhenFocusTarget(); + java.awt.Component var19 = var11.findComponentAt(10, 1); + var9.addKeyListener((java.awt.event.KeyListener)var11); + java.awt.Dimension var21 = var11.getMinimumSize(); + var0.setMinimumSize(var21); + SpaceWar.SpacePanel var24 = new SpaceWar.SpacePanel(); + float var25 = var24.getAlignmentX(); + var24.setVisible(false); + var24.nextFocus(); + var24.repaint(1L); + SpaceWar.SpacePanel var31 = new SpaceWar.SpacePanel(); + float var32 = var31.getAlignmentX(); + var31.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var37 = new SpaceWar.SpacePanel(); + float var38 = var37.getAlignmentX(); + var37.setVisible(false); + java.awt.Dimension var41 = var37.getPreferredSize(); + var31.setMaximumSize(var41); + var24.setPreferredSize(var41); + SpaceWar.SpacePanel var45 = new SpaceWar.SpacePanel(); + float var46 = var45.getAlignmentX(); + var45.setVisible(false); + SpaceWar.SpacePanel var49 = new SpaceWar.SpacePanel(); + java.awt.Color var50 = var49.getBackground(); + var45.setForeground(var50); + javax.swing.InputMap var52 = var45.getInputMap(); + var24.setInputMap(1, var52); + var0.setInputMap(1, var52); + var0.setAlignmentY(10.0f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var21); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var32 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var38 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var41); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var46 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var50); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var52); + + } + + public void test437() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test437"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.setInheritsPopupMenu(false); + var0.setFocusTraversalPolicyProvider(true); + boolean var10 = var0.inside(25, 3); + SpaceWar.SpacePanel var11 = new SpaceWar.SpacePanel(); + float var12 = var11.getAlignmentX(); + var11.setVisible(false); + boolean var15 = var11.isDoubleBuffered(); + java.awt.dnd.DropTarget var16 = var11.getDropTarget(); + var11.show(false); + boolean var19 = var11.isPaintingForPrint(); + SpaceWar.SpacePanel var20 = new SpaceWar.SpacePanel(); + float var21 = var20.getAlignmentX(); + SpaceWar.SpacePanel var22 = new SpaceWar.SpacePanel(); + float var23 = var22.getAlignmentX(); + var22.setVisible(false); + java.awt.Dimension var26 = var22.getPreferredSize(); + boolean var27 = var22.getVerifyInputWhenFocusTarget(); + java.awt.Component var30 = var22.findComponentAt(10, 1); + var20.addKeyListener((java.awt.event.KeyListener)var22); + java.awt.Dimension var32 = var22.getMinimumSize(); + var11.setMinimumSize(var32); + var0.setPreferredSize(var32); + int var35 = var0.getX(); + boolean var36 = var0.isMaximumSizeSet(); + var0.enableInputMethods(false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var30); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var32); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var35 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var36 == false); + + } + + public void test438() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test438"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + SpaceWar.SpacePanel var4 = new SpaceWar.SpacePanel(); + java.awt.Color var5 = var4.getBackground(); + var0.setForeground(var5); + SpaceWar.SpacePanel var7 = new SpaceWar.SpacePanel(); + float var8 = var7.getAlignmentX(); + var7.setVisible(false); + boolean var11 = var7.isDoubleBuffered(); + java.awt.dnd.DropTarget var12 = var7.getDropTarget(); + var7.show(false); + java.awt.Rectangle var15 = var7.getVisibleRect(); + var0.repaint(var15); + java.awt.FocusTraversalPolicy var17 = var0.getFocusTraversalPolicy(); + SpaceWar.SpacePanel var18 = new SpaceWar.SpacePanel(); + float var19 = var18.getAlignmentX(); + var18.firePropertyChange("", (-1), 1); + boolean var24 = var18.isFocusOwner(); + SpaceWar.SpacePanel var26 = new SpaceWar.SpacePanel(); + float var27 = var26.getAlignmentX(); + var26.setVisible(false); + java.awt.Dimension var30 = var26.getPreferredSize(); + java.awt.Toolkit var31 = var26.getToolkit(); + SpaceWar.SpacePanel var32 = new SpaceWar.SpacePanel(); + var32.setName(""); + int var35 = var32.getX(); + SpaceWar.SpacePanel var36 = new SpaceWar.SpacePanel(); + float var37 = var36.getAlignmentX(); + var36.setVisible(false); + var36.nextFocus(); + SpaceWar.SpacePanel var41 = new SpaceWar.SpacePanel(); + float var42 = var41.getAlignmentX(); + var41.setVisible(false); + SpaceWar.SpacePanel var45 = new SpaceWar.SpacePanel(); + java.awt.Color var46 = var45.getBackground(); + var41.setForeground(var46); + var36.setBackground(var46); + var32.setBackground(var46); + var26.setForeground(var46); + var18.putClientProperty((java.lang.Object)(byte)100, (java.lang.Object)var46); + var0.setBackground(var46); + javax.swing.JToolTip var53 = var0.createToolTip(); + var53.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, true); + SpaceWar.SpacePanel var58 = new SpaceWar.SpacePanel(); + var58.setName(""); + java.awt.Dimension var61 = var58.minimumSize(); + boolean var62 = var58.isDoubleBuffered(); + java.awt.event.HierarchyListener[] var63 = var58.getHierarchyListeners(); + java.awt.Font var64 = var58.getFont(); + java.awt.FontMetrics var65 = var53.getFontMetrics(var64); + var53.setAutoscrolls(true); + int var68 = var53.getX(); + var53.setVisible(true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var24 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var30); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var31); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var35 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var42 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var46); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var53); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var61); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var62 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var63); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var64); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var65); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var68 == 0); + + } + + public void test439() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test439"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + boolean var2 = var0.hasFocus(); + SpaceWar.SpacePanel var3 = new SpaceWar.SpacePanel(); + float var4 = var3.getAlignmentX(); + var3.setVisible(false); + var3.nextFocus(); + var3.reshape((-1), 1, (-1), 10); + var3.disable(); + java.awt.LayoutManager var14 = var3.getLayout(); + var3.setVisible(false); + var0.remove((java.awt.Component)var3); + var3.repaint(); + boolean var19 = var3.hasFocus(); + java.awt.event.MouseWheelListener[] var20 = var3.getMouseWheelListeners(); + boolean var21 = var3.isEnabled(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var2 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == false); + + } + + public void test440() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test440"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var6 = var0.getUI(); + java.awt.im.InputMethodRequests var7 = var0.getInputMethodRequests(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + var8.nextFocus(); + var8.updateUI(); + var8.enableInputMethods(true); + var8.setSize((-1), 1); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + var19.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var0.add((java.awt.Component)var8, (java.lang.Object)"SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + java.awt.ComponentOrientation var25 = var8.getComponentOrientation(); + java.beans.VetoableChangeListener[] var26 = var8.getVetoableChangeListeners(); + java.awt.dnd.DropTarget var27 = var8.getDropTarget(); + var8.setName("hi!"); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var25); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertNull(var27); + + } + + public void test441() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test441"); + + + SpaceWar.PowerUp var3 = new SpaceWar.PowerUp(100, (-1.0d), 0.0d); + double var4 = var3.getX(); + double var5 = var3.getY(); + double var6 = var3.getY(); + double var7 = var3.getY(); + double var8 = var3.getR(); + double var9 = var3.getX(); + boolean var10 = var3.update(); + boolean var11 = var3.update(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == (-1.0d)); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == 0.0d); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == 0.0d); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.0d); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 0.0d); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == (-1.0d)); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == false); + + } + + public void test442() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test442"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + boolean var6 = var0.isFocusCycleRoot(); + SpaceWar.SpacePanel var7 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + java.awt.Color var9 = var8.getBackground(); + SpaceWar.SpacePanel var10 = new SpaceWar.SpacePanel(); + float var11 = var10.getAlignmentX(); + var10.setVisible(false); + var10.nextFocus(); + var10.updateUI(); + var10.enableInputMethods(true); + var7.add((java.awt.Component)var8, (java.lang.Object)true); + java.awt.Dimension var19 = var8.getPreferredSize(); + var0.setSize(var19); + var0.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", (-1), 10); + var0.setLocation(10, 100); + SpaceWar.SpacePanel var28 = new SpaceWar.SpacePanel(); + float var29 = var28.getAlignmentX(); + var28.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var34 = var28.getMouseListeners(); + int var35 = var28.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var36 = var28.getInputMethodRequests(); + var28.removeNotify(); + var28.enable(); + SpaceWar.SpacePanel var39 = new SpaceWar.SpacePanel(); + java.awt.Color var40 = var39.getBackground(); + boolean var43 = var39.inside(0, (-1)); + var39.transferFocusUpCycle(); + java.lang.String var45 = var39.getName(); + boolean var46 = var28.isFocusCycleRoot((java.awt.Container)var39); + java.awt.Dimension var47 = var28.getMinimumSize(); + var0.resize(var47); + var0.setAlignmentX((-1.0f)); + var0.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=10,height=10]]", 383.0566534864913d, 559.7240852144217d); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var9); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var29 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var34); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var35 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var36); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var40); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var43 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var45); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var46 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var47); + + } + + public void test443() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test443"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + boolean var2 = var0.hasFocus(); + java.awt.Insets var3 = var0.getInsets(); + java.awt.Rectangle var4 = var0.bounds(); + boolean var5 = var0.isMaximumSizeSet(); + java.lang.String var6 = var0.toString(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var2 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var4); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var6 + "' != '" + "SpaceWar.SpacePanel[,0,0,0var6,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"+ "'", var6.equals("SpaceWar.SpacePanel[,0,0,0var6,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]")); + + } + + public void test444() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test444"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var1 = new SpaceWar.SpacePanel(); + java.awt.Color var2 = var1.getBackground(); + SpaceWar.SpacePanel var3 = new SpaceWar.SpacePanel(); + float var4 = var3.getAlignmentX(); + var3.setVisible(false); + var3.nextFocus(); + var3.updateUI(); + var3.enableInputMethods(true); + var0.add((java.awt.Component)var1, (java.lang.Object)true); + java.awt.Dimension var12 = var1.getPreferredSize(); + var1.move(100, 10); + java.awt.Graphics var16 = var1.getGraphics(); + boolean var17 = var1.getInheritsPopupMenu(); + javax.swing.event.AncestorListener[] var18 = var1.getAncestorListeners(); + var1.doLayout(); + java.awt.event.HierarchyBoundsListener[] var20 = var1.getHierarchyBoundsListeners(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var2); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + } + + public void test445() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test445"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + var0.enable(false); + boolean var7 = var0.getFocusTraversalKeysEnabled(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + java.awt.Dimension var12 = var8.getPreferredSize(); + java.awt.Toolkit var13 = var8.getToolkit(); + boolean var14 = var8.isFocusable(); + javax.swing.KeyStroke[] var15 = var8.getRegisteredKeyStrokes(); + SpaceWar.SpacePanel var16 = new SpaceWar.SpacePanel(); + float var17 = var16.getAlignmentX(); + SpaceWar.SpacePanel var18 = new SpaceWar.SpacePanel(); + float var19 = var18.getAlignmentX(); + var18.setVisible(false); + java.awt.Dimension var22 = var18.getPreferredSize(); + boolean var23 = var18.getVerifyInputWhenFocusTarget(); + java.awt.Component var26 = var18.findComponentAt(10, 1); + var16.addKeyListener((java.awt.event.KeyListener)var18); + var18.repaint(100, (-1), (-1), 1); + boolean var33 = var8.isAncestorOf((java.awt.Component)var18); + var0.addKeyListener((java.awt.event.KeyListener)var18); + boolean var35 = var18.isPaintingTile(); + java.awt.image.ColorModel var36 = var18.getColorModel(); + SpaceWar.SpacePanel var37 = new SpaceWar.SpacePanel(); + var37.setName(""); + int var40 = var37.getX(); + java.lang.String var41 = var37.getToolTipText(); + java.awt.Point var42 = var37.getLocation(); + SpaceWar.SpacePanel var43 = new SpaceWar.SpacePanel(); + float var44 = var43.getAlignmentX(); + var43.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var49 = var43.getUI(); + java.awt.im.InputMethodRequests var50 = var43.getInputMethodRequests(); + SpaceWar.SpacePanel var51 = new SpaceWar.SpacePanel(); + float var52 = var51.getAlignmentX(); + var51.setVisible(false); + var51.nextFocus(); + var51.updateUI(); + var51.enableInputMethods(true); + var51.setSize((-1), 1); + SpaceWar.SpacePanel var62 = new SpaceWar.SpacePanel(); + var62.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var43.add((java.awt.Component)var51, (java.lang.Object)"SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + var43.setAutoscrolls(false); + java.awt.event.InputMethodListener[] var70 = var43.getInputMethodListeners(); + java.awt.Rectangle var71 = var43.bounds(); + var37.paintImmediately(var71); + java.lang.Object var73 = var18.getClientProperty((java.lang.Object)var71); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var33 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var35 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var36); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var40 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var41); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var42); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var44 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var49); + + // Regression assertion (captures the current behavior of the code) + assertNull(var50); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var52 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var70); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var71); + + // Regression assertion (captures the current behavior of the code) + assertNull(var73); + + } + + public void test446() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test446"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + java.awt.event.MouseMotionListener[] var6 = var0.getMouseMotionListeners(); + java.awt.event.ComponentListener[] var7 = var0.getComponentListeners(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + var8.nextFocus(); + var8.repaint(1L); + SpaceWar.SpacePanel var15 = new SpaceWar.SpacePanel(); + float var16 = var15.getAlignmentX(); + var15.setVisible(false); + boolean var19 = var15.isDoubleBuffered(); + var15.list(); + SpaceWar.SpacePanel var21 = new SpaceWar.SpacePanel(); + float var22 = var21.getAlignmentX(); + var21.setVisible(false); + boolean var25 = var21.isDoubleBuffered(); + java.awt.dnd.DropTarget var26 = var21.getDropTarget(); + var21.show(false); + java.awt.Rectangle var29 = var21.getVisibleRect(); + java.awt.Rectangle var30 = var15.getBounds(var29); + var8.setBounds(var30); + var0.paintImmediately(var30); + java.awt.Point var33 = var0.getMousePosition(); + java.awt.image.BufferedImage var35 = var0.loadImg("SpaceWar.SpacePanel[,-1,1,-1x10,invalid,hidden,disabled,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + var0.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", 3, 100); + boolean var40 = var0.isMaximumSizeSet(); + var0.updateUI(); + boolean var42 = var0.isMinimumSizeSet(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var22 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var29); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var30); + + // Regression assertion (captures the current behavior of the code) + assertNull(var33); + + // Regression assertion (captures the current behavior of the code) + assertNull(var35); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var40 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var42 == false); + + } + + public void test447() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test447"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + var0.setRequestFocusEnabled(false); + var0.reshape(100, 0, 100, 0); + java.beans.VetoableChangeListener[] var10 = var0.getVetoableChangeListeners(); + java.awt.Rectangle var11 = var0.getVisibleRect(); + float var12 = var0.getAlignmentY(); + boolean var13 = var0.isDoubleBuffered(); + SpaceWar.SpacePanel var14 = new SpaceWar.SpacePanel(); + float var15 = var14.getAlignmentX(); + var14.setVisible(false); + var14.setInheritsPopupMenu(false); + var14.setFocusTraversalPolicyProvider(true); + boolean var24 = var14.inside(25, 3); + SpaceWar.SpacePanel var25 = new SpaceWar.SpacePanel(); + float var26 = var25.getAlignmentX(); + var25.setVisible(false); + boolean var29 = var25.isDoubleBuffered(); + java.awt.dnd.DropTarget var30 = var25.getDropTarget(); + var25.show(false); + boolean var33 = var25.isPaintingForPrint(); + SpaceWar.SpacePanel var34 = new SpaceWar.SpacePanel(); + float var35 = var34.getAlignmentX(); + SpaceWar.SpacePanel var36 = new SpaceWar.SpacePanel(); + float var37 = var36.getAlignmentX(); + var36.setVisible(false); + java.awt.Dimension var40 = var36.getPreferredSize(); + boolean var41 = var36.getVerifyInputWhenFocusTarget(); + java.awt.Component var44 = var36.findComponentAt(10, 1); + var34.addKeyListener((java.awt.event.KeyListener)var36); + java.awt.Dimension var46 = var36.getMinimumSize(); + var25.setMinimumSize(var46); + var14.setPreferredSize(var46); + boolean var50 = var14.requestFocus(true); + java.awt.Dimension var51 = var14.getMinimumSize(); + java.beans.PropertyChangeListener[] var53 = var14.getPropertyChangeListeners("SpaceWar.SpacePanel[,0,0,0x0,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + javax.swing.KeyStroke[] var54 = var14.getRegisteredKeyStrokes(); + var14.transferFocus(); + var14.resetKeyboardActions(); + java.awt.Component var57 = var0.add((java.awt.Component)var14); + javax.swing.JPopupMenu var58 = var14.getComponentPopupMenu(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var24 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var29 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var30); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var33 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var35 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var40); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var41 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var44); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var46); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var50 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var51); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var53); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var54); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var57); + + // Regression assertion (captures the current behavior of the code) + assertNull(var58); + + } + + public void test448() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test448"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + java.awt.im.InputMethodRequests var3 = var0.getInputMethodRequests(); + int var4 = var0.countComponents(); + java.awt.event.ComponentListener[] var5 = var0.getComponentListeners(); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + float var7 = var6.getAlignmentX(); + var6.removeNotify(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.setVisible(false); + boolean var13 = var9.isDoubleBuffered(); + var9.list(); + float var15 = var9.getAlignmentY(); + java.awt.Insets var16 = var9.getInsets(); + java.awt.Insets var17 = var6.getInsets(var16); + java.awt.Insets var18 = var0.getInsets(var17); + var0.removeAll(); + boolean var20 = var0.getIgnoreRepaint(); + int var21 = var0.getY(); + boolean var22 = var0.isFocusTraversable(); + java.awt.Dimension var23 = var0.getMaximumSize(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNull(var3); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var22 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var23); + + } + + public void test449() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test449"); + + + SpaceWar.Enemy var2 = new SpaceWar.Enemy(0, 100); + boolean var3 = var2.isDead(); + var2.hit(); + double var5 = var2.getY(); + int var6 = var2.getRank(); + double var7 = var2.getX(); + var2.explode(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == 0.0d); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == 100); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 249.6642428175776d); + + } + + public void test450() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test450"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + var0.setRequestFocusEnabled(false); + var0.reshape(100, 0, 100, 0); + java.beans.VetoableChangeListener[] var10 = var0.getVetoableChangeListeners(); + var0.revalidate(); + boolean var13 = var0.requestFocus(false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == false); + + } + + public void test451() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test451"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var1 = new SpaceWar.SpacePanel(); + java.awt.Color var2 = var1.getBackground(); + SpaceWar.SpacePanel var3 = new SpaceWar.SpacePanel(); + float var4 = var3.getAlignmentX(); + var3.setVisible(false); + var3.nextFocus(); + var3.updateUI(); + var3.enableInputMethods(true); + var0.add((java.awt.Component)var1, (java.lang.Object)true); + java.awt.Dimension var12 = var1.getPreferredSize(); + var1.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", (-1.0f), 100.0f); + SpaceWar.SpacePanel var17 = new SpaceWar.SpacePanel(); + float var18 = var17.getAlignmentX(); + var17.setVisible(false); + boolean var21 = var17.isDoubleBuffered(); + SpaceWar.SpacePanel var22 = new SpaceWar.SpacePanel(); + java.awt.Color var23 = var22.getBackground(); + var22.repaint(); + java.lang.Object var25 = var17.getClientProperty((java.lang.Object)var22); + var1.remove((java.awt.Component)var17); + java.awt.Toolkit var27 = var1.getToolkit(); + var1.setAutoscrolls(false); + boolean var30 = var1.isValidateRoot(); + // The following exception was thrown during execution. + // This behavior will recorded for regression testing. + try { + java.util.Set var32 = var1.getFocusTraversalKeys(25); + fail("Expected exception of type java.lang.IllegalArgumentException"); + } catch (java.lang.IllegalArgumentException e) { + // Expected exception. + } + + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var2); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var23); + + // Regression assertion (captures the current behavior of the code) + assertNull(var25); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var27); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var30 == false); + + } + + public void test452() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test452"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + var0.setRequestFocusEnabled(false); + var0.reshape(100, 0, 100, 0); + var0.requestFocus(); + var0.firePropertyChange("hi!", '4', ' '); + java.awt.Point var15 = var0.getLocation(); + java.awt.Dimension var16 = var0.size(); + java.awt.Image var19 = var0.createImage((-1), (-1)); + java.awt.event.ComponentListener[] var20 = var0.getComponentListeners(); + SpaceWar.SpacePanel var21 = new SpaceWar.SpacePanel(); + var21.setName(""); + java.awt.ComponentOrientation var24 = var21.getComponentOrientation(); + var21.firePropertyChange("PanelUI", 1.0f, 0.5f); + int var29 = var0.getComponentZOrder((java.awt.Component)var21); + boolean var31 = var0.areFocusTraversalKeysSet(0); + java.awt.event.FocusListener[] var32 = var0.getFocusListeners(); + SpaceWar.SpacePanel var33 = new SpaceWar.SpacePanel(); + var33.setName(""); + var33.enable(true); + var33.enable(); + java.awt.Point var39 = var33.location(); + var33.repaint(0, 3, (-1), 1); + var33.setBounds(25, 100, 1, 0); + java.awt.Insets var50 = var33.getInsets(); + java.awt.peer.ComponentPeer var51 = var33.getPeer(); + javax.swing.KeyStroke[] var52 = var33.getRegisteredKeyStrokes(); + boolean var53 = var33.getAutoscrolls(); + SpaceWar.SpacePanel var54 = new SpaceWar.SpacePanel(); + java.awt.Color var55 = var54.getBackground(); + var54.repaint(); + var54.setRequestFocusEnabled(false); + var54.reshape(100, 0, 100, 0); + var54.requestFocus(); + java.awt.Rectangle var65 = var54.getVisibleRect(); + java.awt.Rectangle var66 = var54.getBounds(); + java.awt.im.InputMethodRequests var67 = var54.getInputMethodRequests(); + boolean var68 = var54.requestFocusInWindow(); + java.awt.Point var70 = var54.getMousePosition(false); + var54.setDebugGraphicsOptions(1); + java.awt.Graphics var73 = var54.getGraphics(); + var33.paintComponents(var73); + var0.printAll(var73); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var29 == (-1)); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var31 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var32); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var39); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var50); + + // Regression assertion (captures the current behavior of the code) + assertNull(var51); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var52); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var53 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var55); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var65); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var66); + + // Regression assertion (captures the current behavior of the code) + assertNull(var67); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var68 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var70); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var73); + + } + + public void test453() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test453"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + var0.show(false); + boolean var8 = var0.isPaintingForPrint(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var15 = var9.getMouseListeners(); + int var16 = var9.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var17 = var9.getInputMethodRequests(); + var0.addKeyListener((java.awt.event.KeyListener)var9); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + float var20 = var19.getAlignmentX(); + var19.setVisible(false); + boolean var23 = var19.isDoubleBuffered(); + var19.list(); + float var25 = var19.getAlignmentY(); + boolean var26 = var9.isFocusCycleRoot((java.awt.Container)var19); + boolean var27 = var19.isEnabled(); + java.awt.Dimension var28 = var19.getMaximumSize(); + var19.setName("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + SpaceWar.SpacePanel var31 = new SpaceWar.SpacePanel(); + java.awt.Color var32 = var31.getBackground(); + var31.repaint(); + var31.setRequestFocusEnabled(false); + var31.reshape(100, 0, 100, 0); + var31.requestFocus(); + var31.firePropertyChange("hi!", '4', ' '); + java.awt.Point var46 = var31.getLocation(); + java.awt.Dimension var47 = var31.size(); + boolean var48 = var31.isDoubleBuffered(); + var31.grabFocus(); + java.awt.Rectangle var50 = var31.bounds(); + var19.setBounds(var50); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var28); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var32); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var46); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var47); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var48 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var50); + + } + + public void test454() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test454"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + var0.enable(false); + boolean var7 = var0.getFocusTraversalKeysEnabled(); + var0.setToolTipText("PanelUI"); + var0.setEnabled(false); + java.awt.Dimension var12 = var0.getMaximumSize(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var12); + + } + + public void test455() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test455"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + java.awt.Dimension var4 = var0.getPreferredSize(); + boolean var5 = var0.getVerifyInputWhenFocusTarget(); + java.awt.event.MouseWheelListener[] var6 = var0.getMouseWheelListeners(); + java.awt.Component.BaselineResizeBehavior var7 = var0.getBaselineResizeBehavior(); + javax.swing.InputMap var8 = var0.getInputMap(); + var0.doLayout(); + var0.layout(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var4); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var8); + + } + + public void test456() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test456"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + var0.enable(false); + boolean var7 = var0.getFocusTraversalKeysEnabled(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + java.awt.Dimension var12 = var8.getPreferredSize(); + java.awt.Toolkit var13 = var8.getToolkit(); + boolean var14 = var8.isFocusable(); + javax.swing.KeyStroke[] var15 = var8.getRegisteredKeyStrokes(); + SpaceWar.SpacePanel var16 = new SpaceWar.SpacePanel(); + float var17 = var16.getAlignmentX(); + SpaceWar.SpacePanel var18 = new SpaceWar.SpacePanel(); + float var19 = var18.getAlignmentX(); + var18.setVisible(false); + java.awt.Dimension var22 = var18.getPreferredSize(); + boolean var23 = var18.getVerifyInputWhenFocusTarget(); + java.awt.Component var26 = var18.findComponentAt(10, 1); + var16.addKeyListener((java.awt.event.KeyListener)var18); + var18.repaint(100, (-1), (-1), 1); + boolean var33 = var8.isAncestorOf((java.awt.Component)var18); + var0.addKeyListener((java.awt.event.KeyListener)var18); + boolean var35 = var18.isPaintingTile(); + SpaceWar.SpacePanel var36 = new SpaceWar.SpacePanel(); + float var37 = var36.getAlignmentX(); + var36.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var42 = var36.getUI(); + java.awt.im.InputMethodRequests var43 = var36.getInputMethodRequests(); + SpaceWar.SpacePanel var44 = new SpaceWar.SpacePanel(); + float var45 = var44.getAlignmentX(); + var44.setVisible(false); + var44.nextFocus(); + var44.updateUI(); + var44.enableInputMethods(true); + var44.setSize((-1), 1); + SpaceWar.SpacePanel var55 = new SpaceWar.SpacePanel(); + var55.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var36.add((java.awt.Component)var44, (java.lang.Object)"SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + java.awt.ComponentOrientation var61 = var44.getComponentOrientation(); + java.beans.VetoableChangeListener[] var62 = var44.getVetoableChangeListeners(); + int var63 = var44.countComponents(); + boolean var64 = var44.isFocusOwner(); + var44.enable(false); + java.awt.Insets var67 = var44.getInsets(); + java.awt.Insets var68 = var18.getInsets(var67); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var33 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var35 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var42); + + // Regression assertion (captures the current behavior of the code) + assertNull(var43); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var45 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var61); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var62); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var63 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var64 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var67); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var68); + + } + + public void test457() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test457"); + + + SpaceWar.Player var0 = new SpaceWar.Player(); + int var1 = var0.getPower(); + var0.setLeft(true); + var0.increasePower(0); + int var6 = var0.getR(); + var0.setUp(false); + int var9 = var0.getScore(); + int var10 = var0.getLives(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == 25); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 3); + + } + + public void test458() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test458"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + SpaceWar.SpacePanel var4 = new SpaceWar.SpacePanel(); + java.awt.Color var5 = var4.getBackground(); + var0.setForeground(var5); + SpaceWar.SpacePanel var7 = new SpaceWar.SpacePanel(); + float var8 = var7.getAlignmentX(); + var7.setVisible(false); + boolean var11 = var7.isDoubleBuffered(); + java.awt.dnd.DropTarget var12 = var7.getDropTarget(); + var7.show(false); + java.awt.Rectangle var15 = var7.getVisibleRect(); + var0.repaint(var15); + java.awt.FocusTraversalPolicy var17 = var0.getFocusTraversalPolicy(); + java.awt.im.InputMethodRequests var18 = var0.getInputMethodRequests(); + javax.swing.JToolTip var19 = var0.createToolTip(); + float var20 = var19.getAlignmentY(); + boolean var21 = var19.isMaximumSizeSet(); + boolean var22 = var19.isMinimumSizeSet(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var22 == false); + + } + + public void test459() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test459"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + var0.list(); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + float var7 = var6.getAlignmentX(); + var6.setVisible(false); + boolean var10 = var6.isDoubleBuffered(); + java.awt.dnd.DropTarget var11 = var6.getDropTarget(); + var6.show(false); + java.awt.Rectangle var14 = var6.getVisibleRect(); + java.awt.Rectangle var15 = var0.getBounds(var14); + javax.swing.JToolTip var16 = var0.createToolTip(); + java.awt.Graphics var17 = var0.getGraphics(); + float var18 = var0.getAlignmentY(); + boolean var19 = var0.getInheritsPopupMenu(); + javax.accessibility.AccessibleContext var20 = var0.getAccessibleContext(); + // The following exception was thrown during execution. + // This behavior will recorded for regression testing. + try { + java.awt.Component var22 = var0.getComponent(498); + fail("Expected exception of type java.lang.ArrayIndexOutOfBoundsException"); + } catch (java.lang.ArrayIndexOutOfBoundsException e) { + // Expected exception. + } + + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + } + + public void test460() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test460"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var6 = var0.getUI(); + java.awt.im.InputMethodRequests var7 = var0.getInputMethodRequests(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + var8.nextFocus(); + var8.updateUI(); + var8.enableInputMethods(true); + var8.setSize((-1), 1); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + var19.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var0.add((java.awt.Component)var8, (java.lang.Object)"SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + SpaceWar.SpacePanel var25 = new SpaceWar.SpacePanel(); + float var26 = var25.getAlignmentX(); + var25.setVisible(false); + java.awt.Dimension var29 = var25.getPreferredSize(); + java.awt.Toolkit var30 = var25.getToolkit(); + java.awt.Toolkit var31 = var25.getToolkit(); + java.awt.Component var32 = var8.add((java.awt.Component)var25); + int var33 = var8.getY(); + var8.removeNotify(); + java.awt.event.KeyListener[] var35 = var8.getKeyListeners(); + boolean var36 = var8.isFocusCycleRoot(); + boolean var37 = var8.isOptimizedDrawingEnabled(); + var8.setDoubleBuffered(false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var29); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var30); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var31); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var32); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var33 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var35); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var36 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == true); + + } + + public void test461() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test461"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.updateUI(); + var0.enableInputMethods(true); + java.awt.Point var8 = var0.location(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.setVisible(false); + var9.nextFocus(); + java.awt.Component var14 = var0.add((java.awt.Component)var9); + boolean var15 = var0.isRequestFocusEnabled(); + var0.setFocusCycleRoot(false); + SpaceWar.SpacePanel var18 = new SpaceWar.SpacePanel(); + float var19 = var18.getAlignmentX(); + var18.setVisible(false); + var18.nextFocus(); + var18.repaint(1L); + SpaceWar.SpacePanel var25 = new SpaceWar.SpacePanel(); + float var26 = var25.getAlignmentX(); + var25.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var31 = new SpaceWar.SpacePanel(); + float var32 = var31.getAlignmentX(); + var31.setVisible(false); + java.awt.Dimension var35 = var31.getPreferredSize(); + var25.setMaximumSize(var35); + var18.setPreferredSize(var35); + javax.swing.plaf.PanelUI var38 = var18.getUI(); + SpaceWar.SpacePanel var39 = new SpaceWar.SpacePanel(); + float var40 = var39.getAlignmentX(); + var39.setVisible(false); + var39.nextFocus(); + var39.reshape((-1), 1, (-1), 10); + var39.disable(); + java.awt.LayoutManager var50 = var39.getLayout(); + java.awt.Container var51 = var39.getParent(); + java.lang.String var52 = var39.getUIClassID(); + SpaceWar.Enemy var55 = new SpaceWar.Enemy(0, 10); + var18.add((java.awt.Component)var39, (java.lang.Object)10); + javax.swing.JToolTip var57 = var18.createToolTip(); + java.awt.Component var58 = var0.add((java.awt.Component)var57); + var0.setVisible(true); + boolean var61 = var0.isFocusable(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var32 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var35); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var38); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var40 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var50); + + // Regression assertion (captures the current behavior of the code) + assertNull(var51); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var52 + "' != '" + "PanelUI"+ "'", var52.equals("PanelUI")); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var57); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var58); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var61 == true); + + } + + public void test462() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test462"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.reshape((-1), 1, (-1), 10); + SpaceWar.SpacePanel var10 = new SpaceWar.SpacePanel(); + java.awt.Color var11 = var10.getBackground(); + var10.repaint(); + var10.setRequestFocusEnabled(false); + var10.reshape(100, 0, 100, 0); + java.awt.Component var20 = var0.add((java.awt.Component)var10); + boolean var21 = var10.isEnabled(); + SpaceWar.SpacePanel var22 = new SpaceWar.SpacePanel(); + float var23 = var22.getAlignmentX(); + var22.setVisible(false); + var22.setInheritsPopupMenu(false); + var22.setFocusTraversalPolicyProvider(true); + SpaceWar.SpacePanel var30 = new SpaceWar.SpacePanel(); + float var31 = var30.getAlignmentX(); + var30.setVisible(false); + boolean var34 = var30.isDoubleBuffered(); + var30.list(); + SpaceWar.SpacePanel var36 = new SpaceWar.SpacePanel(); + float var37 = var36.getAlignmentX(); + var36.setVisible(false); + boolean var40 = var36.isDoubleBuffered(); + java.awt.dnd.DropTarget var41 = var36.getDropTarget(); + var36.show(false); + java.awt.Rectangle var44 = var36.getVisibleRect(); + java.awt.Rectangle var45 = var30.getBounds(var44); + javax.swing.JToolTip var46 = var30.createToolTip(); + var22.removeKeyListener((java.awt.event.KeyListener)var30); + javax.swing.TransferHandler var48 = var22.getTransferHandler(); + var22.transferFocus(); + SpaceWar.SpacePanel var50 = new SpaceWar.SpacePanel(); + float var51 = var50.getAlignmentX(); + SpaceWar.SpacePanel var52 = new SpaceWar.SpacePanel(); + float var53 = var52.getAlignmentX(); + var52.setVisible(false); + java.awt.Dimension var56 = var52.getPreferredSize(); + boolean var57 = var52.getVerifyInputWhenFocusTarget(); + java.awt.Component var60 = var52.findComponentAt(10, 1); + var50.addKeyListener((java.awt.event.KeyListener)var52); + java.awt.Dimension var62 = var52.getMinimumSize(); + SpaceWar.SpacePanel var63 = new SpaceWar.SpacePanel(); + java.awt.Color var64 = var63.getBackground(); + var63.repaint(); + var63.setRequestFocusEnabled(false); + var63.reshape(100, 0, 100, 0); + var63.requestFocus(); + java.awt.Rectangle var74 = var63.getVisibleRect(); + var52.setBounds(var74); + var22.scrollRectToVisible(var74); + var10.setBounds(var74); + java.awt.Rectangle var78 = var10.getVisibleRect(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var31 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var34 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var40 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var41); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var44); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var45); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var46); + + // Regression assertion (captures the current behavior of the code) + assertNull(var48); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var51 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var53 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var56); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var57 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var60); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var62); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var64); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var74); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var78); + + } + + public void test463() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test463"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.reshape((-1), 1, (-1), 10); + var0.disable(); + java.awt.LayoutManager var11 = var0.getLayout(); + java.awt.Container var12 = var0.getParent(); + java.lang.String var13 = var0.getUIClassID(); + float var14 = var0.getAlignmentX(); + SpaceWar.SpacePanel var15 = new SpaceWar.SpacePanel(); + float var16 = var15.getAlignmentX(); + var15.setVisible(false); + boolean var19 = var15.isDoubleBuffered(); + var15.enable(false); + boolean var22 = var15.getFocusTraversalKeysEnabled(); + SpaceWar.SpacePanel var23 = new SpaceWar.SpacePanel(); + float var24 = var23.getAlignmentX(); + var23.setVisible(false); + java.awt.Dimension var27 = var23.getPreferredSize(); + java.awt.Toolkit var28 = var23.getToolkit(); + boolean var29 = var23.isFocusable(); + javax.swing.KeyStroke[] var30 = var23.getRegisteredKeyStrokes(); + SpaceWar.SpacePanel var31 = new SpaceWar.SpacePanel(); + float var32 = var31.getAlignmentX(); + SpaceWar.SpacePanel var33 = new SpaceWar.SpacePanel(); + float var34 = var33.getAlignmentX(); + var33.setVisible(false); + java.awt.Dimension var37 = var33.getPreferredSize(); + boolean var38 = var33.getVerifyInputWhenFocusTarget(); + java.awt.Component var41 = var33.findComponentAt(10, 1); + var31.addKeyListener((java.awt.event.KeyListener)var33); + var33.repaint(100, (-1), (-1), 1); + boolean var48 = var23.isAncestorOf((java.awt.Component)var33); + var15.addKeyListener((java.awt.event.KeyListener)var33); + java.util.Locale var50 = var33.getLocale(); + var0.setLocale(var50); + SpaceWar.SpacePanel var52 = new SpaceWar.SpacePanel(); + float var53 = var52.getAlignmentX(); + var52.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var58 = var52.getMouseListeners(); + int var59 = var52.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var60 = var52.getInputMethodRequests(); + var52.removeNotify(); + var52.enable(); + SpaceWar.SpacePanel var63 = new SpaceWar.SpacePanel(); + java.awt.Color var64 = var63.getBackground(); + boolean var67 = var63.inside(0, (-1)); + var63.transferFocusUpCycle(); + java.lang.String var69 = var63.getName(); + boolean var70 = var52.isFocusCycleRoot((java.awt.Container)var63); + SpaceWar.SpacePanel var71 = new SpaceWar.SpacePanel(); + java.awt.Color var72 = var71.getBackground(); + var71.repaint(); + var71.setRequestFocusEnabled(false); + var71.reshape(100, 0, 100, 0); + var71.requestFocus(); + var71.firePropertyChange("hi!", '4', ' '); + java.awt.Point var86 = var71.getLocation(); + java.awt.Component var87 = var63.getComponentAt(var86); + java.awt.Component var88 = var0.findComponentAt(var86); + var0.setFocusTraversalPolicyProvider(true); + java.awt.event.MouseListener[] var91 = var0.getMouseListeners(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var13 + "' != '" + "PanelUI"+ "'", var13.equals("PanelUI")); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var22 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var24 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var27); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var28); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var29 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var30); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var32 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var34 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var37); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var38 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var41); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var48 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var50); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var53 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var58); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var59 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var60); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var64); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var67 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var69); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var70 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var72); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var86); + + // Regression assertion (captures the current behavior of the code) + assertNull(var87); + + // Regression assertion (captures the current behavior of the code) + assertNull(var88); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var91); + + } + + public void test464() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test464"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + SpaceWar.SpacePanel var5 = new SpaceWar.SpacePanel(); + float var6 = var5.getAlignmentX(); + var5.setVisible(false); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + java.awt.Color var10 = var9.getBackground(); + var5.setForeground(var10); + var0.setBackground(var10); + java.awt.Component var13 = var0.getNextFocusableComponent(); + float var14 = var0.getAlignmentY(); + java.awt.event.MouseWheelListener[] var15 = var0.getMouseWheelListeners(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + } + + public void test465() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test465"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + SpaceWar.SpacePanel var2 = new SpaceWar.SpacePanel(); + float var3 = var2.getAlignmentX(); + var2.setVisible(false); + java.awt.Dimension var6 = var2.getPreferredSize(); + boolean var7 = var2.getVerifyInputWhenFocusTarget(); + java.awt.Component var10 = var2.findComponentAt(10, 1); + var0.addKeyListener((java.awt.event.KeyListener)var2); + boolean var12 = var2.isFocusTraversable(); + java.awt.Component.BaselineResizeBehavior var13 = var2.getBaselineResizeBehavior(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var13); + + } + + public void test466() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test466"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + boolean var2 = var0.hasFocus(); + boolean var3 = var0.isPreferredSizeSet(); + SpaceWar.SpacePanel var4 = new SpaceWar.SpacePanel(); + java.awt.Color var5 = var4.getBackground(); + var4.repaint(); + var4.setRequestFocusEnabled(false); + int var9 = var0.getComponentZOrder((java.awt.Component)var4); + boolean var10 = var0.requestDefaultFocus(); + SpaceWar.SpacePanel var11 = new SpaceWar.SpacePanel(); + float var12 = var11.getAlignmentX(); + var11.setVisible(false); + SpaceWar.SpacePanel var15 = new SpaceWar.SpacePanel(); + java.awt.Color var16 = var15.getBackground(); + var11.setForeground(var16); + SpaceWar.SpacePanel var18 = new SpaceWar.SpacePanel(); + float var19 = var18.getAlignmentX(); + var18.setVisible(false); + boolean var22 = var18.isDoubleBuffered(); + java.awt.dnd.DropTarget var23 = var18.getDropTarget(); + var18.show(false); + java.awt.Rectangle var26 = var18.getVisibleRect(); + var11.repaint(var26); + java.awt.FocusTraversalPolicy var28 = var11.getFocusTraversalPolicy(); + SpaceWar.SpacePanel var29 = new SpaceWar.SpacePanel(); + float var30 = var29.getAlignmentX(); + var29.firePropertyChange("", (-1), 1); + boolean var35 = var29.isFocusOwner(); + SpaceWar.SpacePanel var37 = new SpaceWar.SpacePanel(); + float var38 = var37.getAlignmentX(); + var37.setVisible(false); + java.awt.Dimension var41 = var37.getPreferredSize(); + java.awt.Toolkit var42 = var37.getToolkit(); + SpaceWar.SpacePanel var43 = new SpaceWar.SpacePanel(); + var43.setName(""); + int var46 = var43.getX(); + SpaceWar.SpacePanel var47 = new SpaceWar.SpacePanel(); + float var48 = var47.getAlignmentX(); + var47.setVisible(false); + var47.nextFocus(); + SpaceWar.SpacePanel var52 = new SpaceWar.SpacePanel(); + float var53 = var52.getAlignmentX(); + var52.setVisible(false); + SpaceWar.SpacePanel var56 = new SpaceWar.SpacePanel(); + java.awt.Color var57 = var56.getBackground(); + var52.setForeground(var57); + var47.setBackground(var57); + var43.setBackground(var57); + var37.setForeground(var57); + var29.putClientProperty((java.lang.Object)(byte)100, (java.lang.Object)var57); + var11.setBackground(var57); + SpaceWar.SpacePanel var64 = new SpaceWar.SpacePanel(); + float var65 = var64.getAlignmentX(); + var64.setVisible(false); + boolean var68 = var64.isDoubleBuffered(); + java.awt.dnd.DropTarget var69 = var64.getDropTarget(); + var64.show(false); + boolean var72 = var64.isPaintingForPrint(); + SpaceWar.SpacePanel var73 = new SpaceWar.SpacePanel(); + float var74 = var73.getAlignmentX(); + SpaceWar.SpacePanel var75 = new SpaceWar.SpacePanel(); + float var76 = var75.getAlignmentX(); + var75.setVisible(false); + java.awt.Dimension var79 = var75.getPreferredSize(); + boolean var80 = var75.getVerifyInputWhenFocusTarget(); + java.awt.Component var83 = var75.findComponentAt(10, 1); + var73.addKeyListener((java.awt.event.KeyListener)var75); + java.awt.Dimension var85 = var75.getMinimumSize(); + var64.setMinimumSize(var85); + java.awt.Dimension var87 = var11.getSize(var85); + java.awt.Rectangle var88 = var11.getVisibleRect(); + var0.paintImmediately(var88); + boolean var90 = var0.isFontSet(); + javax.swing.event.AncestorListener[] var91 = var0.getAncestorListeners(); + javax.swing.ActionMap var92 = var0.getActionMap(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var2 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == (-1)); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var22 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var23); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertNull(var28); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var30 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var35 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var38 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var41); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var42); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var46 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var48 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var53 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var57); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var65 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var68 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var69); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var72 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var74 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var76 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var79); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var80 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var83); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var85); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var87); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var88); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var90 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var91); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var92); + + } + + public void test467() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test467"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + boolean var4 = var0.isDoubleBuffered(); + java.awt.dnd.DropTarget var5 = var0.getDropTarget(); + var0.show(false); + boolean var8 = var0.isPaintingForPrint(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var15 = var9.getMouseListeners(); + int var16 = var9.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var17 = var9.getInputMethodRequests(); + var0.addKeyListener((java.awt.event.KeyListener)var9); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + float var20 = var19.getAlignmentX(); + var19.setVisible(false); + boolean var23 = var19.isDoubleBuffered(); + var19.list(); + float var25 = var19.getAlignmentY(); + boolean var26 = var9.isFocusCycleRoot((java.awt.Container)var19); + var19.firePropertyChange("", 1L, 1L); + var19.setVerifyInputWhenFocusTarget(true); + var19.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", '4', '4'); + java.awt.Point var37 = var19.getLocation(); + var19.transferFocusUpCycle(); + boolean var40 = var19.areFocusTraversalKeysSet(0); + boolean var41 = var19.isDisplayable(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var37); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var40 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var41 == false); + + } + + public void test468() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test468"); + + + SpaceWar.Bullet var3 = new SpaceWar.Bullet(506.9915098063617d, 25, 99); + + } + + public void test469() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test469"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var6 = var0.getUI(); + java.awt.im.InputMethodRequests var7 = var0.getInputMethodRequests(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + var8.nextFocus(); + var8.updateUI(); + var8.enableInputMethods(true); + var8.setSize((-1), 1); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + var19.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var0.add((java.awt.Component)var8, (java.lang.Object)"SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + java.awt.ComponentOrientation var25 = var8.getComponentOrientation(); + java.beans.VetoableChangeListener[] var26 = var8.getVetoableChangeListeners(); + int var27 = var8.getHeight(); + var8.enable(true); + boolean var30 = var8.isFocusTraversalPolicyProvider(); + SpaceWar.SpacePanel var31 = new SpaceWar.SpacePanel(); + java.awt.Color var32 = var31.getBackground(); + var31.repaint(); + var31.setRequestFocusEnabled(false); + var31.reshape(100, 0, 100, 0); + var31.requestFocus(); + var31.firePropertyChange("hi!", '4', ' '); + java.awt.Point var46 = var31.getLocation(); + var8.setLocation(var46); + boolean var48 = var8.isManagingFocus(); + var8.transferFocusDownCycle(); + var8.show(); + boolean var51 = var8.isEnabled(); + SpaceWar.SpacePanel var52 = new SpaceWar.SpacePanel(); + float var53 = var52.getAlignmentX(); + var52.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var58 = var52.getMouseListeners(); + int var59 = var52.getDebugGraphicsOptions(); + boolean var60 = var52.isValid(); + var52.setAlignmentX((-1.0f)); + SpaceWar.SpacePanel var63 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var64 = new SpaceWar.SpacePanel(); + java.awt.Color var65 = var64.getBackground(); + SpaceWar.SpacePanel var66 = new SpaceWar.SpacePanel(); + float var67 = var66.getAlignmentX(); + var66.setVisible(false); + var66.nextFocus(); + var66.updateUI(); + var66.enableInputMethods(true); + var63.add((java.awt.Component)var64, (java.lang.Object)true); + java.awt.Image var77 = var64.createImage(1, (-1)); + java.awt.event.MouseListener[] var78 = var64.getMouseListeners(); + java.awt.Color var79 = var64.getBackground(); + boolean var80 = var64.getIgnoreRepaint(); + java.awt.Dimension var81 = var64.minimumSize(); + java.awt.Insets var82 = var64.getInsets(); + java.awt.Insets var83 = var52.getInsets(var82); + java.awt.Insets var84 = var8.getInsets(var83); + boolean var85 = var8.isShowing(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var25); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == 1); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var30 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var32); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var46); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var48 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var51 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var53 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var58); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var59 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var60 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var65); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var67 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNull(var77); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var78); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var79); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var80 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var81); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var82); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var83); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var84); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var85 == false); + + } + + public void test470() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test470"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var6 = new SpaceWar.SpacePanel(); + float var7 = var6.getAlignmentX(); + var6.setVisible(false); + java.awt.Dimension var10 = var6.getPreferredSize(); + var0.setMaximumSize(var10); + boolean var12 = var0.getVerifyInputWhenFocusTarget(); + boolean var13 = var0.isFontSet(); + boolean var14 = var0.getIgnoreRepaint(); + java.awt.Component var17 = var0.locate(1, 25); + boolean var18 = var0.isLightweight(); + var0.move(100, 500); + java.awt.Container var22 = var0.getParent(); + SpaceWar.SpacePanel var23 = new SpaceWar.SpacePanel(); + float var24 = var23.getAlignmentX(); + boolean var25 = var23.hasFocus(); + java.awt.Insets var26 = var23.getInsets(); + boolean var27 = var23.isFocusTraversalPolicyProvider(); + java.beans.PropertyChangeListener[] var29 = var23.getPropertyChangeListeners("hi!"); + java.awt.Cursor var30 = var23.getCursor(); + boolean var31 = var0.isFocusCycleRoot((java.awt.Container)var23); + boolean var32 = var23.isOptimizedDrawingEnabled(); + // The following exception was thrown during execution. + // This behavior will recorded for regression testing. + try { + javax.swing.InputMap var34 = var23.getInputMap(10); + fail("Expected exception of type java.lang.IllegalArgumentException"); + } catch (java.lang.IllegalArgumentException e) { + // Expected exception. + } + + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var24 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var25 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var29); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var30); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var31 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var32 == true); + + } + + public void test471() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test471"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.reshape((-1), 1, (-1), 10); + SpaceWar.SpacePanel var10 = new SpaceWar.SpacePanel(); + java.awt.Color var11 = var10.getBackground(); + var10.repaint(); + var10.setRequestFocusEnabled(false); + var10.reshape(100, 0, 100, 0); + java.awt.Component var20 = var0.add((java.awt.Component)var10); + SpaceWar.SpacePanel var21 = new SpaceWar.SpacePanel(); + var21.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + javax.swing.plaf.PanelUI var26 = var21.getUI(); + SpaceWar.SpacePanel var27 = new SpaceWar.SpacePanel(); + float var28 = var27.getAlignmentX(); + var27.setVisible(false); + var27.nextFocus(); + var27.repaint(1L); + SpaceWar.SpacePanel var34 = new SpaceWar.SpacePanel(); + float var35 = var34.getAlignmentX(); + var34.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var40 = new SpaceWar.SpacePanel(); + float var41 = var40.getAlignmentX(); + var40.setVisible(false); + java.awt.Dimension var44 = var40.getPreferredSize(); + var34.setMaximumSize(var44); + var27.setPreferredSize(var44); + var21.setMaximumSize(var44); + java.awt.Dimension var48 = var10.getSize(var44); + SpaceWar.SpacePanel var49 = new SpaceWar.SpacePanel(); + float var50 = var49.getAlignmentX(); + var49.setVisible(false); + boolean var53 = var49.isDoubleBuffered(); + java.awt.dnd.DropTarget var54 = var49.getDropTarget(); + var49.show(false); + boolean var57 = var49.isPaintingForPrint(); + SpaceWar.SpacePanel var58 = new SpaceWar.SpacePanel(); + float var59 = var58.getAlignmentX(); + var58.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var64 = var58.getMouseListeners(); + int var65 = var58.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var66 = var58.getInputMethodRequests(); + var49.addKeyListener((java.awt.event.KeyListener)var58); + SpaceWar.SpacePanel var68 = new SpaceWar.SpacePanel(); + float var69 = var68.getAlignmentX(); + var68.setVisible(false); + boolean var72 = var68.isDoubleBuffered(); + var68.list(); + float var74 = var68.getAlignmentY(); + boolean var75 = var58.isFocusCycleRoot((java.awt.Container)var68); + var10.setNextFocusableComponent((java.awt.Component)var68); + boolean var77 = var10.isForegroundSet(); + java.awt.Rectangle var78 = var10.bounds(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var28 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var35 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var41 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var44); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var48); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var50 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var53 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var54); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var57 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var59 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var64); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var65 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var66); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var69 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var72 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var74 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var75 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var77 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var78); + + } + + public void test472() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test472"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + boolean var2 = var0.hasFocus(); + boolean var3 = var0.isPreferredSizeSet(); + var0.firePropertyChange("", (short)1, (short)0); + boolean var8 = var0.isMaximumSizeSet(); + var0.list(); + boolean var10 = var0.requestFocusInWindow(); + SpaceWar.SpacePanel var11 = new SpaceWar.SpacePanel(); + java.awt.Color var12 = var11.getBackground(); + var11.repaint(); + java.awt.im.InputMethodRequests var14 = var11.getInputMethodRequests(); + int var15 = var11.countComponents(); + java.awt.event.ComponentListener[] var16 = var11.getComponentListeners(); + var11.transferFocusBackward(); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + float var20 = var19.getAlignmentX(); + var19.setVisible(false); + boolean var23 = var19.isDoubleBuffered(); + var19.enable(false); + SpaceWar.SpacePanel var26 = new SpaceWar.SpacePanel(); + float var27 = var26.getAlignmentX(); + boolean var28 = var26.hasFocus(); + java.awt.Insets var29 = var26.getInsets(); + java.awt.Rectangle var30 = var26.bounds(); + var19.repaint(var30); + java.awt.Component var32 = var11.add("", (java.awt.Component)var19); + SpaceWar.SpacePanel var33 = new SpaceWar.SpacePanel(); + float var34 = var33.getAlignmentX(); + var33.setVisible(false); + var33.nextFocus(); + var33.reshape((-1), 1, (-1), 10); + java.util.Set var44 = var33.getFocusTraversalKeys(3); + java.awt.Point var45 = var33.getLocation(); + var32.setLocation(var45); + boolean var47 = var0.contains(var45); + java.awt.Dimension var48 = var0.getMinimumSize(); + java.awt.event.InputMethodListener[] var49 = var0.getInputMethodListeners(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var2 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var23 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var28 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var29); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var30); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var32); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var34 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var44); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var45); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var47 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var48); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var49); + + } + + public void test473() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test473"); + + + SpaceWar.Bullet var3 = new SpaceWar.Bullet(365.5281187817767d, 3, 24); + double var4 = var3.getY(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 24.0d); + + } + + public void test474() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test474"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.reshape((-1), 1, (-1), 10); + SpaceWar.SpacePanel var10 = new SpaceWar.SpacePanel(); + java.awt.Color var11 = var10.getBackground(); + var10.repaint(); + var10.setRequestFocusEnabled(false); + var10.reshape(100, 0, 100, 0); + java.awt.Component var20 = var0.add((java.awt.Component)var10); + SpaceWar.SpacePanel var21 = new SpaceWar.SpacePanel(); + var21.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + javax.swing.plaf.PanelUI var26 = var21.getUI(); + SpaceWar.SpacePanel var27 = new SpaceWar.SpacePanel(); + float var28 = var27.getAlignmentX(); + var27.setVisible(false); + var27.nextFocus(); + var27.repaint(1L); + SpaceWar.SpacePanel var34 = new SpaceWar.SpacePanel(); + float var35 = var34.getAlignmentX(); + var34.firePropertyChange("", (-1), 1); + SpaceWar.SpacePanel var40 = new SpaceWar.SpacePanel(); + float var41 = var40.getAlignmentX(); + var40.setVisible(false); + java.awt.Dimension var44 = var40.getPreferredSize(); + var34.setMaximumSize(var44); + var27.setPreferredSize(var44); + var21.setMaximumSize(var44); + java.awt.Dimension var48 = var10.getSize(var44); + boolean var49 = var10.getIgnoreRepaint(); + boolean var50 = var10.isPreferredSizeSet(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var28 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var35 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var41 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var44); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var48); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var49 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var50 == true); + + } + + public void test475() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test475"); + + + SpaceWar.Enemy var2 = new SpaceWar.Enemy(0, 100); + int var3 = var2.getR(); + int var4 = var2.getR(); + double var5 = var2.getY(); + var2.update(); + double var7 = var2.getX(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == 0.0d); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 450.0138673900408d); + + } + + public void test476() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test476"); + + + SpaceWar.PowerUp var3 = new SpaceWar.PowerUp(100, (-1.0d), 0.0d); + double var4 = var3.getR(); + int var5 = var3.getType(); + double var6 = var3.getX(); + int var7 = var3.getType(); + double var8 = var3.getY(); + double var9 = var3.getX(); + double var10 = var3.getY(); + int var11 = var3.getType(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0.0d); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == 100); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == (-1.0d)); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 100); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 0.0d); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == (-1.0d)); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.0d); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == 100); + + } + + public void test477() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test477"); + + + SpaceWar.Bullet var3 = new SpaceWar.Bullet(24.0d, 100, 499); + double var4 = var3.getY(); + double var5 = var3.getX(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 499.0d); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == 100.0d); + + } + + public void test478() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test478"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.setInheritsPopupMenu(false); + var0.setFocusTraversalPolicyProvider(true); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + boolean var12 = var8.isDoubleBuffered(); + var8.list(); + SpaceWar.SpacePanel var14 = new SpaceWar.SpacePanel(); + float var15 = var14.getAlignmentX(); + var14.setVisible(false); + boolean var18 = var14.isDoubleBuffered(); + java.awt.dnd.DropTarget var19 = var14.getDropTarget(); + var14.show(false); + java.awt.Rectangle var22 = var14.getVisibleRect(); + java.awt.Rectangle var23 = var8.getBounds(var22); + javax.swing.JToolTip var24 = var8.createToolTip(); + var0.removeKeyListener((java.awt.event.KeyListener)var8); + javax.swing.TransferHandler var26 = var0.getTransferHandler(); + var0.transferFocus(); + SpaceWar.SpacePanel var28 = new SpaceWar.SpacePanel(); + float var29 = var28.getAlignmentX(); + SpaceWar.SpacePanel var30 = new SpaceWar.SpacePanel(); + float var31 = var30.getAlignmentX(); + var30.setVisible(false); + java.awt.Dimension var34 = var30.getPreferredSize(); + boolean var35 = var30.getVerifyInputWhenFocusTarget(); + java.awt.Component var38 = var30.findComponentAt(10, 1); + var28.addKeyListener((java.awt.event.KeyListener)var30); + java.awt.Dimension var40 = var30.getMinimumSize(); + SpaceWar.SpacePanel var41 = new SpaceWar.SpacePanel(); + java.awt.Color var42 = var41.getBackground(); + var41.repaint(); + var41.setRequestFocusEnabled(false); + var41.reshape(100, 0, 100, 0); + var41.requestFocus(); + java.awt.Rectangle var52 = var41.getVisibleRect(); + var30.setBounds(var52); + var0.scrollRectToVisible(var52); + int var55 = var0.getY(); + java.awt.Container var56 = var0.getParent(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var19); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var22); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var23); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var29 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var31 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var34); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var35 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var38); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var40); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var42); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var52); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var55 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var56); + + } + + public void test479() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test479"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + var0.setRequestFocusEnabled(false); + var0.reshape(100, 0, 100, 0); + java.beans.VetoableChangeListener[] var10 = var0.getVetoableChangeListeners(); + java.awt.Rectangle var11 = var0.getVisibleRect(); + float var12 = var0.getAlignmentY(); + java.awt.Container var13 = var0.getTopLevelAncestor(); + int var14 = var0.getDebugGraphicsOptions(); + javax.swing.InputMap var15 = var0.getInputMap(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + } + + public void test480() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test480"); + + + SpaceWar.Bullet var3 = new SpaceWar.Bullet(396.44637138944637d, 2, 499); + double var4 = var3.getR(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 5.0d); + + } + + public void test481() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test481"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + boolean var6 = var0.isFocusOwner(); + java.awt.Dimension var7 = var0.getMinimumSize(); + boolean var8 = var0.requestFocusInWindow(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.setVisible(false); + var9.nextFocus(); + var9.requestFocus(); + boolean var15 = var9.isBackgroundSet(); + SpaceWar.SpacePanel var16 = new SpaceWar.SpacePanel(); + java.awt.Color var17 = var16.getBackground(); + var16.repaint(); + var16.setRequestFocusEnabled(false); + var16.reshape(100, 0, 100, 0); + SpaceWar.SpacePanel var26 = new SpaceWar.SpacePanel(); + float var27 = var26.getAlignmentX(); + var26.setVisible(false); + var26.setInheritsPopupMenu(false); + boolean var32 = var26.isDoubleBuffered(); + SpaceWar.SpacePanel var33 = new SpaceWar.SpacePanel(); + float var34 = var33.getAlignmentX(); + var33.setVisible(false); + var33.nextFocus(); + var33.reshape((-1), 1, (-1), 10); + var33.disable(); + java.awt.LayoutManager var44 = var33.getLayout(); + var26.setLayout(var44); + var9.add((java.awt.Component)var16, (java.lang.Object)var44); + var0.setLayout(var44); + int var50 = var0.getBaseline(400, 499); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var32 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var34 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var44); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var50 == (-1)); + + } + + public void test482() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test482"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + var0.setRequestFocusEnabled(false); + var0.setIgnoreRepaint(false); + java.lang.String var7 = var0.toString(); + java.awt.Color var8 = var0.getBackground(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + float var10 = var9.getAlignmentX(); + var9.setVisible(false); + boolean var13 = var9.isDoubleBuffered(); + var9.list(); + SpaceWar.SpacePanel var15 = new SpaceWar.SpacePanel(); + float var16 = var15.getAlignmentX(); + var15.setVisible(false); + boolean var19 = var15.isDoubleBuffered(); + java.awt.dnd.DropTarget var20 = var15.getDropTarget(); + var15.show(false); + java.awt.Rectangle var23 = var15.getVisibleRect(); + java.awt.image.BufferedImage var25 = var15.loadImg("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + boolean var26 = var9.isAncestorOf((java.awt.Component)var15); + java.awt.GraphicsConfiguration var27 = var15.getGraphicsConfiguration(); + java.awt.Font var28 = var15.getFont(); + java.awt.Component var29 = var0.add((java.awt.Component)var15); + var29.firePropertyChange("", 2.0d, 83.657626403857d); + boolean var34 = var29.hasFocus(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var1); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var7 + "' != '" + "SpaceWar.SpacePanel[,0,0,0var7,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"+ "'", var7.equals("SpaceWar.SpacePanel[,0,0,0var7,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=4194313,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]")); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var8); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var23); + + // Regression assertion (captures the current behavior of the code) + assertNull(var25); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var27); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var28); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var29); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var34 == false); + + } + + public void test483() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test483"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + SpaceWar.SpacePanel var4 = new SpaceWar.SpacePanel(); + java.awt.Color var5 = var4.getBackground(); + var0.setForeground(var5); + SpaceWar.SpacePanel var7 = new SpaceWar.SpacePanel(); + float var8 = var7.getAlignmentX(); + var7.setVisible(false); + boolean var11 = var7.isDoubleBuffered(); + java.awt.dnd.DropTarget var12 = var7.getDropTarget(); + var7.show(false); + java.awt.Rectangle var15 = var7.getVisibleRect(); + var0.repaint(var15); + java.awt.Component.BaselineResizeBehavior var17 = var0.getBaselineResizeBehavior(); + SpaceWar.SpacePanel var18 = new SpaceWar.SpacePanel(); + float var19 = var18.getAlignmentX(); + var18.setVisible(false); + var18.nextFocus(); + var18.repaint(1L); + SpaceWar.SpacePanel var25 = new SpaceWar.SpacePanel(); + float var26 = var25.getAlignmentX(); + var25.setVisible(false); + boolean var29 = var25.isDoubleBuffered(); + var25.list(); + SpaceWar.SpacePanel var31 = new SpaceWar.SpacePanel(); + float var32 = var31.getAlignmentX(); + var31.setVisible(false); + boolean var35 = var31.isDoubleBuffered(); + java.awt.dnd.DropTarget var36 = var31.getDropTarget(); + var31.show(false); + java.awt.Rectangle var39 = var31.getVisibleRect(); + java.awt.Rectangle var40 = var25.getBounds(var39); + var18.setBounds(var40); + var0.paintImmediately(var40); + java.beans.VetoableChangeListener[] var43 = var0.getVetoableChangeListeners(); + java.lang.Object var44 = var0.getTreeLock(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var29 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var32 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var35 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var36); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var39); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var40); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var43); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var44); + + } + + public void test484() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test484"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + SpaceWar.SpacePanel var4 = new SpaceWar.SpacePanel(); + java.awt.Color var5 = var4.getBackground(); + var0.setForeground(var5); + SpaceWar.SpacePanel var7 = new SpaceWar.SpacePanel(); + float var8 = var7.getAlignmentX(); + var7.setVisible(false); + boolean var11 = var7.isDoubleBuffered(); + java.awt.dnd.DropTarget var12 = var7.getDropTarget(); + var7.show(false); + java.awt.Rectangle var15 = var7.getVisibleRect(); + var0.repaint(var15); + java.awt.FocusTraversalPolicy var17 = var0.getFocusTraversalPolicy(); + java.awt.im.InputMethodRequests var18 = var0.getInputMethodRequests(); + var0.layout(); + java.awt.Point var20 = var0.getMousePosition(); + java.awt.Graphics var21 = var0.getGraphics(); + boolean var22 = var0.requestFocusInWindow(); + var0.setDebugGraphicsOptions(2); + var0.setVerifyInputWhenFocusTarget(false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertNull(var21); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var22 == false); + + } + + public void test485() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test485"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var1 = new SpaceWar.SpacePanel(); + java.awt.Color var2 = var1.getBackground(); + SpaceWar.SpacePanel var3 = new SpaceWar.SpacePanel(); + float var4 = var3.getAlignmentX(); + var3.setVisible(false); + var3.nextFocus(); + var3.updateUI(); + var3.enableInputMethods(true); + var0.add((java.awt.Component)var1, (java.lang.Object)true); + boolean var12 = var0.isMinimumSizeSet(); + java.awt.event.HierarchyListener[] var13 = var0.getHierarchyListeners(); + var0.repaint(0L); + boolean var16 = var0.isShowing(); + int var19 = var0.getBaseline(100, 3); + var0.enable(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var2); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var12 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var19 == (-1)); + + } + + public void test486() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test486"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + boolean var2 = var0.hasFocus(); + boolean var3 = var0.isPreferredSizeSet(); + var0.firePropertyChange("", (short)1, (short)0); + boolean var8 = var0.isMaximumSizeSet(); + var0.list(); + SpaceWar.SpacePanel var10 = new SpaceWar.SpacePanel(); + float var11 = var10.getAlignmentX(); + var10.setVisible(false); + boolean var14 = var10.isDoubleBuffered(); + java.awt.dnd.DropTarget var15 = var10.getDropTarget(); + var10.show(false); + java.awt.Rectangle var18 = var10.getVisibleRect(); + java.awt.image.BufferedImage var20 = var10.loadImg("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + java.awt.ComponentOrientation var21 = var10.getComponentOrientation(); + var10.transferFocusBackward(); + SpaceWar.SpacePanel var23 = new SpaceWar.SpacePanel(); + java.awt.Color var24 = var23.getBackground(); + var23.setFocusCycleRoot(true); + var0.add((java.awt.Component)var10, (java.lang.Object)true); + SpaceWar.SpacePanel var28 = new SpaceWar.SpacePanel(); + float var29 = var28.getAlignmentX(); + var28.setVisible(false); + java.awt.Dimension var32 = var28.getPreferredSize(); + boolean var33 = var28.getVerifyInputWhenFocusTarget(); + java.awt.Component var36 = var28.findComponentAt(10, 1); + boolean var37 = var28.isCursorSet(); + boolean var38 = var28.isFocusTraversalPolicyProvider(); + java.awt.Rectangle var39 = var28.getBounds(); + java.awt.Dimension var40 = var28.getMaximumSize(); + java.awt.Dimension var41 = var0.getSize(var40); + var0.transferFocusBackward(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var2 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var18); + + // Regression assertion (captures the current behavior of the code) + assertNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var21); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var24); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var29 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var32); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var33 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var36); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var37 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var38 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var39); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var40); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var41); + + } + + public void test487() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test487"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var6 = var0.getMouseListeners(); + java.awt.Dimension var7 = var0.getPreferredSize(); + int var10 = var0.getBaseline(1, 1); + var0.show(false); + var0.repaint(100L); + java.lang.String var15 = var0.getUIClassID(); + float var16 = var0.getAlignmentY(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var10 == (-1)); + + // Regression assertion (captures the current behavior of the code) + assertTrue("'" + var15 + "' != '" + "PanelUI"+ "'", var15.equals("PanelUI")); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0.5f); + + } + + public void test488() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test488"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var1 = new SpaceWar.SpacePanel(); + java.awt.Color var2 = var1.getBackground(); + SpaceWar.SpacePanel var3 = new SpaceWar.SpacePanel(); + float var4 = var3.getAlignmentX(); + var3.setVisible(false); + var3.nextFocus(); + var3.updateUI(); + var3.enableInputMethods(true); + var0.add((java.awt.Component)var1, (java.lang.Object)true); + java.awt.Dimension var12 = var1.getPreferredSize(); + var1.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", (-1.0f), 100.0f); + SpaceWar.SpacePanel var17 = new SpaceWar.SpacePanel(); + float var18 = var17.getAlignmentX(); + var17.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var23 = var17.getMouseListeners(); + int var24 = var17.getDebugGraphicsOptions(); + java.awt.im.InputMethodRequests var25 = var17.getInputMethodRequests(); + java.awt.Point var26 = var17.getMousePosition(); + SpaceWar.SpacePanel var27 = new SpaceWar.SpacePanel(); + float var28 = var27.getAlignmentX(); + var27.setVisible(false); + var27.setInheritsPopupMenu(false); + boolean var33 = var27.isDoubleBuffered(); + boolean var34 = var27.isMinimumSizeSet(); + java.awt.Font var35 = var27.getFont(); + var17.setFont(var35); + java.awt.FontMetrics var37 = var1.getFontMetrics(var35); + // The following exception was thrown during execution. + // This behavior will recorded for regression testing. + try { + boolean var39 = var1.areFocusTraversalKeysSet((-1)); + fail("Expected exception of type java.lang.IllegalArgumentException"); + } catch (java.lang.IllegalArgumentException e) { + // Expected exception. + } + + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var2); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var23); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var24 == 0); + + // Regression assertion (captures the current behavior of the code) + assertNull(var25); + + // Regression assertion (captures the current behavior of the code) + assertNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var28 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var33 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var34 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var35); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var37); + + } + + public void test489() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test489"); + + + SpaceWar.Enemy var2 = new SpaceWar.Enemy(0, 10); + int var3 = var2.getRank(); + var2.update(); + boolean var5 = var2.isDead(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == 10); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var5 == false); + + } + + public void test490() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test490"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var1 = new SpaceWar.SpacePanel(); + java.awt.Color var2 = var1.getBackground(); + SpaceWar.SpacePanel var3 = new SpaceWar.SpacePanel(); + float var4 = var3.getAlignmentX(); + var3.setVisible(false); + var3.nextFocus(); + var3.updateUI(); + var3.enableInputMethods(true); + var0.add((java.awt.Component)var1, (java.lang.Object)true); + java.awt.Dimension var12 = var1.getPreferredSize(); + boolean var13 = var1.isValidateRoot(); + boolean var14 = var1.isCursorSet(); + java.awt.event.MouseListener[] var15 = var1.getMouseListeners(); + int var16 = var1.getDebugGraphicsOptions(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var2); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var14 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var16 == 0); + + } + + public void test491() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test491"); + + + SpaceWar.Player var0 = new SpaceWar.Player(); + int var1 = var0.getPower(); + var0.setLeft(true); + var0.increasePower(0); + int var6 = var0.getR(); + int var7 = var0.getLives(); + int var8 = var0.getPowerLevel(); + var0.setDown(false); + var0.setLeft(false); + int var13 = var0.getPowerLevel(); + var0.setUp(false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == 25); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 3); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var13 == 0); + + } + + public void test492() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test492"); + + + SpaceWar.Enemy var2 = new SpaceWar.Enemy((-1), 10); + int var3 = var2.getRank(); + java.awt.image.BufferedImage var5 = var2.loadImg("SpaceWar.SpacePanel[,-1,1,-1x10,invalid,hidden,disabled,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + boolean var6 = var2.isDead(); + double var7 = var2.getY(); + int var8 = var2.getR(); + int var9 = var2.getRank(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var3 == 10); + + // Regression assertion (captures the current behavior of the code) + assertNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == 0.0d); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 10); + + } + + public void test493() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test493"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.reshape((-1), 1, (-1), 10); + SpaceWar.SpacePanel var10 = new SpaceWar.SpacePanel(); + java.awt.Color var11 = var10.getBackground(); + var10.repaint(); + var10.setRequestFocusEnabled(false); + var10.reshape(100, 0, 100, 0); + java.awt.Component var20 = var0.add((java.awt.Component)var10); + boolean var21 = var0.isMinimumSizeSet(); + java.awt.event.ContainerListener[] var22 = var0.getContainerListeners(); + var0.setName("hi!"); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var11); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var20); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var21 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var22); + + } + + public void test494() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test494"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + SpaceWar.SpacePanel var4 = new SpaceWar.SpacePanel(); + java.awt.Color var5 = var4.getBackground(); + var0.setForeground(var5); + SpaceWar.SpacePanel var7 = new SpaceWar.SpacePanel(); + float var8 = var7.getAlignmentX(); + var7.setVisible(false); + boolean var11 = var7.isDoubleBuffered(); + java.awt.dnd.DropTarget var12 = var7.getDropTarget(); + var7.show(false); + java.awt.Rectangle var15 = var7.getVisibleRect(); + var0.repaint(var15); + java.awt.FocusTraversalPolicy var17 = var0.getFocusTraversalPolicy(); + var0.resetKeyboardActions(); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + float var20 = var19.getAlignmentX(); + var19.firePropertyChange("", (-1), 1); + java.awt.event.MouseListener[] var25 = var19.getMouseListeners(); + int var26 = var19.getDebugGraphicsOptions(); + SpaceWar.SpacePanel var27 = new SpaceWar.SpacePanel(); + float var28 = var27.getAlignmentX(); + var27.setVisible(false); + boolean var31 = var27.isDoubleBuffered(); + java.awt.dnd.DropTarget var32 = var27.getDropTarget(); + var27.show(false); + java.awt.Rectangle var35 = var27.getVisibleRect(); + var19.paintImmediately(var35); + var0.setBounds(var35); + boolean var38 = var0.getVerifyInputWhenFocusTarget(); + boolean var39 = var0.isOptimizedDrawingEnabled(); + boolean var40 = var0.isShowing(); + boolean var41 = var0.isForegroundSet(); + var0.repaint((-1L)); + javax.swing.event.AncestorListener[] var44 = var0.getAncestorListeners(); + var0.setFocusTraversalKeysEnabled(false); + java.awt.Container var47 = var0.getParent(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNull(var17); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var25); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == 0); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var28 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var31 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var32); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var35); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var38 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var39 == true); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var40 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var41 == true); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var44); + + // Regression assertion (captures the current behavior of the code) + assertNull(var47); + + } + + public void test495() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test495"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.firePropertyChange("", (-1), 1); + javax.swing.plaf.PanelUI var6 = var0.getUI(); + java.awt.im.InputMethodRequests var7 = var0.getInputMethodRequests(); + SpaceWar.SpacePanel var8 = new SpaceWar.SpacePanel(); + float var9 = var8.getAlignmentX(); + var8.setVisible(false); + var8.nextFocus(); + var8.updateUI(); + var8.enableInputMethods(true); + var8.setSize((-1), 1); + SpaceWar.SpacePanel var19 = new SpaceWar.SpacePanel(); + var19.firePropertyChange("SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + var0.add((java.awt.Component)var8, (java.lang.Object)"SpaceWar.SpacePanel[,0,0,0x0,invalid,hidden,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]"); + java.awt.ComponentOrientation var25 = var8.getComponentOrientation(); + java.beans.VetoableChangeListener[] var26 = var8.getVetoableChangeListeners(); + int var27 = var8.getHeight(); + var8.enable(true); + boolean var30 = var8.isFocusTraversalPolicyProvider(); + SpaceWar.SpacePanel var31 = new SpaceWar.SpacePanel(); + java.awt.Color var32 = var31.getBackground(); + var31.repaint(); + var31.setRequestFocusEnabled(false); + var31.reshape(100, 0, 100, 0); + var31.requestFocus(); + var31.firePropertyChange("hi!", '4', ' '); + java.awt.Point var46 = var31.getLocation(); + var8.setLocation(var46); + java.awt.image.ColorModel var48 = var8.getColorModel(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertNull(var7); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var9 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var25); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var26); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var27 == 1); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var30 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var32); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var46); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var48); + + } + + public void test496() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test496"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + java.awt.Dimension var4 = var0.getPreferredSize(); + java.awt.Toolkit var5 = var0.getToolkit(); + java.awt.Toolkit var6 = var0.getToolkit(); + var0.firePropertyChange("hi!", 25, 1); + boolean var11 = var0.requestDefaultFocus(); + var0.setAutoscrolls(true); + var0.firePropertyChange("SpaceWar.SpacePanel[,499,2,499x500,invalid,layout=java.awt.FlowLayout,alignmentX=0.0,alignmentY=0.0,border=,flags=9,maximumSize=,minimumSize=,preferredSize=java.awt.Dimension[width=800,height=600]]", false, false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var4); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var5); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var6); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var11 == false); + + } + + public void test497() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test497"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.repaint(1L); + boolean var7 = var0.isValid(); + var0.move(499, 500); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == false); + + } + + public void test498() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test498"); + + + SpaceWar.Enemy var2 = new SpaceWar.Enemy((-1), 99); + + } + + public void test499() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test499"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + SpaceWar.SpacePanel var1 = new SpaceWar.SpacePanel(); + java.awt.Color var2 = var1.getBackground(); + SpaceWar.SpacePanel var3 = new SpaceWar.SpacePanel(); + float var4 = var3.getAlignmentX(); + var3.setVisible(false); + var3.nextFocus(); + var3.updateUI(); + var3.enableInputMethods(true); + var0.add((java.awt.Component)var1, (java.lang.Object)true); + java.awt.Image var14 = var1.createImage(1, (-1)); + java.awt.event.MouseListener[] var15 = var1.getMouseListeners(); + java.awt.Color var16 = var1.getBackground(); + boolean var17 = var1.getIgnoreRepaint(); + var1.enable(); + boolean var20 = var1.areFocusTraversalKeysSet(2); + var1.validate(); + boolean var22 = var1.isPaintingTile(); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var2); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var4 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNull(var14); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var15); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var17 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var20 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var22 == false); + + } + + public void test500() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest9.test500"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + var0.nextFocus(); + var0.requestFocus(); + boolean var6 = var0.getInheritsPopupMenu(); + boolean var7 = var0.isFocusOwner(); + boolean var8 = var0.isValidateRoot(); + SpaceWar.SpacePanel var9 = new SpaceWar.SpacePanel(); + java.awt.Color var10 = var9.getBackground(); + var9.repaint(); + java.awt.im.InputMethodRequests var12 = var9.getInputMethodRequests(); + java.awt.GraphicsConfiguration var13 = var9.getGraphicsConfiguration(); + boolean var15 = var9.requestFocus(false); + javax.swing.JPopupMenu var16 = var9.getComponentPopupMenu(); + SpaceWar.SpacePanel var17 = new SpaceWar.SpacePanel(); + float var18 = var17.getAlignmentX(); + var17.setVisible(false); + java.awt.Dimension var21 = var17.getPreferredSize(); + boolean var22 = var17.getVerifyInputWhenFocusTarget(); + java.awt.Component var25 = var17.findComponentAt(10, 1); + boolean var26 = var17.requestDefaultFocus(); + var17.setVerifyInputWhenFocusTarget(false); + java.awt.Point var29 = var17.getLocation(); + java.awt.Point var30 = var9.getLocation(var29); + java.awt.Component var31 = var0.getComponentAt(var29); + float var32 = var0.getAlignmentX(); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var1 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var6 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var7 == false); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var8 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var10); + + // Regression assertion (captures the current behavior of the code) + assertNull(var12); + + // Regression assertion (captures the current behavior of the code) + assertNull(var13); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var15 == false); + + // Regression assertion (captures the current behavior of the code) + assertNull(var16); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var18 == 0.5f); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var21); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var22 == true); + + // Regression assertion (captures the current behavior of the code) + assertNull(var25); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var26 == false); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var29); + + // Regression assertion (captures the current behavior of the code) + assertNotNull(var30); + + // Regression assertion (captures the current behavior of the code) + assertNull(var31); + + // Regression assertion (captures the current behavior of the code) + assertTrue(var32 == 0.5f); + + } + +} diff --git a/test/randoopFailures/RandoopTest_failure_1.java b/test/randoopFailures/RandoopTest_failure_1.java new file mode 100644 index 0000000..246996d --- /dev/null +++ b/test/randoopFailures/RandoopTest_failure_1.java @@ -0,0 +1,24 @@ +package randoopFailures; + +import junit.framework.*; + +public class RandoopTest_failure_1 extends TestCase { + + public static boolean debug = false; + + public void test1() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest_failure_1.test1"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + float var1 = var0.getAlignmentX(); + var0.setVisible(false); + SpaceWar.SpacePanel var4 = new SpaceWar.SpacePanel(); + java.awt.Color var5 = var4.getBackground(); + var0.setForeground(var5); + var0.run(); + + } + +} diff --git a/test/randoopFailures/RandoopTest_failure_2.java b/test/randoopFailures/RandoopTest_failure_2.java new file mode 100644 index 0000000..b48b95a --- /dev/null +++ b/test/randoopFailures/RandoopTest_failure_2.java @@ -0,0 +1,29 @@ +package randoopFailures; + +import junit.framework.*; + +public class RandoopTest_failure_2 extends TestCase { + + public static boolean debug = false; + + public void test1() throws Throwable { + + if (debug) System.out.printf("%nRandoopTest_failure_2.test1"); + + + SpaceWar.SpacePanel var0 = new SpaceWar.SpacePanel(); + java.awt.Color var1 = var0.getBackground(); + var0.repaint(); + var0.setRequestFocusEnabled(false); + var0.reshape(100, 0, 100, 0); + var0.requestFocus(); + var0.firePropertyChange("hi!", '4', ' '); + SpaceWar.Enemy var17 = new SpaceWar.Enemy(0, 100); + int var18 = var17.getR(); + var17.explode(); + var0.putClientProperty((java.lang.Object)var17, (java.lang.Object)(short)10); + var0.addNotify(); + + } + +} From 5fb076d2e04975d9e78fbc1753c7b0f012b853c1 Mon Sep 17 00:00:00 2001 From: Matthew Mauriello Date: Wed, 22 Oct 2014 14:36:49 -0400 Subject: [PATCH 3/5] Adding ANT build.xml --- build.xml | 43 +++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 43 insertions(+) create mode 100644 build.xml diff --git a/build.xml b/build.xml new file mode 100644 index 0000000..46d3f07 --- /dev/null +++ b/build.xml @@ -0,0 +1,43 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file From 68538e005994a8f69bb696e255242e759fbb6709 Mon Sep 17 00:00:00 2001 From: Matthew Mauriello Date: Wed, 22 Oct 2014 18:09:15 -0400 Subject: [PATCH 4/5] Updating Automated Building --- build.xml | 57 ++++++++++++++++++++++++++++++++++++++++++++++---- lib/junit.jar | Bin 0 -> 121204 bytes 2 files changed, 53 insertions(+), 4 deletions(-) create mode 100644 lib/junit.jar diff --git a/build.xml b/build.xml index 46d3f07..d9ca393 100644 --- a/build.xml +++ b/build.xml @@ -1,15 +1,27 @@ + + - - + + + + + + + + + + + + @@ -32,12 +44,49 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + - + - + \ No newline at end of file diff --git a/lib/junit.jar b/lib/junit.jar new file mode 100644 index 0000000000000000000000000000000000000000..0f7b3dfe51953227de93bd5c4208d4cfc360deac GIT binary patch literal 121204 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%0AP;`<|Mp6e1 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�&=yWs7Ov~v`ad<;RlPh(3!HKbkPWKArV>2vx}kxuuRACy zt30~QUKkDviq#@JPJv-Cp?X40(mt+I`ox?Pl)MH!&^D2(fdCEELegy_EyJ31Igm

    2$kkWf(6@v6WRW24iHfc6sj3z+!AN$jn7G%$2WVHc0#dM*}m zyZoTqEs)U-AfN?ZHR-RKIZDHx4;)Hhf zf*ziXYi+FP+1-<-9Kh0hK`(U-^0F_Z|G$?RxLQ~uuyqh;a~=NMjE2}xnu52{0c8n5 z-WK@je|;NarM*}^BNhSNV-hHi6GE1m!6*OL7HBfC9U`%yhauBE5<37|0J6$Jh^%w} zApU*`1esjEbLuU91xnwPEs@?6OmQk!eoU2x3mGbYZob;2w_7E9&@b8 z1-Q+?ZJ^Tap(lkS(vd_Uw=rO+*Qz&2N56*@j>zn$R{ktJ9N_Xd;HDT!;fPFd=H#ho z#{t~q4Y+z{QaB=WoO2aEq1e!34z!6--C_2U!V#I~RD#bxt^(3wJ0K{oaz7~?k(thx z1K%eOgM#h@Efo~k&Or)CWU^CBM4(d^NVjW)?sPdx;fTz4Dw4U2^8?gTARV-h^>UHG z5pg?sbiT-CKpWaXGvFmbBjR=3)VeQkfTBJHM5t_>{3K{ZoKD1XFdRF3{d@!MrvM2W z5uc;W(wh$fG;ACRm91Nd1dWKxEftJ9T>!LO8)%rrBxpoDuIi*_H&(X74K!CU&Va_a z*e(b(>ezOZh{Kt9HpyY@{*w)~6XGOjMEni+vPNiE%PC2mM!3zyy&doXq(!H=8fa!M&0W%9}k;l1HRA;NE)%Xi?%hq|5dHbvlH?J+ z!3$rbxHkh~?|}N7BJD}Ofyj+e_^Tn_(*gI}>ol6-=<4dK&quUZg+&=pW5>Fbjd z8*Yff$KxI%$_~Mkp-JHhR|ed}2st6Ns{sUQ8;&8xmk;-JEGY=_M$kWqSOpM1(h&b8 zxM!w7eOend)*IWZ^%)Qn!&Kaj${Y}(lOhT6@XlSq6%V`B6n7IU^pmMP!Z678M10wB_tQaVS8VSR#{Jsjhs(i^ z+i};}vqQAM_1+&2@x6HXG~C5fQ02=$z@z=`#x~Xt?CL7qMNjk)!72(i{au}ev(`#S XlN^k;U@$N6x0eeBQ+fjWK-m8QWOx}u literal 0 HcmV?d00001 From de47c472a94bf209c021bce8229e453623c9863f Mon Sep 17 00:00:00 2001 From: Matthew Mauriello Date: Wed, 22 Oct 2014 20:29:47 -0400 Subject: [PATCH 5/5] Updating ANT Builder --- build.xml | 57 ++++++++++++++++++++++++++----------------------------- 1 file changed, 27 insertions(+), 30 deletions(-) diff --git a/build.xml b/build.xml index d9ca393..1d4871a 100644 --- a/build.xml +++ b/build.xml @@ -3,25 +3,26 @@ - - - - - - - + + - + + + + + + + @@ -43,10 +44,6 @@ - - - - @@ -65,28 +62,28 @@ - - - - - - - - - - - - - - - - - + + + + + + + + + + + + + + + + + + - \ No newline at end of file

    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 literal 0 HcmV?d00001 diff --git a/bin/randoop/RandoopTest6.class b/bin/randoop/RandoopTest6.class new file mode 100644 index 0000000000000000000000000000000000000000..38c70caa7ff92ec786ff2c300c714b171d5d594d GIT binary patch literal 414749 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�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 iGK8VreFPCIK|(U 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